]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
37 | (scripts/checkpatch.pl) to catch trival style violations. | |
38 | See Documentation/CodingStyle for guidance here. | |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
44 | See Documentation/SubmittingPatches for details. | |
45 | ||
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
4500371e RD |
54 | of the OSDL certificate of contribution and should include a |
55 | Signed-off-by: line. The current version of this "Developer's | |
56 | Certificate of Origin" (DCO) is listed in the file | |
57 | Documentation/SubmittingPatches. | |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: security@kernel.org, especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
8a6e2535 | 77 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
78 | T: SCM tree type and location. |
79 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
80 | S: Status, one of the following: |
81 | Supported: Someone is actually paid to look after this. | |
82 | Maintained: Someone actually looks after it. | |
83 | Odd Fixes: It has a maintainer but they don't have time to do | |
84 | much other than throw the odd patch in. See below.. | |
85 | Orphan: No current maintainer [but maybe you could take the | |
86 | role as you write your new code]. | |
87 | Obsolete: Old code. Something tagged obsolete generally means | |
88 | it has been replaced by a better system and you | |
89 | should be using that. | |
90 | F: Files and directories with wildcard patterns. | |
91 | A trailing slash includes all files and subdirectory files. | |
92 | F: drivers/net/ all files in and below drivers/net | |
93 | F: drivers/net/* all files in drivers/net, but not below | |
94 | F: */net/* all files in "any top level directory"/net | |
95 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
96 | N: Files and directories with regex patterns. |
97 | N: [^a-z]tegra all files whose path contains the word tegra | |
98 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
99 | scripts/get_maintainer.pl has different behavior for files that |
100 | match F: pattern and matches of N: patterns. By default, | |
101 | get_maintainer will not look at git log history when an F: pattern | |
102 | match occurs. When an N: match occurs, git log history is used | |
103 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
104 | X: Files and directories that are NOT maintained, same rules as F: |
105 | Files exclusions are tested before file matches. | |
106 | Can be useful for excluding a specific subdirectory, for instance: | |
107 | F: net/ | |
108 | X: net/ipv6/ | |
109 | matches all files in and below net excluding net/ipv6/ | |
110 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 111 | patch or file. For instance: |
c7c4fb18 | 112 | K: of_get_profile |
bbbe96ed | 113 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 114 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
115 | matches patches or files that contain one or more of the words |
116 | printk, pr_info or pr_err | |
c7c4fb18 | 117 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
118 | |
119 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
120 | order. If you could add yourselves to it in alphabetical order that would be | |
121 | so much easier [Ed] | |
122 | ||
c7c4fb18 | 123 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 124 | |
c7c4fb18 | 125 | ----------------------------------- |
679655da | 126 | |
a6d89915 | 127 | 3C59X NETWORK DRIVER |
8b58be88 | 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
129 | L: netdev@vger.kernel.org |
130 | S: Maintained | |
679655da | 131 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 132 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 133 | |
1da177e4 | 134 | 3CR990 NETWORK DRIVER |
8b58be88 | 135 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 136 | L: netdev@vger.kernel.org |
1da177e4 | 137 | S: Maintained |
ca7a8e85 | 138 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 139 | |
c4de0ceb AR |
140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
141 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 142 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 143 | W: http://www.lsi.com |
1da177e4 | 144 | S: Supported |
c4de0ceb | 145 | F: drivers/scsi/3w-* |
1da177e4 LT |
146 | |
147 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
149 | L: linux-scsi@vger.kernel.org |
150 | S: Maintained | |
679655da | 151 | F: drivers/scsi/53c700* |
1da177e4 | 152 | |
68d96dcf AA |
153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
154 | M: Alexander Aring <alex.aring@gmail.com> | |
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 |
68d96dcf | 161 | |
1da177e4 | 162 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 163 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
164 | L: linux-hams@vger.kernel.org |
165 | S: Maintained | |
679655da | 166 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 167 | |
1da177e4 | 168 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 169 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 170 | L: netdev@vger.kernel.org |
1da177e4 | 171 | S: Maintained |
a8fe65b8 | 172 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
173 | |
174 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 175 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
176 | L: linux-serial@vger.kernel.org |
177 | W: http://serial.sourceforge.net | |
8ee16a1b | 178 | S: Maintained |
08deed1e | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 180 | F: drivers/tty/serial/8250* |
679655da | 181 | F: include/linux/serial_8250.h |
1da177e4 LT |
182 | |
183 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 184 | L: netdev@vger.kernel.org |
0cf445ce | 185 | S: Orphan / Obsolete |
644570b8 | 186 | F: drivers/net/ethernet/8390/ |
1da177e4 | 187 | |
67543e50 | 188 | 9P FILE SYSTEM |
8b58be88 JP |
189 | M: Eric Van Hensbergen <ericvh@gmail.com> |
190 | M: Ron Minnich <rminnich@sandia.gov> | |
191 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 192 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 193 | W: http://swik.net/v9fs |
8a6e2535 | 194 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 196 | S: Maintained |
679655da JP |
197 | F: Documentation/filesystems/9p.txt |
198 | F: fs/9p/ | |
2315cb14 RL |
199 | F: net/9p/ |
200 | F: include/net/9p/ | |
201 | F: include/uapi/linux/virtio_9p.h | |
202 | F: include/trace/events/9p.h | |
203 | ||
67543e50 | 204 | |
91952bc0 AP |
205 | A8293 MEDIA DRIVER |
206 | M: Antti Palosaari <crope@iki.fi> | |
207 | L: linux-media@vger.kernel.org | |
208 | W: http://linuxtv.org/ | |
209 | W: http://palosaari.fi/linux/ | |
210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
211 | T: git git://linuxtv.org/anttip/media_tree.git | |
212 | S: Maintained | |
213 | F: drivers/media/dvb-frontends/a8293* | |
214 | ||
e2d1d6c0 | 215 | AACRAID SCSI RAID DRIVER |
8b58be88 | 216 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
217 | L: linux-scsi@vger.kernel.org |
218 | W: http://www.adaptec.com/ | |
1da177e4 | 219 | S: Supported |
679655da JP |
220 | F: Documentation/scsi/aacraid.txt |
221 | F: drivers/scsi/aacraid/ | |
1da177e4 | 222 | |
ea8f8fc8 JT |
223 | ABI/API |
224 | L: linux-api@vger.kernel.org | |
225 | F: Documentation/ABI/ | |
226 | F: include/linux/syscalls.h | |
227 | F: include/uapi/ | |
228 | F: kernel/sys_ni.c | |
229 | ||
249e3c85 | 230 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 231 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
232 | L: lm-sensors@lm-sensors.org |
233 | S: Maintained | |
679655da | 234 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 235 | |
249e3c85 | 236 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 237 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
238 | L: lm-sensors@lm-sensors.org |
239 | S: Maintained | |
679655da | 240 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 241 | |
1da177e4 | 242 | ACENIC DRIVER |
8b58be88 | 243 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
244 | L: linux-acenic@sunsite.dk |
245 | S: Maintained | |
531c4f89 | 246 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 247 | |
e86435eb | 248 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 249 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 250 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
251 | W: http://piie.net/?section=acerhdf |
252 | S: Maintained | |
253 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 254 | |
745a5d21 | 255 | ACER WMI LAPTOP EXTRAS |
182ae55c | 256 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 257 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 258 | S: Maintained |
679655da | 259 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 260 | |
1da177e4 | 261 | ACPI |
49db1903 | 262 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
7fb06082 | 263 | M: Len Brown <lenb@kernel.org> |
6968e50c | 264 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
265 | W: https://01.org/linux-acpi |
266 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 268 | S: Supported |
679655da JP |
269 | F: drivers/acpi/ |
270 | F: drivers/pnp/pnpacpi/ | |
271 | F: include/linux/acpi.h | |
43368e74 | 272 | F: include/acpi/ |
994b942f | 273 | F: Documentation/acpi |
89ca78a0 | 274 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
275 | F: drivers/pci/*acpi* |
276 | F: drivers/pci/*/*acpi* | |
277 | F: drivers/pci/*/*/*acpi* | |
2754c447 | 278 | F: tools/power/acpi |
8b59a454 | 279 | |
3774929d RW |
280 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
281 | M: Robert Moore <robert.moore@intel.com> | |
282 | M: Lv Zheng <lv.zheng@intel.com> | |
283 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> | |
284 | L: linux-acpi@vger.kernel.org | |
285 | L: devel@acpica.org | |
286 | W: https://acpica.org/ | |
287 | W: https://github.com/acpica/acpica/ | |
288 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
290 | S: Supported | |
291 | F: drivers/acpi/acpica/ | |
292 | F: include/acpi/ | |
2754c447 | 293 | F: tools/power/acpi/ |
3774929d | 294 | |
8b59a454 | 295 | ACPI FAN DRIVER |
8b58be88 | 296 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 297 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 298 | W: https://01.org/linux-acpi |
8b59a454 | 299 | S: Supported |
679655da | 300 | F: drivers/acpi/fan.c |
1da177e4 | 301 | |
8b59a454 | 302 | ACPI THERMAL 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/*thermal* |
998be20f | 308 | |
359acec8 | 309 | ACPI VIDEO 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/video.c |
998be20f | 315 | |
bff431e4 | 316 | ACPI WMI DRIVER |
d0944853 | 317 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 318 | S: Orphan |
679655da | 319 | F: drivers/platform/x86/wmi.c |
bff431e4 | 320 | |
2f39d519 | 321 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 322 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
323 | W: http://wiki.parisc-linux.org/AD1889 |
324 | L: linux-parisc@vger.kernel.org | |
325 | S: Maintained | |
679655da | 326 | F: sound/pci/ad1889.* |
2f39d519 | 327 | |
527a1a83 MH |
328 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
329 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 330 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 331 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
332 | S: Supported |
333 | F: drivers/misc/ad525x_dpot.c | |
334 | ||
335 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
336 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 337 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 338 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
339 | S: Supported |
340 | F: drivers/regulator/ad5398.c | |
341 | ||
342 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
343 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 344 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 345 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
346 | S: Supported |
347 | F: drivers/input/misc/ad714x.c | |
348 | ||
349 | AD7877 TOUCHSCREEN DRIVER | |
350 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 351 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 352 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
353 | S: Supported |
354 | F: drivers/input/touchscreen/ad7877.c | |
355 | ||
356 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
357 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 358 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 359 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
360 | S: Supported |
361 | F: drivers/input/touchscreen/ad7879.c | |
362 | ||
1330b0dc JK |
363 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
364 | M: Jiri Kosina <jkosina@suse.cz> | |
365 | S: Maintained | |
366 | ||
1da177e4 | 367 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 368 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 369 | L: lm-sensors@lm-sensors.org |
1da177e4 | 370 | S: Maintained |
679655da JP |
371 | F: Documentation/hwmon/adm1025 |
372 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 373 | |
cae2caae | 374 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 375 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
376 | L: lm-sensors@lm-sensors.org |
377 | S: Maintained | |
679655da | 378 | F: drivers/hwmon/adm1029.c |
cae2caae | 379 | |
cc0b88cf | 380 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 381 | L: linux-wireless@vger.kernel.org |
491b26b4 | 382 | W: http://wireless.kernel.org/ |
e71bcbd0 | 383 | S: Orphan |
679655da | 384 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 385 | |
e8e31622 SA |
386 | ADP1653 FLASH CONTROLLER DRIVER |
387 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
388 | L: linux-media@vger.kernel.org | |
389 | S: Maintained | |
390 | F: drivers/media/i2c/adp1653.c | |
391 | F: include/media/adp1653.h | |
392 | ||
527a1a83 MH |
393 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
394 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 395 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 396 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
397 | S: Supported |
398 | F: drivers/mfd/adp5520.c | |
399 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 400 | F: drivers/leds/leds-adp5520.c |
77278d50 | 401 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
402 | F: drivers/input/keyboard/adp5520-keys.c |
403 | ||
404 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
405 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 406 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 407 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
408 | S: Supported |
409 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 410 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
411 | |
412 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
413 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 414 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 415 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
416 | S: Supported |
417 | F: drivers/video/backlight/adp8860_bl.c | |
418 | ||
8c22a8f5 DE |
419 | ADS1015 HARDWARE MONITOR DRIVER |
420 | M: Dirk Eibach <eibach@gdsys.de> | |
421 | L: lm-sensors@lm-sensors.org | |
422 | S: Maintained | |
423 | F: Documentation/hwmon/ads1015 | |
424 | F: drivers/hwmon/ads1015.c | |
425 | F: include/linux/i2c/ads1015.h | |
426 | ||
1da177e4 | 427 | ADT746X FAN DRIVER |
8b58be88 | 428 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 429 | S: Maintained |
679655da | 430 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 431 | |
b058b859 | 432 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 433 | M: Jean Delvare <jdelvare@suse.de> |
b058b859 JD |
434 | L: lm-sensors@lm-sensors.org |
435 | S: Maintained | |
436 | F: Documentation/hwmon/adt7475 | |
437 | F: drivers/hwmon/adt7475.c | |
438 | ||
527a1a83 MH |
439 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
440 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 441 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 442 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
443 | S: Supported |
444 | F: drivers/input/misc/adxl34x.c | |
445 | ||
8c6af9e1 | 446 | ADVANSYS SCSI DRIVER |
8b58be88 | 447 | M: Matthew Wilcox <matthew@wil.cx> |
8c6af9e1 MW |
448 | L: linux-scsi@vger.kernel.org |
449 | S: Maintained | |
679655da JP |
450 | F: Documentation/scsi/advansys.txt |
451 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 452 | |
1da177e4 | 453 | AEDSP16 DRIVER |
8b58be88 | 454 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 455 | S: Maintained |
679655da | 456 | F: sound/oss/aedsp16.c |
1da177e4 | 457 | |
91952bc0 AP |
458 | AF9013 MEDIA DRIVER |
459 | M: Antti Palosaari <crope@iki.fi> | |
460 | L: linux-media@vger.kernel.org | |
461 | W: http://linuxtv.org/ | |
462 | W: http://palosaari.fi/linux/ | |
463 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
464 | T: git git://linuxtv.org/anttip/media_tree.git | |
465 | S: Maintained | |
466 | F: drivers/media/dvb-frontends/af9013* | |
467 | ||
468 | AF9033 MEDIA DRIVER | |
469 | M: Antti Palosaari <crope@iki.fi> | |
470 | L: linux-media@vger.kernel.org | |
471 | W: http://linuxtv.org/ | |
472 | W: http://palosaari.fi/linux/ | |
473 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
474 | T: git git://linuxtv.org/anttip/media_tree.git | |
475 | S: Maintained | |
476 | F: drivers/media/dvb-frontends/af9033* | |
477 | ||
1da177e4 | 478 | AFFS FILE SYSTEM |
6cf515e1 GU |
479 | L: linux-fsdevel@vger.kernel.org |
480 | S: Orphan | |
679655da JP |
481 | F: Documentation/filesystems/affs.txt |
482 | F: fs/affs/ | |
1da177e4 | 483 | |
e2d1d6c0 | 484 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 485 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
486 | L: linux-afs@lists.infradead.org |
487 | S: Supported | |
679655da JP |
488 | F: fs/afs/ |
489 | F: include/net/af_rxrpc.h | |
490 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 491 | |
1da177e4 | 492 | AGPGART DRIVER |
8b58be88 | 493 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 494 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 495 | S: Maintained |
679655da JP |
496 | F: drivers/char/agp/ |
497 | F: include/linux/agp* | |
c117ab84 | 498 | F: include/uapi/linux/agp* |
1da177e4 LT |
499 | |
500 | AHA152X SCSI DRIVER | |
8b58be88 | 501 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
502 | L: linux-scsi@vger.kernel.org |
503 | S: Maintained | |
679655da JP |
504 | F: drivers/scsi/aha152x* |
505 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 506 | |
64624d4f | 507 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 508 | M: Hannes Reinecke <hare@suse.de> |
64624d4f | 509 | L: linux-scsi@vger.kernel.org |
1da177e4 | 510 | S: Maintained |
679655da | 511 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 512 | |
450500ad HV |
513 | AIMSLAB FM RADIO RECEIVER DRIVER |
514 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
515 | L: linux-media@vger.kernel.org | |
516 | T: git git://linuxtv.org/media_tree.git | |
517 | W: http://linuxtv.org | |
518 | S: Maintained | |
519 | F: drivers/media/radio/radio-aimslab* | |
520 | ||
e2d1d6c0 | 521 | AIO |
8b58be88 | 522 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
523 | L: linux-aio@kvack.org |
524 | S: Supported | |
679655da JP |
525 | F: fs/aio.c |
526 | F: include/linux/*aio*.h | |
e2d1d6c0 | 527 | |
469d4ec8 AP |
528 | AIRSPY MEDIA DRIVER |
529 | M: Antti Palosaari <crope@iki.fi> | |
530 | L: linux-media@vger.kernel.org | |
531 | W: http://linuxtv.org/ | |
532 | W: http://palosaari.fi/linux/ | |
533 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
534 | T: git git://linuxtv.org/anttip/media_tree.git | |
535 | S: Maintained | |
536 | F: drivers/media/usb/airspy/ | |
537 | ||
1da177e4 | 538 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 539 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 540 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
541 | W: http://www.linux-usb.org/SpeedTouch/ |
542 | S: Maintained | |
679655da JP |
543 | F: drivers/usb/atm/speedtch.c |
544 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 545 | |
272f133a | 546 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 547 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 548 | S: Maintained |
679655da | 549 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 550 | |
4a4e5787 | 551 | ALI1563 I2C DRIVER |
8b58be88 | 552 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 553 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 554 | S: Maintained |
679655da JP |
555 | F: Documentation/i2c/busses/i2c-ali1563 |
556 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 557 | |
1da177e4 | 558 | ALPHA PORT |
8b58be88 | 559 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 560 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 561 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 562 | S: Odd Fixes |
a9406699 | 563 | L: linux-alpha@vger.kernel.org |
679655da | 564 | F: arch/alpha/ |
1da177e4 | 565 | |
16b8b922 | 566 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
0d9327ab | 567 | M: Vince Bridgers <vbridgers2013@gmail.com> |
16b8b922 VB |
568 | L: netdev@vger.kernel.org |
569 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
570 | S: Maintained | |
571 | F: drivers/net/ethernet/altera/ | |
572 | ||
adf9251f TK |
573 | ALTERA UART/JTAG UART SERIAL DRIVERS |
574 | M: Tobias Klauser <tklauser@distanz.ch> | |
575 | L: linux-serial@vger.kernel.org | |
61bd0943 | 576 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
577 | S: Maintained |
578 | F: drivers/tty/serial/altera_uart.c | |
579 | F: drivers/tty/serial/altera_jtaguart.c | |
580 | F: include/linux/altera_uart.h | |
581 | F: include/linux/altera_jtaguart.h | |
582 | ||
f4875e12 TL |
583 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
584 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
585 | L: linux-crypto@vger.kernel.org | |
586 | S: Supported | |
587 | F: drivers/crypto/ccp/ | |
588 | F: include/linux/ccp.h | |
589 | ||
512d1027 | 590 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 591 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
592 | L: lm-sensors@lm-sensors.org |
593 | S: Maintained | |
594 | F: Documentation/hwmon/fam15h_power | |
595 | F: drivers/hwmon/fam15h_power.c | |
596 | ||
167a675a | 597 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 598 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 599 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 600 | S: Supported |
faf2e1db | 601 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 602 | |
f90b8116 | 603 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 604 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 605 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
606 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
607 | S: Supported | |
679655da JP |
608 | F: drivers/char/hw_random/geode-rng.c |
609 | F: drivers/crypto/geode* | |
8a61f013 | 610 | F: drivers/video/fbdev/geode/ |
679655da | 611 | F: arch/x86/include/asm/geode.h |
f90b8116 | 612 | |
919ee7dd | 613 | AMD IOMMU (AMD-VI) |
e4110568 | 614 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 615 | L: iommu@lists.linux-foundation.org |
525b233c | 616 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 617 | S: Maintained |
b2c16391 JP |
618 | F: drivers/iommu/amd_iommu*.[ch] |
619 | F: include/linux/amd-iommu.h | |
919ee7dd | 620 | |
e7f5b309 | 621 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 622 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
7d2c86b5 | 623 | L: amd64-microcode@amd64.org |
943482d0 | 624 | S: Maintained |
73d425fd | 625 | F: arch/x86/kernel/cpu/microcode/amd* |
e7f5b309 | 626 | |
45198c7b LT |
627 | AMD XGBE DRIVER |
628 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
629 | L: netdev@vger.kernel.org | |
630 | S: Supported | |
631 | F: drivers/net/ethernet/amd/xgbe/ | |
632 | F: drivers/net/phy/amd-xgbe-phy.c | |
633 | ||
284f42b6 | 634 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 635 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 636 | S: Supported |
bd5f47ec | 637 | F: drivers/macintosh/ams/ |
284f42b6 | 638 | |
f94b533d | 639 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
640 | M: Tom Tucker <tom@opengridcomputing.com> |
641 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 642 | L: linux-rdma@vger.kernel.org |
f94b533d | 643 | S: Maintained |
679655da | 644 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 645 | |
531fca16 HV |
646 | ANALOG DEVICES INC AD9389B DRIVER |
647 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
648 | L: linux-media@vger.kernel.org | |
649 | S: Maintained | |
650 | F: drivers/media/i2c/ad9389b* | |
651 | ||
c40ddfa3 HV |
652 | ANALOG DEVICES INC ADV7511 DRIVER |
653 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
654 | L: linux-media@vger.kernel.org | |
655 | S: Maintained | |
656 | F: drivers/media/i2c/adv7511* | |
657 | ||
531fca16 HV |
658 | ANALOG DEVICES INC ADV7604 DRIVER |
659 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
660 | L: linux-media@vger.kernel.org | |
661 | S: Maintained | |
662 | F: drivers/media/i2c/adv7604* | |
663 | ||
c40ddfa3 HV |
664 | ANALOG DEVICES INC ADV7842 DRIVER |
665 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
666 | L: linux-media@vger.kernel.org | |
667 | S: Maintained | |
668 | F: drivers/media/i2c/adv7842* | |
669 | ||
527a1a83 | 670 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 671 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 672 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 673 | W: http://wiki.analog.com/ |
a4edbc10 | 674 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 675 | S: Supported |
39c9d199 | 676 | F: sound/soc/codecs/adau* |
cc52688a | 677 | F: sound/soc/codecs/adav* |
4bdef3bd | 678 | F: sound/soc/codecs/ad1* |
ae48f5ef | 679 | F: sound/soc/codecs/ad7* |
4bdef3bd | 680 | F: sound/soc/codecs/ssm* |
40216ce7 | 681 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 682 | |
527a1a83 | 683 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 684 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
685 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
686 | W: http://blackfin.uclinux.org/ | |
687 | S: Supported | |
688 | F: sound/soc/blackfin/* | |
4ce72abc LPC |
689 | |
690 | ANALOG DEVICES INC IIO DRIVERS | |
691 | M: Lars-Peter Clausen <lars@metafoo.de> | |
692 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
693 | W: http://wiki.analog.com/ | |
694 | W: http://ez.analog.com/community/linux-device-drivers | |
695 | S: Supported | |
696 | F: drivers/iio/*/ad* | |
697 | X: drivers/iio/*/adjd* | |
698 | F: drivers/staging/iio/*/ad* | |
699 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 700 | |
42269063 | 701 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 702 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 703 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 704 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 705 | S: Maintained |
679655da | 706 | F: sound/aoa/ |
42269063 | 707 | |
1da177e4 | 708 | APM DRIVER |
81024fc4 JK |
709 | M: Jiri Kosina <jkosina@suse.cz> |
710 | S: Odd fixes | |
679655da JP |
711 | F: arch/x86/kernel/apm_32.c |
712 | F: include/linux/apm_bios.h | |
c117ab84 | 713 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 714 | F: drivers/char/apm-emulation.c |
1da177e4 | 715 | |
bd7aa4b2 | 716 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 717 | M: Henrik Rydberg <rydberg@euromail.se> |
bd7aa4b2 HR |
718 | L: linux-input@vger.kernel.org |
719 | S: Maintained | |
679655da | 720 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 721 | |
6f2fad74 | 722 | APPLE SMC DRIVER |
d618540f HR |
723 | M: Henrik Rydberg <rydberg@euromail.se> |
724 | L: lm-sensors@lm-sensors.org | |
6f2fad74 | 725 | S: Maintained |
679655da | 726 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 727 | |
1da177e4 | 728 | APPLETALK NETWORK LAYER |
8b58be88 | 729 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 730 | S: Maintained |
679655da JP |
731 | F: drivers/net/appletalk/ |
732 | F: net/appletalk/ | |
1da177e4 | 733 | |
24299502 IS |
734 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
735 | M: Iyappan Subramanian <isubramanian@apm.com> | |
736 | M: Keyur Chudgar <kchudgar@apm.com> | |
737 | M: Ravi Patel <rapatel@apm.com> | |
738 | S: Supported | |
739 | F: drivers/net/ethernet/apm/xgene/ | |
740 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt | |
741 | ||
62a37dc7 LP |
742 | APTINA CAMERA SENSOR PLL |
743 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
744 | L: linux-media@vger.kernel.org | |
745 | S: Maintained | |
746 | F: drivers/media/i2c/aptina-pll.* | |
747 | ||
a480167b | 748 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 749 | M: Viresh Kumar <viresh.linux@gmail.com> |
a480167b VK |
750 | L: linux-ide@vger.kernel.org |
751 | S: Maintained | |
752 | F: include/linux/pata_arasan_cf_data.h | |
753 | F: drivers/ata/pata_arasan_cf.c | |
754 | ||
1154ea7d | 755 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 756 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 757 | S: Maintained |
8a61f013 JH |
758 | F: drivers/video/fbdev/arcfb.c |
759 | F: drivers/video/fbdev/core/fb_defio.c | |
1154ea7d | 760 | |
1da177e4 | 761 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 762 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 763 | S: Maintained |
679655da JP |
764 | F: arch/arm/lib/floppydma.S |
765 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 766 | |
6f96521f WD |
767 | ARM PMU PROFILING AND DEBUGGING |
768 | M: Will Deacon <will.deacon@arm.com> | |
769 | S: Maintained | |
770 | F: arch/arm/kernel/perf_event* | |
771 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
772 | F: arch/arm/include/asm/pmu.h |
773 | F: arch/arm/kernel/hw_breakpoint.c | |
774 | F: arch/arm/include/asm/hw_breakpoint.h | |
775 | ||
d4275354 | 776 | ARM PORT |
8b58be88 | 777 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 778 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
779 | W: http://www.arm.linux.org.uk/ |
780 | S: Maintained | |
781 | F: arch/arm/ | |
782 | ||
d323c243 SB |
783 | ARM SUB-ARCHITECTURES |
784 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 785 | S: Maintained |
d323c243 SB |
786 | F: arch/arm/mach-*/ |
787 | F: arch/arm/plat-*/ | |
788 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
789 | ||
cefbf4ea RK |
790 | ARM PRIMECELL AACI PL041 DRIVER |
791 | M: Russell King <linux@arm.linux.org.uk> | |
792 | S: Maintained | |
793 | F: sound/arm/aaci.* | |
794 | ||
795 | ARM PRIMECELL CLCD PL110 DRIVER | |
796 | M: Russell King <linux@arm.linux.org.uk> | |
797 | S: Maintained | |
8a61f013 | 798 | F: drivers/video/fbdev/amba-clcd.* |
cefbf4ea RK |
799 | |
800 | ARM PRIMECELL KMI PL050 DRIVER | |
801 | M: Russell King <linux@arm.linux.org.uk> | |
802 | S: Maintained | |
803 | F: drivers/input/serio/ambakmi.* | |
804 | F: include/linux/amba/kmi.h | |
805 | ||
2761f5c2 | 806 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
807 | M: Russell King <linux@arm.linux.org.uk> |
808 | S: Maintained | |
679655da | 809 | F: drivers/mmc/host/mmci.* |
2f748aaa | 810 | F: include/linux/amba/mmci.h |
2761f5c2 | 811 | |
1b4304e5 RK |
812 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
813 | M: Russell King <linux@arm.linux.org.uk> | |
814 | S: Maintained | |
815 | F: drivers/tty/serial/amba-pl01*.c | |
816 | F: include/linux/amba/serial.h | |
2761f5c2 | 817 | |
cefbf4ea RK |
818 | ARM PRIMECELL BUS SUPPORT |
819 | M: Russell King <linux@arm.linux.org.uk> | |
820 | S: Maintained | |
821 | F: drivers/amba/ | |
822 | F: include/linux/amba/bus.h | |
823 | ||
2b7a52a4 | 824 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 825 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 826 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
827 | S: Maintained |
828 | ||
9c784f95 | 829 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 830 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 831 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
832 | S: Maintained |
833 | ||
2b7a52a4 | 834 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 835 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 836 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
837 | S: Maintained |
838 | ||
1b106699 MR |
839 | ARM/Allwinner A1X SoC support |
840 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
841 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
842 | S: Maintained | |
60b0f380 MR |
843 | N: sun[x4567]i |
844 | ||
845 | ARM/Allwinner SoC Clock Support | |
846 | M: Emilio López <emilio@elopez.com.ar> | |
847 | S: Maintained | |
848 | F: drivers/clk/sunxi/ | |
1b106699 | 849 | |
7c1e3876 CC |
850 | ARM/Amlogic MesonX SoC support |
851 | M: Carlo Caione <carlo@caione.org> | |
852 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
853 | S: Maintained | |
854 | N: meson[x68] | |
855 | ||
c1fc8675 | 856 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 857 | M: Andrew Victor <linux@maxim.org.za> |
c1fc8675 NF |
858 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
859 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
efc03ecb | 860 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
795fb7e7 | 861 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
862 | W: http://www.linux4sam.org |
863 | S: Supported | |
864 | F: arch/arm/mach-at91/ | |
70e389cc MB |
865 | F: arch/arm/boot/dts/at91*.dts |
866 | F: arch/arm/boot/dts/at91*.dtsi | |
867 | F: arch/arm/boot/dts/sama*.dts | |
868 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 869 | |
6e05dd4e BB |
870 | ARM/ATMEL AT91 Clock Support |
871 | M: Boris Brezillon <boris.brezillon@free-electrons.com> | |
872 | S: Maintained | |
873 | F: drivers/clk/at91 | |
874 | ||
986cf2e9 | 875 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 876 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
877 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
878 | S: Maintained | |
879 | F: arch/arm/mach-highbank/ | |
880 | ||
d94f944e | 881 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
5529c2cd | 882 | M: Krzysztof Halasa <khalasa@piap.pl> |
d94f944e AV |
883 | S: Maintained |
884 | F: arch/arm/mach-cns3xxx/ | |
d94f944e | 885 | |
386ab516 AS |
886 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
887 | M: Alexander Shiyan <shc_work@mail.ru> | |
888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
889 | S: Odd Fixes | |
b8ba3874 | 890 | N: clps711x |
386ab516 | 891 | |
2b7a52a4 | 892 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 893 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 894 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 895 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 896 | S: Maintained |
d19d3667 HS |
897 | F: arch/arm/mach-ep93xx/ |
898 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
899 | |
900 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 901 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 902 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
903 | S: Maintained |
904 | ||
d4275354 | 905 | ARM/CLKDEV SUPPORT |
8b58be88 | 906 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 907 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 908 | S: Maintained |
d4275354 | 909 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 910 | F: drivers/clk/clkdev.c |
d4275354 | 911 | |
d48134e7 | 912 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 913 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 914 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
915 | S: Maintained |
916 | ||
94150095 HF |
917 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
918 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
919 | S: Maintained | |
920 | F: arch/arm/mach-ep93xx/micro9.c | |
921 | ||
1da177e4 | 922 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 923 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
924 | S: Maintained |
925 | ||
881a95f9 | 926 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 927 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 928 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 HUK |
929 | T: git git://git.berlios.de/gemini-board |
930 | S: Maintained | |
f49afbb5 | 931 | F: arch/arm/mach-gemini/ |
881a95f9 | 932 | |
a990cbd8 | 933 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 934 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 935 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 936 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
937 | S: Maintained |
938 | F: arch/arm/mach-prima2/ | |
4a9c44f1 | 939 | F: drivers/clk/sirf/ |
05f30e8d BS |
940 | F: drivers/clocksource/timer-prima2.c |
941 | F: drivers/clocksource/timer-marco.c | |
f8505ef5 | 942 | N: [^a-z]sirf |
a990cbd8 | 943 | |
d4275354 | 944 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 945 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 946 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
947 | W: http://www.arm.linux.org.uk/ |
948 | S: Maintained | |
949 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 950 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 951 | |
4721f3ce UKK |
952 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
953 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
954 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
955 | S: Maintained | |
956 | N: efm32 | |
957 | ||
a9da4f7e | 958 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
959 | M: Daniel Ribeiro <drwyrm@gmail.com> |
960 | M: Stefan Schmidt <stefan@openezx.org> | |
961 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 962 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
963 | W: http://www.openezx.org/ |
964 | S: Maintained | |
cafc2265 SS |
965 | T: topgit git://git.openezx.org/openezx.git |
966 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 967 | |
6a915af9 | 968 | ARM/FARADAY FA526 PORT |
162500b3 | 969 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 970 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 971 | S: Maintained |
1fa7e547 | 972 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 973 | F: arch/arm/mm/*-fa* |
6a915af9 | 974 | |
d4275354 | 975 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 976 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 977 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
978 | W: http://www.arm.linux.org.uk/ |
979 | S: Maintained | |
980 | F: arch/arm/include/asm/hardware/dec21285.h | |
981 | F: arch/arm/mach-footbridge/ | |
982 | ||
86183a5f | 983 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
5df27823 | 984 | M: Shawn Guo <shawn.guo@linaro.org> |
8b58be88 | 985 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 986 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 987 | S: Maintained |
f1c12837 | 988 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 989 | F: arch/arm/mach-imx/ |
ce515a6b | 990 | F: arch/arm/mach-mxs/ |
2a82f95c | 991 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 992 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 993 | |
2b7a52a4 | 994 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 995 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 996 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
997 | S: Maintained |
998 | ||
90b8fc34 | 999 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 1000 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 1001 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
1002 | S: Maintained |
1003 | ||
ef47d5f0 | 1004 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 1005 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
1006 | M: Paul Parsons <lost.distance@yahoo.com> |
1007 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
1008 | S: Maintained |
1009 | F: arch/arm/mach-pxa/hx4700.c | |
1010 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 1011 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 1012 | |
4dfad069 WX |
1013 | ARM/HISILICON SOC SUPPORT |
1014 | M: Wei Xu <xuwei5@hisilicon.com> | |
1015 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1016 | W: http://www.hisilicon.com | |
1017 | S: Supported | |
1018 | T: git git://github.com/hisilicon/linux-hisi.git | |
1019 | F: arch/arm/mach-hisi/ | |
1020 | ||
21f37bc3 | 1021 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 1022 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
1023 | W: www.jlime.com |
1024 | S: Maintained | |
084bad91 KE |
1025 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
1026 | F: arch/arm/mach-sa1100/jornada720.c | |
1027 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 1028 | |
5e767ab9 JMC |
1029 | ARM/IGEP MACHINE SUPPORT |
1030 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
1031 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
1032 | L: linux-omap@vger.kernel.org | |
1033 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1034 | S: Maintained | |
06ff74fd | 1035 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 1036 | |
403d2971 MV |
1037 | ARM/INCOME PXA270 SUPPORT |
1038 | M: Marek Vasut <marek.vasut@gmail.com> | |
1039 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1040 | S: Maintained | |
ec154082 | 1041 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 1042 | |
2b7a52a4 | 1043 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 1044 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1045 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1046 | S: Maintained |
e2bdb176 DW |
1047 | |
1048 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
efc03ecb | 1049 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
08223d80 | 1050 | S: Orphan |
2b7a52a4 LB |
1051 | |
1052 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 1053 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1054 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1055 | S: Maintained |
2b7a52a4 LB |
1056 | |
1057 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 1058 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1059 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1060 | S: Maintained |
2b7a52a4 | 1061 | |
2b7a52a4 | 1062 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1063 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1064 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1065 | S: Maintained |
1066 | ||
dfdd8cc9 KH |
1067 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1068 | M: Imre Kaloz <kaloz@openwrt.org> | |
5529c2cd | 1069 | M: Krzysztof Halasa <khalasa@piap.pl> |
baea7b94 | 1070 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1071 | S: Maintained |
1072 | F: arch/arm/mach-ixp4xx/ | |
1073 | ||
838553c5 | 1074 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1075 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1076 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1077 | S: Maintained | |
1078 | F: arch/arm/mach-pxa/stargate2.c | |
1079 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1080 | ||
2b7a52a4 | 1081 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1082 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1083 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1084 | S: Maintained |
2b7a52a4 LB |
1085 | |
1086 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1087 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1088 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1089 | S: Maintained |
1090 | ||
1154f858 SS |
1091 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1092 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1093 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1094 | S: Maintained | |
1095 | F: arch/arm/mach-keystone/ | |
317929cd | 1096 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1097 | |
bc6aa566 SS |
1098 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
1099 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1100 | L: linux-kernel@vger.kernel.org | |
1101 | S: Maintained | |
1102 | F: drivers/clk/keystone/ | |
1103 | ||
1104 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE | |
1105 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1106 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1107 | L: linux-kernel@vger.kernel.org | |
1108 | S: Maintained | |
1109 | F: drivers/clocksource/timer-keystone.c | |
1110 | ||
1111 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER | |
1112 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1113 | L: linux-kernel@vger.kernel.org | |
1114 | S: Maintained | |
1115 | F: drivers/power/reset/keystone-reset.c | |
1116 | ||
1117 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS | |
1118 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1119 | L: linux-kernel@vger.kernel.org | |
1120 | S: Maintained | |
1121 | F: drivers/memory/*emif* | |
1122 | ||
2b7a52a4 | 1123 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1124 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1125 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1126 | S: Maintained |
1127 | ||
3b886171 | 1128 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1129 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1130 | S: Maintained |
1131 | ||
75f41273 TP |
1132 | ARM/Marvell Armada 370 and Armada XP SOC support |
1133 | M: Jason Cooper <jason@lakedaemon.net> | |
1134 | M: Andrew Lunn <andrew@lunn.ch> | |
1135 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1136 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1137 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1138 | S: Maintained | |
1139 | F: arch/arm/mach-mvebu/ | |
1140 | ||
40f4978b SH |
1141 | ARM/Marvell Berlin SoC support |
1142 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1143 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1144 | S: Maintained | |
1145 | F: arch/arm/mach-berlin/ | |
1146 | ||
4cfab57e | 1147 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
4f1312b0 NP |
1148 | M: Jason Cooper <jason@lakedaemon.net> |
1149 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1150 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
efc03ecb | 1151 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1152 | S: Maintained |
1153 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1154 | F: arch/arm/mach-mv78xx0/ |
1155 | F: arch/arm/mach-orion5x/ | |
1156 | F: arch/arm/plat-orion/ | |
3b886171 | 1157 | |
d69ac131 AC |
1158 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1159 | M: Alexander Clouter <alex@digriz.org.uk> | |
1160 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1161 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1162 | S: Maintained | |
1163 | F: arch/arm/mach-orion5x/ts78xx-* | |
1164 | ||
e54951c8 MB |
1165 | ARM/Mediatek SoC support |
1166 | M: Matthias Brugger <matthias.bgg@gmail.com> | |
1167 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1168 | S: Maintained | |
1169 | F: arch/arm/boot/dts/mt6* | |
1170 | F: arch/arm/boot/dts/mt8* | |
1171 | F: arch/arm/mach-mediatek/ | |
1172 | N: mtk | |
1173 | K: mediatek | |
1174 | ||
adcb079f AB |
1175 | ARM/MICREL KS8695 ARCHITECTURE |
1176 | M: Greg Ungerer <gerg@uclinux.org> | |
1177 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1178 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1179 | S: Odd Fixes |
1180 | ||
d78ff0a5 | 1181 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1182 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1183 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1184 | F: arch/arm/mach-pxa/mioa701.c |
1185 | S: Maintained | |
1186 | ||
9624dfe6 | 1187 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1188 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1189 | S: Maintained |
1190 | ||
e0ee9851 | 1191 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1192 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1193 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1194 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1195 | S: Maintained | |
1196 | F: arch/arm/mach-nomadik/ | |
ecc265fe | 1197 | F: drivers/pinctrl/nomadik/ |
87572880 | 1198 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1199 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1200 | |
9d76295a | 1201 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1202 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1203 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1204 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1205 | S: Supported | |
1206 | ||
0c19d21e DW |
1207 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1208 | M: David Brown <davidb@codeaurora.org> | |
b4c9bfab | 1209 | M: Daniel Walker <dwalker@fifo99.com> |
0c19d21e | 1210 | M: Bryan Huntsman <bryanh@codeaurora.org> |
c68af41d | 1211 | L: linux-arm-msm@vger.kernel.org |
0c19d21e | 1212 | F: arch/arm/mach-msm/ |
8a61f013 | 1213 | F: drivers/video/fbdev/msm/ |
0c19d21e DW |
1214 | F: drivers/mmc/host/msm_sdcc.c |
1215 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1216 | F: drivers/tty/serial/msm_serial.h |
1217 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1218 | F: drivers/*/pm8???-* |
0a759c6e | 1219 | F: drivers/mfd/ssbi.c |
8cd5c866 | 1220 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1221 | S: Maintained |
1222 | ||
8459c159 | 1223 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1224 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1225 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1226 | S: Maintained |
1227 | ||
5d783a2d | 1228 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1229 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1230 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1231 | W: http://hackndev.com |
1232 | S: Maintained | |
933d35f0 JP |
1233 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1234 | F: arch/arm/mach-pxa/palmtx.c | |
1235 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1236 | F: arch/arm/mach-pxa/palmt5.c | |
1237 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1238 | F: arch/arm/mach-pxa/palmld.c | |
1239 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1240 | F: arch/arm/mach-pxa/palmte2.c | |
1241 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1242 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1243 | |
b57fe924 | 1244 | ARM/PALM TREO SUPPORT |
8b58be88 | 1245 | M: Tomas Cech <sleep_walker@suse.cz> |
75280787 | 1246 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1247 | W: http://hackndev.com |
1248 | S: Maintained | |
b57fe924 JP |
1249 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1250 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1251 | |
c49e1e63 | 1252 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1253 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1254 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1255 | W: http://hackndev.com |
1256 | S: Maintained | |
933d35f0 JP |
1257 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1258 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1259 | |
1da177e4 | 1260 | ARM/PLEB SUPPORT |
8b58be88 | 1261 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1262 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1263 | S: Maintained | |
1264 | ||
1265 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1266 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1267 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1268 | W: http://www.arm.linux.org.uk/ |
1269 | S: Maintained | |
1270 | ||
8fc1b0f8 KG |
1271 | ARM/QUALCOMM SUPPORT |
1272 | M: Kumar Gala <galak@codeaurora.org> | |
1273 | M: David Brown <davidb@codeaurora.org> | |
1274 | L: linux-arm-msm@vger.kernel.org | |
1275 | S: Maintained | |
1276 | F: arch/arm/mach-qcom/ | |
1277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git | |
1278 | ||
2b7a52a4 | 1279 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1280 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1281 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1282 | S: Maintained |
1283 | ||
d4275354 | 1284 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1285 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1286 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1287 | W: http://www.arm.linux.org.uk/ |
1288 | S: Maintained | |
d4275354 RK |
1289 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1290 | F: arch/arm/include/asm/hardware/ioc.h | |
1291 | F: arch/arm/include/asm/hardware/iomd.h | |
1292 | F: arch/arm/include/asm/hardware/memc.h | |
1293 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1294 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1295 | F: drivers/net/ethernet/i825xx/ether1* |
1296 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1297 | F: drivers/scsi/arm/ |
1298 | ||
08ddbb0a HS |
1299 | ARM/Rockchip SoC support |
1300 | M: Heiko Stuebner <heiko@sntech.de> | |
1301 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
00250b52 | 1302 | L: linux-rockchip@lists.infradead.org |
08ddbb0a | 1303 | S: Maintained |
541555e9 | 1304 | F: arch/arm/boot/dts/rk3* |
08ddbb0a | 1305 | F: arch/arm/mach-rockchip/ |
541555e9 HS |
1306 | F: drivers/clk/rockchip/ |
1307 | F: drivers/i2c/busses/i2c-rk3x.c | |
08ddbb0a | 1308 | F: drivers/*/*rockchip* |
541555e9 HS |
1309 | F: drivers/*/*/*rockchip* |
1310 | F: sound/soc/rockchip/ | |
08ddbb0a | 1311 | |
b21477f9 | 1312 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1313 | M: Ben Dooks <ben-linux@fluff.org> |
482ce512 | 1314 | M: Kukjin Kim <kgene.kim@samsung.com> |
efc03ecb | 1315 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1316 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 BD |
1317 | W: http://www.fluff.org/ben/linux/ |
1318 | S: Maintained | |
6f0589c8 MB |
1319 | F: arch/arm/boot/dts/s3c* |
1320 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1321 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1322 | F: arch/arm/mach-s3c24*/ |
1323 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1324 | F: drivers/*/*s3c2410* |
1325 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1326 | F: drivers/spi/spi-s3c* |
1327 | F: sound/soc/samsung/* | |
1da177e4 | 1328 | |
0dcecae2 | 1329 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1330 | M: Kukjin Kim <kgene.kim@samsung.com> |
1331 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1332 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
1333 | S: Maintained | |
1334 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1335 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1336 | N: exynos |
f556cb07 | 1337 | |
10ffa964 KP |
1338 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1339 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1340 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1341 | S: Maintained | |
1342 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1343 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1344 | |
3ce4ccb6 KD |
1345 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1346 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1347 | M: Kamil Debski <k.debski@samsung.com> | |
1348 | L: linux-arm-kernel@lists.infradead.org | |
1349 | L: linux-media@vger.kernel.org | |
1350 | S: Maintained | |
1351 | F: drivers/media/platform/s5p-g2d/ | |
1352 | ||
e6a476fd MS |
1353 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1354 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1355 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1356 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1357 | L: linux-arm-kernel@lists.infradead.org |
1358 | L: linux-media@vger.kernel.org | |
1359 | S: Maintained | |
934455d7 | 1360 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1361 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1362 | |
1363 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1364 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1365 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1366 | L: linux-arm-kernel@lists.infradead.org | |
1367 | L: linux-media@vger.kernel.org | |
1368 | S: Maintained | |
90d72ac6 | 1369 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1370 | |
d48d38e8 | 1371 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1372 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1373 | M: Magnus Damm <magnus.damm@gmail.com> |
1374 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1375 | W: http://oss.renesas.com |
bbff48f5 | 1376 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1377 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 | 1378 | S: Supported |
0b514fdb SH |
1379 | F: arch/arm/boot/dts/emev2* |
1380 | F: arch/arm/boot/dts/r7s* | |
1381 | F: arch/arm/boot/dts/r8a* | |
1382 | F: arch/arm/boot/dts/sh* | |
1383 | F: arch/arm/configs/ape6evm_defconfig | |
1384 | F: arch/arm/configs/armadillo800eva_defconfig | |
1385 | F: arch/arm/configs/bockw_defconfig | |
0b514fdb SH |
1386 | F: arch/arm/configs/koelsch_defconfig |
1387 | F: arch/arm/configs/kzm9g_defconfig | |
1388 | F: arch/arm/configs/lager_defconfig | |
1389 | F: arch/arm/configs/mackerel_defconfig | |
1390 | F: arch/arm/configs/marzen_defconfig | |
1391 | F: arch/arm/configs/shmobile_defconfig | |
d48d38e8 PM |
1392 | F: arch/arm/mach-shmobile/ |
1393 | F: drivers/sh/ | |
1394 | ||
66314223 | 1395 | ARM/SOCFPGA ARCHITECTURE |
ba2b7d0a | 1396 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1397 | S: Maintained |
1398 | F: arch/arm/mach-socfpga/ | |
ba2b7d0a DN |
1399 | W: http://www.rocketboards.org |
1400 | T: git://git.rocketboards.org/linux-socfpga.git | |
1401 | T: git://git.rocketboards.org/linux-socfpga-next.git | |
66314223 DN |
1402 | |
1403 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
ba2b7d0a | 1404 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
66314223 DN |
1405 | S: Maintained |
1406 | F: drivers/clk/socfpga/ | |
1407 | ||
71bcada8 TT |
1408 | ARM/SOCFPGA EDAC SUPPORT |
1409 | M: Thor Thayer <tthayer@opensource.altera.com> | |
1410 | S: Maintained | |
1411 | F: drivers/edac/altera_edac. | |
1412 | ||
65ebcc11 | 1413 | ARM/STI ARCHITECTURE |
a92177ea SK |
1414 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1415 | M: Maxime Coquelin <maxime.coquelin@st.com> | |
1416 | M: Patrice Chotard <patrice.chotard@st.com> | |
65ebcc11 SK |
1417 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1418 | L: kernel@stlinux.com | |
1419 | W: http://www.stlinux.com | |
1420 | S: Maintained | |
1421 | F: arch/arm/mach-sti/ | |
a92177ea SK |
1422 | F: arch/arm/boot/dts/sti* |
1423 | F: drivers/clocksource/arm_global_timer.c | |
a92177ea | 1424 | F: drivers/i2c/busses/i2c-st.c |
346e2e4a | 1425 | F: drivers/media/rc/st_rc.c |
f53b2bff | 1426 | F: drivers/mmc/host/sdhci-st.c |
6da969a5 | 1427 | F: drivers/phy/phy-stih407-usb.c |
26389c78 | 1428 | F: drivers/phy/phy-stih41x-usb.c |
346e2e4a GKH |
1429 | F: drivers/pinctrl/pinctrl-st.c |
1430 | F: drivers/reset/sti/ | |
1431 | F: drivers/tty/serial/st-asc.c | |
eb11adab | 1432 | F: drivers/usb/dwc3/dwc3-st.c |
62f6f086 PG |
1433 | F: drivers/usb/host/ehci-st.c |
1434 | F: drivers/usb/host/ohci-st.c | |
65ebcc11 | 1435 | |
2b7a52a4 | 1436 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1437 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1438 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1439 | S: Maintained |
1440 | ||
1bbd7089 | 1441 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1442 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1443 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1444 | S: Maintained | |
1445 | ||
2b7a52a4 | 1446 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1447 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1448 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1449 | S: Maintained |
1450 | ||
98ad6e3b | 1451 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1452 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1453 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1454 | W: http://www.mcuos.com |
1455 | S: Maintained | |
4e89e8f6 | 1456 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1457 | F: drivers/input/keyboard/w90p910_keypad.c |
1458 | F: drivers/input/touchscreen/w90p910_ts.c | |
1459 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1460 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1461 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1462 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1463 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 | 1464 | F: drivers/usb/host/ehci-w90x900.c |
8a61f013 | 1465 | F: drivers/video/fbdev/nuc900fb.c |
98ad6e3b | 1466 | |
54274d71 | 1467 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1468 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1469 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1470 | S: Supported | |
1471 | F: arch/arm/mach-u300/ | |
9affbd24 | 1472 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1473 | F: drivers/i2c/busses/i2c-stu300.c |
1474 | F: drivers/rtc/rtc-coh901331.c | |
1475 | F: drivers/watchdog/coh901327_wdt.c | |
1476 | F: drivers/dma/coh901318* | |
87572880 LW |
1477 | F: drivers/mfd/ab3100* |
1478 | F: drivers/rtc/rtc-ab3100.c | |
1479 | F: drivers/rtc/rtc-coh901331.c | |
1480 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1481 | |
87572880 | 1482 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1483 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1484 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1485 | S: Maintained | |
1486 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1487 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1488 | F: drivers/dma/ste_dma40* |
e4651a9f | 1489 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1490 | F: drivers/mfd/abx500* |
1491 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1492 | F: drivers/mfd/dbx500* |
1493 | F: drivers/mfd/db8500* | |
ecc265fe JP |
1494 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
1495 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* | |
87572880 | 1496 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1497 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1498 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1499 | |
e93fde28 UH |
1500 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1501 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1502 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1503 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1504 | S: Maintained | |
1505 | F: drivers/clk/ux500/ | |
1506 | F: include/linux/platform_data/clk-ux500.h | |
1507 | ||
d4275354 | 1508 | ARM/VFP SUPPORT |
8b58be88 | 1509 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1510 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1511 | W: http://www.arm.linux.org.uk/ |
1512 | S: Maintained | |
1513 | F: arch/arm/vfp/ | |
1514 | ||
e66b6d8e MV |
1515 | ARM/VOIPAC PXA270 SUPPORT |
1516 | M: Marek Vasut <marek.vasut@gmail.com> | |
1517 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1518 | S: Maintained | |
1519 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1520 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1521 | |
04529fe2 TP |
1522 | ARM/VT8500 ARM ARCHITECTURE |
1523 | M: Tony Prisk <linux@prisktech.co.nz> | |
1524 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1525 | S: Maintained | |
1526 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1527 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1528 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1529 | F: drivers/mmc/host/wmt-sdmmc.c |
1530 | F: drivers/pwm/pwm-vt8500.c | |
1531 | F: drivers/rtc/rtc-vt8500.c | |
1532 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1533 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1534 | F: drivers/usb/host/uhci-platform.c |
8a61f013 JH |
1535 | F: drivers/video/fbdev/vt8500lcdfb.* |
1536 | F: drivers/video/fbdev/wm8505fb* | |
1537 | F: drivers/video/fbdev/wmt_ge_rops.* | |
04529fe2 | 1538 | |
e66b6d8e MV |
1539 | ARM/ZIPIT Z2 SUPPORT |
1540 | M: Marek Vasut <marek.vasut@gmail.com> | |
1541 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1542 | S: Maintained | |
1543 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1544 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1545 | |
51f29d44 MS |
1546 | ARM/ZYNQ ARCHITECTURE |
1547 | M: Michal Simek <michal.simek@xilinx.com> | |
1548 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1549 | W: http://wiki.xilinx.com | |
1550 | T: git git://git.xilinx.com/linux-xlnx.git | |
1551 | S: Supported | |
1552 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1553 | F: drivers/cpuidle/cpuidle-zynq.c |
c2fd4e38 MS |
1554 | N: zynq |
1555 | N: xilinx | |
1556 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1557 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1558 | F: drivers/mmc/host/sdhci-of-arasan.c |
51f29d44 | 1559 | |
b8f9879e WD |
1560 | ARM SMMU DRIVER |
1561 | M: Will Deacon <will.deacon@arm.com> | |
1562 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1563 | S: Maintained | |
1564 | F: drivers/iommu/arm-smmu.c | |
1565 | ||
38074229 CM |
1566 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1567 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1568 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1569 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1570 | S: Maintained | |
1571 | F: arch/arm64/ | |
d19766ec | 1572 | F: Documentation/arm64/ |
38074229 | 1573 | |
9d7005f9 LP |
1574 | AS3645A LED FLASH CONTROLLER DRIVER |
1575 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1576 | L: linux-media@vger.kernel.org | |
1577 | T: git git://linuxtv.org/media_tree.git | |
1578 | S: Maintained | |
1579 | F: drivers/media/i2c/as3645a.c | |
1580 | F: include/media/as3645a.h | |
1581 | ||
d58de038 GJ |
1582 | ASC7621 HARDWARE MONITOR DRIVER |
1583 | M: George Joseph <george.joseph@fairview5.com> | |
1584 | L: lm-sensors@lm-sensors.org | |
1585 | S: Maintained | |
1586 | F: Documentation/hwmon/asc7621 | |
1587 | F: drivers/hwmon/asc7621.c | |
1588 | ||
b229ece9 | 1589 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1590 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1591 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1592 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1593 | W: http://acpi4asus.sf.net |
85091b71 | 1594 | S: Maintained |
b229ece9 CC |
1595 | F: drivers/platform/x86/asus*.c |
1596 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1597 | |
953a6479 | 1598 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
08223d80 | 1599 | R: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1600 | W: http://sourceforge.net/projects/xscaleiop |
08223d80 | 1601 | S: Odd fixes |
679655da JP |
1602 | F: Documentation/crypto/async-tx-api.txt |
1603 | F: crypto/async_tx/ | |
1604 | F: drivers/dma/ | |
1605 | F: include/linux/dmaengine.h | |
1606 | F: include/linux/async_tx.h | |
b3e5f263 | 1607 | |
a1867d36 | 1608 | AT24 EEPROM DRIVER |
14d77c4d | 1609 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1610 | L: linux-i2c@vger.kernel.org |
1611 | S: Maintained | |
1612 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1613 | F: include/linux/platform_data/at24.h |
a1867d36 | 1614 | |
e7839f25 | 1615 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1616 | M: "Ed L. Cashin" <ecashin@coraid.com> |
eecdf226 | 1617 | W: http://support.coraid.com/support/linux |
1da177e4 | 1618 | S: Supported |
679655da JP |
1619 | F: Documentation/aoe/ |
1620 | F: drivers/block/aoe/ | |
1da177e4 | 1621 | |
9a10a870 | 1622 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1623 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
1624 | L: linux-wireless@vger.kernel.org |
1625 | S: Supported | |
1626 | F: drivers/net/wireless/ath/* | |
1627 | ||
fa1c114f | 1628 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1629 | M: Jiri Slaby <jirislaby@gmail.com> |
1630 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 1631 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f JS |
1632 | L: linux-wireless@vger.kernel.org |
1633 | L: ath5k-devel@lists.ath5k.org | |
72c706b7 | 1634 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1635 | S: Maintained |
fa451753 | 1636 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1637 | |
12e62d6f KV |
1638 | ATHEROS ATH6KL WIRELESS DRIVER |
1639 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1640 | L: linux-wireless@vger.kernel.org | |
1641 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1642 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1643 | S: Supported |
1644 | F: drivers/net/wireless/ath/ath6kl/ | |
1645 | ||
2be7d22f VK |
1646 | WILOCITY WIL6210 WIRELESS DRIVER |
1647 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1648 | L: linux-wireless@vger.kernel.org | |
1649 | L: wil6210@qca.qualcomm.com | |
1650 | S: Supported | |
1651 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1652 | F: drivers/net/wireless/ath/wil6210/ | |
dba4b74d | 1653 | F: include/uapi/linux/wil6210_uapi.h |
2be7d22f | 1654 | |
1d7e1e6b CL |
1655 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1656 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1657 | L: linux-wireless@vger.kernel.org | |
1658 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1659 | S: Maintained | |
1660 | F: drivers/net/wireless/ath/carl9170/ | |
1661 | ||
2c2a6172 LT |
1662 | ATK0110 HWMON DRIVER |
1663 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1664 | L: lm-sensors@lm-sensors.org | |
1665 | S: Maintained | |
1666 | F: drivers/hwmon/asus_atk0110.c | |
1667 | ||
6f69a6d7 | 1668 | ATI_REMOTE2 DRIVER |
8b58be88 | 1669 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1670 | S: Maintained |
679655da | 1671 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1672 | |
7ae115b4 | 1673 | ATLX ETHERNET DRIVERS |
8b58be88 | 1674 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1675 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1676 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1677 | W: http://sourceforge.net/projects/atl1 |
1678 | W: http://atl1.sourceforge.net | |
1679 | S: Maintained | |
2b133ad6 | 1680 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1681 | |
1da177e4 | 1682 | ATM |
8b58be88 | 1683 | M: Chas Williams <chas@cmf.nrl.navy.mil> |
476604de | 1684 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1685 | L: netdev@vger.kernel.org |
1da177e4 LT |
1686 | W: http://linux-atm.sourceforge.net |
1687 | S: Maintained | |
679655da JP |
1688 | F: drivers/atm/ |
1689 | F: include/linux/atm* | |
c117ab84 | 1690 | F: include/uapi/linux/atm* |
1da177e4 | 1691 | |
04ac2f46 | 1692 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1693 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1694 | S: Maintained |
1695 | F: drivers/mmc/host/atmel-mci.c | |
1696 | F: drivers/mmc/host/atmel-mci-regs.h | |
1697 | ||
a1cfac48 | 1698 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1699 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1700 | S: Supported |
df621252 | 1701 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1702 | |
dfae90ed BS |
1703 | ATMEL Audio ALSA driver |
1704 | M: Bo Shen <voice.shen@atmel.com> | |
1705 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
1706 | S: Supported | |
1707 | F: sound/soc/atmel | |
1708 | ||
b414dc16 NF |
1709 | ATMEL DMA DRIVER |
1710 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1711 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1712 | S: Supported | |
1713 | F: drivers/dma/at_hdmac.c | |
1714 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1715 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1716 | |
888f2804 LD |
1717 | ATMEL I2C DRIVER |
1718 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1719 | L: linux-i2c@vger.kernel.org | |
1720 | S: Supported | |
1721 | F: drivers/i2c/busses/i2c-at91.c | |
1722 | ||
15515545 JW |
1723 | ATMEL ISI DRIVER |
1724 | M: Josh Wu <josh.wu@atmel.com> | |
1725 | L: linux-media@vger.kernel.org | |
1726 | S: Supported | |
f2294c2d | 1727 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1728 | F: include/media/atmel-isi.h |
1729 | ||
8f4c79ce | 1730 | ATMEL LCDFB DRIVER |
8b58be88 | 1731 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1732 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1733 | S: Maintained |
8a61f013 | 1734 | F: drivers/video/fbdev/atmel_lcdfb.c |
679655da | 1735 | F: include/video/atmel_lcdc.h |
8f4c79ce | 1736 | |
89e5785f | 1737 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1738 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1739 | S: Supported |
9f2f381f | 1740 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1741 | |
754ce4f2 | 1742 | ATMEL SPI DRIVER |
a02875a6 | 1743 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1744 | S: Supported |
9df92e6c | 1745 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1746 | |
e9cb1c5a NF |
1747 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1748 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1749 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1750 | S: Supported | |
1751 | F: drivers/misc/atmel_tclib.c | |
1752 | F: drivers/clocksource/tcb_clksrc.c | |
1753 | ||
914a3f3b | 1754 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1755 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1756 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1757 | S: Supported |
faf2e1db | 1758 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
914a3f3b | 1759 | |
1da177e4 | 1760 | ATMEL WIRELESS DRIVER |
8b58be88 | 1761 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1762 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1763 | W: http://www.thekelleys.org.uk/atmel |
1764 | W: http://atmelwlandriver.sourceforge.net/ | |
1765 | S: Maintained | |
679655da | 1766 | F: drivers/net/wireless/atmel* |
1da177e4 | 1767 | |
26780d9e | 1768 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1769 | M: Bradley Grove <linuxdrivers@attotech.com> |
1770 | L: linux-scsi@vger.kernel.org | |
1771 | W: http://www.attotech.com | |
1772 | S: Supported | |
1773 | F: drivers/scsi/esas2r | |
26780d9e | 1774 | |
a92b7b80 | 1775 | AUDIT SUBSYSTEM |
8b58be88 | 1776 | M: Eric Paris <eparis@redhat.com> |
b9a06207 | 1777 | L: linux-audit@redhat.com (subscribers-only) |
ad3f9a22 | 1778 | W: http://people.redhat.com/sgrubb/audit/ |
8c8115fa | 1779 | T: git git://git.infradead.org/users/eparis/audit.git |
a92b7b80 | 1780 | S: Maintained |
679655da | 1781 | F: include/linux/audit.h |
c117ab84 | 1782 | F: include/uapi/linux/audit.h |
679655da | 1783 | F: kernel/audit* |
a92b7b80 | 1784 | |
70e84049 | 1785 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1786 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1787 | W: http://miguelojeda.es/auxdisplay.htm |
1788 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1789 | S: Maintained |
679655da JP |
1790 | F: drivers/auxdisplay/ |
1791 | F: include/linux/cfag12864b.h | |
70e84049 | 1792 | |
5f97f7f9 | 1793 | AVR32 ARCHITECTURE |
e336f61f HCE |
1794 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1795 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 1796 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1797 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1798 | W: http://avrfreaks.net/ |
e336f61f | 1799 | S: Maintained |
679655da | 1800 | F: arch/avr32/ |
5f97f7f9 HS |
1801 | |
1802 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1803 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1804 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
1805 | S: Maintained | |
679655da | 1806 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1807 | |
1da177e4 | 1808 | AX.25 NETWORK LAYER |
8b58be88 | 1809 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 1810 | L: linux-hams@vger.kernel.org |
d34cb28a | 1811 | W: http://www.linux-ax25.org/ |
1da177e4 | 1812 | S: Maintained |
c117ab84 | 1813 | F: include/uapi/linux/ax25.h |
679655da JP |
1814 | F: include/net/ax25.h |
1815 | F: net/ax25/ | |
1da177e4 | 1816 | |
d5269395 | 1817 | AZ6007 DVB DRIVER |
1b2c14b4 | 1818 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d5269395 MCC |
1819 | L: linux-media@vger.kernel.org |
1820 | W: http://linuxtv.org | |
1821 | T: git git://linuxtv.org/media_tree.git | |
1822 | S: Maintained | |
1823 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1824 | ||
6777376e HV |
1825 | AZTECH FM RADIO RECEIVER DRIVER |
1826 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
1827 | L: linux-media@vger.kernel.org | |
1828 | T: git git://linuxtv.org/media_tree.git | |
1829 | W: http://linuxtv.org | |
1830 | S: Maintained | |
1831 | F: drivers/media/radio/radio-aztech* | |
1832 | ||
e2d1d6c0 | 1833 | B43 WIRELESS DRIVER |
8b58be88 | 1834 | M: Stefano Brivio <stefano.brivio@polimi.it> |
e2d1d6c0 | 1835 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1836 | L: b43-dev@lists.infradead.org |
491b26b4 | 1837 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1838 | S: Maintained |
679655da | 1839 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1840 | |
1841 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1842 | M: Larry Finger <Larry.Finger@lwfinger.net> |
1843 | M: Stefano Brivio <stefano.brivio@polimi.it> | |
e2d1d6c0 | 1844 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1845 | L: b43-dev@lists.infradead.org |
491b26b4 | 1846 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1847 | S: Maintained |
679655da | 1848 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1849 | |
300abeb5 | 1850 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1851 | M: Jingoo Han <jg1.han@samsung.com> |
70d14fcf JH |
1852 | M: Bryan Wu <cooloney@gmail.com> |
1853 | M: Lee Jones <lee.jones@linaro.org> | |
300abeb5 | 1854 | S: Maintained |
679655da JP |
1855 | F: drivers/video/backlight/ |
1856 | F: include/linux/backlight.h | |
300abeb5 | 1857 | |
c6c8fea2 | 1858 | BATMAN ADVANCED |
207df49e | 1859 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 1860 | M: Simon Wunderlich <sw@simonwunderlich.de> |
207df49e | 1861 | M: Antonio Quartulli <antonio@meshcoding.com> |
c6c8fea2 SE |
1862 | L: b.a.t.m.a.n@lists.open-mesh.org |
1863 | W: http://www.open-mesh.org/ | |
1864 | S: Maintained | |
1865 | F: net/batman-adv/ | |
1866 | ||
e2d1d6c0 | 1867 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1868 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
1869 | L: linux-hams@vger.kernel.org |
1870 | W: http://www.baycom.org/~tom/ham/ham.html | |
1871 | S: Maintained | |
679655da | 1872 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1873 | |
cafe5635 | 1874 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1875 | M: Kent Overstreet <kmo@daterainc.com> |
cafe5635 KO |
1876 | L: linux-bcache@vger.kernel.org |
1877 | W: http://bcache.evilpiepirate.org | |
1878 | S: Maintained: | |
1879 | F: drivers/md/bcache/ | |
1880 | ||
3faece9d KM |
1881 | BECEEM BCS200/BCS220-3/BCSM250 WIMAX SUPPORT |
1882 | M: Kevin McKinney <klmckinney1@gmail.com> | |
1883 | M: Matthias Beyer <mail@beyermatthias.de> | |
1884 | L: devel@driverdev.osuosl.org | |
1885 | S: Maintained | |
1886 | F: drivers/staging/bcm* | |
1887 | ||
e2d1d6c0 | 1888 | BEFS FILE SYSTEM |
55817d3d | 1889 | S: Orphan |
679655da JP |
1890 | F: Documentation/filesystems/befs.txt |
1891 | F: fs/befs/ | |
e2d1d6c0 | 1892 | |
564ee360 DM |
1893 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
1894 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> | |
1895 | L: netdev@vger.kernel.org | |
1896 | S: Maintained | |
1897 | F: drivers/net/ethernet/ec_bhf.c | |
1898 | ||
e2d1d6c0 | 1899 | BFS FILE SYSTEM |
8b58be88 | 1900 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 1901 | S: Maintained |
679655da JP |
1902 | F: Documentation/filesystems/bfs.txt |
1903 | F: fs/bfs/ | |
c117ab84 | 1904 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1905 | |
1394f032 | 1906 | BLACKFIN ARCHITECTURE |
a4edbc10 | 1907 | M: Steven Miao <realmz6@gmail.com> |
b3fe92b0 | 1908 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1443176f | 1909 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
1910 | W: http://blackfin.uclinux.org |
1911 | S: Supported | |
679655da | 1912 | F: arch/blackfin/ |
566da5b2 | 1913 | |
e190d6b1 | 1914 | BLACKFIN EMAC DRIVER |
b3fe92b0 | 1915 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e190d6b1 BW |
1916 | W: http://blackfin.uclinux.org |
1917 | S: Supported | |
7b35f033 | 1918 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1919 | |
566da5b2 | 1920 | BLACKFIN RTC DRIVER |
b3fe92b0 | 1921 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
566da5b2 MF |
1922 | W: http://blackfin.uclinux.org |
1923 | S: Supported | |
679655da | 1924 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1925 | |
936ed49a | 1926 | BLACKFIN SDH DRIVER |
109ec8c3 | 1927 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 1928 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
936ed49a MF |
1929 | W: http://blackfin.uclinux.org |
1930 | S: Supported | |
1931 | F: drivers/mmc/host/bfin_sdh.c | |
1932 | ||
1394f032 | 1933 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1934 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 1935 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
e3b2d3f3 BW |
1936 | W: http://blackfin.uclinux.org |
1937 | S: Supported | |
8460241e | 1938 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1939 | |
1e6d320f | 1940 | BLACKFIN WATCHDOG DRIVER |
b3fe92b0 | 1941 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e6d320f BW |
1942 | W: http://blackfin.uclinux.org |
1943 | S: Supported | |
679655da | 1944 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1945 | |
d24ecfcc | 1946 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1947 | M: Sonic Zhang <sonic.zhang@analog.com> |
b3fe92b0 | 1948 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
d24ecfcc BW |
1949 | W: http://blackfin.uclinux.org/ |
1950 | S: Supported | |
679655da | 1951 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1952 | |
1e204377 SJ |
1953 | BLACKFIN MEDIA DRIVER |
1954 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
b3fe92b0 | 1955 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
1e204377 SJ |
1956 | W: http://blackfin.uclinux.org/ |
1957 | S: Supported | |
1958 | F: drivers/media/platform/blackfin/ | |
1959 | F: drivers/media/i2c/adv7183* | |
1960 | F: drivers/media/i2c/vs6624* | |
1961 | ||
b54cf35a JSM |
1962 | BLINKM RGB LED DRIVER |
1963 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
1964 | S: Maintained | |
1965 | F: drivers/leds/leds-blinkm.c | |
1966 | ||
1da177e4 | 1967 | BLOCK LAYER |
8b58be88 | 1968 | M: Jens Axboe <axboe@kernel.dk> |
08deed1e | 1969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1970 | S: Maintained |
679655da | 1971 | F: block/ |
1da177e4 | 1972 | |
2b54aaef | 1973 | BLOCK2MTD DRIVER |
8b58be88 | 1974 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
1975 | L: linux-mtd@lists.infradead.org |
1976 | S: Maintained | |
679655da | 1977 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1978 | |
63fbd24e | 1979 | BLUETOOTH DRIVERS |
8b58be88 | 1980 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1981 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1982 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 1983 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 1984 | W: http://www.bluez.org/ |
22e7a424 MH |
1985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1986 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1987 | S: Maintained |
679655da | 1988 | F: drivers/bluetooth/ |
1da177e4 | 1989 | |
63fbd24e | 1990 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1991 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1992 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1993 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
1994 | L: linux-bluetooth@vger.kernel.org |
1995 | W: http://www.bluez.org/ | |
22e7a424 MH |
1996 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1997 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1998 | S: Maintained |
679655da JP |
1999 | F: net/bluetooth/ |
2000 | F: include/net/bluetooth/ | |
1da177e4 LT |
2001 | |
2002 | BONDING DRIVER | |
79b30750 | 2003 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 2004 | M: Veaceslav Falico <vfalico@gmail.com> |
4cd72c6e | 2005 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 2006 | L: netdev@vger.kernel.org |
ce00f85c JC |
2007 | W: http://sourceforge.net/projects/bonding/ |
2008 | S: Supported | |
679655da | 2009 | F: drivers/net/bonding/ |
c117ab84 | 2010 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 2011 | |
b5f4df34 AS |
2012 | BPF (Safe dynamic programs and tools) |
2013 | M: Alexei Starovoitov <ast@kernel.org> | |
2014 | L: netdev@vger.kernel.org | |
2015 | L: linux-kernel@vger.kernel.org | |
2016 | S: Supported | |
2017 | F: kernel/bpf/ | |
2018 | ||
39105890 | 2019 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 2020 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
2021 | L: netdev@vger.kernel.org |
2022 | S: Supported | |
adfc5217 | 2023 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 2024 | |
32ec90d5 FF |
2025 | BROADCOM GENET ETHERNET DRIVER |
2026 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2027 | L: netdev@vger.kernel.org | |
2028 | S: Supported | |
2029 | F: drivers/net/ethernet/broadcom/genet/ | |
2030 | ||
948c51e6 | 2031 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
f1d1baeb JK |
2032 | M: Sony Chacko <sony.chacko@qlogic.com> |
2033 | M: Dept-HSGLinuxNICDev@qlogic.com | |
948c51e6 MC |
2034 | L: netdev@vger.kernel.org |
2035 | S: Supported | |
adfc5217 JK |
2036 | F: drivers/net/ethernet/broadcom/bnx2.* |
2037 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 2038 | |
4d9d2cb0 | 2039 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
08f6dd89 | 2040 | M: Ariel Elior <ariel.elior@qlogic.com> |
4d9d2cb0 ET |
2041 | L: netdev@vger.kernel.org |
2042 | S: Supported | |
adfc5217 | 2043 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 2044 | |
90f4c594 | 2045 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
497a045d | 2046 | M: Christian Daudt <bcm@fixthebug.org> |
a3db2bba | 2047 | M: Matt Porter <mporter@linaro.org> |
f18cf050 | 2048 | M: Florian Fainelli <f.fainelli@gmail.com> |
497a045d | 2049 | L: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 2050 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
2051 | S: Maintained |
2052 | F: arch/arm/mach-bcm/ | |
2053 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 2054 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
2055 | F: arch/arm/boot/dts/bcm281* |
2056 | F: arch/arm/configs/bcm_defconfig | |
e4ef47f2 | 2057 | F: drivers/mmc/host/sdhci-bcm-kona.c |
af4b8e37 CD |
2058 | F: drivers/clocksource/bcm_kona_timer.c |
2059 | ||
f680f25c SW |
2060 | BROADCOM BCM2835 ARM ARCHICTURE |
2061 | M: Stephen Warren <swarren@wwwdotorg.org> | |
2062 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) | |
2063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
2064 | S: Maintained | |
d30fe627 | 2065 | F: arch/arm/mach-bcm/board_bcm2835.c |
f680f25c SW |
2066 | F: arch/arm/boot/dts/bcm2835* |
2067 | F: arch/arm/configs/bcm2835_defconfig | |
2068 | F: drivers/*/*bcm2835* | |
2069 | ||
5b293ebe HM |
2070 | BROADCOM BCM5301X ARM ARCHICTURE |
2071 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
2072 | L: linux-arm-kernel@lists.infradead.org | |
2073 | S: Maintained | |
2074 | F: arch/arm/mach-bcm/bcm_5301x.c | |
2075 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
2076 | F: arch/arm/boot/dts/bcm470* | |
2077 | ||
e076e962 FF |
2078 | BROADCOM BCM63XX ARM ARCHITECTURE |
2079 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2080 | L: linux-arm-kernel@lists.infradead.org | |
2081 | T: git git://git.github.com/brcm/linux.git | |
2082 | S: Maintained | |
2083 | F: arch/arm/mach-bcm/bcm63xx.c | |
2084 | F: arch/arm/include/debug/bcm63xx.S | |
2085 | ||
2df94fd6 BN |
2086 | BROADCOM BCM7XXX ARM ARCHITECTURE |
2087 | M: Marc Carino <marc.ceeeee@gmail.com> | |
2088 | M: Brian Norris <computersforpeace@gmail.com> | |
2089 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
2090 | S: Maintained | |
2091 | F: arch/arm/mach-bcm/*brcmstb* | |
2092 | F: arch/arm/boot/dts/bcm7*.dts* | |
2093 | ||
948c51e6 | 2094 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
23629477 | 2095 | M: Prashant Sreedharan <prashant@broadcom.com> |
8b58be88 | 2096 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
2097 | L: netdev@vger.kernel.org |
2098 | S: Supported | |
adfc5217 | 2099 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 2100 | |
a9533e7e HP |
2101 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
2102 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 2103 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 2104 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 2105 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 2106 | L: linux-wireless@vger.kernel.org |
5615171c | 2107 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 2108 | S: Supported |
f62ebdd5 | 2109 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 2110 | |
9958d6f9 | 2111 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
3b7f040a | 2112 | M: QLogic-Storage-Upstream@qlogic.com |
9958d6f9 BPG |
2113 | L: linux-scsi@vger.kernel.org |
2114 | S: Supported | |
2115 | F: drivers/scsi/bnx2fc/ | |
2116 | ||
6a6b5ad0 | 2117 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
3b7f040a | 2118 | M: QLogic-Storage-Upstream@qlogic.com |
6a6b5ad0 EW |
2119 | L: linux-scsi@vger.kernel.org |
2120 | S: Supported | |
2121 | F: drivers/scsi/bnx2i/ | |
2122 | ||
7b7f588b | 2123 | BROADCOM KONA GPIO DRIVER |
5e163903 | 2124 | M: Ray Jui <rjui@broadcom.com> |
7b7f588b MM |
2125 | L: bcm-kernel-feedback-list@broadcom.com |
2126 | S: Supported | |
2127 | F: drivers/gpio/gpio-bcm-kona.c | |
2128 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt | |
2129 | ||
c9678d86 RM |
2130 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
2131 | M: Rafał Miłecki <zajec5@gmail.com> | |
2132 | L: linux-wireless@vger.kernel.org | |
2133 | S: Maintained | |
2134 | F: drivers/bcma/ | |
2135 | F: include/linux/bcma/ | |
2136 | ||
b8302205 FF |
2137 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
2138 | M: Florian Fainelli <f.fainelli@gmail.com> | |
2139 | L: netdev@vger.kernel.org | |
2140 | S: Supported | |
2141 | F: drivers/net/ethernet/broadcom/bcmsysport.* | |
2142 | ||
7725ccfd | 2143 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
2144 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
2145 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
2146 | L: linux-scsi@vger.kernel.org |
2147 | S: Supported | |
2148 | F: drivers/scsi/bfa/ | |
7725ccfd | 2149 | |
8b230ed8 | 2150 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
439e9575 | 2151 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
8b230ed8 RM |
2152 | L: netdev@vger.kernel.org |
2153 | S: Supported | |
f844a0ea | 2154 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 2155 | |
5cdf7f76 | 2156 | BSG (block layer generic sg v4 driver) |
8b58be88 | 2157 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
2158 | L: linux-scsi@vger.kernel.org |
2159 | S: Supported | |
679655da JP |
2160 | F: block/bsg.c |
2161 | F: include/linux/bsg.h | |
c117ab84 | 2162 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 2163 | |
af39917d CL |
2164 | BT87X AUDIO DRIVER |
2165 | M: Clemens Ladisch <clemens@ladisch.de> | |
2166 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2167 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2168 | S: Maintained | |
2169 | F: Documentation/sound/alsa/Bt87x.txt | |
2170 | F: sound/pci/bt87x.c | |
2171 | ||
ff1d5c2f | 2172 | BT8XXGPIO DRIVER |
eb032b98 | 2173 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
2174 | W: http://bu3sch.de/btgpio.php |
2175 | S: Maintained | |
72dbb705 | 2176 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 2177 | |
eb1eb04f | 2178 | BTRFS FILE SYSTEM |
c0778e25 CM |
2179 | M: Chris Mason <clm@fb.com> |
2180 | M: Josef Bacik <jbacik@fb.com> | |
eb1eb04f JP |
2181 | L: linux-btrfs@vger.kernel.org |
2182 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2183 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2185 | S: Maintained |
679655da JP |
2186 | F: Documentation/filesystems/btrfs.txt |
2187 | F: fs/btrfs/ | |
eb1eb04f | 2188 | |
1da177e4 | 2189 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 2190 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
661263b5 | 2191 | L: linux-media@vger.kernel.org |
96b6aba0 | 2192 | W: http://linuxtv.org |
275ffde4 | 2193 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2194 | S: Odd fixes |
679655da | 2195 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2196 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2197 | |
1f34923c KA |
2198 | BUSLOGIC SCSI DRIVER |
2199 | M: Khalid Aziz <khalid@gonehiking.org> | |
2200 | L: linux-scsi@vger.kernel.org | |
2201 | S: Maintained | |
2202 | F: drivers/scsi/BusLogic.* | |
2203 | F: drivers/scsi/FlashPoint.* | |
2204 | ||
af39917d CL |
2205 | C-MEDIA CMI8788 DRIVER |
2206 | M: Clemens Ladisch <clemens@ladisch.de> | |
2207 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2208 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2209 | S: Maintained | |
2210 | F: sound/pci/oxygen/ | |
2211 | ||
2141355f MS |
2212 | C6X ARCHITECTURE |
2213 | M: Mark Salter <msalter@redhat.com> | |
2214 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2215 | L: linux-c6x-dev@linux-c6x.org | |
2216 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2217 | S: Maintained | |
2218 | F: arch/c6x/ | |
2219 | ||
a5432f5a | 2220 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2221 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
2222 | L: linux-cachefs@redhat.com |
2223 | S: Supported | |
2224 | F: Documentation/filesystems/caching/cachefiles.txt | |
2225 | F: fs/cachefiles/ | |
2226 | ||
c815ca39 HV |
2227 | CADET FM/AM RADIO RECEIVER DRIVER |
2228 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2229 | L: linux-media@vger.kernel.org | |
2230 | T: git git://linuxtv.org/media_tree.git | |
2231 | W: http://linuxtv.org | |
2232 | S: Maintained | |
2233 | F: drivers/media/radio/radio-cadet* | |
2234 | ||
77d5140f | 2235 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2236 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2237 | L: linux-media@vger.kernel.org |
275ffde4 | 2238 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2239 | S: Maintained |
679655da | 2240 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2241 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2242 | |
201b6bab | 2243 | CAIF NETWORK LAYER |
5c574f50 | 2244 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2245 | L: netdev@vger.kernel.org |
2246 | S: Supported | |
2247 | F: Documentation/networking/caif/ | |
2248 | F: drivers/net/caif/ | |
c117ab84 | 2249 | F: include/uapi/linux/caif/ |
201b6bab JP |
2250 | F: include/net/caif/ |
2251 | F: net/caif/ | |
2252 | ||
77dac90f | 2253 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2254 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2255 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
2256 | L: discuss@x86-64.org |
2257 | S: Maintained | |
679655da JP |
2258 | F: arch/x86/kernel/pci-calgary_64.c |
2259 | F: arch/x86/kernel/tce_64.c | |
2260 | F: arch/x86/include/asm/calgary.h | |
2261 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2262 | |
e2d1d6c0 | 2263 | CAN NETWORK LAYER |
8d15d386 | 2264 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
1caa60b6 | 2265 | L: linux-can@vger.kernel.org |
ec78213a | 2266 | W: http://gitorious.org/linux-can |
405cc273 | 2267 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2268 | S: Maintained |
f35f6c8f | 2269 | F: Documentation/networking/can.txt |
8d15d386 | 2270 | F: net/can/ |
8d15d386 | 2271 | F: include/linux/can/core.h |
c117ab84 CEB |
2272 | F: include/uapi/linux/can.h |
2273 | F: include/uapi/linux/can/bcm.h | |
2274 | F: include/uapi/linux/can/raw.h | |
2275 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2276 | |
4261a204 | 2277 | CAN NETWORK DRIVERS |
8b58be88 | 2278 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2279 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2280 | L: linux-can@vger.kernel.org |
ec78213a | 2281 | W: http://gitorious.org/linux-can |
405cc273 | 2282 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2283 | S: Maintained |
8d15d386 OH |
2284 | F: drivers/net/can/ |
2285 | F: include/linux/can/dev.h | |
8d15d386 | 2286 | F: include/linux/can/platform/ |
c117ab84 CEB |
2287 | F: include/uapi/linux/can/error.h |
2288 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2289 | |
95d16c72 JM |
2290 | CAPABILITIES |
2291 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2292 | L: linux-security-module@vger.kernel.org | |
6305902c | 2293 | S: Supported |
95d16c72 | 2294 | F: include/linux/capability.h |
c117ab84 | 2295 | F: include/uapi/linux/capability.h |
95d16c72 | 2296 | F: security/capability.c |
6305902c | 2297 | F: security/commoncap.c |
38a94118 | 2298 | F: kernel/capability.c |
95d16c72 | 2299 | |
b8154542 | 2300 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2301 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 SR |
2302 | L: linuxppc-dev@lists.ozlabs.org |
2303 | L: cbe-oss-dev@lists.ozlabs.org | |
b8154542 AB |
2304 | W: http://www.ibm.com/developerworks/power/cell/ |
2305 | S: Supported | |
679655da | 2306 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2307 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2308 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2309 | F: arch/powerpc/oprofile/*cell* |
2310 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2311 | |
9030aaf9 | 2312 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2313 | M: Sage Weil <sage@inktank.com> |
82593f87 | 2314 | L: ceph-devel@vger.kernel.org |
09d90327 | 2315 | W: http://ceph.com/ |
fb99f881 | 2316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2317 | S: Supported |
2318 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2319 | F: fs/ceph/ |
2320 | F: net/ceph/ | |
2321 | F: include/linux/ceph/ | |
2322 | F: include/linux/crush/ | |
9030aaf9 | 2323 | |
18332a80 | 2324 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2325 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2326 | S: Orphan |
679655da JP |
2327 | F: Documentation/usb/WUSB-Design-overview.txt |
2328 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2329 | F: drivers/usb/host/hwa-hc.c |
2330 | F: drivers/usb/host/whci/ | |
679655da JP |
2331 | F: drivers/usb/wusbcore/ |
2332 | F: include/linux/usb/wusb* | |
18332a80 | 2333 | |
70e84049 | 2334 | CFAG12864B LCD DRIVER |
8b58be88 | 2335 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2336 | W: http://miguelojeda.es/auxdisplay.htm |
2337 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2338 | S: Maintained |
679655da JP |
2339 | F: drivers/auxdisplay/cfag12864b.c |
2340 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2341 | |
2342 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2343 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2344 | W: http://miguelojeda.es/auxdisplay.htm |
2345 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2346 | S: Maintained |
679655da JP |
2347 | F: drivers/auxdisplay/cfag12864bfb.c |
2348 | F: include/linux/cfag12864b.h | |
70e84049 | 2349 | |
704232c2 | 2350 | CFG80211 and NL80211 |
8b58be88 | 2351 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2352 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2353 | W: http://wireless.kernel.org/ |
2354 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2356 | S: Maintained |
c117ab84 | 2357 | F: include/uapi/linux/nl80211.h |
679655da JP |
2358 | F: include/net/cfg80211.h |
2359 | F: net/wireless/* | |
2360 | X: net/wireless/wext* | |
704232c2 | 2361 | |
46e64261 GKH |
2362 | CHAR and MISC DRIVERS |
2363 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2364 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2365 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2366 | S: Supported |
46e64261 GKH |
2367 | F: drivers/char/* |
2368 | F: drivers/misc/* | |
471322a8 | 2369 | F: include/linux/miscdevice.h |
46e64261 | 2370 | |
0a920b5b | 2371 | CHECKPATCH |
8b58be88 | 2372 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2373 | M: Joe Perches <joe@perches.com> |
2374 | S: Maintained | |
679655da | 2375 | F: scripts/checkpatch.pl |
0a920b5b | 2376 | |
f8407f26 HW |
2377 | CHINESE DOCUMENTATION |
2378 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2379 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2380 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2381 | S: Maintained | |
2382 | F: Documentation/zh_CN/ | |
2383 | ||
2721ea2c | 2384 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2385 | M: Peter Chen <Peter.Chen@freescale.com> |
cea8321c | 2386 | T: git git://github.com/hzpeterchen/linux-usb.git |
2721ea2c AS |
2387 | L: linux-usb@vger.kernel.org |
2388 | S: Maintained | |
2389 | F: drivers/usb/chipidea/ | |
2390 | ||
ab043105 OJ |
2391 | CHROME HARDWARE PLATFORM SUPPORT |
2392 | M: Olof Johansson <olof@lixom.net> | |
2393 | S: Maintained | |
2394 | F: drivers/platform/chrome/ | |
2395 | ||
641cb85e | 2396 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2397 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2398 | M: Sujith Sankar <ssujith@cisco.com> |
c327e8f4 | 2399 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
5c6652f5 | 2400 | M: Neel Patel <neepatel@cisco.com> |
7063fbf2 | 2401 | S: Supported |
a6a5580c | 2402 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2403 | |
e3cf00d0 | 2404 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2405 | M: Upinder Malhi <umalhi@cisco.com> |
2406 | S: Supported | |
2407 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2408 | |
2b7a52a4 | 2409 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2410 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2411 | L: netdev@vger.kernel.org |
2412 | S: Maintained | |
57d0b7a0 | 2413 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2414 | |
3d4cfdc9 MB |
2415 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2416 | M: Brian Austin <brian.austin@cirrus.com> | |
2417 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
2418 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2419 | S: Maintained | |
2420 | F: sound/soc/codecs/cs* | |
2421 | ||
94574d9a KRW |
2422 | CLEANCACHE API |
2423 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2424 | L: linux-kernel@vger.kernel.org | |
2425 | S: Maintained | |
2426 | F: mm/cleancache.c | |
2427 | F: include/linux/cleancache.h | |
2428 | ||
d4275354 | 2429 | CLK API |
8b58be88 | 2430 | M: Russell King <linux@arm.linux.org.uk> |
37417046 | 2431 | S: Maintained |
d4275354 RK |
2432 | F: include/linux/clk.h |
2433 | ||
9222d247 JS |
2434 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2435 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2436 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 2437 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
2438 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2439 | S: Supported | |
2440 | F: drivers/clocksource | |
2441 | ||
5df6d737 | 2442 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2443 | M: Hiral Patel <hiralpat@cisco.com> |
2444 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2445 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2446 | L: linux-scsi@vger.kernel.org |
2447 | S: Supported | |
2a99921a | 2448 | F: drivers/scsi/fnic/ |
5df6d737 | 2449 | |
529aa8cb TLSC |
2450 | CMPC ACPI DRIVER |
2451 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2452 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2453 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2454 | S: Supported |
2455 | F: drivers/platform/x86/classmate-laptop.c | |
2456 | ||
74425eee | 2457 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2458 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2459 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2460 | M: Nicolas Palix <nicolas.palix@imag.fr> |
c00b5110 | 2461 | M: Michal Marek <mmarek@suse.cz> |
26de9c26 | 2462 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2463 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2464 | W: http://coccinelle.lip6.fr/ |
2465 | S: Supported | |
4b92b2aa | 2466 | F: Documentation/coccinelle.txt |
74425eee NP |
2467 | F: scripts/coccinelle/ |
2468 | F: scripts/coccicheck | |
2469 | ||
1da177e4 | 2470 | CODA FILE SYSTEM |
8b58be88 | 2471 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2472 | M: coda@cs.cmu.edu |
2473 | L: codalist@coda.cs.cmu.edu | |
2474 | W: http://www.coda.cs.cmu.edu/ | |
2475 | S: Maintained | |
679655da JP |
2476 | F: Documentation/filesystems/coda.txt |
2477 | F: fs/coda/ | |
2478 | F: include/linux/coda*.h | |
c117ab84 | 2479 | F: include/uapi/linux/coda*.h |
1da177e4 | 2480 | |
7704addb | 2481 | COMMON CLK FRAMEWORK |
7704addb | 2482 | M: Mike Turquette <mturquette@linaro.org> |
35c1983e | 2483 | L: linux-kernel@vger.kernel.org |
7704addb MT |
2484 | T: git git://git.linaro.org/people/mturquette/linux.git |
2485 | S: Maintained | |
60bea3b5 SW |
2486 | F: drivers/clk/ |
2487 | X: drivers/clk/clkdev.c | |
7704addb | 2488 | F: include/linux/clk-pr* |
60bea3b5 | 2489 | F: include/linux/clk/ |
7704addb | 2490 | |
e2d1d6c0 | 2491 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2492 | M: Steve French <sfrench@samba.org> |
51223df6 | 2493 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2494 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2495 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2496 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2497 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2498 | S: Supported |
ec421a71 | 2499 | F: Documentation/filesystems/cifs/ |
679655da | 2500 | F: fs/cifs/ |
e2d1d6c0 | 2501 | |
1da177e4 | 2502 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2503 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2504 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2505 | S: Maintained |
679655da | 2506 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2507 | |
2508 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2509 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2510 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2511 | S: Maintained |
679655da | 2512 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2513 | |
2514 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2515 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2516 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2517 | S: Maintained |
679655da | 2518 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2519 | |
5411552c | 2520 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2521 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2522 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2523 | S: Maintained |
679655da | 2524 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2525 | |
949be0f7 | 2526 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2527 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2528 | L: accessrunner-general@lists.sourceforge.net |
2529 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2530 | S: Maintained |
679655da | 2531 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2532 | |
e2d1d6c0 | 2533 | CONFIGFS |
d6351db2 JB |
2534 | M: Joel Becker <jlbec@evilplan.org> |
2535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2536 | S: Supported |
679655da JP |
2537 | F: fs/configfs/ |
2538 | F: include/linux/configfs.h | |
e2d1d6c0 | 2539 | |
acb9c1b2 | 2540 | CONNECTOR |
8b58be88 | 2541 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2542 | L: netdev@vger.kernel.org |
2543 | S: Maintained | |
2544 | F: drivers/connector/ | |
2545 | ||
a3e3354d | 2546 | CONTROL GROUP (CGROUP) |
860ca0e6 | 2547 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2548 | M: Li Zefan <lizefan@huawei.com> |
12340313 | 2549 | L: cgroups@vger.kernel.org |
860ca0e6 | 2550 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2551 | S: Maintained |
a3e3354d | 2552 | F: Documentation/cgroups/ |
679655da JP |
2553 | F: include/linux/cgroup* |
2554 | F: kernel/cgroup* | |
a3e3354d TH |
2555 | |
2556 | CONTROL GROUP - CPUSET | |
2557 | M: Li Zefan <lizefan@huawei.com> | |
2558 | L: cgroups@vger.kernel.org | |
2559 | W: http://www.bullopensource.org/cpuset/ | |
2560 | W: http://oss.sgi.com/projects/cpusets/ | |
2561 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git | |
2562 | S: Maintained | |
2563 | F: Documentation/cgroups/cpusets.txt | |
2564 | F: include/linux/cpuset.h | |
2565 | F: kernel/cpuset.c | |
2566 | ||
2567 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) | |
2568 | M: Johannes Weiner <hannes@cmpxchg.org> | |
2569 | M: Michal Hocko <mhocko@suse.cz> | |
2570 | L: cgroups@vger.kernel.org | |
2571 | L: linux-mm@kvack.org | |
2572 | S: Maintained | |
2573 | F: mm/memcontrol.c | |
2574 | F: mm/page_cgroup.c | |
fb3a0fb6 | 2575 | |
bebe4678 | 2576 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2577 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2578 | L: lm-sensors@lm-sensors.org |
2579 | S: Maintained | |
679655da JP |
2580 | F: Documentation/hwmon/coretemp |
2581 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2582 | |
1da177e4 | 2583 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2584 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2585 | W: http://www.fi.muni.cz/~kas/cosa/ |
2586 | S: Maintained | |
679655da | 2587 | F: drivers/net/wan/cosa* |
1da177e4 | 2588 | |
4371ee35 | 2589 | CPMAC ETHERNET DRIVER |
8b58be88 | 2590 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2591 | L: netdev@vger.kernel.org |
2592 | S: Maintained | |
b544dbac | 2593 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2594 | |
1da177e4 | 2595 | CPU FREQUENCY DRIVERS |
49db1903 | 2596 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
45c009a9 | 2597 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 2598 | L: linux-pm@vger.kernel.org |
1da177e4 | 2599 | S: Maintained |
27209d91 VK |
2600 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2601 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2602 | F: drivers/cpufreq/ |
2603 | F: include/linux/cpufreq.h | |
1da177e4 | 2604 | |
8a67f0ef VK |
2605 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2606 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 2607 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
2608 | L: linux-pm@vger.kernel.org |
2609 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2610 | S: Maintained | |
2611 | F: drivers/cpufreq/arm_big_little.h | |
2612 | F: drivers/cpufreq/arm_big_little.c | |
2613 | F: drivers/cpufreq/arm_big_little_dt.c | |
2614 | ||
14d2c34c | 2615 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2616 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
2617 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2618 | L: linux-pm@vger.kernel.org | |
2619 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 2620 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2621 | S: Maintained |
2622 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2623 | |
a8e39c35 | 2624 | CPUIDLE DRIVERS |
49db1903 | 2625 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
a8e39c35 DL |
2626 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2627 | L: linux-pm@vger.kernel.org | |
2628 | S: Maintained | |
cea8321c | 2629 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2630 | F: drivers/cpuidle/* |
2631 | F: include/linux/cpuidle.h | |
2632 | ||
1da177e4 | 2633 | CPUID/MSR DRIVER |
8b58be88 | 2634 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 2635 | S: Maintained |
679655da JP |
2636 | F: arch/x86/kernel/cpuid.c |
2637 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2638 | |
7fe2f639 | 2639 | CPU POWER MONITORING SUBSYSTEM |
7fe2f639 | 2640 | M: Thomas Renninger <trenn@suse.de> |
103f1790 | 2641 | L: linux-pm@vger.kernel.org |
7fe2f639 | 2642 | S: Maintained |
14430813 | 2643 | F: tools/power/cpupower/ |
7fe2f639 | 2644 | |
1da177e4 | 2645 | CRAMFS FILESYSTEM |
ce00f85c | 2646 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2647 | S: Orphan / Obsolete |
679655da JP |
2648 | F: Documentation/filesystems/cramfs.txt |
2649 | F: fs/cramfs/ | |
1da177e4 LT |
2650 | |
2651 | CRIS PORT | |
8b58be88 JP |
2652 | M: Mikael Starvik <starvik@axis.com> |
2653 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 2654 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
2655 | W: http://developer.axis.com |
2656 | S: Maintained | |
679655da | 2657 | F: arch/cris/ |
df621252 | 2658 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2659 | |
2660 | CRYPTO API | |
8b58be88 JP |
2661 | M: Herbert Xu <herbert@gondor.apana.org.au> |
2662 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 2663 | L: linux-crypto@vger.kernel.org |
54e5881d | 2664 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2665 | S: Maintained |
679655da JP |
2666 | F: Documentation/crypto/ |
2667 | F: arch/*/crypto/ | |
2668 | F: crypto/ | |
2669 | F: drivers/crypto/ | |
2670 | F: include/crypto/ | |
1da177e4 | 2671 | |
5b07bd57 | 2672 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2673 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
2674 | L: linux-crypto@vger.kernel.org |
2675 | S: Maintained | |
51a2228a JP |
2676 | F: crypto/ansi_cprng.c |
2677 | F: crypto/rng.c | |
5b07bd57 | 2678 | |
9b4ffa48 | 2679 | CS5535 Audio ALSA driver |
8b58be88 | 2680 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 2681 | S: Maintained |
679655da | 2682 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2683 | |
a910e4a9 | 2684 | CW1200 WLAN driver |
b75f0050 JP |
2685 | M: Solomon Peachy <pizza@shaftnet.org> |
2686 | S: Maintained | |
2687 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 2688 | |
6d8425b1 | 2689 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2690 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 2691 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 2692 | L: linux-media@vger.kernel.org |
275ffde4 | 2693 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2694 | W: http://linuxtv.org |
30e10993 | 2695 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2696 | S: Maintained |
679655da | 2697 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2698 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2699 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2700 | |
3f101d91 HV |
2701 | CX2341X MPEG ENCODER HELPER MODULE |
2702 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2703 | L: linux-media@vger.kernel.org | |
2704 | T: git git://linuxtv.org/media_tree.git | |
2705 | W: http://linuxtv.org | |
2706 | S: Maintained | |
c368360b | 2707 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2708 | F: include/media/cx2341x* |
2709 | ||
20357578 | 2710 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2711 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
20357578 MCC |
2712 | L: linux-media@vger.kernel.org |
2713 | W: http://linuxtv.org | |
2714 | T: git git://linuxtv.org/media_tree.git | |
2715 | S: Odd fixes | |
2716 | F: Documentation/video4linux/cx88/ | |
2717 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2718 | |
91952bc0 AP |
2719 | CXD2820R MEDIA DRIVER |
2720 | M: Antti Palosaari <crope@iki.fi> | |
2721 | L: linux-media@vger.kernel.org | |
2722 | W: http://linuxtv.org/ | |
2723 | W: http://palosaari.fi/linux/ | |
2724 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2725 | T: git git://linuxtv.org/anttip/media_tree.git | |
2726 | S: Maintained | |
2727 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2728 | |
e5ec3789 | 2729 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2730 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
2731 | L: netdev@vger.kernel.org |
2732 | W: http://www.chelsio.com | |
2733 | S: Supported | |
f7917c00 | 2734 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2735 | |
2736 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2737 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 2738 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
2739 | W: http://www.openfabrics.org |
2740 | S: Supported | |
679655da | 2741 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2742 | |
be4c9bad | 2743 | CXGB4 ETHERNET DRIVER (CXGB4) |
56f16c74 | 2744 | M: Hariprasad S <hariprasad@chelsio.com> |
be4c9bad RD |
2745 | L: netdev@vger.kernel.org |
2746 | W: http://www.chelsio.com | |
2747 | S: Supported | |
f7917c00 | 2748 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2749 | |
2750 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2751 | M: Steve Wise <swise@chelsio.com> | |
2752 | L: linux-rdma@vger.kernel.org | |
2753 | W: http://www.openfabrics.org | |
2754 | S: Supported | |
2755 | F: drivers/infiniband/hw/cxgb4/ | |
2756 | ||
5c20a5c7 CL |
2757 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2758 | M: Casey Leedom <leedom@chelsio.com> | |
2759 | L: netdev@vger.kernel.org | |
2760 | W: http://www.chelsio.com | |
2761 | S: Supported | |
f7917c00 | 2762 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2763 | |
b52b97a3 GC |
2764 | STMMAC ETHERNET DRIVER |
2765 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
2766 | L: netdev@vger.kernel.org | |
2767 | W: http://www.stlinux.com | |
2768 | S: Supported | |
7ac6653a | 2769 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2770 | |
1da177e4 | 2771 | CYBERPRO FB DRIVER |
8b58be88 | 2772 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 2773 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
2774 | W: http://www.arm.linux.org.uk/ |
2775 | S: Maintained | |
8a61f013 | 2776 | F: drivers/video/fbdev/cyber2000fb.* |
9fa68eae | 2777 | |
1da177e4 | 2778 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2779 | W: http://www.cyclades.com/ |
d459883e | 2780 | S: Orphan |
c897401b | 2781 | F: drivers/tty/cyclades.c |
679655da | 2782 | F: include/linux/cyclades.h |
c117ab84 | 2783 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2784 | |
2785 | CYCLADES PC300 DRIVER | |
1da177e4 | 2786 | W: http://www.cyclades.com/ |
d459883e | 2787 | S: Orphan |
679655da | 2788 | F: drivers/net/wan/pc300* |
1da177e4 | 2789 | |
402f6ae4 AP |
2790 | CYPRESS_FIRMWARE MEDIA DRIVER |
2791 | M: Antti Palosaari <crope@iki.fi> | |
2792 | L: linux-media@vger.kernel.org | |
2793 | W: http://linuxtv.org/ | |
2794 | W: http://palosaari.fi/linux/ | |
2795 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2796 | T: git git://linuxtv.org/anttip/media_tree.git | |
2797 | S: Maintained | |
2798 | F: drivers/media/common/cypress_firmware* | |
2799 | ||
e3ae3525 | 2800 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2801 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 2802 | L: linux-input@vger.kernel.org |
be9a6f40 | 2803 | S: Supported |
6305902c JP |
2804 | F: drivers/input/touchscreen/cyttsp* |
2805 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2806 | |
1da177e4 | 2807 | DAMA SLAVE for AX.25 |
8b58be88 | 2808 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
2809 | W: http://yaina.de/jreuter/ |
2810 | W: http://www.qsl.net/dl1bke/ | |
2811 | L: linux-hams@vger.kernel.org | |
2812 | S: Maintained | |
679655da JP |
2813 | F: net/ax25/af_ax25.c |
2814 | F: net/ax25/ax25_dev.c | |
2815 | F: net/ax25/ax25_ds_* | |
2816 | F: net/ax25/ax25_in.c | |
2817 | F: net/ax25/ax25_out.c | |
2818 | F: net/ax25/ax25_timer.c | |
2819 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2820 | |
e2d1d6c0 | 2821 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2822 | L: netdev@vger.kernel.org |
5ff77428 | 2823 | S: Orphan |
679655da | 2824 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2825 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2826 | |
2827 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2828 | M: Kurt Garloff <garloff@suse.de> |
e2d1d6c0 | 2829 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2830 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
e2d1d6c0 | 2831 | S: Maintained |
679655da | 2832 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2833 | |
1da177e4 | 2834 | DC395x SCSI driver |
61eee9a7 | 2835 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
2836 | M: Ali Akcaagac <aliakc@web.de> |
2837 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 2838 | L: dc395x@twibble.org |
cf015e9f JP |
2839 | W: http://twibble.org/dist/dc395x/ |
2840 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 2841 | S: Maintained |
679655da JP |
2842 | F: Documentation/scsi/dc395x.txt |
2843 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2844 | |
eb8edb08 | 2845 | DCCP PROTOCOL |
a89d030e | 2846 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 2847 | L: dccp@vger.kernel.org |
c996d8b9 | 2848 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2849 | S: Maintained |
679655da | 2850 | F: include/linux/dccp.h |
c117ab84 | 2851 | F: include/uapi/linux/dccp.h |
679655da JP |
2852 | F: include/linux/tfrc.h |
2853 | F: net/dccp/ | |
eb8edb08 | 2854 | |
1da177e4 | 2855 | DECnet NETWORK LAYER |
1da177e4 LT |
2856 | W: http://linux-decnet.sourceforge.net |
2857 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 2858 | S: Orphan |
679655da JP |
2859 | F: Documentation/networking/decnet.txt |
2860 | F: net/decnet/ | |
1da177e4 | 2861 | |
ebff05b9 MR |
2862 | DECSTATION PLATFORM SUPPORT |
2863 | M: "Maciej W. Rozycki" <macro@linux-mips.org> | |
2864 | L: linux-mips@linux-mips.org | |
2865 | W: http://www.linux-mips.org/wiki/DECstation | |
2866 | S: Maintained | |
2867 | F: arch/mips/dec/ | |
2868 | F: arch/mips/include/asm/dec/ | |
2869 | F: arch/mips/include/asm/mach-dec/ | |
2870 | ||
1da177e4 | 2871 | DEFXX FDDI NETWORK DRIVER |
8b58be88 | 2872 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 2873 | S: Maintained |
33f810b2 | 2874 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2875 | |
ad8f07cc | 2876 | DELL LAPTOP DRIVER |
8b58be88 | 2877 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
d0944853 | 2878 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 2879 | S: Maintained |
679655da | 2880 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2881 | |
1da177e4 | 2882 | DELL LAPTOP SMM DRIVER |
a1406d87 | 2883 | M: Guenter Roeck <linux@roeck-us.net> |
679655da | 2884 | F: drivers/char/i8k.c |
c117ab84 | 2885 | F: include/uapi/linux/i8k.h |
1da177e4 | 2886 | |
90563ec4 | 2887 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2888 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 2889 | S: Maintained |
679655da JP |
2890 | F: Documentation/dcdbas.txt |
2891 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2892 | |
0b3f6109 | 2893 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2894 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
0b3f6109 | 2895 | S: Maintained |
36b3a96f | 2896 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2897 | |
5efc75e3 PZ |
2898 | DESIGNWARE USB2 DRD IP DRIVER |
2899 | M: Paul Zimmerman <paulz@synopsys.com> | |
2900 | L: linux-usb@vger.kernel.org | |
18f340f9 | 2901 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
5efc75e3 | 2902 | S: Maintained |
197ba5f4 | 2903 | F: drivers/usb/dwc2/ |
5efc75e3 | 2904 | |
94ab23dd FB |
2905 | DESIGNWARE USB3 DRD IP DRIVER |
2906 | M: Felipe Balbi <balbi@ti.com> | |
2907 | L: linux-usb@vger.kernel.org | |
2908 | L: linux-omap@vger.kernel.org | |
2909 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2910 | S: Maintained | |
2911 | F: drivers/usb/dwc3/ | |
2912 | ||
833c9545 JB |
2913 | DEVICE COREDUMP (DEV_COREDUMP) |
2914 | M: Johannes Berg <johannes@sipsolutions.net> | |
2915 | L: linux-kernel@vger.kernel.org | |
2916 | S: Maintained | |
2917 | F: drivers/base/devcoredump.c | |
2918 | F: include/linux/devcoredump.h | |
2919 | ||
89d07767 KP |
2920 | DEVICE FREQUENCY (DEVFREQ) |
2921 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
2922 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 2923 | L: linux-pm@vger.kernel.org |
89d07767 KP |
2924 | S: Maintained |
2925 | F: drivers/devfreq/ | |
2926 | ||
1da177e4 | 2927 | DEVICE NUMBER REGISTRY |
8b58be88 | 2928 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 2929 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2930 | S: Maintained |
2931 | ||
e2d1d6c0 | 2932 | DEVICE-MAPPER (LVM) |
854ecaad | 2933 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 2934 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 2935 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
2936 | L: dm-devel@redhat.com |
2937 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2938 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2939 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2940 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2941 | S: Maintained |
679655da JP |
2942 | F: Documentation/device-mapper/ |
2943 | F: drivers/md/dm* | |
854ecaad | 2944 | F: drivers/md/persistent-data/ |
679655da JP |
2945 | F: include/linux/device-mapper.h |
2946 | F: include/linux/dm-*.h | |
8504eed3 | 2947 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2948 | |
c0d995aa OST |
2949 | DIALOG SEMICONDUCTOR DRIVERS |
2950 | M: Support Opensource <support.opensource@diasemi.com> | |
2951 | W: http://www.dialog-semiconductor.com/products | |
2952 | S: Supported | |
2953 | F: Documentation/hwmon/da90?? | |
2954 | F: drivers/gpio/gpio-da90??.c | |
2955 | F: drivers/hwmon/da90??-hwmon.c | |
2956 | F: drivers/input/misc/da90??_onkey.c | |
2957 | F: drivers/input/touchscreen/da9052_tsi.c | |
2958 | F: drivers/leds/leds-da90??.c | |
2959 | F: drivers/mfd/da903x.c | |
2960 | F: drivers/mfd/da90??-*.c | |
2961 | F: drivers/power/da9052-battery.c | |
2962 | F: drivers/regulator/da903x.c | |
2963 | F: drivers/regulator/da9???-regulator.[ch] | |
2964 | F: drivers/rtc/rtc-da90??.c | |
2965 | F: drivers/video/backlight/da90??_bl.c | |
2966 | F: drivers/watchdog/da90??_wdt.c | |
2967 | F: include/linux/mfd/da903x.h | |
2968 | F: include/linux/mfd/da9052/ | |
2969 | F: include/linux/mfd/da9055/ | |
2970 | F: include/linux/mfd/da9063/ | |
2971 | F: include/sound/da[79]*.h | |
2972 | F: sound/soc/codecs/da[79]*.[ch] | |
2973 | ||
599aa697 LL |
2974 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2975 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 2976 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
2977 | L: driverdev-devel@linuxdriverproject.org |
2978 | S: Maintained | |
2979 | F: drivers/staging/dgnc/ | |
2980 | ||
2981 | DIGI EPCA PCI PRODUCTS | |
2982 | M: Lidza Louina <lidza.louina@gmail.com> | |
abeb935f | 2983 | M: Mark Hounschell <markh@compro.net> |
6d825f79 | 2984 | M: Daeseok Youn <daeseok.youn@gmail.com> |
599aa697 LL |
2985 | L: driverdev-devel@linuxdriverproject.org |
2986 | S: Maintained | |
2987 | F: drivers/staging/dgap/ | |
2988 | ||
335d7c58 | 2989 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2990 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
2991 | L: linux-i2c@vger.kernel.org |
2992 | S: Maintained | |
2993 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2994 | ||
e7839f25 | 2995 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2996 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 2997 | S: Maintained |
679655da JP |
2998 | F: Documentation/filesystems/dnotify.txt |
2999 | F: fs/notify/dnotify/ | |
3000 | F: include/linux/dnotify.h | |
1da177e4 LT |
3001 | |
3002 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 3003 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
3004 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
3005 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
3006 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
3007 | S: Maintained | |
3008 | ||
4480f15b | 3009 | DISKQUOTA |
8b58be88 | 3010 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 3011 | S: Maintained |
679655da JP |
3012 | F: Documentation/filesystems/quota.txt |
3013 | F: fs/quota/ | |
3014 | F: include/linux/quota*.h | |
c117ab84 | 3015 | F: include/uapi/linux/quota*.h |
1da177e4 | 3016 | |
702686ad BT |
3017 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
3018 | M: Bernie Thompson <bernie@plugable.com> | |
3019 | L: linux-fbdev@vger.kernel.org | |
3020 | S: Maintained | |
3021 | W: http://plugable.com/category/projects/udlfb/ | |
8a61f013 | 3022 | F: drivers/video/fbdev/udlfb.c |
702686ad BT |
3023 | F: include/video/udlfb.h |
3024 | F: Documentation/fb/udlfb.txt | |
3025 | ||
e7839f25 | 3026 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
3027 | M: Christine Caulfield <ccaulfie@redhat.com> |
3028 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 3029 | L: cluster-devel@redhat.com |
5be7b50f | 3030 | W: http://sources.redhat.com/cluster/ |
54e5881d | 3031 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 3032 | S: Supported |
679655da | 3033 | F: fs/dlm/ |
5be7b50f | 3034 | |
53b6b3e0 SS |
3035 | DMA BUFFER SHARING FRAMEWORK |
3036 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
3037 | S: Maintained | |
3038 | L: linux-media@vger.kernel.org | |
3039 | L: dri-devel@lists.freedesktop.org | |
3040 | L: linaro-mm-sig@lists.linaro.org | |
35fac7e3 | 3041 | F: drivers/dma-buf/ |
e46d12c6 JP |
3042 | F: include/linux/dma-buf* |
3043 | F: include/linux/reservation.h | |
3044 | F: include/linux/*fence.h | |
53b6b3e0 SS |
3045 | F: Documentation/dma-buf-sharing.txt |
3046 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
3047 | ||
b3e5f263 | 3048 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 3049 | M: Vinod Koul <vinod.koul@intel.com> |
17b59560 VK |
3050 | L: dmaengine@vger.kernel.org |
3051 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
08223d80 | 3052 | S: Maintained |
679655da JP |
3053 | F: drivers/dma/ |
3054 | F: include/linux/dma* | |
5dbd05d4 | 3055 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) |
248a9dc3 | 3056 | |
b825037d | 3057 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 3058 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
3059 | L: lm-sensors@lm-sensors.org |
3060 | S: Maintained | |
679655da JP |
3061 | F: Documentation/hwmon/dme1737 |
3062 | F: drivers/hwmon/dme1737.c | |
b825037d | 3063 | |
5b9c9bf6 | 3064 | DOCKING STATION DRIVER |
8b58be88 | 3065 | M: Shaohua Li <shaohua.li@intel.com> |
5b9c9bf6 | 3066 | L: linux-acpi@vger.kernel.org |
8b59a454 | 3067 | S: Supported |
679655da | 3068 | F: drivers/acpi/dock.c |
5b9c9bf6 | 3069 | |
7d2c86b5 | 3070 | DOCUMENTATION |
d671e424 | 3071 | M: Jiri Kosina <jkosina@suse.cz> |
795fb7e7 JD |
3072 | L: linux-doc@vger.kernel.org |
3073 | S: Maintained | |
679655da | 3074 | F: Documentation/ |
97be078b RD |
3075 | X: Documentation/ABI/ |
3076 | X: Documentation/devicetree/ | |
3077 | X: Documentation/[a-z][a-z]_[A-Z][A-Z]/ | |
53007a7b | 3078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/doc.git |
abbaeff3 | 3079 | |
1da177e4 | 3080 | DOUBLETALK DRIVER |
8b58be88 | 3081 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
3082 | L: blinux-list@redhat.com |
3083 | S: Maintained | |
679655da JP |
3084 | F: drivers/char/dtlk.c |
3085 | F: include/linux/dtlk.h | |
1da177e4 | 3086 | |
e2d1d6c0 | 3087 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 3088 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
3089 | L: linux-scsi@vger.kernel.org |
3090 | W: http://www.adaptec.com/ | |
3091 | S: Maintained | |
679655da JP |
3092 | F: drivers/scsi/dpt* |
3093 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 3094 | |
b411b363 | 3095 | DRBD DRIVER |
28b8e8d4 JP |
3096 | P: Philipp Reisner |
3097 | P: Lars Ellenberg | |
3098 | M: drbd-dev@lists.linbit.com | |
3099 | L: drbd-user@lists.linbit.com | |
3100 | W: http://www.drbd.org | |
3101 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
3102 | T: git git://git.drbd.org/drbd-8.3.git | |
3103 | S: Supported | |
3104 | F: drivers/block/drbd/ | |
3105 | F: lib/lru_cache.c | |
3106 | F: Documentation/blockdev/drbd/ | |
b411b363 | 3107 | |
87544653 | 3108 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 3109 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 3110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 3111 | S: Supported |
679655da | 3112 | F: Documentation/kobject.txt |
7cfc51b9 | 3113 | F: drivers/base/ |
679655da | 3114 | F: fs/sysfs/ |
87544653 | 3115 | F: fs/debugfs/ |
679655da | 3116 | F: include/linux/kobj* |
87544653 | 3117 | F: include/linux/debugfs.h |
679655da | 3118 | F: lib/kobj* |
1da177e4 LT |
3119 | |
3120 | DRM DRIVERS | |
8b58be88 | 3121 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 3122 | L: dri-devel@lists.freedesktop.org |
b0447888 | 3123 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 3124 | S: Maintained |
679655da | 3125 | F: drivers/gpu/drm/ |
433e3b34 | 3126 | F: drivers/gpu/vga/ |
850e9411 | 3127 | F: include/drm/ |
c117ab84 | 3128 | F: include/uapi/drm/ |
1da177e4 | 3129 | |
566f5939 AD |
3130 | RADEON DRM DRIVERS |
3131 | M: Alex Deucher <alexander.deucher@amd.com> | |
3132 | M: Christian König <christian.koenig@amd.com> | |
3133 | L: dri-devel@lists.freedesktop.org | |
3134 | T: git git://people.freedesktop.org/~agd5f/linux | |
3135 | S: Supported | |
3136 | F: drivers/gpu/drm/radeon/ | |
566f5939 AD |
3137 | F: include/uapi/drm/radeon* |
3138 | ||
03e255b9 TR |
3139 | DRM PANEL DRIVERS |
3140 | M: Thierry Reding <thierry.reding@gmail.com> | |
3141 | L: dri-devel@lists.freedesktop.org | |
3142 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
3143 | S: Maintained | |
3144 | F: drivers/gpu/drm/drm_panel.c | |
3145 | F: drivers/gpu/drm/panel/ | |
3146 | F: include/drm/drm_panel.h | |
3147 | F: Documentation/devicetree/bindings/panel/ | |
3148 | ||
8daf7473 | 3149 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 3150 | M: Daniel Vetter <daniel.vetter@ffwll.ch> |
47f95647 | 3151 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 3152 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 3153 | L: dri-devel@lists.freedesktop.org |
47f95647 | 3154 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 3155 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 3156 | S: Supported |
14430813 | 3157 | F: drivers/gpu/drm/i915/ |
8daf7473 | 3158 | F: include/drm/i915* |
c117ab84 | 3159 | F: include/uapi/drm/i915* |
8daf7473 | 3160 | |
398a6d4a KP |
3161 | DRM DRIVERS FOR EXYNOS |
3162 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
3163 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
3164 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
3165 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 3166 | L: dri-devel@lists.freedesktop.org |
25a58030 | 3167 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 3168 | S: Supported |
14430813 | 3169 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 3170 | F: include/drm/exynos* |
c117ab84 | 3171 | F: include/uapi/drm/exynos* |
398a6d4a | 3172 | |
bd3b49f2 | 3173 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
3174 | M: Thierry Reding <thierry.reding@gmail.com> |
3175 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
3176 | L: dri-devel@lists.freedesktop.org |
3177 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 3178 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 3179 | S: Supported |
dee8268f | 3180 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 3181 | F: drivers/gpu/host1x/ |
e1e90644 | 3182 | F: include/linux/host1x.h |
a5ad7a63 | 3183 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
3184 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
3185 | ||
a284e9d1 LP |
3186 | DRM DRIVERS FOR RENESAS |
3187 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
3188 | L: dri-devel@lists.freedesktop.org | |
3189 | L: linux-sh@vger.kernel.org | |
3190 | T: git git://people.freedesktop.org/~airlied/linux | |
3191 | S: Supported | |
3192 | F: drivers/gpu/drm/rcar-du/ | |
3193 | F: drivers/gpu/drm/shmobile/ | |
3194 | F: include/linux/platform_data/rcar-du.h | |
3195 | F: include/linux/platform_data/shmob_drm.h | |
3196 | ||
598df1ac AK |
3197 | DSBR100 USB FM RADIO DRIVER |
3198 | M: Alexey Klimov <klimov.linux@gmail.com> | |
3199 | L: linux-media@vger.kernel.org | |
3200 | T: git git://linuxtv.org/media_tree.git | |
3201 | S: Maintained | |
3202 | F: drivers/media/radio/dsbr100.c | |
3203 | ||
1da177e4 | 3204 | DSCC4 DRIVER |
8b58be88 | 3205 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 3206 | L: netdev@vger.kernel.org |
1da177e4 | 3207 | S: Maintained |
679655da | 3208 | F: drivers/net/wan/dscc4.c |
1da177e4 | 3209 | |
91952bc0 AP |
3210 | DVB_USB_AF9015 MEDIA DRIVER |
3211 | M: Antti Palosaari <crope@iki.fi> | |
3212 | L: linux-media@vger.kernel.org | |
3213 | W: http://linuxtv.org/ | |
3214 | W: http://palosaari.fi/linux/ | |
3215 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3216 | T: git git://linuxtv.org/anttip/media_tree.git | |
3217 | S: Maintained | |
3218 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3219 | ||
3220 | DVB_USB_AF9035 MEDIA DRIVER | |
3221 | M: Antti Palosaari <crope@iki.fi> | |
3222 | L: linux-media@vger.kernel.org | |
3223 | W: http://linuxtv.org/ | |
3224 | W: http://palosaari.fi/linux/ | |
3225 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3226 | T: git git://linuxtv.org/anttip/media_tree.git | |
3227 | S: Maintained | |
3228 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3229 | ||
3230 | DVB_USB_ANYSEE MEDIA DRIVER | |
3231 | M: Antti Palosaari <crope@iki.fi> | |
3232 | L: linux-media@vger.kernel.org | |
3233 | W: http://linuxtv.org/ | |
3234 | W: http://palosaari.fi/linux/ | |
3235 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3236 | T: git git://linuxtv.org/anttip/media_tree.git | |
3237 | S: Maintained | |
3238 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3239 | ||
3240 | DVB_USB_AU6610 MEDIA DRIVER | |
3241 | M: Antti Palosaari <crope@iki.fi> | |
3242 | L: linux-media@vger.kernel.org | |
3243 | W: http://linuxtv.org/ | |
3244 | W: http://palosaari.fi/linux/ | |
3245 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3246 | T: git git://linuxtv.org/anttip/media_tree.git | |
3247 | S: Maintained | |
3248 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3249 | ||
3250 | DVB_USB_CE6230 MEDIA DRIVER | |
3251 | M: Antti Palosaari <crope@iki.fi> | |
3252 | L: linux-media@vger.kernel.org | |
3253 | W: http://linuxtv.org/ | |
3254 | W: http://palosaari.fi/linux/ | |
3255 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3256 | T: git git://linuxtv.org/anttip/media_tree.git | |
3257 | S: Maintained | |
3258 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3259 | ||
d099dea2 MK |
3260 | DVB_USB_CXUSB MEDIA DRIVER |
3261 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3262 | L: linux-media@vger.kernel.org | |
3263 | W: http://linuxtv.org/ | |
3264 | W: http://github.com/mkrufky | |
3265 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3266 | T: git git://linuxtv.org/media_tree.git | |
3267 | S: Maintained | |
9819da66 | 3268 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3269 | |
91952bc0 | 3270 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3271 | M: Antti Palosaari <crope@iki.fi> |
3272 | L: linux-media@vger.kernel.org | |
3273 | W: http://linuxtv.org/ | |
3274 | W: http://palosaari.fi/linux/ | |
3275 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3276 | T: git git://linuxtv.org/anttip/media_tree.git | |
3277 | S: Maintained | |
91952bc0 | 3278 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3279 | |
5560983b | 3280 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3281 | M: Antti Palosaari <crope@iki.fi> |
3282 | L: linux-media@vger.kernel.org | |
3283 | W: http://linuxtv.org/ | |
91952bc0 AP |
3284 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3285 | T: git git://linuxtv.org/anttip/media_tree.git | |
3286 | S: Maintained | |
5560983b | 3287 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3288 | |
8856f5f2 MK |
3289 | DVB_USB_MXL111SF MEDIA DRIVER |
3290 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3291 | L: linux-media@vger.kernel.org | |
3292 | W: http://linuxtv.org/ | |
3293 | W: http://github.com/mkrufky | |
3294 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3295 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3296 | S: Maintained | |
3297 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3298 | ||
91952bc0 AP |
3299 | DVB_USB_RTL28XXU MEDIA DRIVER |
3300 | M: Antti Palosaari <crope@iki.fi> | |
3301 | L: linux-media@vger.kernel.org | |
3302 | W: http://linuxtv.org/ | |
3303 | W: http://palosaari.fi/linux/ | |
3304 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3305 | T: git git://linuxtv.org/anttip/media_tree.git | |
3306 | S: Maintained | |
3307 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3308 | ||
3309 | DVB_USB_V2 MEDIA DRIVER | |
3310 | M: Antti Palosaari <crope@iki.fi> | |
3311 | L: linux-media@vger.kernel.org | |
3312 | W: http://linuxtv.org/ | |
3313 | W: http://palosaari.fi/linux/ | |
3314 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3315 | T: git git://linuxtv.org/anttip/media_tree.git | |
3316 | S: Maintained | |
3317 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3318 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3319 | ||
ac0ac38f | 3320 | DYNAMIC DEBUG |
5c4a97d1 | 3321 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
3322 | S: Maintained |
3323 | F: lib/dynamic_debug.c | |
3324 | F: include/linux/dynamic_debug.h | |
3325 | ||
789c7048 | 3326 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3327 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 3328 | S: Maintained |
df621252 | 3329 | F: drivers/tty/serial/dz.* |
789c7048 | 3330 | |
91952bc0 AP |
3331 | E4000 MEDIA DRIVER |
3332 | M: Antti Palosaari <crope@iki.fi> | |
3333 | L: linux-media@vger.kernel.org | |
3334 | W: http://linuxtv.org/ | |
3335 | W: http://palosaari.fi/linux/ | |
3336 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3337 | T: git git://linuxtv.org/anttip/media_tree.git | |
3338 | S: Maintained | |
3339 | F: drivers/media/tuners/e4000* | |
3340 | ||
1da177e4 | 3341 | EATA ISA/EISA/PCI SCSI DRIVER |
8b58be88 | 3342 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
3343 | L: linux-scsi@vger.kernel.org |
3344 | S: Maintained | |
679655da | 3345 | F: drivers/scsi/eata.c |
1da177e4 | 3346 | |
91952bc0 AP |
3347 | EC100 MEDIA DRIVER |
3348 | M: Antti Palosaari <crope@iki.fi> | |
3349 | L: linux-media@vger.kernel.org | |
3350 | W: http://linuxtv.org/ | |
3351 | W: http://palosaari.fi/linux/ | |
3352 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3353 | T: git git://linuxtv.org/anttip/media_tree.git | |
3354 | S: Maintained | |
3355 | F: drivers/media/dvb-frontends/ec100* | |
3356 | ||
237fead6 | 3357 | ECRYPT FILE SYSTEM |
0de9adf2 | 3358 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 3359 | L: ecryptfs@vger.kernel.org |
24a923e4 | 3360 | W: http://ecryptfs.org |
6dc7516e | 3361 | W: https://launchpad.net/ecryptfs |
237fead6 | 3362 | S: Supported |
679655da JP |
3363 | F: Documentation/filesystems/ecryptfs.txt |
3364 | F: fs/ecryptfs/ | |
237fead6 | 3365 | |
da9bb1d2 | 3366 | EDAC-CORE |
8b58be88 | 3367 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e BP |
3368 | M: Borislav Petkov <bp@alien8.de> |
3369 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> | |
91445c72 | 3370 | L: linux-edac@vger.kernel.org |
0e438e3f | 3371 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3372 | S: Supported |
679655da | 3373 | F: Documentation/edac.txt |
91445c72 | 3374 | F: drivers/edac/ |
679655da | 3375 | F: include/linux/edac.h |
0e438e3f | 3376 | |
c476c23b | 3377 | EDAC-AMD64 |
8b58be88 | 3378 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 3379 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 3380 | L: linux-edac@vger.kernel.org |
c476c23b | 3381 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3382 | S: Maintained |
c476c23b BP |
3383 | F: drivers/edac/amd64_edac* |
3384 | ||
836dae5d RR |
3385 | EDAC-CALXEDA |
3386 | M: Doug Thompson <dougthompson@xmission.com> | |
3387 | M: Robert Richter <rric@kernel.org> | |
3388 | L: linux-edac@vger.kernel.org | |
3389 | W: bluesmoke.sourceforge.net | |
3390 | S: Maintained | |
3391 | F: drivers/edac/highbank* | |
3392 | ||
f65aad41 RB |
3393 | EDAC-CAVIUM |
3394 | M: Ralf Baechle <ralf@linux-mips.org> | |
3395 | M: David Daney <david.daney@cavium.com> | |
3396 | L: linux-edac@vger.kernel.org | |
3397 | L: linux-mips@linux-mips.org | |
3398 | W: bluesmoke.sourceforge.net | |
3399 | S: Supported | |
3400 | F: drivers/edac/octeon_edac* | |
3401 | ||
0e438e3f | 3402 | EDAC-E752X |
8b58be88 JP |
3403 | M: Mark Gross <mark.gross@intel.com> |
3404 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 3405 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3406 | W: bluesmoke.sourceforge.net |
3407 | S: Maintained | |
679655da | 3408 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3409 | |
3410 | EDAC-E7XXX | |
8b58be88 | 3411 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3412 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3413 | W: bluesmoke.sourceforge.net |
3414 | S: Maintained | |
679655da | 3415 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3416 | |
77c5f5d2 | 3417 | EDAC-GHES |
1b2c14b4 | 3418 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
77c5f5d2 MCC |
3419 | L: linux-edac@vger.kernel.org |
3420 | W: bluesmoke.sourceforge.net | |
3421 | S: Maintained | |
2caa67a6 | 3422 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3423 | |
6bc78404 | 3424 | EDAC-I82443BXGX |
8b58be88 | 3425 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3426 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3427 | W: bluesmoke.sourceforge.net |
3428 | S: Maintained | |
679655da | 3429 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3430 | |
3431 | EDAC-I3000 | |
8b58be88 | 3432 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 3433 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3434 | W: bluesmoke.sourceforge.net |
3435 | S: Maintained | |
679655da | 3436 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3437 | |
3438 | EDAC-I5000 | |
8b58be88 | 3439 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3440 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3441 | W: bluesmoke.sourceforge.net |
3442 | S: Maintained | |
679655da | 3443 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3444 | |
44c12cb2 | 3445 | EDAC-I5400 |
1b2c14b4 | 3446 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 | 3447 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
3448 | W: bluesmoke.sourceforge.net |
3449 | S: Maintained | |
679655da | 3450 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3451 | |
3c9c92b6 | 3452 | EDAC-I7300 |
1b2c14b4 | 3453 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3c9c92b6 MCC |
3454 | L: linux-edac@vger.kernel.org |
3455 | W: bluesmoke.sourceforge.net | |
3456 | S: Maintained | |
3457 | F: drivers/edac/i7300_edac.c | |
3458 | ||
67c89316 | 3459 | EDAC-I7CORE |
1b2c14b4 | 3460 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 MCC |
3461 | L: linux-edac@vger.kernel.org |
3462 | W: bluesmoke.sourceforge.net | |
3463 | S: Maintained | |
70aff0ce | 3464 | F: drivers/edac/i7core_edac.c |
67c89316 | 3465 | |
ba9a5918 | 3466 | EDAC-I82975X |
8b58be88 | 3467 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 3468 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 3469 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3470 | W: bluesmoke.sourceforge.net |
3471 | S: Maintained | |
679655da | 3472 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3473 | |
791b4706 JB |
3474 | EDAC-IE31200 |
3475 | M: Jason Baron <jbaron@akamai.com> | |
3476 | L: linux-edac@vger.kernel.org | |
3477 | W: bluesmoke.sourceforge.net | |
3478 | S: Maintained | |
3479 | F: drivers/edac/ie31200_edac.c | |
3480 | ||
ccdfb979 JT |
3481 | EDAC-MPC85XX |
3482 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
3483 | L: linux-edac@vger.kernel.org | |
3484 | W: bluesmoke.sourceforge.net | |
3485 | S: Maintained | |
3486 | F: drivers/edac/mpc85xx_edac.[ch] | |
3487 | ||
ba9a5918 | 3488 | EDAC-PASEMI |
8b58be88 | 3489 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 3490 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3491 | W: bluesmoke.sourceforge.net |
3492 | S: Maintained | |
679655da | 3493 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3494 | |
0e438e3f | 3495 | EDAC-R82600 |
8b58be88 | 3496 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3497 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3498 | W: bluesmoke.sourceforge.net |
3499 | S: Maintained | |
679655da | 3500 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3501 | |
4d096ca7 | 3502 | EDAC-SBRIDGE |
1b2c14b4 | 3503 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
4d096ca7 MCC |
3504 | L: linux-edac@vger.kernel.org |
3505 | W: bluesmoke.sourceforge.net | |
3506 | S: Maintained | |
3507 | F: drivers/edac/sb_edac.c | |
3508 | ||
af39917d CL |
3509 | EDIROL UA-101/UA-1000 DRIVER |
3510 | M: Clemens Ladisch <clemens@ladisch.de> | |
3511 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3512 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3513 | S: Maintained | |
3514 | F: sound/usb/misc/ua101.c | |
3515 | ||
1f7df953 MF |
3516 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3517 | M: Matt Fleming <matt.fleming@intel.com> | |
3518 | L: linux-efi@vger.kernel.org | |
78bef24e | 3519 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 | 3520 | S: Maintained |
fb2efb5c | 3521 | F: Documentation/efi-stub.txt |
1f7df953 MF |
3522 | F: arch/ia64/kernel/efi.c |
3523 | F: arch/x86/boot/compressed/eboot.[ch] | |
3524 | F: arch/x86/include/asm/efi.h | |
3525 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3526 | F: drivers/firmware/efi/* |
1f7df953 MF |
3527 | F: include/linux/efi*.h |
3528 | ||
d68772b7 MF |
3529 | EFI VARIABLE FILESYSTEM |
3530 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
3531 | M: Jeremy Kerr <jk@ozlabs.org> | |
3532 | M: Matt Fleming <matt.fleming@intel.com> | |
3533 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3534 | L: linux-efi@vger.kernel.org | |
3535 | S: Maintained | |
3536 | F: fs/efivarfs/ | |
3537 | ||
85a00d9b PJ |
3538 | EFIFB FRAMEBUFFER DRIVER |
3539 | L: linux-fbdev@vger.kernel.org | |
3540 | M: Peter Jones <pjones@redhat.com> | |
3541 | S: Maintained | |
8a61f013 | 3542 | F: drivers/video/fbdev/efifb.c |
85a00d9b | 3543 | |
0bee8d28 JT |
3544 | EFS FILESYSTEM |
3545 | W: http://aeschi.ch.eu.org/efs/ | |
3546 | S: Orphan | |
679655da | 3547 | F: fs/efs/ |
0bee8d28 | 3548 | |
4480f15b | 3549 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3550 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
3551 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 3552 | L: linux-rdma@vger.kernel.org |
fab97220 | 3553 | S: Supported |
679655da | 3554 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3555 | |
aa8a9e25 | 3556 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3557 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
3558 | L: netdev@vger.kernel.org |
3559 | S: Maintained | |
9aa32835 | 3560 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3561 | |
f0319efe | 3562 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3563 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
f0319efe MCC |
3564 | L: linux-media@vger.kernel.org |
3565 | W: http://linuxtv.org | |
3566 | T: git git://linuxtv.org/media_tree.git | |
3567 | S: Maintained | |
3568 | F: drivers/media/usb/em28xx/ | |
3569 | ||
3e3a7d66 | 3570 | EMBEDDED LINUX |
8b58be88 JP |
3571 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
3572 | M: Matt Mackall <mpm@selenic.com> | |
3573 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
3574 | L: linux-embedded@vger.kernel.org |
3575 | S: Maintained | |
3576 | ||
3a1c1d44 | 3577 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3578 | M: James Smart <james.smart@emulex.com> |
ce00f85c JC |
3579 | L: linux-scsi@vger.kernel.org |
3580 | W: http://sourceforge.net/projects/lpfcxxxx | |
3581 | S: Supported | |
679655da | 3582 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3583 | |
5f5bac82 | 3584 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3585 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
3586 | S: Maintained |
3587 | F: drivers/misc/cb710/ | |
3588 | F: drivers/mmc/host/cb710-mmc.* | |
3589 | F: include/linux/cb710.h | |
3590 | ||
931e39a1 ML |
3591 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3592 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
3593 | S: Maintained | |
2a837449 | 3594 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3595 | |
ec207dcc GS |
3596 | ENHANCED ERROR HANDLING (EEH) |
3597 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
3598 | L: linuxppc-dev@lists.ozlabs.org | |
3599 | S: Supported | |
3600 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3601 | F: arch/powerpc/kernel/eeh*.c | |
3602 | ||
d5ca9006 | 3603 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3604 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 3605 | S: Maintained |
084bad91 | 3606 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
8a61f013 | 3607 | F: drivers/video/fbdev/s1d13xxxfb.c |
679655da | 3608 | F: include/video/s1d13xxxfb.h |
d5ca9006 | 3609 | |
38df6492 ME |
3610 | ET131X NETWORK DRIVER |
3611 | M: Mark Einon <mark.einon@gmail.com> | |
3612 | S: Odd Fixes | |
3613 | F: drivers/net/ethernet/agere/ | |
3614 | ||
1da177e4 | 3615 | ETHERNET BRIDGE |
adbbf69d | 3616 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 3617 | L: bridge@lists.linux-foundation.org |
4c325313 | 3618 | L: netdev@vger.kernel.org |
c996d8b9 | 3619 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3620 | S: Maintained |
679655da JP |
3621 | F: include/linux/netfilter_bridge/ |
3622 | F: net/bridge/ | |
1da177e4 | 3623 | |
22f08ad9 FF |
3624 | ETHERNET PHY LIBRARY |
3625 | M: Florian Fainelli <f.fainelli@gmail.com> | |
3626 | L: netdev@vger.kernel.org | |
3627 | S: Maintained | |
3628 | F: include/linux/phy.h | |
3629 | F: include/linux/phy_fixed.h | |
3630 | F: drivers/net/phy/ | |
3631 | F: Documentation/networking/phy.txt | |
3632 | F: drivers/of/of_mdio.c | |
3633 | F: drivers/of/of_net.c | |
3634 | ||
1da177e4 | 3635 | EXT2 FILE SYSTEM |
01971952 | 3636 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 3637 | L: linux-ext4@vger.kernel.org |
1da177e4 | 3638 | S: Maintained |
679655da JP |
3639 | F: Documentation/filesystems/ext2.txt |
3640 | F: fs/ext2/ | |
3641 | F: include/linux/ext2* | |
1da177e4 LT |
3642 | |
3643 | EXT3 FILE SYSTEM | |
01971952 | 3644 | M: Jan Kara <jack@suse.cz> |
8b58be88 | 3645 | M: Andrew Morton <akpm@linux-foundation.org> |
3c373a5f | 3646 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf EM |
3647 | L: linux-ext4@vger.kernel.org |
3648 | S: Maintained | |
679655da JP |
3649 | F: Documentation/filesystems/ext3.txt |
3650 | F: fs/ext3/ | |
72be2ccf EM |
3651 | |
3652 | EXT4 FILE SYSTEM | |
8b58be88 | 3653 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 3654 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 3655 | L: linux-ext4@vger.kernel.org |
08a225f1 | 3656 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3657 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3658 | S: Maintained |
679655da JP |
3659 | F: Documentation/filesystems/ext4.txt |
3660 | F: fs/ext4/ | |
1da177e4 | 3661 | |
c5532b09 | 3662 | Extended Verification Module (EVM) |
74dd744f MZ |
3663 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
3664 | L: linux-ima-devel@lists.sourceforge.net | |
3665 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
3666 | S: Supported |
3667 | F: security/integrity/evm/ | |
3668 | ||
df6b3cfe MH |
3669 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3670 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3671 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3672 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 3673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3674 | S: Maintained |
3675 | F: drivers/extcon/ | |
3676 | F: Documentation/extcon/ | |
3677 | ||
e2a75c44 JH |
3678 | EXYNOS DP DRIVER |
3679 | M: Jingoo Han <jg1.han@samsung.com> | |
3680 | L: dri-devel@lists.freedesktop.org | |
3681 | S: Maintained | |
3682 | F: drivers/gpu/drm/exynos/exynos_dp* | |
3683 | ||
33ad3912 DL |
3684 | EXYNOS MIPI DISPLAY DRIVERS |
3685 | M: Inki Dae <inki.dae@samsung.com> | |
3686 | M: Donghwa Lee <dh09.lee@samsung.com> | |
3687 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3688 | L: linux-fbdev@vger.kernel.org | |
3689 | S: Maintained | |
8a61f013 | 3690 | F: drivers/video/fbdev/exynos/exynos_mipi* |
33ad3912 DL |
3691 | F: include/video/exynos_mipi* |
3692 | ||
e53004e2 | 3693 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3694 | M: Jean Delvare <jdelvare@suse.de> |
e53004e2 JD |
3695 | L: lm-sensors@lm-sensors.org |
3696 | S: Maintained | |
679655da JP |
3697 | F: Documentation/hwmon/f71805f |
3698 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3699 | |
eea977ed MB |
3700 | FC0011 TUNER DRIVER |
3701 | M: Michael Buesch <m@bues.ch> | |
3702 | L: linux-media@vger.kernel.org | |
3703 | S: Maintained | |
ccae7af2 MCC |
3704 | F: drivers/media/tuners/fc0011.h |
3705 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3706 | |
91952bc0 AP |
3707 | FC2580 MEDIA DRIVER |
3708 | M: Antti Palosaari <crope@iki.fi> | |
3709 | L: linux-media@vger.kernel.org | |
3710 | W: http://linuxtv.org/ | |
3711 | W: http://palosaari.fi/linux/ | |
3712 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3713 | T: git git://linuxtv.org/anttip/media_tree.git | |
3714 | S: Maintained | |
3715 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3716 | |
88b2dbdb EP |
3717 | FANOTIFY |
3718 | M: Eric Paris <eparis@redhat.com> | |
3719 | S: Maintained | |
3720 | F: fs/notify/fanotify/ | |
3721 | F: include/linux/fanotify.h | |
c117ab84 | 3722 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3723 | |
1da177e4 | 3724 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3725 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
3726 | W: http://www.farsite.co.uk/ |
3727 | S: Supported | |
679655da | 3728 | F: drivers/net/wan/farsync.* |
1da177e4 | 3729 | |
c5408b88 | 3730 | FAULT INJECTION SUPPORT |
8b58be88 | 3731 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 3732 | S: Supported |
679655da JP |
3733 | F: Documentation/fault-injection/ |
3734 | F: lib/fault-inject.c | |
c5408b88 | 3735 | |
cae727db RL |
3736 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3737 | M: Robert Love <robert.w.love@intel.com> | |
f4aaea6d | 3738 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
3739 | W: www.Open-FCoE.org |
3740 | S: Supported | |
3741 | F: drivers/scsi/libfc/ | |
3742 | F: drivers/scsi/fcoe/ | |
3743 | F: include/scsi/fc/ | |
3744 | F: include/scsi/libfc.h | |
3745 | F: include/scsi/libfcoe.h | |
c117ab84 | 3746 | F: include/uapi/scsi/fc/ |
cae727db | 3747 | |
e2d1d6c0 | 3748 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 3749 | M: Jeff Layton <jlayton@poochiereds.net> |
18156e7e | 3750 | M: J. Bruce Fields <bfields@fieldses.org> |
e2d1d6c0 | 3751 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 3752 | S: Maintained |
679655da JP |
3753 | F: include/linux/fcntl.h |
3754 | F: include/linux/fs.h | |
c117ab84 CEB |
3755 | F: include/uapi/linux/fcntl.h |
3756 | F: include/uapi/linux/fs.h | |
679655da JP |
3757 | F: fs/fcntl.c |
3758 | F: fs/locks.c | |
1da177e4 | 3759 | |
e2d1d6c0 | 3760 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3761 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 3762 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 3763 | S: Maintained |
679655da | 3764 | F: fs/* |
173acc7c | 3765 | |
b26e0ed4 | 3766 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3767 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
3768 | L: lm-sensors@lm-sensors.org |
3769 | S: Maintained | |
d5ca6918 JP |
3770 | F: drivers/hwmon/f75375s.c |
3771 | F: include/linux/f75375s.h | |
b26e0ed4 | 3772 | |
a331b0c3 CL |
3773 | FIREWIRE AUDIO DRIVERS |
3774 | M: Clemens Ladisch <clemens@ladisch.de> | |
3775 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3776 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3777 | S: Maintained | |
3778 | F: sound/firewire/ | |
3779 | ||
eb86ec51 SR |
3780 | FIREWIRE MEDIA DRIVERS (firedtv) |
3781 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
3782 | L: linux-media@vger.kernel.org | |
3783 | L: linux1394-devel@lists.sourceforge.net | |
3784 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3785 | S: Maintained | |
3786 | F: drivers/media/firewire/ | |
3787 | ||
a511ce33 CB |
3788 | FIREWIRE SBP-2 TARGET |
3789 | M: Chris Boot <bootc@bootc.net> | |
3790 | L: linux-scsi@vger.kernel.org | |
3791 | L: target-devel@vger.kernel.org | |
3792 | L: linux1394-devel@lists.sourceforge.net | |
3793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3794 | S: Maintained | |
3795 | F: drivers/target/sbp/ | |
3796 | ||
7d2c86b5 | 3797 | FIREWIRE SUBSYSTEM |
8b58be88 | 3798 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 3799 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 3800 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3801 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3802 | S: Maintained |
679655da | 3803 | F: drivers/firewire/ |
8f06ce3b SR |
3804 | F: include/linux/firewire.h |
3805 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3806 | F: tools/firewire/ |
e2d1d6c0 RD |
3807 | |
3808 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3809 | M: Ming Lei <ming.lei@canonical.com> |
3810 | L: linux-kernel@vger.kernel.org | |
3811 | S: Maintained | |
679655da JP |
3812 | F: Documentation/firmware_class/ |
3813 | F: drivers/base/firmware*.c | |
3814 | F: include/linux/firmware.h | |
e2d1d6c0 | 3815 | |
f730e3dc | 3816 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3817 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
3818 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
3819 | S: Maintained | |
3820 | F: drivers/block/rsxx/ | |
3821 | ||
8206f664 JK |
3822 | FLOPPY DRIVER |
3823 | M: Jiri Kosina <jkosina@suse.cz> | |
3824 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3825 | S: Odd fixes | |
3826 | F: drivers/block/floppy.c | |
3827 | ||
9c9f32ed AR |
3828 | FMC SUBSYSTEM |
3829 | M: Alessandro Rubini <rubini@gnudd.com> | |
3830 | W: http://www.ohwr.org/projects/fmc-bus | |
3831 | S: Supported | |
3832 | F: drivers/fmc/ | |
3833 | F: include/linux/fmc*.h | |
3834 | F: include/linux/ipmi-fru.h | |
3835 | K: fmc_d.*register | |
3836 | ||
e2d1d6c0 | 3837 | FPU EMULATOR |
8b58be88 | 3838 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 3839 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3840 | S: Maintained |
679655da | 3841 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3842 | |
3843 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3844 | L: netdev@vger.kernel.org |
c173bfac | 3845 | S: Orphan |
679655da JP |
3846 | F: drivers/net/wan/dlci.c |
3847 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3848 | |
3849 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3850 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
3851 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 3852 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 3853 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3854 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3856 | S: Maintained |
679655da | 3857 | F: Documentation/fb/ |
d958c62c | 3858 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3859 | F: drivers/video/ |
3860 | F: include/video/ | |
679655da | 3861 | F: include/linux/fb.h |
c117ab84 CEB |
3862 | F: include/uapi/video/ |
3863 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3864 | |
a57c188e | 3865 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3866 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 3867 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 3868 | S: Maintained |
8a61f013 | 3869 | F: drivers/video/fbdev/fsl-diu-fb.* |
a57c188e | 3870 | |
e2d1d6c0 | 3871 | FREESCALE DMA DRIVER |
8b58be88 JP |
3872 | M: Li Yang <leoli@freescale.com> |
3873 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 3874 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 3875 | S: Maintained |
679655da | 3876 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3877 | |
3878 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3879 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 3880 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 3881 | L: linux-i2c@vger.kernel.org |
0d2b405a | 3882 | S: Maintained |
679655da | 3883 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3884 | |
60e8c5ab | 3885 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3886 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 3887 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 3888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 3889 | S: Maintained |
bad985a1 | 3890 | F: include/linux/platform_data/video-imxfb.h |
8a61f013 | 3891 | F: drivers/video/fbdev/imxfb.c |
60e8c5ab | 3892 | |
4689a6b1 | 3893 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3894 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
3895 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 3896 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
3897 | L: netdev@vger.kernel.org |
3898 | S: Maintained | |
ec21e2ec | 3899 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3900 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3901 | |
d9e9d82c | 3902 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3903 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3904 | S: Orphan |
679655da JP |
3905 | F: arch/powerpc/sysdev/qe_lib/ |
3906 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3907 | |
b55ef929 | 3908 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3909 | M: Li Yang <leoli@freescale.com> |
6372594a | 3910 | L: linux-usb@vger.kernel.org |
a4724ed6 | 3911 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 3912 | S: Maintained |
faf2e1db | 3913 | F: drivers/usb/gadget/udc/fsl* |
a7205b30 | 3914 | |
beaf53bf | 3915 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3916 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 3917 | L: netdev@vger.kernel.org |
a4724ed6 | 3918 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 3919 | S: Maintained |
ec21e2ec | 3920 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3921 | |
d9e9d82c | 3922 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3923 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 3924 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3925 | S: Maintained |
df621252 | 3926 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3927 | |
3928 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3929 | M: Timur Tabi <timur@tabi.org> |
dc85950a MB |
3930 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
3931 | M: Xiubo Li <Li.Xiubo@freescale.com> | |
93711660 | 3932 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 3933 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3934 | S: Maintained |
69aefcea | 3935 | F: sound/soc/fsl/fsl* |
dc85950a | 3936 | F: sound/soc/fsl/imx* |
69aefcea | 3937 | F: sound/soc/fsl/mpc8610_hpcd.c |
d9e9d82c | 3938 | |
1da177e4 | 3939 | FREEVXFS FILESYSTEM |
8b58be88 | 3940 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
3941 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3942 | S: Maintained | |
679655da | 3943 | F: fs/freevxfs/ |
1da177e4 | 3944 | |
71038f52 | 3945 | FREEZER |
49db1903 | 3946 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 3947 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 3948 | L: linux-pm@vger.kernel.org |
71038f52 | 3949 | S: Supported |
679655da JP |
3950 | F: Documentation/power/freezing-of-tasks.txt |
3951 | F: include/linux/freezer.h | |
3952 | F: kernel/freezer.c | |
71038f52 | 3953 | |
839a1f79 KRW |
3954 | FRONTSWAP API |
3955 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3956 | L: linux-kernel@vger.kernel.org | |
3957 | S: Maintained | |
3958 | F: mm/frontswap.c | |
3959 | F: include/linux/frontswap.h | |
3960 | ||
a5432f5a | 3961 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3962 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
3963 | L: linux-cachefs@redhat.com |
3964 | S: Supported | |
3965 | F: Documentation/filesystems/caching/ | |
3966 | F: fs/fscache/ | |
3967 | F: include/linux/fscache*.h | |
3968 | ||
f58ad8f5 | 3969 | F2FS FILE SYSTEM |
9b29d481 | 3970 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
f6238a72 | 3971 | M: Changman Lee <cm224.lee@samsung.com> |
f58ad8f5 JK |
3972 | L: linux-f2fs-devel@lists.sourceforge.net |
3973 | W: http://en.wikipedia.org/wiki/F2FS | |
3974 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3975 | S: Maintained | |
3976 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 3977 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
3978 | F: fs/f2fs/ |
3979 | F: include/linux/f2fs_fs.h | |
3980 | ||
5ab7ffea | 3981 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3982 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 3983 | S: Maintained |
679655da | 3984 | F: arch/frv/ |
1da177e4 | 3985 | |
20b93734 | 3986 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3987 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 3988 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 3989 | S: Maintained |
679655da | 3990 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3991 | |
4da621b6 HK |
3992 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3993 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3994 | M: Heungjun Kim <riverful.kim@samsung.com> | |
3995 | L: linux-media@vger.kernel.org | |
3996 | S: Maintained | |
90d72ac6 | 3997 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3998 | F: include/media/m5mols.h |
3999 | ||
2d24c490 RG |
4000 | FUJITSU TABLET EXTRAS |
4001 | M: Robert Gerlach <khnz@gmx.de> | |
4002 | L: platform-driver-x86@vger.kernel.org | |
4003 | S: Maintained | |
4004 | F: drivers/platform/x86/fujitsu-tablet.c | |
4005 | ||
04578f17 | 4006 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 4007 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
4008 | L: fuse-devel@lists.sourceforge.net |
4009 | W: http://fuse.sourceforge.net/ | |
4010 | S: Maintained | |
679655da | 4011 | F: fs/fuse/ |
c117ab84 | 4012 | F: include/uapi/linux/fuse.h |
04578f17 | 4013 | |
1da177e4 | 4014 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 4015 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 4016 | L: linux-scsi@vger.kernel.org |
baaea1dc | 4017 | S: Odd Fixes (e.g., new signatures) |
679655da | 4018 | F: drivers/scsi/fdomain.* |
1da177e4 | 4019 | |
d8e2162c PO |
4020 | GCOV BASED KERNEL PROFILING |
4021 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
4022 | S: Maintained | |
4023 | F: kernel/gcov/ | |
4024 | F: Documentation/gcov.txt | |
4025 | ||
1da177e4 | 4026 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 4027 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
4028 | L: linux-scsi@vger.kernel.org |
4029 | W: http://www.icp-vortex.com/ | |
4030 | S: Supported | |
679655da | 4031 | F: drivers/scsi/gdt* |
1da177e4 | 4032 | |
3169a1c7 HV |
4033 | GEMTEK FM RADIO RECEIVER DRIVER |
4034 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4035 | L: linux-media@vger.kernel.org | |
4036 | T: git git://linuxtv.org/media_tree.git | |
4037 | W: http://linuxtv.org | |
4038 | S: Maintained | |
4039 | F: drivers/media/radio/radio-gemtek* | |
4040 | ||
1c23af90 | 4041 | GENERIC GPIO I2C DRIVER |
880b0e26 | 4042 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 4043 | S: Supported |
679655da JP |
4044 | F: drivers/i2c/busses/i2c-gpio.c |
4045 | F: include/linux/i2c-gpio.h | |
1c23af90 | 4046 | |
92ed1a76 PK |
4047 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
4048 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
4049 | L: linux-i2c@vger.kernel.org | |
4050 | S: Supported | |
e7065e20 JD |
4051 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
4052 | F: include/linux/i2c-mux-gpio.h | |
4053 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 4054 | |
9251ce95 | 4055 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 4056 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
4057 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
4058 | S: Maintained | |
679655da JP |
4059 | F: drivers/net/wan/c101.c |
4060 | F: drivers/net/wan/hd6457* | |
4061 | F: drivers/net/wan/hdlc* | |
4062 | F: drivers/net/wan/n2.c | |
4063 | F: drivers/net/wan/pc300too.c | |
4064 | F: drivers/net/wan/pci200syn.c | |
4065 | F: drivers/net/wan/wanxl* | |
1da177e4 | 4066 | |
1527aab6 | 4067 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 4068 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
4069 | L: linux-arch@vger.kernel.org |
4070 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
4071 | S: Maintained | |
14430813 JP |
4072 | F: include/asm-generic/ |
4073 | F: include/uapi/asm-generic/ | |
1527aab6 | 4074 | |
ff764963 KVA |
4075 | GENERIC PHY FRAMEWORK |
4076 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
4077 | L: linux-kernel@vger.kernel.org | |
4078 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
4079 | S: Supported | |
4080 | F: drivers/phy/ | |
4081 | F: include/linux/phy/ | |
4082 | ||
ccb86a69 | 4083 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 4084 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 4085 | L: kvm@vger.kernel.org |
ccb86a69 MT |
4086 | S: Supported |
4087 | F: drivers/uio/uio_pci_generic.c | |
4088 | ||
f8f1ec73 JP |
4089 | GET_MAINTAINER SCRIPT |
4090 | M: Joe Perches <joe@perches.com> | |
4091 | S: Maintained | |
4092 | F: scripts/get_maintainer.pl | |
4093 | ||
5be7b50f | 4094 | GFS2 FILE SYSTEM |
8b58be88 | 4095 | M: Steven Whitehouse <swhiteho@redhat.com> |
a4644184 | 4096 | L: cluster-devel@redhat.com |
5be7b50f | 4097 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
4098 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
4099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 4100 | S: Supported |
679655da JP |
4101 | F: Documentation/filesystems/gfs2*.txt |
4102 | F: fs/gfs2/ | |
c117ab84 | 4103 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 4104 | |
0a34eb8f | 4105 | GIGASET ISDN DRIVERS |
8b58be88 JP |
4106 | M: Hansjoerg Lipp <hjlipp@web.de> |
4107 | M: Tilman Schmidt <tilman@imap.cc> | |
0a34eb8f HL |
4108 | L: gigaset307x-common@lists.sourceforge.net |
4109 | W: http://gigaset307x.sourceforge.net/ | |
4110 | S: Maintained | |
679655da JP |
4111 | F: Documentation/isdn/README.gigaset |
4112 | F: drivers/isdn/gigaset/ | |
c117ab84 | 4113 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 4114 | |
7eea35fe JP |
4115 | GO7007 MPEG CODEC |
4116 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
4117 | L: linux-media@vger.kernel.org | |
4118 | S: Maintained | |
4119 | F: drivers/media/usb/go7007/ | |
4120 | ||
a0dc00b4 | 4121 | GPIO SUBSYSTEM |
e4651a9f | 4122 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 4123 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 4124 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
4125 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
4126 | S: Maintained | |
4127 | F: Documentation/gpio/ | |
a0dc00b4 | 4128 | F: drivers/gpio/ |
bdc6e95e AC |
4129 | F: include/linux/gpio/ |
4130 | F: include/linux/gpio.h | |
9b692346 | 4131 | F: include/asm-generic/gpio.h |
a0dc00b4 | 4132 | |
71a6d0af HW |
4133 | GRE DEMULTIPLEXER DRIVER |
4134 | M: Dmitry Kozlov <xeb@mail.ru> | |
4135 | L: netdev@vger.kernel.org | |
4136 | S: Maintained | |
11c26770 JP |
4137 | F: net/ipv4/gre_demux.c |
4138 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
4139 | F: include/net/gre.h |
4140 | ||
d4c41139 KG |
4141 | GRETH 10/100/1G Ethernet MAC device driver |
4142 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
4143 | L: netdev@vger.kernel.org | |
4144 | S: Maintained | |
a31a96ad | 4145 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 4146 | |
e8deeae2 | 4147 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 4148 | M: Frank Zago <frank@zago.net> |
661263b5 | 4149 | L: linux-media@vger.kernel.org |
275ffde4 | 4150 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4151 | S: Maintained |
0c0d06ca | 4152 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 4153 | |
4b3fa3c4 OL |
4154 | GSPCA GL860 SUBDRIVER |
4155 | M: Olivier Lorin <o.lorin@laposte.net> | |
4156 | L: linux-media@vger.kernel.org | |
275ffde4 | 4157 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 4158 | S: Maintained |
0c0d06ca | 4159 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 4160 | |
e8deeae2 | 4161 | GSPCA M5602 SUBDRIVER |
8b58be88 | 4162 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 4163 | L: linux-media@vger.kernel.org |
275ffde4 | 4164 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4165 | S: Maintained |
0c0d06ca | 4166 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
4167 | |
4168 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 4169 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4170 | L: linux-media@vger.kernel.org |
275ffde4 | 4171 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4172 | S: Maintained |
0c0d06ca | 4173 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 4174 | |
261982f1 | 4175 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 4176 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 4177 | L: linux-media@vger.kernel.org |
275ffde4 | 4178 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 4179 | S: Maintained |
0c0d06ca | 4180 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 4181 | |
e8deeae2 | 4182 | GSPCA T613 SUBDRIVER |
8b58be88 | 4183 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 4184 | L: linux-media@vger.kernel.org |
275ffde4 | 4185 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4186 | S: Maintained |
0c0d06ca | 4187 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
4188 | |
4189 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 4190 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 4191 | L: linux-media@vger.kernel.org |
275ffde4 | 4192 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 4193 | S: Maintained |
0c0d06ca | 4194 | F: drivers/media/usb/gspca/ |
e8deeae2 | 4195 | |
584ec979 DB |
4196 | GUID PARTITION TABLE (GPT) |
4197 | M: Davidlohr Bueso <davidlohr@hp.com> | |
4198 | L: linux-efi@vger.kernel.org | |
4199 | S: Maintained | |
4200 | F: block/partitions/efi.* | |
4201 | ||
aa3c598b EG |
4202 | STK1160 USB VIDEO CAPTURE DRIVER |
4203 | M: Ezequiel Garcia <elezegarcia@gmail.com> | |
4204 | L: linux-media@vger.kernel.org | |
275ffde4 | 4205 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
4206 | S: Maintained |
4207 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 4208 | |
71a6d0af HW |
4209 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
4210 | M: Frank Seidel <frank@f-seidel.de> | |
4211 | L: platform-driver-x86@vger.kernel.org | |
4212 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4213 | S: Maintained | |
4214 | F: drivers/platform/x86/hdaps.c | |
4215 | ||
48fc9e26 HV |
4216 | HDPVR USB VIDEO ENCODER DRIVER |
4217 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4218 | L: linux-media@vger.kernel.org | |
4219 | T: git git://linuxtv.org/media_tree.git | |
4220 | W: http://linuxtv.org | |
4221 | S: Odd Fixes | |
14430813 | 4222 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4223 | |
71a6d0af | 4224 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4225 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 4226 | L: linux-mm@kvack.org |
71a6d0af HW |
4227 | S: Maintained |
4228 | F: mm/memory-failure.c | |
4229 | F: mm/hwpoison-inject.c | |
4230 | ||
4231 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4232 | L: linuxppc-dev@lists.ozlabs.org | |
4233 | S: Odd Fixes | |
4234 | F: drivers/tty/hvc/ | |
4235 | ||
5b543965 | 4236 | HARDWARE MONITORING |
7c81c60f | 4237 | M: Jean Delvare <jdelvare@suse.de> |
ca462085 | 4238 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 4239 | L: lm-sensors@lm-sensors.org |
595142e0 | 4240 | W: http://www.lm-sensors.org/ |
9e012c1a | 4241 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 4242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4243 | S: Maintained |
047f4ec2 | 4244 | F: Documentation/hwmon/ |
679655da | 4245 | F: drivers/hwmon/ |
047f4ec2 | 4246 | F: include/linux/hwmon*.h |
5b543965 | 4247 | |
844dd05f | 4248 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4249 | M: Matt Mackall <mpm@selenic.com> |
4250 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
4251 | S: Odd fixes | |
679655da JP |
4252 | F: Documentation/hw_random.txt |
4253 | F: drivers/char/hw_random/ | |
4254 | F: include/linux/hw_random.h | |
844dd05f | 4255 | |
8b37fcfc OBC |
4256 | HARDWARE SPINLOCK CORE |
4257 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
4258 | S: Maintained | |
4259 | F: Documentation/hwspinlock.txt | |
4260 | F: drivers/hwspinlock/hwspinlock_* | |
4261 | F: include/linux/hwspinlock.h | |
4262 | ||
1da177e4 | 4263 | HARMONY SOUND DRIVER |
ac6aecbf | 4264 | L: linux-parisc@vger.kernel.org |
1da177e4 | 4265 | S: Maintained |
679655da | 4266 | F: sound/parisc/harmony.* |
1da177e4 | 4267 | |
91952bc0 AP |
4268 | HD29L2 MEDIA DRIVER |
4269 | M: Antti Palosaari <crope@iki.fi> | |
4270 | L: linux-media@vger.kernel.org | |
4271 | W: http://linuxtv.org/ | |
4272 | W: http://palosaari.fi/linux/ | |
4273 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4274 | T: git git://linuxtv.org/anttip/media_tree.git | |
4275 | S: Maintained | |
4276 | F: drivers/media/dvb-frontends/hd29l2* | |
4277 | ||
e2d1d6c0 | 4278 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 4279 | M: Chirag Kantharia <chirag.kantharia@hp.com> |
e2d1d6c0 RD |
4280 | L: iss_storagedev@hp.com |
4281 | S: Maintained | |
679655da JP |
4282 | F: Documentation/blockdev/cpqarray.txt |
4283 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4284 | |
9257aa49 | 4285 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 4286 | M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> |
9257aa49 SC |
4287 | L: iss_storagedev@hp.com |
4288 | S: Supported | |
4289 | F: Documentation/scsi/hpsa.txt | |
4290 | F: drivers/scsi/hpsa*.[ch] | |
4291 | F: include/linux/cciss*.h | |
c117ab84 | 4292 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4293 | |
e2d1d6c0 | 4294 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 4295 | M: Mike Miller <mike.miller@hp.com> |
e2d1d6c0 RD |
4296 | L: iss_storagedev@hp.com |
4297 | S: Supported | |
679655da JP |
4298 | F: Documentation/blockdev/cciss.txt |
4299 | F: drivers/block/cciss* | |
4300 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4301 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4302 | |
1da177e4 | 4303 | HFS FILESYSTEM |
6cf515e1 GU |
4304 | L: linux-fsdevel@vger.kernel.org |
4305 | S: Orphan | |
679655da JP |
4306 | F: Documentation/filesystems/hfs.txt |
4307 | F: fs/hfs/ | |
1da177e4 | 4308 | |
ef575f47 GU |
4309 | HFSPLUS FILESYSTEM |
4310 | L: linux-fsdevel@vger.kernel.org | |
4311 | S: Orphan | |
4312 | F: Documentation/filesystems/hfsplus.txt | |
4313 | F: fs/hfsplus/ | |
4314 | ||
1da177e4 | 4315 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4316 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
4317 | L: linux-nvidia@lists.surfsouth.com |
4318 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4319 | S: Maintained | |
8a61f013 | 4320 | F: drivers/video/fbdev/hgafb.c |
1da177e4 | 4321 | |
4480f15b | 4322 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4323 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4324 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4325 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 4326 | S: Supported |
679655da JP |
4327 | F: arch/x86/power/ |
4328 | F: drivers/base/power/ | |
4329 | F: kernel/power/ | |
4330 | F: include/linux/suspend.h | |
4331 | F: include/linux/freezer.h | |
4332 | F: include/linux/pm.h | |
679655da | 4333 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4334 | |
4ef4caad | 4335 | HID CORE LAYER |
8b58be88 | 4336 | M: Jiri Kosina <jkosina@suse.cz> |
eb76c5c0 | 4337 | L: linux-input@vger.kernel.org |
54e5881d | 4338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4339 | S: Maintained |
679655da JP |
4340 | F: drivers/hid/ |
4341 | F: include/linux/hid* | |
c117ab84 | 4342 | F: include/uapi/linux/hid* |
4ef4caad | 4343 | |
38bed542 | 4344 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4345 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 4346 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 4347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4348 | S: Maintained |
679655da | 4349 | F: Documentation/timers/ |
5cee9645 | 4350 | F: kernel/time/hrtimer.c |
88606e80 TG |
4351 | F: kernel/time/clockevents.c |
4352 | F: kernel/time/tick*.* | |
4353 | F: kernel/time/timer_*.c | |
05ed8490 | 4354 | F: include/linux/clockchips.h |
679655da | 4355 | F: include/linux/hrtimer.h |
38bed542 | 4356 | |
1da177e4 | 4357 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4358 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 4359 | S: Orphan |
679655da JP |
4360 | F: drivers/net/hamradio/dmascc.c |
4361 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4362 | |
ede1e6f8 | 4363 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4364 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
4365 | W: http://www.highpoint-tech.com |
4366 | S: Supported | |
679655da JP |
4367 | F: Documentation/scsi/hptiop.txt |
4368 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4369 | |
1da177e4 | 4370 | HIPPI |
8b58be88 | 4371 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
4372 | L: linux-hippi@sunsite.dk |
4373 | S: Maintained | |
679655da | 4374 | F: include/linux/hippidevice.h |
c117ab84 | 4375 | F: include/uapi/linux/if_hippi.h |
679655da | 4376 | F: net/802/hippi.c |
ff5a3b50 | 4377 | F: drivers/net/hippi/ |
1da177e4 | 4378 | |
ff1d2767 | 4379 | HOST AP DRIVER |
8b58be88 | 4380 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 4381 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 4382 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
4383 | W: http://hostap.epitest.fi/ |
4384 | S: Maintained | |
679655da | 4385 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4386 | |
dd8cd779 | 4387 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4388 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 4389 | S: Orphan |
679655da | 4390 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4391 | |
e2d1d6c0 | 4392 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4393 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4394 | S: Maintained |
7e25d724 | 4395 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4396 | |
7d2c86b5 | 4397 | HPET: High Precision Event Timers driver |
8b58be88 | 4398 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 4399 | S: Maintained |
679655da JP |
4400 | F: Documentation/timers/hpet.txt |
4401 | F: drivers/char/hpet.c | |
4402 | F: include/linux/hpet.h | |
c117ab84 | 4403 | F: include/uapi/linux/hpet.h |
b9b0332f | 4404 | |
e07b5d79 | 4405 | HPET: x86 |
9e06f631 | 4406 | S: Orphan |
679655da JP |
4407 | F: arch/x86/kernel/hpet.c |
4408 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4409 | |
1da177e4 | 4410 | HPFS FILESYSTEM |
8b58be88 | 4411 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
4412 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4413 | S: Maintained | |
679655da | 4414 | F: fs/hpfs/ |
1da177e4 | 4415 | |
3441cded | 4416 | HSI SUBSYSTEM |
56459ea9 SR |
4417 | M: Sebastian Reichel <sre@kernel.org> |
4418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
4419 | S: Maintained |
4420 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 4421 | F: Documentation/hsi.txt |
3441cded SR |
4422 | F: drivers/hsi/ |
4423 | F: include/linux/hsi/ | |
4424 | F: include/uapi/linux/hsi/ | |
4425 | ||
7d2c86b5 | 4426 | HSO 3G MODEM DRIVER |
8b58be88 | 4427 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
4428 | W: http://www.pharscape.org |
4429 | S: Maintained | |
679655da | 4430 | F: drivers/net/usb/hso.c |
11cd29b0 | 4431 | |
19990e29 AB |
4432 | HSR NETWORK PROTOCOL |
4433 | M: Arvid Brodin <arvid.brodin@alten.se> | |
4434 | L: netdev@vger.kernel.org | |
4435 | S: Maintained | |
4436 | F: net/hsr/ | |
4437 | ||
5a18c343 | 4438 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4439 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
4440 | L: linux-input@vger.kernel.org |
4441 | S: Maintained | |
679655da | 4442 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4443 | |
1da177e4 | 4444 | HUGETLB FILESYSTEM |
6d49e352 | 4445 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 4446 | S: Maintained |
679655da | 4447 | F: fs/hugetlbfs/ |
1da177e4 | 4448 | |
05183189 S |
4449 | Hyper-V CORE AND DRIVERS |
4450 | M: K. Y. Srinivasan <kys@microsoft.com> | |
4451 | M: Haiyang Zhang <haiyangz@microsoft.com> | |
4452 | L: devel@linuxdriverproject.org | |
4453 | S: Maintained | |
a4162747 HZ |
4454 | F: arch/x86/include/asm/mshyperv.h |
4455 | F: arch/x86/include/uapi/asm/hyperv.h | |
4456 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4457 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4458 | F: drivers/hv/ |
f92ca80b | 4459 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4460 | F: drivers/net/hyperv/ |
a4162747 | 4461 | F: drivers/scsi/storvsc_drv.c |
8a61f013 | 4462 | F: drivers/video/fbdev/hyperv_fb.c |
a4162747 HZ |
4463 | F: include/linux/hyperv.h |
4464 | F: tools/hv/ | |
05183189 | 4465 | |
d85c8a6a | 4466 | I2C OVER PARALLEL PORT |
7c81c60f | 4467 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4468 | L: linux-i2c@vger.kernel.org |
4469 | S: Maintained | |
4470 | F: Documentation/i2c/busses/i2c-parport | |
4471 | F: Documentation/i2c/busses/i2c-parport-light | |
4472 | F: drivers/i2c/busses/i2c-parport.c | |
4473 | F: drivers/i2c/busses/i2c-parport-light.c | |
4474 | ||
4475 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4476 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4477 | L: linux-i2c@vger.kernel.org |
4478 | S: Maintained | |
4479 | F: Documentation/i2c/busses/i2c-ali1535 | |
4480 | F: Documentation/i2c/busses/i2c-ali1563 | |
4481 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4482 | F: Documentation/i2c/busses/i2c-amd756 | |
4483 | F: Documentation/i2c/busses/i2c-amd8111 | |
4484 | F: Documentation/i2c/busses/i2c-i801 | |
4485 | F: Documentation/i2c/busses/i2c-nforce2 | |
4486 | F: Documentation/i2c/busses/i2c-piix4 | |
4487 | F: Documentation/i2c/busses/i2c-sis5595 | |
4488 | F: Documentation/i2c/busses/i2c-sis630 | |
4489 | F: Documentation/i2c/busses/i2c-sis96x | |
4490 | F: Documentation/i2c/busses/i2c-via | |
4491 | F: Documentation/i2c/busses/i2c-viapro | |
4492 | F: drivers/i2c/busses/i2c-ali1535.c | |
4493 | F: drivers/i2c/busses/i2c-ali1563.c | |
4494 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4495 | F: drivers/i2c/busses/i2c-amd756.c | |
4496 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4497 | F: drivers/i2c/busses/i2c-amd8111.c | |
4498 | F: drivers/i2c/busses/i2c-i801.c | |
4499 | F: drivers/i2c/busses/i2c-isch.c | |
4500 | F: drivers/i2c/busses/i2c-nforce2.c | |
4501 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4502 | F: drivers/i2c/busses/i2c-piix4.c | |
4503 | F: drivers/i2c/busses/i2c-sis5595.c | |
4504 | F: drivers/i2c/busses/i2c-sis630.c | |
4505 | F: drivers/i2c/busses/i2c-sis96x.c | |
4506 | F: drivers/i2c/busses/i2c-via.c | |
4507 | F: drivers/i2c/busses/i2c-viapro.c | |
4508 | ||
cb7f07a4 NH |
4509 | I2C/SMBUS ISMT DRIVER |
4510 | M: Seth Heasley <seth.heasley@intel.com> | |
4511 | M: Neil Horman <nhorman@tuxdriver.com> | |
4512 | L: linux-i2c@vger.kernel.org | |
4513 | F: drivers/i2c/busses/i2c-ismt.c | |
4514 | F: Documentation/i2c/busses/i2c-ismt | |
4515 | ||
6ea884db | 4516 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4517 | M: Jean Delvare <jdelvare@suse.de> |
846557d3 | 4518 | L: linux-i2c@vger.kernel.org |
6ea884db | 4519 | S: Maintained |
8547a5bc | 4520 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4521 | |
5b543965 | 4522 | I2C SUBSYSTEM |
14d77c4d | 4523 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 4524 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
4525 | W: https://i2c.wiki.kernel.org/ |
4526 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 4527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4528 | S: Maintained |
679655da JP |
4529 | F: Documentation/i2c/ |
4530 | F: drivers/i2c/ | |
4531 | F: include/linux/i2c.h | |
03b70d62 | 4532 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4533 | F: include/uapi/linux/i2c.h |
4534 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4535 | |
4560d677 WS |
4536 | I2C ACPI SUPPORT |
4537 | M: Mika Westerberg <mika.westerberg@linux.intel.com> | |
4538 | L: linux-i2c@vger.kernel.org | |
4539 | L: linux-acpi@vger.kernel.org | |
4540 | S: Maintained | |
4560d677 | 4541 | |
d85c8a6a | 4542 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4543 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4544 | L: linux-i2c@vger.kernel.org |
4545 | S: Maintained | |
4546 | F: Documentation/i2c/busses/i2c-taos-evm | |
4547 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4548 | ||
e8c76eed | 4549 | I2C-TINY-USB DRIVER |
8b58be88 | 4550 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 4551 | L: linux-i2c@vger.kernel.org |
932d1872 | 4552 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4553 | S: Maintained |
679655da | 4554 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4555 | |
1da177e4 | 4556 | i386 BOOT CODE |
8b58be88 | 4557 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 4558 | S: Maintained |
679655da | 4559 | F: arch/x86/boot/ |
1da177e4 LT |
4560 | |
4561 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4562 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 4563 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4564 | S: Maintained |
4565 | ||
1da177e4 | 4566 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4567 | M: Tony Luck <tony.luck@intel.com> |
4568 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 4569 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 4570 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4571 | S: Maintained |
679655da | 4572 | F: arch/ia64/ |
1da177e4 | 4573 | |
956c203c | 4574 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4575 | M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com> |
4576 | M: Fionnuala Gunter <fin@linux.vnet.ibm.com> | |
956c203c KY |
4577 | L: linux-crypto@vger.kernel.org |
4578 | S: Supported | |
4579 | F: drivers/crypto/nx/ | |
4580 | ||
0e16aafb | 4581 | IBM Power 842 compression accelerator |
e6babec6 | 4582 | M: Nathan Fontenot <nfont@linux.vnet.ibm.com> |
0e16aafb SJ |
4583 | S: Supported |
4584 | F: drivers/crypto/nx/nx-842.c | |
4585 | F: include/linux/nx842.h | |
4586 | ||
1da177e4 | 4587 | IBM Power Linux RAID adapter |
8b58be88 | 4588 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 4589 | S: Supported |
679655da | 4590 | F: drivers/scsi/ipr.* |
1da177e4 | 4591 | |
9d348af4 SL |
4592 | IBM Power Virtual Ethernet Device Driver |
4593 | M: Santiago Leon <santil@linux.vnet.ibm.com> | |
4594 | L: netdev@vger.kernel.org | |
4595 | S: Supported | |
9aa32835 | 4596 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4597 | |
e6babec6 NF |
4598 | IBM Power Virtual SCSI Device Drivers |
4599 | M: Nathan Fontenot <nfont@linux.vnet.ibm.com> | |
4b7652cc RJ |
4600 | L: linux-scsi@vger.kernel.org |
4601 | S: Supported | |
e6babec6 NF |
4602 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
4603 | F: drivers/scsi/ibmvscsi/viosrp.h | |
4604 | ||
4605 | IBM Power Virtual FC Device Drivers | |
4606 | M: Brian King <brking@linux.vnet.ibm.com> | |
4607 | L: linux-scsi@vger.kernel.org | |
4608 | S: Supported | |
4609 | F: drivers/scsi/ibmvscsi/ibmvfc* | |
4b7652cc | 4610 | |
1da177e4 | 4611 | IBM ServeRAID RAID DRIVER |
f9213e78 | 4612 | S: Orphan |
679655da | 4613 | F: drivers/scsi/ips.* |
1da177e4 | 4614 | |
6ed9f9c4 PT |
4615 | ICH LPC AND GPIO DRIVER |
4616 | M: Peter Tyser <ptyser@xes-inc.com> | |
4617 | S: Maintained | |
4618 | F: drivers/mfd/lpc_ich.c | |
4619 | F: drivers/gpio/gpio-ich.c | |
4620 | ||
1e7106fc | 4621 | IDE SUBSYSTEM |
8b58be88 | 4622 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 4623 | L: linux-ide@vger.kernel.org |
8a6e2535 | 4624 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4626 | S: Maintained |
679655da JP |
4627 | F: Documentation/ide/ |
4628 | F: drivers/ide/ | |
4629 | F: include/linux/ide.h | |
1da177e4 | 4630 | |
6cb8c13d IP |
4631 | IDEAPAD LAPTOP EXTRAS DRIVER |
4632 | M: Ike Panhc <ike.pan@canonical.com> | |
4633 | L: platform-driver-x86@vger.kernel.org | |
4634 | W: http://launchpad.net/ideapad-laptop | |
4635 | S: Maintained | |
4636 | F: drivers/platform/x86/ideapad-laptop.c | |
4637 | ||
1ea4c161 AM |
4638 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4639 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
4640 | L: linux-input@vger.kernel.org | |
4641 | W: https://github.com/o2genum/ideapad-slidebar | |
4642 | S: Maintained | |
4643 | F: drivers/input/misc/ideapad_slidebar.c | |
4644 | ||
0f861e8c | 4645 | IDE/ATAPI DRIVERS |
487ba8e8 | 4646 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 4647 | L: linux-ide@vger.kernel.org |
c404c199 | 4648 | S: Maintained |
679655da JP |
4649 | F: Documentation/cdrom/ide-cd |
4650 | F: drivers/ide/ide-cd* | |
1da177e4 | 4651 | |
27471fdb | 4652 | IDLE-I7300 |
8b58be88 | 4653 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 4654 | L: linux-pm@vger.kernel.org |
27471fdb | 4655 | S: Supported |
679655da | 4656 | F: drivers/idle/i7300_idle.c |
27471fdb | 4657 | |
02cf2286 | 4658 | IEEE 802.15.4 SUBSYSTEM |
b6e195fd | 4659 | M: Alexander Aring <alex.aring@gmail.com> |
ebef9c12 VB |
4660 | L: linux-wpan@vger.kernel.org |
4661 | W: https://github.com/linux-wpan | |
4662 | T: git git://github.com/linux-wpan/linux-wpan-next.git | |
02cf2286 SL |
4663 | S: Maintained |
4664 | F: net/ieee802154/ | |
68653359 | 4665 | F: net/mac802154/ |
251741b1 | 4666 | F: drivers/net/ieee802154/ |
ebef9c12 | 4667 | F: Documentation/networking/ieee802154.txt |
02cf2286 | 4668 | |
40ad4a30 SY |
4669 | IGUANAWORKS USB IR TRANSCEIVER |
4670 | M: Sean Young <sean@mess.org> | |
4671 | L: linux-media@vger.kernel.org | |
4672 | S: Maintained | |
4673 | F: drivers/media/rc/iguanair.c | |
4674 | ||
9545f86e | 4675 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4676 | M: Jonathan Cameron <jic23@kernel.org> |
f0d61161 LPC |
4677 | R: Hartmut Knaack <knaack.h@gmx.de> |
4678 | R: Lars-Peter Clausen <lars@metafoo.de> | |
4679 | R: Peter Meerwald <pmeerw@pmeerw.net> | |
9545f86e AP |
4680 | L: linux-iio@vger.kernel.org |
4681 | S: Maintained | |
03e7c251 | 4682 | F: drivers/iio/ |
9545f86e AP |
4683 | F: drivers/staging/iio/ |
4684 | ||
65519263 SG |
4685 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4686 | M: Matthieu Castet <castet.matthieu@free.fr> | |
4687 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
4688 | S: Maintained | |
4689 | F: drivers/usb/atm/ueagle-atm.c | |
4690 | ||
e89ab51f GR |
4691 | INA209 HARDWARE MONITOR DRIVER |
4692 | M: Guenter Roeck <linux@roeck-us.net> | |
4693 | L: lm-sensors@lm-sensors.org | |
4694 | S: Maintained | |
4695 | F: Documentation/hwmon/ina209 | |
4696 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4697 | F: drivers/hwmon/ina209.c | |
4698 | ||
4699 | INA2XX HARDWARE MONITOR DRIVER | |
4700 | M: Guenter Roeck <linux@roeck-us.net> | |
4701 | L: lm-sensors@lm-sensors.org | |
4702 | S: Maintained | |
4703 | F: Documentation/hwmon/ina2xx | |
4704 | F: drivers/hwmon/ina2xx.c | |
4705 | F: include/linux/platform_data/ina2xx.h | |
4706 | ||
14dc124f SIG |
4707 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4708 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
4709 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
4710 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
4711 | L: industrypack-devel@lists.sourceforge.net | |
4712 | W: http://industrypack.sourceforge.net | |
4713 | S: Maintained | |
4714 | F: drivers/ipack/ | |
4715 | ||
aa7168f4 | 4716 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 4717 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
8912176c | 4718 | M: Dmitry Kasatkin <d.kasatkin@samsung.com> |
74dd744f MZ |
4719 | L: linux-ima-devel@lists.sourceforge.net |
4720 | L: linux-ima-user@lists.sourceforge.net | |
4721 | L: linux-security-module@vger.kernel.org | |
aa7168f4 | 4722 | S: Supported |
679655da | 4723 | F: security/integrity/ima/ |
aa7168f4 | 4724 | |
1da177e4 | 4725 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4726 | L: linux-fbdev@vger.kernel.org |
843393d3 | 4727 | S: Orphan |
8a61f013 | 4728 | F: drivers/video/fbdev/imsttfb.c |
1da177e4 LT |
4729 | |
4730 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4731 | M: Roland Dreier <roland@kernel.org> |
8b58be88 JP |
4732 | M: Sean Hefty <sean.hefty@intel.com> |
4733 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 4734 | L: linux-rdma@vger.kernel.org |
605841f5 | 4735 | W: http://www.openfabrics.org/ |
8a6e2535 | 4736 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4737 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4738 | S: Supported |
679655da JP |
4739 | F: Documentation/infiniband/ |
4740 | F: drivers/infiniband/ | |
c117ab84 | 4741 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4742 | |
c9f04f58 | 4743 | INOTIFY |
8b58be88 JP |
4744 | M: John McCutchan <john@johnmccutchan.com> |
4745 | M: Robert Love <rlove@rlove.org> | |
4746 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 4747 | S: Maintained |
679655da JP |
4748 | F: Documentation/filesystems/inotify.txt |
4749 | F: fs/notify/inotify/ | |
4750 | F: include/linux/inotify.h | |
c117ab84 | 4751 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4752 | |
e2d1d6c0 | 4753 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4754 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
4755 | M: Dmitry Torokhov <dtor@mail.ru> | |
e2d1d6c0 | 4756 | L: linux-input@vger.kernel.org |
8a6e2535 | 4757 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4758 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4759 | S: Maintained |
679655da | 4760 | F: drivers/input/ |
f4eea7e2 | 4761 | F: include/linux/input.h |
c117ab84 | 4762 | F: include/uapi/linux/input.h |
f4eea7e2 | 4763 | F: include/linux/input/ |
e2d1d6c0 | 4764 | |
3267a87f HR |
4765 | INPUT MULTITOUCH (MT) PROTOCOL |
4766 | M: Henrik Rydberg <rydberg@euromail.se> | |
4767 | L: linux-input@vger.kernel.org | |
7f9c2454 | 4768 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4769 | S: Maintained |
4770 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4771 | F: drivers/input/input-mt.c |
3267a87f HR |
4772 | K: \b(ABS|SYN)_MT_ |
4773 | ||
4ac13e17 DJ |
4774 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4775 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 4776 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 4777 | M: Dave Jiang <dave.jiang@intel.com> |
4ac13e17 | 4778 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
4779 | T: git git://git.code.sf.net/p/intel-sas/isci |
4780 | S: Supported | |
4ac13e17 | 4781 | F: drivers/scsi/isci/ |
4ac13e17 | 4782 | |
26717172 LB |
4783 | INTEL IDLE DRIVER |
4784 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 4785 | L: linux-pm@vger.kernel.org |
08deed1e | 4786 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4787 | S: Supported |
4788 | F: drivers/idle/intel_idle.c | |
4789 | ||
9eb8ef74 | 4790 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4791 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 4792 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4793 | S: Maintained |
679655da | 4794 | F: Documentation/fb/intelfb.txt |
8a61f013 | 4795 | F: drivers/video/fbdev/intelfb/ |
9eb8ef74 | 4796 | |
1da177e4 | 4797 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4798 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 4799 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4800 | S: Maintained |
8a61f013 | 4801 | F: drivers/video/fbdev/i810/ |
1da177e4 | 4802 | |
f4a9bc4c | 4803 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4804 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 4805 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 4806 | W: https://01.org/linux-acpi |
f4a9bc4c | 4807 | S: Supported |
679655da | 4808 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4809 | |
1da177e4 | 4810 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4811 | M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
1da177e4 | 4812 | S: Maintained |
73d425fd JP |
4813 | F: arch/x86/kernel/cpu/microcode/core* |
4814 | F: arch/x86/kernel/cpu/microcode/intel* | |
1da177e4 | 4815 | |
248a9dc3 | 4816 | INTEL I/OAT DMA DRIVER |
18ebd564 | 4817 | M: Dave Jiang <dave.jiang@intel.com> |
08223d80 | 4818 | R: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
4819 | L: dmaengine@vger.kernel.org |
4820 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4821 | S: Supported | |
679655da | 4822 | F: drivers/dma/ioat* |
248a9dc3 | 4823 | |
6c8909b4 | 4824 | INTEL IOMMU (VT-d) |
8b58be88 | 4825 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 4826 | L: iommu@lists.linux-foundation.org |
54e5881d | 4827 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4828 | S: Supported |
3fb39615 | 4829 | F: drivers/iommu/intel-iommu.c |
679655da | 4830 | F: include/linux/intel-iommu.h |
6c8909b4 | 4831 | |
b3e5f263 | 4832 | INTEL IOP-ADMA DMA DRIVER |
08223d80 | 4833 | R: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 4834 | S: Odd fixes |
679655da | 4835 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4836 | |
9251ce95 | 4837 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
5529c2cd | 4838 | M: Krzysztof Halasa <khalasa@piap.pl> |
9251ce95 | 4839 | S: Maintained |
679655da JP |
4840 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4841 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4842 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4843 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4844 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4845 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4846 | |
844dd05f | 4847 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4848 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 4849 | S: Maintained |
679655da | 4850 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4851 | |
c3a803e8 | 4852 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/fm10k/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
8b58be88 JP |
4853 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
4854 | M: Jesse Brandeburg <jesse.brandeburg@intel.com> | |
4855 | M: Bruce Allan <bruce.w.allan@intel.com> | |
0d164401 JK |
4856 | M: Carolyn Wyborny <carolyn.wyborny@intel.com> |
4857 | M: Don Skidmore <donald.c.skidmore@intel.com> | |
4858 | M: Greg Rose <gregory.v.rose@intel.com> | |
c3a803e8 | 4859 | M: Matthew Vick <matthew.vick@intel.com> |
8b58be88 | 4860 | M: John Ronciak <john.ronciak@intel.com> |
105bf2fe | 4861 | M: Mitch Williams <mitch.a.williams@intel.com> |
fcad3e6b | 4862 | M: Linux NICS <linux.nics@intel.com> |
dcd01faf | 4863 | L: e1000-devel@lists.sourceforge.net |
f6fde11a | 4864 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4865 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4867 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4868 | S: Supported |
0d164401 JK |
4869 | F: Documentation/networking/e100.txt |
4870 | F: Documentation/networking/e1000.txt | |
4871 | F: Documentation/networking/e1000e.txt | |
4872 | F: Documentation/networking/igb.txt | |
4873 | F: Documentation/networking/igbvf.txt | |
4874 | F: Documentation/networking/ixgb.txt | |
4875 | F: Documentation/networking/ixgbe.txt | |
4876 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4877 | F: Documentation/networking/i40e.txt |
105bf2fe | 4878 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 4879 | F: drivers/net/ethernet/intel/ |
bc90d291 | 4880 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 4881 | |
0963d59b LW |
4882 | INTEL-MID GPIO DRIVER |
4883 | M: David Cohen <david.a.cohen@linux.intel.com> | |
4884 | L: linux-gpio@vger.kernel.org | |
4885 | S: Maintained | |
4886 | F: drivers/gpio/gpio-intel-mid.c | |
4887 | ||
ca907a90 SY |
4888 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4889 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 4890 | L: linux-wireless@vger.kernel.org |
ca907a90 | 4891 | S: Maintained |
679655da | 4892 | F: Documentation/networking/README.ipw2100 |
679655da | 4893 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4894 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4895 | |
4bd96a7a | 4896 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4897 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
4898 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
4899 | M: Shane Wang <shane.wang@intel.com> |
4900 | L: tboot-devel@lists.sourceforge.net | |
4901 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4902 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4903 | S: Supported |
4904 | F: Documentation/intel_txt.txt | |
4905 | F: include/linux/tboot.h | |
4906 | F: arch/x86/kernel/tboot.c | |
4907 | ||
8a70da82 | 4908 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4909 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 4910 | M: linux-wimax@intel.com |
63fae219 | 4911 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
4912 | S: Supported |
4913 | W: http://linuxwimax.org | |
679655da JP |
4914 | F: Documentation/wimax/README.i2400m |
4915 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4916 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4917 | |
1c0ce89c SG |
4918 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4919 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 4920 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 4921 | S: Supported |
efa3144e WYG |
4922 | F: drivers/net/wireless/iwlegacy/ |
4923 | ||
b481de9c | 4924 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4925 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 4926 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
a0bf797f | 4927 | M: Intel Linux Wireless <ilw@linux.intel.com> |
b481de9c | 4928 | L: linux-wireless@vger.kernel.org |
b481de9c | 4929 | W: http://intellinuxwireless.org |
b62ff718 | 4930 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4931 | S: Supported |
679655da | 4932 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4933 | |
de8fe023 TW |
4934 | INTEL MANAGEMENT ENGINE (mei) |
4935 | M: Tomas Winkler <tomas.winkler@intel.com> | |
4936 | L: linux-kernel@vger.kernel.org | |
4937 | S: Supported | |
c117ab84 | 4938 | F: include/uapi/linux/mei.h |
de8fe023 | 4939 | F: drivers/misc/mei/* |
e07950a1 | 4940 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4941 | |
cb109a0e | 4942 | IOC3 ETHERNET DRIVER |
8b58be88 | 4943 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
4944 | L: linux-mips@linux-mips.org |
4945 | S: Maintained | |
8862bf1e | 4946 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4947 | |
cb109a0e | 4948 | IOC3 SERIAL DRIVER |
8b58be88 | 4949 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 4950 | L: linux-serial@vger.kernel.org |
cb109a0e | 4951 | S: Maintained |
df621252 | 4952 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4953 | |
0b6e8569 SW |
4954 | IOMMU DRIVERS |
4955 | M: Joerg Roedel <joro@8bytes.org> | |
4956 | L: iommu@lists.linux-foundation.org | |
4957 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4958 | S: Maintained | |
4959 | F: drivers/iommu/ | |
4960 | ||
4480f15b | 4961 | IP MASQUERADING |
8b58be88 | 4962 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 4963 | S: Maintained |
679655da | 4964 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4965 | |
1202d6ff | 4966 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4967 | M: Francois Romieu <romieu@fr.zoreil.com> |
4968 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
4969 | L: netdev@vger.kernel.org |
4970 | S: Maintained | |
7443713a | 4971 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4972 | |
4480f15b | 4973 | IPATH DRIVER |
8473c603 | 4974 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 4975 | L: linux-rdma@vger.kernel.org |
52a09a04 | 4976 | S: Maintained |
679655da | 4977 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4978 | |
4409ebe9 | 4979 | IPMI SUBSYSTEM |
8b58be88 | 4980 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 4981 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
4982 | W: http://openipmi.sourceforge.net/ |
4983 | S: Supported | |
679655da JP |
4984 | F: Documentation/IPMI.txt |
4985 | F: drivers/char/ipmi/ | |
4986 | F: include/linux/ipmi* | |
c117ab84 | 4987 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4988 | |
e2d1d6c0 | 4989 | IPS SCSI RAID DRIVER |
8b58be88 | 4990 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4991 | L: linux-scsi@vger.kernel.org |
4992 | W: http://www.adaptec.com/ | |
4993 | S: Maintained | |
679655da | 4994 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4995 | |
4996 | IPVS | |
8b58be88 JP |
4997 | M: Wensong Zhang <wensong@linux-vs.org> |
4998 | M: Simon Horman <horms@verge.net.au> | |
4999 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 5000 | L: netdev@vger.kernel.org |
e2d1d6c0 | 5001 | L: lvs-devel@vger.kernel.org |
1da177e4 | 5002 | S: Maintained |
679655da | 5003 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 5004 | F: include/net/ip_vs.h |
c117ab84 | 5005 | F: include/uapi/linux/ip_vs.h |
679655da | 5006 | F: net/netfilter/ipvs/ |
1da177e4 | 5007 | |
e7839f25 | 5008 | IPWIRELESS DRIVER |
8b58be88 JP |
5009 | M: Jiri Kosina <jkosina@suse.cz> |
5010 | M: David Sterba <dsterba@suse.cz> | |
92094aa0 | 5011 | S: Odd Fixes |
282361a0 | 5012 | F: drivers/tty/ipwireless/ |
099dc4fb | 5013 | |
e2d1d6c0 | 5014 | IPX NETWORK LAYER |
8b58be88 | 5015 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
5016 | L: netdev@vger.kernel.org |
5017 | S: Maintained | |
679655da | 5018 | F: include/net/ipx.h |
c117ab84 | 5019 | F: include/uapi/linux/ipx.h |
679655da | 5020 | F: net/ipx/ |
e2d1d6c0 | 5021 | |
1da177e4 | 5022 | IRDA SUBSYSTEM |
8b58be88 | 5023 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 5024 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 5025 | L: netdev@vger.kernel.org |
1da177e4 | 5026 | W: http://irda.sourceforge.net/ |
f353976d | 5027 | S: Maintained |
e0057975 | 5028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
5029 | F: Documentation/networking/irda.txt |
5030 | F: drivers/net/irda/ | |
5031 | F: include/net/irda/ | |
5032 | F: net/irda/ | |
1da177e4 | 5033 | |
a800c7cc TG |
5034 | IRQ SUBSYSTEM |
5035 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 5036 | L: linux-kernel@vger.kernel.org |
a800c7cc | 5037 | S: Maintained |
75fc2d37 | 5038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 5039 | F: kernel/irq/ |
2ed9fd28 JC |
5040 | |
5041 | IRQCHIP DRIVERS | |
5042 | M: Thomas Gleixner <tglx@linutronix.de> | |
5043 | M: Jason Cooper <jason@lakedaemon.net> | |
5044 | L: linux-kernel@vger.kernel.org | |
5045 | S: Maintained | |
5046 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
5047 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
edd96900 | 5048 | F: drivers/irqchip/ |
a800c7cc | 5049 | |
7ab3a837 GL |
5050 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
5051 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
7ab3a837 GL |
5052 | S: Maintained |
5053 | F: Documentation/IRQ-domain.txt | |
5054 | F: include/linux/irqdomain.h | |
5055 | F: kernel/irq/irqdomain.c | |
5056 | ||
e2d1d6c0 | 5057 | ISAPNP |
8b58be88 | 5058 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 5059 | S: Maintained |
679655da JP |
5060 | F: Documentation/isapnp.txt |
5061 | F: drivers/pnp/isapnp/ | |
5062 | F: include/linux/isapnp.h | |
e2d1d6c0 | 5063 | |
d39b8420 HV |
5064 | ISA RADIO MODULE |
5065 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5066 | L: linux-media@vger.kernel.org | |
5067 | T: git git://linuxtv.org/media_tree.git | |
5068 | W: http://linuxtv.org | |
5069 | S: Maintained | |
5070 | F: drivers/media/radio/radio-isa* | |
5071 | ||
71a6d0af HW |
5072 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
5073 | M: Peter Jones <pjones@redhat.com> | |
5074 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
5075 | S: Maintained | |
5076 | F: drivers/firmware/iscsi_ibft* | |
5077 | ||
14816b1e | 5078 | ISCSI |
8b58be88 | 5079 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
5080 | L: open-iscsi@googlegroups.com |
5081 | W: www.open-iscsi.org | |
54e5881d | 5082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 5083 | S: Maintained |
679655da JP |
5084 | F: drivers/scsi/*iscsi* |
5085 | F: include/scsi/*iscsi* | |
14816b1e | 5086 | |
1e65eb42 OG |
5087 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
5088 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
5089 | M: Roi Dayan <roid@mellanox.com> | |
5090 | L: linux-rdma@vger.kernel.org | |
5091 | S: Supported | |
5092 | W: http://www.openfabrics.org | |
5093 | W: www.open-iscsi.org | |
5094 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 5095 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 5096 | |
1da177e4 | 5097 | ISDN SUBSYSTEM |
8b58be88 | 5098 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 5099 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 5100 | L: netdev@vger.kernel.org |
1da177e4 | 5101 | W: http://www.isdn4linux.de |
54e5881d | 5102 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 5103 | S: Maintained |
679655da JP |
5104 | F: Documentation/isdn/ |
5105 | F: drivers/isdn/ | |
5106 | F: include/linux/isdn.h | |
5107 | F: include/linux/isdn/ | |
c117ab84 CEB |
5108 | F: include/uapi/linux/isdn.h |
5109 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
5110 | |
5111 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 5112 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 5113 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
5114 | W: http://www.melware.de |
5115 | S: Maintained | |
679655da | 5116 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 5117 | |
d624870f | 5118 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 5119 | M: Jean Delvare <jdelvare@suse.de> |
d624870f JD |
5120 | L: lm-sensors@lm-sensors.org |
5121 | S: Maintained | |
5122 | F: Documentation/hwmon/it87 | |
5123 | F: drivers/hwmon/it87.c | |
5124 | ||
d7104bff AP |
5125 | IT913X MEDIA DRIVER |
5126 | M: Antti Palosaari <crope@iki.fi> | |
5127 | L: linux-media@vger.kernel.org | |
5128 | W: http://linuxtv.org/ | |
5129 | W: http://palosaari.fi/linux/ | |
5130 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5131 | T: git git://linuxtv.org/anttip/media_tree.git | |
5132 | S: Maintained | |
9d9fb744 | 5133 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 5134 | |
91821ff3 | 5135 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 5136 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 5137 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 5138 | L: linux-media@vger.kernel.org |
275ffde4 | 5139 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
5140 | W: http://www.ivtvdriver.org |
5141 | S: Maintained | |
679655da | 5142 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 5143 | F: drivers/media/pci/ivtv/ |
c117ab84 | 5144 | F: include/uapi/linux/ivtv* |
91821ff3 | 5145 | |
68620bdd MP |
5146 | IX2505V MEDIA DRIVER |
5147 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5148 | L: linux-media@vger.kernel.org | |
5149 | W: http://linuxtv.org/ | |
5150 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5151 | S: Maintained | |
5152 | F: drivers/media/dvb-frontends/ix2505v* | |
5153 | ||
4453d736 GR |
5154 | JC42.4 TEMPERATURE SENSOR DRIVER |
5155 | M: Guenter Roeck <linux@roeck-us.net> | |
5156 | L: lm-sensors@lm-sensors.org | |
5157 | S: Maintained | |
5158 | F: drivers/hwmon/jc42.c | |
5159 | F: Documentation/hwmon/jc42 | |
5160 | ||
e2d1d6c0 | 5161 | JFS FILESYSTEM |
3256f80f | 5162 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
5163 | L: jfs-discussion@lists.sourceforge.net |
5164 | W: http://jfs.sourceforge.net/ | |
54e5881d | 5165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 5166 | S: Maintained |
679655da JP |
5167 | F: Documentation/filesystems/jfs.txt |
5168 | F: fs/jfs/ | |
e2d1d6c0 | 5169 | |
95252236 | 5170 | JME NETWORK DRIVER |
8b58be88 | 5171 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
5172 | L: netdev@vger.kernel.org |
5173 | S: Maintained | |
63d24a0e | 5174 | F: drivers/net/ethernet/jme.* |
95252236 | 5175 | |
1da177e4 | 5176 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 5177 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
5178 | L: linux-mtd@lists.infradead.org |
5179 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 5180 | S: Maintained |
679655da | 5181 | F: fs/jffs2/ |
c117ab84 | 5182 | F: include/uapi/linux/jffs2.h |
1da177e4 | 5183 | |
de456d37 | 5184 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 5185 | M: Andrew Morton <akpm@linux-foundation.org> |
19003c18 | 5186 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 5187 | L: linux-ext4@vger.kernel.org |
ae0718f8 | 5188 | S: Maintained |
d183e11a | 5189 | F: fs/jbd/ |
d183e11a TT |
5190 | F: include/linux/jbd.h |
5191 | ||
5192 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
5193 | M: "Theodore Ts'o" <tytso@mit.edu> | |
5194 | L: linux-ext4@vger.kernel.org | |
5195 | S: Maintained | |
5196 | F: fs/jbd2/ | |
5197 | F: include/linux/jbd2.h | |
ae0718f8 | 5198 | |
fd8b6cb4 | 5199 | JSM Neo PCI based serial card |
9d141cb9 | 5200 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
5201 | L: linux-serial@vger.kernel.org |
5202 | S: Maintained | |
df621252 | 5203 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 5204 | |
af39917d CL |
5205 | K10TEMP HARDWARE MONITORING DRIVER |
5206 | M: Clemens Ladisch <clemens@ladisch.de> | |
5207 | L: lm-sensors@lm-sensors.org | |
5208 | S: Maintained | |
5209 | F: Documentation/hwmon/k10temp | |
5210 | F: drivers/hwmon/k10temp.c | |
5211 | ||
4660cb35 | 5212 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 5213 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 5214 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 5215 | S: Maintained |
679655da JP |
5216 | F: Documentation/hwmon/k8temp |
5217 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 5218 | |
1da177e4 | 5219 | KCONFIG |
5eb1f99e | 5220 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 5221 | L: linux-kbuild@vger.kernel.org |
cea8321c | 5222 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5223 | S: Maintained |
679655da JP |
5224 | F: Documentation/kbuild/kconfig-language.txt |
5225 | F: scripts/kconfig/ | |
1da177e4 | 5226 | |
ea6c2089 | 5227 | KDUMP |
8b58be88 JP |
5228 | M: Vivek Goyal <vgoyal@redhat.com> |
5229 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 5230 | L: kexec@lists.infradead.org |
ea6c2089 VG |
5231 | W: http://lse.sourceforge.net/kdump/ |
5232 | S: Maintained | |
80811493 | 5233 | F: Documentation/kdump/ |
ea6c2089 | 5234 | |
f41bf02f HV |
5235 | KEENE FM RADIO TRANSMITTER DRIVER |
5236 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5237 | L: linux-media@vger.kernel.org | |
5238 | T: git git://linuxtv.org/media_tree.git | |
5239 | W: http://linuxtv.org | |
5240 | S: Maintained | |
5241 | F: drivers/media/radio/radio-keene* | |
5242 | ||
1da177e4 | 5243 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 5244 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 5245 | L: autofs@vger.kernel.org |
1da177e4 | 5246 | S: Maintained |
679655da | 5247 | F: fs/autofs4/ |
1da177e4 | 5248 | |
70fb7ba6 | 5249 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 5250 | M: Michal Marek <mmarek@suse.cz> |
08deed1e JP |
5251 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5252 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 5253 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 5254 | S: Maintained |
679655da JP |
5255 | F: Documentation/kbuild/ |
5256 | F: Makefile | |
5257 | F: scripts/Makefile.* | |
70fb7ba6 MM |
5258 | F: scripts/basic/ |
5259 | F: scripts/mk* | |
5260 | F: scripts/package/ | |
1da177e4 LT |
5261 | |
5262 | KERNEL JANITORS | |
c3000e03 | 5263 | L: kernel-janitors@vger.kernel.org |
10466f5a | 5264 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 5265 | S: Odd Fixes |
1da177e4 | 5266 | |
e8b43555 | 5267 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 5268 | M: "J. Bruce Fields" <bfields@fieldses.org> |
16141c02 | 5269 | L: linux-nfs@vger.kernel.org |
1da177e4 | 5270 | W: http://nfs.sourceforge.net/ |
98fac23f | 5271 | S: Supported |
679655da | 5272 | F: fs/nfsd/ |
c117ab84 | 5273 | F: include/uapi/linux/nfsd/ |
679655da JP |
5274 | F: fs/lockd/ |
5275 | F: fs/nfs_common/ | |
5276 | F: net/sunrpc/ | |
5277 | F: include/linux/lockd/ | |
5278 | F: include/linux/sunrpc/ | |
c117ab84 | 5279 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5280 | |
426d62e2 | 5281 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5282 | M: Gleb Natapov <gleb@kernel.org> |
c93a64fe | 5283 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 5284 | L: kvm@vger.kernel.org |
e3e58478 | 5285 | W: http://www.linux-kvm.org |
a94b40a6 | 5286 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5287 | S: Supported |
c93a64fe PB |
5288 | F: Documentation/*/kvm*.txt |
5289 | F: Documentation/virtual/kvm/ | |
679655da JP |
5290 | F: arch/*/kvm/ |
5291 | F: arch/*/include/asm/kvm* | |
5292 | F: include/linux/kvm* | |
c117ab84 | 5293 | F: include/uapi/linux/kvm* |
679655da | 5294 | F: virt/kvm/ |
426d62e2 | 5295 | |
ad8003d3 | 5296 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5297 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf AK |
5298 | L: kvm@vger.kernel.org |
5299 | W: http://kvm.qumranet.com | |
7de609c8 | 5300 | S: Maintained |
679655da | 5301 | F: arch/x86/include/asm/svm.h |
679655da | 5302 | F: arch/x86/kvm/svm.c |
426d62e2 | 5303 | |
513014b7 | 5304 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 5305 | M: Alexander Graf <agraf@suse.de> |
1fc9d2bf AK |
5306 | L: kvm-ppc@vger.kernel.org |
5307 | W: http://kvm.qumranet.com | |
6a7f972d | 5308 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5309 | S: Supported |
679655da JP |
5310 | F: arch/powerpc/include/asm/kvm* |
5311 | F: arch/powerpc/kvm/ | |
513014b7 | 5312 | |
1fc9d2bf | 5313 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 5314 | M: Xiantao Zhang <xiantao.zhang@intel.com> |
1fc9d2bf AK |
5315 | L: kvm-ia64@vger.kernel.org |
5316 | W: http://kvm.qumranet.com | |
920ed9f1 | 5317 | S: Supported |
679655da JP |
5318 | F: Documentation/ia64/kvm.txt |
5319 | F: arch/ia64/include/asm/kvm* | |
5320 | F: arch/ia64/kvm/ | |
920ed9f1 | 5321 | |
85f8fffe | 5322 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5323 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 5324 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
5325 | M: linux390@de.ibm.com |
5326 | L: linux-s390@vger.kernel.org | |
5327 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5328 | S: Supported | |
679655da JP |
5329 | F: Documentation/s390/kvm.txt |
5330 | F: arch/s390/include/asm/kvm* | |
80811493 | 5331 | F: arch/s390/kvm/ |
a968cd3e | 5332 | F: drivers/s390/kvm/ |
85f8fffe | 5333 | |
a749474d | 5334 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5335 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
5336 | M: Marc Zyngier <marc.zyngier@arm.com> |
5337 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
5338 | L: kvmarm@lists.cs.columbia.edu |
5339 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5340 | S: Supported |
a749474d CD |
5341 | F: arch/arm/include/uapi/asm/kvm* |
5342 | F: arch/arm/include/asm/kvm* | |
5343 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
5344 | F: virt/kvm/arm/ |
5345 | F: include/kvm/arm_* | |
a749474d | 5346 | |
6394a3ec | 5347 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 5348 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
5349 | M: Marc Zyngier <marc.zyngier@arm.com> |
5350 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5351 | L: kvmarm@lists.cs.columbia.edu | |
5352 | S: Maintained | |
5353 | F: arch/arm64/include/uapi/asm/kvm* | |
5354 | F: arch/arm64/include/asm/kvm* | |
5355 | F: arch/arm64/kvm/ | |
5356 | ||
dc009d92 | 5357 | KEXEC |
8b58be88 | 5358 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 5359 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5360 | L: kexec@lists.infradead.org |
dc009d92 | 5361 | S: Maintained |
679655da | 5362 | F: include/linux/kexec.h |
c117ab84 | 5363 | F: include/uapi/linux/kexec.h |
679655da | 5364 | F: kernel/kexec.c |
dc009d92 | 5365 | |
e971461f DH |
5366 | KEYS/KEYRINGS: |
5367 | M: David Howells <dhowells@redhat.com> | |
5368 | L: keyrings@linux-nfs.org | |
5369 | S: Maintained | |
d410fa4e | 5370 | F: Documentation/security/keys.txt |
e971461f DH |
5371 | F: include/linux/key.h |
5372 | F: include/linux/key-type.h | |
5373 | F: include/keys/ | |
5374 | F: security/keys/ | |
5375 | ||
7f3c68be | 5376 | KEYS-TRUSTED |
74dd744f MZ |
5377 | M: David Safford <safford@us.ibm.com> |
5378 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be MZ |
5379 | L: linux-security-module@vger.kernel.org |
5380 | L: keyrings@linux-nfs.org | |
5381 | S: Supported | |
d410fa4e | 5382 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5383 | F: include/keys/trusted-type.h |
5384 | F: security/keys/trusted.c | |
5385 | F: security/keys/trusted.h | |
5386 | ||
5387 | KEYS-ENCRYPTED | |
74dd744f MZ |
5388 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
5389 | M: David Safford <safford@us.ibm.com> | |
7f3c68be MZ |
5390 | L: linux-security-module@vger.kernel.org |
5391 | L: keyrings@linux-nfs.org | |
5392 | S: Supported | |
d410fa4e | 5393 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5394 | F: include/keys/encrypted-type.h |
19c90aa6 | 5395 | F: security/keys/encrypted-keys/ |
7f3c68be | 5396 | |
5b778dad | 5397 | KGDB / KDB /debug_core |
8b58be88 | 5398 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 5399 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5400 | L: kgdb-bugreport@lists.sourceforge.net |
5401 | S: Maintained | |
679655da JP |
5402 | F: Documentation/DocBook/kgdb.tmpl |
5403 | F: drivers/misc/kgdbts.c | |
df621252 | 5404 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5405 | F: include/linux/kdb.h |
679655da | 5406 | F: include/linux/kgdb.h |
4063eb5f | 5407 | F: kernel/debug/ |
e3e2aaf7 | 5408 | |
456db8cc | 5409 | KMEMCHECK |
8b58be88 | 5410 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 5411 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 5412 | S: Maintained |
410d7a97 JP |
5413 | F: Documentation/kmemcheck.txt |
5414 | F: arch/x86/include/asm/kmemcheck.h | |
5415 | F: arch/x86/mm/kmemcheck/ | |
5416 | F: include/linux/kmemcheck.h | |
5417 | F: mm/kmemcheck.c | |
b9ce08c0 | 5418 | |
c3bb4d24 | 5419 | KMEMLEAK |
8b58be88 | 5420 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
5421 | S: Maintained |
5422 | F: Documentation/kmemleak.txt | |
5423 | F: include/linux/kmemleak.h | |
5424 | F: mm/kmemleak.c | |
5425 | F: mm/kmemleak-test.c | |
5426 | ||
89559a61 | 5427 | KPROBES |
8b58be88 JP |
5428 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
5429 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
5430 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 5431 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 5432 | S: Maintained |
679655da JP |
5433 | F: Documentation/kprobes.txt |
5434 | F: include/linux/kprobes.h | |
5435 | F: kernel/kprobes.c | |
89559a61 | 5436 | |
70e84049 | 5437 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5438 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
5439 | W: http://miguelojeda.es/auxdisplay.htm |
5440 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5441 | S: Maintained |
679655da JP |
5442 | F: Documentation/auxdisplay/ks0108 |
5443 | F: drivers/auxdisplay/ks0108.c | |
5444 | F: include/linux/ks0108.h | |
70e84049 | 5445 | |
1da177e4 | 5446 | LAPB module |
1da177e4 | 5447 | L: linux-x25@vger.kernel.org |
bf9915cc | 5448 | S: Orphan |
679655da JP |
5449 | F: Documentation/networking/lapb-module.txt |
5450 | F: include/*/lapb.h | |
5451 | F: net/lapb/ | |
1da177e4 LT |
5452 | |
5453 | LASI 53c700 driver for PARISC | |
8b58be88 | 5454 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
5455 | L: linux-scsi@vger.kernel.org |
5456 | S: Maintained | |
679655da JP |
5457 | F: Documentation/scsi/53c700.txt |
5458 | F: drivers/scsi/53c700* | |
1da177e4 | 5459 | |
263de9b5 | 5460 | LED SUBSYSTEM |
c772fc26 | 5461 | M: Bryan Wu <cooloney@gmail.com> |
8b58be88 | 5462 | M: Richard Purdie <rpurdie@rpsys.net> |
aa69cb8c BW |
5463 | L: linux-leds@vger.kernel.org |
5464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5465 | S: Maintained |
679655da JP |
5466 | F: drivers/leds/ |
5467 | F: include/linux/leds.h | |
263de9b5 | 5468 | |
b0461a44 | 5469 | LEGACY EEPROM DRIVER |
7c81c60f | 5470 | M: Jean Delvare <jdelvare@suse.de> |
b0461a44 JD |
5471 | S: Maintained |
5472 | F: Documentation/misc-devices/eeprom | |
5473 | F: drivers/misc/eeprom/eeprom.c | |
5474 | ||
1da177e4 | 5475 | LEGO USB Tower driver |
8b58be88 | 5476 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
5477 | L: legousb-devel@lists.sourceforge.net |
5478 | W: http://legousb.sourceforge.net/ | |
5479 | S: Maintained | |
679655da | 5480 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5481 | |
055616a8 MK |
5482 | LG2160 MEDIA DRIVER |
5483 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5484 | L: linux-media@vger.kernel.org | |
5485 | W: http://linuxtv.org/ | |
5486 | W: http://github.com/mkrufky | |
5487 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5488 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5489 | S: Maintained | |
5490 | F: drivers/media/dvb-frontends/lg2160.* | |
5491 | ||
6f0e7725 MK |
5492 | LGDT3305 MEDIA DRIVER |
5493 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5494 | L: linux-media@vger.kernel.org | |
5495 | W: http://linuxtv.org/ | |
5496 | W: http://github.com/mkrufky | |
5497 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5498 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5499 | S: Maintained | |
5500 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5501 | ||
568a17ff | 5502 | LGUEST |
8b58be88 | 5503 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 5504 | L: lguest@lists.ozlabs.org |
568a17ff | 5505 | W: http://lguest.ozlabs.org/ |
72e91863 | 5506 | S: Odd Fixes |
070f420b | 5507 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5508 | F: arch/x86/lguest/ |
5509 | F: drivers/lguest/ | |
5510 | F: include/linux/lguest*.h | |
070f420b | 5511 | F: tools/lguest/ |
568a17ff | 5512 | |
1acd437c SL |
5513 | LIBLOCKDEP |
5514 | M: Sasha Levin <sasha.levin@oracle.com> | |
5515 | S: Maintained | |
5516 | F: tools/lib/lockdep/ | |
5517 | ||
1da177e4 | 5518 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5519 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
5520 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5521 | S: Supported | |
11c34c7d | 5522 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5523 | |
852bb9f5 | 5524 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5525 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
5526 | M: Paul Mackerras <paulus@samba.org> | |
ea668936 | 5527 | M: Michael Ellerman <mpe@ellerman.id.au> |
1da177e4 | 5528 | W: http://www.penguinppc.org/ |
a4724ed6 | 5529 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 5530 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5531 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5532 | S: Supported |
11c34c7d JP |
5533 | F: Documentation/powerpc/ |
5534 | F: arch/powerpc/ | |
1da177e4 LT |
5535 | |
5536 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5537 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 5538 | W: http://www.penguinppc.org/ |
a4724ed6 | 5539 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5540 | S: Maintained |
11c34c7d JP |
5541 | F: arch/powerpc/platforms/powermac/ |
5542 | F: drivers/macintosh/ | |
1da177e4 | 5543 | |
77a76369 | 5544 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5545 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 5546 | L: linuxppc-dev@lists.ozlabs.org |
cba5b1c6 | 5547 | T: git git://git.denx.de/linux-denx-agust.git |
1da177e4 | 5548 | S: Maintained |
11c34c7d JP |
5549 | F: arch/powerpc/platforms/512x/ |
5550 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5551 | |
5552 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
1d11cd67 | 5553 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 5554 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 5555 | W: http://www.penguinppc.org/ |
a4724ed6 | 5556 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5557 | S: Maintained |
11c34c7d JP |
5558 | F: arch/powerpc/platforms/40x/ |
5559 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5560 | |
260c02a9 | 5561 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5562 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 5563 | S: Orphan |
11c34c7d JP |
5564 | F: arch/powerpc/*/*virtex* |
5565 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5566 | |
e93adf1e | 5567 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 | 5568 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
e93adf1e | 5569 | W: http://www.penguinppc.org/ |
a4724ed6 | 5570 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 5571 | S: Maintained |
a2b1f7c8 | 5572 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5573 | |
1da177e4 | 5574 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
a1e0fb42 | 5575 | M: Scott Wood <scottwood@freescale.com> |
8b58be88 | 5576 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 5577 | W: http://www.penguinppc.org/ |
a4724ed6 | 5578 | L: linuxppc-dev@lists.ozlabs.org |
a1e0fb42 | 5579 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
ce00f85c | 5580 | S: Maintained |
11c34c7d | 5581 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5582 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5583 | |
ab06ff3a | 5584 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5585 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 5586 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 5587 | S: Maintained |
11c34c7d JP |
5588 | F: arch/powerpc/platforms/pasemi/ |
5589 | F: drivers/*/*pasemi* | |
5590 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5591 | |
1da177e4 | 5592 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5593 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 5594 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
5595 | S: Supported |
5596 | ||
a23ce6da HW |
5597 | LIS3LV02D ACCELEROMETER DRIVER |
5598 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
5599 | S: Maintained | |
ff606677 JD |
5600 | F: Documentation/misc-devices/lis3lv02d |
5601 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5602 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5603 | |
e2d1d6c0 | 5604 | LLC (802.2) |
8b58be88 | 5605 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 5606 | S: Maintained |
679655da | 5607 | F: include/linux/llc.h |
c117ab84 | 5608 | F: include/uapi/linux/llc.h |
679655da JP |
5609 | F: include/net/llc* |
5610 | F: net/llc/ | |
e2d1d6c0 | 5611 | |
4e233cbe AD |
5612 | LM73 HARDWARE MONITOR DRIVER |
5613 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
5614 | L: lm-sensors@lm-sensors.org | |
5615 | S: Maintained | |
5616 | F: drivers/hwmon/lm73.c | |
5617 | ||
156e2d1a | 5618 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 5619 | M: Jean Delvare <jdelvare@suse.de> |
156e2d1a JD |
5620 | L: lm-sensors@lm-sensors.org |
5621 | S: Maintained | |
5622 | F: Documentation/hwmon/lm78 | |
5623 | F: drivers/hwmon/lm78.c | |
5624 | ||
1da177e4 | 5625 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 5626 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 5627 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5628 | S: Maintained |
679655da JP |
5629 | F: Documentation/hwmon/lm83 |
5630 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5631 | |
5632 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 5633 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 5634 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5635 | S: Maintained |
679655da | 5636 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5637 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5638 | F: drivers/hwmon/lm90.c |
1da177e4 | 5639 | |
917cc4e6 GR |
5640 | LM95234 HARDWARE MONITOR DRIVER |
5641 | M: Guenter Roeck <linux@roeck-us.net> | |
5642 | L: lm-sensors@lm-sensors.org | |
5643 | S: Maintained | |
5644 | F: Documentation/hwmon/lm95234 | |
5645 | F: drivers/hwmon/lm95234.c | |
5646 | ||
68620bdd MP |
5647 | LME2510 MEDIA DRIVER |
5648 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5649 | L: linux-media@vger.kernel.org | |
5650 | W: http://linuxtv.org/ | |
5651 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5652 | S: Maintained | |
5653 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5654 | ||
512e67f9 | 5655 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5656 | M: Peter Zijlstra <peterz@infradead.org> |
5657 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 5658 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5659 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5660 | S: Maintained |
679655da JP |
5661 | F: Documentation/lockdep*.txt |
5662 | F: Documentation/lockstat.txt | |
5663 | F: include/linux/lockdep.h | |
7486d6da | 5664 | F: kernel/locking/ |
512e67f9 | 5665 | |
dde33348 | 5666 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5667 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
5668 | L: linux-ntfs-dev@lists.sourceforge.net |
5669 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5670 | S: Maintained |
679655da | 5671 | F: Documentation/ldm.txt |
20d16fef | 5672 | F: block/partitions/ldm.* |
1da177e4 | 5673 | |
ef6ada3d JE |
5674 | LogFS |
5675 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 5676 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
5677 | L: logfs@logfs.org |
5678 | W: logfs.org | |
5679 | S: Maintained | |
5680 | F: fs/logfs/ | |
5681 | ||
b62d7946 RS |
5682 | LPC32XX MACHINE SUPPORT |
5683 | M: Roland Stigge <stigge@antcom.de> | |
5684 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5685 | S: Maintained | |
5686 | F: arch/arm/mach-lpc32xx/ | |
5687 | ||
c87e34ef | 5688 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
3a980508 RS |
5689 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
5690 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> | |
5691 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> | |
5692 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> | |
5693 | L: MPT-FusionLinux.pdl@avagotech.com | |
c87e34ef MED |
5694 | L: linux-scsi@vger.kernel.org |
5695 | W: http://www.lsilogic.com/support | |
5696 | S: Supported | |
679655da | 5697 | F: drivers/message/fusion/ |
500c152a | 5698 | F: drivers/scsi/mpt2sas/ |
5699 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5700 | |
1da177e4 | 5701 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5702 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
5703 | L: linux-scsi@vger.kernel.org |
5704 | S: Maintained | |
679655da | 5705 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5706 | |
e5f5c99a GR |
5707 | LTC4261 HARDWARE MONITOR DRIVER |
5708 | M: Guenter Roeck <linux@roeck-us.net> | |
5709 | L: lm-sensors@lm-sensors.org | |
5710 | S: Maintained | |
5711 | F: Documentation/hwmon/ltc4261 | |
5712 | F: drivers/hwmon/ltc4261.c | |
5713 | ||
81365c31 | 5714 | LTP (Linux Test Project) |
28b8e8d4 | 5715 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 5716 | M: Cyril Hrubis <chrubis@suse.cz> |
7d1ae8a8 | 5717 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
f2eb7f6f CH |
5718 | M: Jan Stancek <jstancek@redhat.com> |
5719 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
5720 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
81365c31 | 5721 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
f2eb7f6f | 5722 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 5723 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
5724 | S: Maintained |
5725 | ||
c12a54b3 | 5726 | M32R ARCHITECTURE |
8b58be88 | 5727 | M: Hirokazu Takata <takata@linux-m32r.org> |
0d89e54c | 5728 | L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) |
c12a54b3 HT |
5729 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
5730 | W: http://www.linux-m32r.org/ | |
5731 | S: Maintained | |
679655da | 5732 | F: arch/m32r/ |
c12a54b3 | 5733 | |
1da177e4 | 5734 | M68K ARCHITECTURE |
8b58be88 | 5735 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
5736 | L: linux-m68k@lists.linux-m68k.org |
5737 | W: http://www.linux-m68k.org/ | |
54e5881d | 5738 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5739 | S: Maintained |
679655da | 5740 | F: arch/m68k/ |
9db35182 | 5741 | F: drivers/zorro/ |
1da177e4 LT |
5742 | |
5743 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5744 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 5745 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5746 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 5747 | S: Maintained |
9db35182 | 5748 | F: arch/m68k/mac/ |
1da177e4 LT |
5749 | |
5750 | M68K ON HP9000/300 | |
8b58be88 | 5751 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
5752 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5753 | S: Maintained | |
679655da | 5754 | F: arch/m68k/hp300/ |
1da177e4 | 5755 | |
74425546 AP |
5756 | M88DS3103 MEDIA DRIVER |
5757 | M: Antti Palosaari <crope@iki.fi> | |
5758 | L: linux-media@vger.kernel.org | |
5759 | W: http://linuxtv.org/ | |
5760 | W: http://palosaari.fi/linux/ | |
5761 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5762 | T: git git://linuxtv.org/anttip/media_tree.git | |
5763 | S: Maintained | |
5764 | F: drivers/media/dvb-frontends/m88ds3103* | |
5765 | ||
68620bdd MP |
5766 | M88RS2000 MEDIA DRIVER |
5767 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5768 | L: linux-media@vger.kernel.org | |
5769 | W: http://linuxtv.org/ | |
5770 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5771 | S: Maintained | |
5772 | F: drivers/media/dvb-frontends/m88rs2000* | |
5773 | ||
0d62f800 AP |
5774 | M88TS2022 MEDIA DRIVER |
5775 | M: Antti Palosaari <crope@iki.fi> | |
5776 | L: linux-media@vger.kernel.org | |
5777 | W: http://linuxtv.org/ | |
5778 | W: http://palosaari.fi/linux/ | |
5779 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5780 | T: git git://linuxtv.org/anttip/media_tree.git | |
5781 | S: Maintained | |
5782 | F: drivers/media/tuners/m88ts2022* | |
5783 | ||
07a092fa | 5784 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
5785 | M: Alexey Klimov <klimov.linux@gmail.com> |
5786 | L: linux-media@vger.kernel.org | |
5787 | T: git git://linuxtv.org/media_tree.git | |
5788 | S: Maintained | |
5789 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 5790 | |
64a327a7 | 5791 | MAC80211 |
8b58be88 | 5792 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 5793 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5794 | W: http://wireless.kernel.org/ |
ce466579 JB |
5795 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5796 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5797 | S: Maintained |
679655da JP |
5798 | F: Documentation/networking/mac80211-injection.txt |
5799 | F: include/net/mac80211.h | |
5800 | F: net/mac80211/ | |
64a327a7 | 5801 | |
b863ceb7 | 5802 | MACVLAN DRIVER |
8b58be88 | 5803 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
5804 | L: netdev@vger.kernel.org |
5805 | S: Maintained | |
679655da JP |
5806 | F: drivers/net/macvlan.c |
5807 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5808 | |
faf1668c | 5809 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5810 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 5811 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5812 | L: linux-man@vger.kernel.org |
1b53dc74 | 5813 | S: Maintained |
faf1668c | 5814 | |
8427defd RK |
5815 | MARVELL ARMADA DRM SUPPORT |
5816 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
5817 | S: Maintained | |
5818 | F: drivers/gpu/drm/armada/ | |
5819 | ||
44c14c1d | 5820 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5821 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 5822 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 5823 | L: netdev@vger.kernel.org |
5824 | S: Maintained | |
5825 | F: drivers/net/ethernet/marvell/sk* | |
5826 | ||
74cda169 | 5827 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5828 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 5829 | S: Orphan |
679655da | 5830 | F: drivers/net/wireless/libertas/ |
74cda169 | 5831 | |
b60d6975 | 5832 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5833 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 5834 | L: netdev@vger.kernel.org |
f5ca8502 | 5835 | S: Maintained |
527a6266 | 5836 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5837 | F: include/linux/mv643xx.h |
1da177e4 | 5838 | |
370b8ed9 TP |
5839 | MARVELL MVNETA ETHERNET DRIVER |
5840 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
5841 | L: netdev@vger.kernel.org | |
5842 | S: Maintained | |
5843 | F: drivers/net/ethernet/marvell/mvneta.* | |
5844 | ||
fcad584d | 5845 | MARVELL MWIFIEX WIRELESS DRIVER |
b9d31704 BZ |
5846 | M: Amitkumar Karwar <akarwar@marvell.com> |
5847 | M: Avinash Patil <patila@marvell.com> | |
fcad584d BZ |
5848 | L: linux-wireless@vger.kernel.org |
5849 | S: Maintained | |
5850 | F: drivers/net/wireless/mwifiex/ | |
5851 | ||
a2c3f656 | 5852 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5853 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 5854 | L: linux-wireless@vger.kernel.org |
16345910 | 5855 | S: Odd Fixes |
a2c3f656 LB |
5856 | F: drivers/net/wireless/mwl8k.c |
5857 | ||
2a69567b | 5858 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5859 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 5860 | S: Odd Fixes |
1fa7e547 | 5861 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5862 | |
1da177e4 | 5863 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5864 | L: linux-fbdev@vger.kernel.org |
52653199 | 5865 | S: Orphan |
8a61f013 | 5866 | F: drivers/video/fbdev/matrox/matroxfb_* |
c117ab84 | 5867 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5868 | |
ca462085 GR |
5869 | MAX16065 HARDWARE MONITOR DRIVER |
5870 | M: Guenter Roeck <linux@roeck-us.net> | |
5871 | L: lm-sensors@lm-sensors.org | |
5872 | S: Maintained | |
5873 | F: Documentation/hwmon/max16065 | |
5874 | F: drivers/hwmon/max16065.c | |
5875 | ||
d20620de | 5876 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5877 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
5878 | L: lm-sensors@lm-sensors.org |
5879 | S: Maintained | |
679655da JP |
5880 | F: Documentation/hwmon/max6650 |
5881 | F: drivers/hwmon/max6650.c | |
d20620de | 5882 | |
e89ab51f GR |
5883 | MAX6697 HARDWARE MONITOR DRIVER |
5884 | M: Guenter Roeck <linux@roeck-us.net> | |
5885 | L: lm-sensors@lm-sensors.org | |
5886 | S: Maintained | |
5887 | F: Documentation/hwmon/max6697 | |
5888 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5889 | F: drivers/hwmon/max6697.c | |
5890 | F: include/linux/platform_data/max6697.h | |
5891 | ||
9be3c9a5 HV |
5892 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5893 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5894 | L: linux-media@vger.kernel.org | |
5895 | T: git git://linuxtv.org/media_tree.git | |
5896 | W: http://linuxtv.org | |
5897 | S: Maintained | |
5898 | F: drivers/media/radio/radio-maxiradio* | |
5899 | ||
127c49ae | 5900 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5901 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
127c49ae JP |
5902 | P: LinuxTV.org Project |
5903 | L: linux-media@vger.kernel.org | |
5904 | W: http://linuxtv.org | |
8a6e2535 | 5905 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5906 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5907 | S: Maintained |
5908 | F: Documentation/dvb/ | |
5909 | F: Documentation/video4linux/ | |
ffe06198 | 5910 | F: Documentation/DocBook/media/ |
127c49ae | 5911 | F: drivers/media/ |
ffe06198 | 5912 | F: drivers/staging/media/ |
127c49ae | 5913 | F: include/media/ |
6c0f0359 MCC |
5914 | F: include/uapi/linux/dvb/ |
5915 | F: include/uapi/linux/videodev2.h | |
5916 | F: include/uapi/linux/media.h | |
5917 | F: include/uapi/linux/v4l2-* | |
5918 | F: include/uapi/linux/meye.h | |
5919 | F: include/uapi/linux/ivtv* | |
5920 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5921 | |
6149a936 HV |
5922 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5923 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5924 | L: linux-media@vger.kernel.org | |
5925 | T: git git://linuxtv.org/media_tree.git | |
5926 | W: http://linuxtv.org | |
5927 | S: Odd Fixes | |
5928 | F: drivers/media/parport/pms* | |
5929 | ||
757e0108 | 5930 | MEGARAID SCSI DRIVERS |
8b58be88 | 5931 | M: Neela Syam Kolli <megaraidlinux@lsi.com> |
baaea1dc | 5932 | L: linux-scsi@vger.kernel.org |
ce00f85c JC |
5933 | W: http://megaraid.lsilogic.com |
5934 | S: Maintained | |
679655da JP |
5935 | F: Documentation/scsi/megaraid.txt |
5936 | F: drivers/scsi/megaraid.* | |
5937 | F: drivers/scsi/megaraid/ | |
757e0108 | 5938 | |
2c46c9d5 AV |
5939 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5940 | M: Amir Vadai <amirv@mellanox.com> | |
b75f0050 | 5941 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
5942 | S: Supported |
5943 | W: http://www.mellanox.com | |
5944 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5945 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5946 | ||
70ea91f1 SR |
5947 | MEMORY MANAGEMENT |
5948 | L: linux-mm@kvack.org | |
70ea91f1 SR |
5949 | W: http://www.linux-mm.org |
5950 | S: Maintained | |
679655da | 5951 | F: include/linux/mm.h |
551450bb CS |
5952 | F: include/linux/gfp.h |
5953 | F: include/linux/mmzone.h | |
5954 | F: include/linux/memory_hotplug.h | |
5955 | F: include/linux/vmalloc.h | |
679655da | 5956 | F: mm/ |
70ea91f1 | 5957 | |
f4e9ce66 | 5958 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5959 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 5960 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 5961 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
5962 | W: http://www.linux-mtd.infradead.org/ |
5963 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 5964 | T: git git://git.infradead.org/linux-mtd.git |
1da177e4 | 5965 | S: Maintained |
679655da JP |
5966 | F: drivers/mtd/ |
5967 | F: include/linux/mtd/ | |
c117ab84 | 5968 | F: include/uapi/mtd/ |
1da177e4 | 5969 | |
26c57ef1 | 5970 | MEN A21 WATCHDOG DRIVER |
b75f0050 | 5971 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
26c57ef1 JT |
5972 | L: linux-watchdog@vger.kernel.org |
5973 | S: Supported | |
5974 | F: drivers/watchdog/mena21_wdt.c | |
5975 | ||
3764e82e JT |
5976 | MEN CHAMELEON BUS (mcb) |
5977 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
5978 | S: Supported | |
5979 | F: drivers/mcb/ | |
5980 | F: include/linux/mcb.h | |
5981 | ||
12285945 JH |
5982 | METAG ARCHITECTURE |
5983 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 5984 | L: linux-metag@vger.kernel.org |
12285945 JH |
5985 | S: Supported |
5986 | F: arch/metag/ | |
5987 | F: Documentation/metag/ | |
5988 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5989 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5990 | F: drivers/irqchip/irq-metag.c |
5991 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 | 5992 | F: drivers/tty/metag_da.c |
12285945 | 5993 | |
c6375b0a | 5994 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5995 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
5996 | W: http://www.monstr.eu/fdt/ |
5997 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5998 | S: Supported | |
0a8c7914 | 5999 | F: arch/microblaze/ |
1da177e4 LT |
6000 | |
6001 | MICROTEK X6 SCANNER | |
61eee9a7 | 6002 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 6003 | S: Maintained |
679655da | 6004 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
6005 | |
6006 | MIPS | |
8b58be88 | 6007 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 6008 | L: linux-mips@linux-mips.org |
6097050d | 6009 | W: http://www.linux-mips.org/ |
b05e988e | 6010 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 6011 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 6012 | S: Supported |
679655da JP |
6013 | F: Documentation/mips/ |
6014 | F: arch/mips/ | |
1da177e4 | 6015 | |
08b7620a HV |
6016 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
6017 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6018 | L: linux-media@vger.kernel.org | |
6019 | T: git git://linuxtv.org/media_tree.git | |
6020 | W: http://linuxtv.org | |
6021 | S: Odd Fixes | |
6022 | F: drivers/media/radio/radio-miropcm20* | |
6023 | ||
e126ba97 EC |
6024 | Mellanox MLX5 core VPI driver |
6025 | M: Eli Cohen <eli@mellanox.com> | |
6026 | L: netdev@vger.kernel.org | |
6027 | L: linux-rdma@vger.kernel.org | |
6028 | W: http://www.mellanox.com | |
6029 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
6030 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 6031 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
6032 | S: Supported |
6033 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
6034 | F: include/linux/mlx5/ | |
6035 | ||
6036 | Mellanox MLX5 IB driver | |
b75f0050 JP |
6037 | M: Eli Cohen <eli@mellanox.com> |
6038 | L: linux-rdma@vger.kernel.org | |
6039 | W: http://www.mellanox.com | |
6040 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 6041 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
6042 | S: Supported |
6043 | F: include/linux/mlx5/ | |
6044 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 6045 | |
1da177e4 | 6046 | MODULE SUPPORT |
8b58be88 | 6047 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 6048 | S: Maintained |
679655da JP |
6049 | F: include/linux/module.h |
6050 | F: kernel/module.c | |
1da177e4 LT |
6051 | |
6052 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 6053 | W: http://popies.net/meye/ |
b7788e13 | 6054 | S: Orphan |
679655da | 6055 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 6056 | F: drivers/media/pci/meye/ |
6c0f0359 | 6057 | F: include/uapi/linux/meye.h |
1da177e4 | 6058 | |
b9705b60 | 6059 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 6060 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 6061 | S: Maintained |
679655da | 6062 | F: Documentation/serial/moxa-smartio |
c897401b | 6063 | F: drivers/tty/mxser.* |
d735410a | 6064 | |
889b2f87 AK |
6065 | MR800 AVERMEDIA USB FM RADIO DRIVER |
6066 | M: Alexey Klimov <klimov.linux@gmail.com> | |
6067 | L: linux-media@vger.kernel.org | |
6068 | T: git git://linuxtv.org/media_tree.git | |
6069 | S: Maintained | |
6070 | F: drivers/media/radio/radio-mr800.c | |
6071 | ||
d7155691 AO |
6072 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
6073 | M: Alan Ott <alan@signal11.us> | |
6074 | L: linux-wpan@vger.kernel.org | |
6075 | S: Maintained | |
6076 | F: drivers/net/ieee802154/mrf24j40.c | |
6077 | ||
8c4c731a | 6078 | MSI LAPTOP SUPPORT |
182ae55c | 6079 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 6080 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 6081 | S: Maintained |
679655da | 6082 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 6083 | |
0f1006b1 AA |
6084 | MSI WMI SUPPORT |
6085 | M: Anisse Astier <anisse@astier.eu> | |
d0944853 | 6086 | L: platform-driver-x86@vger.kernel.org |
0f1006b1 AA |
6087 | S: Supported |
6088 | F: drivers/platform/x86/msi-wmi.c | |
6089 | ||
19a628a0 AP |
6090 | MSI001 MEDIA DRIVER |
6091 | M: Antti Palosaari <crope@iki.fi> | |
6092 | L: linux-media@vger.kernel.org | |
6093 | W: http://linuxtv.org/ | |
6094 | W: http://palosaari.fi/linux/ | |
6095 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6096 | T: git git://linuxtv.org/anttip/media_tree.git | |
6097 | S: Maintained | |
0185e197 | 6098 | F: drivers/media/tuners/msi001* |
19a628a0 | 6099 | |
7570589d | 6100 | MSI2500 MEDIA DRIVER |
2c57213f AP |
6101 | M: Antti Palosaari <crope@iki.fi> |
6102 | L: linux-media@vger.kernel.org | |
6103 | W: http://linuxtv.org/ | |
6104 | W: http://palosaari.fi/linux/ | |
6105 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6106 | T: git git://linuxtv.org/anttip/media_tree.git | |
6107 | S: Maintained | |
7570589d | 6108 | F: drivers/media/usb/msi2500/ |
2c57213f | 6109 | |
62a37dc7 | 6110 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
6111 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6112 | L: linux-media@vger.kernel.org | |
6113 | T: git git://linuxtv.org/media_tree.git | |
6114 | S: Maintained | |
6115 | F: drivers/media/i2c/mt9m032.c | |
6116 | F: include/media/mt9m032.h | |
6117 | ||
62a37dc7 | 6118 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
6119 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6120 | L: linux-media@vger.kernel.org | |
6121 | T: git git://linuxtv.org/media_tree.git | |
6122 | S: Maintained | |
6123 | F: drivers/media/i2c/mt9p031.c | |
6124 | F: include/media/mt9p031.h | |
6125 | ||
62a37dc7 | 6126 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
6127 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6128 | L: linux-media@vger.kernel.org | |
6129 | T: git git://linuxtv.org/media_tree.git | |
6130 | S: Maintained | |
6131 | F: drivers/media/i2c/mt9t001.c | |
6132 | F: include/media/mt9t001.h | |
6133 | ||
62a37dc7 | 6134 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
6135 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6136 | L: linux-media@vger.kernel.org | |
6137 | T: git git://linuxtv.org/media_tree.git | |
6138 | S: Maintained | |
6139 | F: drivers/media/i2c/mt9v032.c | |
6140 | F: include/media/mt9v032.h | |
6141 | ||
4e0d13cb | 6142 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 6143 | M: Samuel Ortiz <sameo@linux.intel.com> |
f7d3210e | 6144 | M: Lee Jones <lee.jones@linaro.org> |
7caa7991 | 6145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
4e0d13cb | 6146 | S: Supported |
679655da | 6147 | F: drivers/mfd/ |
55b5940d | 6148 | F: include/linux/mfd/ |
4e0d13cb | 6149 | |
5c4e6f13 | 6150 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6e443244 | 6151 | M: Chris Ball <chris@printf.net> |
e18eaf8f | 6152 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 6153 | L: linux-mmc@vger.kernel.org |
245feaa6 | 6154 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
708dce3f | 6155 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
245feaa6 | 6156 | S: Maintained |
679655da JP |
6157 | F: drivers/mmc/ |
6158 | F: include/linux/mmc/ | |
c117ab84 | 6159 | F: include/uapi/linux/mmc/ |
baca2da4 | 6160 | |
15a0580c | 6161 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 6162 | S: Orphan |
679655da JP |
6163 | F: drivers/mmc/host/mmc_spi.c |
6164 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 6165 | |
1da177e4 | 6166 | MULTISOUND SOUND DRIVER |
8b58be88 | 6167 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 6168 | S: Maintained |
679655da JP |
6169 | F: Documentation/sound/oss/MultiSound |
6170 | F: sound/oss/msnd* | |
1da177e4 | 6171 | |
d735410a | 6172 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 6173 | S: Orphan |
c897401b | 6174 | F: drivers/tty/isicom.c |
679655da | 6175 | F: include/linux/isicom.h |
d735410a | 6176 | |
550a7375 | 6177 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 6178 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 6179 | L: linux-usb@vger.kernel.org |
43b416e5 | 6180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 6181 | S: Maintained |
679655da | 6182 | F: drivers/usb/musb/ |
550a7375 | 6183 | |
ea0af5f6 MK |
6184 | MXL5007T MEDIA DRIVER |
6185 | M: Michael Krufky <mkrufky@linuxtv.org> | |
6186 | L: linux-media@vger.kernel.org | |
6187 | W: http://linuxtv.org/ | |
6188 | W: http://github.com/mkrufky | |
6189 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6190 | T: git git://linuxtv.org/mkrufky/tuners.git | |
6191 | S: Maintained | |
6192 | F: drivers/media/tuners/mxl5007t.* | |
6193 | ||
2d3cf588 | 6194 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 6195 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 6196 | L: netdev@vger.kernel.org |
205057ae | 6197 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 6198 | S: Supported |
93f7848b | 6199 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 6200 | |
1da177e4 | 6201 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 6202 | S: Orphan |
d9fb9f38 | 6203 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 6204 | |
23dc05a3 DM |
6205 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
6206 | M: Daniel Mack <zonque@gmail.com> | |
6207 | S: Maintained | |
6208 | L: alsa-devel@alsa-project.org | |
6209 | W: http://www.native-instruments.com | |
6210 | F: sound/usb/caiaq/ | |
6211 | ||
1da177e4 | 6212 | NCP FILESYSTEM |
52653199 PV |
6213 | M: Petr Vandrovec <petr@vandrovec.name> |
6214 | S: Odd Fixes | |
679655da | 6215 | F: fs/ncpfs/ |
1da177e4 | 6216 | |
a79b0322 FT |
6217 | NCR 5380 SCSI DRIVERS |
6218 | M: Finn Thain <fthain@telegraphics.com.au> | |
6219 | M: Michael Schmitz <schmitzmic@gmail.com> | |
6220 | L: linux-scsi@vger.kernel.org | |
6221 | S: Maintained | |
6222 | F: Documentation/scsi/g_NCR5380.txt | |
6223 | F: drivers/scsi/NCR5380.* | |
6224 | F: drivers/scsi/arm/cumana_1.c | |
6225 | F: drivers/scsi/arm/oak.c | |
6226 | F: drivers/scsi/atari_NCR5380.c | |
6227 | F: drivers/scsi/atari_scsi.* | |
6228 | F: drivers/scsi/dmx3191d.c | |
6229 | F: drivers/scsi/dtc.* | |
6230 | F: drivers/scsi/g_NCR5380.* | |
6231 | F: drivers/scsi/g_NCR5380_mmio.c | |
6232 | F: drivers/scsi/mac_scsi.* | |
6233 | F: drivers/scsi/pas16.* | |
6234 | F: drivers/scsi/sun3_NCR5380.c | |
6235 | F: drivers/scsi/sun3_scsi.* | |
6236 | F: drivers/scsi/sun3_scsi_vme.c | |
6237 | F: drivers/scsi/t128.* | |
6238 | ||
1da177e4 | 6239 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
8b58be88 | 6240 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6241 | L: linux-scsi@vger.kernel.org |
6242 | S: Maintained | |
679655da | 6243 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 6244 | |
4aa3eb4c GR |
6245 | NCT6775 HARDWARE MONITOR DRIVER |
6246 | M: Guenter Roeck <linux@roeck-us.net> | |
6247 | L: lm-sensors@lm-sensors.org | |
6248 | S: Maintained | |
6249 | F: Documentation/hwmon/nct6775 | |
6250 | F: drivers/hwmon/nct6775.c | |
6251 | ||
3c2d774c | 6252 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 6253 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 6254 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 6255 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
6256 | S: Supported |
6257 | F: drivers/infiniband/hw/nes/ | |
6258 | ||
be2f2e84 | 6259 | NETEM NETWORK EMULATOR |
adbbf69d | 6260 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 6261 | L: netem@lists.linux-foundation.org |
be2f2e84 | 6262 | S: Maintained |
679655da | 6263 | F: net/sched/sch_netem.c |
be2f2e84 | 6264 | |
b2f5a051 | 6265 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 6266 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 6267 | L: netdev@vger.kernel.org |
4a58448b | 6268 | S: Supported |
679655da | 6269 | F: Documentation/networking/s2io.txt |
b2f5a051 | 6270 | F: Documentation/networking/vxge.txt |
86387e1a | 6271 | F: drivers/net/ethernet/neterion/ |
4a58448b | 6272 | |
db9cf3a3 | 6273 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
0e05e192 | 6274 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 6275 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 6276 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d | 6277 | L: netfilter-devel@vger.kernel.org |
82b98543 | 6278 | L: coreteam@netfilter.org |
1da177e4 LT |
6279 | W: http://www.netfilter.org/ |
6280 | W: http://www.iptables.org/ | |
42010ed0 PNA |
6281 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
6282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
6283 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 6284 | S: Supported |
679655da JP |
6285 | F: include/linux/netfilter* |
6286 | F: include/linux/netfilter/ | |
6287 | F: include/net/netfilter/ | |
c117ab84 CEB |
6288 | F: include/uapi/linux/netfilter* |
6289 | F: include/uapi/linux/netfilter/ | |
679655da JP |
6290 | F: net/*/netfilter.c |
6291 | F: net/*/netfilter/ | |
6292 | F: net/netfilter/ | |
1da177e4 | 6293 | |
4cc67735 | 6294 | NETLABEL |
87a0874c | 6295 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
6296 | W: http://netlabel.sf.net |
6297 | L: netdev@vger.kernel.org | |
87a0874c | 6298 | S: Maintained |
80811493 | 6299 | F: Documentation/netlabel/ |
679655da JP |
6300 | F: include/net/netlabel.h |
6301 | F: net/netlabel/ | |
4cc67735 | 6302 | |
1da177e4 | 6303 | NETROM NETWORK LAYER |
8b58be88 | 6304 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 6305 | L: linux-hams@vger.kernel.org |
d34cb28a | 6306 | W: http://www.linux-ax25.org/ |
1da177e4 | 6307 | S: Maintained |
679655da | 6308 | F: include/net/netrom.h |
c117ab84 | 6309 | F: include/uapi/linux/netrom.h |
679655da | 6310 | F: net/netrom/ |
1da177e4 | 6311 | |
5ddb88c0 | 6312 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 6313 | M: Paul Clements <Paul.Clements@steeleye.com> |
1da177e4 | 6314 | S: Maintained |
5e4b269b | 6315 | L: nbd-general@lists.sourceforge.net |
679655da JP |
6316 | F: Documentation/blockdev/nbd.txt |
6317 | F: drivers/block/nbd.c | |
6318 | F: include/linux/nbd.h | |
c117ab84 | 6319 | F: include/uapi/linux/nbd.h |
1da177e4 | 6320 | |
6e43650c NH |
6321 | NETWORK DROP MONITOR |
6322 | M: Neil Horman <nhorman@tuxdriver.com> | |
6323 | L: netdev@vger.kernel.org | |
6324 | S: Maintained | |
6325 | W: https://fedorahosted.org/dropwatch/ | |
6326 | F: net/core/drop_monitor.c | |
6327 | ||
1da177e4 | 6328 | NETWORKING [GENERAL] |
8b58be88 | 6329 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 6330 | L: netdev@vger.kernel.org |
b1e8fd54 | 6331 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 6332 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
6333 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6334 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 6335 | S: Maintained |
679655da JP |
6336 | F: net/ |
6337 | F: include/net/ | |
018d21ed JP |
6338 | F: include/linux/in.h |
6339 | F: include/linux/net.h | |
6340 | F: include/linux/netdevice.h | |
c117ab84 CEB |
6341 | F: include/uapi/linux/in.h |
6342 | F: include/uapi/linux/net.h | |
6343 | F: include/uapi/linux/netdevice.h | |
7e814a6c | 6344 | F: tools/net/ |
f4e53f9a | 6345 | F: tools/testing/selftests/net/ |
335a67d2 | 6346 | F: lib/random32.c |
a101ccd1 | 6347 | F: lib/test_bpf.c |
1da177e4 LT |
6348 | |
6349 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
6350 | M: "David S. Miller" <davem@davemloft.net> |
6351 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
6352 | M: James Morris <jmorris@namei.org> |
6353 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
6354 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 6355 | L: netdev@vger.kernel.org |
08deed1e | 6356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 6357 | S: Maintained |
679655da JP |
6358 | F: net/ipv4/ |
6359 | F: net/ipv6/ | |
6360 | F: include/net/ip* | |
0a14842f | 6361 | F: arch/x86/net/* |
1da177e4 | 6362 | |
73b7656c DM |
6363 | NETWORKING [IPSEC] |
6364 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
6365 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
6366 | M: "David S. Miller" <davem@davemloft.net> | |
6367 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
6368 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 6370 | S: Maintained |
5826bdd1 | 6371 | F: net/core/flow.c |
73b7656c DM |
6372 | F: net/xfrm/ |
6373 | F: net/key/ | |
6374 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
6375 | F: net/ipv4/esp4.c |
6376 | F: net/ipv4/ah4.c | |
6377 | F: net/ipv4/ipcomp.c | |
6378 | F: net/ipv4/ip_vti.c | |
73b7656c | 6379 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6380 | F: net/ipv6/esp6.c |
6381 | F: net/ipv6/ah6.c | |
6382 | F: net/ipv6/ipcomp6.c | |
6383 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6384 | F: include/uapi/linux/xfrm.h |
6385 | F: include/net/xfrm.h | |
6386 | ||
10e2ff1c | 6387 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6388 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
6389 | L: netdev@vger.kernel.org |
6390 | S: Maintained | |
6391 | ||
29f8f632 | 6392 | NETWORKING [WIRELESS] |
8b58be88 | 6393 | M: "John W. Linville" <linville@tuxdriver.com> |
2cb4abd1 | 6394 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 6395 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 6396 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 6397 | S: Maintained |
34b921cf JP |
6398 | F: net/mac80211/ |
6399 | F: net/rfkill/ | |
679655da JP |
6400 | F: net/wireless/ |
6401 | F: include/net/ieee80211* | |
cc8b4a2b | 6402 | F: include/linux/wireless.h |
c117ab84 | 6403 | F: include/uapi/linux/wireless.h |
c984e24d | 6404 | F: include/net/iw_handler.h |
34b921cf | 6405 | F: drivers/net/wireless/ |
29f8f632 | 6406 | |
788873ac JP |
6407 | NETWORKING DRIVERS |
6408 | L: netdev@vger.kernel.org | |
6409 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6410 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6411 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6412 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6413 | S: Odd Fixes |
6414 | F: drivers/net/ | |
018d21ed | 6415 | F: include/linux/if_* |
0b63bf1f JD |
6416 | F: include/linux/netdevice.h |
6417 | F: include/linux/arcdevice.h | |
6418 | F: include/linux/etherdevice.h | |
6419 | F: include/linux/fcdevice.h | |
6420 | F: include/linux/fddidevice.h | |
6421 | F: include/linux/hippidevice.h | |
6422 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6423 | F: include/uapi/linux/if_* |
6424 | F: include/uapi/linux/netdevice.h | |
788873ac | 6425 | |
3d396eb1 | 6426 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6427 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
6428 | M: Sony Chacko <sony.chacko@qlogic.com> |
6429 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 6430 | L: netdev@vger.kernel.org |
9c2b5bde | 6431 | W: http://www.qlogic.com |
3d396eb1 | 6432 | S: Supported |
aa43c215 | 6433 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6434 | |
6423d30f AAJ |
6435 | NFC SUBSYSTEM |
6436 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
6437 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
6438 | M: Samuel Ortiz <sameo@linux.intel.com> | |
6439 | L: linux-wireless@vger.kernel.org | |
1eb3b216 | 6440 | L: linux-nfc@lists.01.org (subscribers-only) |
0293ba20 | 6441 | S: Supported |
6423d30f | 6442 | F: net/nfc/ |
55eb94f9 | 6443 | F: include/net/nfc/ |
c117ab84 | 6444 | F: include/uapi/linux/nfc.h |
6423d30f | 6445 | F: drivers/nfc/ |
08eaa1e0 | 6446 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 6447 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 6448 | |
e8b43555 | 6449 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6450 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
78f58153 TM |
6451 | L: linux-nfs@vger.kernel.org |
6452 | W: http://client.linux-nfs.org | |
cd7b996a | 6453 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6454 | S: Maintained |
679655da JP |
6455 | F: fs/lockd/ |
6456 | F: fs/nfs/ | |
6457 | F: fs/nfs_common/ | |
6458 | F: net/sunrpc/ | |
6459 | F: include/linux/lockd/ | |
6460 | F: include/linux/nfs* | |
6461 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6462 | F: include/uapi/linux/nfs* |
6463 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6464 | |
85ef9cea | 6465 | NILFS2 FILESYSTEM |
e2126935 | 6466 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 6467 | L: linux-nilfs@vger.kernel.org |
f9472265 | 6468 | W: http://nilfs.sourceforge.net/ |
e2126935 | 6469 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 6470 | S: Supported |
679655da JP |
6471 | F: Documentation/filesystems/nilfs2.txt |
6472 | F: fs/nilfs2/ | |
6473 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6474 | |
1da177e4 | 6475 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6476 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
6477 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6478 | S: Maintained | |
679655da JP |
6479 | F: Documentation/scsi/NinjaSCSI.txt |
6480 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6481 | |
6482 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6483 | M: GOTO Masanori <gotom@debian.or.jp> |
6484 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
6485 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6486 | S: Maintained | |
679655da JP |
6487 | F: Documentation/scsi/NinjaSCSI.txt |
6488 | F: drivers/scsi/nsp32* | |
1da177e4 | 6489 | |
fce8a7bb | 6490 | NTB DRIVER |
9ef6bf6c JM |
6491 | M: Jon Mason <jdmason@kudzu.us> |
6492 | M: Dave Jiang <dave.jiang@intel.com> | |
fce8a7bb | 6493 | S: Supported |
2984411f JM |
6494 | W: https://github.com/jonmason/ntb/wiki |
6495 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6496 | F: drivers/ntb/ |
548c237c | 6497 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6498 | F: include/linux/ntb.h |
6499 | ||
1da177e4 | 6500 | NTFS FILESYSTEM |
2818ef50 | 6501 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 6502 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 6503 | W: http://www.tuxera.com/ |
e6f4dee7 | 6504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6505 | S: Supported |
679655da JP |
6506 | F: Documentation/filesystems/ntfs.txt |
6507 | F: fs/ntfs/ | |
1da177e4 | 6508 | |
9eb8ef74 | 6509 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6510 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6511 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6512 | S: Maintained |
8a61f013 JH |
6513 | F: drivers/video/fbdev/riva/ |
6514 | F: drivers/video/fbdev/nvidia/ | |
1da177e4 | 6515 | |
79461681 MW |
6516 | NVM EXPRESS DRIVER |
6517 | M: Matthew Wilcox <willy@linux.intel.com> | |
6518 | L: linux-nvme@lists.infradead.org | |
6519 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6520 | S: Supported | |
5be37bf9 | 6521 | F: drivers/block/nvme* |
79461681 MW |
6522 | F: include/linux/nvme.h |
6523 | ||
f50d7146 RK |
6524 | NXP TDA998X DRM DRIVER |
6525 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
6526 | S: Supported | |
6527 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
6528 | F: include/drm/i2c/tda998x.h | |
6529 | ||
f5525786 | 6530 | OMAP SUPPORT |
0e24bdd4 | 6531 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
6532 | L: linux-omap@vger.kernel.org |
6533 | W: http://www.muru.com/linux/omap/ | |
6534 | W: http://linux.omap.com/ | |
8a6e2535 | 6535 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6536 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6537 | S: Maintained |
4e04d5a3 | 6538 | F: arch/arm/*omap*/ |
046d0a37 JD |
6539 | F: drivers/i2c/busses/i2c-omap.c |
6540 | F: include/linux/i2c-omap.h | |
f5525786 | 6541 | |
50f29fbd | 6542 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6543 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
6544 | M: Tony Lindgren <tony@atomide.com> |
6545 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 6546 | L: devicetree@vger.kernel.org |
50f29fbd TL |
6547 | S: Maintained |
6548 | F: arch/arm/boot/dts/*omap* | |
6549 | F: arch/arm/boot/dts/*am3* | |
6550 | ||
f5525786 | 6551 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6552 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
6553 | L: linux-omap@vger.kernel.org |
6554 | S: Maintained | |
6555 | F: arch/arm/*omap*/*clock* | |
6556 | ||
6557 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6558 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
6559 | L: linux-omap@vger.kernel.org |
6560 | S: Maintained | |
6561 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6562 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6563 | |
d21db568 | 6564 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6565 | M: Rajendra Nayak <rnayak@ti.com> |
6566 | M: Paul Walmsley <paul@pwsan.com> | |
6567 | L: linux-omap@vger.kernel.org | |
6568 | S: Maintained | |
d21db568 | 6569 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6570 | |
f5525786 | 6571 | OMAP AUDIO SUPPORT |
6c284903 | 6572 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 6573 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
f5525786 TL |
6574 | L: alsa-devel@alsa-project.org (subscribers-only) |
6575 | L: linux-omap@vger.kernel.org | |
6576 | S: Maintained | |
6577 | F: sound/soc/omap/ | |
6578 | ||
6579 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6580 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 6581 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
6582 | L: linux-omap@vger.kernel.org |
6583 | S: Maintained | |
8a61f013 | 6584 | F: drivers/video/fbdev/omap/ |
f5525786 | 6585 | |
676eec0d | 6586 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6587 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 6588 | L: linux-omap@vger.kernel.org |
676eec0d | 6589 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 6590 | S: Maintained |
8a61f013 | 6591 | F: drivers/video/fbdev/omap2/ |
178ff4c9 TV |
6592 | F: Documentation/arm/OMAP/DSS |
6593 | ||
8b37fcfc OBC |
6594 | OMAP HARDWARE SPINLOCK SUPPORT |
6595 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6596 | L: linux-omap@vger.kernel.org | |
6597 | S: Maintained | |
6598 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6599 | F: arch/arm/mach-omap2/hwspinlock.c | |
6600 | ||
f5525786 | 6601 | OMAP MMC SUPPORT |
8b58be88 | 6602 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
6603 | L: linux-omap@vger.kernel.org |
6604 | S: Maintained | |
653f41b5 MC |
6605 | F: drivers/mmc/host/omap.c |
6606 | ||
6607 | OMAP HS MMC SUPPORT | |
14006bfb | 6608 | M: Balaji T K <balajitk@ti.com> |
0a4585c6 | 6609 | L: linux-mmc@vger.kernel.org |
653f41b5 | 6610 | L: linux-omap@vger.kernel.org |
0a4585c6 | 6611 | S: Maintained |
653f41b5 | 6612 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6613 | |
6614 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6615 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
6616 | S: Maintained |
6617 | F: drivers/char/hw_random/omap-rng.c | |
6618 | ||
f400c82e | 6619 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6620 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6621 | M: Paul Walmsley <paul@pwsan.com> |
6622 | L: linux-omap@vger.kernel.org | |
6623 | S: Maintained | |
8fc8b12b | 6624 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6625 | |
6626 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6627 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6628 | L: linux-omap@vger.kernel.org |
6629 | S: Maintained | |
6630 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6631 | ||
0db83ced | 6632 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
7e8970e1 LP |
6633 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
6634 | L: linux-media@vger.kernel.org | |
6635 | S: Maintained | |
90d72ac6 | 6636 | F: drivers/media/platform/omap3isp/ |
0db83ced | 6637 | F: drivers/staging/media/omap4iss/ |
7e8970e1 | 6638 | |
f5525786 | 6639 | OMAP USB SUPPORT |
f299470a | 6640 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
6641 | L: linux-usb@vger.kernel.org |
6642 | L: linux-omap@vger.kernel.org | |
43b416e5 | 6643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6644 | S: Maintained |
a16fbd65 JP |
6645 | F: drivers/usb/*/*omap* |
6646 | F: arch/arm/*omap*/usb* | |
f5525786 | 6647 | |
6d994710 | 6648 | OMAP GPIO DRIVER |
a1415a8f | 6649 | M: Javier Martinez Canillas <javier@dowhile0.org> |
6d994710 | 6650 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
c69d72ae | 6651 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
6652 | L: linux-omap@vger.kernel.org |
6653 | S: Maintained | |
6654 | F: drivers/gpio/gpio-omap.c | |
6655 | ||
c351e290 MJ |
6656 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6657 | M: Mark Jackson <mpfj@newflow.co.uk> | |
6658 | L: linux-omap@vger.kernel.org | |
6659 | S: Maintained | |
6660 | F: arch/arm/boot/dts/am335x-nano.dts | |
6661 | ||
0ad122d9 | 6662 | OMFS FILESYSTEM |
8b58be88 | 6663 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
6664 | L: linux-karma-devel@lists.sourceforge.net |
6665 | S: Maintained | |
679655da JP |
6666 | F: Documentation/filesystems/omfs.txt |
6667 | F: fs/omfs/ | |
0ad122d9 | 6668 | |
c1986ee9 | 6669 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6670 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 6671 | S: Maintained |
679655da JP |
6672 | F: drivers/char/pcmcia/cm4000_cs.c |
6673 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6674 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6675 | |
77c44ab1 | 6676 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6677 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 6678 | S: Maintained |
679655da | 6679 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6680 | |
77d5140f | 6681 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6682 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 6683 | L: linux-media@vger.kernel.org |
275ffde4 | 6684 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6685 | S: Maintained |
90d72ac6 | 6686 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6687 | |
431bca73 | 6688 | ONENAND FLASH DRIVER |
8b58be88 | 6689 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
6690 | L: linux-mtd@lists.infradead.org |
6691 | S: Maintained | |
679655da JP |
6692 | F: drivers/mtd/onenand/ |
6693 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6694 | |
1da177e4 | 6695 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6696 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
6697 | L: osst-users@lists.sourceforge.net |
6698 | L: linux-scsi@vger.kernel.org | |
6699 | S: Maintained | |
f7269cfc JD |
6700 | F: Documentation/scsi/osst.txt |
6701 | F: drivers/scsi/osst.* | |
6702 | F: drivers/scsi/osst_*.h | |
6703 | F: drivers/scsi/st.h | |
1da177e4 | 6704 | |
e2d1d6c0 | 6705 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6706 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 6707 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 6708 | S: Maintained |
679655da JP |
6709 | F: Documentation/i2c/busses/i2c-ocores |
6710 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6711 | |
860c44c1 | 6712 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6713 | M: Grant Likely <grant.likely@linaro.org> |
5d3ad8a6 | 6714 | M: Rob Herring <robh+dt@kernel.org> |
d0fb18c5 | 6715 | L: devicetree@vger.kernel.org |
860c44c1 | 6716 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6717 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6718 | S: Maintained |
f8828205 | 6719 | F: drivers/of/ |
860c44c1 | 6720 | F: include/linux/of*.h |
f8828205 | 6721 | F: scripts/dtc/ |
860c44c1 | 6722 | K: of_get_property |
d945fa0d | 6723 | K: of_match_table |
860c44c1 | 6724 | |
f8828205 | 6725 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 6726 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 GL |
6727 | M: Pawel Moll <pawel.moll@arm.com> |
6728 | M: Mark Rutland <mark.rutland@arm.com> | |
de80963e | 6729 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
bdbff6ba | 6730 | M: Kumar Gala <galak@codeaurora.org> |
f8828205 GL |
6731 | L: devicetree@vger.kernel.org |
6732 | S: Maintained | |
6733 | F: Documentation/devicetree/ | |
6734 | F: arch/*/boot/dts/ | |
6735 | F: include/dt-bindings/ | |
6736 | ||
19f9d392 JB |
6737 | OPENRISC ARCHITECTURE |
6738 | M: Jonas Bonn <jonas@southpole.se> | |
6739 | W: http://openrisc.net | |
eab7c1c0 | 6740 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
6741 | S: Maintained |
6742 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6743 | F: arch/openrisc/ |
19f9d392 | 6744 | |
ccb1352e | 6745 | OPENVSWITCH |
4f337ed5 | 6746 | M: Pravin Shelar <pshelar@nicira.com> |
ccb1352e JG |
6747 | L: dev@openvswitch.org |
6748 | W: http://openvswitch.org | |
4f337ed5 | 6749 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git |
ccb1352e JG |
6750 | S: Maintained |
6751 | F: net/openvswitch/ | |
6752 | ||
af39917d CL |
6753 | OPL4 DRIVER |
6754 | M: Clemens Ladisch <clemens@ladisch.de> | |
6755 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6756 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6757 | S: Maintained | |
6758 | F: sound/drivers/opl4/ | |
6759 | ||
1da177e4 | 6760 | OPROFILE |
4cf7e718 | 6761 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
6762 | L: oprofile-list@lists.sf.net |
6763 | S: Maintained | |
81c4a8a6 | 6764 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6765 | F: arch/*/oprofile/ |
6766 | F: drivers/oprofile/ | |
6767 | F: include/linux/oprofile.h | |
1da177e4 | 6768 | |
e2d1d6c0 | 6769 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6770 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 6771 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 RD |
6772 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
6773 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6774 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6775 | S: Supported |
679655da JP |
6776 | F: Documentation/filesystems/ocfs2.txt |
6777 | F: Documentation/filesystems/dlmfs.txt | |
6778 | F: fs/ocfs2/ | |
e2d1d6c0 | 6779 | |
1da177e4 | 6780 | ORINOCO DRIVER |
724c6b35 | 6781 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6782 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6783 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6784 | S: Orphan |
679655da | 6785 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6786 | |
42c55aa8 | 6787 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6788 | M: Boaz Harrosh <bharrosh@panasas.com> |
f1f6630b | 6789 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
6790 | L: osd-dev@open-osd.org |
6791 | W: http://open-osd.org | |
54e5881d | 6792 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6793 | S: Maintained |
42c55aa8 | 6794 | F: drivers/scsi/osd/ |
6b6f0b6c | 6795 | F: include/scsi/osd_* |
42c55aa8 | 6796 | F: fs/exofs/ |
68274794 | 6797 | |
e2d1d6c0 | 6798 | P54 WIRELESS DRIVER |
084cb0fe | 6799 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 6800 | L: linux-wireless@vger.kernel.org |
084cb0fe | 6801 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6802 | S: Maintained |
679655da | 6803 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6804 | |
f5cd7872 | 6805 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6806 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
6807 | L: netdev@vger.kernel.org |
6808 | S: Maintained | |
ded19add | 6809 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6810 | |
beb58aa3 | 6811 | PA SEMI SMBUS DRIVER |
8b58be88 | 6812 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 6813 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 6814 | S: Maintained |
679655da | 6815 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6816 | |
48fc267e SK |
6817 | PADATA PARALLEL EXECUTION MECHANISM |
6818 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
6819 | L: linux-crypto@vger.kernel.org |
6820 | S: Maintained | |
6821 | F: kernel/padata.c | |
6822 | F: include/linux/padata.h | |
6823 | F: Documentation/padata.txt | |
6824 | ||
709ee531 | 6825 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6826 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 6827 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 6828 | S: Maintained |
679655da | 6829 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6830 | |
368dd5ac | 6831 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6832 | M: David Howells <dhowells@redhat.com> |
6833 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
6834 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
6835 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6836 | S: Maintained | |
679655da JP |
6837 | F: Documentation/mn10300/ |
6838 | F: arch/mn10300/ | |
4fa97181 | 6839 | |
1da177e4 | 6840 | PARALLEL PORT SUPPORT |
3dd1a329 | 6841 | L: linux-parport@lists.infradead.org (subscribers-only) |
5fdc2abe | 6842 | S: Orphan |
679655da JP |
6843 | F: drivers/parport/ |
6844 | F: include/linux/parport*.h | |
6845 | F: drivers/char/ppdev.c | |
c117ab84 | 6846 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6847 | |
4cdf6bc2 | 6848 | PARAVIRT_OPS INTERFACE |
d633180c | 6849 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
6850 | M: Chris Wright <chrisw@sous-sol.org> |
6851 | M: Alok Kataria <akataria@vmware.com> | |
6852 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 6853 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 6854 | S: Supported |
679655da JP |
6855 | F: Documentation/ia64/paravirt_ops.txt |
6856 | F: arch/*/kernel/paravirt* | |
6857 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6858 | |
e2d1d6c0 | 6859 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6860 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 RD |
6861 | L: linux-parport@lists.infradead.org (subscribers-only) |
6862 | W: http://www.torque.net/linux-pp.html | |
6863 | S: Maintained | |
679655da JP |
6864 | F: Documentation/blockdev/paride.txt |
6865 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6866 | |
6867 | PARISC ARCHITECTURE | |
b8828770 | 6868 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 6869 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
6870 | L: linux-parisc@vger.kernel.org |
6871 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6872 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6874 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6875 | S: Maintained |
679655da | 6876 | F: arch/parisc/ |
2b6bac9e | 6877 | F: Documentation/parisc/ |
679655da | 6878 | F: drivers/parisc/ |
2b6bac9e HD |
6879 | F: drivers/char/agp/parisc-agp.c |
6880 | F: drivers/input/serio/gscps2.c | |
6881 | F: drivers/parport/parport_gsc.* | |
6882 | F: drivers/tty/serial/8250/8250_gsc.c | |
8a61f013 | 6883 | F: drivers/video/fbdev/sti* |
2b6bac9e HD |
6884 | F: drivers/video/console/sti* |
6885 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6886 | |
1662d32c | 6887 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6888 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
6889 | L: lm-sensors@lm-sensors.org |
6890 | S: Maintained | |
679655da JP |
6891 | F: Documentation/hwmon/pc87360 |
6892 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6893 | |
6894 | PC8736x GPIO DRIVER | |
8b58be88 | 6895 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6896 | S: Maintained |
679655da | 6897 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6898 | |
1ad107fd | 6899 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 6900 | M: Jean Delvare <jdelvare@suse.de> |
1ad107fd JD |
6901 | L: lm-sensors@lm-sensors.org |
6902 | S: Maintained | |
6903 | F: Documentation/hwmon/pc87427 | |
6904 | F: drivers/hwmon/pc87427.c | |
6905 | ||
b26e0ed4 | 6906 | PCA9532 LED DRIVER |
8b58be88 | 6907 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 6908 | S: Maintained |
d5ca6918 JP |
6909 | F: drivers/leds/leds-pca9532.c |
6910 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6911 | |
5ce914a8 | 6912 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6913 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
6914 | L: linux-i2c@vger.kernel.org |
6915 | S: Maintained | |
b4f0b74e | 6916 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6917 | |
3971dae5 | 6918 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6919 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
6920 | S: Maintained |
6921 | F: drivers/firmware/pcdp.* | |
6922 | ||
065c6359 | 6923 | PCI ERROR RECOVERY |
6305902c | 6924 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 6925 | L: linux-pci@vger.kernel.org |
065c6359 | 6926 | S: Supported |
679655da | 6927 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6928 | |
1da177e4 | 6929 | PCI SUBSYSTEM |
5ac3a6d2 | 6930 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 6931 | L: linux-pci@vger.kernel.org |
99662dd1 | 6932 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6933 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6934 | S: Supported |
679655da JP |
6935 | F: Documentation/PCI/ |
6936 | F: drivers/pci/ | |
6937 | F: include/linux/pci* | |
6b49ee49 | 6938 | F: arch/x86/pci/ |
cad01f91 | 6939 | F: arch/x86/kernel/quirks.c |
1da177e4 | 6940 | |
f0b75693 BH |
6941 | PCI DRIVER FOR IMX6 |
6942 | M: Richard Zhu <r65037@freescale.com> | |
1ba55f55 | 6943 | M: Lucas Stach <l.stach@pengutronix.de> |
f0b75693 BH |
6944 | L: linux-pci@vger.kernel.org |
6945 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6946 | S: Maintained | |
6947 | F: drivers/pci/host/*imx6* | |
6948 | ||
6949 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) | |
6950 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
6951 | M: Jason Cooper <jason@lakedaemon.net> | |
6952 | L: linux-pci@vger.kernel.org | |
6953 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6954 | S: Maintained | |
6955 | F: drivers/pci/host/*mvebu* | |
6956 | ||
0447cfd7 TR |
6957 | PCI DRIVER FOR NVIDIA TEGRA |
6958 | M: Thierry Reding <thierry.reding@gmail.com> | |
6959 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 6960 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
6961 | S: Supported |
6962 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6963 | F: drivers/pci/host/pci-tegra.c | |
6964 | ||
47ff3de9 KVA |
6965 | PCI DRIVER FOR TI DRA7XX |
6966 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
6967 | L: linux-omap@vger.kernel.org | |
6968 | L: linux-pci@vger.kernel.org | |
6969 | S: Supported | |
6970 | F: Documentation/devicetree/bindings/pci/ti-pci.txt | |
6971 | F: drivers/pci/host/pci-dra7xx.c | |
6972 | ||
f0b75693 BH |
6973 | PCI DRIVER FOR RENESAS R-CAR |
6974 | M: Simon Horman <horms@verge.net.au> | |
6975 | L: linux-pci@vger.kernel.org | |
6976 | L: linux-sh@vger.kernel.org | |
6977 | S: Maintained | |
6978 | F: drivers/pci/host/*rcar* | |
6979 | ||
4af82255 JH |
6980 | PCI DRIVER FOR SAMSUNG EXYNOS |
6981 | M: Jingoo Han <jg1.han@samsung.com> | |
6982 | L: linux-pci@vger.kernel.org | |
f0b75693 BH |
6983 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6984 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
6985 | S: Maintained |
6986 | F: drivers/pci/host/pci-exynos.c | |
6987 | ||
f0b75693 BH |
6988 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6989 | M: Mohit Kumar <mohit.kumar@st.com> | |
6990 | M: Jingoo Han <jg1.han@samsung.com> | |
6991 | L: linux-pci@vger.kernel.org | |
6992 | S: Maintained | |
6993 | F: drivers/pci/host/*designware* | |
6994 | ||
cf28855b WD |
6995 | PCI DRIVER FOR GENERIC OF HOSTS |
6996 | M: Will Deacon <will.deacon@arm.com> | |
6997 | L: linux-pci@vger.kernel.org | |
6998 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6999 | S: Maintained | |
7000 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
7001 | F: drivers/pci/host/pci-host-generic.c | |
7002 | ||
51b66a6c PA |
7003 | PCIE DRIVER FOR ST SPEAR13XX |
7004 | M: Mohit Kumar <mohit.kumar@st.com> | |
7005 | L: linux-pci@vger.kernel.org | |
7006 | S: Maintained | |
7007 | F: drivers/pci/host/*spear* | |
7008 | ||
1da177e4 | 7009 | PCMCIA SUBSYSTEM |
4230dfc9 | 7010 | P: Linux PCMCIA Team |
f5df5881 | 7011 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 7012 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 7013 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 7014 | S: Maintained |
679655da JP |
7015 | F: Documentation/pcmcia/ |
7016 | F: drivers/pcmcia/ | |
7017 | F: include/pcmcia/ | |
1da177e4 LT |
7018 | |
7019 | PCNET32 NETWORK DRIVER | |
227fb925 | 7020 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 7021 | L: netdev@vger.kernel.org |
1da177e4 | 7022 | S: Maintained |
b955f6ca | 7023 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 7024 | |
48fc267e SK |
7025 | PCRYPT PARALLEL CRYPTO ENGINE |
7026 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
7027 | L: linux-crypto@vger.kernel.org | |
7028 | S: Maintained | |
7029 | F: crypto/pcrypt.c | |
7030 | F: include/crypto/pcrypt.h | |
7031 | ||
e72df0b8 TH |
7032 | PER-CPU MEMORY ALLOCATOR |
7033 | M: Tejun Heo <tj@kernel.org> | |
7034 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
7035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
7036 | S: Maintained | |
7037 | F: include/linux/percpu*.h | |
7038 | F: mm/percpu*.c | |
7039 | F: arch/*/include/asm/percpu.h | |
7040 | ||
ad4ecbcb | 7041 | PER-TASK DELAY ACCOUNTING |
185e595f | 7042 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 7043 | S: Maintained |
679655da JP |
7044 | F: include/linux/delayacct.h |
7045 | F: kernel/delayacct.c | |
ad4ecbcb | 7046 | |
57c0c15b | 7047 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
7048 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
7049 | M: Paul Mackerras <paulus@samba.org> | |
dd9b238c | 7050 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 7051 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
981c3a4f | 7052 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7053 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 7054 | S: Supported |
d53e8365 | 7055 | F: kernel/events/* |
a003236c | 7056 | F: include/linux/perf_event.h |
c117ab84 | 7057 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
7058 | F: arch/*/kernel/perf_event*.c |
7059 | F: arch/*/kernel/*/perf_event*.c | |
7060 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 7061 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
7062 | F: arch/*/kernel/perf_callchain.c |
7063 | F: tools/perf/ | |
6c0b3244 | 7064 | |
dd49d0f5 | 7065 | PERSONALITY HANDLING |
8b58be88 | 7066 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
7067 | L: linux-abi-devel@lists.sourceforge.net |
7068 | S: Maintained | |
679655da | 7069 | F: include/linux/personality.h |
c117ab84 | 7070 | F: include/uapi/linux/personality.h |
dd49d0f5 | 7071 | |
838e7a03 | 7072 | PHONET PROTOCOL |
2a06b40f | 7073 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
7074 | S: Supported |
7075 | F: Documentation/networking/phonet.txt | |
7076 | F: include/linux/phonet.h | |
7077 | F: include/net/phonet/ | |
c117ab84 | 7078 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
7079 | F: net/phonet/ |
7080 | ||
1da177e4 | 7081 | PHRAM MTD DRIVER |
8b58be88 | 7082 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
7083 | L: linux-mtd@lists.infradead.org |
7084 | S: Maintained | |
679655da | 7085 | F: drivers/mtd/devices/phram.c |
1da177e4 | 7086 | |
efdbb10e BP |
7087 | PICOLCD HID DRIVER |
7088 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
7089 | L: linux-input@vger.kernel.org | |
7090 | S: Maintained | |
7091 | F: drivers/hid/hid-picolcd* | |
7092 | ||
a53bfa07 JI |
7093 | PICOXCELL SUPPORT |
7094 | M: Jamie Iles <jamie@jamieiles.com> | |
7095 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7096 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
7097 | S: Supported | |
b8733987 | 7098 | F: arch/arm/boot/dts/picoxcell* |
14430813 | 7099 | F: arch/arm/mach-picoxcell/ |
b8733987 | 7100 | F: drivers/crypto/picoxcell* |
a53bfa07 | 7101 | |
2744e8af LW |
7102 | PIN CONTROL SUBSYSTEM |
7103 | M: Linus Walleij <linus.walleij@linaro.org> | |
7104 | S: Maintained | |
07f29ba6 | 7105 | F: drivers/pinctrl/ |
8e406fe4 | 7106 | F: include/linux/pinctrl/ |
2744e8af | 7107 | |
2201bbb8 JCPV |
7108 | PIN CONTROLLER - ATMEL AT91 |
7109 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
7110 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7111 | S: Maintained | |
7112 | F: drivers/pinctrl/pinctrl-at91.c | |
7113 | ||
9963b536 LP |
7114 | PIN CONTROLLER - RENESAS |
7115 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
7116 | L: linux-sh@vger.kernel.org | |
7117 | S: Maintained | |
7118 | F: drivers/pinctrl/sh-pfc/ | |
7119 | ||
b75e60d6 | 7120 | PIN CONTROLLER - SAMSUNG |
fea685e9 | 7121 | M: Tomasz Figa <tomasz.figa@gmail.com> |
b75e60d6 DA |
7122 | M: Thomas Abraham <thomas.abraham@linaro.org> |
7123 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7124 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7125 | S: Maintained | |
9b5b33f6 | 7126 | F: drivers/pinctrl/samsung/ |
b75e60d6 | 7127 | |
deda8287 | 7128 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 7129 | M: Viresh Kumar <viresh.linux@gmail.com> |
deda8287 VK |
7130 | L: spear-devel@list.st.com |
7131 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
7132 | W: http://www.st.com/spear | |
7133 | S: Maintained | |
8e406fe4 | 7134 | F: drivers/pinctrl/spear/ |
deda8287 | 7135 | |
249a6771 | 7136 | PKTCDVD DRIVER |
dbd47133 | 7137 | M: Jiri Kosina <jkosina@suse.cz> |
249a6771 | 7138 | S: Maintained |
679655da JP |
7139 | F: drivers/block/pktcdvd.c |
7140 | F: include/linux/pktcdvd.h | |
c117ab84 | 7141 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 7142 | |
b31d8273 G |
7143 | PKUNITY SOC DRIVERS |
7144 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
7145 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
7146 | S: Maintained | |
ceebf4d5 | 7147 | T: git git://github.com/gxt/linux.git |
b31d8273 | 7148 | F: drivers/input/serio/i8042-unicore32io.h |
d10e4a66 | 7149 | F: drivers/i2c/busses/i2c-puv3.c |
8a61f013 | 7150 | F: drivers/video/fbdev/fb-puv3.c |
2809e80b | 7151 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 7152 | |
9d2ecfb7 | 7153 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 7154 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
7155 | L: lm-sensors@lm-sensors.org |
7156 | W: http://www.lm-sensors.org/ | |
7157 | W: http://www.roeck-us.net/linux/drivers/ | |
7158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
7159 | S: Maintained | |
7160 | F: Documentation/hwmon/pmbus | |
7161 | F: drivers/hwmon/pmbus/ | |
7162 | F: include/linux/i2c/pmbus.h | |
7163 | ||
89a36810 | 7164 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 7165 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
89a36810 AR |
7166 | L: linux-scsi@vger.kernel.org |
7167 | W: http://www.pmc-sierra.com/ | |
7168 | S: Supported | |
7169 | F: drivers/scsi/pmcraid.* | |
7170 | ||
dbf9bfe6 | 7171 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 7172 | M: xjtuwjp@gmail.com |
dbf9bfe6 | 7173 | M: lindar_liu@usish.com |
f5a7b525 | 7174 | L: pmchba@pmcs.com |
dbf9bfe6 | 7175 | L: linux-scsi@vger.kernel.org |
7176 | S: Supported | |
7177 | F: drivers/scsi/pm8001/ | |
7178 | ||
1da177e4 | 7179 | POSIX CLOCKS and TIMERS |
8b58be88 | 7180 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 7181 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
5cee9645 | 7183 | S: Maintained |
679655da JP |
7184 | F: fs/timerfd.c |
7185 | F: include/linux/timer* | |
5cee9645 | 7186 | F: kernel/time/*timer* |
1da177e4 | 7187 | |
3be86148 | 7188 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
ad8464a2 | 7189 | M: Sebastian Reichel <sre@kernel.org> |
57318935 | 7190 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 7191 | M: David Woodhouse <dwmw2@infradead.org> |
ad8464a2 | 7192 | L: linux-pm@vger.kernel.org |
54e5881d | 7193 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 7194 | S: Maintained |
679655da | 7195 | F: include/linux/power_supply.h |
8cd725a1 | 7196 | F: drivers/power/ |
3be86148 | 7197 | |
1da177e4 | 7198 | PNP SUPPORT |
46a1f21a | 7199 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
1da177e4 | 7200 | S: Maintained |
679655da | 7201 | F: drivers/pnp/ |
1da177e4 | 7202 | |
999445d4 | 7203 | PNXxxxx I2C DRIVER |
8b58be88 | 7204 | M: Vitaly Wool <vitalywool@gmail.com> |
846557d3 | 7205 | L: linux-i2c@vger.kernel.org |
999445d4 | 7206 | S: Maintained |
679655da | 7207 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 7208 | |
1da177e4 | 7209 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 7210 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
7211 | L: linux-ppp@vger.kernel.org |
7212 | S: Maintained | |
224cf5ad | 7213 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
7214 | |
7215 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 7216 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 7217 | S: Maintained |
679655da | 7218 | F: net/atm/pppoatm.c |
c117ab84 | 7219 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
7220 | |
7221 | PPP OVER ETHERNET | |
8b58be88 | 7222 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 7223 | S: Maintained |
224cf5ad JK |
7224 | F: drivers/net/ppp/pppoe.c |
7225 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 7226 | |
a6d2370b | 7227 | PPP OVER L2TP |
8b58be88 | 7228 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 7229 | S: Maintained |
90ca28d1 | 7230 | F: net/l2tp/l2tp_ppp.c |
679655da | 7231 | F: include/linux/if_pppol2tp.h |
c117ab84 | 7232 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 7233 | |
eae9d2ba | 7234 | PPS SUPPORT |
8b58be88 | 7235 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
7236 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
7237 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
7238 | S: Maintained | |
cabaaf41 JP |
7239 | F: Documentation/pps/ |
7240 | F: drivers/pps/ | |
7241 | F: include/linux/pps*.h | |
eae9d2ba | 7242 | |
71a6d0af HW |
7243 | PPTP DRIVER |
7244 | M: Dmitry Kozlov <xeb@mail.ru> | |
7245 | L: netdev@vger.kernel.org | |
7246 | S: Maintained | |
224cf5ad | 7247 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
7248 | W: http://sourceforge.net/projects/accel-pptp |
7249 | ||
1da177e4 | 7250 | PREEMPTIBLE KERNEL |
8b58be88 | 7251 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
7252 | L: kpreempt-tech@lists.sourceforge.net |
7253 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
7254 | S: Supported | |
679655da JP |
7255 | F: Documentation/preempt-locking.txt |
7256 | F: include/linux/preempt.h | |
1da177e4 LT |
7257 | |
7258 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 7259 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 7260 | L: linux-wireless@vger.kernel.org |
9ef80804 | 7261 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 7262 | S: Obsolete |
679655da | 7263 | F: drivers/net/wireless/prism54/ |
1da177e4 | 7264 | |
b3277dfa | 7265 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 7266 | M: Mikael Pettersson <mikpelinux@gmail.com> |
b3277dfa MP |
7267 | L: linux-ide@vger.kernel.org |
7268 | S: Maintained | |
679655da | 7269 | F: drivers/ata/sata_promise.* |
b3277dfa | 7270 | |
02c18891 | 7271 | PS3 NETWORK SUPPORT |
b809b9ca | 7272 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 7273 | L: netdev@vger.kernel.org |
a4724ed6 | 7274 | L: cbe-oss-dev@lists.ozlabs.org |
b809b9ca | 7275 | S: Maintained |
8df158ac | 7276 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 7277 | |
f58a9d17 | 7278 | PS3 PLATFORM SUPPORT |
b809b9ca | 7279 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 SR |
7280 | L: linuxppc-dev@lists.ozlabs.org |
7281 | L: cbe-oss-dev@lists.ozlabs.org | |
b809b9ca | 7282 | S: Maintained |
679655da JP |
7283 | F: arch/powerpc/boot/ps3* |
7284 | F: arch/powerpc/include/asm/lv1call.h | |
7285 | F: arch/powerpc/include/asm/ps3*.h | |
7286 | F: arch/powerpc/platforms/ps3/ | |
7287 | F: drivers/*/ps3* | |
7288 | F: drivers/ps3/ | |
fec629b8 | 7289 | F: drivers/rtc/rtc-ps3.c |
679655da | 7290 | F: drivers/usb/host/*ps3.c |
fec629b8 | 7291 | F: sound/ppc/snd_ps3* |
f58a9d17 | 7292 | |
cffb4add | 7293 | PS3VRAM DRIVER |
8b58be88 | 7294 | M: Jim Paris <jim@jtan.com> |
a4724ed6 | 7295 | L: cbe-oss-dev@lists.ozlabs.org |
cffb4add | 7296 | S: Maintained |
8a3977cb | 7297 | F: drivers/block/ps3vram.c |
cffb4add | 7298 | |
8defe599 | 7299 | PSTORE FILESYSTEM |
9d5e2a02 | 7300 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
7301 | M: Colin Cross <ccross@android.com> |
7302 | M: Kees Cook <keescook@chromium.org> | |
7303 | M: Tony Luck <tony.luck@intel.com> | |
7304 | S: Maintained | |
7305 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
7306 | F: fs/pstore/ | |
7307 | F: include/linux/pstore* | |
04851772 | 7308 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
7309 | F: drivers/acpi/apei/erst.c |
7310 | ||
7fbc415d RC |
7311 | PTP HARDWARE CLOCK SUPPORT |
7312 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 7313 | L: netdev@vger.kernel.org |
7fbc415d RC |
7314 | S: Maintained |
7315 | W: http://linuxptp.sourceforge.net/ | |
7316 | F: Documentation/ABI/testing/sysfs-ptp | |
7317 | F: Documentation/ptp/* | |
0ecb3cdd | 7318 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
7319 | F: drivers/net/phy/dp83640* |
7320 | F: drivers/ptp/* | |
7321 | F: include/linux/ptp_cl* | |
7322 | ||
cf94a4d1 | 7323 | PTRACE SUPPORT |
e846ee5f | 7324 | M: Roland McGrath <roland@hack.frob.com> |
8b58be88 | 7325 | M: Oleg Nesterov <oleg@redhat.com> |
cf94a4d1 CH |
7326 | S: Maintained |
7327 | F: include/asm-generic/syscall.h | |
7328 | F: include/linux/ptrace.h | |
7329 | F: include/linux/regset.h | |
7330 | F: include/linux/tracehook.h | |
c117ab84 | 7331 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
7332 | F: kernel/ptrace.c |
7333 | ||
8320204a | 7334 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 7335 | M: Mike Isely <isely@pobox.com> |
16e9495d | 7336 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 7337 | L: linux-media@vger.kernel.org |
8320204a | 7338 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 7339 | T: git git://linuxtv.org/media_tree.git |
8320204a | 7340 | S: Maintained |
679655da | 7341 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 7342 | F: drivers/media/usb/pvrusb2/ |
8320204a | 7343 | |
39532e6c HG |
7344 | PWC WEBCAM DRIVER |
7345 | M: Hans de Goede <hdegoede@redhat.com> | |
7346 | L: linux-media@vger.kernel.org | |
7347 | T: git git://linuxtv.org/media_tree.git | |
7348 | S: Maintained | |
7349 | F: drivers/media/usb/pwc/* | |
7350 | ||
200efedd | 7351 | PWM SUBSYSTEM |
aa3495f7 TR |
7352 | M: Thierry Reding <thierry.reding@gmail.com> |
7353 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 7354 | S: Maintained |
006e854f | 7355 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
7356 | F: Documentation/pwm.txt |
7357 | F: Documentation/devicetree/bindings/pwm/ | |
7358 | F: include/linux/pwm.h | |
0c2498f1 | 7359 | F: drivers/pwm/ |
a140b98d TR |
7360 | F: drivers/video/backlight/pwm_bl.c |
7361 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 7362 | |
30ec261e | 7363 | PXA2xx/PXA3xx SUPPORT |
8da5e302 | 7364 | M: Daniel Mack <daniel@zonque.org> |
a323f664 | 7365 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
8da5e302 | 7366 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 7367 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 | 7368 | T: git git://github.com/hzhuang1/linux.git |
8da5e302 | 7369 | T: git git://github.com/rjarzmik/linux.git |
1da177e4 | 7370 | S: Maintained |
679655da JP |
7371 | F: arch/arm/mach-pxa/ |
7372 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 7373 | F: drivers/spi/spi-pxa2xx* |
faf2e1db | 7374 | F: drivers/usb/gadget/udc/pxa2* |
679655da | 7375 | F: include/sound/pxa2xx-lib.h |
bec4c99e | 7376 | F: sound/arm/pxa* |
14430813 | 7377 | F: sound/soc/pxa/ |
1da177e4 | 7378 | |
ec64d3bf EG |
7379 | PXA3xx NAND FLASH DRIVER |
7380 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
7381 | L: linux-mtd@lists.infradead.org | |
7382 | S: Maintained | |
9a67f099 | 7383 | F: drivers/mtd/nand/pxa3xx_nand.c |
ec64d3bf | 7384 | |
3f640c61 | 7385 | MMP SUPPORT |
8b58be88 | 7386 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 7387 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 7388 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
7389 | T: git git://github.com/hzhuang1/linux.git |
7390 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 7391 | S: Maintained |
3f640c61 | 7392 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 7393 | |
272f133a PO |
7394 | PXA MMCI DRIVER |
7395 | S: Orphan | |
7396 | ||
57f63bc8 | 7397 | PXA RTC DRIVER |
8b58be88 | 7398 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
7399 | L: rtc-linux@googlegroups.com |
7400 | S: Maintained | |
7401 | ||
cea4001a TS |
7402 | QAT DRIVER |
7403 | M: Tadeusz Struk <tadeusz.struk@intel.com> | |
7404 | L: qat-linux@intel.com | |
7405 | S: Supported | |
7406 | F: drivers/crypto/qat/ | |
7407 | ||
52a09a04 | 7408 | QIB DRIVER |
8473c603 | 7409 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
7410 | L: linux-rdma@vger.kernel.org |
7411 | S: Supported | |
7412 | F: drivers/infiniband/hw/qib/ | |
7413 | ||
5e9772b9 JS |
7414 | QLOGIC QLA1280 SCSI DRIVER |
7415 | M: Michael Reed <mdr@sgi.com> | |
7416 | L: linux-scsi@vger.kernel.org | |
7417 | S: Maintained | |
7418 | F: drivers/scsi/qla1280.[ch] | |
7419 | ||
1da177e4 | 7420 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 7421 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
7422 | L: linux-scsi@vger.kernel.org |
7423 | S: Supported | |
679655da JP |
7424 | F: Documentation/scsi/LICENSE.qla2xxx |
7425 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 7426 | |
883c98fe | 7427 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
7428 | M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> |
7429 | M: iscsi-driver@qlogic.com | |
7430 | L: linux-scsi@vger.kernel.org | |
7431 | S: Supported | |
bacfb81b | 7432 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
7433 | F: drivers/scsi/qla4xxx/ |
7434 | ||
5a4faa87 | 7435 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 7436 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 7437 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
7438 | M: linux-driver@qlogic.com |
7439 | L: netdev@vger.kernel.org | |
7440 | S: Supported | |
679655da | 7441 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 7442 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 7443 | |
0ec00f03 | 7444 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 7445 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
9f35a3cc | 7446 | M: Dept-GELinuxNICDev@qlogic.com |
0ec00f03 AKS |
7447 | L: netdev@vger.kernel.org |
7448 | S: Supported | |
aa43c215 | 7449 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 7450 | |
c4e84bde | 7451 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
c9b1a5b5 HP |
7452 | M: Harish Patil <harish.patil@qlogic.com> |
7453 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
7454 | M: Dept-GELinuxNICDev@qlogic.com | |
4cbfbe25 | 7455 | M: linux-driver@qlogic.com |
c4e84bde RM |
7456 | L: netdev@vger.kernel.org |
7457 | S: Supported | |
aa43c215 | 7458 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 7459 | |
1da177e4 | 7460 | QNX4 FILESYSTEM |
8b58be88 | 7461 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
7462 | W: http://www.alarsen.net/linux/qnx4fs/ |
7463 | S: Maintained | |
80811493 | 7464 | F: fs/qnx4/ |
c117ab84 CEB |
7465 | F: include/uapi/linux/qnx4_fs.h |
7466 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 7467 | |
91952bc0 AP |
7468 | QT1010 MEDIA DRIVER |
7469 | M: Antti Palosaari <crope@iki.fi> | |
7470 | L: linux-media@vger.kernel.org | |
7471 | W: http://linuxtv.org/ | |
7472 | W: http://palosaari.fi/linux/ | |
7473 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7474 | T: git git://linuxtv.org/anttip/media_tree.git | |
7475 | S: Maintained | |
7476 | F: drivers/media/tuners/qt1010* | |
7477 | ||
966fb5ec SM |
7478 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
7479 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
7480 | L: linux-wireless@vger.kernel.org | |
7481 | L: ath9k-devel@lists.ath9k.org | |
7482 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
7483 | S: Supported | |
7484 | F: drivers/net/wireless/ath/ath9k/ | |
7485 | ||
2ea0ffcb KV |
7486 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
7487 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
7488 | L: ath10k@lists.infradead.org | |
7489 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
7490 | T: git git://github.com/kvalo/ath.git | |
7491 | S: Supported | |
7492 | F: drivers/net/wireless/ath/ath10k/ | |
7493 | ||
4f4567cf RK |
7494 | QUALCOMM HEXAGON ARCHITECTURE |
7495 | M: Richard Kuo <rkuo@codeaurora.org> | |
7496 | L: linux-hexagon@vger.kernel.org | |
7497 | S: Supported | |
7498 | F: arch/hexagon/ | |
7499 | ||
8e84c258 EK |
7500 | QUALCOMM WCN36XX WIRELESS DRIVER |
7501 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
7502 | L: wcn36xx@lists.infradead.org | |
7503 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
7504 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
7505 | S: Supported | |
7506 | F: drivers/net/wireless/ath/wcn36xx/ | |
7507 | ||
35e3540b HV |
7508 | QUICKCAM PARALLEL PORT WEBCAMS |
7509 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7510 | L: linux-media@vger.kernel.org | |
7511 | T: git git://linuxtv.org/media_tree.git | |
7512 | W: http://linuxtv.org | |
7513 | S: Odd Fixes | |
7514 | F: drivers/media/parport/*-qcam* | |
7515 | ||
602adf40 | 7516 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
7517 | M: Yehuda Sadeh <yehuda@inktank.com> |
7518 | M: Sage Weil <sage@inktank.com> | |
527a88b9 | 7519 | M: Alex Elder <elder@kernel.org> |
602adf40 | 7520 | M: ceph-devel@vger.kernel.org |
09d90327 SW |
7521 | W: http://ceph.com/ |
7522 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
7523 | S: Supported |
7524 | F: drivers/block/rbd.c | |
7525 | F: drivers/block/rbd_types.h | |
7526 | ||
1da177e4 | 7527 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7528 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 7529 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 7530 | S: Maintained |
8a61f013 | 7531 | F: drivers/video/fbdev/aty/radeon* |
c117ab84 | 7532 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 7533 | |
c6c9b34c HG |
7534 | RADIOSHARK RADIO DRIVER |
7535 | M: Hans de Goede <hdegoede@redhat.com> | |
7536 | L: linux-media@vger.kernel.org | |
7537 | T: git git://linuxtv.org/media_tree.git | |
7538 | S: Maintained | |
7539 | F: drivers/media/radio/radio-shark.c | |
7540 | ||
7541 | RADIOSHARK2 RADIO DRIVER | |
7542 | M: Hans de Goede <hdegoede@redhat.com> | |
7543 | L: linux-media@vger.kernel.org | |
7544 | T: git git://linuxtv.org/media_tree.git | |
7545 | S: Maintained | |
7546 | F: drivers/media/radio/radio-shark2.c | |
7547 | F: drivers/media/radio/radio-tea5777.c | |
7548 | ||
1da177e4 | 7549 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7550 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 7551 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 7552 | S: Maintained |
8a61f013 | 7553 | F: drivers/video/fbdev/aty/aty128fb.c |
1da177e4 | 7554 | |
e7839f25 | 7555 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7556 | P: rt2x00 project |
b182427e | 7557 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
f198f98e | 7558 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 7559 | L: linux-wireless@vger.kernel.org |
83fc9c89 | 7560 | L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) |
95ea3627 ID |
7561 | W: http://rt2x00.serialmonkey.com/ |
7562 | S: Maintained | |
7563 | F: drivers/net/wireless/rt2x00/ | |
7564 | ||
9db5579b | 7565 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7566 | M: Nick Piggin <npiggin@kernel.dk> |
9db5579b | 7567 | S: Maintained |
679655da JP |
7568 | F: Documentation/blockdev/ramdisk.txt |
7569 | F: drivers/block/brd.c | |
9db5579b | 7570 | |
9e95ce27 | 7571 | RANDOM NUMBER DRIVER |
0624bcaa | 7572 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 7573 | S: Maintained |
679655da | 7574 | F: drivers/char/random.c |
9e95ce27 | 7575 | |
394b701c | 7576 | RAPIDIO SUBSYSTEM |
8b58be88 | 7577 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 7578 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 7579 | S: Maintained |
679655da | 7580 | F: drivers/rapidio/ |
394b701c | 7581 | |
e2d1d6c0 | 7582 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7583 | L: linux-wireless@vger.kernel.org |
f52a5490 | 7584 | S: Orphan |
679655da | 7585 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7586 | |
7587 | RCUTORTURE MODULE | |
e0198b29 | 7588 | M: Josh Triplett <josh@joshtriplett.org> |
8b58be88 | 7589 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
981c3a4f | 7590 | L: linux-kernel@vger.kernel.org |
f9094d8e | 7591 | S: Supported |
08deed1e | 7592 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7593 | F: Documentation/RCU/torture.txt |
34e2d560 | 7594 | F: kernel/rcu/rcutorture.c |
e2d1d6c0 | 7595 | |
c87b9c60 PM |
7596 | RCUTORTURE TEST FRAMEWORK |
7597 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 7598 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
7599 | R: Steven Rostedt <rostedt@goodmis.org> |
7600 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7601 | R: Lai Jiangshan <laijs@cn.fujitsu.com> | |
981c3a4f | 7602 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
7603 | S: Supported |
7604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7605 | F: tools/testing/selftests/rcutorture | |
7606 | ||
c1f766b5 | 7607 | RDC R-321X SoC |
8b58be88 | 7608 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
7609 | S: Maintained |
7610 | ||
db17f395 | 7611 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7612 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
7613 | L: netdev@vger.kernel.org |
7614 | S: Maintained | |
58565a35 | 7615 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7616 | |
a09ed661 | 7617 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 7618 | M: Chien Yen <chien.yen@oracle.com> |
fbb5a558 | 7619 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 7620 | S: Supported |
679655da | 7621 | F: net/rds/ |
a09ed661 | 7622 | |
595182bc | 7623 | READ-COPY UPDATE (RCU) |
8b58be88 | 7624 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
ab0afd6c | 7625 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
7626 | R: Steven Rostedt <rostedt@goodmis.org> |
7627 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
7628 | R: Lai Jiangshan <laijs@cn.fujitsu.com> | |
981c3a4f | 7629 | L: linux-kernel@vger.kernel.org |
9fab9787 | 7630 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7631 | S: Supported |
08deed1e | 7632 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7633 | F: Documentation/RCU/ |
9fab9787 | 7634 | X: Documentation/RCU/torture.txt |
f9094d8e | 7635 | F: include/linux/rcu* |
4102adab PM |
7636 | X: include/linux/srcu.h |
7637 | F: kernel/rcu/ | |
34e2d560 | 7638 | X: kernel/torture.c |
595182bc | 7639 | |
0c86edc0 | 7640 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7641 | M: Alessandro Zummo <a.zummo@towertech.it> |
76465493 | 7642 | L: rtc-linux@googlegroups.com |
8a6e2535 | 7643 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7644 | S: Maintained |
679655da JP |
7645 | F: Documentation/rtc.txt |
7646 | F: drivers/rtc/ | |
7647 | F: include/linux/rtc.h | |
c117ab84 | 7648 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7649 | |
0e400c53 MB |
7650 | REALTEK AUDIO CODECS |
7651 | M: Bard Liao <bardliao@realtek.com> | |
7652 | M: Oder Chiou <oder_chiou@realtek.com> | |
7653 | S: Maintained | |
7654 | F: sound/soc/codecs/rt* | |
7655 | F: include/sound/rt*.h | |
7656 | ||
1da177e4 | 7657 | REISERFS FILE SYSTEM |
76c4e5ea | 7658 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 7659 | S: Supported |
679655da | 7660 | F: fs/reiserfs/ |
1da177e4 | 7661 | |
b83a313b | 7662 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7663 | M: Mark Brown <broonie@kernel.org> |
dd060bc9 | 7664 | L: linux-kernel@vger.kernel.org |
b83a313b MB |
7665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7666 | S: Supported | |
7667 | F: drivers/base/regmap/ | |
7668 | F: include/linux/regmap.h | |
7669 | ||
400e64df OBC |
7670 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7671 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 7672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7673 | S: Maintained |
7674 | F: drivers/remoteproc/ | |
7675 | F: Documentation/remoteproc.txt | |
6fc26488 | 7676 | F: include/linux/remoteproc.h |
400e64df | 7677 | |
d8115db5 OBC |
7678 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7679 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
7680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7681 | S: Maintained | |
7682 | F: drivers/rpmsg/ | |
7683 | F: Documentation/rpmsg.txt | |
7684 | F: include/linux/rpmsg.h | |
7685 | ||
1b0fe6be PZ |
7686 | RESET CONTROLLER FRAMEWORK |
7687 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
7688 | S: Maintained | |
7689 | F: drivers/reset/ | |
7690 | F: Documentation/devicetree/bindings/reset/ | |
7691 | F: include/linux/reset.h | |
7692 | F: include/linux/reset-controller.h | |
7693 | ||
e0897645 | 7694 | RFKILL |
8b58be88 | 7695 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 7696 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
7697 | W: http://wireless.kernel.org/ |
7698 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7699 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7700 | S: Maintained |
505c9247 | 7701 | F: Documentation/rfkill.txt |
80811493 | 7702 | F: net/rfkill/ |
e0897645 | 7703 | |
67e054e9 ML |
7704 | RICOH SMARTMEDIA/XD DRIVER |
7705 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7706 | S: Maintained | |
21c26f50 JP |
7707 | F: drivers/mtd/nand/r852.c |
7708 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7709 | |
92634125 ML |
7710 | RICOH R5C592 MEMORYSTICK DRIVER |
7711 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7712 | S: Maintained | |
7713 | F: drivers/memstick/host/r592.* | |
7714 | ||
27f1d2f9 SA |
7715 | ROCCAT DRIVERS |
7716 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
7717 | W: http://sourceforge.net/projects/roccat/ | |
7718 | S: Maintained | |
7719 | F: drivers/hid/hid-roccat* | |
7720 | F: include/linux/hid-roccat* | |
7721 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7722 | ||
1da177e4 LT |
7723 | ROCKETPORT DRIVER |
7724 | P: Comtrol Corp. | |
1da177e4 LT |
7725 | W: http://www.comtrol.com |
7726 | S: Maintained | |
679655da | 7727 | F: Documentation/serial/rocket.txt |
c897401b | 7728 | F: drivers/tty/rocket* |
1da177e4 LT |
7729 | |
7730 | ROSE NETWORK LAYER | |
8b58be88 | 7731 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7732 | L: linux-hams@vger.kernel.org |
d34cb28a | 7733 | W: http://www.linux-ax25.org/ |
1da177e4 | 7734 | S: Maintained |
679655da | 7735 | F: include/net/rose.h |
c117ab84 | 7736 | F: include/uapi/linux/rose.h |
679655da | 7737 | F: net/rose/ |
1da177e4 | 7738 | |
91952bc0 AP |
7739 | RTL2830 MEDIA DRIVER |
7740 | M: Antti Palosaari <crope@iki.fi> | |
7741 | L: linux-media@vger.kernel.org | |
7742 | W: http://linuxtv.org/ | |
7743 | W: http://palosaari.fi/linux/ | |
7744 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7745 | T: git git://linuxtv.org/anttip/media_tree.git | |
7746 | S: Maintained | |
7747 | F: drivers/media/dvb-frontends/rtl2830* | |
7748 | ||
27a0aacf AP |
7749 | RTL2832 MEDIA DRIVER |
7750 | M: Antti Palosaari <crope@iki.fi> | |
7751 | L: linux-media@vger.kernel.org | |
7752 | W: http://linuxtv.org/ | |
7753 | W: http://palosaari.fi/linux/ | |
7754 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7755 | T: git git://linuxtv.org/anttip/media_tree.git | |
7756 | S: Maintained | |
7757 | F: drivers/media/dvb-frontends/rtl2832* | |
7758 | ||
ba6e6f6e AP |
7759 | RTL2832_SDR MEDIA DRIVER |
7760 | M: Antti Palosaari <crope@iki.fi> | |
7761 | L: linux-media@vger.kernel.org | |
7762 | W: http://linuxtv.org/ | |
7763 | W: http://palosaari.fi/linux/ | |
7764 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7765 | T: git git://linuxtv.org/anttip/media_tree.git | |
7766 | S: Maintained | |
b4bb1c28 | 7767 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
ba6e6f6e | 7768 | |
59840488 | 7769 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7770 | M: "John W. Linville" <linville@tuxdriver.com> |
605bebe2 | 7771 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7772 | W: http://wireless.kernel.org/ |
54e5881d | 7773 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7774 | S: Maintained |
3cfeb0c3 | 7775 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7776 | |
59840488 | 7777 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7778 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
7779 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
7780 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 7781 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7782 | W: http://wireless.kernel.org/ |
54e5881d | 7783 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7784 | S: Maintained |
3cfeb0c3 | 7785 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7786 | |
3cf0c8ad LF |
7787 | RTL8192CE WIRELESS DRIVER |
7788 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7789 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
7790 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 7791 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7792 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7793 | S: Maintained | |
7794 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7795 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7796 | |
9eb8ef74 | 7797 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7798 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7799 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7800 | S: Maintained |
8a61f013 | 7801 | F: drivers/video/fbdev/savage/ |
9eb8ef74 | 7802 | |
1da177e4 | 7803 | S390 |
8b58be88 JP |
7804 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
7805 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
1da177e4 | 7806 | M: linux390@de.ibm.com |
d58140cc | 7807 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7808 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7809 | S: Supported | |
679655da | 7810 | F: arch/s390/ |
a968cd3e | 7811 | F: drivers/s390/ |
3bfe6858 JN |
7812 | F: Documentation/s390/ |
7813 | F: Documentation/DocBook/s390* | |
5238da45 | 7814 | |
322986ca SO |
7815 | S390 COMMON I/O LAYER |
7816 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
7817 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
7818 | L: linux-s390@vger.kernel.org | |
7819 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7820 | S: Supported | |
7821 | F: drivers/s390/cio/ | |
7822 | ||
7823 | S390 DASD DRIVER | |
7824 | M: Stefan Weinhuber <wein@de.ibm.com> | |
7825 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
7826 | L: linux-s390@vger.kernel.org | |
7827 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7828 | S: Supported | |
7829 | F: drivers/s390/block/dasd* | |
7830 | F: block/partitions/ibm.c | |
7831 | ||
5238da45 | 7832 | S390 NETWORK DRIVERS |
8b58be88 JP |
7833 | M: Ursula Braun <ursula.braun@de.ibm.com> |
7834 | M: Frank Blaschka <blaschka@linux.vnet.ibm.com> | |
5238da45 | 7835 | M: linux390@de.ibm.com |
d58140cc | 7836 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7837 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7838 | S: Supported | |
679655da | 7839 | F: drivers/s390/net/ |
5238da45 | 7840 | |
322986ca SO |
7841 | S390 PCI SUBSYSTEM |
7842 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
7843 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
7844 | L: linux-s390@vger.kernel.org | |
7845 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7846 | S: Supported | |
7847 | F: arch/s390/pci/ | |
7848 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
7849 | ||
feed9b62 | 7850 | S390 ZCRYPT DRIVER |
5c8d0983 | 7851 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 FB |
7852 | M: linux390@de.ibm.com |
7853 | L: linux-s390@vger.kernel.org | |
a968cd3e | 7854 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7855 | S: Supported |
d5ca6918 | 7856 | F: drivers/s390/crypto/ |
feed9b62 | 7857 | |
5238da45 | 7858 | S390 ZFCP DRIVER |
d38e19d0 | 7859 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
5238da45 | 7860 | M: linux390@de.ibm.com |
d58140cc | 7861 | L: linux-s390@vger.kernel.org |
5238da45 | 7862 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7863 | S: Supported |
679655da | 7864 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7865 | |
dd96df2c | 7866 | S390 IUCV NETWORK LAYER |
8b58be88 | 7867 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
7868 | M: linux390@de.ibm.com |
7869 | L: linux-s390@vger.kernel.org | |
7870 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7871 | S: Supported | |
679655da JP |
7872 | F: drivers/s390/net/*iucv* |
7873 | F: include/net/iucv/ | |
7874 | F: net/iucv/ | |
dd96df2c | 7875 | |
4dde7f75 | 7876 | S3C24XX SD/MMC Driver |
8b58be88 | 7877 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 7878 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 7879 | S: Supported |
679655da | 7880 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7881 | |
1f15a229 HV |
7882 | SAA6588 RDS RECEIVER DRIVER |
7883 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7884 | L: linux-media@vger.kernel.org | |
7885 | T: git git://linuxtv.org/media_tree.git | |
7886 | W: http://linuxtv.org | |
7887 | S: Odd Fixes | |
7888 | F: drivers/media/i2c/saa6588* | |
7889 | ||
98ed12e6 | 7890 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7891 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
98ed12e6 MCC |
7892 | L: linux-media@vger.kernel.org |
7893 | W: http://linuxtv.org | |
7894 | T: git git://linuxtv.org/media_tree.git | |
7895 | S: Odd fixes | |
e42bf501 | 7896 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7897 | F: drivers/media/pci/saa7134/ |
7898 | ||
1da177e4 | 7899 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7900 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 7901 | L: linux-media@vger.kernel.org |
275ffde4 | 7902 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7903 | S: Maintained |
90d72ac6 MCC |
7904 | F: drivers/media/common/saa7146/ |
7905 | F: drivers/media/pci/saa7146/ | |
7906 | F: include/media/saa7146* | |
1da177e4 | 7907 | |
92304a40 | 7908 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7909 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
7910 | L: platform-driver-x86@vger.kernel.org |
7911 | S: Maintained | |
7912 | F: drivers/platform/x86/samsung-laptop.c | |
7913 | ||
4a109cc0 | 7914 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7915 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
7916 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
7917 | S: Supported | |
14430813 | 7918 | F: sound/soc/samsung/ |
4a109cc0 | 7919 | |
0d89a28b JH |
7920 | SAMSUNG FRAMEBUFFER DRIVER |
7921 | M: Jingoo Han <jg1.han@samsung.com> | |
7922 | L: linux-fbdev@vger.kernel.org | |
7923 | S: Maintained | |
8a61f013 | 7924 | F: drivers/video/fbdev/s3c-fb.c |
0d89a28b | 7925 | |
f69d3a17 SK |
7926 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7927 | M: Sangbeom Kim <sbkim73@samsung.com> | |
7928 | L: linux-kernel@vger.kernel.org | |
7929 | S: Supported | |
7930 | F: drivers/mfd/sec*.c | |
7931 | F: drivers/regulator/s2m*.c | |
7932 | F: drivers/regulator/s5m*.c | |
7933 | F: drivers/rtc/rtc-sec.c | |
7934 | F: include/linux/mfd/samsung/ | |
7935 | ||
038f5c4b SN |
7936 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7937 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7938 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
7939 | L: linux-media@vger.kernel.org | |
7940 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7941 | S: Supported | |
7942 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 7943 | |
6fd86ab2 SN |
7944 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7945 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
7946 | L: linux-media@vger.kernel.org | |
7947 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7948 | S: Maintained | |
7949 | F: drivers/media/platform/s3c-camif/ | |
7950 | F: include/media/s3c_camif.h | |
7951 | ||
b84ef24e AH |
7952 | SAMSUNG S5C73M3 CAMERA DRIVER |
7953 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7954 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7955 | L: linux-media@vger.kernel.org | |
7956 | S: Supported | |
7957 | F: drivers/media/i2c/s5c73m3/* | |
7958 | ||
7d459937 AH |
7959 | SAMSUNG S5K5BAF CAMERA DRIVER |
7960 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7961 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7962 | L: linux-media@vger.kernel.org | |
7963 | S: Supported | |
7964 | F: drivers/media/i2c/s5k5baf.c | |
7965 | ||
310e39c9 | 7966 | SAMSUNG SOC CLOCK DRIVERS |
fea685e9 TF |
7967 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
7968 | M: Tomasz Figa <tomasz.figa@gmail.com> | |
310e39c9 TF |
7969 | S: Supported |
7970 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7971 | F: drivers/clk/samsung/ | |
7972 | ||
66890ed6 BA |
7973 | SAMSUNG SXGBE DRIVERS |
7974 | M: Byungho An <bh74.an@samsung.com> | |
7975 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
7976 | M: Vipul Pandya <vipul.pandya@samsung.com> |
7977 | S: Supported | |
7978 | L: netdev@vger.kernel.org | |
7979 | F: drivers/net/ethernet/samsung/sxgbe/ | |
7980 | ||
e296cd32 KD |
7981 | SAMSUNG USB2 PHY DRIVER |
7982 | M: Kamil Debski <k.debski@samsung.com> | |
7983 | L: linux-kernel@vger.kernel.org | |
7984 | S: Supported | |
7985 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt | |
7986 | F: Documentation/phy/samsung-usb2.txt | |
7987 | F: drivers/phy/phy-exynos4210-usb2.c | |
7988 | F: drivers/phy/phy-exynos4x12-usb2.c | |
7989 | F: drivers/phy/phy-exynos5250-usb2.c | |
7990 | F: drivers/phy/phy-s5pv210-usb2.c | |
7991 | F: drivers/phy/phy-samsung-usb2.c | |
7992 | F: drivers/phy/phy-samsung-usb2.h | |
7993 | ||
ca749e2a | 7994 | SERIAL DRIVERS |
5e30bbb7 | 7995 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 7996 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 7997 | S: Maintained |
14430813 | 7998 | F: drivers/tty/serial/ |
ca749e2a | 7999 | |
aecb7b64 | 8000 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 8001 | M: Viresh Kumar <viresh.linux@gmail.com> |
337ae47c | 8002 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 VK |
8003 | S: Maintained |
8004 | F: include/linux/dw_dmac.h | |
61a76496 | 8005 | F: drivers/dma/dw/ |
aecb7b64 | 8006 | |
f9e37137 SJ |
8007 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
8008 | M: Seungwon Jeon <tgih.jun@samsung.com> | |
8009 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
8010 | L: linux-mmc@vger.kernel.org | |
8011 | S: Maintained | |
8012 | F: include/linux/mmc/dw_mmc.h | |
8013 | F: drivers/mmc/host/dw_mmc* | |
8014 | ||
1db121d6 AN |
8015 | THUNDERBOLT DRIVER |
8016 | M: Andreas Noever <andreas.noever@gmail.com> | |
8017 | S: Maintained | |
8018 | F: drivers/thunderbolt/ | |
8019 | ||
9222d247 | 8020 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 8021 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 8022 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 8023 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8024 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
8025 | S: Supported |
8026 | F: include/linux/clocksource.h | |
8027 | F: include/linux/time.h | |
8028 | F: include/linux/timex.h | |
c117ab84 CEB |
8029 | F: include/uapi/linux/time.h |
8030 | F: include/uapi/linux/timex.h | |
88606e80 TG |
8031 | F: kernel/time/clocksource.c |
8032 | F: kernel/time/time*.c | |
8033 | F: kernel/time/ntp.c | |
8034 | ||
5b3f03f0 | 8035 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 8036 | M: Huang Shijie <shijie8@gmail.com> |
a545e2ea HV |
8037 | M: Hans Verkuil <hverkuil@xs4all.nl> |
8038 | S: Odd Fixes | |
14430813 | 8039 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 8040 | |
1da177e4 | 8041 | SC1200 WDT DRIVER |
b300645a | 8042 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 8043 | S: Maintained |
679655da | 8044 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
8045 | |
8046 | SCHEDULER | |
dd9b238c | 8047 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 8048 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 8049 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 8050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 8051 | S: Maintained |
95c0d71d | 8052 | F: kernel/sched/ |
679655da | 8053 | F: include/linux/sched.h |
c117ab84 | 8054 | F: include/uapi/linux/sched.h |
c2eb505b | 8055 | F: include/linux/wait.h |
1da177e4 | 8056 | |
6bcf6737 | 8057 | SCORE ARCHITECTURE |
ed38665e | 8058 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 8059 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 8060 | W: http://www.sunplus.com |
6bcf6737 | 8061 | S: Supported |
a2681a75 | 8062 | F: arch/score/ |
6bcf6737 | 8063 | |
1da177e4 | 8064 | SCSI CDROM DRIVER |
8b58be88 | 8065 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
8066 | L: linux-scsi@vger.kernel.org |
8067 | W: http://www.kernel.dk | |
8068 | S: Maintained | |
679655da | 8069 | F: drivers/scsi/sr* |
1da177e4 | 8070 | |
fb50a83d | 8071 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
e6b45d49 | 8072 | M: Bart Van Assche <bvanassche@acm.org> |
fb50a83d RD |
8073 | L: linux-rdma@vger.kernel.org |
8074 | S: Supported | |
8075 | W: http://www.openfabrics.org | |
8076 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
8077 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
8078 | F: drivers/infiniband/ulp/srp/ | |
8079 | F: include/scsi/srp.h | |
8080 | ||
1da177e4 | 8081 | SCSI SG DRIVER |
8b58be88 | 8082 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 8083 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 8084 | W: http://sg.danny.cz/sg |
1da177e4 | 8085 | S: Maintained |
59ab3c93 | 8086 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
8087 | F: drivers/scsi/sg.c |
8088 | F: include/scsi/sg.h | |
1da177e4 LT |
8089 | |
8090 | SCSI SUBSYSTEM | |
c95286d8 | 8091 | M: "James E.J. Bottomley" <JBottomley@parallels.com> |
1da177e4 | 8092 | L: linux-scsi@vger.kernel.org |
54e5881d JP |
8093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
8094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
8095 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 8096 | S: Maintained |
679655da JP |
8097 | F: drivers/scsi/ |
8098 | F: include/scsi/ | |
1da177e4 LT |
8099 | |
8100 | SCSI TAPE DRIVER | |
8b58be88 | 8101 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
8102 | L: linux-scsi@vger.kernel.org |
8103 | S: Maintained | |
679655da | 8104 | F: Documentation/scsi/st.txt |
f7269cfc JD |
8105 | F: drivers/scsi/st.* |
8106 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
8107 | |
8108 | SCTP PROTOCOL | |
8b6efb75 | 8109 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 8110 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 8111 | L: linux-sctp@vger.kernel.org |
5f85813c | 8112 | W: http://lksctp.sourceforge.net |
8b6efb75 | 8113 | S: Maintained |
679655da JP |
8114 | F: Documentation/networking/sctp.txt |
8115 | F: include/linux/sctp.h | |
4d58c025 | 8116 | F: include/uapi/linux/sctp.h |
679655da JP |
8117 | F: include/net/sctp/ |
8118 | F: net/sctp/ | |
1da177e4 LT |
8119 | |
8120 | SCx200 CPU SUPPORT | |
8b58be88 | 8121 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8122 | S: Odd Fixes |
679655da | 8123 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 8124 | F: arch/x86/platform/scx200/ |
679655da JP |
8125 | F: drivers/watchdog/scx200_wdt.c |
8126 | F: drivers/i2c/busses/scx200* | |
8127 | F: drivers/mtd/maps/scx200_docflash.c | |
8128 | F: include/linux/scx200.h | |
1662d32c JC |
8129 | |
8130 | SCx200 GPIO DRIVER | |
8b58be88 | 8131 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8132 | S: Maintained |
679655da JP |
8133 | F: drivers/char/scx200_gpio.c |
8134 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
8135 | |
8136 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 8137 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 8138 | S: Maintained |
679655da | 8139 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 8140 | |
6a36913a | 8141 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 8142 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
8143 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
8144 | S: Maintained | |
679655da | 8145 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 8146 | |
e7839f25 | 8147 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
6e443244 | 8148 | M: Chris Ball <chris@printf.net> |
7a241d6e | 8149 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
8150 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
8151 | S: Maintained | |
7a241d6e | 8152 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 8153 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 8154 | |
c04f9d61 KC |
8155 | SECURE COMPUTING |
8156 | M: Kees Cook <keescook@chromium.org> | |
8157 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp | |
8158 | S: Supported | |
8159 | F: kernel/seccomp.c | |
8160 | F: include/uapi/linux/seccomp.h | |
8161 | F: include/linux/seccomp.h | |
8162 | K: \bsecure_computing | |
8163 | K: \bTIF_SECCOMP\b | |
8164 | ||
3085e9c1 | 8165 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 8166 | M: Anton Vorontsov <anton@enomsg.org> |
a4724ed6 | 8167 | L: linuxppc-dev@lists.ozlabs.org |
7a241d6e | 8168 | L: linux-mmc@vger.kernel.org |
e2d1d6c0 | 8169 | S: Maintained |
d4a45787 | 8170 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 8171 | |
0d1bb41a | 8172 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 8173 | M: Ben Dooks <ben-linux@fluff.org> |
7a241d6e | 8174 | L: linux-mmc@vger.kernel.org |
0d1bb41a BD |
8175 | S: Maintained |
8176 | F: drivers/mmc/host/sdhci-s3c.c | |
8177 | ||
c63b3cba | 8178 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 8179 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 | 8180 | L: spear-devel@list.st.com |
c63b3cba VK |
8181 | L: linux-mmc@vger.kernel.org |
8182 | S: Maintained | |
8183 | F: drivers/mmc/host/sdhci-spear.c | |
8184 | ||
8711cca2 | 8185 | SECURITY SUBSYSTEM |
9b45c0d2 | 8186 | M: James Morris <james.l.morris@oracle.com> |
70b4a259 | 8187 | M: Serge E. Hallyn <serge@hallyn.com> |
8711cca2 | 8188 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 8189 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 8190 | W: http://kernsec.org/ |
8711cca2 | 8191 | S: Supported |
7d2c86b5 | 8192 | F: security/ |
8711cca2 | 8193 | |
1da177e4 | 8194 | SECURITY CONTACT |
8b58be88 | 8195 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
8196 | S: Supported |
8197 | ||
8198 | SELINUX SECURITY MODULE | |
e0238b4c | 8199 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 8200 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 8201 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 8202 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 8203 | W: http://selinuxproject.org |
5a5f2acf | 8204 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 8205 | S: Supported |
679655da JP |
8206 | F: include/linux/selinux* |
8207 | F: security/selinux/ | |
6bde95ce | 8208 | F: scripts/selinux/ |
1da177e4 | 8209 | |
c1c124e9 JJ |
8210 | APPARMOR SECURITY MODULE |
8211 | M: John Johansen <john.johansen@canonical.com> | |
8212 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
8213 | W: apparmor.wiki.kernel.org | |
8214 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
8215 | S: Supported | |
8216 | F: security/apparmor/ | |
8217 | ||
cef2cf07 | 8218 | SENSABLE PHANTOM |
8b58be88 | 8219 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 8220 | S: Maintained |
679655da | 8221 | F: drivers/misc/phantom.c |
c117ab84 | 8222 | F: include/uapi/linux/phantom.h |
cef2cf07 | 8223 | |
4480f15b | 8224 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 8225 | M: Tejun Heo <tj@kernel.org> |
1da177e4 | 8226 | L: linux-ide@vger.kernel.org |
3d9b9350 | 8227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 8228 | S: Supported |
d5ca6918 JP |
8229 | F: drivers/ata/ |
8230 | F: include/linux/ata.h | |
8231 | F: include/linux/libata.h | |
1da177e4 | 8232 | |
7188b067 HG |
8233 | SERIAL ATA AHCI PLATFORM devices support |
8234 | M: Hans de Goede <hdegoede@redhat.com> | |
8235 | M: Tejun Heo <tj@kernel.org> | |
8236 | L: linux-ide@vger.kernel.org | |
8237 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git | |
8238 | S: Supported | |
8239 | F: drivers/ata/ahci_platform.c | |
8240 | F: drivers/ata/libahci_platform.c | |
8241 | F: include/linux/ahci_platform.h | |
8242 | ||
6733b39a | 8243 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 8244 | M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> |
3387f656 | 8245 | L: linux-scsi@vger.kernel.org |
0ca43cc0 | 8246 | W: http://www.emulex.com |
3387f656 JP |
8247 | S: Supported |
8248 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 8249 | |
6b7c5b94 | 8250 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
8251 | M: Sathya Perla <sathya.perla@emulex.com> |
8252 | M: Subbu Seetharaman <subbu.seetharaman@emulex.com> | |
8253 | M: Ajit Khaparde <ajit.khaparde@emulex.com> | |
7d2c86b5 | 8254 | L: netdev@vger.kernel.org |
fea3af67 | 8255 | W: http://www.emulex.com |
7d2c86b5 | 8256 | S: Supported |
9aebddd1 | 8257 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 8258 | |
8ceee660 | 8259 | SFC NETWORK DRIVER |
c06f51ea | 8260 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
8533ccf3 | 8261 | M: Shradha Shah <sshah@solarflare.com> |
c06f51ea | 8262 | L: netdev@vger.kernel.org |
8ceee660 | 8263 | S: Supported |
874aeea5 | 8264 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 8265 | |
e2d1d6c0 | 8266 | SGI GRU DRIVER |
cc883afc | 8267 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 8268 | S: Maintained |
679655da | 8269 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
8270 | |
8271 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 8272 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
8273 | L: linux-ia64@vger.kernel.org |
8274 | S: Supported | |
679655da | 8275 | F: Documentation/ia64/serial.txt |
df621252 | 8276 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 8277 | F: include/linux/ioc?.h |
e2d1d6c0 | 8278 | |
75312619 | 8279 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
8280 | M: Cliff Whickman <cpw@sgi.com> |
8281 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 8282 | S: Maintained |
679655da | 8283 | F: drivers/misc/sgi-xp/ |
75312619 | 8284 | |
46eacf3b AP |
8285 | SI2157 MEDIA DRIVER |
8286 | M: Antti Palosaari <crope@iki.fi> | |
8287 | L: linux-media@vger.kernel.org | |
8288 | W: http://linuxtv.org/ | |
8289 | W: http://palosaari.fi/linux/ | |
8290 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8291 | T: git git://linuxtv.org/anttip/media_tree.git | |
8292 | S: Maintained | |
8293 | F: drivers/media/tuners/si2157* | |
8294 | ||
75e2d5ba AP |
8295 | SI2168 MEDIA DRIVER |
8296 | M: Antti Palosaari <crope@iki.fi> | |
8297 | L: linux-media@vger.kernel.org | |
8298 | W: http://linuxtv.org/ | |
8299 | W: http://palosaari.fi/linux/ | |
8300 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8301 | T: git git://linuxtv.org/anttip/media_tree.git | |
8302 | S: Maintained | |
8303 | F: drivers/media/dvb-frontends/si2168* | |
8304 | ||
49cc629d HV |
8305 | SI470X FM RADIO RECEIVER I2C DRIVER |
8306 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8307 | L: linux-media@vger.kernel.org | |
8308 | T: git git://linuxtv.org/media_tree.git | |
8309 | W: http://linuxtv.org | |
8310 | S: Odd Fixes | |
8311 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
8312 | ||
8313 | SI470X FM RADIO RECEIVER USB DRIVER | |
8314 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8315 | L: linux-media@vger.kernel.org | |
8316 | T: git git://linuxtv.org/media_tree.git | |
8317 | W: http://linuxtv.org | |
8318 | S: Maintained | |
8319 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
8320 | F: drivers/media/radio/si470x/radio-si470x.h | |
8321 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
8322 | ||
c937ca03 EV |
8323 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
8324 | M: Eduardo Valentin <edubezval@gmail.com> | |
8325 | L: linux-media@vger.kernel.org | |
8326 | T: git git://linuxtv.org/media_tree.git | |
8327 | W: http://linuxtv.org | |
8328 | S: Odd Fixes | |
99995ded | 8329 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
8330 | |
8331 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
8332 | M: Eduardo Valentin <edubezval@gmail.com> | |
8333 | L: linux-media@vger.kernel.org | |
8334 | T: git git://linuxtv.org/media_tree.git | |
8335 | W: http://linuxtv.org | |
8336 | S: Odd Fixes | |
99995ded DR |
8337 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
8338 | ||
8339 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
8340 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8341 | L: linux-media@vger.kernel.org | |
8342 | T: git git://linuxtv.org/media_tree.git | |
8343 | W: http://linuxtv.org | |
8344 | S: Maintained | |
8345 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 8346 | |
beb91d46 | 8347 | SIANO DVB DRIVER |
1b2c14b4 | 8348 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
beb91d46 MCC |
8349 | L: linux-media@vger.kernel.org |
8350 | W: http://linuxtv.org | |
8351 | T: git git://linuxtv.org/media_tree.git | |
8352 | S: Odd fixes | |
8353 | F: drivers/media/common/siano/ | |
beb91d46 | 8354 | F: drivers/media/usb/siano/ |
beb91d46 | 8355 | F: drivers/media/usb/siano/ |
14430813 | 8356 | F: drivers/media/mmc/siano/ |
beb91d46 | 8357 | |
b618b69c | 8358 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 8359 | L: linux-media@vger.kernel.org |
bb60fcb2 | 8360 | S: Orphan |
b618b69c | 8361 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
8362 | |
8363 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 8364 | L: linux-media@vger.kernel.org |
bb60fcb2 | 8365 | S: Orphan |
b618b69c GL |
8366 | F: drivers/media/platform/sh_vou.c |
8367 | F: include/media/sh_vou.h | |
8368 | ||
6349d997 | 8369 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 8370 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
8371 | L: sfi-devel@simplefirmware.org |
8372 | W: http://simplefirmware.org/ | |
8373 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 8374 | S: Supported |
943fc810 | 8375 | F: arch/x86/platform/sfi/ |
6349d997 LB |
8376 | F: drivers/sfi/ |
8377 | F: include/linux/sfi*.h | |
e2d1d6c0 | 8378 | |
1da177e4 LT |
8379 | SIMTEC EB110ATX (Chalice CATS) |
8380 | P: Ben Dooks | |
b16957c6 BD |
8381 | P: Vincent Sanders <vince@simtec.co.uk> |
8382 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
8383 | W: http://www.simtec.co.uk/products/EB110ATX/ |
8384 | S: Supported | |
8385 | ||
8386 | SIMTEC EB2410ITX (BAST) | |
8387 | P: Ben Dooks | |
b16957c6 BD |
8388 | P: Vincent Sanders <vince@simtec.co.uk> |
8389 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
8390 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
8391 | S: Supported | |
15dba387 JP |
8392 | F: arch/arm/mach-s3c24xx/mach-bast.c |
8393 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
8394 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 8395 | |
4c5adde7 | 8396 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 8397 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 8398 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f296ed78 | 8399 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) |
c9f46a85 | 8400 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 8401 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 8402 | S: Supported |
14430813 | 8403 | F: arch/arm/mach-davinci/ |
046d0a37 | 8404 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 8405 | |
8d4b3f08 | 8406 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 8407 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
8d4b3f08 LP |
8408 | L: linux-media@vger.kernel.org |
8409 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) | |
8410 | W: http://linuxtv.org/ | |
8411 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8412 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 8413 | S: Maintained |
8d4b3f08 LP |
8414 | F: drivers/media/platform/davinci/ |
8415 | F: include/media/davinci/ | |
8416 | ||
92aab3c0 | 8417 | SIS 190 ETHERNET DRIVER |
8b58be88 | 8418 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
8419 | L: netdev@vger.kernel.org |
8420 | S: Maintained | |
8c7de408 | 8421 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 8422 | |
1da177e4 | 8423 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 8424 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 8425 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 8426 | L: netdev@vger.kernel.org |
1da177e4 | 8427 | S: Maintained |
8c7de408 | 8428 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
8429 | |
8430 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 8431 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 8432 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 8433 | S: Maintained |
679655da | 8434 | F: Documentation/fb/sisfb.txt |
8a61f013 | 8435 | F: drivers/video/fbdev/sis/ |
679655da | 8436 | F: include/video/sisfb.h |
1da177e4 LT |
8437 | |
8438 | SIS USB2VGA DRIVER | |
8b58be88 | 8439 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
8440 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
8441 | S: Maintained | |
679655da | 8442 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 8443 | |
415ad26d | 8444 | SLAB ALLOCATOR |
16e943bf | 8445 | M: Christoph Lameter <cl@linux.com> |
2ed1c525 | 8446 | M: Pekka Enberg <penberg@kernel.org> |
16e943bf CL |
8447 | M: David Rientjes <rientjes@google.com> |
8448 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> | |
8449 | M: Andrew Morton <akpm@linux-foundation.org> | |
415ad26d CL |
8450 | L: linux-mm@kvack.org |
8451 | S: Maintained | |
679655da | 8452 | F: include/linux/sl?b*.h |
16e943bf | 8453 | F: mm/sl?b* |
415ad26d | 8454 | |
9fab9787 PM |
8455 | SLEEPABLE READ-COPY UPDATE (SRCU) |
8456 | M: Lai Jiangshan <laijs@cn.fujitsu.com> | |
8457 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
ab0afd6c | 8458 | M: Josh Triplett <josh@joshtriplett.org> |
4632a191 PM |
8459 | R: Steven Rostedt <rostedt@goodmis.org> |
8460 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | |
981c3a4f | 8461 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
8462 | W: http://www.rdrop.com/users/paulmck/RCU/ |
8463 | S: Supported | |
8464 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
8465 | F: include/linux/srcu.h |
8466 | F: kernel/rcu/srcu.c | |
9fab9787 | 8467 | |
66372841 CS |
8468 | SMACK SECURITY MODULE |
8469 | M: Casey Schaufler <casey@schaufler-ca.com> | |
8470 | L: linux-security-module@vger.kernel.org | |
8471 | W: http://schaufler-ca.com | |
8472 | T: git git://git.gitorious.org/smack-next/kernel.git | |
8473 | S: Maintained | |
8474 | F: Documentation/security/Smack.txt | |
8475 | F: security/smack/ | |
8476 | ||
68ace3e1 KH |
8477 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
8478 | M: Kevin Hilman <khilman@kernel.org> | |
8479 | M: Nishanth Menon <nm@ti.com> | |
8480 | S: Maintained | |
8481 | F: drivers/power/avs/smartreflex.c | |
8482 | F: include/linux/power/smartreflex.h | |
8483 | L: linux-pm@vger.kernel.org | |
8484 | ||
1da177e4 | 8485 | SMC91x ETHERNET DRIVER |
2f82af08 | 8486 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 8487 | S: Odd Fixes |
ae150435 | 8488 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 8489 | |
e8e31622 SA |
8490 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
8491 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
8492 | L: linux-media@vger.kernel.org | |
8493 | S: Maintained | |
14430813 | 8494 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
8495 | F: include/media/smiapp.h |
8496 | F: drivers/media/i2c/smiapp-pll.c | |
8497 | F: drivers/media/i2c/smiapp-pll.h | |
8498 | ||
920fa1ff GR |
8499 | SMM665 HARDWARE MONITOR DRIVER |
8500 | M: Guenter Roeck <linux@roeck-us.net> | |
8501 | L: lm-sensors@lm-sensors.org | |
8502 | S: Maintained | |
8503 | F: Documentation/hwmon/smm665 | |
8504 | F: drivers/hwmon/smm665.c | |
8505 | ||
9df7305b | 8506 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 8507 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 8508 | L: lm-sensors@lm-sensors.org |
90b24cfb | 8509 | S: Maintained |
9df7305b SG |
8510 | F: Documentation/hwmon/emc2103 |
8511 | F: drivers/hwmon/emc2103.c | |
8512 | ||
a98d506c HG |
8513 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
8514 | M: Hans de Goede <hdegoede@redhat.com> | |
8515 | L: lm-sensors@lm-sensors.org | |
8516 | S: Supported | |
8517 | F: Documentation/hwmon/sch5627 | |
8518 | F: drivers/hwmon/sch5627.c | |
8519 | ||
6ea884db | 8520 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 8521 | M: Jean Delvare <jdelvare@suse.de> |
6ea884db MH |
8522 | L: lm-sensors@lm-sensors.org |
8523 | S: Maintained | |
679655da JP |
8524 | F: Documentation/hwmon/smsc47b397 |
8525 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 8526 | |
fd9abb3d | 8527 | SMSC911x ETHERNET DRIVER |
90b24cfb | 8528 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 8529 | L: netdev@vger.kernel.org |
90b24cfb | 8530 | S: Maintained |
679655da | 8531 | F: include/linux/smsc911x.h |
ae150435 | 8532 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
8533 | |
8534 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 8535 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 8536 | L: netdev@vger.kernel.org |
90b24cfb | 8537 | S: Maintained |
ae150435 | 8538 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 8539 | |
3c8a63e2 | 8540 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 8541 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 8542 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 8543 | S: Maintained |
8a61f013 | 8544 | F: drivers/video/fbdev/smscufx.c |
3c8a63e2 | 8545 | |
668acf32 | 8546 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 8547 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 8548 | L: linux-media@vger.kernel.org |
275ffde4 | 8549 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 8550 | S: Maintained |
90d72ac6 MCC |
8551 | F: include/media/soc* |
8552 | F: drivers/media/i2c/soc_camera/ | |
8553 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 8554 | |
e2d1d6c0 | 8555 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 8556 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 8557 | S: Maintained |
679655da | 8558 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 8559 | |
e3994db1 JP |
8560 | SOFTLOGIC 6x10 MPEG CODEC |
8561 | M: Ismael Luceno <ismael.luceno@corp.bluecherry.net> | |
8562 | L: linux-media@vger.kernel.org | |
8563 | S: Supported | |
8564 | F: drivers/media/pci/solo6x10/ | |
8565 | ||
1da177e4 | 8566 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 8567 | M: Neil Brown <neilb@suse.de> |
1da177e4 | 8568 | L: linux-raid@vger.kernel.org |
524418bb | 8569 | S: Supported |
679655da JP |
8570 | F: drivers/md/ |
8571 | F: include/linux/raid/ | |
c117ab84 | 8572 | F: include/uapi/linux/raid/ |
1da177e4 | 8573 | |
1da177e4 | 8574 | SONIC NETWORK DRIVER |
8b58be88 | 8575 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 8576 | L: netdev@vger.kernel.org |
1da177e4 | 8577 | S: Maintained |
d9fb9f38 | 8578 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 8579 | |
61e115a5 | 8580 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 8581 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
8582 | L: netdev@vger.kernel.org |
8583 | S: Maintained | |
679655da JP |
8584 | F: drivers/ssb/ |
8585 | F: include/linux/ssb/ | |
61e115a5 | 8586 | |
1da177e4 | 8587 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 8588 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 8589 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 8590 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 8591 | S: Maintained |
679655da JP |
8592 | F: Documentation/laptops/sony-laptop.txt |
8593 | F: drivers/char/sonypi.c | |
8594 | F: drivers/platform/x86/sony-laptop.c | |
8595 | F: include/linux/sony-laptop.h | |
1da177e4 | 8596 | |
baf8532a | 8597 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 8598 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
8599 | W: http://tifmxx.berlios.de/ |
8600 | S: Maintained | |
679655da | 8601 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 8602 | |
0ab30494 ML |
8603 | SONY MEMORYSTICK STANDARD SUPPORT |
8604 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8605 | S: Maintained | |
8606 | F: drivers/memstick/core/ms_block.* | |
8607 | ||
1da177e4 | 8608 | SOUND |
8b58be88 JP |
8609 | M: Jaroslav Kysela <perex@perex.cz> |
8610 | M: Takashi Iwai <tiwai@suse.de> | |
93711660 | 8611 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 8612 | W: http://www.alsa-project.org/ |
dde7ad8d | 8613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 8614 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 8615 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 8616 | S: Maintained |
3126a179 JP |
8617 | F: Documentation/sound/ |
8618 | F: include/sound/ | |
c117ab84 | 8619 | F: include/uapi/sound/ |
679655da | 8620 | F: sound/ |
1da177e4 | 8621 | |
33bbe149 MB |
8622 | SOUND - COMPRESSED AUDIO |
8623 | M: Vinod Koul <vinod.koul@intel.com> | |
8624 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8625 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
8626 | S: Supported | |
f672f31a | 8627 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 8628 | F: include/sound/compress_driver.h |
f672f31a | 8629 | F: include/uapi/sound/compress_* |
33bbe149 MB |
8630 | F: sound/core/compress_offload.c |
8631 | F: sound/soc/soc-compress.c | |
8632 | ||
bd903bde | 8633 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 8634 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 8635 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 8636 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 8637 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 8638 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 8639 | S: Supported |
2820f615 | 8640 | F: Documentation/sound/alsa/soc/ |
679655da | 8641 | F: sound/soc/ |
e6e55122 | 8642 | F: include/sound/soc* |
eb1a6af3 | 8643 | |
d7f8761b MB |
8644 | SOUND - DMAENGINE HELPERS |
8645 | M: Lars-Peter Clausen <lars@metafoo.de> | |
8646 | S: Supported | |
8647 | F: include/sound/dmaengine_pcm.h | |
8648 | F: sound/core/pcm_dmaengine.c | |
8649 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
8650 | ||
473321fc | 8651 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 8652 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 8653 | L: sparclinux@vger.kernel.org |
8a6e2535 | 8654 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
8655 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 8657 | S: Maintained |
679655da | 8658 | F: arch/sparc/ |
7765b8bb | 8659 | F: drivers/sbus/ |
1da177e4 | 8660 | |
6404fcca DM |
8661 | SPARC SERIAL DRIVERS |
8662 | M: "David S. Miller" <davem@davemloft.net> | |
8663 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
8664 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 8666 | S: Maintained |
6816383a | 8667 | F: include/linux/sunserialcore.h |
df621252 | 8668 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
8669 | F: drivers/tty/serial/sunhv.c |
8670 | F: drivers/tty/serial/sunsab.c | |
8671 | F: drivers/tty/serial/sunsab.h | |
8672 | F: drivers/tty/serial/sunsu.c | |
8673 | F: drivers/tty/serial/sunzilog.c | |
8674 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 8675 | |
389325b4 CL |
8676 | SPARSE CHECKER |
8677 | M: "Christopher Li" <sparse@chrisli.org> | |
8678 | L: linux-sparse@vger.kernel.org | |
8679 | W: https://sparse.wiki.kernel.org/ | |
8680 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
8681 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
8682 | S: Maintained | |
8683 | F: include/linux/compiler.h | |
8684 | ||
fc0c195a | 8685 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 8686 | M: Viresh Kumar <viresh.linux@gmail.com> |
9cc23682 | 8687 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 VK |
8688 | L: spear-devel@list.st.com |
8689 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
8690 | W: http://www.st.com/spear |
8691 | S: Maintained | |
281e192f | 8692 | F: arch/arm/mach-spear/ |
fc0c195a VK |
8693 | |
8694 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 8695 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 VK |
8696 | L: spear-devel@list.st.com |
8697 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a VK |
8698 | W: http://www.st.com/spear |
8699 | S: Maintained | |
5df33a62 | 8700 | F: drivers/clk/spear/ |
fc0c195a | 8701 | |
e2d1d6c0 | 8702 | SPI SUBSYSTEM |
b02e48f2 | 8703 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 8704 | L: linux-spi@vger.kernel.org |
e7e4e13c | 8705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 8706 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 8707 | S: Maintained |
679655da JP |
8708 | F: Documentation/spi/ |
8709 | F: drivers/spi/ | |
8710 | F: include/linux/spi/ | |
c117ab84 | 8711 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 8712 | |
2752e401 | 8713 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8714 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
8715 | M: Jens Osterkamp <jens@de.ibm.com> | |
2752e401 JL |
8716 | L: netdev@vger.kernel.org |
8717 | S: Supported | |
679655da | 8718 | F: Documentation/networking/spider_net.txt |
8df158ac | 8719 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8720 | |
e2d1d6c0 | 8721 | SPU FILE SYSTEM |
8b58be88 | 8722 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 SR |
8723 | L: linuxppc-dev@lists.ozlabs.org |
8724 | L: cbe-oss-dev@lists.ozlabs.org | |
e2d1d6c0 RD |
8725 | W: http://www.ibm.com/developerworks/power/cell/ |
8726 | S: Supported | |
679655da JP |
8727 | F: Documentation/filesystems/spufs.txt |
8728 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8729 | |
fc555841 | 8730 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8731 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
8732 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
8733 | W: http://squashfs.org.uk | |
8734 | S: Maintained | |
679655da JP |
8735 | F: Documentation/filesystems/squashfs.txt |
8736 | F: fs/squashfs/ | |
fc555841 | 8737 | |
1da177e4 | 8738 | SRM (Alpha) environment access |
8b58be88 | 8739 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 8740 | S: Maintained |
679655da | 8741 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8742 | |
26e9a397 | 8743 | STABLE BRANCH |
879a5a00 | 8744 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 8745 | L: stable@vger.kernel.org |
879a5a00 | 8746 | S: Supported |
7b175c46 | 8747 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8748 | |
26e9a397 | 8749 | STAGING SUBSYSTEM |
879a5a00 | 8750 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 8751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8752 | L: devel@driverdev.osuosl.org |
879a5a00 | 8753 | S: Supported |
679655da | 8754 | F: drivers/staging/ |
dbc6c2cc | 8755 | |
ebd3d010 JP |
8756 | STAGING - COMEDI |
8757 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 8758 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
8759 | S: Odd Fixes |
8760 | F: drivers/staging/comedi/ | |
8761 | ||
a0138163 JP |
8762 | STAGING - FLARION FT1000 DRIVERS |
8763 | M: Marek Belisko <marek.belisko@gmail.com> | |
8764 | S: Odd Fixes | |
8765 | F: drivers/staging/ft1000/ | |
8766 | ||
6c1bb424 | 8767 | STAGING - INDUSTRIAL IO |
030a13d7 | 8768 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 8769 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
8770 | S: Odd Fixes |
8771 | F: drivers/staging/iio/ | |
8772 | ||
a0138163 JP |
8773 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8774 | M: Jarod Wilson <jarod@wilsonet.com> | |
8775 | W: http://www.lirc.org/ | |
8776 | S: Odd Fixes | |
b2b0186d | 8777 | F: drivers/staging/media/lirc/ |
a0138163 | 8778 | |
f5e5de1e OD |
8779 | STAGING - LUSTRE PARALLEL FILESYSTEM |
8780 | M: Oleg Drokin <oleg.drokin@intel.com> | |
8781 | M: Andreas Dilger <andreas.dilger@intel.com> | |
8782 | L: HPDD-discuss@lists.01.org (moderated for non-subscribers) | |
8783 | W: http://lustre.opensfs.org/ | |
8784 | S: Maintained | |
8785 | F: drivers/staging/lustre | |
8786 | ||
7c6b6c71 | 8787 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8788 | M: Julian Andres Klode <jak@jak-linux.org> |
7c6b6c71 MD |
8789 | M: Marc Dietrich <marvin24@gmx.de> |
8790 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 8791 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
8792 | S: Maintained |
8793 | F: drivers/staging/nvec/ | |
8794 | ||
a0138163 | 8795 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8796 | M: Jens Frederich <jfrederich@gmail.com> |
8797 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
8798 | M: Jon Nettleton <jon.nettleton@gmail.com> |
8799 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8800 | S: Maintained |
a0138163 JP |
8801 | F: drivers/staging/olpc_dcon/ |
8802 | ||
94cfdd15 | 8803 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
96747a8f | 8804 | M: Shigekatsu Tateno <shigekatsu.tateno@atmel.com> |
94cfdd15 CK |
8805 | S: Maintained |
8806 | F: drivers/staging/ozwpan/ | |
8807 | ||
a0138163 | 8808 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8809 | M: Willy Tarreau <willy@meta-x.org> |
8810 | S: Odd Fixes | |
8811 | F: drivers/staging/panel/ | |
8812 | ||
a0138163 JP |
8813 | STAGING - REALTEK RTL8712U DRIVERS |
8814 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8815 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
8816 | S: Odd Fixes | |
8817 | F: drivers/staging/rtl8712/ | |
8818 | ||
7591ba8b JS |
8819 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
8820 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8821 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
8822 | L: linux-wireless@vger.kernel.org | |
8823 | S: Maintained | |
8824 | F: drivers/staging/rtl8723au/ | |
8825 | ||
510fa408 JP |
8826 | STAGING - SLICOSS |
8827 | M: Lior Dotan <liodot@gmail.com> | |
8828 | M: Christopher Harrer <charrer@alacritech.com> | |
8829 | S: Odd Fixes | |
8830 | F: drivers/staging/slicoss/ | |
8831 | ||
a0138163 JP |
8832 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
8833 | M: William Hubbs <w.d.hubbs@gmail.com> | |
8834 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 8835 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 | 8836 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
e6a152ef | 8837 | L: speakup@linux-speakup.org |
a0138163 JP |
8838 | W: http://www.linux-speakup.org/ |
8839 | S: Odd Fixes | |
8840 | F: drivers/staging/speakup/ | |
8841 | ||
b3e871ce JP |
8842 | STAGING - VIA VT665X DRIVERS |
8843 | M: Forest Bond <forest@alittletooquiet.net> | |
8844 | S: Odd Fixes | |
8845 | F: drivers/staging/vt665?/ | |
8846 | ||
709bcb07 | 8847 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8848 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
8849 | S: Odd Fixes |
8850 | F: drivers/staging/xgifb/ | |
8851 | ||
1da177e4 | 8852 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8853 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 8854 | S: Odd Fixes |
9bba23b0 | 8855 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8856 | |
e2d1d6c0 | 8857 | SUN3/3X |
8b58be88 | 8858 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
8859 | W: http://sammy.net/sun3/ |
8860 | S: Maintained | |
679655da JP |
8861 | F: arch/m68k/kernel/*sun3* |
8862 | F: arch/m68k/sun3*/ | |
8863 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8864 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8865 | |
2bc9ff01 DK |
8866 | SUNDANCE NETWORK DRIVER |
8867 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
8868 | L: netdev@vger.kernel.org | |
8869 | S: Maintained | |
8870 | F: drivers/net/ethernet/dlink/sundance.c | |
8871 | ||
2cbb12a4 | 8872 | SUPERH |
2cbb12a4 | 8873 | L: linux-sh@vger.kernel.org |
1da177e4 | 8874 | W: http://www.linux-sh.org |
8a6e2535 | 8875 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 8876 | S: Orphan |
066069e1 | 8877 | F: Documentation/sh/ |
679655da | 8878 | F: arch/sh/ |
066069e1 | 8879 | F: drivers/sh/ |
1da177e4 | 8880 | |
4480f15b | 8881 | SUSPEND TO RAM |
7fb06082 | 8882 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
8883 | M: Len Brown <len.brown@intel.com> |
8884 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 8885 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 8886 | S: Supported |
679655da JP |
8887 | F: Documentation/power/ |
8888 | F: arch/x86/kernel/acpi/ | |
8889 | F: drivers/base/power/ | |
8890 | F: kernel/power/ | |
8891 | F: include/linux/suspend.h | |
8892 | F: include/linux/freezer.h | |
8893 | F: include/linux/pm.h | |
1da177e4 LT |
8894 | |
8895 | SVGA HANDLING | |
8b58be88 | 8896 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
8897 | L: linux-video@atrey.karlin.mff.cuni.cz |
8898 | S: Maintained | |
679655da JP |
8899 | F: Documentation/svga.txt |
8900 | F: arch/x86/boot/video* | |
1da177e4 | 8901 | |
6e28b761 KRW |
8902 | SWIOTLB SUBSYSTEM |
8903 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
8904 | L: linux-kernel@vger.kernel.org | |
8905 | S: Supported | |
8906 | F: lib/swiotlb.c | |
8907 | F: arch/*/kernel/pci-swiotlb.c | |
8908 | F: include/linux/swiotlb.h | |
8909 | ||
db8e35d5 VG |
8910 | SYNOPSYS ARC ARCHITECTURE |
8911 | M: Vineet Gupta <vgupta@synopsys.com> | |
db8e35d5 VG |
8912 | S: Supported |
8913 | F: arch/arc/ | |
6659a20a | 8914 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8915 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8916 | |
1da177e4 | 8917 | SYSV FILESYSTEM |
8b58be88 | 8918 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 8919 | S: Maintained |
679655da JP |
8920 | F: Documentation/filesystems/sysv-fs.txt |
8921 | F: fs/sysv/ | |
8922 | F: include/linux/sysv_fs.h | |
1da177e4 | 8923 | |
86cfa7fc NB |
8924 | TARGET SUBSYSTEM |
8925 | M: Nicholas A. Bellinger <nab@linux-iscsi.org> | |
8926 | L: linux-scsi@vger.kernel.org | |
b9f5edc2 | 8927 | L: target-devel@vger.kernel.org |
86cfa7fc | 8928 | W: http://www.linux-iscsi.org |
cf015e9f | 8929 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 8930 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8931 | S: Supported |
8932 | F: drivers/target/ | |
8933 | F: include/target/ | |
8934 | F: Documentation/target/ | |
8935 | ||
4e68852d | 8936 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8937 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 8938 | S: Maintained |
679655da JP |
8939 | F: Documentation/accounting/taskstats* |
8940 | F: include/linux/taskstats* | |
8941 | F: kernel/taskstats.c | |
4e68852d | 8942 | |
781b456a | 8943 | TC CLASSIFIER |
f935f3f8 | 8944 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
8945 | L: netdev@vger.kernel.org |
8946 | S: Maintained | |
679655da | 8947 | F: include/net/pkt_cls.h |
c117ab84 | 8948 | F: include/uapi/linux/pkt_cls.h |
679655da | 8949 | F: net/sched/ |
781b456a | 8950 | |
5067f08a | 8951 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8952 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
8953 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
8954 | W: http://tcp-lp-mod.sourceforge.net/ |
8955 | S: Maintained | |
679655da | 8956 | F: net/ipv4/tcp_lp.c |
5067f08a | 8957 | |
91952bc0 AP |
8958 | TDA10071 MEDIA DRIVER |
8959 | M: Antti Palosaari <crope@iki.fi> | |
8960 | L: linux-media@vger.kernel.org | |
8961 | W: http://linuxtv.org/ | |
8962 | W: http://palosaari.fi/linux/ | |
8963 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8964 | T: git git://linuxtv.org/anttip/media_tree.git | |
8965 | S: Maintained | |
8966 | F: drivers/media/dvb-frontends/tda10071* | |
8967 | ||
8968 | TDA18212 MEDIA DRIVER | |
8969 | M: Antti Palosaari <crope@iki.fi> | |
8970 | L: linux-media@vger.kernel.org | |
8971 | W: http://linuxtv.org/ | |
8972 | W: http://palosaari.fi/linux/ | |
8973 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8974 | T: git git://linuxtv.org/anttip/media_tree.git | |
8975 | S: Maintained | |
8976 | F: drivers/media/tuners/tda18212* | |
8977 | ||
8978 | TDA18218 MEDIA DRIVER | |
8979 | M: Antti Palosaari <crope@iki.fi> | |
8980 | L: linux-media@vger.kernel.org | |
8981 | W: http://linuxtv.org/ | |
8982 | W: http://palosaari.fi/linux/ | |
8983 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8984 | T: git git://linuxtv.org/anttip/media_tree.git | |
8985 | S: Maintained | |
8986 | F: drivers/media/tuners/tda18218* | |
8987 | ||
3b2f6aba MK |
8988 | TDA18271 MEDIA DRIVER |
8989 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8990 | L: linux-media@vger.kernel.org | |
8991 | W: http://linuxtv.org/ | |
8992 | W: http://github.com/mkrufky | |
8993 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8994 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8995 | S: Maintained | |
8996 | F: drivers/media/tuners/tda18271* | |
8997 | ||
e48307a9 MK |
8998 | TDA827x MEDIA DRIVER |
8999 | M: Michael Krufky <mkrufky@linuxtv.org> | |
9000 | L: linux-media@vger.kernel.org | |
9001 | W: http://linuxtv.org/ | |
9002 | W: http://github.com/mkrufky | |
9003 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9004 | T: git git://linuxtv.org/mkrufky/tuners.git | |
9005 | S: Maintained | |
9006 | F: drivers/media/tuners/tda8290.* | |
9007 | ||
66cf9212 MK |
9008 | TDA8290 MEDIA DRIVER |
9009 | M: Michael Krufky <mkrufky@linuxtv.org> | |
9010 | L: linux-media@vger.kernel.org | |
9011 | W: http://linuxtv.org/ | |
9012 | W: http://github.com/mkrufky | |
9013 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9014 | T: git git://linuxtv.org/mkrufky/tuners.git | |
9015 | S: Maintained | |
9016 | F: drivers/media/tuners/tda8290.* | |
9017 | ||
4b9fba30 HV |
9018 | TDA9840 MEDIA DRIVER |
9019 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9020 | L: linux-media@vger.kernel.org | |
9021 | T: git git://linuxtv.org/media_tree.git | |
9022 | W: http://linuxtv.org | |
9023 | S: Maintained | |
9024 | F: drivers/media/i2c/tda9840* | |
9025 | ||
2cb654fd | 9026 | TEA5761 TUNER DRIVER |
1b2c14b4 | 9027 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
9028 | L: linux-media@vger.kernel.org |
9029 | W: http://linuxtv.org | |
9030 | T: git git://linuxtv.org/media_tree.git | |
9031 | S: Odd fixes | |
9032 | F: drivers/media/tuners/tea5761.* | |
9033 | ||
9034 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 9035 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
9036 | L: linux-media@vger.kernel.org |
9037 | W: http://linuxtv.org | |
9038 | T: git git://linuxtv.org/media_tree.git | |
9039 | S: Maintained | |
9040 | F: drivers/media/tuners/tea5767.* | |
9041 | ||
4b9fba30 HV |
9042 | TEA6415C MEDIA DRIVER |
9043 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9044 | L: linux-media@vger.kernel.org | |
9045 | T: git git://linuxtv.org/media_tree.git | |
9046 | W: http://linuxtv.org | |
9047 | S: Maintained | |
9048 | F: drivers/media/i2c/tea6415c* | |
9049 | ||
9050 | TEA6420 MEDIA DRIVER | |
9051 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9052 | L: linux-media@vger.kernel.org | |
9053 | T: git git://linuxtv.org/media_tree.git | |
9054 | W: http://linuxtv.org | |
9055 | S: Maintained | |
9056 | F: drivers/media/i2c/tea6420* | |
9057 | ||
3d249d4c | 9058 | TEAM DRIVER |
dca9ab92 | 9059 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
9060 | L: netdev@vger.kernel.org |
9061 | S: Supported | |
9062 | F: drivers/net/team/ | |
9063 | F: include/linux/if_team.h | |
c117ab84 | 9064 | F: include/uapi/linux/if_team.h |
3d249d4c | 9065 | |
7d029125 VD |
9066 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
9067 | M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com> | |
9068 | S: Maintained | |
9069 | F: arch/x86/platform/ts5500/ | |
9070 | ||
40ad4a30 SY |
9071 | TECHNOTREND USB IR RECEIVER |
9072 | M: Sean Young <sean@mess.org> | |
9073 | L: linux-media@vger.kernel.org | |
9074 | S: Maintained | |
9075 | F: drivers/media/rc/ttusbir.c | |
9076 | ||
adabdb0c | 9077 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 9078 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 9079 | M: Thierry Reding <thierry.reding@gmail.com> |
554077c5 | 9080 | M: Alexandre Courbot <gnurou@gmail.com> |
84b9414b | 9081 | L: linux-tegra@vger.kernel.org |
fd117cd1 | 9082 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
b779b88d | 9083 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
84b9414b | 9084 | S: Supported |
bbbe96ed | 9085 | N: [^a-z]tegra |
84b9414b | 9086 | |
adabdb0c SW |
9087 | TEGRA CLOCK DRIVER |
9088 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
9089 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
9090 | S: Supported | |
9091 | F: drivers/clk/tegra/ | |
9092 | ||
9093 | TEGRA DMA DRIVER | |
9094 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9095 | S: Supported | |
9096 | F: drivers/dma/tegra20-apb-dma.c | |
9097 | ||
adabdb0c SW |
9098 | TEGRA I2C DRIVER |
9099 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9100 | S: Supported | |
9101 | F: drivers/i2c/busses/i2c-tegra.c | |
9102 | ||
9103 | TEGRA IOMMU DRIVERS | |
9104 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
9105 | S: Supported | |
9106 | F: drivers/iommu/tegra* | |
9107 | ||
9108 | TEGRA KBC DRIVER | |
9109 | M: Rakesh Iyer <riyer@nvidia.com> | |
9110 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9111 | S: Supported | |
9112 | F: drivers/input/keyboard/tegra-kbc.c | |
9113 | ||
adabdb0c SW |
9114 | TEGRA PWM DRIVER |
9115 | M: Thierry Reding <thierry.reding@gmail.com> | |
9116 | S: Supported | |
9117 | F: drivers/pwm/pwm-tegra.c | |
9118 | ||
9119 | TEGRA SERIAL DRIVER | |
9120 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9121 | S: Supported | |
9122 | F: drivers/tty/serial/serial-tegra.c | |
9123 | ||
9124 | TEGRA SPI DRIVER | |
9125 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
9126 | S: Supported | |
9127 | F: drivers/spi/spi-tegra* | |
9128 | ||
1a348ccc | 9129 | TEHUTI ETHERNET DRIVER |
8b58be88 | 9130 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
9131 | L: netdev@vger.kernel.org |
9132 | S: Supported | |
ef7f5429 | 9133 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 9134 | |
4e68852d | 9135 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 9136 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 9137 | S: Supported |
679655da | 9138 | F: drivers/char/tlclk.c |
4e68852d | 9139 | |
4480f15b | 9140 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 9141 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
9142 | M: Max Filippov <jcmvbkbc@gmail.com> |
9143 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 9144 | S: Maintained |
679655da | 9145 | F: arch/xtensa/ |
3dc99857 | 9146 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 9147 | |
5313ba66 HV |
9148 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
9149 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9150 | L: linux-media@vger.kernel.org | |
9151 | T: git git://linuxtv.org/media_tree.git | |
9152 | W: http://linuxtv.org | |
9153 | S: Maintained | |
9154 | F: drivers/media/radio/radio-raremono.c | |
9155 | ||
d3fb6955 | 9156 | THERMAL |
b75f0050 | 9157 | M: Zhang Rui <rui.zhang@intel.com> |
f14d1c24 | 9158 | M: Eduardo Valentin <edubezval@gmail.com> |
b75f0050 JP |
9159 | L: linux-pm@vger.kernel.org |
9160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
9161 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
9162 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
9163 | S: Supported | |
9164 | F: drivers/thermal/ | |
9165 | F: include/linux/thermal.h | |
9166 | F: include/linux/cpu_cooling.h | |
9167 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 9168 | |
30ba2fbd VD |
9169 | THINGM BLINK(1) USB RGB LED DRIVER |
9170 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
9171 | S: Maintained | |
9172 | F: drivers/hid/hid-thingm.c | |
9173 | ||
4e68852d | 9174 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 9175 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 9176 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 9177 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
9178 | W: http://ibm-acpi.sourceforge.net |
9179 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 9180 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 9181 | S: Maintained |
679655da | 9182 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 9183 | |
1b46f2a2 | 9184 | TI BANDGAP AND THERMAL DRIVER |
f14d1c24 | 9185 | M: Eduardo Valentin <edubezval@gmail.com> |
1b46f2a2 | 9186 | L: linux-pm@vger.kernel.org |
794b2e25 EV |
9187 | S: Supported |
9188 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 9189 | |
49b6a5e3 TK |
9190 | TI CLOCK DRIVER |
9191 | M: Tero Kristo <t-kristo@ti.com> | |
9192 | L: linux-omap@vger.kernel.org | |
9193 | S: Maintained | |
9194 | F: drivers/clk/ti/ | |
9195 | F: include/linux/clk/ti.h | |
9196 | ||
4020f2d7 | 9197 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 9198 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 9199 | S: Maintained |
679655da JP |
9200 | F: drivers/misc/tifm* |
9201 | F: drivers/mmc/host/tifm_sd.c | |
9202 | F: include/linux/tifm.h | |
4020f2d7 | 9203 | |
e0c52404 SS |
9204 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
9205 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
9206 | L: linux-kernel@vger.kernel.org | |
9207 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
9208 | S: Maintained | |
9209 | F: drivers/soc/ti/* | |
9210 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git | |
9211 | ||
9212 | ||
152ad442 SR |
9213 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
9214 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 9215 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
9216 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
9217 | S: Maintained | |
9218 | F: sound/soc/codecs/lm49453* | |
d392dead | 9219 | F: sound/soc/codecs/isabelle* |
152ad442 | 9220 | |
0edd807d KM |
9221 | TI LP855x BACKLIGHT DRIVER |
9222 | M: Milo Kim <milo.kim@ti.com> | |
9223 | S: Maintained | |
9224 | F: Documentation/backlight/lp855x-driver.txt | |
9225 | F: drivers/video/backlight/lp855x_bl.c | |
9226 | F: include/linux/platform_data/lp855x.h | |
9227 | ||
faf13f6d KM |
9228 | TI LP8727 CHARGER DRIVER |
9229 | M: Milo Kim <milo.kim@ti.com> | |
9230 | S: Maintained | |
9231 | F: drivers/power/lp8727_charger.c | |
9232 | F: include/linux/platform_data/lp8727.h | |
9233 | ||
22f1229f KM |
9234 | TI LP8788 MFD DRIVER |
9235 | M: Milo Kim <milo.kim@ti.com> | |
9236 | S: Maintained | |
9237 | F: drivers/iio/adc/lp8788_adc.c | |
9238 | F: drivers/leds/leds-lp8788.c | |
9239 | F: drivers/mfd/lp8788*.c | |
9240 | F: drivers/power/lp8788-charger.c | |
9241 | F: drivers/regulator/lp8788-*.c | |
9242 | F: include/linux/mfd/lp8788*.h | |
9243 | ||
dd5e8e6b | 9244 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 9245 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
9246 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
9247 | S: Maintained | |
9248 | F: sound/soc/codecs/twl4030* | |
9249 | ||
90921014 | 9250 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
9251 | L: linux-wireless@vger.kernel.org |
9252 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
9253 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
9254 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 9255 | S: Orphan |
90921014 LC |
9256 | F: drivers/net/wireless/ti/ |
9257 | F: include/linux/wl12xx.h | |
9258 | ||
e86eaa3a | 9259 | TIPC NETWORK LAYER |
8b58be88 JP |
9260 | M: Jon Maloy <jon.maloy@ericsson.com> |
9261 | M: Allan Stephens <allan.stephens@windriver.com> | |
633d2bde AS |
9262 | L: netdev@vger.kernel.org (core kernel code) |
9263 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 9264 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 9265 | S: Maintained |
c117ab84 | 9266 | F: include/uapi/linux/tipc*.h |
679655da | 9267 | F: net/tipc/ |
e86eaa3a | 9268 | |
867e359b CM |
9269 | TILE ARCHITECTURE |
9270 | M: Chris Metcalf <cmetcalf@tilera.com> | |
9271 | W: http://www.tilera.com/scm/ | |
9272 | S: Supported | |
9273 | F: arch/tile/ | |
6b940606 | 9274 | F: drivers/char/tile-srom.c |
5c770755 | 9275 | F: drivers/edac/tile_edac.c |
6b940606 CM |
9276 | F: drivers/net/ethernet/tile/ |
9277 | F: drivers/rtc/rtc-tile.c | |
9278 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 9279 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
9280 | F: drivers/usb/host/*-tilegx.c |
9281 | F: include/linux/usb/tilegx.h | |
867e359b | 9282 | |
1da177e4 | 9283 | TLAN NETWORK DRIVER |
8b58be88 | 9284 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 9285 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
9286 | W: http://sourceforge.net/projects/tlan/ |
9287 | S: Maintained | |
679655da | 9288 | F: Documentation/networking/tlan.txt |
b544dbac | 9289 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 9290 | |
d74db3b2 | 9291 | TOMOYO SECURITY MODULE |
8b58be88 JP |
9292 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
9293 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
9294 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
9295 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
9296 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
9297 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
9298 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 9299 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 9300 | S: Maintained |
679655da | 9301 | F: security/tomoyo/ |
d74db3b2 | 9302 | |
9caeb532 | 9303 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 9304 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 9305 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
9306 | S: Maintained |
9307 | F: drivers/platform/x86/topstar-laptop.c | |
9308 | ||
1da177e4 | 9309 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 9310 | L: platform-driver-x86@vger.kernel.org |
15065531 | 9311 | S: Orphan |
679655da | 9312 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
9313 | |
9314 | TOSHIBA SMM DRIVER | |
8b58be88 | 9315 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
9316 | L: tlinux-users@tce.toshiba-dme.co.jp |
9317 | W: http://www.buzzard.org.uk/toshiba/ | |
9318 | S: Maintained | |
679655da JP |
9319 | F: drivers/char/toshiba.c |
9320 | F: include/linux/toshiba.h | |
c117ab84 | 9321 | F: include/uapi/linux/toshiba.h |
1da177e4 | 9322 | |
d719f900 | 9323 | TMIO MMC DRIVER |
252f29a9 | 9324 | M: Ian Molton <ian.molton@codethink.co.uk> |
d1057c40 | 9325 | L: linux-mmc@vger.kernel.org |
d719f900 | 9326 | S: Maintained |
d1057c40 GL |
9327 | F: drivers/mmc/host/tmio_mmc* |
9328 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
9329 | F: include/linux/mmc/tmio.h | |
9330 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 9331 | |
917cc4e6 GR |
9332 | TMP401 HARDWARE MONITOR DRIVER |
9333 | M: Guenter Roeck <linux@roeck-us.net> | |
9334 | L: lm-sensors@lm-sensors.org | |
9335 | S: Maintained | |
9336 | F: Documentation/hwmon/tmp401 | |
9337 | F: drivers/hwmon/tmp401.c | |
9338 | ||
98f32602 | 9339 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 9340 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
9341 | L: linux-mm@kvack.org |
9342 | S: Maintained | |
9343 | F: include/linux/shmem_fs.h | |
9344 | F: mm/shmem.c | |
9345 | ||
45f95b53 | 9346 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 9347 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
45f95b53 MCC |
9348 | L: linux-media@vger.kernel.org |
9349 | W: http://linuxtv.org | |
9350 | T: git git://linuxtv.org/media_tree.git | |
9351 | S: Odd fixes | |
9352 | F: drivers/media/usb/tm6000/ | |
9353 | ||
4e68852d | 9354 | TPM DEVICE DRIVER |
901486b8 | 9355 | M: Peter Huewe <peterhuewe@gmx.de> |
383dec1f | 9356 | M: Ashley Lai <ashley@ashleylai.com> |
cbb2d5e4 | 9357 | M: Marcel Selhorst <tpmdd@selhorst.net> |
383dec1f | 9358 | W: http://tpmdd.sourceforge.net |
63a10dfd | 9359 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
4e68852d | 9360 | S: Maintained |
679655da | 9361 | F: drivers/char/tpm/ |
4e68852d | 9362 | |
d6f005a1 JP |
9363 | TRACING |
9364 | M: Steven Rostedt <rostedt@goodmis.org> | |
d6f005a1 | 9365 | M: Ingo Molnar <mingo@redhat.com> |
75fc2d37 | 9366 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
9367 | S: Maintained |
9368 | F: Documentation/trace/ftrace.txt | |
9369 | F: arch/*/*/*/ftrace.h | |
9370 | F: arch/*/kernel/ftrace.c | |
9371 | F: include/*/ftrace.h | |
9372 | F: include/linux/trace*.h | |
9373 | F: include/trace/ | |
9374 | F: kernel/trace/ | |
9375 | ||
1da177e4 | 9376 | TRIVIAL PATCHES |
8b58be88 | 9377 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 9378 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 9379 | S: Maintained |
86ef925f | 9380 | K: ^Subject:.*(?i)trivial |
1da177e4 | 9381 | |
4e68852d | 9382 | TTY LAYER |
879a5a00 | 9383 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
25e6c11f | 9384 | M: Jiri Slaby <jslaby@suse.cz> |
879a5a00 | 9385 | S: Supported |
08deed1e | 9386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 9387 | F: drivers/tty/ |
df621252 | 9388 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
9389 | F: include/linux/serial_core.h |
9390 | F: include/linux/serial.h | |
9391 | F: include/linux/tty.h | |
c117ab84 CEB |
9392 | F: include/uapi/linux/serial_core.h |
9393 | F: include/uapi/linux/serial.h | |
9394 | F: include/uapi/linux/tty.h | |
4e68852d | 9395 | |
91952bc0 AP |
9396 | TUA9001 MEDIA DRIVER |
9397 | M: Antti Palosaari <crope@iki.fi> | |
9398 | L: linux-media@vger.kernel.org | |
9399 | W: http://linuxtv.org/ | |
9400 | W: http://palosaari.fi/linux/ | |
9401 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9402 | T: git git://linuxtv.org/anttip/media_tree.git | |
9403 | S: Maintained | |
9404 | F: drivers/media/tuners/tua9001* | |
9405 | ||
740db6d7 | 9406 | TULIP NETWORK DRIVERS |
8b58be88 | 9407 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
9408 | L: netdev@vger.kernel.org |
9409 | S: Maintained | |
0f04e2aa | 9410 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
9411 | |
9412 | TUN/TAP driver | |
ba57b6f2 | 9413 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
9414 | W: http://vtun.sourceforge.net/tun |
9415 | S: Maintained | |
679655da JP |
9416 | F: Documentation/networking/tuntap.txt |
9417 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 9418 | |
b454cc66 | 9419 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 9420 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
9421 | M: Ralf Baechle <ralf@linux-mips.org> |
9422 | L: linux-mips@linux-mips.org | |
9423 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 9424 | S: Maintained |
679655da JP |
9425 | F: drivers/tc/ |
9426 | F: include/linux/tc.h | |
b454cc66 | 9427 | |
1da177e4 | 9428 | U14-34F SCSI DRIVER |
8b58be88 | 9429 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
9430 | L: linux-scsi@vger.kernel.org |
9431 | S: Maintained | |
679655da | 9432 | F: drivers/scsi/u14-34f.c |
1da177e4 | 9433 | |
e2d1d6c0 | 9434 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 9435 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 9436 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 9437 | L: linux-mtd@lists.infradead.org |
e2966cbe | 9438 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
9439 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
9440 | S: Maintained | |
679655da JP |
9441 | F: Documentation/filesystems/ubifs.txt |
9442 | F: fs/ubifs/ | |
e2d1d6c0 | 9443 | |
cc2020e6 | 9444 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 9445 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 AC |
9446 | W: http://www.uclinux.org/ |
9447 | L: uclinux-dev@uclinux.org (subscribers-only) | |
9448 | S: Maintained | |
61bc02bb JP |
9449 | F: arch/m68k/*/*_no.* |
9450 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 9451 | |
1da177e4 | 9452 | UDF FILESYSTEM |
8b58be88 | 9453 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 9454 | S: Maintained |
679655da JP |
9455 | F: Documentation/filesystems/udf.txt |
9456 | F: fs/udf/ | |
1da177e4 | 9457 | |
cc2020e6 | 9458 | UFS FILESYSTEM |
8b58be88 | 9459 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 9460 | S: Maintained |
679655da JP |
9461 | F: Documentation/filesystems/ufs.txt |
9462 | F: fs/ufs/ | |
cc2020e6 | 9463 | |
0a09d3ab DH |
9464 | UHID USERSPACE HID IO DRIVER: |
9465 | M: David Herrmann <dh.herrmann@googlemail.com> | |
9466 | L: linux-input@vger.kernel.org | |
9467 | S: Maintained | |
9468 | F: drivers/hid/uhid.c | |
c117ab84 | 9469 | F: include/uapi/linux/uhid.h |
0a09d3ab | 9470 | |
18332a80 | 9471 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 9472 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 9473 | S: Orphan |
355ffe69 | 9474 | F: drivers/uwb/ |
679655da JP |
9475 | F: include/linux/uwb.h |
9476 | F: include/linux/uwb/ | |
18332a80 | 9477 | |
b31d8273 G |
9478 | UNICORE32 ARCHITECTURE: |
9479 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9480 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9481 | S: Maintained | |
ceebf4d5 | 9482 | T: git git://github.com/gxt/linux.git |
b31d8273 G |
9483 | F: arch/unicore32/ |
9484 | ||
d8379ab1 TF |
9485 | UNIFDEF |
9486 | M: Tony Finch <dot@dotat.at> | |
9487 | W: http://dotat.at/prog/unifdef | |
9488 | S: Maintained | |
9489 | F: scripts/unifdef.c | |
9490 | ||
1da177e4 | 9491 | UNIFORM CDROM DRIVER |
8b58be88 | 9492 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
9493 | W: http://www.kernel.dk |
9494 | S: Maintained | |
679655da JP |
9495 | F: Documentation/cdrom/ |
9496 | F: drivers/cdrom/cdrom.c | |
9497 | F: include/linux/cdrom.h | |
c117ab84 | 9498 | F: include/uapi/linux/cdrom.h |
1da177e4 | 9499 | |
56df0122 BR |
9500 | UNISYS S-PAR DRIVERS |
9501 | M: Benjamin Romer <benjamin.romer@unisys.com> | |
9502 | M: David Kershner <david.kershner@unisys.com> | |
9503 | L: sparmaintainer@unisys.com (Unisys internal) | |
9504 | S: Supported | |
9505 | F: drivers/staging/unisys/ | |
9506 | ||
9941fa6e VH |
9507 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
9508 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9509 | M: Santosh Y <santoshsy@gmail.com> | |
9510 | L: linux-scsi@vger.kernel.org | |
9511 | S: Supported | |
9512 | F: Documentation/scsi/ufs.txt | |
9513 | F: drivers/scsi/ufs/ | |
9514 | ||
e2d1d6c0 | 9515 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 9516 | M: Artem Bityutskiy <dedekind1@gmail.com> |
e2d1d6c0 RD |
9517 | W: http://www.linux-mtd.infradead.org/ |
9518 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 9519 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 9520 | S: Maintained |
80811493 | 9521 | F: drivers/mtd/ubi/ |
679655da | 9522 | F: include/linux/mtd/ubi.h |
c117ab84 | 9523 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 9524 | |
76ac66e4 RW |
9525 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
9526 | M: Richard Weinberger <richard@nod.at> | |
9527 | L: linux-mtd@lists.infradead.org | |
9528 | S: Maintained | |
9529 | F: drivers/mtd/ubi/fastmap.c | |
9530 | ||
1da177e4 | 9531 | USB ACM DRIVER |
61eee9a7 | 9532 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 9533 | L: linux-usb@vger.kernel.org |
1da177e4 | 9534 | S: Maintained |
679655da JP |
9535 | F: Documentation/usb/acm.txt |
9536 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 9537 | |
b7d572e1 PF |
9538 | USB AR5523 WIRELESS DRIVER |
9539 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
9540 | L: linux-wireless@vger.kernel.org | |
9541 | S: Maintained | |
9542 | F: drivers/net/wireless/ath/ar5523/ | |
9543 | ||
115bb1ff | 9544 | USB ATTACHED SCSI |
f50a4968 | 9545 | M: Hans de Goede <hdegoede@redhat.com> |
8eae0fb7 | 9546 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
9547 | L: linux-usb@vger.kernel.org |
9548 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 9549 | S: Maintained |
115bb1ff MW |
9550 | F: drivers/usb/storage/uas.c |
9551 | ||
1da177e4 | 9552 | USB CDC ETHERNET DRIVER |
61eee9a7 | 9553 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 9554 | L: linux-usb@vger.kernel.org |
1da177e4 | 9555 | S: Maintained |
679655da | 9556 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 9557 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 9558 | |
b02b371e | 9559 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 9560 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
9561 | L: linux-usb@vger.kernel.org |
9562 | S: Maintained | |
679655da | 9563 | F: drivers/usb/c67x00/ |
b02b371e | 9564 | |
d0374f4f | 9565 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 9566 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 9567 | L: netdev@vger.kernel.org |
d0374f4f PK |
9568 | W: http://www.linux-usb.org/usbnet |
9569 | S: Maintained | |
679655da | 9570 | F: drivers/net/usb/dm9601.c |
d0374f4f | 9571 | |
cc2020e6 | 9572 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 9573 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
9574 | L: rio500-users@lists.sourceforge.net |
9575 | W: http://rio500.sourceforge.net | |
9576 | S: Maintained | |
679655da | 9577 | F: drivers/usb/misc/rio500* |
cc2020e6 | 9578 | |
1da177e4 | 9579 | USB EHCI DRIVER |
578333ab | 9580 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9581 | L: linux-usb@vger.kernel.org |
578333ab | 9582 | S: Maintained |
679655da JP |
9583 | F: Documentation/usb/ehci.txt |
9584 | F: drivers/usb/host/ehci* | |
1da177e4 | 9585 | |
69ae9e3e | 9586 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 9587 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 9588 | L: linux-usb@vger.kernel.org |
69ae9e3e | 9589 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
9590 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
9591 | S: Maintained | |
679655da JP |
9592 | F: drivers/usb/gadget/ |
9593 | F: include/linux/usb/gadget* | |
69ae9e3e | 9594 | |
2dea64b4 | 9595 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 9596 | M: Jiri Kosina <jkosina@suse.cz> |
795fb7e7 | 9597 | L: linux-usb@vger.kernel.org |
54e5881d | 9598 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 9599 | S: Maintained |
c2f01971 | 9600 | F: Documentation/hid/hiddev.txt |
679655da | 9601 | F: drivers/hid/usbhid/ |
1da177e4 | 9602 | |
857aab34 | 9603 | USB/IP DRIVERS |
857aab34 | 9604 | L: linux-usb@vger.kernel.org |
3ff4afe8 | 9605 | S: Orphan |
857aab34 | 9606 | F: drivers/staging/usbip/ |
9607 | ||
959eea21 | 9608 | USB ISP116X DRIVER |
8b58be88 | 9609 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 9610 | L: linux-usb@vger.kernel.org |
959eea21 | 9611 | S: Maintained |
679655da JP |
9612 | F: drivers/usb/host/isp116x* |
9613 | F: include/linux/usb/isp116x.h | |
959eea21 | 9614 | |
1da177e4 | 9615 | USB MASS STORAGE DRIVER |
8b58be88 | 9616 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 9617 | L: linux-usb@vger.kernel.org |
8836aeb8 | 9618 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
9619 | S: Maintained |
9620 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 9621 | F: drivers/usb/storage/ |
1da177e4 | 9622 | |
af39917d CL |
9623 | USB MIDI DRIVER |
9624 | M: Clemens Ladisch <clemens@ladisch.de> | |
9625 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9626 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9627 | S: Maintained | |
9628 | F: sound/usb/midi.* | |
9629 | ||
444ce9d4 JP |
9630 | USB NETWORKING DRIVERS |
9631 | L: linux-usb@vger.kernel.org | |
9632 | S: Odd Fixes | |
9633 | F: drivers/net/usb/ | |
9634 | ||
1da177e4 | 9635 | USB OHCI DRIVER |
578333ab | 9636 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9637 | L: linux-usb@vger.kernel.org |
578333ab | 9638 | S: Maintained |
679655da JP |
9639 | F: Documentation/usb/ohci.txt |
9640 | F: drivers/usb/host/ohci* | |
1da177e4 | 9641 | |
563da3a9 VM |
9642 | USB OVER IP DRIVER |
9643 | M: Valentina Manea <valentina.manea.m@gmail.com> | |
9644 | M: Shuah Khan <shuah.kh@samsung.com> | |
9645 | L: linux-usb@vger.kernel.org | |
9646 | S: Maintained | |
9647 | F: drivers/usb/usbip/ | |
9648 | F: tools/usb/usbip/ | |
9649 | ||
1da177e4 | 9650 | USB PEGASUS DRIVER |
a16b945c | 9651 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 9652 | L: linux-usb@vger.kernel.org |
043600a6 | 9653 | L: netdev@vger.kernel.org |
052e3128 PM |
9654 | T: git git://github.com/petkan/pegasus.git |
9655 | W: https://github.com/petkan/pegasus | |
1da177e4 | 9656 | S: Maintained |
679655da | 9657 | F: drivers/net/usb/pegasus.* |
1da177e4 | 9658 | |
d3ad558f FB |
9659 | USB PHY LAYER |
9660 | M: Felipe Balbi <balbi@ti.com> | |
9661 | L: linux-usb@vger.kernel.org | |
9662 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
9663 | S: Maintained | |
9664 | F: drivers/usb/phy/ | |
d3ad558f | 9665 | |
73e4fb3f | 9666 | USB PRINTER DRIVER (usblp) |
8b58be88 | 9667 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 9668 | L: linux-usb@vger.kernel.org |
73e4fb3f | 9669 | S: Supported |
679655da | 9670 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
9671 | |
9672 | USB RTL8150 DRIVER | |
a16b945c | 9673 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 9674 | L: linux-usb@vger.kernel.org |
043600a6 | 9675 | L: netdev@vger.kernel.org |
052e3128 PM |
9676 | T: git git://github.com/petkan/rtl8150.git |
9677 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9678 | S: Maintained |
679655da | 9679 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9680 | |
f896b796 | 9681 | USB SERIAL SUBSYSTEM |
66085694 | 9682 | M: Johan Hovold <johan@kernel.org> |
795fb7e7 | 9683 | L: linux-usb@vger.kernel.org |
4e68852d | 9684 | S: Maintained |
679655da | 9685 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9686 | F: drivers/usb/serial/ |
679655da | 9687 | F: include/linux/usb/serial.h |
1da177e4 | 9688 | |
b3f0db1c SG |
9689 | USB SMSC75XX ETHERNET DRIVER |
9690 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
9691 | L: netdev@vger.kernel.org | |
9692 | S: Maintained | |
9693 | F: drivers/net/usb/smsc75xx.* | |
9694 | ||
2f7ca802 | 9695 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9696 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 9697 | L: netdev@vger.kernel.org |
90b24cfb | 9698 | S: Maintained |
679655da | 9699 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9700 | |
1da177e4 | 9701 | USB SUBSYSTEM |
879a5a00 | 9702 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 9703 | L: linux-usb@vger.kernel.org |
1da177e4 | 9704 | W: http://www.linux-usb.org |
08deed1e | 9705 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9706 | S: Supported |
679655da | 9707 | F: Documentation/usb/ |
679655da JP |
9708 | F: drivers/usb/ |
9709 | F: include/linux/usb.h | |
9710 | F: include/linux/usb/ | |
1da177e4 LT |
9711 | |
9712 | USB UHCI DRIVER | |
8b58be88 | 9713 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9714 | L: linux-usb@vger.kernel.org |
1da177e4 | 9715 | S: Maintained |
679655da | 9716 | F: drivers/usb/host/uhci* |
1da177e4 | 9717 | |
69ae9e3e | 9718 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9719 | M: Oliver Neukum <oneukum@suse.de> |
043600a6 | 9720 | L: netdev@vger.kernel.org |
69ae9e3e | 9721 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9722 | S: Maintained |
679655da JP |
9723 | F: drivers/net/usb/usbnet.c |
9724 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9725 | |
c0efd232 | 9726 | USB VIDEO CLASS |
c53ac071 | 9727 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 9728 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 9729 | L: linux-media@vger.kernel.org |
275ffde4 | 9730 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9731 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9732 | S: Maintained |
0c0d06ca | 9733 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9734 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9735 | |
b60b9c45 HV |
9736 | USB VISION DRIVER |
9737 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9738 | L: linux-media@vger.kernel.org | |
9739 | T: git git://linuxtv.org/media_tree.git | |
9740 | W: http://linuxtv.org | |
9741 | S: Odd Fixes | |
9742 | F: drivers/media/usb/usbvision/ | |
9743 | ||
8282da47 LP |
9744 | USB WEBCAM GADGET |
9745 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
9746 | L: linux-usb@vger.kernel.org | |
9747 | S: Maintained | |
3a83c16e | 9748 | F: drivers/usb/gadget/function/*uvc* |
faf2e1db | 9749 | F: drivers/usb/gadget/legacy/webcam.c |
8282da47 | 9750 | |
bf164cc0 | 9751 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9752 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
9753 | L: linux-wireless@vger.kernel.org |
9754 | S: Maintained | |
679655da | 9755 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9756 | |
eb6bab13 | 9757 | USB XHCI DRIVER |
03d85053 | 9758 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
9759 | L: linux-usb@vger.kernel.org |
9760 | S: Supported | |
36d0344c SS |
9761 | F: drivers/usb/host/xhci* |
9762 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9763 | |
1da177e4 | 9764 | USB ZD1201 DRIVER |
4086b9ca | 9765 | L: linux-wireless@vger.kernel.org |
1da177e4 | 9766 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9767 | S: Orphan |
679655da | 9768 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9769 | |
b7eee616 | 9770 | USB ZR364XX DRIVER |
8b58be88 | 9771 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 9772 | L: linux-usb@vger.kernel.org |
661263b5 | 9773 | L: linux-media@vger.kernel.org |
275ffde4 | 9774 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9775 | W: http://royale.zerezo.com/zr364xx/ |
9776 | S: Maintained | |
679655da | 9777 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9778 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9779 | |
e7839f25 | 9780 | USER-MODE LINUX (UML) |
8b58be88 | 9781 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 9782 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
9783 | L: user-mode-linux-devel@lists.sourceforge.net |
9784 | L: user-mode-linux-user@lists.sourceforge.net | |
9785 | W: http://user-mode-linux.sourceforge.net | |
9786 | S: Maintained | |
61516587 | 9787 | F: Documentation/virtual/uml/ |
679655da | 9788 | F: arch/um/ |
b070989a | 9789 | F: arch/x86/um/ |
679655da JP |
9790 | F: fs/hostfs/ |
9791 | F: fs/hppfs/ | |
b7eee616 | 9792 | |
e5f114e9 | 9793 | USERSPACE I/O (UIO) |
6a534c9d | 9794 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 9795 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 9796 | S: Maintained |
679655da JP |
9797 | F: Documentation/DocBook/uio-howto.tmpl |
9798 | F: drivers/uio/ | |
9799 | F: include/linux/uio*.h | |
e5f114e9 | 9800 | |
256cccbe | 9801 | UTIL-LINUX PACKAGE |
8b58be88 | 9802 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
9803 | L: util-linux@vger.kernel.org |
9804 | W: http://en.wikipedia.org/wiki/Util-linux | |
9805 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9806 | S: Maintained |
9807 | ||
c1fd1c07 | 9808 | UVESAFB DRIVER |
8b58be88 | 9809 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 9810 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
9811 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9812 | S: Maintained | |
679655da | 9813 | F: Documentation/fb/uvesafb.txt |
8a61f013 | 9814 | F: drivers/video/fbdev/uvesafb.* |
c1fd1c07 | 9815 | |
4480f15b | 9816 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9817 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 9818 | S: Maintained |
679655da JP |
9819 | F: Documentation/filesystems/vfat.txt |
9820 | F: fs/fat/ | |
1da177e4 | 9821 | |
cba3345c AW |
9822 | VFIO DRIVER |
9823 | M: Alex Williamson <alex.williamson@redhat.com> | |
9824 | L: kvm@vger.kernel.org | |
9825 | S: Maintained | |
9826 | F: Documentation/vfio.txt | |
9827 | F: drivers/vfio/ | |
9828 | F: include/linux/vfio.h | |
c117ab84 | 9829 | F: include/uapi/linux/vfio.h |
cba3345c | 9830 | |
9e6f3438 PO |
9831 | VIDEOBUF2 FRAMEWORK |
9832 | M: Pawel Osciak <pawel@osciak.com> | |
9833 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 9834 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
9835 | L: linux-media@vger.kernel.org |
9836 | S: Maintained | |
90d72ac6 | 9837 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9838 | F: include/media/videobuf2-* |
9839 | ||
9a82446b AS |
9840 | VIRTIO CONSOLE DRIVER |
9841 | M: Amit Shah <amit.shah@redhat.com> | |
9842 | L: virtualization@lists.linux-foundation.org | |
9843 | S: Maintained | |
9844 | F: drivers/char/virtio_console.c | |
9845 | F: include/linux/virtio_console.h | |
c117ab84 | 9846 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9847 | |
2426ec8f MT |
9848 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9849 | M: Rusty Russell <rusty@rustcorp.com.au> | |
9850 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9851 | L: virtualization@lists.linux-foundation.org | |
9852 | S: Maintained | |
9853 | F: drivers/virtio/ | |
c893c8d7 | 9854 | F: tools/virtio/ |
2426ec8f MT |
9855 | F: drivers/net/virtio_net.c |
9856 | F: drivers/block/virtio_blk.c | |
9857 | F: include/linux/virtio_*.h | |
916cdabc | 9858 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9859 | |
3a4d5c94 MT |
9860 | VIRTIO HOST (VHOST) |
9861 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9862 | L: kvm@vger.kernel.org | |
c996d8b9 | 9863 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
9864 | L: netdev@vger.kernel.org |
9865 | S: Maintained | |
9866 | F: drivers/vhost/ | |
c117ab84 | 9867 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9868 | |
1da177e4 | 9869 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9870 | M: Roger Luethi <rl@hellgate.ch> |
1da177e4 | 9871 | S: Maintained |
f2148a47 | 9872 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9873 | |
f0bf7f61 | 9874 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9875 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 9876 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
9877 | S: Maintained |
9878 | F: drivers/mmc/host/via-sdmmc.c | |
9879 | ||
69e4a7c2 | 9880 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9881 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 9882 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 9883 | S: Maintained |
c7babebd FTS |
9884 | F: include/linux/via-core.h |
9885 | F: include/linux/via-gpio.h | |
9886 | F: include/linux/via_i2c.h | |
8a61f013 | 9887 | F: drivers/video/fbdev/via/ |
69e4a7c2 | 9888 | |
01f20734 | 9889 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9890 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
9891 | L: netdev@vger.kernel.org |
9892 | S: Maintained | |
f2148a47 | 9893 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9894 | |
0b7bc1fa HV |
9895 | VIVI VIRTUAL VIDEO DRIVER |
9896 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9897 | L: linux-media@vger.kernel.org | |
9898 | T: git git://linuxtv.org/media_tree.git | |
9899 | W: http://linuxtv.org | |
9900 | S: Maintained | |
9901 | F: drivers/media/platform/vivi* | |
9902 | ||
be7f8273 | 9903 | VLAN (802.1Q) |
8b58be88 | 9904 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
9905 | L: netdev@vger.kernel.org |
9906 | S: Maintained | |
679655da JP |
9907 | F: drivers/net/macvlan.c |
9908 | F: include/linux/if_*vlan.h | |
9909 | F: net/8021q/ | |
be7f8273 | 9910 | |
55e331cf | 9911 | VLYNQ BUS |
8b58be88 | 9912 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 9913 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
9914 | S: Maintained |
9915 | F: drivers/vlynq/vlynq.c | |
9916 | F: include/linux/vlynq.h | |
9917 | ||
390beae4 MW |
9918 | VME SUBSYSTEM |
9919 | M: Martyn Welch <martyn.welch@ge.com> | |
1bd289d1 | 9920 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
9921 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
9922 | L: devel@driverdev.osuosl.org | |
9923 | S: Maintained | |
9924 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9925 | F: Documentation/vme_api.txt | |
9926 | F: drivers/staging/vme/ | |
9927 | F: drivers/vme/ | |
9928 | F: include/linux/vme* | |
9929 | ||
4488e09b AK |
9930 | VMWARE HYPERVISOR INTERFACE |
9931 | M: Alok Kataria <akataria@vmware.com> | |
9932 | L: virtualization@lists.linux-foundation.org | |
9933 | S: Supported | |
9934 | F: arch/x86/kernel/cpu/vmware.c | |
9935 | ||
73b35d07 DT |
9936 | VMWARE BALLOON DRIVER |
9937 | M: Xavier Deguillard <xdeguillard@vmware.com> | |
9938 | M: Philip Moltmann <moltmann@vmware.com> | |
9939 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
9940 | L: linux-kernel@vger.kernel.org | |
9941 | S: Maintained | |
9942 | F: drivers/misc/vmw_balloon.c | |
9943 | ||
d1a890fa | 9944 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9945 | M: Shreyas Bhatewara <sbhatewara@vmware.com> |
9946 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
9947 | L: netdev@vger.kernel.org | |
9948 | S: Maintained | |
9949 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9950 | |
851b1642 | 9951 | VMware PVSCSI driver |
f2d7e40e | 9952 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
9953 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
9954 | L: linux-scsi@vger.kernel.org | |
9955 | S: Maintained | |
9956 | F: drivers/scsi/vmw_pvscsi.c | |
9957 | F: drivers/scsi/vmw_pvscsi.h | |
9958 | ||
e53e86c7 | 9959 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9960 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 9961 | M: Mark Brown <broonie@kernel.org> |
5cdeb2c8 | 9962 | L: linux-kernel@vger.kernel.org |
e53e86c7 | 9963 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9964 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9965 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9966 | S: Supported |
679655da JP |
9967 | F: drivers/regulator/ |
9968 | F: include/linux/regulator/ | |
e53e86c7 | 9969 | |
ab41319e | 9970 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9971 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
9972 | L: lm-sensors@lm-sensors.org |
9973 | S: Maintained | |
679655da JP |
9974 | F: Documentation/hwmon/vt1211 |
9975 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9976 | |
1de9e371 | 9977 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9978 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
9979 | L: lm-sensors@lm-sensors.org |
9980 | S: Maintained | |
679655da | 9981 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9982 | |
88095e7b TO |
9983 | VUB300 USB to SDIO/SD/MMC bridge chip |
9984 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
9985 | L: linux-mmc@vger.kernel.org | |
9986 | L: linux-usb@vger.kernel.org | |
9987 | S: Supported | |
9988 | F: drivers/mmc/host/vub300.c | |
9989 | ||
1da177e4 | 9990 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9991 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 9992 | S: Maintained |
679655da JP |
9993 | F: Documentation/w1/ |
9994 | F: drivers/w1/ | |
1da177e4 | 9995 | |
13927079 | 9996 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9997 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 9998 | L: lm-sensors@lm-sensors.org |
25845c22 | 9999 | S: Maintained |
679655da JP |
10000 | F: Documentation/hwmon/w83791d |
10001 | F: drivers/hwmon/w83791d.c | |
13927079 | 10002 | |
61db011d | 10003 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 10004 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
10005 | L: lm-sensors@lm-sensors.org |
10006 | S: Maintained | |
679655da JP |
10007 | F: Documentation/hwmon/w83793 |
10008 | F: drivers/hwmon/w83793.c | |
61db011d | 10009 | |
e3760b43 | 10010 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 10011 | M: Jean Delvare <jdelvare@suse.de> |
e3760b43 JD |
10012 | L: lm-sensors@lm-sensors.org |
10013 | S: Maintained | |
10014 | F: drivers/hwmon/w83795.c | |
10015 | ||
1da177e4 | 10016 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 10017 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 10018 | S: Maintained |
679655da | 10019 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 10020 | |
b4e05923 HG |
10021 | WACOM PROTOCOL 4 SERIAL TABLETS |
10022 | M: Julian Squires <julian@cipht.net> | |
10023 | M: Hans de Goede <hdegoede@redhat.com> | |
10024 | L: linux-input@vger.kernel.org | |
10025 | S: Maintained | |
10026 | F: drivers/input/tablet/wacom_serial4.c | |
10027 | ||
3527761c | 10028 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 10029 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
10030 | L: linux-watchdog@vger.kernel.org |
10031 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 10032 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 10033 | S: Maintained |
679655da JP |
10034 | F: Documentation/watchdog/ |
10035 | F: drivers/watchdog/ | |
10036 | F: include/linux/watchdog.h | |
c117ab84 | 10037 | F: include/uapi/linux/watchdog.h |
3527761c | 10038 | |
1da177e4 | 10039 | WD7000 SCSI DRIVER |
8b58be88 | 10040 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
10041 | L: linux-scsi@vger.kernel.org |
10042 | S: Maintained | |
679655da | 10043 | F: drivers/scsi/wd7000.c |
1da177e4 | 10044 | |
b22e00f3 DH |
10045 | WIIMOTE HID DRIVER |
10046 | M: David Herrmann <dh.herrmann@googlemail.com> | |
10047 | L: linux-input@vger.kernel.org | |
10048 | S: Maintained | |
10049 | F: drivers/hid/hid-wiimote* | |
10050 | ||
e258b80e | 10051 | WINBOND CIR DRIVER |
364e9e18 | 10052 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 10053 | S: Maintained |
116ab806 | 10054 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 10055 | |
8a70da82 | 10056 | WIMAX STACK |
8b58be88 | 10057 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 10058 | M: linux-wimax@intel.com |
63fae219 | 10059 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
10060 | S: Supported |
10061 | W: http://linuxwimax.org | |
315987dc | 10062 | F: Documentation/wimax/README.wimax |
315987dc JP |
10063 | F: include/linux/wimax/debug.h |
10064 | F: include/net/wimax.h | |
c117ab84 | 10065 | F: include/uapi/linux/wimax.h |
315987dc | 10066 | F: net/wimax/ |
8a70da82 | 10067 | |
5fc14680 | 10068 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 10069 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 10070 | S: Maintained |
679655da | 10071 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 10072 | |
1da177e4 | 10073 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 10074 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 10075 | L: linux-wireless@vger.kernel.org |
926554c4 | 10076 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 10077 | S: Maintained |
679655da | 10078 | F: drivers/net/wireless/wl3501* |
1da177e4 | 10079 | |
febf1dff | 10080 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 10081 | M: Mark Brown <broonie@kernel.org> |
8b58be88 | 10082 | M: Liam Girdwood <lrg@slimlogic.co.uk> |
febf1dff MB |
10083 | L: linux-input@vger.kernel.org |
10084 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
10085 | W: http://opensource.wolfsonmicro.com/node/7 | |
10086 | S: Supported | |
679655da JP |
10087 | F: drivers/input/touchscreen/*wm97* |
10088 | F: include/linux/wm97xx.h | |
febf1dff | 10089 | |
055bcbcb | 10090 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 10091 | L: patches@opensource.wolfsonmicro.com |
cf8eda3e | 10092 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 10093 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 10094 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 10095 | S: Supported |
3768f0b1 | 10096 | F: Documentation/hwmon/wm83?? |
af1c5386 | 10097 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 10098 | F: drivers/clk/clk-wm83*.c |
9c309598 | 10099 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 10100 | F: drivers/leds/leds-wm83*.c |
25b273ba | 10101 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 10102 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 10103 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
10104 | F: drivers/input/misc/wm831x-on.c |
10105 | F: drivers/input/touchscreen/wm831x-ts.c | |
10106 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
10107 | F: drivers/mfd/arizona* |
10108 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
10109 | F: drivers/power/wm83*.c |
10110 | F: drivers/rtc/rtc-wm83*.c | |
10111 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 10112 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 10113 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 10114 | F: include/linux/mfd/arizona/ |
3860e6c4 | 10115 | F: include/linux/mfd/wm831x/ |
b75ea16a | 10116 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 10117 | F: include/linux/mfd/wm8400* |
59ec6da2 | 10118 | F: include/linux/wm97xx.h |
055bcbcb | 10119 | F: include/sound/wm????.h |
9c309598 | 10120 | F: sound/soc/codecs/arizona.? |
055bcbcb | 10121 | F: sound/soc/codecs/wm* |
b75ea16a | 10122 | |
3e6cd7a4 TH |
10123 | WORKQUEUE |
10124 | M: Tejun Heo <tj@kernel.org> | |
3e6cd7a4 TH |
10125 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
10126 | S: Maintained | |
10127 | F: include/linux/workqueue.h | |
10128 | F: kernel/workqueue.c | |
10129 | F: Documentation/workqueue.txt | |
10130 | ||
1da177e4 | 10131 | X.25 NETWORK LAYER |
8bf28059 | 10132 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 10133 | L: linux-x25@vger.kernel.org |
8bf28059 | 10134 | S: Odd Fixes |
679655da JP |
10135 | F: Documentation/networking/x25* |
10136 | F: include/net/x25* | |
10137 | F: net/x25/ | |
1da177e4 | 10138 | |
e2d1d6c0 | 10139 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
10140 | M: Thomas Gleixner <tglx@linutronix.de> |
10141 | M: Ingo Molnar <mingo@redhat.com> | |
10142 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 10143 | M: x86@kernel.org |
981c3a4f | 10144 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 10145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 10146 | S: Maintained |
679655da JP |
10147 | F: Documentation/x86/ |
10148 | F: arch/x86/ | |
e2d1d6c0 | 10149 | |
d0944853 | 10150 | X86 PLATFORM DRIVERS |
e181ba15 | 10151 | M: Darren Hart <dvhart@infradead.org> |
d0944853 | 10152 | L: platform-driver-x86@vger.kernel.org |
e181ba15 | 10153 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
d0944853 | 10154 | S: Maintained |
14430813 | 10155 | F: drivers/platform/x86/ |
d0944853 | 10156 | |
c1f5c54b IM |
10157 | X86 MCE INFRASTRUCTURE |
10158 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 10159 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
10160 | L: linux-edac@vger.kernel.org |
10161 | S: Maintained | |
10162 | F: arch/x86/kernel/cpu/mcheck/* | |
10163 | ||
d6fad502 | 10164 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 10165 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d6fad502 MCC |
10166 | L: linux-media@vger.kernel.org |
10167 | W: http://linuxtv.org | |
10168 | T: git git://linuxtv.org/media_tree.git | |
10169 | S: Maintained | |
10170 | F: drivers/media/tuners/tuner-xc2028.* | |
10171 | ||
c4468085 | 10172 | XEN HYPERVISOR INTERFACE |
c4468085 | 10173 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
10174 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
10175 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 10176 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 10177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
10178 | S: Supported |
10179 | F: arch/x86/xen/ | |
10180 | F: drivers/*/xen-*front.c | |
10181 | F: drivers/xen/ | |
10182 | F: arch/x86/include/asm/xen/ | |
10183 | F: include/xen/ | |
c117ab84 | 10184 | F: include/uapi/xen/ |
c4468085 | 10185 | |
77bfb479 SS |
10186 | XEN HYPERVISOR ARM |
10187 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 10188 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
10189 | S: Supported |
10190 | F: arch/arm/xen/ | |
10191 | F: arch/arm/include/asm/xen/ | |
10192 | ||
b475e83f SS |
10193 | XEN HYPERVISOR ARM64 |
10194 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 10195 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
10196 | S: Supported |
10197 | F: arch/arm64/xen/ | |
10198 | F: arch/arm64/include/asm/xen/ | |
10199 | ||
9b57e1a7 IC |
10200 | XEN NETWORK BACKEND DRIVER |
10201 | M: Ian Campbell <ian.campbell@citrix.com> | |
8386040b | 10202 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 10203 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
10204 | L: netdev@vger.kernel.org |
10205 | S: Supported | |
10206 | F: drivers/net/xen-netback/* | |
10207 | ||
c5f8e29d KRW |
10208 | XEN PCI SUBSYSTEM |
10209 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 10210 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
10211 | S: Supported |
10212 | F: arch/x86/pci/*xen* | |
10213 | F: drivers/pci/*xen* | |
10214 | ||
a2c5ae65 KRW |
10215 | XEN BLOCK SUBSYSTEM |
10216 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
10217 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) | |
10218 | S: Supported | |
10219 | F: drivers/block/xen-blkback/* | |
10220 | F: drivers/block/xen* | |
10221 | ||
c5f8e29d KRW |
10222 | XEN SWIOTLB SUBSYSTEM |
10223 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 10224 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
10225 | S: Supported |
10226 | F: arch/x86/xen/*swiotlb* | |
10227 | F: drivers/xen/*swiotlb* | |
10228 | ||
1da177e4 LT |
10229 | XFS FILESYSTEM |
10230 | P: Silicon Graphics Inc | |
809625ca | 10231 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 10232 | M: xfs@oss.sgi.com |
d7ede1aa | 10233 | L: xfs@oss.sgi.com |
1da177e4 | 10234 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 10235 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 10236 | S: Supported |
679655da JP |
10237 | F: Documentation/filesystems/xfs.txt |
10238 | F: fs/xfs/ | |
1da177e4 | 10239 | |
8a3b7a25 | 10240 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
10241 | M: Anirudha Sarangi <anirudh@xilinx.com> |
10242 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 10243 | S: Maintained |
10244 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
10245 | ||
c9d3d8ec | 10246 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 10247 | S: Orphan |
679655da | 10248 | F: drivers/block/xsysace.c |
c9d3d8ec | 10249 | |
238b8721 | 10250 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 10251 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
10252 | L: linux-serial@vger.kernel.org |
10253 | S: Maintained | |
df621252 | 10254 | F: drivers/tty/serial/uartlite.c |
238b8721 | 10255 | |
74316949 EB |
10256 | XILLYBUS DRIVER |
10257 | M: Eli Billauer <eli.billauer@gmail.com> | |
10258 | L: linux-kernel@vger.kernel.org | |
10259 | S: Supported | |
10260 | F: drivers/char/xillybus/ | |
10261 | ||
f620e4b8 MF |
10262 | XTENSA XTFPGA PLATFORM SUPPORT |
10263 | M: Max Filippov <jcmvbkbc@gmail.com> | |
10264 | L: linux-xtensa@linux-xtensa.org | |
10265 | S: Maintained | |
10266 | F: drivers/spi/spi-xtensa-xtfpga.c | |
10267 | ||
1da177e4 | 10268 | YAM DRIVER FOR AX.25 |
8b58be88 | 10269 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
10270 | L: linux-hams@vger.kernel.org |
10271 | S: Maintained | |
679655da JP |
10272 | F: drivers/net/hamradio/yam* |
10273 | F: include/linux/yam.h | |
1da177e4 | 10274 | |
af64a5eb | 10275 | YEALINK PHONE DRIVER |
8b58be88 | 10276 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb HV |
10277 | L: usbb2k-api-dev@nongnu.org |
10278 | S: Maintained | |
679655da JP |
10279 | F: Documentation/input/yealink.txt |
10280 | F: drivers/input/misc/yealink.* | |
af64a5eb | 10281 | |
1da177e4 | 10282 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 10283 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
10284 | W: http://yaina.de/jreuter/ |
10285 | W: http://www.qsl.net/dl1bke/ | |
10286 | L: linux-hams@vger.kernel.org | |
10287 | S: Maintained | |
679655da JP |
10288 | F: Documentation/networking/z8530drv.txt |
10289 | F: drivers/net/hamradio/*scc.c | |
10290 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 10291 | |
0cf31ec1 | 10292 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 10293 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
10294 | L: linux-mm@kvack.org |
10295 | S: Maintained | |
10296 | F: mm/zbud.c | |
10297 | F: include/linux/zbud.h | |
10298 | ||
7c0c3afb | 10299 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
10300 | M: Daniel Drake <dsd@gentoo.org> |
10301 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 10302 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 10303 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
10304 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
10305 | S: Maintained | |
679655da | 10306 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 10307 | |
1da177e4 | 10308 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 10309 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 10310 | L: linux-media@vger.kernel.org |
1da177e4 | 10311 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 10312 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 10313 | S: Odd Fixes |
90d72ac6 | 10314 | F: drivers/media/pci/zoran/ |
1da177e4 | 10315 | |
6920f2cc MK |
10316 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
10317 | M: Minchan Kim <minchan@kernel.org> | |
10318 | M: Nitin Gupta <ngupta@vflare.org> | |
10319 | L: linux-kernel@vger.kernel.org | |
10320 | S: Maintained | |
10321 | F: drivers/block/zram/ | |
10322 | F: Documentation/blockdev/zram.txt | |
10323 | ||
8b4a4080 | 10324 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 10325 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 10326 | S: Maintained |
df621252 | 10327 | F: drivers/tty/serial/zs.* |
8b4a4080 | 10328 | |
eae70d06 MK |
10329 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
10330 | M: Minchan Kim <minchan@kernel.org> | |
10331 | M: Nitin Gupta <ngupta@vflare.org> | |
10332 | L: linux-mm@kvack.org | |
10333 | S: Maintained | |
10334 | F: mm/zsmalloc.c | |
10335 | F: include/linux/zsmalloc.h | |
10336 | ||
0cf31ec1 | 10337 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 10338 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
10339 | L: linux-mm@kvack.org |
10340 | S: Maintained | |
10341 | F: mm/zswap.c | |
10342 | ||
1da177e4 | 10343 | THE REST |
8b58be88 | 10344 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 10345 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 10346 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 10347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 10348 | S: Buried alive in reporters |
34d03cc1 JP |
10349 | F: * |
10350 | F: */ |