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> | |
73 | L: Mailing list that is relevant to this area | |
74 | W: Web-page with status/info | |
8a6e2535 | 75 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
76 | T: SCM tree type and location. |
77 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
78 | S: Status, one of the following: |
79 | Supported: Someone is actually paid to look after this. | |
80 | Maintained: Someone actually looks after it. | |
81 | Odd Fixes: It has a maintainer but they don't have time to do | |
82 | much other than throw the odd patch in. See below.. | |
83 | Orphan: No current maintainer [but maybe you could take the | |
84 | role as you write your new code]. | |
85 | Obsolete: Old code. Something tagged obsolete generally means | |
86 | it has been replaced by a better system and you | |
87 | should be using that. | |
88 | F: Files and directories with wildcard patterns. | |
89 | A trailing slash includes all files and subdirectory files. | |
90 | F: drivers/net/ all files in and below drivers/net | |
91 | F: drivers/net/* all files in drivers/net, but not below | |
92 | F: */net/* all files in "any top level directory"/net | |
93 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
94 | N: Files and directories with regex patterns. |
95 | N: [^a-z]tegra all files whose path contains the word tegra | |
96 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
97 | scripts/get_maintainer.pl has different behavior for files that |
98 | match F: pattern and matches of N: patterns. By default, | |
99 | get_maintainer will not look at git log history when an F: pattern | |
100 | match occurs. When an N: match occurs, git log history is used | |
101 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
102 | X: Files and directories that are NOT maintained, same rules as F: |
103 | Files exclusions are tested before file matches. | |
104 | Can be useful for excluding a specific subdirectory, for instance: | |
105 | F: net/ | |
106 | X: net/ipv6/ | |
107 | matches all files in and below net excluding net/ipv6/ | |
108 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 109 | patch or file. For instance: |
c7c4fb18 | 110 | K: of_get_profile |
bbbe96ed | 111 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 112 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
113 | matches patches or files that contain one or more of the words |
114 | printk, pr_info or pr_err | |
c7c4fb18 | 115 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
116 | |
117 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
118 | order. If you could add yourselves to it in alphabetical order that would be | |
119 | so much easier [Ed] | |
120 | ||
c7c4fb18 | 121 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 122 | |
c7c4fb18 | 123 | ----------------------------------- |
679655da | 124 | |
a6d89915 | 125 | 3C59X NETWORK DRIVER |
8b58be88 | 126 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
127 | L: netdev@vger.kernel.org |
128 | S: Maintained | |
679655da | 129 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 130 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 131 | |
1da177e4 | 132 | 3CR990 NETWORK DRIVER |
8b58be88 | 133 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 134 | L: netdev@vger.kernel.org |
1da177e4 | 135 | S: Maintained |
ca7a8e85 | 136 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 137 | |
c4de0ceb | 138 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
139 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 140 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 141 | W: http://www.lsi.com |
1da177e4 | 142 | S: Supported |
c4de0ceb | 143 | F: drivers/scsi/3w-* |
1da177e4 LT |
144 | |
145 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 146 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
147 | L: linux-scsi@vger.kernel.org |
148 | S: Maintained | |
679655da | 149 | F: drivers/scsi/53c700* |
1da177e4 LT |
150 | |
151 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 152 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
153 | L: linux-hams@vger.kernel.org |
154 | S: Maintained | |
679655da | 155 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 156 | |
1da177e4 | 157 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 158 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
8b58be88 | 159 | M: Francois Romieu <romieu@fr.zoreil.com> |
979b6c13 | 160 | L: netdev@vger.kernel.org |
1da177e4 | 161 | S: Maintained |
a8fe65b8 | 162 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
163 | |
164 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 165 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
166 | L: linux-serial@vger.kernel.org |
167 | W: http://serial.sourceforge.net | |
8ee16a1b | 168 | S: Maintained |
08deed1e | 169 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 170 | F: drivers/tty/serial/8250* |
679655da | 171 | F: include/linux/serial_8250.h |
1da177e4 LT |
172 | |
173 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 174 | L: netdev@vger.kernel.org |
0cf445ce | 175 | S: Orphan / Obsolete |
644570b8 | 176 | F: drivers/net/ethernet/8390/ |
1da177e4 | 177 | |
67543e50 | 178 | 9P FILE SYSTEM |
8b58be88 JP |
179 | M: Eric Van Hensbergen <ericvh@gmail.com> |
180 | M: Ron Minnich <rminnich@sandia.gov> | |
181 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 182 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 183 | W: http://swik.net/v9fs |
8a6e2535 | 184 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 185 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 186 | S: Maintained |
679655da JP |
187 | F: Documentation/filesystems/9p.txt |
188 | F: fs/9p/ | |
2315cb14 RL |
189 | F: net/9p/ |
190 | F: include/net/9p/ | |
191 | F: include/uapi/linux/virtio_9p.h | |
192 | F: include/trace/events/9p.h | |
193 | ||
67543e50 | 194 | |
91952bc0 AP |
195 | A8293 MEDIA DRIVER |
196 | M: Antti Palosaari <crope@iki.fi> | |
197 | L: linux-media@vger.kernel.org | |
198 | W: http://linuxtv.org/ | |
199 | W: http://palosaari.fi/linux/ | |
200 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
201 | T: git git://linuxtv.org/anttip/media_tree.git | |
202 | S: Maintained | |
203 | F: drivers/media/dvb-frontends/a8293* | |
204 | ||
e2d1d6c0 | 205 | AACRAID SCSI RAID DRIVER |
8b58be88 | 206 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
207 | L: linux-scsi@vger.kernel.org |
208 | W: http://www.adaptec.com/ | |
1da177e4 | 209 | S: Supported |
679655da JP |
210 | F: Documentation/scsi/aacraid.txt |
211 | F: drivers/scsi/aacraid/ | |
1da177e4 | 212 | |
249e3c85 | 213 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 214 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
215 | L: lm-sensors@lm-sensors.org |
216 | S: Maintained | |
679655da | 217 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 218 | |
249e3c85 | 219 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 220 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
221 | L: lm-sensors@lm-sensors.org |
222 | S: Maintained | |
679655da | 223 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 224 | |
1da177e4 | 225 | ACENIC DRIVER |
8b58be88 | 226 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
227 | L: linux-acenic@sunsite.dk |
228 | S: Maintained | |
531c4f89 | 229 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 230 | |
e86435eb | 231 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 232 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 233 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
234 | W: http://piie.net/?section=acerhdf |
235 | S: Maintained | |
236 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 237 | |
745a5d21 | 238 | ACER WMI LAPTOP EXTRAS |
182ae55c | 239 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 240 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 241 | S: Maintained |
679655da | 242 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 243 | |
1da177e4 | 244 | ACPI |
49db1903 | 245 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
7fb06082 | 246 | M: Len Brown <lenb@kernel.org> |
6968e50c | 247 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
248 | W: https://01.org/linux-acpi |
249 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
250 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 251 | S: Supported |
679655da JP |
252 | F: drivers/acpi/ |
253 | F: drivers/pnp/pnpacpi/ | |
254 | F: include/linux/acpi.h | |
43368e74 | 255 | F: include/acpi/ |
994b942f | 256 | F: Documentation/acpi |
89ca78a0 | 257 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
258 | F: drivers/pci/*acpi* |
259 | F: drivers/pci/*/*acpi* | |
260 | F: drivers/pci/*/*/*acpi* | |
2754c447 | 261 | F: tools/power/acpi |
8b59a454 | 262 | |
3774929d RW |
263 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
264 | M: Robert Moore <robert.moore@intel.com> | |
265 | M: Lv Zheng <lv.zheng@intel.com> | |
266 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> | |
267 | L: linux-acpi@vger.kernel.org | |
268 | L: devel@acpica.org | |
269 | W: https://acpica.org/ | |
270 | W: https://github.com/acpica/acpica/ | |
271 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
272 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
273 | S: Supported | |
274 | F: drivers/acpi/acpica/ | |
275 | F: include/acpi/ | |
2754c447 | 276 | F: tools/power/acpi/ |
3774929d | 277 | |
8b59a454 | 278 | ACPI FAN DRIVER |
8b58be88 | 279 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 280 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 281 | W: https://01.org/linux-acpi |
8b59a454 | 282 | S: Supported |
679655da | 283 | F: drivers/acpi/fan.c |
1da177e4 | 284 | |
8b59a454 | 285 | ACPI THERMAL DRIVER |
8b58be88 | 286 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 287 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 288 | W: https://01.org/linux-acpi |
8b59a454 | 289 | S: Supported |
679655da | 290 | F: drivers/acpi/*thermal* |
998be20f | 291 | |
359acec8 | 292 | ACPI VIDEO DRIVER |
8b58be88 | 293 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 294 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 295 | W: https://01.org/linux-acpi |
8b59a454 | 296 | S: Supported |
679655da | 297 | F: drivers/acpi/video.c |
998be20f | 298 | |
bff431e4 | 299 | ACPI WMI DRIVER |
d0944853 | 300 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 301 | S: Orphan |
679655da | 302 | F: drivers/platform/x86/wmi.c |
bff431e4 | 303 | |
2f39d519 | 304 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 305 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
306 | W: http://wiki.parisc-linux.org/AD1889 |
307 | L: linux-parisc@vger.kernel.org | |
308 | S: Maintained | |
679655da | 309 | F: sound/pci/ad1889.* |
2f39d519 | 310 | |
527a1a83 MH |
311 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
312 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 313 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 314 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
315 | S: Supported |
316 | F: drivers/misc/ad525x_dpot.c | |
317 | ||
318 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
319 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 320 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 321 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
322 | S: Supported |
323 | F: drivers/regulator/ad5398.c | |
324 | ||
325 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
326 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 327 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 328 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
329 | S: Supported |
330 | F: drivers/input/misc/ad714x.c | |
331 | ||
332 | AD7877 TOUCHSCREEN DRIVER | |
333 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 334 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 335 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
336 | S: Supported |
337 | F: drivers/input/touchscreen/ad7877.c | |
338 | ||
339 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
340 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 341 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 342 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
343 | S: Supported |
344 | F: drivers/input/touchscreen/ad7879.c | |
345 | ||
1330b0dc JK |
346 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
347 | M: Jiri Kosina <jkosina@suse.cz> | |
348 | S: Maintained | |
349 | ||
1da177e4 | 350 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 351 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 352 | L: lm-sensors@lm-sensors.org |
1da177e4 | 353 | S: Maintained |
679655da JP |
354 | F: Documentation/hwmon/adm1025 |
355 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 356 | |
cae2caae | 357 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 358 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
359 | L: lm-sensors@lm-sensors.org |
360 | S: Maintained | |
679655da | 361 | F: drivers/hwmon/adm1029.c |
cae2caae | 362 | |
cc0b88cf | 363 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 364 | L: linux-wireless@vger.kernel.org |
491b26b4 | 365 | W: http://wireless.kernel.org/ |
e71bcbd0 | 366 | S: Orphan |
679655da | 367 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 368 | |
e8e31622 SA |
369 | ADP1653 FLASH CONTROLLER DRIVER |
370 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
371 | L: linux-media@vger.kernel.org | |
372 | S: Maintained | |
373 | F: drivers/media/i2c/adp1653.c | |
374 | F: include/media/adp1653.h | |
375 | ||
527a1a83 MH |
376 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
377 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 378 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 379 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
380 | S: Supported |
381 | F: drivers/mfd/adp5520.c | |
382 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 383 | F: drivers/leds/leds-adp5520.c |
77278d50 | 384 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
385 | F: drivers/input/keyboard/adp5520-keys.c |
386 | ||
387 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
388 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 389 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 390 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
391 | S: Supported |
392 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 393 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
394 | |
395 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
396 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 397 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 398 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
399 | S: Supported |
400 | F: drivers/video/backlight/adp8860_bl.c | |
401 | ||
8c22a8f5 DE |
402 | ADS1015 HARDWARE MONITOR DRIVER |
403 | M: Dirk Eibach <eibach@gdsys.de> | |
404 | L: lm-sensors@lm-sensors.org | |
405 | S: Maintained | |
406 | F: Documentation/hwmon/ads1015 | |
407 | F: drivers/hwmon/ads1015.c | |
408 | F: include/linux/i2c/ads1015.h | |
409 | ||
1da177e4 | 410 | ADT746X FAN DRIVER |
8b58be88 | 411 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 412 | S: Maintained |
679655da | 413 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 414 | |
b058b859 | 415 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 416 | M: Jean Delvare <jdelvare@suse.de> |
b058b859 JD |
417 | L: lm-sensors@lm-sensors.org |
418 | S: Maintained | |
419 | F: Documentation/hwmon/adt7475 | |
420 | F: drivers/hwmon/adt7475.c | |
421 | ||
527a1a83 MH |
422 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
423 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 424 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 425 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
426 | S: Supported |
427 | F: drivers/input/misc/adxl34x.c | |
428 | ||
8c6af9e1 | 429 | ADVANSYS SCSI DRIVER |
8b58be88 | 430 | M: Matthew Wilcox <matthew@wil.cx> |
8c6af9e1 MW |
431 | L: linux-scsi@vger.kernel.org |
432 | S: Maintained | |
679655da JP |
433 | F: Documentation/scsi/advansys.txt |
434 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 435 | |
1da177e4 | 436 | AEDSP16 DRIVER |
8b58be88 | 437 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 438 | S: Maintained |
679655da | 439 | F: sound/oss/aedsp16.c |
1da177e4 | 440 | |
91952bc0 AP |
441 | AF9013 MEDIA DRIVER |
442 | M: Antti Palosaari <crope@iki.fi> | |
443 | L: linux-media@vger.kernel.org | |
444 | W: http://linuxtv.org/ | |
445 | W: http://palosaari.fi/linux/ | |
446 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
447 | T: git git://linuxtv.org/anttip/media_tree.git | |
448 | S: Maintained | |
449 | F: drivers/media/dvb-frontends/af9013* | |
450 | ||
451 | AF9033 MEDIA DRIVER | |
452 | M: Antti Palosaari <crope@iki.fi> | |
453 | L: linux-media@vger.kernel.org | |
454 | W: http://linuxtv.org/ | |
455 | W: http://palosaari.fi/linux/ | |
456 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
457 | T: git git://linuxtv.org/anttip/media_tree.git | |
458 | S: Maintained | |
459 | F: drivers/media/dvb-frontends/af9033* | |
460 | ||
1da177e4 | 461 | AFFS FILE SYSTEM |
6cf515e1 GU |
462 | L: linux-fsdevel@vger.kernel.org |
463 | S: Orphan | |
679655da JP |
464 | F: Documentation/filesystems/affs.txt |
465 | F: fs/affs/ | |
1da177e4 | 466 | |
e2d1d6c0 | 467 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 468 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
469 | L: linux-afs@lists.infradead.org |
470 | S: Supported | |
679655da JP |
471 | F: fs/afs/ |
472 | F: include/net/af_rxrpc.h | |
473 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 474 | |
1da177e4 | 475 | AGPGART DRIVER |
8b58be88 | 476 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 477 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 478 | S: Maintained |
679655da JP |
479 | F: drivers/char/agp/ |
480 | F: include/linux/agp* | |
c117ab84 | 481 | F: include/uapi/linux/agp* |
1da177e4 LT |
482 | |
483 | AHA152X SCSI DRIVER | |
8b58be88 | 484 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
485 | L: linux-scsi@vger.kernel.org |
486 | S: Maintained | |
679655da JP |
487 | F: drivers/scsi/aha152x* |
488 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 489 | |
64624d4f | 490 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 491 | M: Hannes Reinecke <hare@suse.de> |
64624d4f | 492 | L: linux-scsi@vger.kernel.org |
1da177e4 | 493 | S: Maintained |
679655da | 494 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 495 | |
450500ad HV |
496 | AIMSLAB FM RADIO RECEIVER DRIVER |
497 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
498 | L: linux-media@vger.kernel.org | |
499 | T: git git://linuxtv.org/media_tree.git | |
500 | W: http://linuxtv.org | |
501 | S: Maintained | |
502 | F: drivers/media/radio/radio-aimslab* | |
503 | ||
e2d1d6c0 | 504 | AIO |
8b58be88 | 505 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
506 | L: linux-aio@kvack.org |
507 | S: Supported | |
679655da JP |
508 | F: fs/aio.c |
509 | F: include/linux/*aio*.h | |
e2d1d6c0 | 510 | |
1da177e4 | 511 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 512 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 513 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
514 | W: http://www.linux-usb.org/SpeedTouch/ |
515 | S: Maintained | |
679655da JP |
516 | F: drivers/usb/atm/speedtch.c |
517 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 518 | |
272f133a | 519 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 520 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 521 | S: Maintained |
679655da | 522 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 523 | |
4a4e5787 | 524 | ALI1563 I2C DRIVER |
8b58be88 | 525 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 526 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 527 | S: Maintained |
679655da JP |
528 | F: Documentation/i2c/busses/i2c-ali1563 |
529 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 530 | |
1da177e4 | 531 | ALPHA PORT |
8b58be88 | 532 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 533 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 534 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 535 | S: Odd Fixes |
a9406699 | 536 | L: linux-alpha@vger.kernel.org |
679655da | 537 | F: arch/alpha/ |
1da177e4 | 538 | |
16b8b922 | 539 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
0d9327ab | 540 | M: Vince Bridgers <vbridgers2013@gmail.com> |
16b8b922 VB |
541 | L: netdev@vger.kernel.org |
542 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
543 | S: Maintained | |
544 | F: drivers/net/ethernet/altera/ | |
545 | ||
adf9251f TK |
546 | ALTERA UART/JTAG UART SERIAL DRIVERS |
547 | M: Tobias Klauser <tklauser@distanz.ch> | |
548 | L: linux-serial@vger.kernel.org | |
61bd0943 | 549 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
550 | S: Maintained |
551 | F: drivers/tty/serial/altera_uart.c | |
552 | F: drivers/tty/serial/altera_jtaguart.c | |
553 | F: include/linux/altera_uart.h | |
554 | F: include/linux/altera_jtaguart.h | |
555 | ||
f4875e12 TL |
556 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
557 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
558 | L: linux-crypto@vger.kernel.org | |
559 | S: Supported | |
560 | F: drivers/crypto/ccp/ | |
561 | F: include/linux/ccp.h | |
562 | ||
512d1027 | 563 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 564 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
565 | L: lm-sensors@lm-sensors.org |
566 | S: Maintained | |
567 | F: Documentation/hwmon/fam15h_power | |
568 | F: drivers/hwmon/fam15h_power.c | |
569 | ||
167a675a | 570 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 571 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 572 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 573 | S: Supported |
679655da | 574 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 575 | |
f90b8116 | 576 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 577 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 578 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
579 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
580 | S: Supported | |
679655da JP |
581 | F: drivers/char/hw_random/geode-rng.c |
582 | F: drivers/crypto/geode* | |
583 | F: drivers/video/geode/ | |
584 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 585 | |
919ee7dd | 586 | AMD IOMMU (AMD-VI) |
e4110568 | 587 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 588 | L: iommu@lists.linux-foundation.org |
525b233c | 589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 590 | S: Maintained |
b2c16391 JP |
591 | F: drivers/iommu/amd_iommu*.[ch] |
592 | F: include/linux/amd-iommu.h | |
919ee7dd | 593 | |
e7f5b309 | 594 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 595 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
7d2c86b5 | 596 | L: amd64-microcode@amd64.org |
943482d0 | 597 | S: Maintained |
679655da | 598 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 599 | |
284f42b6 | 600 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 601 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 602 | S: Supported |
bd5f47ec | 603 | F: drivers/macintosh/ams/ |
284f42b6 | 604 | |
f94b533d | 605 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
606 | M: Tom Tucker <tom@opengridcomputing.com> |
607 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 608 | L: linux-rdma@vger.kernel.org |
f94b533d | 609 | S: Maintained |
679655da | 610 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 611 | |
531fca16 HV |
612 | ANALOG DEVICES INC AD9389B DRIVER |
613 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
614 | L: linux-media@vger.kernel.org | |
615 | S: Maintained | |
616 | F: drivers/media/i2c/ad9389b* | |
617 | ||
c40ddfa3 HV |
618 | ANALOG DEVICES INC ADV7511 DRIVER |
619 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
620 | L: linux-media@vger.kernel.org | |
621 | S: Maintained | |
622 | F: drivers/media/i2c/adv7511* | |
623 | ||
531fca16 HV |
624 | ANALOG DEVICES INC ADV7604 DRIVER |
625 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
626 | L: linux-media@vger.kernel.org | |
627 | S: Maintained | |
628 | F: drivers/media/i2c/adv7604* | |
629 | ||
c40ddfa3 HV |
630 | ANALOG DEVICES INC ADV7842 DRIVER |
631 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
632 | L: linux-media@vger.kernel.org | |
633 | S: Maintained | |
634 | F: drivers/media/i2c/adv7842* | |
635 | ||
527a1a83 | 636 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 637 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 638 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 639 | W: http://wiki.analog.com/ |
a4edbc10 | 640 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 641 | S: Supported |
39c9d199 | 642 | F: sound/soc/codecs/adau* |
cc52688a | 643 | F: sound/soc/codecs/adav* |
4bdef3bd | 644 | F: sound/soc/codecs/ad1* |
ae48f5ef | 645 | F: sound/soc/codecs/ad7* |
4bdef3bd | 646 | F: sound/soc/codecs/ssm* |
40216ce7 | 647 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 648 | |
527a1a83 | 649 | ANALOG DEVICES INC ASOC DRIVERS |
a4edbc10 | 650 | L: adi-buildroot-devel@lists.sourceforge.net |
527a1a83 MH |
651 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
652 | W: http://blackfin.uclinux.org/ | |
653 | S: Supported | |
654 | F: sound/soc/blackfin/* | |
655 | ||
42269063 | 656 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 657 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 658 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 659 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 660 | S: Maintained |
679655da | 661 | F: sound/aoa/ |
42269063 | 662 | |
1da177e4 | 663 | APM DRIVER |
81024fc4 JK |
664 | M: Jiri Kosina <jkosina@suse.cz> |
665 | S: Odd fixes | |
679655da JP |
666 | F: arch/x86/kernel/apm_32.c |
667 | F: include/linux/apm_bios.h | |
c117ab84 | 668 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 669 | F: drivers/char/apm-emulation.c |
1da177e4 | 670 | |
bd7aa4b2 | 671 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 672 | M: Henrik Rydberg <rydberg@euromail.se> |
bd7aa4b2 HR |
673 | L: linux-input@vger.kernel.org |
674 | S: Maintained | |
679655da | 675 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 676 | |
6f2fad74 | 677 | APPLE SMC DRIVER |
d618540f HR |
678 | M: Henrik Rydberg <rydberg@euromail.se> |
679 | L: lm-sensors@lm-sensors.org | |
6f2fad74 | 680 | S: Maintained |
679655da | 681 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 682 | |
1da177e4 | 683 | APPLETALK NETWORK LAYER |
8b58be88 | 684 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 685 | S: Maintained |
679655da JP |
686 | F: drivers/net/appletalk/ |
687 | F: net/appletalk/ | |
1da177e4 | 688 | |
62a37dc7 LP |
689 | APTINA CAMERA SENSOR PLL |
690 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
691 | L: linux-media@vger.kernel.org | |
692 | S: Maintained | |
693 | F: drivers/media/i2c/aptina-pll.* | |
694 | ||
a480167b | 695 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 696 | M: Viresh Kumar <viresh.linux@gmail.com> |
a480167b VK |
697 | L: linux-ide@vger.kernel.org |
698 | S: Maintained | |
699 | F: include/linux/pata_arasan_cf_data.h | |
700 | F: drivers/ata/pata_arasan_cf.c | |
701 | ||
1154ea7d | 702 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 703 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 704 | S: Maintained |
679655da JP |
705 | F: drivers/video/arcfb.c |
706 | F: drivers/video/fb_defio.c | |
1154ea7d | 707 | |
1da177e4 | 708 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 709 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 710 | S: Maintained |
679655da JP |
711 | F: arch/arm/lib/floppydma.S |
712 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 713 | |
6f96521f WD |
714 | ARM PMU PROFILING AND DEBUGGING |
715 | M: Will Deacon <will.deacon@arm.com> | |
716 | S: Maintained | |
717 | F: arch/arm/kernel/perf_event* | |
718 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
719 | F: arch/arm/include/asm/pmu.h |
720 | F: arch/arm/kernel/hw_breakpoint.c | |
721 | F: arch/arm/include/asm/hw_breakpoint.h | |
722 | ||
d4275354 | 723 | ARM PORT |
8b58be88 | 724 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 725 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
726 | W: http://www.arm.linux.org.uk/ |
727 | S: Maintained | |
728 | F: arch/arm/ | |
729 | ||
d323c243 SB |
730 | ARM SUB-ARCHITECTURES |
731 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 732 | S: Maintained |
d323c243 SB |
733 | F: arch/arm/mach-*/ |
734 | F: arch/arm/plat-*/ | |
735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
736 | ||
cefbf4ea RK |
737 | ARM PRIMECELL AACI PL041 DRIVER |
738 | M: Russell King <linux@arm.linux.org.uk> | |
739 | S: Maintained | |
740 | F: sound/arm/aaci.* | |
741 | ||
742 | ARM PRIMECELL CLCD PL110 DRIVER | |
743 | M: Russell King <linux@arm.linux.org.uk> | |
744 | S: Maintained | |
745 | F: drivers/video/amba-clcd.* | |
746 | ||
747 | ARM PRIMECELL KMI PL050 DRIVER | |
748 | M: Russell King <linux@arm.linux.org.uk> | |
749 | S: Maintained | |
750 | F: drivers/input/serio/ambakmi.* | |
751 | F: include/linux/amba/kmi.h | |
752 | ||
2761f5c2 | 753 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
754 | M: Russell King <linux@arm.linux.org.uk> |
755 | S: Maintained | |
679655da | 756 | F: drivers/mmc/host/mmci.* |
2f748aaa | 757 | F: include/linux/amba/mmci.h |
2761f5c2 | 758 | |
1b4304e5 RK |
759 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
760 | M: Russell King <linux@arm.linux.org.uk> | |
761 | S: Maintained | |
762 | F: drivers/tty/serial/amba-pl01*.c | |
763 | F: include/linux/amba/serial.h | |
2761f5c2 | 764 | |
cefbf4ea RK |
765 | ARM PRIMECELL BUS SUPPORT |
766 | M: Russell King <linux@arm.linux.org.uk> | |
767 | S: Maintained | |
768 | F: drivers/amba/ | |
769 | F: include/linux/amba/bus.h | |
770 | ||
2b7a52a4 | 771 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 772 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 773 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
774 | S: Maintained |
775 | ||
9c784f95 | 776 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 777 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 778 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
779 | S: Maintained |
780 | ||
2b7a52a4 | 781 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 782 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 783 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
784 | S: Maintained |
785 | ||
1b106699 MR |
786 | ARM/Allwinner A1X SoC support |
787 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
788 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
789 | S: Maintained | |
60b0f380 MR |
790 | N: sun[x4567]i |
791 | ||
792 | ARM/Allwinner SoC Clock Support | |
793 | M: Emilio López <emilio@elopez.com.ar> | |
794 | S: Maintained | |
795 | F: drivers/clk/sunxi/ | |
1b106699 | 796 | |
c1fc8675 | 797 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 798 | M: Andrew Victor <linux@maxim.org.za> |
c1fc8675 NF |
799 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
800 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
efc03ecb | 801 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
795fb7e7 | 802 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
803 | W: http://www.linux4sam.org |
804 | S: Supported | |
805 | F: arch/arm/mach-at91/ | |
70e389cc MB |
806 | F: arch/arm/boot/dts/at91*.dts |
807 | F: arch/arm/boot/dts/at91*.dtsi | |
808 | F: arch/arm/boot/dts/sama*.dts | |
809 | F: arch/arm/boot/dts/sama*.dtsi | |
d4a89c7d | 810 | |
986cf2e9 | 811 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
5d3ad8a6 | 812 | M: Rob Herring <robh@kernel.org> |
986cf2e9 RH |
813 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
814 | S: Maintained | |
815 | F: arch/arm/mach-highbank/ | |
816 | ||
d94f944e | 817 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 818 | M: Anton Vorontsov <anton@enomsg.org> |
d94f944e AV |
819 | S: Maintained |
820 | F: arch/arm/mach-cns3xxx/ | |
821 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
822 | ||
386ab516 AS |
823 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
824 | M: Alexander Shiyan <shc_work@mail.ru> | |
825 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
826 | S: Odd Fixes | |
b8ba3874 | 827 | N: clps711x |
386ab516 | 828 | |
2b7a52a4 | 829 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 830 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 831 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 832 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 833 | S: Maintained |
d19d3667 HS |
834 | F: arch/arm/mach-ep93xx/ |
835 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
836 | |
837 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 838 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 839 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
840 | S: Maintained |
841 | ||
d4275354 | 842 | ARM/CLKDEV SUPPORT |
8b58be88 | 843 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 844 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 845 | S: Maintained |
d4275354 | 846 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 847 | F: drivers/clk/clkdev.c |
d4275354 | 848 | |
d48134e7 | 849 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 850 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 851 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
852 | S: Maintained |
853 | ||
94150095 HF |
854 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
855 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
856 | S: Maintained | |
857 | F: arch/arm/mach-ep93xx/micro9.c | |
858 | ||
1da177e4 | 859 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 860 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
861 | S: Maintained |
862 | ||
881a95f9 | 863 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 864 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 865 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 HUK |
866 | T: git git://git.berlios.de/gemini-board |
867 | S: Maintained | |
f49afbb5 | 868 | F: arch/arm/mach-gemini/ |
881a95f9 | 869 | |
a990cbd8 | 870 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
5abf58bf | 871 | M: Barry Song <baohua@kernel.org> |
a990cbd8 | 872 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
85529d14 | 873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
874 | S: Maintained |
875 | F: arch/arm/mach-prima2/ | |
05f30e8d BS |
876 | F: drivers/clk/clk-prima2.c |
877 | F: drivers/clocksource/timer-prima2.c | |
878 | F: drivers/clocksource/timer-marco.c | |
f8505ef5 | 879 | N: [^a-z]sirf |
a990cbd8 | 880 | |
d4275354 | 881 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 882 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 883 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
884 | W: http://www.arm.linux.org.uk/ |
885 | S: Maintained | |
886 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 887 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 888 | |
4721f3ce UKK |
889 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
890 | M: Uwe Kleine-König <kernel@pengutronix.de> | |
891 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
892 | S: Maintained | |
893 | N: efm32 | |
894 | ||
a9da4f7e | 895 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
896 | M: Daniel Ribeiro <drwyrm@gmail.com> |
897 | M: Stefan Schmidt <stefan@openezx.org> | |
898 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 899 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
900 | W: http://www.openezx.org/ |
901 | S: Maintained | |
cafc2265 SS |
902 | T: topgit git://git.openezx.org/openezx.git |
903 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 904 | |
6a915af9 | 905 | ARM/FARADAY FA526 PORT |
162500b3 | 906 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 907 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 908 | S: Maintained |
1fa7e547 | 909 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 910 | F: arch/arm/mm/*-fa* |
6a915af9 | 911 | |
d4275354 | 912 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 913 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 914 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
915 | W: http://www.arm.linux.org.uk/ |
916 | S: Maintained | |
917 | F: arch/arm/include/asm/hardware/dec21285.h | |
918 | F: arch/arm/mach-footbridge/ | |
919 | ||
86183a5f | 920 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
f1c12837 | 921 | M: Shawn Guo <shawn.guo@freescale.com> |
8b58be88 | 922 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 923 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 924 | S: Maintained |
f1c12837 | 925 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
adf79292 | 926 | F: arch/arm/mach-imx/ |
2a82f95c | 927 | F: arch/arm/boot/dts/imx* |
e5dafa22 | 928 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 929 | |
a9866a09 SG |
930 | ARM/FREESCALE MXS ARM ARCHITECTURE |
931 | M: Shawn Guo <shawn.guo@linaro.org> | |
932 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
933 | S: Maintained | |
934 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
935 | F: arch/arm/mach-mxs/ | |
936 | ||
2b7a52a4 | 937 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 938 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 939 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
940 | S: Maintained |
941 | ||
90b8fc34 | 942 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 943 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 944 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
945 | S: Maintained |
946 | ||
ef47d5f0 | 947 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 948 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
949 | M: Paul Parsons <lost.distance@yahoo.com> |
950 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
951 | S: Maintained |
952 | F: arch/arm/mach-pxa/hx4700.c | |
953 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 954 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 955 | |
21f37bc3 | 956 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 957 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
958 | W: www.jlime.com |
959 | S: Maintained | |
084bad91 KE |
960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
961 | F: arch/arm/mach-sa1100/jornada720.c | |
962 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 963 | |
5e767ab9 JMC |
964 | ARM/IGEP MACHINE SUPPORT |
965 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
966 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
967 | L: linux-omap@vger.kernel.org | |
968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
969 | S: Maintained | |
06ff74fd | 970 | F: arch/arm/boot/dts/omap3-igep* |
5e767ab9 | 971 | |
403d2971 MV |
972 | ARM/INCOME PXA270 SUPPORT |
973 | M: Marek Vasut <marek.vasut@gmail.com> | |
974 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
975 | S: Maintained | |
ec154082 | 976 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 977 | |
2b7a52a4 | 978 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 979 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 980 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 981 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 982 | S: Maintained |
e2bdb176 DW |
983 | |
984 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 985 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 986 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 987 | S: Maintained |
2b7a52a4 LB |
988 | |
989 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 990 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 991 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 992 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 993 | S: Maintained |
2b7a52a4 LB |
994 | |
995 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 996 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 997 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 998 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 999 | S: Maintained |
2b7a52a4 | 1000 | |
2b7a52a4 | 1001 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 1002 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1003 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1004 | S: Maintained |
1005 | ||
dfdd8cc9 KH |
1006 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
1007 | M: Imre Kaloz <kaloz@openwrt.org> | |
1008 | M: Krzysztof Halasa <khc@pm.waw.pl> | |
baea7b94 | 1009 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
1010 | S: Maintained |
1011 | F: arch/arm/mach-ixp4xx/ | |
1012 | ||
838553c5 | 1013 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
1014 | M: Jonathan Cameron <jic23@cam.ac.uk> |
1015 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1016 | S: Maintained | |
1017 | F: arch/arm/mach-pxa/stargate2.c | |
1018 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
1019 | ||
2b7a52a4 | 1020 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 1021 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 1022 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 1023 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 1024 | S: Maintained |
2b7a52a4 LB |
1025 | |
1026 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 1027 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1028 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1029 | S: Maintained |
1030 | ||
1154f858 SS |
1031 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
1032 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
1033 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1034 | S: Maintained | |
1035 | F: arch/arm/mach-keystone/ | |
cffa8e3b | 1036 | F: drivers/clk/keystone/ |
317929cd | 1037 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
1154f858 | 1038 | |
2b7a52a4 | 1039 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 1040 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1041 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1042 | S: Maintained |
1043 | ||
3b886171 | 1044 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 1045 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1046 | S: Maintained |
1047 | ||
75f41273 TP |
1048 | ARM/Marvell Armada 370 and Armada XP SOC support |
1049 | M: Jason Cooper <jason@lakedaemon.net> | |
1050 | M: Andrew Lunn <andrew@lunn.ch> | |
1051 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
dcb71503 | 1052 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
75f41273 TP |
1053 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1054 | S: Maintained | |
1055 | F: arch/arm/mach-mvebu/ | |
1056 | ||
40f4978b SH |
1057 | ARM/Marvell Berlin SoC support |
1058 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> | |
1059 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1060 | S: Maintained | |
1061 | F: arch/arm/mach-berlin/ | |
1062 | ||
4f1312b0 NP |
1063 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1064 | M: Jason Cooper <jason@lakedaemon.net> | |
1065 | M: Andrew Lunn <andrew@lunn.ch> | |
dcb71503 | 1066 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
efc03ecb | 1067 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1068 | S: Maintained |
1069 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1070 | F: arch/arm/mach-kirkwood/ |
1071 | F: arch/arm/mach-mv78xx0/ | |
1072 | F: arch/arm/mach-orion5x/ | |
1073 | F: arch/arm/plat-orion/ | |
3b886171 | 1074 | |
d69ac131 AC |
1075 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1076 | M: Alexander Clouter <alex@digriz.org.uk> | |
1077 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1078 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1079 | S: Maintained | |
1080 | F: arch/arm/mach-orion5x/ts78xx-* | |
1081 | ||
adcb079f AB |
1082 | ARM/MICREL KS8695 ARCHITECTURE |
1083 | M: Greg Ungerer <gerg@uclinux.org> | |
1084 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1085 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1086 | S: Odd Fixes |
1087 | ||
d78ff0a5 | 1088 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1089 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1090 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1091 | F: arch/arm/mach-pxa/mioa701.c |
1092 | S: Maintained | |
1093 | ||
9624dfe6 | 1094 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1095 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1096 | S: Maintained |
1097 | ||
e0ee9851 | 1098 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1099 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1100 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1101 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1102 | S: Maintained | |
1103 | F: arch/arm/mach-nomadik/ | |
87572880 | 1104 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1106 | |
9d76295a | 1107 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1108 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1109 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1110 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1111 | S: Supported | |
1112 | ||
0c19d21e DW |
1113 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1114 | M: David Brown <davidb@codeaurora.org> | |
b4c9bfab | 1115 | M: Daniel Walker <dwalker@fifo99.com> |
0c19d21e | 1116 | M: Bryan Huntsman <bryanh@codeaurora.org> |
c68af41d | 1117 | L: linux-arm-msm@vger.kernel.org |
0c19d21e DW |
1118 | F: arch/arm/mach-msm/ |
1119 | F: drivers/video/msm/ | |
1120 | F: drivers/mmc/host/msm_sdcc.c | |
1121 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1122 | F: drivers/tty/serial/msm_serial.h |
1123 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1124 | F: drivers/*/pm8???-* |
31a12b31 | 1125 | F: drivers/mfd/ssbi/ |
ea91db52 | 1126 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1128 | S: Maintained |
1129 | ||
8459c159 | 1130 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1131 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1132 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1133 | S: Maintained |
1134 | ||
5d783a2d | 1135 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1136 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1137 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1138 | W: http://hackndev.com |
1139 | S: Maintained | |
933d35f0 JP |
1140 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1141 | F: arch/arm/mach-pxa/palmtx.c | |
1142 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1143 | F: arch/arm/mach-pxa/palmt5.c | |
1144 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1145 | F: arch/arm/mach-pxa/palmld.c | |
1146 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1147 | F: arch/arm/mach-pxa/palmte2.c | |
1148 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1149 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1150 | |
b57fe924 | 1151 | ARM/PALM TREO SUPPORT |
8b58be88 | 1152 | M: Tomas Cech <sleep_walker@suse.cz> |
75280787 | 1153 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1154 | W: http://hackndev.com |
1155 | S: Maintained | |
b57fe924 JP |
1156 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1157 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1158 | |
c49e1e63 | 1159 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1160 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1161 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1162 | W: http://hackndev.com |
1163 | S: Maintained | |
933d35f0 JP |
1164 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1165 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1166 | |
1da177e4 | 1167 | ARM/PLEB SUPPORT |
8b58be88 | 1168 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1169 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1170 | S: Maintained | |
1171 | ||
1172 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1173 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1174 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1175 | W: http://www.arm.linux.org.uk/ |
1176 | S: Maintained | |
1177 | ||
8fc1b0f8 KG |
1178 | ARM/QUALCOMM SUPPORT |
1179 | M: Kumar Gala <galak@codeaurora.org> | |
1180 | M: David Brown <davidb@codeaurora.org> | |
1181 | L: linux-arm-msm@vger.kernel.org | |
1182 | S: Maintained | |
1183 | F: arch/arm/mach-qcom/ | |
1184 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git | |
1185 | ||
2b7a52a4 | 1186 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1187 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1188 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1189 | S: Maintained |
1190 | ||
d4275354 | 1191 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1192 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1193 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1194 | W: http://www.arm.linux.org.uk/ |
1195 | S: Maintained | |
d4275354 RK |
1196 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1197 | F: arch/arm/include/asm/hardware/ioc.h | |
1198 | F: arch/arm/include/asm/hardware/iomd.h | |
1199 | F: arch/arm/include/asm/hardware/memc.h | |
1200 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1201 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1202 | F: drivers/net/ethernet/i825xx/ether1* |
1203 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1204 | F: drivers/scsi/arm/ |
1205 | ||
08ddbb0a HS |
1206 | ARM/Rockchip SoC support |
1207 | M: Heiko Stuebner <heiko@sntech.de> | |
1208 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1209 | S: Maintained | |
1210 | F: arch/arm/mach-rockchip/ | |
1211 | F: drivers/*/*rockchip* | |
1212 | ||
b21477f9 | 1213 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1214 | M: Ben Dooks <ben-linux@fluff.org> |
482ce512 | 1215 | M: Kukjin Kim <kgene.kim@samsung.com> |
efc03ecb | 1216 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1217 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 BD |
1218 | W: http://www.fluff.org/ben/linux/ |
1219 | S: Maintained | |
6f0589c8 MB |
1220 | F: arch/arm/boot/dts/s3c* |
1221 | F: arch/arm/boot/dts/exynos* | |
482ce512 | 1222 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1223 | F: arch/arm/mach-s3c24*/ |
1224 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1225 | F: drivers/*/*s3c2410* |
1226 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1227 | F: drivers/spi/spi-s3c* |
1228 | F: sound/soc/samsung/* | |
1da177e4 | 1229 | |
0dcecae2 | 1230 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1231 | M: Kukjin Kim <kgene.kim@samsung.com> |
1232 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1233 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
1234 | S: Maintained | |
1235 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1236 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1237 | N: exynos |
f556cb07 | 1238 | |
10ffa964 KP |
1239 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1240 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1241 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1242 | S: Maintained | |
1243 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1244 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1245 | |
3ce4ccb6 KD |
1246 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1247 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1248 | M: Kamil Debski <k.debski@samsung.com> | |
1249 | L: linux-arm-kernel@lists.infradead.org | |
1250 | L: linux-media@vger.kernel.org | |
1251 | S: Maintained | |
1252 | F: drivers/media/platform/s5p-g2d/ | |
1253 | ||
e6a476fd MS |
1254 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1255 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1256 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1257 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1258 | L: linux-arm-kernel@lists.infradead.org |
1259 | L: linux-media@vger.kernel.org | |
1260 | S: Maintained | |
934455d7 | 1261 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1262 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1263 | |
1264 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1265 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1266 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1267 | L: linux-arm-kernel@lists.infradead.org | |
1268 | L: linux-media@vger.kernel.org | |
1269 | S: Maintained | |
90d72ac6 | 1270 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1271 | |
d48d38e8 | 1272 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1273 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1274 | M: Magnus Damm <magnus.damm@gmail.com> |
1275 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1276 | W: http://oss.renesas.com |
bbff48f5 | 1277 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1279 | S: Supported |
1280 | F: arch/arm/mach-shmobile/ | |
1281 | F: drivers/sh/ | |
1282 | ||
66314223 DN |
1283 | ARM/SOCFPGA ARCHITECTURE |
1284 | M: Dinh Nguyen <dinguyen@altera.com> | |
1285 | S: Maintained | |
1286 | F: arch/arm/mach-socfpga/ | |
1287 | ||
1288 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1289 | M: Dinh Nguyen <dinguyen@altera.com> | |
1290 | S: Maintained | |
1291 | F: drivers/clk/socfpga/ | |
1292 | ||
65ebcc11 | 1293 | ARM/STI ARCHITECTURE |
a92177ea SK |
1294 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
1295 | M: Maxime Coquelin <maxime.coquelin@st.com> | |
1296 | M: Patrice Chotard <patrice.chotard@st.com> | |
65ebcc11 SK |
1297 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1298 | L: kernel@stlinux.com | |
1299 | W: http://www.stlinux.com | |
1300 | S: Maintained | |
1301 | F: arch/arm/mach-sti/ | |
a92177ea SK |
1302 | F: arch/arm/boot/dts/sti* |
1303 | F: drivers/clocksource/arm_global_timer.c | |
1304 | F: drivers/reset/sti/ | |
1305 | F: drivers/pinctrl/pinctrl-st.c | |
1306 | F: drivers/media/rc/st_rc.c | |
1307 | F: drivers/i2c/busses/i2c-st.c | |
1308 | F: drivers/tty/serial/st-asc.c | |
65ebcc11 | 1309 | |
2b7a52a4 | 1310 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1311 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1312 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1313 | S: Maintained |
1314 | ||
1bbd7089 | 1315 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1316 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1317 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1318 | S: Maintained | |
1319 | ||
2b7a52a4 | 1320 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1321 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1322 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1323 | S: Maintained |
1324 | ||
98ad6e3b | 1325 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1326 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1327 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1328 | W: http://www.mcuos.com |
1329 | S: Maintained | |
4e89e8f6 | 1330 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1331 | F: drivers/input/keyboard/w90p910_keypad.c |
1332 | F: drivers/input/touchscreen/w90p910_ts.c | |
1333 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1334 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1335 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1336 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1337 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1338 | F: drivers/usb/host/ehci-w90x900.c |
1339 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1340 | |
54274d71 | 1341 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1342 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1343 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1344 | S: Supported | |
1345 | F: arch/arm/mach-u300/ | |
9affbd24 | 1346 | F: drivers/clocksource/timer-u300.c |
54274d71 LW |
1347 | F: drivers/i2c/busses/i2c-stu300.c |
1348 | F: drivers/rtc/rtc-coh901331.c | |
1349 | F: drivers/watchdog/coh901327_wdt.c | |
1350 | F: drivers/dma/coh901318* | |
87572880 LW |
1351 | F: drivers/mfd/ab3100* |
1352 | F: drivers/rtc/rtc-ab3100.c | |
1353 | F: drivers/rtc/rtc-coh901331.c | |
1354 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1355 | |
87572880 | 1356 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1357 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1358 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1359 | S: Maintained | |
1360 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1361 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1362 | F: drivers/dma/ste_dma40* |
e4651a9f | 1363 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1364 | F: drivers/mfd/abx500* |
1365 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1366 | F: drivers/mfd/dbx500* |
1367 | F: drivers/mfd/db8500* | |
1368 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1369 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1370 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1371 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1372 | |
e93fde28 UH |
1373 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
1374 | M: Ulf Hansson <ulf.hansson@linaro.org> | |
1375 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1376 | T: git git://git.linaro.org/people/ulfh/clk.git | |
1377 | S: Maintained | |
1378 | F: drivers/clk/ux500/ | |
1379 | F: include/linux/platform_data/clk-ux500.h | |
1380 | ||
d4275354 | 1381 | ARM/VFP SUPPORT |
8b58be88 | 1382 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1383 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1384 | W: http://www.arm.linux.org.uk/ |
1385 | S: Maintained | |
1386 | F: arch/arm/vfp/ | |
1387 | ||
e66b6d8e MV |
1388 | ARM/VOIPAC PXA270 SUPPORT |
1389 | M: Marek Vasut <marek.vasut@gmail.com> | |
1390 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1391 | S: Maintained | |
1392 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1393 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1394 | |
04529fe2 TP |
1395 | ARM/VT8500 ARM ARCHITECTURE |
1396 | M: Tony Prisk <linux@prisktech.co.nz> | |
1397 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1398 | S: Maintained | |
1399 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1400 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1401 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1402 | F: drivers/mmc/host/wmt-sdmmc.c |
1403 | F: drivers/pwm/pwm-vt8500.c | |
1404 | F: drivers/rtc/rtc-vt8500.c | |
1405 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1406 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1407 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1408 | F: drivers/video/vt8500lcdfb.* |
1409 | F: drivers/video/wm8505fb* | |
1410 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1411 | |
e66b6d8e MV |
1412 | ARM/ZIPIT Z2 SUPPORT |
1413 | M: Marek Vasut <marek.vasut@gmail.com> | |
1414 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1415 | S: Maintained | |
1416 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1417 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1418 | |
51f29d44 MS |
1419 | ARM/ZYNQ ARCHITECTURE |
1420 | M: Michal Simek <michal.simek@xilinx.com> | |
1421 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1422 | W: http://wiki.xilinx.com | |
1423 | T: git git://git.xilinx.com/linux-xlnx.git | |
1424 | S: Supported | |
1425 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1426 | F: drivers/cpuidle/cpuidle-zynq.c |
c2fd4e38 MS |
1427 | N: zynq |
1428 | N: xilinx | |
1429 | F: drivers/clocksource/cadence_ttc_timer.c | |
df8eb569 | 1430 | F: drivers/i2c/busses/i2c-cadence.c |
e3ec3a3d | 1431 | F: drivers/mmc/host/sdhci-of-arasan.c |
51f29d44 | 1432 | |
b8f9879e WD |
1433 | ARM SMMU DRIVER |
1434 | M: Will Deacon <will.deacon@arm.com> | |
1435 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1436 | S: Maintained | |
1437 | F: drivers/iommu/arm-smmu.c | |
1438 | ||
38074229 CM |
1439 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1440 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1441 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1442 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1443 | S: Maintained | |
1444 | F: arch/arm64/ | |
d19766ec | 1445 | F: Documentation/arm64/ |
38074229 | 1446 | |
9d7005f9 LP |
1447 | AS3645A LED FLASH CONTROLLER DRIVER |
1448 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1449 | L: linux-media@vger.kernel.org | |
1450 | T: git git://linuxtv.org/media_tree.git | |
1451 | S: Maintained | |
1452 | F: drivers/media/i2c/as3645a.c | |
1453 | F: include/media/as3645a.h | |
1454 | ||
d58de038 GJ |
1455 | ASC7621 HARDWARE MONITOR DRIVER |
1456 | M: George Joseph <george.joseph@fairview5.com> | |
1457 | L: lm-sensors@lm-sensors.org | |
1458 | S: Maintained | |
1459 | F: Documentation/hwmon/asc7621 | |
1460 | F: drivers/hwmon/asc7621.c | |
1461 | ||
b229ece9 | 1462 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1463 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1464 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1465 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1466 | W: http://acpi4asus.sf.net |
85091b71 | 1467 | S: Maintained |
b229ece9 CC |
1468 | F: drivers/platform/x86/asus*.c |
1469 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1470 | |
953a6479 | 1471 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1472 | M: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1473 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1474 | S: Maintained |
679655da JP |
1475 | F: Documentation/crypto/async-tx-api.txt |
1476 | F: crypto/async_tx/ | |
1477 | F: drivers/dma/ | |
1478 | F: include/linux/dmaengine.h | |
1479 | F: include/linux/async_tx.h | |
b3e5f263 | 1480 | |
a1867d36 | 1481 | AT24 EEPROM DRIVER |
14d77c4d | 1482 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1483 | L: linux-i2c@vger.kernel.org |
1484 | S: Maintained | |
1485 | F: drivers/misc/eeprom/at24.c | |
25f73ed5 | 1486 | F: include/linux/platform_data/at24.h |
a1867d36 | 1487 | |
e7839f25 | 1488 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1489 | M: "Ed L. Cashin" <ecashin@coraid.com> |
eecdf226 | 1490 | W: http://support.coraid.com/support/linux |
1da177e4 | 1491 | S: Supported |
679655da JP |
1492 | F: Documentation/aoe/ |
1493 | F: drivers/block/aoe/ | |
1da177e4 | 1494 | |
9a10a870 | 1495 | ATHEROS ATH GENERIC UTILITIES |
f726ee65 | 1496 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
9a10a870 JP |
1497 | L: linux-wireless@vger.kernel.org |
1498 | S: Supported | |
1499 | F: drivers/net/wireless/ath/* | |
1500 | ||
fa1c114f | 1501 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1502 | M: Jiri Slaby <jirislaby@gmail.com> |
1503 | M: Nick Kossifidis <mickflemm@gmail.com> | |
f726ee65 | 1504 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
fa1c114f JS |
1505 | L: linux-wireless@vger.kernel.org |
1506 | L: ath5k-devel@lists.ath5k.org | |
72c706b7 | 1507 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1508 | S: Maintained |
fa451753 | 1509 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1510 | |
12e62d6f KV |
1511 | ATHEROS ATH6KL WIRELESS DRIVER |
1512 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1513 | L: linux-wireless@vger.kernel.org | |
1514 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1515 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1516 | S: Supported |
1517 | F: drivers/net/wireless/ath/ath6kl/ | |
1518 | ||
2be7d22f VK |
1519 | WILOCITY WIL6210 WIRELESS DRIVER |
1520 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1521 | L: linux-wireless@vger.kernel.org | |
1522 | L: wil6210@qca.qualcomm.com | |
1523 | S: Supported | |
1524 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1525 | F: drivers/net/wireless/ath/wil6210/ | |
1526 | ||
1d7e1e6b CL |
1527 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1528 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1529 | L: linux-wireless@vger.kernel.org | |
1530 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1531 | S: Maintained | |
1532 | F: drivers/net/wireless/ath/carl9170/ | |
1533 | ||
2c2a6172 LT |
1534 | ATK0110 HWMON DRIVER |
1535 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1536 | L: lm-sensors@lm-sensors.org | |
1537 | S: Maintained | |
1538 | F: drivers/hwmon/asus_atk0110.c | |
1539 | ||
6f69a6d7 | 1540 | ATI_REMOTE2 DRIVER |
8b58be88 | 1541 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1542 | S: Maintained |
679655da | 1543 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1544 | |
7ae115b4 | 1545 | ATLX ETHERNET DRIVERS |
8b58be88 | 1546 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1547 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1548 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1549 | W: http://sourceforge.net/projects/atl1 |
1550 | W: http://atl1.sourceforge.net | |
1551 | S: Maintained | |
2b133ad6 | 1552 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1553 | |
1da177e4 | 1554 | ATM |
8b58be88 | 1555 | M: Chas Williams <chas@cmf.nrl.navy.mil> |
476604de | 1556 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1557 | L: netdev@vger.kernel.org |
1da177e4 LT |
1558 | W: http://linux-atm.sourceforge.net |
1559 | S: Maintained | |
679655da JP |
1560 | F: drivers/atm/ |
1561 | F: include/linux/atm* | |
c117ab84 | 1562 | F: include/uapi/linux/atm* |
1da177e4 | 1563 | |
04ac2f46 | 1564 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1565 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1566 | S: Maintained |
1567 | F: drivers/mmc/host/atmel-mci.c | |
1568 | F: drivers/mmc/host/atmel-mci-regs.h | |
1569 | ||
a1cfac48 | 1570 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1571 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1572 | S: Supported |
df621252 | 1573 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1574 | |
b414dc16 NF |
1575 | ATMEL DMA DRIVER |
1576 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1577 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1578 | S: Supported | |
1579 | F: drivers/dma/at_hdmac.c | |
1580 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1581 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1582 | |
888f2804 LD |
1583 | ATMEL I2C DRIVER |
1584 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1585 | L: linux-i2c@vger.kernel.org | |
1586 | S: Supported | |
1587 | F: drivers/i2c/busses/i2c-at91.c | |
1588 | ||
15515545 JW |
1589 | ATMEL ISI DRIVER |
1590 | M: Josh Wu <josh.wu@atmel.com> | |
1591 | L: linux-media@vger.kernel.org | |
1592 | S: Supported | |
f2294c2d | 1593 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1594 | F: include/media/atmel-isi.h |
1595 | ||
8f4c79ce | 1596 | ATMEL LCDFB DRIVER |
8b58be88 | 1597 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1598 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1599 | S: Maintained |
679655da JP |
1600 | F: drivers/video/atmel_lcdfb.c |
1601 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1602 | |
89e5785f | 1603 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1604 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1605 | S: Supported |
9f2f381f | 1606 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1607 | |
754ce4f2 | 1608 | ATMEL SPI DRIVER |
a02875a6 | 1609 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1610 | S: Supported |
9df92e6c | 1611 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1612 | |
e9cb1c5a NF |
1613 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1614 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1615 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1616 | S: Supported | |
1617 | F: drivers/misc/atmel_tclib.c | |
1618 | F: drivers/clocksource/tcb_clksrc.c | |
1619 | ||
914a3f3b | 1620 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1621 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1622 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1623 | S: Supported |
679655da | 1624 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1625 | |
1da177e4 | 1626 | ATMEL WIRELESS DRIVER |
8b58be88 | 1627 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1628 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1629 | W: http://www.thekelleys.org.uk/atmel |
1630 | W: http://atmelwlandriver.sourceforge.net/ | |
1631 | S: Maintained | |
679655da | 1632 | F: drivers/net/wireless/atmel* |
1da177e4 | 1633 | |
26780d9e | 1634 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
b75f0050 JP |
1635 | M: Bradley Grove <linuxdrivers@attotech.com> |
1636 | L: linux-scsi@vger.kernel.org | |
1637 | W: http://www.attotech.com | |
1638 | S: Supported | |
1639 | F: drivers/scsi/esas2r | |
26780d9e | 1640 | |
a92b7b80 | 1641 | AUDIT SUBSYSTEM |
8b58be88 | 1642 | M: Eric Paris <eparis@redhat.com> |
b9a06207 | 1643 | L: linux-audit@redhat.com (subscribers-only) |
ad3f9a22 | 1644 | W: http://people.redhat.com/sgrubb/audit/ |
8c8115fa | 1645 | T: git git://git.infradead.org/users/eparis/audit.git |
a92b7b80 | 1646 | S: Maintained |
679655da | 1647 | F: include/linux/audit.h |
c117ab84 | 1648 | F: include/uapi/linux/audit.h |
679655da | 1649 | F: kernel/audit* |
a92b7b80 | 1650 | |
70e84049 | 1651 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1652 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1653 | W: http://miguelojeda.es/auxdisplay.htm |
1654 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1655 | S: Maintained |
679655da JP |
1656 | F: drivers/auxdisplay/ |
1657 | F: include/linux/cfag12864b.h | |
70e84049 | 1658 | |
5f97f7f9 | 1659 | AVR32 ARCHITECTURE |
e336f61f HCE |
1660 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1661 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 1662 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1663 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1664 | W: http://avrfreaks.net/ |
e336f61f | 1665 | S: Maintained |
679655da | 1666 | F: arch/avr32/ |
5f97f7f9 HS |
1667 | |
1668 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1669 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1670 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
1671 | S: Maintained | |
679655da | 1672 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1673 | |
1da177e4 | 1674 | AX.25 NETWORK LAYER |
8b58be88 | 1675 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 1676 | L: linux-hams@vger.kernel.org |
d34cb28a | 1677 | W: http://www.linux-ax25.org/ |
1da177e4 | 1678 | S: Maintained |
c117ab84 | 1679 | F: include/uapi/linux/ax25.h |
679655da JP |
1680 | F: include/net/ax25.h |
1681 | F: net/ax25/ | |
1da177e4 | 1682 | |
d5269395 | 1683 | AZ6007 DVB DRIVER |
1b2c14b4 | 1684 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d5269395 MCC |
1685 | L: linux-media@vger.kernel.org |
1686 | W: http://linuxtv.org | |
1687 | T: git git://linuxtv.org/media_tree.git | |
1688 | S: Maintained | |
1689 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1690 | ||
6777376e HV |
1691 | AZTECH FM RADIO RECEIVER DRIVER |
1692 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
1693 | L: linux-media@vger.kernel.org | |
1694 | T: git git://linuxtv.org/media_tree.git | |
1695 | W: http://linuxtv.org | |
1696 | S: Maintained | |
1697 | F: drivers/media/radio/radio-aztech* | |
1698 | ||
e2d1d6c0 | 1699 | B43 WIRELESS DRIVER |
8b58be88 | 1700 | M: Stefano Brivio <stefano.brivio@polimi.it> |
e2d1d6c0 | 1701 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1702 | L: b43-dev@lists.infradead.org |
491b26b4 | 1703 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1704 | S: Maintained |
679655da | 1705 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1706 | |
1707 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1708 | M: Larry Finger <Larry.Finger@lwfinger.net> |
1709 | M: Stefano Brivio <stefano.brivio@polimi.it> | |
e2d1d6c0 | 1710 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1711 | L: b43-dev@lists.infradead.org |
491b26b4 | 1712 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1713 | S: Maintained |
679655da | 1714 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1715 | |
300abeb5 | 1716 | BACKLIGHT CLASS/SUBSYSTEM |
6212de88 | 1717 | M: Jingoo Han <jg1.han@samsung.com> |
70d14fcf JH |
1718 | M: Bryan Wu <cooloney@gmail.com> |
1719 | M: Lee Jones <lee.jones@linaro.org> | |
300abeb5 | 1720 | S: Maintained |
679655da JP |
1721 | F: drivers/video/backlight/ |
1722 | F: include/linux/backlight.h | |
300abeb5 | 1723 | |
c6c8fea2 | 1724 | BATMAN ADVANCED |
207df49e | 1725 | M: Marek Lindner <mareklindner@neomailbox.ch> |
c679ff8f | 1726 | M: Simon Wunderlich <sw@simonwunderlich.de> |
207df49e | 1727 | M: Antonio Quartulli <antonio@meshcoding.com> |
c6c8fea2 SE |
1728 | L: b.a.t.m.a.n@lists.open-mesh.org |
1729 | W: http://www.open-mesh.org/ | |
1730 | S: Maintained | |
1731 | F: net/batman-adv/ | |
1732 | ||
e2d1d6c0 | 1733 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1734 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
1735 | L: linux-hams@vger.kernel.org |
1736 | W: http://www.baycom.org/~tom/ham/ham.html | |
1737 | S: Maintained | |
679655da | 1738 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1739 | |
cafe5635 | 1740 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1741 | M: Kent Overstreet <kmo@daterainc.com> |
cafe5635 KO |
1742 | L: linux-bcache@vger.kernel.org |
1743 | W: http://bcache.evilpiepirate.org | |
1744 | S: Maintained: | |
1745 | F: drivers/md/bcache/ | |
1746 | ||
e2d1d6c0 | 1747 | BEFS FILE SYSTEM |
55817d3d | 1748 | S: Orphan |
679655da JP |
1749 | F: Documentation/filesystems/befs.txt |
1750 | F: fs/befs/ | |
e2d1d6c0 RD |
1751 | |
1752 | BFS FILE SYSTEM | |
8b58be88 | 1753 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 1754 | S: Maintained |
679655da JP |
1755 | F: Documentation/filesystems/bfs.txt |
1756 | F: fs/bfs/ | |
c117ab84 | 1757 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1758 | |
1394f032 | 1759 | BLACKFIN ARCHITECTURE |
a4edbc10 SZ |
1760 | M: Steven Miao <realmz6@gmail.com> |
1761 | L: adi-buildroot-devel@lists.sourceforge.net | |
1443176f | 1762 | T: git git://git.code.sf.net/p/adi-linux/code |
e3b2d3f3 BW |
1763 | W: http://blackfin.uclinux.org |
1764 | S: Supported | |
679655da | 1765 | F: arch/blackfin/ |
566da5b2 | 1766 | |
e190d6b1 | 1767 | BLACKFIN EMAC DRIVER |
a4edbc10 | 1768 | L: adi-buildroot-devel@lists.sourceforge.net |
e190d6b1 BW |
1769 | W: http://blackfin.uclinux.org |
1770 | S: Supported | |
7b35f033 | 1771 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1772 | |
566da5b2 | 1773 | BLACKFIN RTC DRIVER |
a4edbc10 | 1774 | L: adi-buildroot-devel@lists.sourceforge.net |
566da5b2 MF |
1775 | W: http://blackfin.uclinux.org |
1776 | S: Supported | |
679655da | 1777 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1778 | |
936ed49a | 1779 | BLACKFIN SDH DRIVER |
109ec8c3 | 1780 | M: Sonic Zhang <sonic.zhang@analog.com> |
a4edbc10 | 1781 | L: adi-buildroot-devel@lists.sourceforge.net |
936ed49a MF |
1782 | W: http://blackfin.uclinux.org |
1783 | S: Supported | |
1784 | F: drivers/mmc/host/bfin_sdh.c | |
1785 | ||
1394f032 | 1786 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1787 | M: Sonic Zhang <sonic.zhang@analog.com> |
a4edbc10 | 1788 | L: adi-buildroot-devel@lists.sourceforge.net |
e3b2d3f3 BW |
1789 | W: http://blackfin.uclinux.org |
1790 | S: Supported | |
8460241e | 1791 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1792 | |
1e6d320f | 1793 | BLACKFIN WATCHDOG DRIVER |
a4edbc10 | 1794 | L: adi-buildroot-devel@lists.sourceforge.net |
1e6d320f BW |
1795 | W: http://blackfin.uclinux.org |
1796 | S: Supported | |
679655da | 1797 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1798 | |
d24ecfcc | 1799 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1800 | M: Sonic Zhang <sonic.zhang@analog.com> |
a4edbc10 | 1801 | L: adi-buildroot-devel@lists.sourceforge.net |
d24ecfcc BW |
1802 | W: http://blackfin.uclinux.org/ |
1803 | S: Supported | |
679655da | 1804 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1805 | |
1e204377 SJ |
1806 | BLACKFIN MEDIA DRIVER |
1807 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
a4edbc10 | 1808 | L: adi-buildroot-devel@lists.sourceforge.net |
1e204377 SJ |
1809 | W: http://blackfin.uclinux.org/ |
1810 | S: Supported | |
1811 | F: drivers/media/platform/blackfin/ | |
1812 | F: drivers/media/i2c/adv7183* | |
1813 | F: drivers/media/i2c/vs6624* | |
1814 | ||
b54cf35a JSM |
1815 | BLINKM RGB LED DRIVER |
1816 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
1817 | S: Maintained | |
1818 | F: drivers/leds/leds-blinkm.c | |
1819 | ||
1da177e4 | 1820 | BLOCK LAYER |
8b58be88 | 1821 | M: Jens Axboe <axboe@kernel.dk> |
08deed1e | 1822 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1823 | S: Maintained |
679655da | 1824 | F: block/ |
1da177e4 | 1825 | |
2b54aaef | 1826 | BLOCK2MTD DRIVER |
8b58be88 | 1827 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
1828 | L: linux-mtd@lists.infradead.org |
1829 | S: Maintained | |
679655da | 1830 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1831 | |
63fbd24e | 1832 | BLUETOOTH DRIVERS |
8b58be88 | 1833 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1834 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1835 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 1836 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 1837 | W: http://www.bluez.org/ |
22e7a424 MH |
1838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1840 | S: Maintained |
679655da | 1841 | F: drivers/bluetooth/ |
1da177e4 | 1842 | |
63fbd24e | 1843 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1844 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1845 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1846 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
1847 | L: linux-bluetooth@vger.kernel.org |
1848 | W: http://www.bluez.org/ | |
22e7a424 MH |
1849 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1850 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1851 | S: Maintained |
679655da JP |
1852 | F: net/bluetooth/ |
1853 | F: include/net/bluetooth/ | |
1da177e4 LT |
1854 | |
1855 | BONDING DRIVER | |
79b30750 | 1856 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
898602a0 | 1857 | M: Veaceslav Falico <vfalico@gmail.com> |
4cd72c6e | 1858 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 1859 | L: netdev@vger.kernel.org |
ce00f85c JC |
1860 | W: http://sourceforge.net/projects/bonding/ |
1861 | S: Supported | |
679655da | 1862 | F: drivers/net/bonding/ |
c117ab84 | 1863 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1864 | |
39105890 | 1865 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1866 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
1867 | L: netdev@vger.kernel.org |
1868 | S: Supported | |
adfc5217 | 1869 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1870 | |
32ec90d5 FF |
1871 | BROADCOM GENET ETHERNET DRIVER |
1872 | M: Florian Fainelli <f.fainelli@gmail.com> | |
1873 | L: netdev@vger.kernel.org | |
1874 | S: Supported | |
1875 | F: drivers/net/ethernet/broadcom/genet/ | |
1876 | ||
948c51e6 | 1877 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1878 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
1879 | L: netdev@vger.kernel.org |
1880 | S: Supported | |
adfc5217 JK |
1881 | F: drivers/net/ethernet/broadcom/bnx2.* |
1882 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1883 | |
4d9d2cb0 | 1884 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
28fb9655 | 1885 | M: Ariel Elior <ariele@broadcom.com> |
4d9d2cb0 ET |
1886 | L: netdev@vger.kernel.org |
1887 | S: Supported | |
adfc5217 | 1888 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1889 | |
90f4c594 | 1890 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
497a045d | 1891 | M: Christian Daudt <bcm@fixthebug.org> |
a3db2bba | 1892 | M: Matt Porter <mporter@linaro.org> |
497a045d | 1893 | L: bcm-kernel-feedback-list@broadcom.com |
90f4c594 | 1894 | T: git git://github.com/broadcom/mach-bcm |
af4b8e37 CD |
1895 | S: Maintained |
1896 | F: arch/arm/mach-bcm/ | |
1897 | F: arch/arm/boot/dts/bcm113* | |
90f4c594 | 1898 | F: arch/arm/boot/dts/bcm216* |
af4b8e37 CD |
1899 | F: arch/arm/boot/dts/bcm281* |
1900 | F: arch/arm/configs/bcm_defconfig | |
1901 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1902 | F: drivers/clocksource/bcm_kona_timer.c | |
1903 | ||
f680f25c SW |
1904 | BROADCOM BCM2835 ARM ARCHICTURE |
1905 | M: Stephen Warren <swarren@wwwdotorg.org> | |
1906 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) | |
1907 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1908 | S: Maintained | |
d30fe627 | 1909 | F: arch/arm/mach-bcm/board_bcm2835.c |
f680f25c SW |
1910 | F: arch/arm/boot/dts/bcm2835* |
1911 | F: arch/arm/configs/bcm2835_defconfig | |
1912 | F: drivers/*/*bcm2835* | |
1913 | ||
5b293ebe HM |
1914 | BROADCOM BCM5301X ARM ARCHICTURE |
1915 | M: Hauke Mehrtens <hauke@hauke-m.de> | |
1916 | L: linux-arm-kernel@lists.infradead.org | |
1917 | S: Maintained | |
1918 | F: arch/arm/mach-bcm/bcm_5301x.c | |
1919 | F: arch/arm/boot/dts/bcm5301x.dtsi | |
1920 | F: arch/arm/boot/dts/bcm470* | |
1921 | ||
948c51e6 | 1922 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1923 | M: Nithin Nayak Sujir <nsujir@broadcom.com> |
8b58be88 | 1924 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
1925 | L: netdev@vger.kernel.org |
1926 | S: Supported | |
adfc5217 | 1927 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1928 | |
a9533e7e HP |
1929 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1930 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 1931 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 1932 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 1933 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 1934 | L: linux-wireless@vger.kernel.org |
5615171c | 1935 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 1936 | S: Supported |
f62ebdd5 | 1937 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1938 | |
9958d6f9 | 1939 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
f69098c5 | 1940 | M: Eddie Wai <eddie.wai@broadcom.com> |
9958d6f9 BPG |
1941 | L: linux-scsi@vger.kernel.org |
1942 | S: Supported | |
1943 | F: drivers/scsi/bnx2fc/ | |
1944 | ||
6a6b5ad0 EW |
1945 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1946 | M: Eddie Wai <eddie.wai@broadcom.com> | |
1947 | L: linux-scsi@vger.kernel.org | |
1948 | S: Supported | |
1949 | F: drivers/scsi/bnx2i/ | |
1950 | ||
7b7f588b MM |
1951 | BROADCOM KONA GPIO DRIVER |
1952 | M: Markus Mayer <markus.mayer@linaro.org> | |
1953 | L: bcm-kernel-feedback-list@broadcom.com | |
1954 | S: Supported | |
1955 | F: drivers/gpio/gpio-bcm-kona.c | |
1956 | F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt | |
1957 | ||
c9678d86 RM |
1958 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1959 | M: Rafał Miłecki <zajec5@gmail.com> | |
1960 | L: linux-wireless@vger.kernel.org | |
1961 | S: Maintained | |
1962 | F: drivers/bcma/ | |
1963 | F: include/linux/bcma/ | |
1964 | ||
7725ccfd | 1965 | BROCADE BFA FC SCSI DRIVER |
aa803370 AG |
1966 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
1967 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> | |
455518e7 JP |
1968 | L: linux-scsi@vger.kernel.org |
1969 | S: Supported | |
1970 | F: drivers/scsi/bfa/ | |
7725ccfd | 1971 | |
8b230ed8 RM |
1972 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1973 | M: Rasesh Mody <rmody@brocade.com> | |
8b230ed8 RM |
1974 | L: netdev@vger.kernel.org |
1975 | S: Supported | |
f844a0ea | 1976 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1977 | |
5cdf7f76 | 1978 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1979 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
1980 | L: linux-scsi@vger.kernel.org |
1981 | S: Supported | |
679655da JP |
1982 | F: block/bsg.c |
1983 | F: include/linux/bsg.h | |
c117ab84 | 1984 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1985 | |
af39917d CL |
1986 | BT87X AUDIO DRIVER |
1987 | M: Clemens Ladisch <clemens@ladisch.de> | |
1988 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
1989 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1990 | S: Maintained | |
1991 | F: Documentation/sound/alsa/Bt87x.txt | |
1992 | F: sound/pci/bt87x.c | |
1993 | ||
ff1d5c2f | 1994 | BT8XXGPIO DRIVER |
eb032b98 | 1995 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
1996 | W: http://bu3sch.de/btgpio.php |
1997 | S: Maintained | |
72dbb705 | 1998 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1999 | |
eb1eb04f | 2000 | BTRFS FILE SYSTEM |
c0778e25 CM |
2001 | M: Chris Mason <clm@fb.com> |
2002 | M: Josef Bacik <jbacik@fb.com> | |
eb1eb04f JP |
2003 | L: linux-btrfs@vger.kernel.org |
2004 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 2005 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 2006 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 2007 | S: Maintained |
679655da JP |
2008 | F: Documentation/filesystems/btrfs.txt |
2009 | F: fs/btrfs/ | |
eb1eb04f | 2010 | |
1da177e4 | 2011 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 2012 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
661263b5 | 2013 | L: linux-media@vger.kernel.org |
96b6aba0 | 2014 | W: http://linuxtv.org |
275ffde4 | 2015 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 2016 | S: Odd fixes |
679655da | 2017 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 2018 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 2019 | |
1f34923c KA |
2020 | BUSLOGIC SCSI DRIVER |
2021 | M: Khalid Aziz <khalid@gonehiking.org> | |
2022 | L: linux-scsi@vger.kernel.org | |
2023 | S: Maintained | |
2024 | F: drivers/scsi/BusLogic.* | |
2025 | F: drivers/scsi/FlashPoint.* | |
2026 | ||
af39917d CL |
2027 | C-MEDIA CMI8788 DRIVER |
2028 | M: Clemens Ladisch <clemens@ladisch.de> | |
2029 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2030 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2031 | S: Maintained | |
2032 | F: sound/pci/oxygen/ | |
2033 | ||
2141355f MS |
2034 | C6X ARCHITECTURE |
2035 | M: Mark Salter <msalter@redhat.com> | |
2036 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
2037 | L: linux-c6x-dev@linux-c6x.org | |
2038 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
2039 | S: Maintained | |
2040 | F: arch/c6x/ | |
2041 | ||
a5432f5a | 2042 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 2043 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
2044 | L: linux-cachefs@redhat.com |
2045 | S: Supported | |
2046 | F: Documentation/filesystems/caching/cachefiles.txt | |
2047 | F: fs/cachefiles/ | |
2048 | ||
c815ca39 HV |
2049 | CADET FM/AM RADIO RECEIVER DRIVER |
2050 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2051 | L: linux-media@vger.kernel.org | |
2052 | T: git git://linuxtv.org/media_tree.git | |
2053 | W: http://linuxtv.org | |
2054 | S: Maintained | |
2055 | F: drivers/media/radio/radio-cadet* | |
2056 | ||
77d5140f | 2057 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 2058 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 2059 | L: linux-media@vger.kernel.org |
275ffde4 | 2060 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 2061 | S: Maintained |
679655da | 2062 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 2063 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 2064 | |
201b6bab | 2065 | CAIF NETWORK LAYER |
5c574f50 | 2066 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
2067 | L: netdev@vger.kernel.org |
2068 | S: Supported | |
2069 | F: Documentation/networking/caif/ | |
2070 | F: drivers/net/caif/ | |
c117ab84 | 2071 | F: include/uapi/linux/caif/ |
201b6bab JP |
2072 | F: include/net/caif/ |
2073 | F: net/caif/ | |
2074 | ||
77dac90f | 2075 | CALGARY x86-64 IOMMU |
8b58be88 JP |
2076 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
2077 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
2078 | L: discuss@x86-64.org |
2079 | S: Maintained | |
679655da JP |
2080 | F: arch/x86/kernel/pci-calgary_64.c |
2081 | F: arch/x86/kernel/tce_64.c | |
2082 | F: arch/x86/include/asm/calgary.h | |
2083 | F: arch/x86/include/asm/tce.h | |
77dac90f | 2084 | |
e2d1d6c0 | 2085 | CAN NETWORK LAYER |
8d15d386 | 2086 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
1caa60b6 | 2087 | L: linux-can@vger.kernel.org |
ec78213a | 2088 | W: http://gitorious.org/linux-can |
405cc273 | 2089 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 2090 | S: Maintained |
f35f6c8f | 2091 | F: Documentation/networking/can.txt |
8d15d386 | 2092 | F: net/can/ |
8d15d386 | 2093 | F: include/linux/can/core.h |
c117ab84 CEB |
2094 | F: include/uapi/linux/can.h |
2095 | F: include/uapi/linux/can/bcm.h | |
2096 | F: include/uapi/linux/can/raw.h | |
2097 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2098 | |
4261a204 | 2099 | CAN NETWORK DRIVERS |
8b58be88 | 2100 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2101 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2102 | L: linux-can@vger.kernel.org |
ec78213a | 2103 | W: http://gitorious.org/linux-can |
405cc273 | 2104 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2105 | S: Maintained |
8d15d386 OH |
2106 | F: drivers/net/can/ |
2107 | F: include/linux/can/dev.h | |
8d15d386 | 2108 | F: include/linux/can/platform/ |
c117ab84 CEB |
2109 | F: include/uapi/linux/can/error.h |
2110 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2111 | |
95d16c72 JM |
2112 | CAPABILITIES |
2113 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2114 | L: linux-security-module@vger.kernel.org | |
6305902c | 2115 | S: Supported |
95d16c72 | 2116 | F: include/linux/capability.h |
c117ab84 | 2117 | F: include/uapi/linux/capability.h |
95d16c72 | 2118 | F: security/capability.c |
6305902c | 2119 | F: security/commoncap.c |
38a94118 | 2120 | F: kernel/capability.c |
95d16c72 | 2121 | |
b8154542 | 2122 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2123 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 SR |
2124 | L: linuxppc-dev@lists.ozlabs.org |
2125 | L: cbe-oss-dev@lists.ozlabs.org | |
b8154542 AB |
2126 | W: http://www.ibm.com/developerworks/power/cell/ |
2127 | S: Supported | |
679655da | 2128 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2129 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2130 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2131 | F: arch/powerpc/oprofile/*cell* |
2132 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2133 | |
9030aaf9 | 2134 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2135 | M: Sage Weil <sage@inktank.com> |
82593f87 | 2136 | L: ceph-devel@vger.kernel.org |
09d90327 | 2137 | W: http://ceph.com/ |
fb99f881 | 2138 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2139 | S: Supported |
2140 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2141 | F: fs/ceph/ |
2142 | F: net/ceph/ | |
2143 | F: include/linux/ceph/ | |
2144 | F: include/linux/crush/ | |
9030aaf9 | 2145 | |
18332a80 | 2146 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2147 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2148 | S: Orphan |
679655da JP |
2149 | F: Documentation/usb/WUSB-Design-overview.txt |
2150 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2151 | F: drivers/usb/host/hwa-hc.c |
2152 | F: drivers/usb/host/whci/ | |
679655da JP |
2153 | F: drivers/usb/wusbcore/ |
2154 | F: include/linux/usb/wusb* | |
18332a80 | 2155 | |
70e84049 | 2156 | CFAG12864B LCD DRIVER |
8b58be88 | 2157 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2158 | W: http://miguelojeda.es/auxdisplay.htm |
2159 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2160 | S: Maintained |
679655da JP |
2161 | F: drivers/auxdisplay/cfag12864b.c |
2162 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2163 | |
2164 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2165 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2166 | W: http://miguelojeda.es/auxdisplay.htm |
2167 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2168 | S: Maintained |
679655da JP |
2169 | F: drivers/auxdisplay/cfag12864bfb.c |
2170 | F: include/linux/cfag12864b.h | |
70e84049 | 2171 | |
704232c2 | 2172 | CFG80211 and NL80211 |
8b58be88 | 2173 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2174 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2175 | W: http://wireless.kernel.org/ |
2176 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2177 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2178 | S: Maintained |
c117ab84 | 2179 | F: include/uapi/linux/nl80211.h |
679655da JP |
2180 | F: include/net/cfg80211.h |
2181 | F: net/wireless/* | |
2182 | X: net/wireless/wext* | |
704232c2 | 2183 | |
46e64261 GKH |
2184 | CHAR and MISC DRIVERS |
2185 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2186 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2188 | S: Supported |
46e64261 GKH |
2189 | F: drivers/char/* |
2190 | F: drivers/misc/* | |
471322a8 | 2191 | F: include/linux/miscdevice.h |
46e64261 | 2192 | |
0a920b5b | 2193 | CHECKPATCH |
8b58be88 | 2194 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2195 | M: Joe Perches <joe@perches.com> |
2196 | S: Maintained | |
679655da | 2197 | F: scripts/checkpatch.pl |
0a920b5b | 2198 | |
f8407f26 HW |
2199 | CHINESE DOCUMENTATION |
2200 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2201 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2202 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2203 | S: Maintained | |
2204 | F: Documentation/zh_CN/ | |
2205 | ||
2721ea2c | 2206 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
eee52f9e | 2207 | M: Peter Chen <Peter.Chen@freescale.com> |
cea8321c | 2208 | T: git git://github.com/hzpeterchen/linux-usb.git |
2721ea2c AS |
2209 | L: linux-usb@vger.kernel.org |
2210 | S: Maintained | |
2211 | F: drivers/usb/chipidea/ | |
2212 | ||
ab043105 OJ |
2213 | CHROME HARDWARE PLATFORM SUPPORT |
2214 | M: Olof Johansson <olof@lixom.net> | |
2215 | S: Maintained | |
2216 | F: drivers/platform/chrome/ | |
2217 | ||
641cb85e | 2218 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2219 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2220 | M: Sujith Sankar <ssujith@cisco.com> |
2221 | M: Govindarajulu Varadarajan <govindarajulu90@gmail.com> | |
5c6652f5 NP |
2222 | M: Neel Patel <neepatel@cisco.com> |
2223 | M: Nishank Trivedi <nistrive@cisco.com> | |
7063fbf2 | 2224 | S: Supported |
a6a5580c | 2225 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2226 | |
e3cf00d0 | 2227 | CISCO VIC LOW LATENCY NIC DRIVER |
b75f0050 JP |
2228 | M: Upinder Malhi <umalhi@cisco.com> |
2229 | S: Supported | |
2230 | F: drivers/infiniband/hw/usnic | |
e3cf00d0 | 2231 | |
2b7a52a4 | 2232 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2233 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2234 | L: netdev@vger.kernel.org |
2235 | S: Maintained | |
57d0b7a0 | 2236 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2237 | |
2b7a52a4 | 2238 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2239 | M: Lennert Buytenhek <kernel@wantstofly.org> |
6372594a | 2240 | L: linux-usb@vger.kernel.org |
2b7a52a4 | 2241 | S: Maintained |
679655da | 2242 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2243 | |
3d4cfdc9 MB |
2244 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
2245 | M: Brian Austin <brian.austin@cirrus.com> | |
2246 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> | |
2247 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2248 | S: Maintained | |
2249 | F: sound/soc/codecs/cs* | |
2250 | ||
94574d9a KRW |
2251 | CLEANCACHE API |
2252 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2253 | L: linux-kernel@vger.kernel.org | |
2254 | S: Maintained | |
2255 | F: mm/cleancache.c | |
2256 | F: include/linux/cleancache.h | |
2257 | ||
d4275354 | 2258 | CLK API |
8b58be88 | 2259 | M: Russell King <linux@arm.linux.org.uk> |
37417046 | 2260 | S: Maintained |
d4275354 RK |
2261 | F: include/linux/clk.h |
2262 | ||
9222d247 JS |
2263 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2264 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2265 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 2266 | L: linux-kernel@vger.kernel.org |
9222d247 JS |
2267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
2268 | S: Supported | |
2269 | F: drivers/clocksource | |
2270 | ||
5df6d737 | 2271 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2272 | M: Hiral Patel <hiralpat@cisco.com> |
2273 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2274 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2275 | L: linux-scsi@vger.kernel.org |
2276 | S: Supported | |
2a99921a | 2277 | F: drivers/scsi/fnic/ |
5df6d737 | 2278 | |
529aa8cb TLSC |
2279 | CMPC ACPI DRIVER |
2280 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2281 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2282 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2283 | S: Supported |
2284 | F: drivers/platform/x86/classmate-laptop.c | |
2285 | ||
74425eee | 2286 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2287 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2288 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2289 | M: Nicolas Palix <nicolas.palix@imag.fr> |
c00b5110 | 2290 | M: Michal Marek <mmarek@suse.cz> |
26de9c26 | 2291 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2293 | W: http://coccinelle.lip6.fr/ |
2294 | S: Supported | |
4b92b2aa | 2295 | F: Documentation/coccinelle.txt |
74425eee NP |
2296 | F: scripts/coccinelle/ |
2297 | F: scripts/coccicheck | |
2298 | ||
1da177e4 | 2299 | CODA FILE SYSTEM |
8b58be88 | 2300 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2301 | M: coda@cs.cmu.edu |
2302 | L: codalist@coda.cs.cmu.edu | |
2303 | W: http://www.coda.cs.cmu.edu/ | |
2304 | S: Maintained | |
679655da JP |
2305 | F: Documentation/filesystems/coda.txt |
2306 | F: fs/coda/ | |
2307 | F: include/linux/coda*.h | |
c117ab84 | 2308 | F: include/uapi/linux/coda*.h |
1da177e4 | 2309 | |
7704addb | 2310 | COMMON CLK FRAMEWORK |
7704addb | 2311 | M: Mike Turquette <mturquette@linaro.org> |
35c1983e | 2312 | L: linux-kernel@vger.kernel.org |
7704addb MT |
2313 | T: git git://git.linaro.org/people/mturquette/linux.git |
2314 | S: Maintained | |
60bea3b5 SW |
2315 | F: drivers/clk/ |
2316 | X: drivers/clk/clkdev.c | |
7704addb | 2317 | F: include/linux/clk-pr* |
60bea3b5 | 2318 | F: include/linux/clk/ |
7704addb | 2319 | |
e2d1d6c0 | 2320 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2321 | M: Steve French <sfrench@samba.org> |
51223df6 | 2322 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2323 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2324 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2325 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2326 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2327 | S: Supported |
679655da JP |
2328 | F: Documentation/filesystems/cifs.txt |
2329 | F: fs/cifs/ | |
e2d1d6c0 | 2330 | |
1da177e4 | 2331 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2332 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2333 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2334 | S: Maintained |
679655da | 2335 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2336 | |
2337 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2338 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2339 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2340 | S: Maintained |
679655da | 2341 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2342 | |
2343 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2344 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2345 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2346 | S: Maintained |
679655da | 2347 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2348 | |
5411552c | 2349 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2350 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2351 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2352 | S: Maintained |
679655da | 2353 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2354 | |
949be0f7 | 2355 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2356 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2357 | L: accessrunner-general@lists.sourceforge.net |
2358 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2359 | S: Maintained |
679655da | 2360 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2361 | |
e2d1d6c0 | 2362 | CONFIGFS |
d6351db2 JB |
2363 | M: Joel Becker <jlbec@evilplan.org> |
2364 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2365 | S: Supported |
679655da JP |
2366 | F: fs/configfs/ |
2367 | F: include/linux/configfs.h | |
e2d1d6c0 | 2368 | |
acb9c1b2 | 2369 | CONNECTOR |
8b58be88 | 2370 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2371 | L: netdev@vger.kernel.org |
2372 | S: Maintained | |
2373 | F: drivers/connector/ | |
2374 | ||
fb3a0fb6 | 2375 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2376 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2377 | M: Li Zefan <lizefan@huawei.com> |
fb3a0fb6 | 2378 | L: containers@lists.linux-foundation.org |
12340313 | 2379 | L: cgroups@vger.kernel.org |
860ca0e6 | 2380 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2381 | S: Maintained |
679655da JP |
2382 | F: include/linux/cgroup* |
2383 | F: kernel/cgroup* | |
8ca739e3 | 2384 | F: mm/*cgroup* |
fb3a0fb6 | 2385 | |
bebe4678 | 2386 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2387 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2388 | L: lm-sensors@lm-sensors.org |
2389 | S: Maintained | |
679655da JP |
2390 | F: Documentation/hwmon/coretemp |
2391 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2392 | |
1da177e4 | 2393 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2394 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2395 | W: http://www.fi.muni.cz/~kas/cosa/ |
2396 | S: Maintained | |
679655da | 2397 | F: drivers/net/wan/cosa* |
1da177e4 | 2398 | |
4371ee35 | 2399 | CPMAC ETHERNET DRIVER |
8b58be88 | 2400 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2401 | L: netdev@vger.kernel.org |
2402 | S: Maintained | |
b544dbac | 2403 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2404 | |
1da177e4 | 2405 | CPU FREQUENCY DRIVERS |
49db1903 | 2406 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
45c009a9 | 2407 | M: Viresh Kumar <viresh.kumar@linaro.org> |
a6c072c7 | 2408 | L: linux-pm@vger.kernel.org |
1da177e4 | 2409 | S: Maintained |
27209d91 VK |
2410 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2411 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2412 | F: drivers/cpufreq/ |
2413 | F: include/linux/cpufreq.h | |
1da177e4 | 2414 | |
8a67f0ef VK |
2415 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2416 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
171d0ba8 | 2417 | M: Sudeep Holla <sudeep.holla@arm.com> |
8a67f0ef VK |
2418 | L: linux-pm@vger.kernel.org |
2419 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2420 | S: Maintained | |
2421 | F: drivers/cpufreq/arm_big_little.h | |
2422 | F: drivers/cpufreq/arm_big_little.c | |
2423 | F: drivers/cpufreq/arm_big_little_dt.c | |
2424 | ||
14d2c34c | 2425 | CPUIDLE DRIVER - ARM BIG LITTLE |
b75f0050 JP |
2426 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
2427 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2428 | L: linux-pm@vger.kernel.org | |
2429 | L: linux-arm-kernel@lists.infradead.org | |
cea8321c | 2430 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
b75f0050 JP |
2431 | S: Maintained |
2432 | F: drivers/cpuidle/cpuidle-big_little.c | |
14d2c34c | 2433 | |
a8e39c35 | 2434 | CPUIDLE DRIVERS |
49db1903 | 2435 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
a8e39c35 DL |
2436 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
2437 | L: linux-pm@vger.kernel.org | |
2438 | S: Maintained | |
cea8321c | 2439 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
a8e39c35 DL |
2440 | F: drivers/cpuidle/* |
2441 | F: include/linux/cpuidle.h | |
2442 | ||
1da177e4 | 2443 | CPUID/MSR DRIVER |
8b58be88 | 2444 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 2445 | S: Maintained |
679655da JP |
2446 | F: arch/x86/kernel/cpuid.c |
2447 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2448 | |
7fe2f639 DB |
2449 | CPU POWER MONITORING SUBSYSTEM |
2450 | M: Dominik Brodowski <linux@dominikbrodowski.net> | |
2451 | M: Thomas Renninger <trenn@suse.de> | |
2452 | S: Maintained | |
14430813 | 2453 | F: tools/power/cpupower/ |
7fe2f639 | 2454 | |
ed90fb4a | 2455 | CPUSETS |
f47b89c7 | 2456 | M: Li Zefan <lizefan@huawei.com> |
230579d7 | 2457 | L: cgroups@vger.kernel.org |
ed90fb4a | 2458 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2459 | W: http://oss.sgi.com/projects/cpusets/ |
230579d7 | 2460 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
f47b89c7 | 2461 | S: Maintained |
679655da JP |
2462 | F: Documentation/cgroups/cpusets.txt |
2463 | F: include/linux/cpuset.h | |
2464 | F: kernel/cpuset.c | |
ed90fb4a | 2465 | |
1da177e4 | 2466 | CRAMFS FILESYSTEM |
ce00f85c | 2467 | W: http://sourceforge.net/projects/cramfs/ |
54886a71 | 2468 | S: Orphan / Obsolete |
679655da JP |
2469 | F: Documentation/filesystems/cramfs.txt |
2470 | F: fs/cramfs/ | |
1da177e4 LT |
2471 | |
2472 | CRIS PORT | |
8b58be88 JP |
2473 | M: Mikael Starvik <starvik@axis.com> |
2474 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 2475 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
2476 | W: http://developer.axis.com |
2477 | S: Maintained | |
679655da | 2478 | F: arch/cris/ |
df621252 | 2479 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2480 | |
2481 | CRYPTO API | |
8b58be88 JP |
2482 | M: Herbert Xu <herbert@gondor.apana.org.au> |
2483 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 2484 | L: linux-crypto@vger.kernel.org |
54e5881d | 2485 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2486 | S: Maintained |
679655da JP |
2487 | F: Documentation/crypto/ |
2488 | F: arch/*/crypto/ | |
2489 | F: crypto/ | |
2490 | F: drivers/crypto/ | |
2491 | F: include/crypto/ | |
1da177e4 | 2492 | |
5b07bd57 | 2493 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2494 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
2495 | L: linux-crypto@vger.kernel.org |
2496 | S: Maintained | |
51a2228a JP |
2497 | F: crypto/ansi_cprng.c |
2498 | F: crypto/rng.c | |
5b07bd57 | 2499 | |
9b4ffa48 | 2500 | CS5535 Audio ALSA driver |
8b58be88 | 2501 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 2502 | S: Maintained |
679655da | 2503 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2504 | |
a910e4a9 | 2505 | CW1200 WLAN driver |
b75f0050 JP |
2506 | M: Solomon Peachy <pizza@shaftnet.org> |
2507 | S: Maintained | |
2508 | F: drivers/net/wireless/cw1200/ | |
a910e4a9 | 2509 | |
6d8425b1 | 2510 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2511 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 2512 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 2513 | L: linux-media@vger.kernel.org |
275ffde4 | 2514 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2515 | W: http://linuxtv.org |
30e10993 | 2516 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2517 | S: Maintained |
679655da | 2518 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2519 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2520 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2521 | |
3f101d91 HV |
2522 | CX2341X MPEG ENCODER HELPER MODULE |
2523 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2524 | L: linux-media@vger.kernel.org | |
2525 | T: git git://linuxtv.org/media_tree.git | |
2526 | W: http://linuxtv.org | |
2527 | S: Maintained | |
c368360b | 2528 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2529 | F: include/media/cx2341x* |
2530 | ||
20357578 | 2531 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2532 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
20357578 MCC |
2533 | L: linux-media@vger.kernel.org |
2534 | W: http://linuxtv.org | |
2535 | T: git git://linuxtv.org/media_tree.git | |
2536 | S: Odd fixes | |
2537 | F: Documentation/video4linux/cx88/ | |
2538 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2539 | |
91952bc0 AP |
2540 | CXD2820R MEDIA DRIVER |
2541 | M: Antti Palosaari <crope@iki.fi> | |
2542 | L: linux-media@vger.kernel.org | |
2543 | W: http://linuxtv.org/ | |
2544 | W: http://palosaari.fi/linux/ | |
2545 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2546 | T: git git://linuxtv.org/anttip/media_tree.git | |
2547 | S: Maintained | |
2548 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2549 | |
e5ec3789 | 2550 | CXGB3 ETHERNET DRIVER (CXGB3) |
cdc99239 | 2551 | M: Santosh Raspatur <santosh@chelsio.com> |
e5ec3789 SW |
2552 | L: netdev@vger.kernel.org |
2553 | W: http://www.chelsio.com | |
2554 | S: Supported | |
f7917c00 | 2555 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2556 | |
2557 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2558 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 2559 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
2560 | W: http://www.openfabrics.org |
2561 | S: Supported | |
679655da | 2562 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2563 | |
be4c9bad RD |
2564 | CXGB4 ETHERNET DRIVER (CXGB4) |
2565 | M: Dimitris Michailidis <dm@chelsio.com> | |
2566 | L: netdev@vger.kernel.org | |
2567 | W: http://www.chelsio.com | |
2568 | S: Supported | |
f7917c00 | 2569 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2570 | |
2571 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2572 | M: Steve Wise <swise@chelsio.com> | |
2573 | L: linux-rdma@vger.kernel.org | |
2574 | W: http://www.openfabrics.org | |
2575 | S: Supported | |
2576 | F: drivers/infiniband/hw/cxgb4/ | |
2577 | ||
5c20a5c7 CL |
2578 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2579 | M: Casey Leedom <leedom@chelsio.com> | |
2580 | L: netdev@vger.kernel.org | |
2581 | W: http://www.chelsio.com | |
2582 | S: Supported | |
f7917c00 | 2583 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2584 | |
b52b97a3 GC |
2585 | STMMAC ETHERNET DRIVER |
2586 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
2587 | L: netdev@vger.kernel.org | |
2588 | W: http://www.stlinux.com | |
2589 | S: Supported | |
7ac6653a | 2590 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2591 | |
1da177e4 | 2592 | CYBERPRO FB DRIVER |
8b58be88 | 2593 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 2594 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
2595 | W: http://www.arm.linux.org.uk/ |
2596 | S: Maintained | |
679655da | 2597 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2598 | |
1da177e4 | 2599 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2600 | W: http://www.cyclades.com/ |
d459883e | 2601 | S: Orphan |
c897401b | 2602 | F: drivers/tty/cyclades.c |
679655da | 2603 | F: include/linux/cyclades.h |
c117ab84 | 2604 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2605 | |
2606 | CYCLADES PC300 DRIVER | |
1da177e4 | 2607 | W: http://www.cyclades.com/ |
d459883e | 2608 | S: Orphan |
679655da | 2609 | F: drivers/net/wan/pc300* |
1da177e4 | 2610 | |
402f6ae4 AP |
2611 | CYPRESS_FIRMWARE MEDIA DRIVER |
2612 | M: Antti Palosaari <crope@iki.fi> | |
2613 | L: linux-media@vger.kernel.org | |
2614 | W: http://linuxtv.org/ | |
2615 | W: http://palosaari.fi/linux/ | |
2616 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2617 | T: git git://linuxtv.org/anttip/media_tree.git | |
2618 | S: Maintained | |
2619 | F: drivers/media/common/cypress_firmware* | |
2620 | ||
e3ae3525 | 2621 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2622 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 2623 | L: linux-input@vger.kernel.org |
be9a6f40 | 2624 | S: Supported |
6305902c JP |
2625 | F: drivers/input/touchscreen/cyttsp* |
2626 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2627 | |
1da177e4 | 2628 | DAMA SLAVE for AX.25 |
8b58be88 | 2629 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
2630 | W: http://yaina.de/jreuter/ |
2631 | W: http://www.qsl.net/dl1bke/ | |
2632 | L: linux-hams@vger.kernel.org | |
2633 | S: Maintained | |
679655da JP |
2634 | F: net/ax25/af_ax25.c |
2635 | F: net/ax25/ax25_dev.c | |
2636 | F: net/ax25/ax25_ds_* | |
2637 | F: net/ax25/ax25_in.c | |
2638 | F: net/ax25/ax25_out.c | |
2639 | F: net/ax25/ax25_timer.c | |
2640 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2641 | |
e2d1d6c0 | 2642 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2643 | L: netdev@vger.kernel.org |
5ff77428 | 2644 | S: Orphan |
679655da | 2645 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2646 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2647 | |
2648 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2649 | M: Kurt Garloff <garloff@suse.de> |
e2d1d6c0 | 2650 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2651 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
e2d1d6c0 | 2652 | S: Maintained |
679655da | 2653 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2654 | |
1da177e4 | 2655 | DC395x SCSI driver |
61eee9a7 | 2656 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
2657 | M: Ali Akcaagac <aliakc@web.de> |
2658 | M: Jamie Lenehan <lenehan@twibble.org> | |
f5df5881 | 2659 | L: dc395x@twibble.org |
cf015e9f JP |
2660 | W: http://twibble.org/dist/dc395x/ |
2661 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ | |
1da177e4 | 2662 | S: Maintained |
679655da JP |
2663 | F: Documentation/scsi/dc395x.txt |
2664 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2665 | |
eb8edb08 | 2666 | DCCP PROTOCOL |
a89d030e | 2667 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 2668 | L: dccp@vger.kernel.org |
c996d8b9 | 2669 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2670 | S: Maintained |
679655da | 2671 | F: include/linux/dccp.h |
c117ab84 | 2672 | F: include/uapi/linux/dccp.h |
679655da JP |
2673 | F: include/linux/tfrc.h |
2674 | F: net/dccp/ | |
eb8edb08 | 2675 | |
1da177e4 | 2676 | DECnet NETWORK LAYER |
1da177e4 LT |
2677 | W: http://linux-decnet.sourceforge.net |
2678 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 2679 | S: Orphan |
679655da JP |
2680 | F: Documentation/networking/decnet.txt |
2681 | F: net/decnet/ | |
1da177e4 LT |
2682 | |
2683 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2684 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 2685 | S: Maintained |
33f810b2 | 2686 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2687 | |
ad8f07cc | 2688 | DELL LAPTOP DRIVER |
8b58be88 | 2689 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
d0944853 | 2690 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 2691 | S: Maintained |
679655da | 2692 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2693 | |
1da177e4 | 2694 | DELL LAPTOP SMM DRIVER |
a1406d87 | 2695 | M: Guenter Roeck <linux@roeck-us.net> |
679655da | 2696 | F: drivers/char/i8k.c |
c117ab84 | 2697 | F: include/uapi/linux/i8k.h |
1da177e4 | 2698 | |
90563ec4 | 2699 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2700 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 2701 | S: Maintained |
679655da JP |
2702 | F: Documentation/dcdbas.txt |
2703 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2704 | |
0b3f6109 | 2705 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2706 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
0b3f6109 | 2707 | S: Maintained |
36b3a96f | 2708 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2709 | |
5efc75e3 PZ |
2710 | DESIGNWARE USB2 DRD IP DRIVER |
2711 | M: Paul Zimmerman <paulz@synopsys.com> | |
2712 | L: linux-usb@vger.kernel.org | |
2713 | S: Maintained | |
197ba5f4 | 2714 | F: drivers/usb/dwc2/ |
5efc75e3 | 2715 | |
94ab23dd FB |
2716 | DESIGNWARE USB3 DRD IP DRIVER |
2717 | M: Felipe Balbi <balbi@ti.com> | |
2718 | L: linux-usb@vger.kernel.org | |
2719 | L: linux-omap@vger.kernel.org | |
2720 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2721 | S: Maintained | |
2722 | F: drivers/usb/dwc3/ | |
2723 | ||
89d07767 KP |
2724 | DEVICE FREQUENCY (DEVFREQ) |
2725 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
2726 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 2727 | L: linux-pm@vger.kernel.org |
89d07767 KP |
2728 | S: Maintained |
2729 | F: drivers/devfreq/ | |
2730 | ||
1da177e4 | 2731 | DEVICE NUMBER REGISTRY |
8b58be88 | 2732 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 2733 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2734 | S: Maintained |
2735 | ||
e2d1d6c0 | 2736 | DEVICE-MAPPER (LVM) |
854ecaad | 2737 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 2738 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 2739 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
2740 | L: dm-devel@redhat.com |
2741 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2742 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
41d35d25 | 2743 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
854ecaad | 2744 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2745 | S: Maintained |
679655da JP |
2746 | F: Documentation/device-mapper/ |
2747 | F: drivers/md/dm* | |
854ecaad | 2748 | F: drivers/md/persistent-data/ |
679655da JP |
2749 | F: include/linux/device-mapper.h |
2750 | F: include/linux/dm-*.h | |
8504eed3 | 2751 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2752 | |
c0d995aa OST |
2753 | DIALOG SEMICONDUCTOR DRIVERS |
2754 | M: Support Opensource <support.opensource@diasemi.com> | |
2755 | W: http://www.dialog-semiconductor.com/products | |
2756 | S: Supported | |
2757 | F: Documentation/hwmon/da90?? | |
2758 | F: drivers/gpio/gpio-da90??.c | |
2759 | F: drivers/hwmon/da90??-hwmon.c | |
2760 | F: drivers/input/misc/da90??_onkey.c | |
2761 | F: drivers/input/touchscreen/da9052_tsi.c | |
2762 | F: drivers/leds/leds-da90??.c | |
2763 | F: drivers/mfd/da903x.c | |
2764 | F: drivers/mfd/da90??-*.c | |
2765 | F: drivers/power/da9052-battery.c | |
2766 | F: drivers/regulator/da903x.c | |
2767 | F: drivers/regulator/da9???-regulator.[ch] | |
2768 | F: drivers/rtc/rtc-da90??.c | |
2769 | F: drivers/video/backlight/da90??_bl.c | |
2770 | F: drivers/watchdog/da90??_wdt.c | |
2771 | F: include/linux/mfd/da903x.h | |
2772 | F: include/linux/mfd/da9052/ | |
2773 | F: include/linux/mfd/da9055/ | |
2774 | F: include/linux/mfd/da9063/ | |
2775 | F: include/sound/da[79]*.h | |
2776 | F: sound/soc/codecs/da[79]*.[ch] | |
2777 | ||
599aa697 LL |
2778 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2779 | M: Lidza Louina <lidza.louina@gmail.com> | |
542f3d5a | 2780 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
2781 | L: driverdev-devel@linuxdriverproject.org |
2782 | S: Maintained | |
2783 | F: drivers/staging/dgnc/ | |
2784 | ||
2785 | DIGI EPCA PCI PRODUCTS | |
2786 | M: Lidza Louina <lidza.louina@gmail.com> | |
abeb935f | 2787 | M: Mark Hounschell <markh@compro.net> |
599aa697 LL |
2788 | L: driverdev-devel@linuxdriverproject.org |
2789 | S: Maintained | |
2790 | F: drivers/staging/dgap/ | |
2791 | ||
335d7c58 | 2792 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2793 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
2794 | L: linux-i2c@vger.kernel.org |
2795 | S: Maintained | |
2796 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2797 | ||
e7839f25 | 2798 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2799 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 2800 | S: Maintained |
679655da JP |
2801 | F: Documentation/filesystems/dnotify.txt |
2802 | F: fs/notify/dnotify/ | |
2803 | F: include/linux/dnotify.h | |
1da177e4 LT |
2804 | |
2805 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2806 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
2807 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2808 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2809 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2810 | S: Maintained | |
2811 | ||
4480f15b | 2812 | DISKQUOTA |
8b58be88 | 2813 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 2814 | S: Maintained |
679655da JP |
2815 | F: Documentation/filesystems/quota.txt |
2816 | F: fs/quota/ | |
2817 | F: include/linux/quota*.h | |
c117ab84 | 2818 | F: include/uapi/linux/quota*.h |
1da177e4 | 2819 | |
702686ad BT |
2820 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2821 | M: Bernie Thompson <bernie@plugable.com> | |
2822 | L: linux-fbdev@vger.kernel.org | |
2823 | S: Maintained | |
2824 | W: http://plugable.com/category/projects/udlfb/ | |
2825 | F: drivers/video/udlfb.c | |
2826 | F: include/video/udlfb.h | |
2827 | F: Documentation/fb/udlfb.txt | |
2828 | ||
e7839f25 | 2829 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2830 | M: Christine Caulfield <ccaulfie@redhat.com> |
2831 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 2832 | L: cluster-devel@redhat.com |
5be7b50f | 2833 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2834 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2835 | S: Supported |
679655da | 2836 | F: fs/dlm/ |
5be7b50f | 2837 | |
53b6b3e0 SS |
2838 | DMA BUFFER SHARING FRAMEWORK |
2839 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
2840 | S: Maintained | |
2841 | L: linux-media@vger.kernel.org | |
2842 | L: dri-devel@lists.freedesktop.org | |
2843 | L: linaro-mm-sig@lists.linaro.org | |
2844 | F: drivers/base/dma-buf* | |
2845 | F: include/linux/dma-buf* | |
2846 | F: Documentation/dma-buf-sharing.txt | |
2847 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2848 | ||
b3e5f263 | 2849 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2850 | M: Vinod Koul <vinod.koul@intel.com> |
ab5f8c6e | 2851 | M: Dan Williams <dan.j.williams@intel.com> |
17b59560 VK |
2852 | L: dmaengine@vger.kernel.org |
2853 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
b3e5f263 | 2854 | S: Supported |
679655da JP |
2855 | F: drivers/dma/ |
2856 | F: include/linux/dma* | |
5dbd05d4 VK |
2857 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2858 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2859 | |
b825037d | 2860 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2861 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
2862 | L: lm-sensors@lm-sensors.org |
2863 | S: Maintained | |
679655da JP |
2864 | F: Documentation/hwmon/dme1737 |
2865 | F: drivers/hwmon/dme1737.c | |
b825037d | 2866 | |
5b9c9bf6 | 2867 | DOCKING STATION DRIVER |
8b58be88 | 2868 | M: Shaohua Li <shaohua.li@intel.com> |
5b9c9bf6 | 2869 | L: linux-acpi@vger.kernel.org |
8b59a454 | 2870 | S: Supported |
679655da | 2871 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2872 | |
7d2c86b5 | 2873 | DOCUMENTATION |
01358e56 | 2874 | M: Randy Dunlap <rdunlap@infradead.org> |
795fb7e7 | 2875 | L: linux-doc@vger.kernel.org |
01358e56 | 2876 | T: quilt http://www.infradead.org/~rdunlap/Doc/patches/ |
795fb7e7 | 2877 | S: Maintained |
679655da | 2878 | F: Documentation/ |
abbaeff3 | 2879 | |
1da177e4 | 2880 | DOUBLETALK DRIVER |
8b58be88 | 2881 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
2882 | L: blinux-list@redhat.com |
2883 | S: Maintained | |
679655da JP |
2884 | F: drivers/char/dtlk.c |
2885 | F: include/linux/dtlk.h | |
1da177e4 | 2886 | |
e2d1d6c0 | 2887 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2888 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
2889 | L: linux-scsi@vger.kernel.org |
2890 | W: http://www.adaptec.com/ | |
2891 | S: Maintained | |
679655da JP |
2892 | F: drivers/scsi/dpt* |
2893 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2894 | |
b411b363 | 2895 | DRBD DRIVER |
28b8e8d4 JP |
2896 | P: Philipp Reisner |
2897 | P: Lars Ellenberg | |
2898 | M: drbd-dev@lists.linbit.com | |
2899 | L: drbd-user@lists.linbit.com | |
2900 | W: http://www.drbd.org | |
2901 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2902 | T: git git://git.drbd.org/drbd-8.3.git | |
2903 | S: Supported | |
2904 | F: drivers/block/drbd/ | |
2905 | F: lib/lru_cache.c | |
2906 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2907 | |
87544653 | 2908 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2909 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 2910 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2911 | S: Supported |
679655da | 2912 | F: Documentation/kobject.txt |
7cfc51b9 | 2913 | F: drivers/base/ |
679655da | 2914 | F: fs/sysfs/ |
87544653 | 2915 | F: fs/debugfs/ |
679655da | 2916 | F: include/linux/kobj* |
87544653 | 2917 | F: include/linux/debugfs.h |
679655da | 2918 | F: lib/kobj* |
1da177e4 LT |
2919 | |
2920 | DRM DRIVERS | |
8b58be88 | 2921 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 2922 | L: dri-devel@lists.freedesktop.org |
b0447888 | 2923 | T: git git://people.freedesktop.org/~airlied/linux |
1da177e4 | 2924 | S: Maintained |
679655da | 2925 | F: drivers/gpu/drm/ |
850e9411 | 2926 | F: include/drm/ |
c117ab84 | 2927 | F: include/uapi/drm/ |
1da177e4 | 2928 | |
566f5939 AD |
2929 | RADEON DRM DRIVERS |
2930 | M: Alex Deucher <alexander.deucher@amd.com> | |
2931 | M: Christian König <christian.koenig@amd.com> | |
2932 | L: dri-devel@lists.freedesktop.org | |
2933 | T: git git://people.freedesktop.org/~agd5f/linux | |
2934 | S: Supported | |
2935 | F: drivers/gpu/drm/radeon/ | |
2936 | F: include/drm/radeon* | |
2937 | F: include/uapi/drm/radeon* | |
2938 | ||
03e255b9 TR |
2939 | DRM PANEL DRIVERS |
2940 | M: Thierry Reding <thierry.reding@gmail.com> | |
2941 | L: dri-devel@lists.freedesktop.org | |
2942 | T: git git://anongit.freedesktop.org/tegra/linux.git | |
2943 | S: Maintained | |
2944 | F: drivers/gpu/drm/drm_panel.c | |
2945 | F: drivers/gpu/drm/panel/ | |
2946 | F: include/drm/drm_panel.h | |
2947 | F: Documentation/devicetree/bindings/panel/ | |
2948 | ||
8daf7473 | 2949 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2950 | M: Daniel Vetter <daniel.vetter@ffwll.ch> |
47f95647 | 2951 | M: Jani Nikula <jani.nikula@linux.intel.com> |
362132d2 | 2952 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 2953 | L: dri-devel@lists.freedesktop.org |
47f95647 | 2954 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
89258a97 | 2955 | T: git git://anongit.freedesktop.org/drm-intel |
8daf7473 | 2956 | S: Supported |
14430813 | 2957 | F: drivers/gpu/drm/i915/ |
8daf7473 | 2958 | F: include/drm/i915* |
c117ab84 | 2959 | F: include/uapi/drm/i915* |
8daf7473 | 2960 | |
398a6d4a KP |
2961 | DRM DRIVERS FOR EXYNOS |
2962 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
2963 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
2964 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
2965 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 2966 | L: dri-devel@lists.freedesktop.org |
25a58030 | 2967 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 2968 | S: Supported |
14430813 | 2969 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 2970 | F: include/drm/exynos* |
c117ab84 | 2971 | F: include/uapi/drm/exynos* |
398a6d4a | 2972 | |
bd3b49f2 | 2973 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2974 | M: Thierry Reding <thierry.reding@gmail.com> |
2975 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
2976 | L: dri-devel@lists.freedesktop.org |
2977 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 2978 | T: git git://anongit.freedesktop.org/tegra/linux.git |
adabdb0c | 2979 | S: Supported |
dee8268f | 2980 | F: drivers/gpu/drm/tegra/ |
a5ad7a63 | 2981 | F: drivers/gpu/host1x/ |
e1e90644 | 2982 | F: include/linux/host1x.h |
a5ad7a63 | 2983 | F: include/uapi/drm/tegra_drm.h |
bd3b49f2 TR |
2984 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2985 | ||
598df1ac AK |
2986 | DSBR100 USB FM RADIO DRIVER |
2987 | M: Alexey Klimov <klimov.linux@gmail.com> | |
2988 | L: linux-media@vger.kernel.org | |
2989 | T: git git://linuxtv.org/media_tree.git | |
2990 | S: Maintained | |
2991 | F: drivers/media/radio/dsbr100.c | |
2992 | ||
1da177e4 | 2993 | DSCC4 DRIVER |
8b58be88 | 2994 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 2995 | L: netdev@vger.kernel.org |
1da177e4 | 2996 | S: Maintained |
679655da | 2997 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2998 | |
91952bc0 AP |
2999 | DVB_USB_AF9015 MEDIA DRIVER |
3000 | M: Antti Palosaari <crope@iki.fi> | |
3001 | L: linux-media@vger.kernel.org | |
3002 | W: http://linuxtv.org/ | |
3003 | W: http://palosaari.fi/linux/ | |
3004 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3005 | T: git git://linuxtv.org/anttip/media_tree.git | |
3006 | S: Maintained | |
3007 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
3008 | ||
3009 | DVB_USB_AF9035 MEDIA DRIVER | |
3010 | M: Antti Palosaari <crope@iki.fi> | |
3011 | L: linux-media@vger.kernel.org | |
3012 | W: http://linuxtv.org/ | |
3013 | W: http://palosaari.fi/linux/ | |
3014 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3015 | T: git git://linuxtv.org/anttip/media_tree.git | |
3016 | S: Maintained | |
3017 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
3018 | ||
3019 | DVB_USB_ANYSEE MEDIA DRIVER | |
3020 | M: Antti Palosaari <crope@iki.fi> | |
3021 | L: linux-media@vger.kernel.org | |
3022 | W: http://linuxtv.org/ | |
3023 | W: http://palosaari.fi/linux/ | |
3024 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3025 | T: git git://linuxtv.org/anttip/media_tree.git | |
3026 | S: Maintained | |
3027 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
3028 | ||
3029 | DVB_USB_AU6610 MEDIA DRIVER | |
3030 | M: Antti Palosaari <crope@iki.fi> | |
3031 | L: linux-media@vger.kernel.org | |
3032 | W: http://linuxtv.org/ | |
3033 | W: http://palosaari.fi/linux/ | |
3034 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3035 | T: git git://linuxtv.org/anttip/media_tree.git | |
3036 | S: Maintained | |
3037 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
3038 | ||
3039 | DVB_USB_CE6230 MEDIA DRIVER | |
3040 | M: Antti Palosaari <crope@iki.fi> | |
3041 | L: linux-media@vger.kernel.org | |
3042 | W: http://linuxtv.org/ | |
3043 | W: http://palosaari.fi/linux/ | |
3044 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3045 | T: git git://linuxtv.org/anttip/media_tree.git | |
3046 | S: Maintained | |
3047 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
3048 | ||
d099dea2 MK |
3049 | DVB_USB_CXUSB MEDIA DRIVER |
3050 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3051 | L: linux-media@vger.kernel.org | |
3052 | W: http://linuxtv.org/ | |
3053 | W: http://github.com/mkrufky | |
3054 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3055 | T: git git://linuxtv.org/media_tree.git | |
3056 | S: Maintained | |
9819da66 | 3057 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 3058 | |
91952bc0 | 3059 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
3060 | M: Antti Palosaari <crope@iki.fi> |
3061 | L: linux-media@vger.kernel.org | |
3062 | W: http://linuxtv.org/ | |
3063 | W: http://palosaari.fi/linux/ | |
3064 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3065 | T: git git://linuxtv.org/anttip/media_tree.git | |
3066 | S: Maintained | |
91952bc0 | 3067 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 3068 | |
5560983b | 3069 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
3070 | M: Antti Palosaari <crope@iki.fi> |
3071 | L: linux-media@vger.kernel.org | |
3072 | W: http://linuxtv.org/ | |
91952bc0 AP |
3073 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
3074 | T: git git://linuxtv.org/anttip/media_tree.git | |
3075 | S: Maintained | |
5560983b | 3076 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 3077 | |
8856f5f2 MK |
3078 | DVB_USB_MXL111SF MEDIA DRIVER |
3079 | M: Michael Krufky <mkrufky@linuxtv.org> | |
3080 | L: linux-media@vger.kernel.org | |
3081 | W: http://linuxtv.org/ | |
3082 | W: http://github.com/mkrufky | |
3083 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3084 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
3085 | S: Maintained | |
3086 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
3087 | ||
91952bc0 AP |
3088 | DVB_USB_RTL28XXU MEDIA DRIVER |
3089 | M: Antti Palosaari <crope@iki.fi> | |
3090 | L: linux-media@vger.kernel.org | |
3091 | W: http://linuxtv.org/ | |
3092 | W: http://palosaari.fi/linux/ | |
3093 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3094 | T: git git://linuxtv.org/anttip/media_tree.git | |
3095 | S: Maintained | |
3096 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
3097 | ||
3098 | DVB_USB_V2 MEDIA DRIVER | |
3099 | M: Antti Palosaari <crope@iki.fi> | |
3100 | L: linux-media@vger.kernel.org | |
3101 | W: http://linuxtv.org/ | |
3102 | W: http://palosaari.fi/linux/ | |
3103 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3104 | T: git git://linuxtv.org/anttip/media_tree.git | |
3105 | S: Maintained | |
3106 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
3107 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
3108 | ||
ac0ac38f | 3109 | DYNAMIC DEBUG |
5c4a97d1 | 3110 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
3111 | S: Maintained |
3112 | F: lib/dynamic_debug.c | |
3113 | F: include/linux/dynamic_debug.h | |
3114 | ||
789c7048 | 3115 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 3116 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 3117 | S: Maintained |
df621252 | 3118 | F: drivers/tty/serial/dz.* |
789c7048 | 3119 | |
91952bc0 AP |
3120 | E4000 MEDIA DRIVER |
3121 | M: Antti Palosaari <crope@iki.fi> | |
3122 | L: linux-media@vger.kernel.org | |
3123 | W: http://linuxtv.org/ | |
3124 | W: http://palosaari.fi/linux/ | |
3125 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3126 | T: git git://linuxtv.org/anttip/media_tree.git | |
3127 | S: Maintained | |
3128 | F: drivers/media/tuners/e4000* | |
3129 | ||
1da177e4 | 3130 | EATA-DMA SCSI DRIVER |
8b58be88 | 3131 | M: Michael Neuffer <mike@i-Connect.Net> |
7d2c86b5 JP |
3132 | L: linux-eata@i-connect.net |
3133 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 3134 | S: Maintained |
679655da | 3135 | F: drivers/scsi/eata* |
1da177e4 LT |
3136 | |
3137 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 3138 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
3139 | L: linux-scsi@vger.kernel.org |
3140 | S: Maintained | |
679655da | 3141 | F: drivers/scsi/eata.c |
1da177e4 LT |
3142 | |
3143 | EATA-PIO SCSI DRIVER | |
8b58be88 | 3144 | M: Michael Neuffer <mike@i-Connect.Net> |
7d2c86b5 JP |
3145 | L: linux-eata@i-connect.net |
3146 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 3147 | S: Maintained |
679655da | 3148 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
3149 | |
3150 | EBTABLES | |
8b58be88 | 3151 | M: Bart De Schuymer <bart.de.schuymer@pandora.be> |
d3ab6fde | 3152 | L: netfilter-devel@vger.kernel.org |
1da177e4 LT |
3153 | W: http://ebtables.sourceforge.net/ |
3154 | S: Maintained | |
679655da | 3155 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 3156 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 3157 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 3158 | |
91952bc0 AP |
3159 | EC100 MEDIA DRIVER |
3160 | M: Antti Palosaari <crope@iki.fi> | |
3161 | L: linux-media@vger.kernel.org | |
3162 | W: http://linuxtv.org/ | |
3163 | W: http://palosaari.fi/linux/ | |
3164 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3165 | T: git git://linuxtv.org/anttip/media_tree.git | |
3166 | S: Maintained | |
3167 | F: drivers/media/dvb-frontends/ec100* | |
3168 | ||
237fead6 | 3169 | ECRYPT FILE SYSTEM |
0de9adf2 | 3170 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 3171 | L: ecryptfs@vger.kernel.org |
24a923e4 | 3172 | W: http://ecryptfs.org |
6dc7516e | 3173 | W: https://launchpad.net/ecryptfs |
237fead6 | 3174 | S: Supported |
679655da JP |
3175 | F: Documentation/filesystems/ecryptfs.txt |
3176 | F: fs/ecryptfs/ | |
237fead6 | 3177 | |
da9bb1d2 | 3178 | EDAC-CORE |
8b58be88 | 3179 | M: Doug Thompson <dougthompson@xmission.com> |
aa15aa0e BP |
3180 | M: Borislav Petkov <bp@alien8.de> |
3181 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> | |
91445c72 | 3182 | L: linux-edac@vger.kernel.org |
0e438e3f | 3183 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3184 | S: Supported |
679655da | 3185 | F: Documentation/edac.txt |
91445c72 | 3186 | F: drivers/edac/ |
679655da | 3187 | F: include/linux/edac.h |
0e438e3f | 3188 | |
c476c23b | 3189 | EDAC-AMD64 |
8b58be88 | 3190 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 3191 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 3192 | L: linux-edac@vger.kernel.org |
c476c23b | 3193 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3194 | S: Maintained |
c476c23b BP |
3195 | F: drivers/edac/amd64_edac* |
3196 | ||
836dae5d RR |
3197 | EDAC-CALXEDA |
3198 | M: Doug Thompson <dougthompson@xmission.com> | |
3199 | M: Robert Richter <rric@kernel.org> | |
3200 | L: linux-edac@vger.kernel.org | |
3201 | W: bluesmoke.sourceforge.net | |
3202 | S: Maintained | |
3203 | F: drivers/edac/highbank* | |
3204 | ||
f65aad41 RB |
3205 | EDAC-CAVIUM |
3206 | M: Ralf Baechle <ralf@linux-mips.org> | |
3207 | M: David Daney <david.daney@cavium.com> | |
3208 | L: linux-edac@vger.kernel.org | |
3209 | L: linux-mips@linux-mips.org | |
3210 | W: bluesmoke.sourceforge.net | |
3211 | S: Supported | |
3212 | F: drivers/edac/octeon_edac* | |
3213 | ||
0e438e3f | 3214 | EDAC-E752X |
8b58be88 JP |
3215 | M: Mark Gross <mark.gross@intel.com> |
3216 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 3217 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3218 | W: bluesmoke.sourceforge.net |
3219 | S: Maintained | |
679655da | 3220 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3221 | |
3222 | EDAC-E7XXX | |
8b58be88 | 3223 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3224 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3225 | W: bluesmoke.sourceforge.net |
3226 | S: Maintained | |
679655da | 3227 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3228 | |
77c5f5d2 | 3229 | EDAC-GHES |
1b2c14b4 | 3230 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
77c5f5d2 MCC |
3231 | L: linux-edac@vger.kernel.org |
3232 | W: bluesmoke.sourceforge.net | |
3233 | S: Maintained | |
2caa67a6 | 3234 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3235 | |
6bc78404 | 3236 | EDAC-I82443BXGX |
8b58be88 | 3237 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3238 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3239 | W: bluesmoke.sourceforge.net |
3240 | S: Maintained | |
679655da | 3241 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3242 | |
3243 | EDAC-I3000 | |
8b58be88 | 3244 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 3245 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3246 | W: bluesmoke.sourceforge.net |
3247 | S: Maintained | |
679655da | 3248 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3249 | |
3250 | EDAC-I5000 | |
8b58be88 | 3251 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3252 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3253 | W: bluesmoke.sourceforge.net |
3254 | S: Maintained | |
679655da | 3255 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3256 | |
44c12cb2 | 3257 | EDAC-I5400 |
1b2c14b4 | 3258 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 | 3259 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
3260 | W: bluesmoke.sourceforge.net |
3261 | S: Maintained | |
679655da | 3262 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3263 | |
3c9c92b6 | 3264 | EDAC-I7300 |
1b2c14b4 | 3265 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3c9c92b6 MCC |
3266 | L: linux-edac@vger.kernel.org |
3267 | W: bluesmoke.sourceforge.net | |
3268 | S: Maintained | |
3269 | F: drivers/edac/i7300_edac.c | |
3270 | ||
67c89316 | 3271 | EDAC-I7CORE |
1b2c14b4 | 3272 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 MCC |
3273 | L: linux-edac@vger.kernel.org |
3274 | W: bluesmoke.sourceforge.net | |
3275 | S: Maintained | |
70aff0ce | 3276 | F: drivers/edac/i7core_edac.c |
67c89316 | 3277 | |
ba9a5918 | 3278 | EDAC-I82975X |
8b58be88 | 3279 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 3280 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 3281 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3282 | W: bluesmoke.sourceforge.net |
3283 | S: Maintained | |
679655da | 3284 | F: drivers/edac/i82975x_edac.c |
ba9a5918 | 3285 | |
ccdfb979 JT |
3286 | EDAC-MPC85XX |
3287 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
3288 | L: linux-edac@vger.kernel.org | |
3289 | W: bluesmoke.sourceforge.net | |
3290 | S: Maintained | |
3291 | F: drivers/edac/mpc85xx_edac.[ch] | |
3292 | ||
ba9a5918 | 3293 | EDAC-PASEMI |
8b58be88 | 3294 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 3295 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3296 | W: bluesmoke.sourceforge.net |
3297 | S: Maintained | |
679655da | 3298 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3299 | |
0e438e3f | 3300 | EDAC-R82600 |
8b58be88 | 3301 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3302 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3303 | W: bluesmoke.sourceforge.net |
3304 | S: Maintained | |
679655da | 3305 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3306 | |
4d096ca7 | 3307 | EDAC-SBRIDGE |
1b2c14b4 | 3308 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
4d096ca7 MCC |
3309 | L: linux-edac@vger.kernel.org |
3310 | W: bluesmoke.sourceforge.net | |
3311 | S: Maintained | |
3312 | F: drivers/edac/sb_edac.c | |
3313 | ||
af39917d CL |
3314 | EDIROL UA-101/UA-1000 DRIVER |
3315 | M: Clemens Ladisch <clemens@ladisch.de> | |
3316 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3317 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3318 | S: Maintained | |
3319 | F: sound/usb/misc/ua101.c | |
3320 | ||
1f7df953 MF |
3321 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3322 | M: Matt Fleming <matt.fleming@intel.com> | |
3323 | L: linux-efi@vger.kernel.org | |
78bef24e | 3324 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3325 | S: Maintained |
3326 | F: Documentation/x86/efi-stub.txt | |
3327 | F: arch/ia64/kernel/efi.c | |
3328 | F: arch/x86/boot/compressed/eboot.[ch] | |
3329 | F: arch/x86/include/asm/efi.h | |
3330 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3331 | F: drivers/firmware/efi/* |
1f7df953 MF |
3332 | F: include/linux/efi*.h |
3333 | ||
d68772b7 MF |
3334 | EFI VARIABLE FILESYSTEM |
3335 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
3336 | M: Jeremy Kerr <jk@ozlabs.org> | |
3337 | M: Matt Fleming <matt.fleming@intel.com> | |
3338 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3339 | L: linux-efi@vger.kernel.org | |
3340 | S: Maintained | |
3341 | F: fs/efivarfs/ | |
3342 | ||
85a00d9b PJ |
3343 | EFIFB FRAMEBUFFER DRIVER |
3344 | L: linux-fbdev@vger.kernel.org | |
3345 | M: Peter Jones <pjones@redhat.com> | |
3346 | S: Maintained | |
3347 | F: drivers/video/efifb.c | |
3348 | ||
0bee8d28 JT |
3349 | EFS FILESYSTEM |
3350 | W: http://aeschi.ch.eu.org/efs/ | |
3351 | S: Orphan | |
679655da | 3352 | F: fs/efs/ |
0bee8d28 | 3353 | |
4480f15b | 3354 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3355 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
3356 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 3357 | L: linux-rdma@vger.kernel.org |
fab97220 | 3358 | S: Supported |
679655da | 3359 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3360 | |
aa8a9e25 | 3361 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3362 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
3363 | L: netdev@vger.kernel.org |
3364 | S: Maintained | |
9aa32835 | 3365 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3366 | |
f0319efe | 3367 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3368 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
f0319efe MCC |
3369 | L: linux-media@vger.kernel.org |
3370 | W: http://linuxtv.org | |
3371 | T: git git://linuxtv.org/media_tree.git | |
3372 | S: Maintained | |
3373 | F: drivers/media/usb/em28xx/ | |
3374 | ||
3e3a7d66 | 3375 | EMBEDDED LINUX |
8b58be88 JP |
3376 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
3377 | M: Matt Mackall <mpm@selenic.com> | |
3378 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
3379 | L: linux-embedded@vger.kernel.org |
3380 | S: Maintained | |
3381 | ||
3a1c1d44 | 3382 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3383 | M: James Smart <james.smart@emulex.com> |
ce00f85c JC |
3384 | L: linux-scsi@vger.kernel.org |
3385 | W: http://sourceforge.net/projects/lpfcxxxx | |
3386 | S: Supported | |
679655da | 3387 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3388 | |
5f5bac82 | 3389 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3390 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
3391 | S: Maintained |
3392 | F: drivers/misc/cb710/ | |
3393 | F: drivers/mmc/host/cb710-mmc.* | |
3394 | F: include/linux/cb710.h | |
3395 | ||
931e39a1 ML |
3396 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3397 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
3398 | S: Maintained | |
2a837449 | 3399 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3400 | |
ec207dcc GS |
3401 | ENHANCED ERROR HANDLING (EEH) |
3402 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
3403 | L: linuxppc-dev@lists.ozlabs.org | |
3404 | S: Supported | |
3405 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3406 | F: arch/powerpc/kernel/eeh*.c | |
3407 | ||
d5ca9006 | 3408 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3409 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 3410 | S: Maintained |
084bad91 | 3411 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3412 | F: drivers/video/s1d13xxxfb.c |
3413 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3414 | |
1da177e4 | 3415 | ETHERNET BRIDGE |
adbbf69d | 3416 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 3417 | L: bridge@lists.linux-foundation.org |
4c325313 | 3418 | L: netdev@vger.kernel.org |
c996d8b9 | 3419 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3420 | S: Maintained |
679655da JP |
3421 | F: include/linux/netfilter_bridge/ |
3422 | F: net/bridge/ | |
1da177e4 | 3423 | |
22f08ad9 FF |
3424 | ETHERNET PHY LIBRARY |
3425 | M: Florian Fainelli <f.fainelli@gmail.com> | |
3426 | L: netdev@vger.kernel.org | |
3427 | S: Maintained | |
3428 | F: include/linux/phy.h | |
3429 | F: include/linux/phy_fixed.h | |
3430 | F: drivers/net/phy/ | |
3431 | F: Documentation/networking/phy.txt | |
3432 | F: drivers/of/of_mdio.c | |
3433 | F: drivers/of/of_net.c | |
3434 | ||
1da177e4 | 3435 | EXT2 FILE SYSTEM |
01971952 | 3436 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 3437 | L: linux-ext4@vger.kernel.org |
1da177e4 | 3438 | S: Maintained |
679655da JP |
3439 | F: Documentation/filesystems/ext2.txt |
3440 | F: fs/ext2/ | |
3441 | F: include/linux/ext2* | |
1da177e4 LT |
3442 | |
3443 | EXT3 FILE SYSTEM | |
01971952 | 3444 | M: Jan Kara <jack@suse.cz> |
8b58be88 | 3445 | M: Andrew Morton <akpm@linux-foundation.org> |
3c373a5f | 3446 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf EM |
3447 | L: linux-ext4@vger.kernel.org |
3448 | S: Maintained | |
679655da JP |
3449 | F: Documentation/filesystems/ext3.txt |
3450 | F: fs/ext3/ | |
72be2ccf EM |
3451 | |
3452 | EXT4 FILE SYSTEM | |
8b58be88 | 3453 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 3454 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 3455 | L: linux-ext4@vger.kernel.org |
08a225f1 | 3456 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3457 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3458 | S: Maintained |
679655da JP |
3459 | F: Documentation/filesystems/ext4.txt |
3460 | F: fs/ext4/ | |
1da177e4 | 3461 | |
c5532b09 | 3462 | Extended Verification Module (EVM) |
74dd744f MZ |
3463 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
3464 | L: linux-ima-devel@lists.sourceforge.net | |
3465 | L: linux-security-module@vger.kernel.org | |
c5532b09 MZ |
3466 | S: Supported |
3467 | F: security/integrity/evm/ | |
3468 | ||
df6b3cfe MH |
3469 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3470 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3471 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3472 | L: linux-kernel@vger.kernel.org | |
81df63a9 | 3473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
df6b3cfe MH |
3474 | S: Maintained |
3475 | F: drivers/extcon/ | |
3476 | F: Documentation/extcon/ | |
3477 | ||
e2a75c44 JH |
3478 | EXYNOS DP DRIVER |
3479 | M: Jingoo Han <jg1.han@samsung.com> | |
3480 | L: dri-devel@lists.freedesktop.org | |
3481 | S: Maintained | |
3482 | F: drivers/gpu/drm/exynos/exynos_dp* | |
3483 | ||
33ad3912 DL |
3484 | EXYNOS MIPI DISPLAY DRIVERS |
3485 | M: Inki Dae <inki.dae@samsung.com> | |
3486 | M: Donghwa Lee <dh09.lee@samsung.com> | |
3487 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3488 | L: linux-fbdev@vger.kernel.org | |
3489 | S: Maintained | |
3490 | F: drivers/video/exynos/exynos_mipi* | |
3491 | F: include/video/exynos_mipi* | |
3492 | ||
e53004e2 | 3493 | F71805F HARDWARE MONITORING DRIVER |
7c81c60f | 3494 | M: Jean Delvare <jdelvare@suse.de> |
e53004e2 JD |
3495 | L: lm-sensors@lm-sensors.org |
3496 | S: Maintained | |
679655da JP |
3497 | F: Documentation/hwmon/f71805f |
3498 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3499 | |
eea977ed MB |
3500 | FC0011 TUNER DRIVER |
3501 | M: Michael Buesch <m@bues.ch> | |
3502 | L: linux-media@vger.kernel.org | |
3503 | S: Maintained | |
ccae7af2 MCC |
3504 | F: drivers/media/tuners/fc0011.h |
3505 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3506 | |
91952bc0 AP |
3507 | FC2580 MEDIA DRIVER |
3508 | M: Antti Palosaari <crope@iki.fi> | |
3509 | L: linux-media@vger.kernel.org | |
3510 | W: http://linuxtv.org/ | |
3511 | W: http://palosaari.fi/linux/ | |
3512 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3513 | T: git git://linuxtv.org/anttip/media_tree.git | |
3514 | S: Maintained | |
3515 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3516 | |
88b2dbdb EP |
3517 | FANOTIFY |
3518 | M: Eric Paris <eparis@redhat.com> | |
3519 | S: Maintained | |
3520 | F: fs/notify/fanotify/ | |
3521 | F: include/linux/fanotify.h | |
c117ab84 | 3522 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3523 | |
1da177e4 | 3524 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3525 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
3526 | W: http://www.farsite.co.uk/ |
3527 | S: Supported | |
679655da | 3528 | F: drivers/net/wan/farsync.* |
1da177e4 | 3529 | |
c5408b88 | 3530 | FAULT INJECTION SUPPORT |
8b58be88 | 3531 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 3532 | S: Supported |
679655da JP |
3533 | F: Documentation/fault-injection/ |
3534 | F: lib/fault-inject.c | |
c5408b88 | 3535 | |
cae727db RL |
3536 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3537 | M: Robert Love <robert.w.love@intel.com> | |
f4aaea6d | 3538 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
3539 | W: www.Open-FCoE.org |
3540 | S: Supported | |
3541 | F: drivers/scsi/libfc/ | |
3542 | F: drivers/scsi/fcoe/ | |
3543 | F: include/scsi/fc/ | |
3544 | F: include/scsi/libfc.h | |
3545 | F: include/scsi/libfcoe.h | |
c117ab84 | 3546 | F: include/uapi/scsi/fc/ |
cae727db | 3547 | |
e2d1d6c0 | 3548 | FILE LOCKING (flock() and fcntl()/lockf()) |
8c836fa8 | 3549 | M: Jeff Layton <jlayton@poochiereds.net> |
18156e7e | 3550 | M: J. Bruce Fields <bfields@fieldses.org> |
e2d1d6c0 | 3551 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 3552 | S: Maintained |
679655da JP |
3553 | F: include/linux/fcntl.h |
3554 | F: include/linux/fs.h | |
c117ab84 CEB |
3555 | F: include/uapi/linux/fcntl.h |
3556 | F: include/uapi/linux/fs.h | |
679655da JP |
3557 | F: fs/fcntl.c |
3558 | F: fs/locks.c | |
1da177e4 | 3559 | |
e2d1d6c0 | 3560 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3561 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 3562 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 3563 | S: Maintained |
679655da | 3564 | F: fs/* |
173acc7c | 3565 | |
b26e0ed4 | 3566 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3567 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
3568 | L: lm-sensors@lm-sensors.org |
3569 | S: Maintained | |
d5ca6918 JP |
3570 | F: drivers/hwmon/f75375s.c |
3571 | F: include/linux/f75375s.h | |
b26e0ed4 | 3572 | |
a331b0c3 CL |
3573 | FIREWIRE AUDIO DRIVERS |
3574 | M: Clemens Ladisch <clemens@ladisch.de> | |
3575 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3576 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3577 | S: Maintained | |
3578 | F: sound/firewire/ | |
3579 | ||
eb86ec51 SR |
3580 | FIREWIRE MEDIA DRIVERS (firedtv) |
3581 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
3582 | L: linux-media@vger.kernel.org | |
3583 | L: linux1394-devel@lists.sourceforge.net | |
3584 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3585 | S: Maintained | |
3586 | F: drivers/media/firewire/ | |
3587 | ||
a511ce33 CB |
3588 | FIREWIRE SBP-2 TARGET |
3589 | M: Chris Boot <bootc@bootc.net> | |
3590 | L: linux-scsi@vger.kernel.org | |
3591 | L: target-devel@vger.kernel.org | |
3592 | L: linux1394-devel@lists.sourceforge.net | |
3593 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3594 | S: Maintained | |
3595 | F: drivers/target/sbp/ | |
3596 | ||
7d2c86b5 | 3597 | FIREWIRE SUBSYSTEM |
8b58be88 | 3598 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 3599 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 3600 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3601 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3602 | S: Maintained |
679655da | 3603 | F: drivers/firewire/ |
8f06ce3b SR |
3604 | F: include/linux/firewire.h |
3605 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3606 | F: tools/firewire/ |
e2d1d6c0 RD |
3607 | |
3608 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3609 | M: Ming Lei <ming.lei@canonical.com> |
3610 | L: linux-kernel@vger.kernel.org | |
3611 | S: Maintained | |
679655da JP |
3612 | F: Documentation/firmware_class/ |
3613 | F: drivers/base/firmware*.c | |
3614 | F: include/linux/firmware.h | |
e2d1d6c0 | 3615 | |
f730e3dc | 3616 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3617 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
3618 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
3619 | S: Maintained | |
3620 | F: drivers/block/rsxx/ | |
3621 | ||
8206f664 JK |
3622 | FLOPPY DRIVER |
3623 | M: Jiri Kosina <jkosina@suse.cz> | |
3624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3625 | S: Odd fixes | |
3626 | F: drivers/block/floppy.c | |
3627 | ||
9c9f32ed AR |
3628 | FMC SUBSYSTEM |
3629 | M: Alessandro Rubini <rubini@gnudd.com> | |
3630 | W: http://www.ohwr.org/projects/fmc-bus | |
3631 | S: Supported | |
3632 | F: drivers/fmc/ | |
3633 | F: include/linux/fmc*.h | |
3634 | F: include/linux/ipmi-fru.h | |
3635 | K: fmc_d.*register | |
3636 | ||
e2d1d6c0 | 3637 | FPU EMULATOR |
8b58be88 | 3638 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 3639 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3640 | S: Maintained |
679655da | 3641 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3642 | |
3643 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3644 | L: netdev@vger.kernel.org |
c173bfac | 3645 | S: Orphan |
679655da JP |
3646 | F: drivers/net/wan/dlci.c |
3647 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3648 | |
3649 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3650 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
3651 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 3652 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 3653 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3654 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3655 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3656 | S: Maintained |
679655da | 3657 | F: Documentation/fb/ |
d958c62c | 3658 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3659 | F: drivers/video/ |
3660 | F: include/video/ | |
679655da | 3661 | F: include/linux/fb.h |
c117ab84 CEB |
3662 | F: include/uapi/video/ |
3663 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3664 | |
a57c188e | 3665 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3666 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 3667 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 3668 | S: Maintained |
a57c188e TT |
3669 | F: drivers/video/fsl-diu-fb.* |
3670 | ||
e2d1d6c0 | 3671 | FREESCALE DMA DRIVER |
8b58be88 JP |
3672 | M: Li Yang <leoli@freescale.com> |
3673 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 3674 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 3675 | S: Maintained |
679655da | 3676 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3677 | |
3678 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3679 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 3680 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 3681 | L: linux-i2c@vger.kernel.org |
0d2b405a | 3682 | S: Maintained |
679655da | 3683 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3684 | |
60e8c5ab | 3685 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3686 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 3687 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 3688 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 3689 | S: Maintained |
bad985a1 | 3690 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3691 | F: drivers/video/imxfb.c |
60e8c5ab | 3692 | |
4689a6b1 | 3693 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3694 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
3695 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 3696 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
3697 | L: netdev@vger.kernel.org |
3698 | S: Maintained | |
ec21e2ec | 3699 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3700 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3701 | |
d9e9d82c | 3702 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3703 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3704 | S: Orphan |
679655da JP |
3705 | F: arch/powerpc/sysdev/qe_lib/ |
3706 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3707 | |
b55ef929 | 3708 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3709 | M: Li Yang <leoli@freescale.com> |
6372594a | 3710 | L: linux-usb@vger.kernel.org |
a4724ed6 | 3711 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 3712 | S: Maintained |
5429c731 | 3713 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3714 | |
beaf53bf | 3715 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3716 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 3717 | L: netdev@vger.kernel.org |
a4724ed6 | 3718 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 3719 | S: Maintained |
ec21e2ec | 3720 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3721 | |
d9e9d82c | 3722 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3723 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 3724 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3725 | S: Maintained |
df621252 | 3726 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3727 | |
3728 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3729 | M: Timur Tabi <timur@tabi.org> |
93711660 | 3730 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 3731 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3732 | S: Maintained |
69aefcea JP |
3733 | F: sound/soc/fsl/fsl* |
3734 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3735 | |
1da177e4 | 3736 | FREEVXFS FILESYSTEM |
8b58be88 | 3737 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
3738 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3739 | S: Maintained | |
679655da | 3740 | F: fs/freevxfs/ |
1da177e4 | 3741 | |
71038f52 | 3742 | FREEZER |
49db1903 | 3743 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 3744 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 3745 | L: linux-pm@vger.kernel.org |
71038f52 | 3746 | S: Supported |
679655da JP |
3747 | F: Documentation/power/freezing-of-tasks.txt |
3748 | F: include/linux/freezer.h | |
3749 | F: kernel/freezer.c | |
71038f52 | 3750 | |
839a1f79 KRW |
3751 | FRONTSWAP API |
3752 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3753 | L: linux-kernel@vger.kernel.org | |
3754 | S: Maintained | |
3755 | F: mm/frontswap.c | |
3756 | F: include/linux/frontswap.h | |
3757 | ||
a5432f5a | 3758 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3759 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
3760 | L: linux-cachefs@redhat.com |
3761 | S: Supported | |
3762 | F: Documentation/filesystems/caching/ | |
3763 | F: fs/fscache/ | |
3764 | F: include/linux/fscache*.h | |
3765 | ||
f58ad8f5 JK |
3766 | F2FS FILE SYSTEM |
3767 | M: Jaegeuk Kim <jaegeuk.kim@samsung.com> | |
3768 | L: linux-f2fs-devel@lists.sourceforge.net | |
3769 | W: http://en.wikipedia.org/wiki/F2FS | |
3770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3771 | S: Maintained | |
3772 | F: Documentation/filesystems/f2fs.txt | |
3bac380c | 3773 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
f58ad8f5 JK |
3774 | F: fs/f2fs/ |
3775 | F: include/linux/f2fs_fs.h | |
3776 | ||
5ab7ffea | 3777 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3778 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 3779 | S: Maintained |
679655da | 3780 | F: arch/frv/ |
1da177e4 | 3781 | |
20b93734 | 3782 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3783 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 3784 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 3785 | S: Maintained |
679655da | 3786 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3787 | |
4da621b6 HK |
3788 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3789 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3790 | M: Heungjun Kim <riverful.kim@samsung.com> | |
3791 | L: linux-media@vger.kernel.org | |
3792 | S: Maintained | |
90d72ac6 | 3793 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3794 | F: include/media/m5mols.h |
3795 | ||
2d24c490 RG |
3796 | FUJITSU TABLET EXTRAS |
3797 | M: Robert Gerlach <khnz@gmx.de> | |
3798 | L: platform-driver-x86@vger.kernel.org | |
3799 | S: Maintained | |
3800 | F: drivers/platform/x86/fujitsu-tablet.c | |
3801 | ||
04578f17 | 3802 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3803 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
3804 | L: fuse-devel@lists.sourceforge.net |
3805 | W: http://fuse.sourceforge.net/ | |
3806 | S: Maintained | |
679655da | 3807 | F: fs/fuse/ |
c117ab84 | 3808 | F: include/uapi/linux/fuse.h |
04578f17 | 3809 | |
1da177e4 | 3810 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3811 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 3812 | L: linux-scsi@vger.kernel.org |
baaea1dc | 3813 | S: Odd Fixes (e.g., new signatures) |
679655da | 3814 | F: drivers/scsi/fdomain.* |
1da177e4 | 3815 | |
d8e2162c PO |
3816 | GCOV BASED KERNEL PROFILING |
3817 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
3818 | S: Maintained | |
3819 | F: kernel/gcov/ | |
3820 | F: Documentation/gcov.txt | |
3821 | ||
1da177e4 | 3822 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
8b58be88 | 3823 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
3824 | L: linux-scsi@vger.kernel.org |
3825 | W: http://www.icp-vortex.com/ | |
3826 | S: Supported | |
679655da | 3827 | F: drivers/scsi/gdt* |
1da177e4 | 3828 | |
3169a1c7 HV |
3829 | GEMTEK FM RADIO RECEIVER DRIVER |
3830 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3831 | L: linux-media@vger.kernel.org | |
3832 | T: git git://linuxtv.org/media_tree.git | |
3833 | W: http://linuxtv.org | |
3834 | S: Maintained | |
3835 | F: drivers/media/radio/radio-gemtek* | |
3836 | ||
1c23af90 | 3837 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3838 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 3839 | S: Supported |
679655da JP |
3840 | F: drivers/i2c/busses/i2c-gpio.c |
3841 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3842 | |
92ed1a76 PK |
3843 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3844 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
3845 | L: linux-i2c@vger.kernel.org | |
3846 | S: Supported | |
e7065e20 JD |
3847 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3848 | F: include/linux/i2c-mux-gpio.h | |
3849 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3850 | |
9251ce95 | 3851 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3852 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
3853 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3854 | S: Maintained | |
679655da JP |
3855 | F: drivers/net/wan/c101.c |
3856 | F: drivers/net/wan/hd6457* | |
3857 | F: drivers/net/wan/hdlc* | |
3858 | F: drivers/net/wan/n2.c | |
3859 | F: drivers/net/wan/pc300too.c | |
3860 | F: drivers/net/wan/pci200syn.c | |
3861 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3862 | |
1527aab6 | 3863 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3864 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
3865 | L: linux-arch@vger.kernel.org |
3866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3867 | S: Maintained | |
14430813 JP |
3868 | F: include/asm-generic/ |
3869 | F: include/uapi/asm-generic/ | |
1527aab6 | 3870 | |
ff764963 KVA |
3871 | GENERIC PHY FRAMEWORK |
3872 | M: Kishon Vijay Abraham I <kishon@ti.com> | |
3873 | L: linux-kernel@vger.kernel.org | |
3874 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git | |
3875 | S: Supported | |
3876 | F: drivers/phy/ | |
3877 | F: include/linux/phy/ | |
3878 | ||
ccb86a69 | 3879 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3880 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 3881 | L: kvm@vger.kernel.org |
ccb86a69 MT |
3882 | S: Supported |
3883 | F: drivers/uio/uio_pci_generic.c | |
3884 | ||
f8f1ec73 JP |
3885 | GET_MAINTAINER SCRIPT |
3886 | M: Joe Perches <joe@perches.com> | |
3887 | S: Maintained | |
3888 | F: scripts/get_maintainer.pl | |
3889 | ||
5be7b50f | 3890 | GFS2 FILE SYSTEM |
8b58be88 | 3891 | M: Steven Whitehouse <swhiteho@redhat.com> |
a4644184 | 3892 | L: cluster-devel@redhat.com |
5be7b50f | 3893 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3894 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3895 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3896 | S: Supported |
679655da JP |
3897 | F: Documentation/filesystems/gfs2*.txt |
3898 | F: fs/gfs2/ | |
c117ab84 | 3899 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3900 | |
0a34eb8f | 3901 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3902 | M: Hansjoerg Lipp <hjlipp@web.de> |
3903 | M: Tilman Schmidt <tilman@imap.cc> | |
0a34eb8f HL |
3904 | L: gigaset307x-common@lists.sourceforge.net |
3905 | W: http://gigaset307x.sourceforge.net/ | |
3906 | S: Maintained | |
679655da JP |
3907 | F: Documentation/isdn/README.gigaset |
3908 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3909 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3910 | |
a0dc00b4 | 3911 | GPIO SUBSYSTEM |
e4651a9f | 3912 | M: Linus Walleij <linus.walleij@linaro.org> |
f2fa75cd | 3913 | M: Alexandre Courbot <gnurou@gmail.com> |
d15b7179 | 3914 | L: linux-gpio@vger.kernel.org |
f2fa75cd LW |
3915 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
3916 | S: Maintained | |
3917 | F: Documentation/gpio/ | |
a0dc00b4 GL |
3918 | F: drivers/gpio/ |
3919 | F: include/linux/gpio* | |
9b692346 | 3920 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3921 | |
71a6d0af HW |
3922 | GRE DEMULTIPLEXER DRIVER |
3923 | M: Dmitry Kozlov <xeb@mail.ru> | |
3924 | L: netdev@vger.kernel.org | |
3925 | S: Maintained | |
11c26770 JP |
3926 | F: net/ipv4/gre_demux.c |
3927 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3928 | F: include/net/gre.h |
3929 | ||
d4c41139 KG |
3930 | GRETH 10/100/1G Ethernet MAC device driver |
3931 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
3932 | L: netdev@vger.kernel.org | |
3933 | S: Maintained | |
a31a96ad | 3934 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3935 | |
e8deeae2 | 3936 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3937 | M: Frank Zago <frank@zago.net> |
661263b5 | 3938 | L: linux-media@vger.kernel.org |
275ffde4 | 3939 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3940 | S: Maintained |
0c0d06ca | 3941 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3942 | |
4b3fa3c4 OL |
3943 | GSPCA GL860 SUBDRIVER |
3944 | M: Olivier Lorin <o.lorin@laposte.net> | |
3945 | L: linux-media@vger.kernel.org | |
275ffde4 | 3946 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3947 | S: Maintained |
0c0d06ca | 3948 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3949 | |
e8deeae2 | 3950 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3951 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 3952 | L: linux-media@vger.kernel.org |
275ffde4 | 3953 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3954 | S: Maintained |
0c0d06ca | 3955 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3956 | |
3957 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3958 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 3959 | L: linux-media@vger.kernel.org |
275ffde4 | 3960 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3961 | S: Maintained |
0c0d06ca | 3962 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3963 | |
261982f1 | 3964 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3965 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 3966 | L: linux-media@vger.kernel.org |
275ffde4 | 3967 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3968 | S: Maintained |
0c0d06ca | 3969 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3970 | |
e8deeae2 | 3971 | GSPCA T613 SUBDRIVER |
8b58be88 | 3972 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 3973 | L: linux-media@vger.kernel.org |
275ffde4 | 3974 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3975 | S: Maintained |
0c0d06ca | 3976 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3977 | |
3978 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3979 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 3980 | L: linux-media@vger.kernel.org |
275ffde4 | 3981 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3982 | S: Maintained |
0c0d06ca | 3983 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3984 | |
584ec979 DB |
3985 | GUID PARTITION TABLE (GPT) |
3986 | M: Davidlohr Bueso <davidlohr@hp.com> | |
3987 | L: linux-efi@vger.kernel.org | |
3988 | S: Maintained | |
3989 | F: block/partitions/efi.* | |
3990 | ||
aa3c598b EG |
3991 | STK1160 USB VIDEO CAPTURE DRIVER |
3992 | M: Ezequiel Garcia <elezegarcia@gmail.com> | |
3993 | L: linux-media@vger.kernel.org | |
275ffde4 | 3994 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3995 | S: Maintained |
3996 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3997 | |
71a6d0af HW |
3998 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3999 | M: Frank Seidel <frank@f-seidel.de> | |
4000 | L: platform-driver-x86@vger.kernel.org | |
4001 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
4002 | S: Maintained | |
4003 | F: drivers/platform/x86/hdaps.c | |
4004 | ||
48fc9e26 HV |
4005 | HDPVR USB VIDEO ENCODER DRIVER |
4006 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4007 | L: linux-media@vger.kernel.org | |
4008 | T: git git://linuxtv.org/media_tree.git | |
4009 | W: http://linuxtv.org | |
4010 | S: Odd Fixes | |
14430813 | 4011 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 4012 | |
71a6d0af | 4013 | HWPOISON MEMORY FAILURE HANDLING |
f9625c48 | 4014 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
71a6d0af | 4015 | L: linux-mm@kvack.org |
71a6d0af HW |
4016 | S: Maintained |
4017 | F: mm/memory-failure.c | |
4018 | F: mm/hwpoison-inject.c | |
4019 | ||
4020 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
4021 | L: linuxppc-dev@lists.ozlabs.org | |
4022 | S: Odd Fixes | |
4023 | F: drivers/tty/hvc/ | |
4024 | ||
5b543965 | 4025 | HARDWARE MONITORING |
7c81c60f | 4026 | M: Jean Delvare <jdelvare@suse.de> |
ca462085 | 4027 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 4028 | L: lm-sensors@lm-sensors.org |
595142e0 | 4029 | W: http://www.lm-sensors.org/ |
9e012c1a | 4030 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 4031 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 4032 | S: Maintained |
047f4ec2 | 4033 | F: Documentation/hwmon/ |
679655da | 4034 | F: drivers/hwmon/ |
047f4ec2 | 4035 | F: include/linux/hwmon*.h |
5b543965 | 4036 | |
844dd05f | 4037 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
4038 | M: Matt Mackall <mpm@selenic.com> |
4039 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
4040 | S: Odd fixes | |
679655da JP |
4041 | F: Documentation/hw_random.txt |
4042 | F: drivers/char/hw_random/ | |
4043 | F: include/linux/hw_random.h | |
844dd05f | 4044 | |
8b37fcfc OBC |
4045 | HARDWARE SPINLOCK CORE |
4046 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
4047 | S: Maintained | |
4048 | F: Documentation/hwspinlock.txt | |
4049 | F: drivers/hwspinlock/hwspinlock_* | |
4050 | F: include/linux/hwspinlock.h | |
4051 | ||
1da177e4 | 4052 | HARMONY SOUND DRIVER |
ac6aecbf | 4053 | L: linux-parisc@vger.kernel.org |
1da177e4 | 4054 | S: Maintained |
679655da | 4055 | F: sound/parisc/harmony.* |
1da177e4 | 4056 | |
91952bc0 AP |
4057 | HD29L2 MEDIA DRIVER |
4058 | M: Antti Palosaari <crope@iki.fi> | |
4059 | L: linux-media@vger.kernel.org | |
4060 | W: http://linuxtv.org/ | |
4061 | W: http://palosaari.fi/linux/ | |
4062 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4063 | T: git git://linuxtv.org/anttip/media_tree.git | |
4064 | S: Maintained | |
4065 | F: drivers/media/dvb-frontends/hd29l2* | |
4066 | ||
e2d1d6c0 | 4067 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 4068 | M: Chirag Kantharia <chirag.kantharia@hp.com> |
e2d1d6c0 RD |
4069 | L: iss_storagedev@hp.com |
4070 | S: Maintained | |
679655da JP |
4071 | F: Documentation/blockdev/cpqarray.txt |
4072 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 4073 | |
9257aa49 | 4074 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 4075 | M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> |
9257aa49 SC |
4076 | L: iss_storagedev@hp.com |
4077 | S: Supported | |
4078 | F: Documentation/scsi/hpsa.txt | |
4079 | F: drivers/scsi/hpsa*.[ch] | |
4080 | F: include/linux/cciss*.h | |
c117ab84 | 4081 | F: include/uapi/linux/cciss*.h |
9257aa49 | 4082 | |
e2d1d6c0 | 4083 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 4084 | M: Mike Miller <mike.miller@hp.com> |
e2d1d6c0 RD |
4085 | L: iss_storagedev@hp.com |
4086 | S: Supported | |
679655da JP |
4087 | F: Documentation/blockdev/cciss.txt |
4088 | F: drivers/block/cciss* | |
4089 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 4090 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 4091 | |
1da177e4 | 4092 | HFS FILESYSTEM |
6cf515e1 GU |
4093 | L: linux-fsdevel@vger.kernel.org |
4094 | S: Orphan | |
679655da JP |
4095 | F: Documentation/filesystems/hfs.txt |
4096 | F: fs/hfs/ | |
1da177e4 | 4097 | |
ef575f47 GU |
4098 | HFSPLUS FILESYSTEM |
4099 | L: linux-fsdevel@vger.kernel.org | |
4100 | S: Orphan | |
4101 | F: Documentation/filesystems/hfsplus.txt | |
4102 | F: fs/hfsplus/ | |
4103 | ||
1da177e4 | 4104 | HGA FRAMEBUFFER DRIVER |
8b58be88 | 4105 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
4106 | L: linux-nvidia@lists.surfsouth.com |
4107 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
4108 | S: Maintained | |
679655da | 4109 | F: drivers/video/hgafb.c |
1da177e4 | 4110 | |
4480f15b | 4111 | HIBERNATION (aka Software Suspend, aka swsusp) |
49db1903 | 4112 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
7fb06082 | 4113 | M: Pavel Machek <pavel@ucw.cz> |
bf1c138e | 4114 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 4115 | S: Supported |
679655da JP |
4116 | F: arch/x86/power/ |
4117 | F: drivers/base/power/ | |
4118 | F: kernel/power/ | |
4119 | F: include/linux/suspend.h | |
4120 | F: include/linux/freezer.h | |
4121 | F: include/linux/pm.h | |
679655da | 4122 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 4123 | |
4ef4caad | 4124 | HID CORE LAYER |
8b58be88 | 4125 | M: Jiri Kosina <jkosina@suse.cz> |
eb76c5c0 | 4126 | L: linux-input@vger.kernel.org |
54e5881d | 4127 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 4128 | S: Maintained |
679655da JP |
4129 | F: drivers/hid/ |
4130 | F: include/linux/hid* | |
c117ab84 | 4131 | F: include/uapi/linux/hid* |
4ef4caad | 4132 | |
38bed542 | 4133 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 4134 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 4135 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 4136 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 4137 | S: Maintained |
679655da JP |
4138 | F: Documentation/timers/ |
4139 | F: kernel/hrtimer.c | |
88606e80 TG |
4140 | F: kernel/time/clockevents.c |
4141 | F: kernel/time/tick*.* | |
4142 | F: kernel/time/timer_*.c | |
05ed8490 | 4143 | F: include/linux/clockchips.h |
679655da | 4144 | F: include/linux/hrtimer.h |
38bed542 | 4145 | |
1da177e4 | 4146 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 4147 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 4148 | S: Orphan |
679655da JP |
4149 | F: drivers/net/hamradio/dmascc.c |
4150 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 4151 | |
ede1e6f8 | 4152 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 4153 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
4154 | W: http://www.highpoint-tech.com |
4155 | S: Supported | |
679655da JP |
4156 | F: Documentation/scsi/hptiop.txt |
4157 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 4158 | |
1da177e4 | 4159 | HIPPI |
8b58be88 | 4160 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
4161 | L: linux-hippi@sunsite.dk |
4162 | S: Maintained | |
679655da | 4163 | F: include/linux/hippidevice.h |
c117ab84 | 4164 | F: include/uapi/linux/if_hippi.h |
679655da | 4165 | F: net/802/hippi.c |
ff5a3b50 | 4166 | F: drivers/net/hippi/ |
1da177e4 | 4167 | |
ff1d2767 | 4168 | HOST AP DRIVER |
8b58be88 | 4169 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 4170 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 4171 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
4172 | W: http://hostap.epitest.fi/ |
4173 | S: Maintained | |
679655da | 4174 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 4175 | |
dd8cd779 | 4176 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 4177 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 4178 | S: Orphan |
679655da | 4179 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 4180 | |
e2d1d6c0 | 4181 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 4182 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4183 | S: Maintained |
7e25d724 | 4184 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 4185 | |
7d2c86b5 | 4186 | HPET: High Precision Event Timers driver |
8b58be88 | 4187 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 4188 | S: Maintained |
679655da JP |
4189 | F: Documentation/timers/hpet.txt |
4190 | F: drivers/char/hpet.c | |
4191 | F: include/linux/hpet.h | |
c117ab84 | 4192 | F: include/uapi/linux/hpet.h |
b9b0332f | 4193 | |
e07b5d79 | 4194 | HPET: x86 |
9e06f631 | 4195 | S: Orphan |
679655da JP |
4196 | F: arch/x86/kernel/hpet.c |
4197 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 4198 | |
1da177e4 | 4199 | HPFS FILESYSTEM |
8b58be88 | 4200 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
4201 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
4202 | S: Maintained | |
679655da | 4203 | F: fs/hpfs/ |
1da177e4 | 4204 | |
3441cded | 4205 | HSI SUBSYSTEM |
56459ea9 SR |
4206 | M: Sebastian Reichel <sre@kernel.org> |
4207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git | |
3441cded SR |
4208 | S: Maintained |
4209 | F: Documentation/ABI/testing/sysfs-bus-hsi | |
56459ea9 | 4210 | F: Documentation/hsi.txt |
3441cded SR |
4211 | F: drivers/hsi/ |
4212 | F: include/linux/hsi/ | |
4213 | F: include/uapi/linux/hsi/ | |
4214 | ||
7d2c86b5 | 4215 | HSO 3G MODEM DRIVER |
8b58be88 | 4216 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
4217 | W: http://www.pharscape.org |
4218 | S: Maintained | |
679655da | 4219 | F: drivers/net/usb/hso.c |
11cd29b0 | 4220 | |
19990e29 AB |
4221 | HSR NETWORK PROTOCOL |
4222 | M: Arvid Brodin <arvid.brodin@alten.se> | |
4223 | L: netdev@vger.kernel.org | |
4224 | S: Maintained | |
4225 | F: net/hsr/ | |
4226 | ||
5a18c343 | 4227 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 4228 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
4229 | L: linux-input@vger.kernel.org |
4230 | S: Maintained | |
679655da | 4231 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 4232 | |
1da177e4 | 4233 | HUGETLB FILESYSTEM |
6d49e352 | 4234 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 4235 | S: Maintained |
679655da | 4236 | F: fs/hugetlbfs/ |
1da177e4 | 4237 | |
05183189 S |
4238 | Hyper-V CORE AND DRIVERS |
4239 | M: K. Y. Srinivasan <kys@microsoft.com> | |
4240 | M: Haiyang Zhang <haiyangz@microsoft.com> | |
4241 | L: devel@linuxdriverproject.org | |
4242 | S: Maintained | |
a4162747 HZ |
4243 | F: arch/x86/include/asm/mshyperv.h |
4244 | F: arch/x86/include/uapi/asm/hyperv.h | |
4245 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4246 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4247 | F: drivers/hv/ |
f92ca80b | 4248 | F: drivers/input/serio/hyperv-keyboard.c |
05183189 | 4249 | F: drivers/net/hyperv/ |
a4162747 HZ |
4250 | F: drivers/scsi/storvsc_drv.c |
4251 | F: drivers/video/hyperv_fb.c | |
4252 | F: include/linux/hyperv.h | |
4253 | F: tools/hv/ | |
05183189 | 4254 | |
d85c8a6a | 4255 | I2C OVER PARALLEL PORT |
7c81c60f | 4256 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4257 | L: linux-i2c@vger.kernel.org |
4258 | S: Maintained | |
4259 | F: Documentation/i2c/busses/i2c-parport | |
4260 | F: Documentation/i2c/busses/i2c-parport-light | |
4261 | F: drivers/i2c/busses/i2c-parport.c | |
4262 | F: drivers/i2c/busses/i2c-parport-light.c | |
4263 | ||
4264 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
7c81c60f | 4265 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4266 | L: linux-i2c@vger.kernel.org |
4267 | S: Maintained | |
4268 | F: Documentation/i2c/busses/i2c-ali1535 | |
4269 | F: Documentation/i2c/busses/i2c-ali1563 | |
4270 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4271 | F: Documentation/i2c/busses/i2c-amd756 | |
4272 | F: Documentation/i2c/busses/i2c-amd8111 | |
4273 | F: Documentation/i2c/busses/i2c-i801 | |
4274 | F: Documentation/i2c/busses/i2c-nforce2 | |
4275 | F: Documentation/i2c/busses/i2c-piix4 | |
4276 | F: Documentation/i2c/busses/i2c-sis5595 | |
4277 | F: Documentation/i2c/busses/i2c-sis630 | |
4278 | F: Documentation/i2c/busses/i2c-sis96x | |
4279 | F: Documentation/i2c/busses/i2c-via | |
4280 | F: Documentation/i2c/busses/i2c-viapro | |
4281 | F: drivers/i2c/busses/i2c-ali1535.c | |
4282 | F: drivers/i2c/busses/i2c-ali1563.c | |
4283 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4284 | F: drivers/i2c/busses/i2c-amd756.c | |
4285 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4286 | F: drivers/i2c/busses/i2c-amd8111.c | |
4287 | F: drivers/i2c/busses/i2c-i801.c | |
4288 | F: drivers/i2c/busses/i2c-isch.c | |
4289 | F: drivers/i2c/busses/i2c-nforce2.c | |
4290 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4291 | F: drivers/i2c/busses/i2c-piix4.c | |
4292 | F: drivers/i2c/busses/i2c-sis5595.c | |
4293 | F: drivers/i2c/busses/i2c-sis630.c | |
4294 | F: drivers/i2c/busses/i2c-sis96x.c | |
4295 | F: drivers/i2c/busses/i2c-via.c | |
4296 | F: drivers/i2c/busses/i2c-viapro.c | |
4297 | ||
cb7f07a4 NH |
4298 | I2C/SMBUS ISMT DRIVER |
4299 | M: Seth Heasley <seth.heasley@intel.com> | |
4300 | M: Neil Horman <nhorman@tuxdriver.com> | |
4301 | L: linux-i2c@vger.kernel.org | |
4302 | F: drivers/i2c/busses/i2c-ismt.c | |
4303 | F: Documentation/i2c/busses/i2c-ismt | |
4304 | ||
6ea884db | 4305 | I2C/SMBUS STUB DRIVER |
7c81c60f | 4306 | M: Jean Delvare <jdelvare@suse.de> |
846557d3 | 4307 | L: linux-i2c@vger.kernel.org |
6ea884db | 4308 | S: Maintained |
8547a5bc | 4309 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4310 | |
5b543965 | 4311 | I2C SUBSYSTEM |
14d77c4d | 4312 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 4313 | L: linux-i2c@vger.kernel.org |
9d4ea27a WS |
4314 | W: https://i2c.wiki.kernel.org/ |
4315 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ | |
14d77c4d | 4316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4317 | S: Maintained |
679655da JP |
4318 | F: Documentation/i2c/ |
4319 | F: drivers/i2c/ | |
4320 | F: include/linux/i2c.h | |
03b70d62 | 4321 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4322 | F: include/uapi/linux/i2c.h |
4323 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4324 | |
d85c8a6a | 4325 | I2C-TAOS-EVM DRIVER |
7c81c60f | 4326 | M: Jean Delvare <jdelvare@suse.de> |
d85c8a6a JD |
4327 | L: linux-i2c@vger.kernel.org |
4328 | S: Maintained | |
4329 | F: Documentation/i2c/busses/i2c-taos-evm | |
4330 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4331 | ||
e8c76eed | 4332 | I2C-TINY-USB DRIVER |
8b58be88 | 4333 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 4334 | L: linux-i2c@vger.kernel.org |
932d1872 | 4335 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4336 | S: Maintained |
679655da | 4337 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4338 | |
1da177e4 | 4339 | i386 BOOT CODE |
8b58be88 | 4340 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 4341 | S: Maintained |
679655da | 4342 | F: arch/x86/boot/ |
1da177e4 LT |
4343 | |
4344 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4345 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 4346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4347 | S: Maintained |
4348 | ||
1da177e4 | 4349 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4350 | M: Tony Luck <tony.luck@intel.com> |
4351 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 4352 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 4353 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4354 | S: Maintained |
679655da | 4355 | F: arch/ia64/ |
1da177e4 | 4356 | |
956c203c | 4357 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4358 | M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com> |
4359 | M: Fionnuala Gunter <fin@linux.vnet.ibm.com> | |
956c203c KY |
4360 | L: linux-crypto@vger.kernel.org |
4361 | S: Supported | |
4362 | F: drivers/crypto/nx/ | |
4363 | ||
0e16aafb SJ |
4364 | IBM Power 842 compression accelerator |
4365 | M: Robert Jennings <rcj@linux.vnet.ibm.com> | |
4366 | S: Supported | |
4367 | F: drivers/crypto/nx/nx-842.c | |
4368 | F: include/linux/nx842.h | |
4369 | ||
1da177e4 | 4370 | IBM Power Linux RAID adapter |
8b58be88 | 4371 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 4372 | S: Supported |
679655da | 4373 | F: drivers/scsi/ipr.* |
1da177e4 | 4374 | |
9d348af4 SL |
4375 | IBM Power Virtual Ethernet Device Driver |
4376 | M: Santiago Leon <santil@linux.vnet.ibm.com> | |
4377 | L: netdev@vger.kernel.org | |
4378 | S: Supported | |
9aa32835 | 4379 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4380 | |
4b7652cc RJ |
4381 | IBM Power Virtual SCSI/FC Device Drivers |
4382 | M: Robert Jennings <rcj@linux.vnet.ibm.com> | |
4383 | L: linux-scsi@vger.kernel.org | |
4384 | S: Supported | |
4385 | F: drivers/scsi/ibmvscsi/ | |
4386 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4387 | ||
1da177e4 LT |
4388 | IBM ServeRAID RAID DRIVER |
4389 | P: Jack Hammer | |
8b58be88 | 4390 | M: Dave Jeffery <ipslinux@adaptec.com> |
1da177e4 | 4391 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4392 | S: Supported |
679655da | 4393 | F: drivers/scsi/ips.* |
1da177e4 | 4394 | |
6ed9f9c4 PT |
4395 | ICH LPC AND GPIO DRIVER |
4396 | M: Peter Tyser <ptyser@xes-inc.com> | |
4397 | S: Maintained | |
4398 | F: drivers/mfd/lpc_ich.c | |
4399 | F: drivers/gpio/gpio-ich.c | |
4400 | ||
1e7106fc | 4401 | IDE SUBSYSTEM |
8b58be88 | 4402 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 4403 | L: linux-ide@vger.kernel.org |
8a6e2535 | 4404 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4406 | S: Maintained |
679655da JP |
4407 | F: Documentation/ide/ |
4408 | F: drivers/ide/ | |
4409 | F: include/linux/ide.h | |
1da177e4 | 4410 | |
6cb8c13d IP |
4411 | IDEAPAD LAPTOP EXTRAS DRIVER |
4412 | M: Ike Panhc <ike.pan@canonical.com> | |
4413 | L: platform-driver-x86@vger.kernel.org | |
4414 | W: http://launchpad.net/ideapad-laptop | |
4415 | S: Maintained | |
4416 | F: drivers/platform/x86/ideapad-laptop.c | |
4417 | ||
1ea4c161 AM |
4418 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4419 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
4420 | L: linux-input@vger.kernel.org | |
4421 | W: https://github.com/o2genum/ideapad-slidebar | |
4422 | S: Maintained | |
4423 | F: drivers/input/misc/ideapad_slidebar.c | |
4424 | ||
0f861e8c | 4425 | IDE/ATAPI DRIVERS |
487ba8e8 | 4426 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 4427 | L: linux-ide@vger.kernel.org |
c404c199 | 4428 | S: Maintained |
679655da JP |
4429 | F: Documentation/cdrom/ide-cd |
4430 | F: drivers/ide/ide-cd* | |
1da177e4 | 4431 | |
27471fdb | 4432 | IDLE-I7300 |
8b58be88 | 4433 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 4434 | L: linux-pm@vger.kernel.org |
27471fdb | 4435 | S: Supported |
679655da | 4436 | F: drivers/idle/i7300_idle.c |
27471fdb | 4437 | |
02cf2286 | 4438 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4439 | M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
8b58be88 | 4440 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
e0af6062 | 4441 | L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) |
02cf2286 | 4442 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4443 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4444 | S: Maintained |
4445 | F: net/ieee802154/ | |
68653359 | 4446 | F: net/mac802154/ |
251741b1 | 4447 | F: drivers/net/ieee802154/ |
02cf2286 | 4448 | |
40ad4a30 SY |
4449 | IGUANAWORKS USB IR TRANSCEIVER |
4450 | M: Sean Young <sean@mess.org> | |
4451 | L: linux-media@vger.kernel.org | |
4452 | S: Maintained | |
4453 | F: drivers/media/rc/iguanair.c | |
4454 | ||
9545f86e | 4455 | IIO SUBSYSTEM AND DRIVERS |
030a13d7 | 4456 | M: Jonathan Cameron <jic23@kernel.org> |
9545f86e AP |
4457 | L: linux-iio@vger.kernel.org |
4458 | S: Maintained | |
03e7c251 | 4459 | F: drivers/iio/ |
9545f86e AP |
4460 | F: drivers/staging/iio/ |
4461 | ||
65519263 SG |
4462 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4463 | M: Matthieu Castet <castet.matthieu@free.fr> | |
4464 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
4465 | S: Maintained | |
4466 | F: drivers/usb/atm/ueagle-atm.c | |
4467 | ||
e89ab51f GR |
4468 | INA209 HARDWARE MONITOR DRIVER |
4469 | M: Guenter Roeck <linux@roeck-us.net> | |
4470 | L: lm-sensors@lm-sensors.org | |
4471 | S: Maintained | |
4472 | F: Documentation/hwmon/ina209 | |
4473 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4474 | F: drivers/hwmon/ina209.c | |
4475 | ||
4476 | INA2XX HARDWARE MONITOR DRIVER | |
4477 | M: Guenter Roeck <linux@roeck-us.net> | |
4478 | L: lm-sensors@lm-sensors.org | |
4479 | S: Maintained | |
4480 | F: Documentation/hwmon/ina2xx | |
4481 | F: drivers/hwmon/ina2xx.c | |
4482 | F: include/linux/platform_data/ina2xx.h | |
4483 | ||
14dc124f SIG |
4484 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4485 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
4486 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
4487 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
4488 | L: industrypack-devel@lists.sourceforge.net | |
4489 | W: http://industrypack.sourceforge.net | |
4490 | S: Maintained | |
4491 | F: drivers/ipack/ | |
4492 | ||
aa7168f4 | 4493 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
74dd744f | 4494 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
8912176c | 4495 | M: Dmitry Kasatkin <d.kasatkin@samsung.com> |
74dd744f MZ |
4496 | L: linux-ima-devel@lists.sourceforge.net |
4497 | L: linux-ima-user@lists.sourceforge.net | |
4498 | L: linux-security-module@vger.kernel.org | |
aa7168f4 | 4499 | S: Supported |
679655da | 4500 | F: security/integrity/ima/ |
aa7168f4 | 4501 | |
1da177e4 | 4502 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4503 | L: linux-fbdev@vger.kernel.org |
843393d3 | 4504 | S: Orphan |
679655da | 4505 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4506 | |
4507 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4508 | M: Roland Dreier <roland@kernel.org> |
8b58be88 JP |
4509 | M: Sean Hefty <sean.hefty@intel.com> |
4510 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 4511 | L: linux-rdma@vger.kernel.org |
605841f5 | 4512 | W: http://www.openfabrics.org/ |
8a6e2535 | 4513 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4514 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4515 | S: Supported |
679655da JP |
4516 | F: Documentation/infiniband/ |
4517 | F: drivers/infiniband/ | |
c117ab84 | 4518 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4519 | |
c9f04f58 | 4520 | INOTIFY |
8b58be88 JP |
4521 | M: John McCutchan <john@johnmccutchan.com> |
4522 | M: Robert Love <rlove@rlove.org> | |
4523 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 4524 | S: Maintained |
679655da JP |
4525 | F: Documentation/filesystems/inotify.txt |
4526 | F: fs/notify/inotify/ | |
4527 | F: include/linux/inotify.h | |
c117ab84 | 4528 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4529 | |
e2d1d6c0 | 4530 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4531 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
4532 | M: Dmitry Torokhov <dtor@mail.ru> | |
e2d1d6c0 | 4533 | L: linux-input@vger.kernel.org |
8a6e2535 | 4534 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4536 | S: Maintained |
679655da | 4537 | F: drivers/input/ |
f4eea7e2 | 4538 | F: include/linux/input.h |
c117ab84 | 4539 | F: include/uapi/linux/input.h |
f4eea7e2 | 4540 | F: include/linux/input/ |
e2d1d6c0 | 4541 | |
3267a87f HR |
4542 | INPUT MULTITOUCH (MT) PROTOCOL |
4543 | M: Henrik Rydberg <rydberg@euromail.se> | |
4544 | L: linux-input@vger.kernel.org | |
7f9c2454 | 4545 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4546 | S: Maintained |
4547 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4548 | F: drivers/input/input-mt.c |
3267a87f HR |
4549 | K: \b(ABS|SYN)_MT_ |
4550 | ||
4ac13e17 DJ |
4551 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4552 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
fdc5813f | 4553 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
4ac13e17 | 4554 | M: Dave Jiang <dave.jiang@intel.com> |
4ac13e17 | 4555 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
4556 | T: git git://git.code.sf.net/p/intel-sas/isci |
4557 | S: Supported | |
4ac13e17 | 4558 | F: drivers/scsi/isci/ |
4ac13e17 | 4559 | |
26717172 LB |
4560 | INTEL IDLE DRIVER |
4561 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 4562 | L: linux-pm@vger.kernel.org |
08deed1e | 4563 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4564 | S: Supported |
4565 | F: drivers/idle/intel_idle.c | |
4566 | ||
9eb8ef74 | 4567 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4568 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 4569 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4570 | S: Maintained |
679655da JP |
4571 | F: Documentation/fb/intelfb.txt |
4572 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4573 | |
1da177e4 | 4574 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4575 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 4576 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4577 | S: Maintained |
679655da | 4578 | F: drivers/video/i810/ |
1da177e4 | 4579 | |
f4a9bc4c | 4580 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4581 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 4582 | L: platform-driver-x86@vger.kernel.org |
5ca92bd9 | 4583 | W: https://01.org/linux-acpi |
f4a9bc4c | 4584 | S: Supported |
679655da | 4585 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4586 | |
1da177e4 | 4587 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4588 | M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
1da177e4 | 4589 | S: Maintained |
679655da JP |
4590 | F: arch/x86/kernel/microcode_core.c |
4591 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4592 | |
248a9dc3 | 4593 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4594 | M: Dan Williams <dan.j.williams@intel.com> |
18ebd564 DJ |
4595 | M: Dave Jiang <dave.jiang@intel.com> |
4596 | L: dmaengine@vger.kernel.org | |
4597 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ | |
4598 | S: Supported | |
679655da | 4599 | F: drivers/dma/ioat* |
248a9dc3 | 4600 | |
6c8909b4 | 4601 | INTEL IOMMU (VT-d) |
8b58be88 | 4602 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 4603 | L: iommu@lists.linux-foundation.org |
54e5881d | 4604 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4605 | S: Supported |
3fb39615 | 4606 | F: drivers/iommu/intel-iommu.c |
679655da | 4607 | F: include/linux/intel-iommu.h |
6c8909b4 | 4608 | |
b3e5f263 | 4609 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4610 | M: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 4611 | S: Odd fixes |
679655da | 4612 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4613 | |
9251ce95 | 4614 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4615 | M: Krzysztof Halasa <khc@pm.waw.pl> |
9251ce95 | 4616 | S: Maintained |
679655da JP |
4617 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4618 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4619 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4620 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4621 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4622 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4623 | |
844dd05f | 4624 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4625 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 4626 | S: Maintained |
679655da | 4627 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4628 | |
105bf2fe | 4629 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf) |
8b58be88 JP |
4630 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
4631 | M: Jesse Brandeburg <jesse.brandeburg@intel.com> | |
4632 | M: Bruce Allan <bruce.w.allan@intel.com> | |
0d164401 JK |
4633 | M: Carolyn Wyborny <carolyn.wyborny@intel.com> |
4634 | M: Don Skidmore <donald.c.skidmore@intel.com> | |
4635 | M: Greg Rose <gregory.v.rose@intel.com> | |
0d164401 | 4636 | M: Alex Duyck <alexander.h.duyck@intel.com> |
8b58be88 | 4637 | M: John Ronciak <john.ronciak@intel.com> |
105bf2fe | 4638 | M: Mitch Williams <mitch.a.williams@intel.com> |
fcad3e6b | 4639 | M: Linux NICS <linux.nics@intel.com> |
dcd01faf | 4640 | L: e1000-devel@lists.sourceforge.net |
f6fde11a | 4641 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4642 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4644 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4645 | S: Supported |
0d164401 JK |
4646 | F: Documentation/networking/e100.txt |
4647 | F: Documentation/networking/e1000.txt | |
4648 | F: Documentation/networking/e1000e.txt | |
4649 | F: Documentation/networking/igb.txt | |
4650 | F: Documentation/networking/igbvf.txt | |
4651 | F: Documentation/networking/ixgb.txt | |
4652 | F: Documentation/networking/ixgbe.txt | |
4653 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4654 | F: Documentation/networking/i40e.txt |
105bf2fe | 4655 | F: Documentation/networking/i40evf.txt |
dee1ad47 | 4656 | F: drivers/net/ethernet/intel/ |
bc90d291 | 4657 | F: drivers/net/ethernet/intel/*/ |
1da177e4 | 4658 | |
0963d59b LW |
4659 | INTEL-MID GPIO DRIVER |
4660 | M: David Cohen <david.a.cohen@linux.intel.com> | |
4661 | L: linux-gpio@vger.kernel.org | |
4662 | S: Maintained | |
4663 | F: drivers/gpio/gpio-intel-mid.c | |
4664 | ||
ca907a90 SY |
4665 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4666 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 4667 | L: linux-wireless@vger.kernel.org |
ca907a90 | 4668 | S: Maintained |
679655da | 4669 | F: Documentation/networking/README.ipw2100 |
679655da | 4670 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4671 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4672 | |
4bd96a7a | 4673 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4674 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
4675 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
4676 | M: Shane Wang <shane.wang@intel.com> |
4677 | L: tboot-devel@lists.sourceforge.net | |
4678 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4679 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4680 | S: Supported |
4681 | F: Documentation/intel_txt.txt | |
4682 | F: include/linux/tboot.h | |
4683 | F: arch/x86/kernel/tboot.c | |
4684 | ||
8a70da82 | 4685 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4686 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 4687 | M: linux-wimax@intel.com |
63fae219 | 4688 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
4689 | S: Supported |
4690 | W: http://linuxwimax.org | |
679655da JP |
4691 | F: Documentation/wimax/README.i2400m |
4692 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4693 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4694 | |
1c0ce89c SG |
4695 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4696 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 4697 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 4698 | S: Supported |
efa3144e WYG |
4699 | F: drivers/net/wireless/iwlegacy/ |
4700 | ||
b481de9c | 4701 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4702 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 4703 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
a0bf797f | 4704 | M: Intel Linux Wireless <ilw@linux.intel.com> |
b481de9c | 4705 | L: linux-wireless@vger.kernel.org |
b481de9c | 4706 | W: http://intellinuxwireless.org |
b62ff718 | 4707 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4708 | S: Supported |
679655da | 4709 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4710 | |
de8fe023 TW |
4711 | INTEL MANAGEMENT ENGINE (mei) |
4712 | M: Tomas Winkler <tomas.winkler@intel.com> | |
4713 | L: linux-kernel@vger.kernel.org | |
4714 | S: Supported | |
c117ab84 | 4715 | F: include/uapi/linux/mei.h |
de8fe023 | 4716 | F: drivers/misc/mei/* |
e07950a1 | 4717 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4718 | |
cb109a0e | 4719 | IOC3 ETHERNET DRIVER |
8b58be88 | 4720 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
4721 | L: linux-mips@linux-mips.org |
4722 | S: Maintained | |
8862bf1e | 4723 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4724 | |
cb109a0e | 4725 | IOC3 SERIAL DRIVER |
8b58be88 | 4726 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 4727 | L: linux-serial@vger.kernel.org |
cb109a0e | 4728 | S: Maintained |
df621252 | 4729 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4730 | |
0b6e8569 SW |
4731 | IOMMU DRIVERS |
4732 | M: Joerg Roedel <joro@8bytes.org> | |
4733 | L: iommu@lists.linux-foundation.org | |
4734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git | |
4735 | S: Maintained | |
4736 | F: drivers/iommu/ | |
4737 | ||
4480f15b | 4738 | IP MASQUERADING |
8b58be88 | 4739 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 4740 | S: Maintained |
679655da | 4741 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4742 | |
1202d6ff | 4743 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4744 | M: Francois Romieu <romieu@fr.zoreil.com> |
4745 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
4746 | L: netdev@vger.kernel.org |
4747 | S: Maintained | |
7443713a | 4748 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4749 | |
4480f15b | 4750 | IPATH DRIVER |
8473c603 | 4751 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 4752 | L: linux-rdma@vger.kernel.org |
52a09a04 | 4753 | S: Maintained |
679655da | 4754 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4755 | |
4409ebe9 | 4756 | IPMI SUBSYSTEM |
8b58be88 | 4757 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 4758 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
4759 | W: http://openipmi.sourceforge.net/ |
4760 | S: Supported | |
679655da JP |
4761 | F: Documentation/IPMI.txt |
4762 | F: drivers/char/ipmi/ | |
4763 | F: include/linux/ipmi* | |
c117ab84 | 4764 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4765 | |
e2d1d6c0 | 4766 | IPS SCSI RAID DRIVER |
8b58be88 | 4767 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4768 | L: linux-scsi@vger.kernel.org |
4769 | W: http://www.adaptec.com/ | |
4770 | S: Maintained | |
679655da | 4771 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4772 | |
4773 | IPVS | |
8b58be88 JP |
4774 | M: Wensong Zhang <wensong@linux-vs.org> |
4775 | M: Simon Horman <horms@verge.net.au> | |
4776 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 4777 | L: netdev@vger.kernel.org |
e2d1d6c0 | 4778 | L: lvs-devel@vger.kernel.org |
1da177e4 | 4779 | S: Maintained |
679655da | 4780 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4781 | F: include/net/ip_vs.h |
c117ab84 | 4782 | F: include/uapi/linux/ip_vs.h |
679655da | 4783 | F: net/netfilter/ipvs/ |
1da177e4 | 4784 | |
e7839f25 | 4785 | IPWIRELESS DRIVER |
8b58be88 JP |
4786 | M: Jiri Kosina <jkosina@suse.cz> |
4787 | M: David Sterba <dsterba@suse.cz> | |
92094aa0 | 4788 | S: Odd Fixes |
282361a0 | 4789 | F: drivers/tty/ipwireless/ |
099dc4fb | 4790 | |
e2d1d6c0 | 4791 | IPX NETWORK LAYER |
8b58be88 | 4792 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
4793 | L: netdev@vger.kernel.org |
4794 | S: Maintained | |
679655da | 4795 | F: include/net/ipx.h |
c117ab84 | 4796 | F: include/uapi/linux/ipx.h |
679655da | 4797 | F: net/ipx/ |
e2d1d6c0 | 4798 | |
1da177e4 | 4799 | IRDA SUBSYSTEM |
8b58be88 | 4800 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 4801 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 4802 | L: netdev@vger.kernel.org |
1da177e4 | 4803 | W: http://irda.sourceforge.net/ |
f353976d | 4804 | S: Maintained |
e0057975 | 4805 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4806 | F: Documentation/networking/irda.txt |
4807 | F: drivers/net/irda/ | |
4808 | F: include/net/irda/ | |
4809 | F: net/irda/ | |
1da177e4 | 4810 | |
a800c7cc TG |
4811 | IRQ SUBSYSTEM |
4812 | M: Thomas Gleixner <tglx@linutronix.de> | |
981c3a4f | 4813 | L: linux-kernel@vger.kernel.org |
a800c7cc | 4814 | S: Maintained |
75fc2d37 | 4815 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4816 | F: kernel/irq/ |
2ed9fd28 JC |
4817 | |
4818 | IRQCHIP DRIVERS | |
4819 | M: Thomas Gleixner <tglx@linutronix.de> | |
4820 | M: Jason Cooper <jason@lakedaemon.net> | |
4821 | L: linux-kernel@vger.kernel.org | |
4822 | S: Maintained | |
4823 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core | |
4824 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core | |
edd96900 | 4825 | F: drivers/irqchip/ |
a800c7cc | 4826 | |
7ab3a837 GL |
4827 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4828 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
7ab3a837 GL |
4829 | S: Maintained |
4830 | F: Documentation/IRQ-domain.txt | |
4831 | F: include/linux/irqdomain.h | |
4832 | F: kernel/irq/irqdomain.c | |
4833 | ||
e2d1d6c0 | 4834 | ISAPNP |
8b58be88 | 4835 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4836 | S: Maintained |
679655da JP |
4837 | F: Documentation/isapnp.txt |
4838 | F: drivers/pnp/isapnp/ | |
4839 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4840 | |
d39b8420 HV |
4841 | ISA RADIO MODULE |
4842 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4843 | L: linux-media@vger.kernel.org | |
4844 | T: git git://linuxtv.org/media_tree.git | |
4845 | W: http://linuxtv.org | |
4846 | S: Maintained | |
4847 | F: drivers/media/radio/radio-isa* | |
4848 | ||
71a6d0af HW |
4849 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4850 | M: Peter Jones <pjones@redhat.com> | |
4851 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
4852 | S: Maintained | |
4853 | F: drivers/firmware/iscsi_ibft* | |
4854 | ||
14816b1e | 4855 | ISCSI |
8b58be88 | 4856 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
4857 | L: open-iscsi@googlegroups.com |
4858 | W: www.open-iscsi.org | |
54e5881d | 4859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4860 | S: Maintained |
679655da JP |
4861 | F: drivers/scsi/*iscsi* |
4862 | F: include/scsi/*iscsi* | |
14816b1e | 4863 | |
1e65eb42 OG |
4864 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4865 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
4866 | M: Roi Dayan <roid@mellanox.com> | |
4867 | L: linux-rdma@vger.kernel.org | |
4868 | S: Supported | |
4869 | W: http://www.openfabrics.org | |
4870 | W: www.open-iscsi.org | |
4871 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4872 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4873 | |
1da177e4 | 4874 | ISDN SUBSYSTEM |
8b58be88 | 4875 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 4876 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 4877 | L: netdev@vger.kernel.org |
1da177e4 | 4878 | W: http://www.isdn4linux.de |
54e5881d | 4879 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4880 | S: Maintained |
679655da JP |
4881 | F: Documentation/isdn/ |
4882 | F: drivers/isdn/ | |
4883 | F: include/linux/isdn.h | |
4884 | F: include/linux/isdn/ | |
c117ab84 CEB |
4885 | F: include/uapi/linux/isdn.h |
4886 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4887 | |
4888 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4889 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 4890 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
4891 | W: http://www.melware.de |
4892 | S: Maintained | |
679655da | 4893 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4894 | |
d624870f | 4895 | IT87 HARDWARE MONITORING DRIVER |
7c81c60f | 4896 | M: Jean Delvare <jdelvare@suse.de> |
d624870f JD |
4897 | L: lm-sensors@lm-sensors.org |
4898 | S: Maintained | |
4899 | F: Documentation/hwmon/it87 | |
4900 | F: drivers/hwmon/it87.c | |
4901 | ||
d7104bff AP |
4902 | IT913X MEDIA DRIVER |
4903 | M: Antti Palosaari <crope@iki.fi> | |
4904 | L: linux-media@vger.kernel.org | |
4905 | W: http://linuxtv.org/ | |
4906 | W: http://palosaari.fi/linux/ | |
4907 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4908 | T: git git://linuxtv.org/anttip/media_tree.git | |
4909 | S: Maintained | |
9d9fb744 | 4910 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4911 | |
91821ff3 | 4912 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4913 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 4914 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 4915 | L: linux-media@vger.kernel.org |
275ffde4 | 4916 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4917 | W: http://www.ivtvdriver.org |
4918 | S: Maintained | |
679655da | 4919 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4920 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4921 | F: include/uapi/linux/ivtv* |
91821ff3 | 4922 | |
68620bdd MP |
4923 | IX2505V MEDIA DRIVER |
4924 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4925 | L: linux-media@vger.kernel.org | |
4926 | W: http://linuxtv.org/ | |
4927 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4928 | S: Maintained | |
4929 | F: drivers/media/dvb-frontends/ix2505v* | |
4930 | ||
4453d736 GR |
4931 | JC42.4 TEMPERATURE SENSOR DRIVER |
4932 | M: Guenter Roeck <linux@roeck-us.net> | |
4933 | L: lm-sensors@lm-sensors.org | |
4934 | S: Maintained | |
4935 | F: drivers/hwmon/jc42.c | |
4936 | F: Documentation/hwmon/jc42 | |
4937 | ||
e2d1d6c0 | 4938 | JFS FILESYSTEM |
3256f80f | 4939 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
4940 | L: jfs-discussion@lists.sourceforge.net |
4941 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4943 | S: Maintained |
679655da JP |
4944 | F: Documentation/filesystems/jfs.txt |
4945 | F: fs/jfs/ | |
e2d1d6c0 | 4946 | |
95252236 | 4947 | JME NETWORK DRIVER |
8b58be88 | 4948 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
4949 | L: netdev@vger.kernel.org |
4950 | S: Maintained | |
63d24a0e | 4951 | F: drivers/net/ethernet/jme.* |
95252236 | 4952 | |
1da177e4 | 4953 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4954 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
4955 | L: linux-mtd@lists.infradead.org |
4956 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4957 | S: Maintained |
679655da | 4958 | F: fs/jffs2/ |
c117ab84 | 4959 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4960 | |
de456d37 | 4961 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4962 | M: Andrew Morton <akpm@linux-foundation.org> |
19003c18 | 4963 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 4964 | L: linux-ext4@vger.kernel.org |
ae0718f8 | 4965 | S: Maintained |
d183e11a | 4966 | F: fs/jbd/ |
d183e11a TT |
4967 | F: include/linux/jbd.h |
4968 | ||
4969 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4970 | M: "Theodore Ts'o" <tytso@mit.edu> | |
4971 | L: linux-ext4@vger.kernel.org | |
4972 | S: Maintained | |
4973 | F: fs/jbd2/ | |
4974 | F: include/linux/jbd2.h | |
ae0718f8 | 4975 | |
fd8b6cb4 | 4976 | JSM Neo PCI based serial card |
9d141cb9 | 4977 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
4978 | L: linux-serial@vger.kernel.org |
4979 | S: Maintained | |
df621252 | 4980 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4981 | |
af39917d CL |
4982 | K10TEMP HARDWARE MONITORING DRIVER |
4983 | M: Clemens Ladisch <clemens@ladisch.de> | |
4984 | L: lm-sensors@lm-sensors.org | |
4985 | S: Maintained | |
4986 | F: Documentation/hwmon/k10temp | |
4987 | F: drivers/hwmon/k10temp.c | |
4988 | ||
4660cb35 | 4989 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4990 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 4991 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 4992 | S: Maintained |
679655da JP |
4993 | F: Documentation/hwmon/k8temp |
4994 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4995 | |
c63a1642 | 4996 | KTAP |
687b63a3 | 4997 | M: Jovi Zhangwei <jovi.zhangwei@gmail.com> |
c63a1642 JZ |
4998 | W: http://www.ktap.org |
4999 | L: ktap@freelists.org | |
5000 | S: Maintained | |
5001 | F: drivers/staging/ktap/ | |
5002 | ||
1da177e4 | 5003 | KCONFIG |
5eb1f99e | 5004 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
347d12d7 | 5005 | L: linux-kbuild@vger.kernel.org |
cea8321c | 5006 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
5eb1f99e | 5007 | S: Maintained |
679655da JP |
5008 | F: Documentation/kbuild/kconfig-language.txt |
5009 | F: scripts/kconfig/ | |
1da177e4 | 5010 | |
ea6c2089 | 5011 | KDUMP |
8b58be88 JP |
5012 | M: Vivek Goyal <vgoyal@redhat.com> |
5013 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 5014 | L: kexec@lists.infradead.org |
ea6c2089 VG |
5015 | W: http://lse.sourceforge.net/kdump/ |
5016 | S: Maintained | |
80811493 | 5017 | F: Documentation/kdump/ |
ea6c2089 | 5018 | |
f41bf02f HV |
5019 | KEENE FM RADIO TRANSMITTER DRIVER |
5020 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5021 | L: linux-media@vger.kernel.org | |
5022 | T: git git://linuxtv.org/media_tree.git | |
5023 | W: http://linuxtv.org | |
5024 | S: Maintained | |
5025 | F: drivers/media/radio/radio-keene* | |
5026 | ||
1da177e4 | 5027 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 5028 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 5029 | L: autofs@vger.kernel.org |
1da177e4 | 5030 | S: Maintained |
679655da | 5031 | F: fs/autofs4/ |
1da177e4 | 5032 | |
70fb7ba6 | 5033 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 5034 | M: Michal Marek <mmarek@suse.cz> |
08deed1e JP |
5035 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
5036 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 5037 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 5038 | S: Maintained |
679655da JP |
5039 | F: Documentation/kbuild/ |
5040 | F: Makefile | |
5041 | F: scripts/Makefile.* | |
70fb7ba6 MM |
5042 | F: scripts/basic/ |
5043 | F: scripts/mk* | |
5044 | F: scripts/package/ | |
1da177e4 LT |
5045 | |
5046 | KERNEL JANITORS | |
c3000e03 | 5047 | L: kernel-janitors@vger.kernel.org |
10466f5a | 5048 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 5049 | S: Odd Fixes |
1da177e4 | 5050 | |
e8b43555 | 5051 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 5052 | M: "J. Bruce Fields" <bfields@fieldses.org> |
16141c02 | 5053 | L: linux-nfs@vger.kernel.org |
1da177e4 | 5054 | W: http://nfs.sourceforge.net/ |
98fac23f | 5055 | S: Supported |
679655da JP |
5056 | F: fs/nfsd/ |
5057 | F: include/linux/nfsd/ | |
c117ab84 | 5058 | F: include/uapi/linux/nfsd/ |
679655da JP |
5059 | F: fs/lockd/ |
5060 | F: fs/nfs_common/ | |
5061 | F: net/sunrpc/ | |
5062 | F: include/linux/lockd/ | |
5063 | F: include/linux/sunrpc/ | |
c117ab84 | 5064 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 5065 | |
426d62e2 | 5066 | KERNEL VIRTUAL MACHINE (KVM) |
0a00a775 | 5067 | M: Gleb Natapov <gleb@kernel.org> |
c93a64fe | 5068 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 5069 | L: kvm@vger.kernel.org |
e3e58478 | 5070 | W: http://www.linux-kvm.org |
a94b40a6 | 5071 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
426d62e2 | 5072 | S: Supported |
c93a64fe PB |
5073 | F: Documentation/*/kvm*.txt |
5074 | F: Documentation/virtual/kvm/ | |
679655da JP |
5075 | F: arch/*/kvm/ |
5076 | F: arch/*/include/asm/kvm* | |
5077 | F: include/linux/kvm* | |
c117ab84 | 5078 | F: include/uapi/linux/kvm* |
679655da | 5079 | F: virt/kvm/ |
426d62e2 | 5080 | |
ad8003d3 | 5081 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 5082 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf AK |
5083 | L: kvm@vger.kernel.org |
5084 | W: http://kvm.qumranet.com | |
7de609c8 | 5085 | S: Maintained |
679655da | 5086 | F: arch/x86/include/asm/svm.h |
679655da | 5087 | F: arch/x86/kvm/svm.c |
426d62e2 | 5088 | |
513014b7 | 5089 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 5090 | M: Alexander Graf <agraf@suse.de> |
1fc9d2bf AK |
5091 | L: kvm-ppc@vger.kernel.org |
5092 | W: http://kvm.qumranet.com | |
6a7f972d | 5093 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 5094 | S: Supported |
679655da JP |
5095 | F: arch/powerpc/include/asm/kvm* |
5096 | F: arch/powerpc/kvm/ | |
513014b7 | 5097 | |
1fc9d2bf | 5098 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 5099 | M: Xiantao Zhang <xiantao.zhang@intel.com> |
1fc9d2bf AK |
5100 | L: kvm-ia64@vger.kernel.org |
5101 | W: http://kvm.qumranet.com | |
920ed9f1 | 5102 | S: Supported |
679655da JP |
5103 | F: Documentation/ia64/kvm.txt |
5104 | F: arch/ia64/include/asm/kvm* | |
5105 | F: arch/ia64/kvm/ | |
920ed9f1 | 5106 | |
85f8fffe | 5107 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 5108 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 5109 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
5110 | M: linux390@de.ibm.com |
5111 | L: linux-s390@vger.kernel.org | |
5112 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
5113 | S: Supported | |
679655da JP |
5114 | F: Documentation/s390/kvm.txt |
5115 | F: arch/s390/include/asm/kvm* | |
80811493 | 5116 | F: arch/s390/kvm/ |
a968cd3e | 5117 | F: drivers/s390/kvm/ |
85f8fffe | 5118 | |
a749474d | 5119 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 5120 | M: Christoffer Dall <christoffer.dall@linaro.org> |
5c8818b4 MZ |
5121 | M: Marc Zyngier <marc.zyngier@arm.com> |
5122 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
a749474d CD |
5123 | L: kvmarm@lists.cs.columbia.edu |
5124 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 5125 | S: Supported |
a749474d CD |
5126 | F: arch/arm/include/uapi/asm/kvm* |
5127 | F: arch/arm/include/asm/kvm* | |
5128 | F: arch/arm/kvm/ | |
5c8818b4 MZ |
5129 | F: virt/kvm/arm/ |
5130 | F: include/kvm/arm_* | |
a749474d | 5131 | |
6394a3ec | 5132 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
5c8818b4 | 5133 | M: Christoffer Dall <christoffer.dall@linaro.org> |
6394a3ec MZ |
5134 | M: Marc Zyngier <marc.zyngier@arm.com> |
5135 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5136 | L: kvmarm@lists.cs.columbia.edu | |
5137 | S: Maintained | |
5138 | F: arch/arm64/include/uapi/asm/kvm* | |
5139 | F: arch/arm64/include/asm/kvm* | |
5140 | F: arch/arm64/kvm/ | |
5141 | ||
dc009d92 | 5142 | KEXEC |
8b58be88 | 5143 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 5144 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 5145 | L: kexec@lists.infradead.org |
dc009d92 | 5146 | S: Maintained |
679655da | 5147 | F: include/linux/kexec.h |
c117ab84 | 5148 | F: include/uapi/linux/kexec.h |
679655da | 5149 | F: kernel/kexec.c |
dc009d92 | 5150 | |
e971461f DH |
5151 | KEYS/KEYRINGS: |
5152 | M: David Howells <dhowells@redhat.com> | |
5153 | L: keyrings@linux-nfs.org | |
5154 | S: Maintained | |
d410fa4e | 5155 | F: Documentation/security/keys.txt |
e971461f DH |
5156 | F: include/linux/key.h |
5157 | F: include/linux/key-type.h | |
5158 | F: include/keys/ | |
5159 | F: security/keys/ | |
5160 | ||
7f3c68be | 5161 | KEYS-TRUSTED |
74dd744f MZ |
5162 | M: David Safford <safford@us.ibm.com> |
5163 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> | |
7f3c68be MZ |
5164 | L: linux-security-module@vger.kernel.org |
5165 | L: keyrings@linux-nfs.org | |
5166 | S: Supported | |
d410fa4e | 5167 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
5168 | F: include/keys/trusted-type.h |
5169 | F: security/keys/trusted.c | |
5170 | F: security/keys/trusted.h | |
5171 | ||
5172 | KEYS-ENCRYPTED | |
74dd744f MZ |
5173 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
5174 | M: David Safford <safford@us.ibm.com> | |
7f3c68be MZ |
5175 | L: linux-security-module@vger.kernel.org |
5176 | L: keyrings@linux-nfs.org | |
5177 | S: Supported | |
d410fa4e | 5178 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 5179 | F: include/keys/encrypted-type.h |
19c90aa6 | 5180 | F: security/keys/encrypted-keys/ |
7f3c68be | 5181 | |
5b778dad | 5182 | KGDB / KDB /debug_core |
8b58be88 | 5183 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 5184 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
5185 | L: kgdb-bugreport@lists.sourceforge.net |
5186 | S: Maintained | |
679655da JP |
5187 | F: Documentation/DocBook/kgdb.tmpl |
5188 | F: drivers/misc/kgdbts.c | |
df621252 | 5189 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 5190 | F: include/linux/kdb.h |
679655da | 5191 | F: include/linux/kgdb.h |
4063eb5f | 5192 | F: kernel/debug/ |
e3e2aaf7 | 5193 | |
456db8cc | 5194 | KMEMCHECK |
8b58be88 | 5195 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 5196 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 5197 | S: Maintained |
410d7a97 JP |
5198 | F: Documentation/kmemcheck.txt |
5199 | F: arch/x86/include/asm/kmemcheck.h | |
5200 | F: arch/x86/mm/kmemcheck/ | |
5201 | F: include/linux/kmemcheck.h | |
5202 | F: mm/kmemcheck.c | |
b9ce08c0 | 5203 | |
c3bb4d24 | 5204 | KMEMLEAK |
8b58be88 | 5205 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
5206 | S: Maintained |
5207 | F: Documentation/kmemleak.txt | |
5208 | F: include/linux/kmemleak.h | |
5209 | F: mm/kmemleak.c | |
5210 | F: mm/kmemleak-test.c | |
5211 | ||
89559a61 | 5212 | KPROBES |
8b58be88 JP |
5213 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
5214 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
5215 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 5216 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 5217 | S: Maintained |
679655da JP |
5218 | F: Documentation/kprobes.txt |
5219 | F: include/linux/kprobes.h | |
5220 | F: kernel/kprobes.c | |
89559a61 | 5221 | |
70e84049 | 5222 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 5223 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
5224 | W: http://miguelojeda.es/auxdisplay.htm |
5225 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 5226 | S: Maintained |
679655da JP |
5227 | F: Documentation/auxdisplay/ks0108 |
5228 | F: drivers/auxdisplay/ks0108.c | |
5229 | F: include/linux/ks0108.h | |
70e84049 | 5230 | |
1da177e4 | 5231 | LAPB module |
1da177e4 | 5232 | L: linux-x25@vger.kernel.org |
bf9915cc | 5233 | S: Orphan |
679655da JP |
5234 | F: Documentation/networking/lapb-module.txt |
5235 | F: include/*/lapb.h | |
5236 | F: net/lapb/ | |
1da177e4 LT |
5237 | |
5238 | LASI 53c700 driver for PARISC | |
8b58be88 | 5239 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
5240 | L: linux-scsi@vger.kernel.org |
5241 | S: Maintained | |
679655da JP |
5242 | F: Documentation/scsi/53c700.txt |
5243 | F: drivers/scsi/53c700* | |
1da177e4 | 5244 | |
263de9b5 | 5245 | LED SUBSYSTEM |
c772fc26 | 5246 | M: Bryan Wu <cooloney@gmail.com> |
8b58be88 | 5247 | M: Richard Purdie <rpurdie@rpsys.net> |
aa69cb8c BW |
5248 | L: linux-leds@vger.kernel.org |
5249 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 5250 | S: Maintained |
679655da JP |
5251 | F: drivers/leds/ |
5252 | F: include/linux/leds.h | |
263de9b5 | 5253 | |
b0461a44 | 5254 | LEGACY EEPROM DRIVER |
7c81c60f | 5255 | M: Jean Delvare <jdelvare@suse.de> |
b0461a44 JD |
5256 | S: Maintained |
5257 | F: Documentation/misc-devices/eeprom | |
5258 | F: drivers/misc/eeprom/eeprom.c | |
5259 | ||
1da177e4 | 5260 | LEGO USB Tower driver |
8b58be88 | 5261 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
5262 | L: legousb-devel@lists.sourceforge.net |
5263 | W: http://legousb.sourceforge.net/ | |
5264 | S: Maintained | |
679655da | 5265 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 5266 | |
055616a8 MK |
5267 | LG2160 MEDIA DRIVER |
5268 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5269 | L: linux-media@vger.kernel.org | |
5270 | W: http://linuxtv.org/ | |
5271 | W: http://github.com/mkrufky | |
5272 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5273 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5274 | S: Maintained | |
5275 | F: drivers/media/dvb-frontends/lg2160.* | |
5276 | ||
6f0e7725 MK |
5277 | LGDT3305 MEDIA DRIVER |
5278 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5279 | L: linux-media@vger.kernel.org | |
5280 | W: http://linuxtv.org/ | |
5281 | W: http://github.com/mkrufky | |
5282 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5283 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5284 | S: Maintained | |
5285 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5286 | ||
568a17ff | 5287 | LGUEST |
8b58be88 | 5288 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 5289 | L: lguest@lists.ozlabs.org |
568a17ff | 5290 | W: http://lguest.ozlabs.org/ |
72e91863 | 5291 | S: Odd Fixes |
070f420b | 5292 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5293 | F: arch/x86/lguest/ |
5294 | F: drivers/lguest/ | |
5295 | F: include/linux/lguest*.h | |
070f420b | 5296 | F: tools/lguest/ |
568a17ff | 5297 | |
1acd437c SL |
5298 | LIBLOCKDEP |
5299 | M: Sasha Levin <sasha.levin@oracle.com> | |
5300 | S: Maintained | |
5301 | F: tools/lib/lockdep/ | |
5302 | ||
1da177e4 | 5303 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5304 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
5305 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5306 | S: Supported | |
11c34c7d | 5307 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5308 | |
852bb9f5 | 5309 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5310 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
5311 | M: Paul Mackerras <paulus@samba.org> | |
1da177e4 | 5312 | W: http://www.penguinppc.org/ |
a4724ed6 | 5313 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 5314 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5316 | S: Supported |
11c34c7d JP |
5317 | F: Documentation/powerpc/ |
5318 | F: arch/powerpc/ | |
1da177e4 LT |
5319 | |
5320 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5321 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 5322 | W: http://www.penguinppc.org/ |
a4724ed6 | 5323 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5324 | S: Maintained |
11c34c7d JP |
5325 | F: arch/powerpc/platforms/powermac/ |
5326 | F: drivers/macintosh/ | |
1da177e4 | 5327 | |
77a76369 | 5328 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5329 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 5330 | L: linuxppc-dev@lists.ozlabs.org |
a149507b | 5331 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5332 | S: Maintained |
11c34c7d JP |
5333 | F: arch/powerpc/platforms/512x/ |
5334 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5335 | |
5336 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
1d11cd67 | 5337 | M: Alistair Popple <alistair@popple.id.au> |
8b58be88 | 5338 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 5339 | W: http://www.penguinppc.org/ |
a4724ed6 | 5340 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5341 | S: Maintained |
11c34c7d JP |
5342 | F: arch/powerpc/platforms/40x/ |
5343 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5344 | |
260c02a9 | 5345 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5346 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 5347 | S: Orphan |
11c34c7d JP |
5348 | F: arch/powerpc/*/*virtex* |
5349 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5350 | |
e93adf1e | 5351 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5352 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
5353 | M: Marcelo Tosatti <marcelo@kvack.org> | |
e93adf1e | 5354 | W: http://www.penguinppc.org/ |
a4724ed6 | 5355 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 5356 | S: Maintained |
a2b1f7c8 | 5357 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5358 | |
1da177e4 | 5359 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5360 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 5361 | W: http://www.penguinppc.org/ |
a4724ed6 | 5362 | L: linuxppc-dev@lists.ozlabs.org |
ce00f85c | 5363 | S: Maintained |
11c34c7d | 5364 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5365 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5366 | |
ab06ff3a | 5367 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5368 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 5369 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 5370 | S: Maintained |
11c34c7d JP |
5371 | F: arch/powerpc/platforms/pasemi/ |
5372 | F: drivers/*/*pasemi* | |
5373 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5374 | |
1da177e4 | 5375 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5376 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 5377 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
5378 | S: Supported |
5379 | ||
a23ce6da HW |
5380 | LIS3LV02D ACCELEROMETER DRIVER |
5381 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
5382 | S: Maintained | |
ff606677 JD |
5383 | F: Documentation/misc-devices/lis3lv02d |
5384 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5385 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5386 | |
e2d1d6c0 | 5387 | LLC (802.2) |
8b58be88 | 5388 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 5389 | S: Maintained |
679655da | 5390 | F: include/linux/llc.h |
c117ab84 | 5391 | F: include/uapi/linux/llc.h |
679655da JP |
5392 | F: include/net/llc* |
5393 | F: net/llc/ | |
e2d1d6c0 | 5394 | |
4e233cbe AD |
5395 | LM73 HARDWARE MONITOR DRIVER |
5396 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
5397 | L: lm-sensors@lm-sensors.org | |
5398 | S: Maintained | |
5399 | F: drivers/hwmon/lm73.c | |
5400 | ||
156e2d1a | 5401 | LM78 HARDWARE MONITOR DRIVER |
7c81c60f | 5402 | M: Jean Delvare <jdelvare@suse.de> |
156e2d1a JD |
5403 | L: lm-sensors@lm-sensors.org |
5404 | S: Maintained | |
5405 | F: Documentation/hwmon/lm78 | |
5406 | F: drivers/hwmon/lm78.c | |
5407 | ||
1da177e4 | 5408 | LM83 HARDWARE MONITOR DRIVER |
7c81c60f | 5409 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 5410 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5411 | S: Maintained |
679655da JP |
5412 | F: Documentation/hwmon/lm83 |
5413 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5414 | |
5415 | LM90 HARDWARE MONITOR DRIVER | |
7c81c60f | 5416 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 5417 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5418 | S: Maintained |
679655da | 5419 | F: Documentation/hwmon/lm90 |
aae7bce4 | 5420 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
679655da | 5421 | F: drivers/hwmon/lm90.c |
1da177e4 | 5422 | |
917cc4e6 GR |
5423 | LM95234 HARDWARE MONITOR DRIVER |
5424 | M: Guenter Roeck <linux@roeck-us.net> | |
5425 | L: lm-sensors@lm-sensors.org | |
5426 | S: Maintained | |
5427 | F: Documentation/hwmon/lm95234 | |
5428 | F: drivers/hwmon/lm95234.c | |
5429 | ||
68620bdd MP |
5430 | LME2510 MEDIA DRIVER |
5431 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5432 | L: linux-media@vger.kernel.org | |
5433 | W: http://linuxtv.org/ | |
5434 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5435 | S: Maintained | |
5436 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5437 | ||
512e67f9 | 5438 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5439 | M: Peter Zijlstra <peterz@infradead.org> |
5440 | M: Ingo Molnar <mingo@redhat.com> | |
981c3a4f | 5441 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 5442 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5443 | S: Maintained |
679655da JP |
5444 | F: Documentation/lockdep*.txt |
5445 | F: Documentation/lockstat.txt | |
5446 | F: include/linux/lockdep.h | |
7486d6da | 5447 | F: kernel/locking/ |
512e67f9 | 5448 | |
dde33348 | 5449 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5450 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
5451 | L: linux-ntfs-dev@lists.sourceforge.net |
5452 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5453 | S: Maintained |
679655da | 5454 | F: Documentation/ldm.txt |
20d16fef | 5455 | F: block/partitions/ldm.* |
1da177e4 | 5456 | |
ef6ada3d JE |
5457 | LogFS |
5458 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 5459 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
5460 | L: logfs@logfs.org |
5461 | W: logfs.org | |
5462 | S: Maintained | |
5463 | F: fs/logfs/ | |
5464 | ||
b62d7946 RS |
5465 | LPC32XX MACHINE SUPPORT |
5466 | M: Roland Stigge <stigge@antcom.de> | |
5467 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5468 | S: Maintained | |
5469 | F: arch/arm/mach-lpc32xx/ | |
5470 | ||
c87e34ef | 5471 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5472 | M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com> |
5473 | M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com> | |
d8a82d7b | 5474 | M: support@lsi.com |
cec744fb | 5475 | L: DL-MPTFusionLinux@lsi.com |
c87e34ef MED |
5476 | L: linux-scsi@vger.kernel.org |
5477 | W: http://www.lsilogic.com/support | |
5478 | S: Supported | |
679655da | 5479 | F: drivers/message/fusion/ |
500c152a | 5480 | F: drivers/scsi/mpt2sas/ |
5481 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5482 | |
1da177e4 | 5483 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5484 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
5485 | L: linux-scsi@vger.kernel.org |
5486 | S: Maintained | |
679655da | 5487 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5488 | |
e5f5c99a GR |
5489 | LTC4261 HARDWARE MONITOR DRIVER |
5490 | M: Guenter Roeck <linux@roeck-us.net> | |
5491 | L: lm-sensors@lm-sensors.org | |
5492 | S: Maintained | |
5493 | F: Documentation/hwmon/ltc4261 | |
5494 | F: drivers/hwmon/ltc4261.c | |
5495 | ||
81365c31 | 5496 | LTP (Linux Test Project) |
28b8e8d4 | 5497 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 | 5498 | M: Cyril Hrubis <chrubis@suse.cz> |
7d1ae8a8 | 5499 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> |
f2eb7f6f CH |
5500 | M: Jan Stancek <jstancek@redhat.com> |
5501 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> | |
5502 | M: Alexey Kodanev <alexey.kodanev@oracle.com> | |
81365c31 | 5503 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
f2eb7f6f | 5504 | W: http://linux-test-project.github.io/ |
7d1ae8a8 | 5505 | T: git git://github.com/linux-test-project/ltp.git |
81365c31 MF |
5506 | S: Maintained |
5507 | ||
c12a54b3 | 5508 | M32R ARCHITECTURE |
8b58be88 | 5509 | M: Hirokazu Takata <takata@linux-m32r.org> |
0d89e54c | 5510 | L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) |
c12a54b3 HT |
5511 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
5512 | W: http://www.linux-m32r.org/ | |
5513 | S: Maintained | |
679655da | 5514 | F: arch/m32r/ |
c12a54b3 | 5515 | |
1da177e4 | 5516 | M68K ARCHITECTURE |
8b58be88 | 5517 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
5518 | L: linux-m68k@lists.linux-m68k.org |
5519 | W: http://www.linux-m68k.org/ | |
54e5881d | 5520 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5521 | S: Maintained |
679655da | 5522 | F: arch/m68k/ |
9db35182 | 5523 | F: drivers/zorro/ |
1da177e4 LT |
5524 | |
5525 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5526 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 5527 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5528 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 5529 | S: Maintained |
9db35182 | 5530 | F: arch/m68k/mac/ |
1da177e4 LT |
5531 | |
5532 | M68K ON HP9000/300 | |
8b58be88 | 5533 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
5534 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5535 | S: Maintained | |
679655da | 5536 | F: arch/m68k/hp300/ |
1da177e4 | 5537 | |
74425546 AP |
5538 | M88DS3103 MEDIA DRIVER |
5539 | M: Antti Palosaari <crope@iki.fi> | |
5540 | L: linux-media@vger.kernel.org | |
5541 | W: http://linuxtv.org/ | |
5542 | W: http://palosaari.fi/linux/ | |
5543 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5544 | T: git git://linuxtv.org/anttip/media_tree.git | |
5545 | S: Maintained | |
5546 | F: drivers/media/dvb-frontends/m88ds3103* | |
5547 | ||
68620bdd MP |
5548 | M88RS2000 MEDIA DRIVER |
5549 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5550 | L: linux-media@vger.kernel.org | |
5551 | W: http://linuxtv.org/ | |
5552 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5553 | S: Maintained | |
5554 | F: drivers/media/dvb-frontends/m88rs2000* | |
5555 | ||
0d62f800 AP |
5556 | M88TS2022 MEDIA DRIVER |
5557 | M: Antti Palosaari <crope@iki.fi> | |
5558 | L: linux-media@vger.kernel.org | |
5559 | W: http://linuxtv.org/ | |
5560 | W: http://palosaari.fi/linux/ | |
5561 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5562 | T: git git://linuxtv.org/anttip/media_tree.git | |
5563 | S: Maintained | |
5564 | F: drivers/media/tuners/m88ts2022* | |
5565 | ||
07a092fa | 5566 | MA901 MASTERKIT USB FM RADIO DRIVER |
b75f0050 JP |
5567 | M: Alexey Klimov <klimov.linux@gmail.com> |
5568 | L: linux-media@vger.kernel.org | |
5569 | T: git git://linuxtv.org/media_tree.git | |
5570 | S: Maintained | |
5571 | F: drivers/media/radio/radio-ma901.c | |
07a092fa | 5572 | |
64a327a7 | 5573 | MAC80211 |
8b58be88 | 5574 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 5575 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5576 | W: http://wireless.kernel.org/ |
ce466579 JB |
5577 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5579 | S: Maintained |
679655da JP |
5580 | F: Documentation/networking/mac80211-injection.txt |
5581 | F: include/net/mac80211.h | |
5582 | F: net/mac80211/ | |
64a327a7 | 5583 | |
1036d864 | 5584 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5585 | M: Stefano Brivio <stefano.brivio@polimi.it> |
5586 | M: Mattias Nissler <mattias.nissler@gmx.de> | |
1036d864 | 5587 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5588 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5590 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5591 | S: Maintained |
679655da | 5592 | F: net/mac80211/rc80211_pid* |
1036d864 | 5593 | |
b863ceb7 | 5594 | MACVLAN DRIVER |
8b58be88 | 5595 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
5596 | L: netdev@vger.kernel.org |
5597 | S: Maintained | |
679655da JP |
5598 | F: drivers/net/macvlan.c |
5599 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5600 | |
faf1668c | 5601 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5602 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 5603 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5604 | L: linux-man@vger.kernel.org |
1b53dc74 | 5605 | S: Maintained |
faf1668c | 5606 | |
8427defd RK |
5607 | MARVELL ARMADA DRM SUPPORT |
5608 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
5609 | S: Maintained | |
5610 | F: drivers/gpu/drm/armada/ | |
5611 | ||
44c14c1d | 5612 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5613 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 5614 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 5615 | L: netdev@vger.kernel.org |
5616 | S: Maintained | |
5617 | F: drivers/net/ethernet/marvell/sk* | |
5618 | ||
74cda169 | 5619 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5620 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 5621 | S: Orphan |
679655da | 5622 | F: drivers/net/wireless/libertas/ |
74cda169 | 5623 | |
b60d6975 | 5624 | MARVELL MV643XX ETHERNET DRIVER |
4e3faf88 | 5625 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
979b6c13 | 5626 | L: netdev@vger.kernel.org |
f5ca8502 | 5627 | S: Maintained |
527a6266 | 5628 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5629 | F: include/linux/mv643xx.h |
1da177e4 | 5630 | |
370b8ed9 TP |
5631 | MARVELL MVNETA ETHERNET DRIVER |
5632 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
5633 | L: netdev@vger.kernel.org | |
5634 | S: Maintained | |
5635 | F: drivers/net/ethernet/marvell/mvneta.* | |
5636 | ||
fcad584d BZ |
5637 | MARVELL MWIFIEX WIRELESS DRIVER |
5638 | M: Bing Zhao <bzhao@marvell.com> | |
5639 | L: linux-wireless@vger.kernel.org | |
5640 | S: Maintained | |
5641 | F: drivers/net/wireless/mwifiex/ | |
5642 | ||
a2c3f656 | 5643 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5644 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 5645 | L: linux-wireless@vger.kernel.org |
16345910 | 5646 | S: Odd Fixes |
a2c3f656 LB |
5647 | F: drivers/net/wireless/mwl8k.c |
5648 | ||
2a69567b | 5649 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5650 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 5651 | S: Odd Fixes |
1fa7e547 | 5652 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5653 | |
1da177e4 | 5654 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5655 | L: linux-fbdev@vger.kernel.org |
52653199 | 5656 | S: Orphan |
679655da | 5657 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5658 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5659 | |
ca462085 GR |
5660 | MAX16065 HARDWARE MONITOR DRIVER |
5661 | M: Guenter Roeck <linux@roeck-us.net> | |
5662 | L: lm-sensors@lm-sensors.org | |
5663 | S: Maintained | |
5664 | F: Documentation/hwmon/max16065 | |
5665 | F: drivers/hwmon/max16065.c | |
5666 | ||
d20620de | 5667 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5668 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
5669 | L: lm-sensors@lm-sensors.org |
5670 | S: Maintained | |
679655da JP |
5671 | F: Documentation/hwmon/max6650 |
5672 | F: drivers/hwmon/max6650.c | |
d20620de | 5673 | |
e89ab51f GR |
5674 | MAX6697 HARDWARE MONITOR DRIVER |
5675 | M: Guenter Roeck <linux@roeck-us.net> | |
5676 | L: lm-sensors@lm-sensors.org | |
5677 | S: Maintained | |
5678 | F: Documentation/hwmon/max6697 | |
5679 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5680 | F: drivers/hwmon/max6697.c | |
5681 | F: include/linux/platform_data/max6697.h | |
5682 | ||
9be3c9a5 HV |
5683 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5684 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5685 | L: linux-media@vger.kernel.org | |
5686 | T: git git://linuxtv.org/media_tree.git | |
5687 | W: http://linuxtv.org | |
5688 | S: Maintained | |
5689 | F: drivers/media/radio/radio-maxiradio* | |
5690 | ||
127c49ae | 5691 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5692 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
127c49ae JP |
5693 | P: LinuxTV.org Project |
5694 | L: linux-media@vger.kernel.org | |
5695 | W: http://linuxtv.org | |
8a6e2535 | 5696 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5697 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5698 | S: Maintained |
5699 | F: Documentation/dvb/ | |
5700 | F: Documentation/video4linux/ | |
ffe06198 | 5701 | F: Documentation/DocBook/media/ |
127c49ae | 5702 | F: drivers/media/ |
ffe06198 | 5703 | F: drivers/staging/media/ |
127c49ae | 5704 | F: include/media/ |
6c0f0359 MCC |
5705 | F: include/uapi/linux/dvb/ |
5706 | F: include/uapi/linux/videodev2.h | |
5707 | F: include/uapi/linux/media.h | |
5708 | F: include/uapi/linux/v4l2-* | |
5709 | F: include/uapi/linux/meye.h | |
5710 | F: include/uapi/linux/ivtv* | |
5711 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5712 | |
6149a936 HV |
5713 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5714 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5715 | L: linux-media@vger.kernel.org | |
5716 | T: git git://linuxtv.org/media_tree.git | |
5717 | W: http://linuxtv.org | |
5718 | S: Odd Fixes | |
5719 | F: drivers/media/parport/pms* | |
5720 | ||
757e0108 | 5721 | MEGARAID SCSI DRIVERS |
8b58be88 | 5722 | M: Neela Syam Kolli <megaraidlinux@lsi.com> |
baaea1dc | 5723 | L: linux-scsi@vger.kernel.org |
ce00f85c JC |
5724 | W: http://megaraid.lsilogic.com |
5725 | S: Maintained | |
679655da JP |
5726 | F: Documentation/scsi/megaraid.txt |
5727 | F: drivers/scsi/megaraid.* | |
5728 | F: drivers/scsi/megaraid/ | |
757e0108 | 5729 | |
2c46c9d5 AV |
5730 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5731 | M: Amir Vadai <amirv@mellanox.com> | |
b75f0050 | 5732 | L: netdev@vger.kernel.org |
2c46c9d5 AV |
5733 | S: Supported |
5734 | W: http://www.mellanox.com | |
5735 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5736 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5737 | ||
70ea91f1 SR |
5738 | MEMORY MANAGEMENT |
5739 | L: linux-mm@kvack.org | |
70ea91f1 SR |
5740 | W: http://www.linux-mm.org |
5741 | S: Maintained | |
679655da | 5742 | F: include/linux/mm.h |
551450bb CS |
5743 | F: include/linux/gfp.h |
5744 | F: include/linux/mmzone.h | |
5745 | F: include/linux/memory_hotplug.h | |
5746 | F: include/linux/vmalloc.h | |
679655da | 5747 | F: mm/ |
70ea91f1 | 5748 | |
938a9204 | 5749 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5750 | M: Johannes Weiner <hannes@cmpxchg.org> |
5751 | M: Michal Hocko <mhocko@suse.cz> | |
185e595f | 5752 | M: Balbir Singh <bsingharora@gmail.com> |
8b58be88 | 5753 | M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> |
12340313 | 5754 | L: cgroups@vger.kernel.org |
938a9204 | 5755 | L: linux-mm@kvack.org |
938a9204 | 5756 | S: Maintained |
679655da | 5757 | F: mm/memcontrol.c |
4e4c941c | 5758 | F: mm/page_cgroup.c |
938a9204 | 5759 | |
f4e9ce66 | 5760 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5761 | M: David Woodhouse <dwmw2@infradead.org> |
242c325e | 5762 | M: Brian Norris <computersforpeace@gmail.com> |
1da177e4 | 5763 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
5764 | W: http://www.linux-mtd.infradead.org/ |
5765 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
242c325e | 5766 | T: git git://git.infradead.org/linux-mtd.git |
1da177e4 | 5767 | S: Maintained |
679655da JP |
5768 | F: drivers/mtd/ |
5769 | F: include/linux/mtd/ | |
c117ab84 | 5770 | F: include/uapi/mtd/ |
1da177e4 | 5771 | |
26c57ef1 | 5772 | MEN A21 WATCHDOG DRIVER |
b75f0050 | 5773 | M: Johannes Thumshirn <johannes.thumshirn@men.de> |
26c57ef1 JT |
5774 | L: linux-watchdog@vger.kernel.org |
5775 | S: Supported | |
5776 | F: drivers/watchdog/mena21_wdt.c | |
5777 | ||
3764e82e JT |
5778 | MEN CHAMELEON BUS (mcb) |
5779 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
5780 | S: Supported | |
5781 | F: drivers/mcb/ | |
5782 | F: include/linux/mcb.h | |
5783 | ||
12285945 JH |
5784 | METAG ARCHITECTURE |
5785 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 5786 | L: linux-metag@vger.kernel.org |
12285945 JH |
5787 | S: Supported |
5788 | F: arch/metag/ | |
5789 | F: Documentation/metag/ | |
5790 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5791 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5792 | F: drivers/irqchip/irq-metag.c |
5793 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5794 | F: drivers/tty/metag_da.c |
5795 | F: fs/imgdafs/ | |
12285945 | 5796 | |
c6375b0a | 5797 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5798 | M: Michal Simek <monstr@monstr.eu> |
c6375b0a MS |
5799 | W: http://www.monstr.eu/fdt/ |
5800 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5801 | S: Supported | |
0a8c7914 | 5802 | F: arch/microblaze/ |
1da177e4 LT |
5803 | |
5804 | MICROTEK X6 SCANNER | |
61eee9a7 | 5805 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 5806 | S: Maintained |
679655da | 5807 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5808 | |
5809 | MIPS | |
8b58be88 | 5810 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 5811 | L: linux-mips@linux-mips.org |
6097050d | 5812 | W: http://www.linux-mips.org/ |
b05e988e | 5813 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5814 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5815 | S: Supported |
679655da JP |
5816 | F: Documentation/mips/ |
5817 | F: arch/mips/ | |
1da177e4 | 5818 | |
08b7620a HV |
5819 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5820 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5821 | L: linux-media@vger.kernel.org | |
5822 | T: git git://linuxtv.org/media_tree.git | |
5823 | W: http://linuxtv.org | |
5824 | S: Odd Fixes | |
5825 | F: drivers/media/radio/radio-miropcm20* | |
5826 | ||
e126ba97 EC |
5827 | Mellanox MLX5 core VPI driver |
5828 | M: Eli Cohen <eli@mellanox.com> | |
5829 | L: netdev@vger.kernel.org | |
5830 | L: linux-rdma@vger.kernel.org | |
5831 | W: http://www.mellanox.com | |
5832 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5833 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5834 | T: git git://openfabrics.org/~eli/connect-ib.git |
e126ba97 EC |
5835 | S: Supported |
5836 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5837 | F: include/linux/mlx5/ | |
5838 | ||
5839 | Mellanox MLX5 IB driver | |
b75f0050 JP |
5840 | M: Eli Cohen <eli@mellanox.com> |
5841 | L: linux-rdma@vger.kernel.org | |
5842 | W: http://www.mellanox.com | |
5843 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
cea8321c | 5844 | T: git git://openfabrics.org/~eli/connect-ib.git |
b75f0050 JP |
5845 | S: Supported |
5846 | F: include/linux/mlx5/ | |
5847 | F: drivers/infiniband/hw/mlx5/ | |
e126ba97 | 5848 | |
1da177e4 | 5849 | MODULE SUPPORT |
8b58be88 | 5850 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 5851 | S: Maintained |
679655da JP |
5852 | F: include/linux/module.h |
5853 | F: kernel/module.c | |
1da177e4 LT |
5854 | |
5855 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5856 | W: http://popies.net/meye/ |
b7788e13 | 5857 | S: Orphan |
679655da | 5858 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5859 | F: drivers/media/pci/meye/ |
6c0f0359 | 5860 | F: include/uapi/linux/meye.h |
1da177e4 | 5861 | |
b9705b60 | 5862 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5863 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 5864 | S: Maintained |
679655da | 5865 | F: Documentation/serial/moxa-smartio |
c897401b | 5866 | F: drivers/tty/mxser.* |
d735410a | 5867 | |
889b2f87 AK |
5868 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5869 | M: Alexey Klimov <klimov.linux@gmail.com> | |
5870 | L: linux-media@vger.kernel.org | |
5871 | T: git git://linuxtv.org/media_tree.git | |
5872 | S: Maintained | |
5873 | F: drivers/media/radio/radio-mr800.c | |
5874 | ||
8c4c731a | 5875 | MSI LAPTOP SUPPORT |
182ae55c | 5876 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 5877 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 5878 | S: Maintained |
679655da | 5879 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5880 | |
0f1006b1 AA |
5881 | MSI WMI SUPPORT |
5882 | M: Anisse Astier <anisse@astier.eu> | |
d0944853 | 5883 | L: platform-driver-x86@vger.kernel.org |
0f1006b1 AA |
5884 | S: Supported |
5885 | F: drivers/platform/x86/msi-wmi.c | |
5886 | ||
19a628a0 AP |
5887 | MSI001 MEDIA DRIVER |
5888 | M: Antti Palosaari <crope@iki.fi> | |
5889 | L: linux-media@vger.kernel.org | |
5890 | W: http://linuxtv.org/ | |
5891 | W: http://palosaari.fi/linux/ | |
5892 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5893 | T: git git://linuxtv.org/anttip/media_tree.git | |
5894 | S: Maintained | |
5895 | F: drivers/staging/media/msi3101/msi001* | |
5896 | ||
2c57213f AP |
5897 | MSI3101 MEDIA DRIVER |
5898 | M: Antti Palosaari <crope@iki.fi> | |
5899 | L: linux-media@vger.kernel.org | |
5900 | W: http://linuxtv.org/ | |
5901 | W: http://palosaari.fi/linux/ | |
5902 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5903 | T: git git://linuxtv.org/anttip/media_tree.git | |
5904 | S: Maintained | |
5905 | F: drivers/staging/media/msi3101/sdr-msi3101* | |
5906 | ||
62a37dc7 | 5907 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5908 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5909 | L: linux-media@vger.kernel.org | |
5910 | T: git git://linuxtv.org/media_tree.git | |
5911 | S: Maintained | |
5912 | F: drivers/media/i2c/mt9m032.c | |
5913 | F: include/media/mt9m032.h | |
5914 | ||
62a37dc7 | 5915 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5916 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5917 | L: linux-media@vger.kernel.org | |
5918 | T: git git://linuxtv.org/media_tree.git | |
5919 | S: Maintained | |
5920 | F: drivers/media/i2c/mt9p031.c | |
5921 | F: include/media/mt9p031.h | |
5922 | ||
62a37dc7 | 5923 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5924 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5925 | L: linux-media@vger.kernel.org | |
5926 | T: git git://linuxtv.org/media_tree.git | |
5927 | S: Maintained | |
5928 | F: drivers/media/i2c/mt9t001.c | |
5929 | F: include/media/mt9t001.h | |
5930 | ||
62a37dc7 | 5931 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5932 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5933 | L: linux-media@vger.kernel.org | |
5934 | T: git git://linuxtv.org/media_tree.git | |
5935 | S: Maintained | |
5936 | F: drivers/media/i2c/mt9v032.c | |
5937 | F: include/media/mt9v032.h | |
5938 | ||
4e0d13cb | 5939 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5940 | M: Samuel Ortiz <sameo@linux.intel.com> |
f7d3210e SO |
5941 | M: Lee Jones <lee.jones@linaro.org> |
5942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5943 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5944 | S: Supported |
679655da | 5945 | F: drivers/mfd/ |
55b5940d | 5946 | F: include/linux/mfd/ |
4e0d13cb | 5947 | |
5c4e6f13 | 5948 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
6e443244 | 5949 | M: Chris Ball <chris@printf.net> |
e18eaf8f | 5950 | M: Ulf Hansson <ulf.hansson@linaro.org> |
b2503a94 | 5951 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
5952 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5953 | S: Maintained | |
679655da JP |
5954 | F: drivers/mmc/ |
5955 | F: include/linux/mmc/ | |
c117ab84 | 5956 | F: include/uapi/linux/mmc/ |
baca2da4 | 5957 | |
15a0580c | 5958 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5959 | S: Orphan |
679655da JP |
5960 | F: drivers/mmc/host/mmc_spi.c |
5961 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5962 | |
1da177e4 | 5963 | MULTISOUND SOUND DRIVER |
8b58be88 | 5964 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 5965 | S: Maintained |
679655da JP |
5966 | F: Documentation/sound/oss/MultiSound |
5967 | F: sound/oss/msnd* | |
1da177e4 | 5968 | |
d735410a | 5969 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5970 | S: Orphan |
c897401b | 5971 | F: drivers/tty/isicom.c |
679655da | 5972 | F: include/linux/isicom.h |
d735410a | 5973 | |
550a7375 | 5974 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5975 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 5976 | L: linux-usb@vger.kernel.org |
43b416e5 | 5977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5978 | S: Maintained |
679655da | 5979 | F: drivers/usb/musb/ |
550a7375 | 5980 | |
ea0af5f6 MK |
5981 | MXL5007T MEDIA DRIVER |
5982 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5983 | L: linux-media@vger.kernel.org | |
5984 | W: http://linuxtv.org/ | |
5985 | W: http://github.com/mkrufky | |
5986 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5987 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5988 | S: Maintained | |
5989 | F: drivers/media/tuners/mxl5007t.* | |
5990 | ||
2d3cf588 | 5991 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5992 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 5993 | L: netdev@vger.kernel.org |
205057ae | 5994 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5995 | S: Supported |
93f7848b | 5996 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5997 | |
1da177e4 | 5998 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5999 | S: Orphan |
d9fb9f38 | 6000 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 6001 | |
23dc05a3 DM |
6002 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
6003 | M: Daniel Mack <zonque@gmail.com> | |
6004 | S: Maintained | |
6005 | L: alsa-devel@alsa-project.org | |
6006 | W: http://www.native-instruments.com | |
6007 | F: sound/usb/caiaq/ | |
6008 | ||
1da177e4 | 6009 | NCP FILESYSTEM |
52653199 PV |
6010 | M: Petr Vandrovec <petr@vandrovec.name> |
6011 | S: Odd Fixes | |
679655da | 6012 | F: fs/ncpfs/ |
1da177e4 LT |
6013 | |
6014 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 6015 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
6016 | L: linux-scsi@vger.kernel.org |
6017 | S: Maintained | |
679655da | 6018 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 6019 | |
4aa3eb4c GR |
6020 | NCT6775 HARDWARE MONITOR DRIVER |
6021 | M: Guenter Roeck <linux@roeck-us.net> | |
6022 | L: lm-sensors@lm-sensors.org | |
6023 | S: Maintained | |
6024 | F: Documentation/hwmon/nct6775 | |
6025 | F: drivers/hwmon/nct6775.c | |
6026 | ||
3c2d774c | 6027 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 6028 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 6029 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 6030 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
6031 | S: Supported |
6032 | F: drivers/infiniband/hw/nes/ | |
6033 | ||
be2f2e84 | 6034 | NETEM NETWORK EMULATOR |
adbbf69d | 6035 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 6036 | L: netem@lists.linux-foundation.org |
be2f2e84 | 6037 | S: Maintained |
679655da | 6038 | F: net/sched/sch_netem.c |
be2f2e84 | 6039 | |
b2f5a051 | 6040 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 6041 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 6042 | L: netdev@vger.kernel.org |
4a58448b | 6043 | S: Supported |
679655da | 6044 | F: Documentation/networking/s2io.txt |
b2f5a051 | 6045 | F: Documentation/networking/vxge.txt |
86387e1a | 6046 | F: drivers/net/ethernet/neterion/ |
4a58448b | 6047 | |
42010ed0 | 6048 | NETFILTER/IPTABLES |
0e05e192 | 6049 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 6050 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 6051 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d PM |
6052 | L: netfilter-devel@vger.kernel.org |
6053 | L: netfilter@vger.kernel.org | |
82b98543 | 6054 | L: coreteam@netfilter.org |
1da177e4 LT |
6055 | W: http://www.netfilter.org/ |
6056 | W: http://www.iptables.org/ | |
42010ed0 PNA |
6057 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
6058 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
6059 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 6060 | S: Supported |
679655da JP |
6061 | F: include/linux/netfilter* |
6062 | F: include/linux/netfilter/ | |
6063 | F: include/net/netfilter/ | |
c117ab84 CEB |
6064 | F: include/uapi/linux/netfilter* |
6065 | F: include/uapi/linux/netfilter/ | |
679655da JP |
6066 | F: net/*/netfilter.c |
6067 | F: net/*/netfilter/ | |
6068 | F: net/netfilter/ | |
1da177e4 | 6069 | |
4cc67735 | 6070 | NETLABEL |
87a0874c | 6071 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
6072 | W: http://netlabel.sf.net |
6073 | L: netdev@vger.kernel.org | |
87a0874c | 6074 | S: Maintained |
80811493 | 6075 | F: Documentation/netlabel/ |
679655da JP |
6076 | F: include/net/netlabel.h |
6077 | F: net/netlabel/ | |
4cc67735 | 6078 | |
1da177e4 | 6079 | NETROM NETWORK LAYER |
8b58be88 | 6080 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 6081 | L: linux-hams@vger.kernel.org |
d34cb28a | 6082 | W: http://www.linux-ax25.org/ |
1da177e4 | 6083 | S: Maintained |
679655da | 6084 | F: include/net/netrom.h |
c117ab84 | 6085 | F: include/uapi/linux/netrom.h |
679655da | 6086 | F: net/netrom/ |
1da177e4 | 6087 | |
5ddb88c0 | 6088 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 6089 | M: Paul Clements <Paul.Clements@steeleye.com> |
1da177e4 | 6090 | S: Maintained |
5e4b269b | 6091 | L: nbd-general@lists.sourceforge.net |
679655da JP |
6092 | F: Documentation/blockdev/nbd.txt |
6093 | F: drivers/block/nbd.c | |
6094 | F: include/linux/nbd.h | |
c117ab84 | 6095 | F: include/uapi/linux/nbd.h |
1da177e4 | 6096 | |
6e43650c NH |
6097 | NETWORK DROP MONITOR |
6098 | M: Neil Horman <nhorman@tuxdriver.com> | |
6099 | L: netdev@vger.kernel.org | |
6100 | S: Maintained | |
6101 | W: https://fedorahosted.org/dropwatch/ | |
6102 | F: net/core/drop_monitor.c | |
6103 | ||
1da177e4 | 6104 | NETWORKING [GENERAL] |
8b58be88 | 6105 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 6106 | L: netdev@vger.kernel.org |
b1e8fd54 | 6107 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 6108 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
6109 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6110 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 6111 | S: Maintained |
679655da JP |
6112 | F: net/ |
6113 | F: include/net/ | |
018d21ed JP |
6114 | F: include/linux/in.h |
6115 | F: include/linux/net.h | |
6116 | F: include/linux/netdevice.h | |
c117ab84 CEB |
6117 | F: include/uapi/linux/in.h |
6118 | F: include/uapi/linux/net.h | |
6119 | F: include/uapi/linux/netdevice.h | |
7e814a6c | 6120 | F: tools/net/ |
f4e53f9a | 6121 | F: tools/testing/selftests/net/ |
335a67d2 | 6122 | F: lib/random32.c |
1da177e4 LT |
6123 | |
6124 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
6125 | M: "David S. Miller" <davem@davemloft.net> |
6126 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
6127 | M: James Morris <jmorris@namei.org> |
6128 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
6129 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 6130 | L: netdev@vger.kernel.org |
08deed1e | 6131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 6132 | S: Maintained |
679655da JP |
6133 | F: net/ipv4/ |
6134 | F: net/ipv6/ | |
6135 | F: include/net/ip* | |
0a14842f | 6136 | F: arch/x86/net/* |
1da177e4 | 6137 | |
73b7656c DM |
6138 | NETWORKING [IPSEC] |
6139 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
6140 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
6141 | M: "David S. Miller" <davem@davemloft.net> | |
6142 | L: netdev@vger.kernel.org | |
d1fc5024 SK |
6143 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
6144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git | |
73b7656c | 6145 | S: Maintained |
5826bdd1 | 6146 | F: net/core/flow.c |
73b7656c DM |
6147 | F: net/xfrm/ |
6148 | F: net/key/ | |
6149 | F: net/ipv4/xfrm* | |
d1fc5024 SK |
6150 | F: net/ipv4/esp4.c |
6151 | F: net/ipv4/ah4.c | |
6152 | F: net/ipv4/ipcomp.c | |
6153 | F: net/ipv4/ip_vti.c | |
73b7656c | 6154 | F: net/ipv6/xfrm* |
d1fc5024 SK |
6155 | F: net/ipv6/esp6.c |
6156 | F: net/ipv6/ah6.c | |
6157 | F: net/ipv6/ipcomp6.c | |
6158 | F: net/ipv6/ip6_vti.c | |
73b7656c DM |
6159 | F: include/uapi/linux/xfrm.h |
6160 | F: include/net/xfrm.h | |
6161 | ||
10e2ff1c | 6162 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 6163 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
6164 | L: netdev@vger.kernel.org |
6165 | S: Maintained | |
6166 | ||
29f8f632 | 6167 | NETWORKING [WIRELESS] |
8b58be88 | 6168 | M: "John W. Linville" <linville@tuxdriver.com> |
2cb4abd1 | 6169 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 6170 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 6171 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 6172 | S: Maintained |
34b921cf JP |
6173 | F: net/mac80211/ |
6174 | F: net/rfkill/ | |
679655da JP |
6175 | F: net/wireless/ |
6176 | F: include/net/ieee80211* | |
cc8b4a2b | 6177 | F: include/linux/wireless.h |
c117ab84 | 6178 | F: include/uapi/linux/wireless.h |
c984e24d | 6179 | F: include/net/iw_handler.h |
34b921cf | 6180 | F: drivers/net/wireless/ |
29f8f632 | 6181 | |
788873ac JP |
6182 | NETWORKING DRIVERS |
6183 | L: netdev@vger.kernel.org | |
6184 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 6185 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
6186 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
6187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
6188 | S: Odd Fixes |
6189 | F: drivers/net/ | |
018d21ed | 6190 | F: include/linux/if_* |
0b63bf1f JD |
6191 | F: include/linux/netdevice.h |
6192 | F: include/linux/arcdevice.h | |
6193 | F: include/linux/etherdevice.h | |
6194 | F: include/linux/fcdevice.h | |
6195 | F: include/linux/fddidevice.h | |
6196 | F: include/linux/hippidevice.h | |
6197 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
6198 | F: include/uapi/linux/if_* |
6199 | F: include/uapi/linux/netdevice.h | |
788873ac | 6200 | |
3d396eb1 | 6201 | NETXEN (1/10) GbE SUPPORT |
8622315e | 6202 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
6203 | M: Sony Chacko <sony.chacko@qlogic.com> |
6204 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 6205 | L: netdev@vger.kernel.org |
9c2b5bde | 6206 | W: http://www.qlogic.com |
3d396eb1 | 6207 | S: Supported |
aa43c215 | 6208 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 6209 | |
6423d30f AAJ |
6210 | NFC SUBSYSTEM |
6211 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
6212 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
6213 | M: Samuel Ortiz <sameo@linux.intel.com> | |
6214 | L: linux-wireless@vger.kernel.org | |
5adf54de | 6215 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
0293ba20 | 6216 | S: Supported |
6423d30f | 6217 | F: net/nfc/ |
55eb94f9 | 6218 | F: include/net/nfc/ |
c117ab84 | 6219 | F: include/uapi/linux/nfc.h |
6423d30f | 6220 | F: drivers/nfc/ |
08eaa1e0 | 6221 | F: include/linux/platform_data/pn544.h |
7ebb88e5 | 6222 | F: Documentation/devicetree/bindings/net/nfc/ |
3d396eb1 | 6223 | |
e8b43555 | 6224 | NFS, SUNRPC, AND LOCKD CLIENTS |
cd7b996a | 6225 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
78f58153 TM |
6226 | L: linux-nfs@vger.kernel.org |
6227 | W: http://client.linux-nfs.org | |
cd7b996a | 6228 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
1da177e4 | 6229 | S: Maintained |
679655da JP |
6230 | F: fs/lockd/ |
6231 | F: fs/nfs/ | |
6232 | F: fs/nfs_common/ | |
6233 | F: net/sunrpc/ | |
6234 | F: include/linux/lockd/ | |
6235 | F: include/linux/nfs* | |
6236 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
6237 | F: include/uapi/linux/nfs* |
6238 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 6239 | |
85ef9cea | 6240 | NILFS2 FILESYSTEM |
e2126935 | 6241 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 6242 | L: linux-nilfs@vger.kernel.org |
f9472265 | 6243 | W: http://nilfs.sourceforge.net/ |
e2126935 | 6244 | T: git git://github.com/konis/nilfs2.git |
85ef9cea | 6245 | S: Supported |
679655da JP |
6246 | F: Documentation/filesystems/nilfs2.txt |
6247 | F: fs/nilfs2/ | |
6248 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 6249 | |
1da177e4 | 6250 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 6251 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
6252 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6253 | S: Maintained | |
679655da JP |
6254 | F: Documentation/scsi/NinjaSCSI.txt |
6255 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
6256 | |
6257 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
6258 | M: GOTO Masanori <gotom@debian.or.jp> |
6259 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
6260 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
6261 | S: Maintained | |
679655da JP |
6262 | F: Documentation/scsi/NinjaSCSI.txt |
6263 | F: drivers/scsi/nsp32* | |
1da177e4 | 6264 | |
fce8a7bb JM |
6265 | NTB DRIVER |
6266 | M: Jon Mason <jon.mason@intel.com> | |
6267 | S: Supported | |
2984411f JM |
6268 | W: https://github.com/jonmason/ntb/wiki |
6269 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 6270 | F: drivers/ntb/ |
548c237c | 6271 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
6272 | F: include/linux/ntb.h |
6273 | ||
1da177e4 | 6274 | NTFS FILESYSTEM |
2818ef50 | 6275 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 6276 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 6277 | W: http://www.tuxera.com/ |
e6f4dee7 | 6278 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 6279 | S: Supported |
679655da JP |
6280 | F: Documentation/filesystems/ntfs.txt |
6281 | F: fs/ntfs/ | |
1da177e4 | 6282 | |
9eb8ef74 | 6283 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 6284 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6285 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6286 | S: Maintained |
679655da JP |
6287 | F: drivers/video/riva/ |
6288 | F: drivers/video/nvidia/ | |
1da177e4 | 6289 | |
79461681 MW |
6290 | NVM EXPRESS DRIVER |
6291 | M: Matthew Wilcox <willy@linux.intel.com> | |
6292 | L: linux-nvme@lists.infradead.org | |
6293 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
6294 | S: Supported | |
5be37bf9 | 6295 | F: drivers/block/nvme* |
79461681 MW |
6296 | F: include/linux/nvme.h |
6297 | ||
f50d7146 RK |
6298 | NXP TDA998X DRM DRIVER |
6299 | M: Russell King <rmk+kernel@arm.linux.org.uk> | |
6300 | S: Supported | |
6301 | F: drivers/gpu/drm/i2c/tda998x_drv.c | |
6302 | F: include/drm/i2c/tda998x.h | |
6303 | ||
f5525786 | 6304 | OMAP SUPPORT |
0e24bdd4 | 6305 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
6306 | L: linux-omap@vger.kernel.org |
6307 | W: http://www.muru.com/linux/omap/ | |
6308 | W: http://linux.omap.com/ | |
8a6e2535 | 6309 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 6310 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 6311 | S: Maintained |
4e04d5a3 | 6312 | F: arch/arm/*omap*/ |
046d0a37 JD |
6313 | F: drivers/i2c/busses/i2c-omap.c |
6314 | F: include/linux/i2c-omap.h | |
f5525786 | 6315 | |
50f29fbd | 6316 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 6317 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
6318 | M: Tony Lindgren <tony@atomide.com> |
6319 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 6320 | L: devicetree@vger.kernel.org |
50f29fbd TL |
6321 | S: Maintained |
6322 | F: arch/arm/boot/dts/*omap* | |
6323 | F: arch/arm/boot/dts/*am3* | |
6324 | ||
f5525786 | 6325 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 6326 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
6327 | L: linux-omap@vger.kernel.org |
6328 | S: Maintained | |
6329 | F: arch/arm/*omap*/*clock* | |
6330 | ||
6331 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 6332 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
6333 | L: linux-omap@vger.kernel.org |
6334 | S: Maintained | |
6335 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 6336 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 6337 | |
d21db568 | 6338 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
6339 | M: Rajendra Nayak <rnayak@ti.com> |
6340 | M: Paul Walmsley <paul@pwsan.com> | |
6341 | L: linux-omap@vger.kernel.org | |
6342 | S: Maintained | |
d21db568 | 6343 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 6344 | |
f5525786 | 6345 | OMAP AUDIO SUPPORT |
6c284903 | 6346 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 6347 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
f5525786 TL |
6348 | L: alsa-devel@alsa-project.org (subscribers-only) |
6349 | L: linux-omap@vger.kernel.org | |
6350 | S: Maintained | |
6351 | F: sound/soc/omap/ | |
6352 | ||
6353 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6354 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 6355 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
6356 | L: linux-omap@vger.kernel.org |
6357 | S: Maintained | |
6358 | F: drivers/video/omap/ | |
6359 | ||
676eec0d | 6360 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6361 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 6362 | L: linux-omap@vger.kernel.org |
676eec0d | 6363 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 6364 | S: Maintained |
676eec0d | 6365 | F: drivers/video/omap2/ |
178ff4c9 TV |
6366 | F: Documentation/arm/OMAP/DSS |
6367 | ||
8b37fcfc OBC |
6368 | OMAP HARDWARE SPINLOCK SUPPORT |
6369 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6370 | L: linux-omap@vger.kernel.org | |
6371 | S: Maintained | |
6372 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6373 | F: arch/arm/mach-omap2/hwspinlock.c | |
6374 | ||
f5525786 | 6375 | OMAP MMC SUPPORT |
8b58be88 | 6376 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
6377 | L: linux-omap@vger.kernel.org |
6378 | S: Maintained | |
653f41b5 MC |
6379 | F: drivers/mmc/host/omap.c |
6380 | ||
6381 | OMAP HS MMC SUPPORT | |
14006bfb | 6382 | M: Balaji T K <balajitk@ti.com> |
0a4585c6 | 6383 | L: linux-mmc@vger.kernel.org |
653f41b5 | 6384 | L: linux-omap@vger.kernel.org |
0a4585c6 | 6385 | S: Maintained |
653f41b5 | 6386 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6387 | |
6388 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6389 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
6390 | S: Maintained |
6391 | F: drivers/char/hw_random/omap-rng.c | |
6392 | ||
f400c82e | 6393 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6394 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6395 | M: Paul Walmsley <paul@pwsan.com> |
6396 | L: linux-omap@vger.kernel.org | |
6397 | S: Maintained | |
8fc8b12b | 6398 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6399 | |
6400 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6401 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6402 | L: linux-omap@vger.kernel.org |
6403 | S: Maintained | |
6404 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6405 | ||
7e8970e1 LP |
6406 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6407 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
6408 | L: linux-media@vger.kernel.org | |
6409 | S: Maintained | |
90d72ac6 | 6410 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6411 | |
f5525786 | 6412 | OMAP USB SUPPORT |
f299470a | 6413 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
6414 | L: linux-usb@vger.kernel.org |
6415 | L: linux-omap@vger.kernel.org | |
43b416e5 | 6416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6417 | S: Maintained |
a16fbd65 JP |
6418 | F: drivers/usb/*/*omap* |
6419 | F: arch/arm/*omap*/usb* | |
f5525786 | 6420 | |
6d994710 | 6421 | OMAP GPIO DRIVER |
a1415a8f | 6422 | M: Javier Martinez Canillas <javier@dowhile0.org> |
6d994710 | 6423 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> |
c69d72ae | 6424 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
6425 | L: linux-omap@vger.kernel.org |
6426 | S: Maintained | |
6427 | F: drivers/gpio/gpio-omap.c | |
6428 | ||
c351e290 MJ |
6429 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
6430 | M: Mark Jackson <mpfj@newflow.co.uk> | |
6431 | L: linux-omap@vger.kernel.org | |
6432 | S: Maintained | |
6433 | F: arch/arm/boot/dts/am335x-nano.dts | |
6434 | ||
0ad122d9 | 6435 | OMFS FILESYSTEM |
8b58be88 | 6436 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
6437 | L: linux-karma-devel@lists.sourceforge.net |
6438 | S: Maintained | |
679655da JP |
6439 | F: Documentation/filesystems/omfs.txt |
6440 | F: fs/omfs/ | |
0ad122d9 | 6441 | |
c1986ee9 | 6442 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6443 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 6444 | S: Maintained |
679655da JP |
6445 | F: drivers/char/pcmcia/cm4000_cs.c |
6446 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6447 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6448 | |
77c44ab1 | 6449 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6450 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 6451 | S: Maintained |
679655da | 6452 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6453 | |
77d5140f | 6454 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6455 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 6456 | L: linux-media@vger.kernel.org |
275ffde4 | 6457 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6458 | S: Maintained |
90d72ac6 | 6459 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6460 | |
431bca73 | 6461 | ONENAND FLASH DRIVER |
8b58be88 | 6462 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
6463 | L: linux-mtd@lists.infradead.org |
6464 | S: Maintained | |
679655da JP |
6465 | F: drivers/mtd/onenand/ |
6466 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6467 | |
1da177e4 | 6468 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6469 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
6470 | L: osst-users@lists.sourceforge.net |
6471 | L: linux-scsi@vger.kernel.org | |
6472 | S: Maintained | |
f7269cfc JD |
6473 | F: Documentation/scsi/osst.txt |
6474 | F: drivers/scsi/osst.* | |
6475 | F: drivers/scsi/osst_*.h | |
6476 | F: drivers/scsi/st.h | |
1da177e4 | 6477 | |
e2d1d6c0 | 6478 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6479 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 6480 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 6481 | S: Maintained |
679655da JP |
6482 | F: Documentation/i2c/busses/i2c-ocores |
6483 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6484 | |
860c44c1 | 6485 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6486 | M: Grant Likely <grant.likely@linaro.org> |
5d3ad8a6 | 6487 | M: Rob Herring <robh+dt@kernel.org> |
d0fb18c5 | 6488 | L: devicetree@vger.kernel.org |
860c44c1 | 6489 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6490 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6491 | S: Maintained |
f8828205 | 6492 | F: drivers/of/ |
860c44c1 | 6493 | F: include/linux/of*.h |
f8828205 | 6494 | F: scripts/dtc/ |
860c44c1 | 6495 | K: of_get_property |
d945fa0d | 6496 | K: of_match_table |
860c44c1 | 6497 | |
f8828205 | 6498 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
5d3ad8a6 | 6499 | M: Rob Herring <robh+dt@kernel.org> |
f8828205 GL |
6500 | M: Pawel Moll <pawel.moll@arm.com> |
6501 | M: Mark Rutland <mark.rutland@arm.com> | |
de80963e | 6502 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
bdbff6ba | 6503 | M: Kumar Gala <galak@codeaurora.org> |
f8828205 GL |
6504 | L: devicetree@vger.kernel.org |
6505 | S: Maintained | |
6506 | F: Documentation/devicetree/ | |
6507 | F: arch/*/boot/dts/ | |
6508 | F: include/dt-bindings/ | |
6509 | ||
19f9d392 JB |
6510 | OPENRISC ARCHITECTURE |
6511 | M: Jonas Bonn <jonas@southpole.se> | |
6512 | W: http://openrisc.net | |
eab7c1c0 | 6513 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
6514 | S: Maintained |
6515 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6516 | F: arch/openrisc/ |
19f9d392 | 6517 | |
ccb1352e | 6518 | OPENVSWITCH |
4f337ed5 | 6519 | M: Pravin Shelar <pshelar@nicira.com> |
ccb1352e JG |
6520 | L: dev@openvswitch.org |
6521 | W: http://openvswitch.org | |
4f337ed5 | 6522 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pshelar/openvswitch.git |
ccb1352e JG |
6523 | S: Maintained |
6524 | F: net/openvswitch/ | |
6525 | ||
af39917d CL |
6526 | OPL4 DRIVER |
6527 | M: Clemens Ladisch <clemens@ladisch.de> | |
6528 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6529 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6530 | S: Maintained | |
6531 | F: sound/drivers/opl4/ | |
6532 | ||
1da177e4 | 6533 | OPROFILE |
4cf7e718 | 6534 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
6535 | L: oprofile-list@lists.sf.net |
6536 | S: Maintained | |
81c4a8a6 | 6537 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6538 | F: arch/*/oprofile/ |
6539 | F: drivers/oprofile/ | |
6540 | F: include/linux/oprofile.h | |
1da177e4 | 6541 | |
e2d1d6c0 | 6542 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6543 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 6544 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 RD |
6545 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
6546 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6547 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6548 | S: Supported |
679655da JP |
6549 | F: Documentation/filesystems/ocfs2.txt |
6550 | F: Documentation/filesystems/dlmfs.txt | |
6551 | F: fs/ocfs2/ | |
e2d1d6c0 | 6552 | |
1da177e4 | 6553 | ORINOCO DRIVER |
724c6b35 | 6554 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6555 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6556 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6557 | S: Orphan |
679655da | 6558 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6559 | |
42c55aa8 | 6560 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6561 | M: Boaz Harrosh <bharrosh@panasas.com> |
f1f6630b | 6562 | M: Benny Halevy <bhalevy@primarydata.com> |
68274794 BH |
6563 | L: osd-dev@open-osd.org |
6564 | W: http://open-osd.org | |
54e5881d | 6565 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6566 | S: Maintained |
42c55aa8 | 6567 | F: drivers/scsi/osd/ |
6b6f0b6c | 6568 | F: include/scsi/osd_* |
42c55aa8 | 6569 | F: fs/exofs/ |
68274794 | 6570 | |
e2d1d6c0 | 6571 | P54 WIRELESS DRIVER |
084cb0fe | 6572 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 6573 | L: linux-wireless@vger.kernel.org |
084cb0fe | 6574 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6575 | S: Maintained |
679655da | 6576 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6577 | |
f5cd7872 | 6578 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6579 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
6580 | L: netdev@vger.kernel.org |
6581 | S: Maintained | |
ded19add | 6582 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6583 | |
beb58aa3 | 6584 | PA SEMI SMBUS DRIVER |
8b58be88 | 6585 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 6586 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 6587 | S: Maintained |
679655da | 6588 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6589 | |
48fc267e SK |
6590 | PADATA PARALLEL EXECUTION MECHANISM |
6591 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
6592 | L: linux-crypto@vger.kernel.org |
6593 | S: Maintained | |
6594 | F: kernel/padata.c | |
6595 | F: include/linux/padata.h | |
6596 | F: Documentation/padata.txt | |
6597 | ||
709ee531 | 6598 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6599 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 6600 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 6601 | S: Maintained |
679655da | 6602 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6603 | |
368dd5ac | 6604 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6605 | M: David Howells <dhowells@redhat.com> |
6606 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
6607 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
6608 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6609 | S: Maintained | |
679655da JP |
6610 | F: Documentation/mn10300/ |
6611 | F: arch/mn10300/ | |
4fa97181 | 6612 | |
1da177e4 | 6613 | PARALLEL PORT SUPPORT |
3dd1a329 | 6614 | L: linux-parport@lists.infradead.org (subscribers-only) |
5fdc2abe | 6615 | S: Orphan |
679655da JP |
6616 | F: drivers/parport/ |
6617 | F: include/linux/parport*.h | |
6618 | F: drivers/char/ppdev.c | |
c117ab84 | 6619 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6620 | |
4cdf6bc2 | 6621 | PARAVIRT_OPS INTERFACE |
d633180c | 6622 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
6623 | M: Chris Wright <chrisw@sous-sol.org> |
6624 | M: Alok Kataria <akataria@vmware.com> | |
6625 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 6626 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 6627 | S: Supported |
679655da JP |
6628 | F: Documentation/ia64/paravirt_ops.txt |
6629 | F: arch/*/kernel/paravirt* | |
6630 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6631 | |
e2d1d6c0 | 6632 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6633 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 RD |
6634 | L: linux-parport@lists.infradead.org (subscribers-only) |
6635 | W: http://www.torque.net/linux-pp.html | |
6636 | S: Maintained | |
679655da JP |
6637 | F: Documentation/blockdev/paride.txt |
6638 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6639 | |
6640 | PARISC ARCHITECTURE | |
b8828770 | 6641 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 6642 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
6643 | L: linux-parisc@vger.kernel.org |
6644 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6645 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6646 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6647 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6648 | S: Maintained |
679655da | 6649 | F: arch/parisc/ |
2b6bac9e | 6650 | F: Documentation/parisc/ |
679655da | 6651 | F: drivers/parisc/ |
2b6bac9e HD |
6652 | F: drivers/char/agp/parisc-agp.c |
6653 | F: drivers/input/serio/gscps2.c | |
6654 | F: drivers/parport/parport_gsc.* | |
6655 | F: drivers/tty/serial/8250/8250_gsc.c | |
6656 | F: drivers/video/sti* | |
6657 | F: drivers/video/console/sti* | |
6658 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6659 | |
1662d32c | 6660 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6661 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
6662 | L: lm-sensors@lm-sensors.org |
6663 | S: Maintained | |
679655da JP |
6664 | F: Documentation/hwmon/pc87360 |
6665 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6666 | |
6667 | PC8736x GPIO DRIVER | |
8b58be88 | 6668 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6669 | S: Maintained |
679655da | 6670 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6671 | |
1ad107fd | 6672 | PC87427 HARDWARE MONITORING DRIVER |
7c81c60f | 6673 | M: Jean Delvare <jdelvare@suse.de> |
1ad107fd JD |
6674 | L: lm-sensors@lm-sensors.org |
6675 | S: Maintained | |
6676 | F: Documentation/hwmon/pc87427 | |
6677 | F: drivers/hwmon/pc87427.c | |
6678 | ||
b26e0ed4 | 6679 | PCA9532 LED DRIVER |
8b58be88 | 6680 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 6681 | S: Maintained |
d5ca6918 JP |
6682 | F: drivers/leds/leds-pca9532.c |
6683 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6684 | |
5ce914a8 | 6685 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6686 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
6687 | L: linux-i2c@vger.kernel.org |
6688 | S: Maintained | |
b4f0b74e | 6689 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6690 | |
3971dae5 | 6691 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6692 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
6693 | S: Maintained |
6694 | F: drivers/firmware/pcdp.* | |
6695 | ||
065c6359 | 6696 | PCI ERROR RECOVERY |
6305902c | 6697 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 6698 | L: linux-pci@vger.kernel.org |
065c6359 | 6699 | S: Supported |
679655da | 6700 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6701 | |
1da177e4 | 6702 | PCI SUBSYSTEM |
5ac3a6d2 | 6703 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 6704 | L: linux-pci@vger.kernel.org |
99662dd1 | 6705 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6707 | S: Supported |
679655da JP |
6708 | F: Documentation/PCI/ |
6709 | F: drivers/pci/ | |
6710 | F: include/linux/pci* | |
6b49ee49 | 6711 | F: arch/x86/pci/ |
cad01f91 | 6712 | F: arch/x86/kernel/quirks.c |
1da177e4 | 6713 | |
f0b75693 BH |
6714 | PCI DRIVER FOR IMX6 |
6715 | M: Richard Zhu <r65037@freescale.com> | |
6716 | M: Shawn Guo <shawn.guo@linaro.org> | |
6717 | L: linux-pci@vger.kernel.org | |
6718 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6719 | S: Maintained | |
6720 | F: drivers/pci/host/*imx6* | |
6721 | ||
6722 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) | |
6723 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
6724 | M: Jason Cooper <jason@lakedaemon.net> | |
6725 | L: linux-pci@vger.kernel.org | |
6726 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6727 | S: Maintained | |
6728 | F: drivers/pci/host/*mvebu* | |
6729 | ||
0447cfd7 TR |
6730 | PCI DRIVER FOR NVIDIA TEGRA |
6731 | M: Thierry Reding <thierry.reding@gmail.com> | |
6732 | L: linux-tegra@vger.kernel.org | |
f0b75693 | 6733 | L: linux-pci@vger.kernel.org |
0447cfd7 TR |
6734 | S: Supported |
6735 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6736 | F: drivers/pci/host/pci-tegra.c | |
6737 | ||
f0b75693 BH |
6738 | PCI DRIVER FOR RENESAS R-CAR |
6739 | M: Simon Horman <horms@verge.net.au> | |
6740 | L: linux-pci@vger.kernel.org | |
6741 | L: linux-sh@vger.kernel.org | |
6742 | S: Maintained | |
6743 | F: drivers/pci/host/*rcar* | |
6744 | ||
4af82255 JH |
6745 | PCI DRIVER FOR SAMSUNG EXYNOS |
6746 | M: Jingoo Han <jg1.han@samsung.com> | |
6747 | L: linux-pci@vger.kernel.org | |
f0b75693 BH |
6748 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
6749 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
4af82255 JH |
6750 | S: Maintained |
6751 | F: drivers/pci/host/pci-exynos.c | |
6752 | ||
f0b75693 BH |
6753 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
6754 | M: Mohit Kumar <mohit.kumar@st.com> | |
6755 | M: Jingoo Han <jg1.han@samsung.com> | |
6756 | L: linux-pci@vger.kernel.org | |
6757 | S: Maintained | |
6758 | F: drivers/pci/host/*designware* | |
6759 | ||
cf28855b WD |
6760 | PCI DRIVER FOR GENERIC OF HOSTS |
6761 | M: Will Deacon <will.deacon@arm.com> | |
6762 | L: linux-pci@vger.kernel.org | |
6763 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6764 | S: Maintained | |
6765 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt | |
6766 | F: drivers/pci/host/pci-host-generic.c | |
6767 | ||
1da177e4 | 6768 | PCMCIA SUBSYSTEM |
4230dfc9 | 6769 | P: Linux PCMCIA Team |
f5df5881 | 6770 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 6771 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6772 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6773 | S: Maintained |
679655da JP |
6774 | F: Documentation/pcmcia/ |
6775 | F: drivers/pcmcia/ | |
6776 | F: include/pcmcia/ | |
1da177e4 LT |
6777 | |
6778 | PCNET32 NETWORK DRIVER | |
227fb925 | 6779 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 6780 | L: netdev@vger.kernel.org |
1da177e4 | 6781 | S: Maintained |
b955f6ca | 6782 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6783 | |
48fc267e SK |
6784 | PCRYPT PARALLEL CRYPTO ENGINE |
6785 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
6786 | L: linux-crypto@vger.kernel.org | |
6787 | S: Maintained | |
6788 | F: crypto/pcrypt.c | |
6789 | F: include/crypto/pcrypt.h | |
6790 | ||
e72df0b8 TH |
6791 | PER-CPU MEMORY ALLOCATOR |
6792 | M: Tejun Heo <tj@kernel.org> | |
6793 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
6794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6795 | S: Maintained | |
6796 | F: include/linux/percpu*.h | |
6797 | F: mm/percpu*.c | |
6798 | F: arch/*/include/asm/percpu.h | |
6799 | ||
ad4ecbcb | 6800 | PER-TASK DELAY ACCOUNTING |
185e595f | 6801 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 6802 | S: Maintained |
679655da JP |
6803 | F: include/linux/delayacct.h |
6804 | F: kernel/delayacct.c | |
ad4ecbcb | 6805 | |
57c0c15b | 6806 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6807 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
6808 | M: Paul Mackerras <paulus@samba.org> | |
dd9b238c | 6809 | M: Ingo Molnar <mingo@redhat.com> |
f80c5393 | 6810 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
981c3a4f | 6811 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6812 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6813 | S: Supported |
d53e8365 | 6814 | F: kernel/events/* |
a003236c | 6815 | F: include/linux/perf_event.h |
c117ab84 | 6816 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6817 | F: arch/*/kernel/perf_event*.c |
6818 | F: arch/*/kernel/*/perf_event*.c | |
6819 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6820 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6821 | F: arch/*/kernel/perf_callchain.c |
6822 | F: tools/perf/ | |
6c0b3244 | 6823 | |
dd49d0f5 | 6824 | PERSONALITY HANDLING |
8b58be88 | 6825 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
6826 | L: linux-abi-devel@lists.sourceforge.net |
6827 | S: Maintained | |
679655da | 6828 | F: include/linux/personality.h |
c117ab84 | 6829 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6830 | |
838e7a03 | 6831 | PHONET PROTOCOL |
2a06b40f | 6832 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
6833 | S: Supported |
6834 | F: Documentation/networking/phonet.txt | |
6835 | F: include/linux/phonet.h | |
6836 | F: include/net/phonet/ | |
c117ab84 | 6837 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6838 | F: net/phonet/ |
6839 | ||
1da177e4 | 6840 | PHRAM MTD DRIVER |
8b58be88 | 6841 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
6842 | L: linux-mtd@lists.infradead.org |
6843 | S: Maintained | |
679655da | 6844 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6845 | |
efdbb10e BP |
6846 | PICOLCD HID DRIVER |
6847 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
6848 | L: linux-input@vger.kernel.org | |
6849 | S: Maintained | |
6850 | F: drivers/hid/hid-picolcd* | |
6851 | ||
a53bfa07 JI |
6852 | PICOXCELL SUPPORT |
6853 | M: Jamie Iles <jamie@jamieiles.com> | |
6854 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6855 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6856 | S: Supported | |
14430813 | 6857 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6858 | F: drivers/*/picoxcell* |
6859 | F: drivers/*/*/picoxcell* | |
6860 | ||
2744e8af LW |
6861 | PIN CONTROL SUBSYSTEM |
6862 | M: Linus Walleij <linus.walleij@linaro.org> | |
6863 | S: Maintained | |
07f29ba6 | 6864 | F: drivers/pinctrl/ |
8e406fe4 | 6865 | F: include/linux/pinctrl/ |
2744e8af | 6866 | |
2201bbb8 JCPV |
6867 | PIN CONTROLLER - ATMEL AT91 |
6868 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
6869 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6870 | S: Maintained | |
6871 | F: drivers/pinctrl/pinctrl-at91.c | |
6872 | ||
b75e60d6 DA |
6873 | PIN CONTROLLER - SAMSUNG |
6874 | M: Tomasz Figa <t.figa@samsung.com> | |
6875 | M: Thomas Abraham <thomas.abraham@linaro.org> | |
6876 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6877 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
6878 | S: Maintained | |
6879 | F: drivers/pinctrl/pinctrl-exynos.* | |
6880 | F: drivers/pinctrl/pinctrl-s3c* | |
6881 | F: drivers/pinctrl/pinctrl-samsung.* | |
6882 | ||
deda8287 | 6883 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6884 | M: Viresh Kumar <viresh.linux@gmail.com> |
deda8287 VK |
6885 | L: spear-devel@list.st.com |
6886 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6887 | W: http://www.st.com/spear | |
6888 | S: Maintained | |
8e406fe4 | 6889 | F: drivers/pinctrl/spear/ |
deda8287 | 6890 | |
249a6771 | 6891 | PKTCDVD DRIVER |
dbd47133 | 6892 | M: Jiri Kosina <jkosina@suse.cz> |
249a6771 | 6893 | S: Maintained |
679655da JP |
6894 | F: drivers/block/pktcdvd.c |
6895 | F: include/linux/pktcdvd.h | |
c117ab84 | 6896 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6897 | |
b31d8273 G |
6898 | PKUNITY SOC DRIVERS |
6899 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
6900 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6901 | S: Maintained | |
6902 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6903 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6904 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6905 | F: drivers/video/fb-puv3.c |
2809e80b | 6906 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6907 | |
9d2ecfb7 | 6908 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6909 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
6910 | L: lm-sensors@lm-sensors.org |
6911 | W: http://www.lm-sensors.org/ | |
6912 | W: http://www.roeck-us.net/linux/drivers/ | |
6913 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6914 | S: Maintained | |
6915 | F: Documentation/hwmon/pmbus | |
6916 | F: drivers/hwmon/pmbus/ | |
6917 | F: include/linux/i2c/pmbus.h | |
6918 | ||
89a36810 | 6919 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6920 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
89a36810 AR |
6921 | L: linux-scsi@vger.kernel.org |
6922 | W: http://www.pmc-sierra.com/ | |
6923 | S: Supported | |
6924 | F: drivers/scsi/pmcraid.* | |
6925 | ||
dbf9bfe6 | 6926 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6927 | M: xjtuwjp@gmail.com |
dbf9bfe6 | 6928 | M: lindar_liu@usish.com |
6929 | L: linux-scsi@vger.kernel.org | |
6930 | S: Supported | |
6931 | F: drivers/scsi/pm8001/ | |
6932 | ||
1da177e4 | 6933 | POSIX CLOCKS and TIMERS |
8b58be88 | 6934 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 6935 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 6936 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6937 | S: Supported |
679655da JP |
6938 | F: fs/timerfd.c |
6939 | F: include/linux/timer* | |
6940 | F: kernel/*timer* | |
1da177e4 | 6941 | |
3be86148 | 6942 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
57318935 | 6943 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
8b58be88 | 6944 | M: David Woodhouse <dwmw2@infradead.org> |
54e5881d | 6945 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6946 | S: Maintained |
679655da | 6947 | F: include/linux/power_supply.h |
8cd725a1 | 6948 | F: drivers/power/ |
3be86148 | 6949 | |
1da177e4 | 6950 | PNP SUPPORT |
46a1f21a | 6951 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
1da177e4 | 6952 | S: Maintained |
679655da | 6953 | F: drivers/pnp/ |
1da177e4 | 6954 | |
999445d4 | 6955 | PNXxxxx I2C DRIVER |
8b58be88 | 6956 | M: Vitaly Wool <vitalywool@gmail.com> |
846557d3 | 6957 | L: linux-i2c@vger.kernel.org |
999445d4 | 6958 | S: Maintained |
679655da | 6959 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6960 | |
1da177e4 | 6961 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6962 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
6963 | L: linux-ppp@vger.kernel.org |
6964 | S: Maintained | |
224cf5ad | 6965 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6966 | |
6967 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6968 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 6969 | S: Maintained |
679655da | 6970 | F: net/atm/pppoatm.c |
c117ab84 | 6971 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6972 | |
6973 | PPP OVER ETHERNET | |
8b58be88 | 6974 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 6975 | S: Maintained |
224cf5ad JK |
6976 | F: drivers/net/ppp/pppoe.c |
6977 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6978 | |
a6d2370b | 6979 | PPP OVER L2TP |
8b58be88 | 6980 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 6981 | S: Maintained |
90ca28d1 | 6982 | F: net/l2tp/l2tp_ppp.c |
679655da | 6983 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6984 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6985 | |
eae9d2ba | 6986 | PPS SUPPORT |
8b58be88 | 6987 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
6988 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6989 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
6990 | S: Maintained | |
cabaaf41 JP |
6991 | F: Documentation/pps/ |
6992 | F: drivers/pps/ | |
6993 | F: include/linux/pps*.h | |
eae9d2ba | 6994 | |
71a6d0af HW |
6995 | PPTP DRIVER |
6996 | M: Dmitry Kozlov <xeb@mail.ru> | |
6997 | L: netdev@vger.kernel.org | |
6998 | S: Maintained | |
224cf5ad | 6999 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
7000 | W: http://sourceforge.net/projects/accel-pptp |
7001 | ||
1da177e4 | 7002 | PREEMPTIBLE KERNEL |
8b58be88 | 7003 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
7004 | L: kpreempt-tech@lists.sourceforge.net |
7005 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
7006 | S: Supported | |
679655da JP |
7007 | F: Documentation/preempt-locking.txt |
7008 | F: include/linux/preempt.h | |
1da177e4 LT |
7009 | |
7010 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 7011 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 7012 | L: linux-wireless@vger.kernel.org |
9ef80804 | 7013 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 7014 | S: Obsolete |
679655da | 7015 | F: drivers/net/wireless/prism54/ |
1da177e4 | 7016 | |
b3277dfa | 7017 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 7018 | M: Mikael Pettersson <mikpelinux@gmail.com> |
b3277dfa MP |
7019 | L: linux-ide@vger.kernel.org |
7020 | S: Maintained | |
679655da | 7021 | F: drivers/ata/sata_promise.* |
b3277dfa | 7022 | |
02c18891 | 7023 | PS3 NETWORK SUPPORT |
b809b9ca | 7024 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 7025 | L: netdev@vger.kernel.org |
a4724ed6 | 7026 | L: cbe-oss-dev@lists.ozlabs.org |
b809b9ca | 7027 | S: Maintained |
8df158ac | 7028 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 7029 | |
f58a9d17 | 7030 | PS3 PLATFORM SUPPORT |
b809b9ca | 7031 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 SR |
7032 | L: linuxppc-dev@lists.ozlabs.org |
7033 | L: cbe-oss-dev@lists.ozlabs.org | |
b809b9ca | 7034 | S: Maintained |
679655da JP |
7035 | F: arch/powerpc/boot/ps3* |
7036 | F: arch/powerpc/include/asm/lv1call.h | |
7037 | F: arch/powerpc/include/asm/ps3*.h | |
7038 | F: arch/powerpc/platforms/ps3/ | |
7039 | F: drivers/*/ps3* | |
7040 | F: drivers/ps3/ | |
fec629b8 | 7041 | F: drivers/rtc/rtc-ps3.c |
679655da | 7042 | F: drivers/usb/host/*ps3.c |
fec629b8 | 7043 | F: sound/ppc/snd_ps3* |
f58a9d17 | 7044 | |
cffb4add | 7045 | PS3VRAM DRIVER |
8b58be88 | 7046 | M: Jim Paris <jim@jtan.com> |
a4724ed6 | 7047 | L: cbe-oss-dev@lists.ozlabs.org |
cffb4add | 7048 | S: Maintained |
8a3977cb | 7049 | F: drivers/block/ps3vram.c |
cffb4add | 7050 | |
8defe599 | 7051 | PSTORE FILESYSTEM |
9d5e2a02 | 7052 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
7053 | M: Colin Cross <ccross@android.com> |
7054 | M: Kees Cook <keescook@chromium.org> | |
7055 | M: Tony Luck <tony.luck@intel.com> | |
7056 | S: Maintained | |
7057 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
7058 | F: fs/pstore/ | |
7059 | F: include/linux/pstore* | |
04851772 | 7060 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
7061 | F: drivers/acpi/apei/erst.c |
7062 | ||
7fbc415d RC |
7063 | PTP HARDWARE CLOCK SUPPORT |
7064 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 7065 | L: netdev@vger.kernel.org |
7fbc415d RC |
7066 | S: Maintained |
7067 | W: http://linuxptp.sourceforge.net/ | |
7068 | F: Documentation/ABI/testing/sysfs-ptp | |
7069 | F: Documentation/ptp/* | |
0ecb3cdd | 7070 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
7071 | F: drivers/net/phy/dp83640* |
7072 | F: drivers/ptp/* | |
7073 | F: include/linux/ptp_cl* | |
7074 | ||
cf94a4d1 | 7075 | PTRACE SUPPORT |
8b58be88 JP |
7076 | M: Roland McGrath <roland@redhat.com> |
7077 | M: Oleg Nesterov <oleg@redhat.com> | |
cf94a4d1 CH |
7078 | S: Maintained |
7079 | F: include/asm-generic/syscall.h | |
7080 | F: include/linux/ptrace.h | |
7081 | F: include/linux/regset.h | |
7082 | F: include/linux/tracehook.h | |
c117ab84 | 7083 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
7084 | F: kernel/ptrace.c |
7085 | ||
8320204a | 7086 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 7087 | M: Mike Isely <isely@pobox.com> |
16e9495d | 7088 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 7089 | L: linux-media@vger.kernel.org |
8320204a | 7090 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 7091 | T: git git://linuxtv.org/media_tree.git |
8320204a | 7092 | S: Maintained |
679655da | 7093 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 7094 | F: drivers/media/usb/pvrusb2/ |
8320204a | 7095 | |
39532e6c HG |
7096 | PWC WEBCAM DRIVER |
7097 | M: Hans de Goede <hdegoede@redhat.com> | |
7098 | L: linux-media@vger.kernel.org | |
7099 | T: git git://linuxtv.org/media_tree.git | |
7100 | S: Maintained | |
7101 | F: drivers/media/usb/pwc/* | |
7102 | ||
200efedd | 7103 | PWM SUBSYSTEM |
aa3495f7 TR |
7104 | M: Thierry Reding <thierry.reding@gmail.com> |
7105 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 7106 | S: Maintained |
006e854f | 7107 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
200efedd TR |
7108 | F: Documentation/pwm.txt |
7109 | F: Documentation/devicetree/bindings/pwm/ | |
7110 | F: include/linux/pwm.h | |
0c2498f1 | 7111 | F: drivers/pwm/ |
a140b98d TR |
7112 | F: drivers/video/backlight/pwm_bl.c |
7113 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 7114 | |
30ec261e | 7115 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
7116 | M: Eric Miao <eric.y.miao@gmail.com> |
7117 | M: Russell King <linux@arm.linux.org.uk> | |
a323f664 | 7118 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
efc03ecb | 7119 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
7120 | T: git git://github.com/hzhuang1/linux.git |
7121 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 7122 | S: Maintained |
679655da JP |
7123 | F: arch/arm/mach-pxa/ |
7124 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 7125 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
7126 | F: drivers/usb/gadget/pxa2* |
7127 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 7128 | F: sound/arm/pxa* |
14430813 | 7129 | F: sound/soc/pxa/ |
1da177e4 | 7130 | |
ec64d3bf EG |
7131 | PXA3xx NAND FLASH DRIVER |
7132 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> | |
7133 | L: linux-mtd@lists.infradead.org | |
7134 | S: Maintained | |
7135 | F: drivers/mtd/nand/pxa3xx-nand.c | |
7136 | ||
3f640c61 | 7137 | MMP SUPPORT |
8b58be88 | 7138 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 7139 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 7140 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
7141 | T: git git://github.com/hzhuang1/linux.git |
7142 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 7143 | S: Maintained |
3f640c61 | 7144 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 7145 | |
272f133a PO |
7146 | PXA MMCI DRIVER |
7147 | S: Orphan | |
7148 | ||
57f63bc8 | 7149 | PXA RTC DRIVER |
8b58be88 | 7150 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
7151 | L: rtc-linux@googlegroups.com |
7152 | S: Maintained | |
7153 | ||
52a09a04 | 7154 | QIB DRIVER |
8473c603 | 7155 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
7156 | L: linux-rdma@vger.kernel.org |
7157 | S: Supported | |
7158 | F: drivers/infiniband/hw/qib/ | |
7159 | ||
5e9772b9 JS |
7160 | QLOGIC QLA1280 SCSI DRIVER |
7161 | M: Michael Reed <mdr@sgi.com> | |
7162 | L: linux-scsi@vger.kernel.org | |
7163 | S: Maintained | |
7164 | F: drivers/scsi/qla1280.[ch] | |
7165 | ||
1da177e4 | 7166 | QLOGIC QLA2XXX FC-SCSI DRIVER |
2c804eb0 | 7167 | M: qla2xxx-upstream@qlogic.com |
1da177e4 LT |
7168 | L: linux-scsi@vger.kernel.org |
7169 | S: Supported | |
679655da JP |
7170 | F: Documentation/scsi/LICENSE.qla2xxx |
7171 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 7172 | |
883c98fe | 7173 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
7174 | M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> |
7175 | M: iscsi-driver@qlogic.com | |
7176 | L: linux-scsi@vger.kernel.org | |
7177 | S: Supported | |
bacfb81b | 7178 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
7179 | F: drivers/scsi/qla4xxx/ |
7180 | ||
5a4faa87 | 7181 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 7182 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 7183 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
7184 | M: linux-driver@qlogic.com |
7185 | L: netdev@vger.kernel.org | |
7186 | S: Supported | |
679655da | 7187 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 7188 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 7189 | |
0ec00f03 | 7190 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
195ca382 | 7191 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
e6b0b019 | 7192 | M: Dept-HSGLinuxNICDev@qlogic.com |
0ec00f03 AKS |
7193 | L: netdev@vger.kernel.org |
7194 | S: Supported | |
aa43c215 | 7195 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 7196 | |
c4e84bde | 7197 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 7198 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
b997d79a | 7199 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 7200 | M: Ron Mercer <ron.mercer@qlogic.com> |
4cbfbe25 | 7201 | M: linux-driver@qlogic.com |
c4e84bde RM |
7202 | L: netdev@vger.kernel.org |
7203 | S: Supported | |
aa43c215 | 7204 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 7205 | |
1da177e4 | 7206 | QNX4 FILESYSTEM |
8b58be88 | 7207 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
7208 | W: http://www.alarsen.net/linux/qnx4fs/ |
7209 | S: Maintained | |
80811493 | 7210 | F: fs/qnx4/ |
c117ab84 CEB |
7211 | F: include/uapi/linux/qnx4_fs.h |
7212 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 7213 | |
91952bc0 AP |
7214 | QT1010 MEDIA DRIVER |
7215 | M: Antti Palosaari <crope@iki.fi> | |
7216 | L: linux-media@vger.kernel.org | |
7217 | W: http://linuxtv.org/ | |
7218 | W: http://palosaari.fi/linux/ | |
7219 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7220 | T: git git://linuxtv.org/anttip/media_tree.git | |
7221 | S: Maintained | |
7222 | F: drivers/media/tuners/qt1010* | |
7223 | ||
966fb5ec SM |
7224 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
7225 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> | |
7226 | L: linux-wireless@vger.kernel.org | |
7227 | L: ath9k-devel@lists.ath9k.org | |
7228 | W: http://wireless.kernel.org/en/users/Drivers/ath9k | |
7229 | S: Supported | |
7230 | F: drivers/net/wireless/ath/ath9k/ | |
7231 | ||
2ea0ffcb KV |
7232 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
7233 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
7234 | L: ath10k@lists.infradead.org | |
7235 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
7236 | T: git git://github.com/kvalo/ath.git | |
7237 | S: Supported | |
7238 | F: drivers/net/wireless/ath/ath10k/ | |
7239 | ||
4f4567cf RK |
7240 | QUALCOMM HEXAGON ARCHITECTURE |
7241 | M: Richard Kuo <rkuo@codeaurora.org> | |
7242 | L: linux-hexagon@vger.kernel.org | |
7243 | S: Supported | |
7244 | F: arch/hexagon/ | |
7245 | ||
8e84c258 EK |
7246 | QUALCOMM WCN36XX WIRELESS DRIVER |
7247 | M: Eugene Krasnikov <k.eugene.e@gmail.com> | |
7248 | L: wcn36xx@lists.infradead.org | |
7249 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx | |
7250 | T: git git://github.com/KrasnikovEugene/wcn36xx.git | |
7251 | S: Supported | |
7252 | F: drivers/net/wireless/ath/wcn36xx/ | |
7253 | ||
35e3540b HV |
7254 | QUICKCAM PARALLEL PORT WEBCAMS |
7255 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7256 | L: linux-media@vger.kernel.org | |
7257 | T: git git://linuxtv.org/media_tree.git | |
7258 | W: http://linuxtv.org | |
7259 | S: Odd Fixes | |
7260 | F: drivers/media/parport/*-qcam* | |
7261 | ||
602adf40 | 7262 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
7263 | M: Yehuda Sadeh <yehuda@inktank.com> |
7264 | M: Sage Weil <sage@inktank.com> | |
527a88b9 | 7265 | M: Alex Elder <elder@kernel.org> |
602adf40 | 7266 | M: ceph-devel@vger.kernel.org |
09d90327 SW |
7267 | W: http://ceph.com/ |
7268 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
7269 | S: Supported |
7270 | F: drivers/block/rbd.c | |
7271 | F: drivers/block/rbd_types.h | |
7272 | ||
1da177e4 | 7273 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7274 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 7275 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 7276 | S: Maintained |
679655da | 7277 | F: drivers/video/aty/radeon* |
c117ab84 | 7278 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 7279 | |
c6c9b34c HG |
7280 | RADIOSHARK RADIO DRIVER |
7281 | M: Hans de Goede <hdegoede@redhat.com> | |
7282 | L: linux-media@vger.kernel.org | |
7283 | T: git git://linuxtv.org/media_tree.git | |
7284 | S: Maintained | |
7285 | F: drivers/media/radio/radio-shark.c | |
7286 | ||
7287 | RADIOSHARK2 RADIO DRIVER | |
7288 | M: Hans de Goede <hdegoede@redhat.com> | |
7289 | L: linux-media@vger.kernel.org | |
7290 | T: git git://linuxtv.org/media_tree.git | |
7291 | S: Maintained | |
7292 | F: drivers/media/radio/radio-shark2.c | |
7293 | F: drivers/media/radio/radio-tea5777.c | |
7294 | ||
1da177e4 | 7295 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 7296 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 7297 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 7298 | S: Maintained |
679655da | 7299 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 7300 | |
e7839f25 | 7301 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 7302 | P: rt2x00 project |
e1a6542f | 7303 | M: Ivo van Doorn <IvDoorn@gmail.com> |
f198f98e | 7304 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 7305 | L: linux-wireless@vger.kernel.org |
83fc9c89 | 7306 | L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) |
95ea3627 ID |
7307 | W: http://rt2x00.serialmonkey.com/ |
7308 | S: Maintained | |
54e5881d | 7309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
7310 | F: drivers/net/wireless/rt2x00/ |
7311 | ||
9db5579b | 7312 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 7313 | M: Nick Piggin <npiggin@kernel.dk> |
9db5579b | 7314 | S: Maintained |
679655da JP |
7315 | F: Documentation/blockdev/ramdisk.txt |
7316 | F: drivers/block/brd.c | |
9db5579b | 7317 | |
9e95ce27 | 7318 | RANDOM NUMBER DRIVER |
0624bcaa | 7319 | M: "Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 7320 | S: Maintained |
679655da | 7321 | F: drivers/char/random.c |
9e95ce27 | 7322 | |
394b701c | 7323 | RAPIDIO SUBSYSTEM |
8b58be88 | 7324 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 7325 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 7326 | S: Maintained |
679655da | 7327 | F: drivers/rapidio/ |
394b701c | 7328 | |
e2d1d6c0 | 7329 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 7330 | L: linux-wireless@vger.kernel.org |
f52a5490 | 7331 | S: Orphan |
679655da | 7332 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
7333 | |
7334 | RCUTORTURE MODULE | |
8b58be88 JP |
7335 | M: Josh Triplett <josh@freedesktop.org> |
7336 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
981c3a4f | 7337 | L: linux-kernel@vger.kernel.org |
f9094d8e | 7338 | S: Supported |
08deed1e | 7339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da | 7340 | F: Documentation/RCU/torture.txt |
4102adab | 7341 | F: kernel/rcu/torture.c |
e2d1d6c0 | 7342 | |
c87b9c60 PM |
7343 | RCUTORTURE TEST FRAMEWORK |
7344 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
981c3a4f | 7345 | L: linux-kernel@vger.kernel.org |
c87b9c60 PM |
7346 | S: Supported |
7347 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7348 | F: tools/testing/selftests/rcutorture | |
7349 | ||
c1f766b5 | 7350 | RDC R-321X SoC |
8b58be88 | 7351 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
7352 | S: Maintained |
7353 | ||
db17f395 | 7354 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 7355 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
7356 | L: netdev@vger.kernel.org |
7357 | S: Maintained | |
58565a35 | 7358 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 7359 | |
a09ed661 | 7360 | RDS - RELIABLE DATAGRAM SOCKETS |
8a85ac4b | 7361 | M: Chien Yen <chien.yen@oracle.com> |
fbb5a558 | 7362 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 7363 | S: Supported |
679655da | 7364 | F: net/rds/ |
a09ed661 | 7365 | |
595182bc | 7366 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
7367 | M: Dipankar Sarma <dipankar@in.ibm.com> |
7368 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
981c3a4f | 7369 | L: linux-kernel@vger.kernel.org |
9fab9787 | 7370 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 7371 | S: Supported |
08deed1e | 7372 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 7373 | F: Documentation/RCU/ |
9fab9787 | 7374 | X: Documentation/RCU/torture.txt |
f9094d8e | 7375 | F: include/linux/rcu* |
4102adab PM |
7376 | X: include/linux/srcu.h |
7377 | F: kernel/rcu/ | |
7378 | X: kernel/rcu/torture.c | |
595182bc | 7379 | |
0c86edc0 | 7380 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 7381 | M: Alessandro Zummo <a.zummo@towertech.it> |
76465493 | 7382 | L: rtc-linux@googlegroups.com |
8a6e2535 | 7383 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 7384 | S: Maintained |
679655da JP |
7385 | F: Documentation/rtc.txt |
7386 | F: drivers/rtc/ | |
7387 | F: include/linux/rtc.h | |
c117ab84 | 7388 | F: include/uapi/linux/rtc.h |
0c86edc0 | 7389 | |
1da177e4 | 7390 | REISERFS FILE SYSTEM |
76c4e5ea | 7391 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 7392 | S: Supported |
679655da | 7393 | F: fs/reiserfs/ |
1da177e4 | 7394 | |
b83a313b | 7395 | REGISTER MAP ABSTRACTION |
b02e48f2 | 7396 | M: Mark Brown <broonie@kernel.org> |
b83a313b MB |
7397 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
7398 | S: Supported | |
7399 | F: drivers/base/regmap/ | |
7400 | F: include/linux/regmap.h | |
7401 | ||
400e64df OBC |
7402 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
7403 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 7404 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
7405 | S: Maintained |
7406 | F: drivers/remoteproc/ | |
7407 | F: Documentation/remoteproc.txt | |
6fc26488 | 7408 | F: include/linux/remoteproc.h |
400e64df | 7409 | |
d8115db5 OBC |
7410 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
7411 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
7412 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
7413 | S: Maintained | |
7414 | F: drivers/rpmsg/ | |
7415 | F: Documentation/rpmsg.txt | |
7416 | F: include/linux/rpmsg.h | |
7417 | ||
1b0fe6be PZ |
7418 | RESET CONTROLLER FRAMEWORK |
7419 | M: Philipp Zabel <p.zabel@pengutronix.de> | |
7420 | S: Maintained | |
7421 | F: drivers/reset/ | |
7422 | F: Documentation/devicetree/bindings/reset/ | |
7423 | F: include/linux/reset.h | |
7424 | F: include/linux/reset-controller.h | |
7425 | ||
e0897645 | 7426 | RFKILL |
8b58be88 | 7427 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 7428 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
7429 | W: http://wireless.kernel.org/ |
7430 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
7431 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 7432 | S: Maintained |
505c9247 | 7433 | F: Documentation/rfkill.txt |
80811493 | 7434 | F: net/rfkill/ |
e0897645 | 7435 | |
67e054e9 ML |
7436 | RICOH SMARTMEDIA/XD DRIVER |
7437 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7438 | S: Maintained | |
21c26f50 JP |
7439 | F: drivers/mtd/nand/r852.c |
7440 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7441 | |
92634125 ML |
7442 | RICOH R5C592 MEMORYSTICK DRIVER |
7443 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7444 | S: Maintained | |
7445 | F: drivers/memstick/host/r592.* | |
7446 | ||
27f1d2f9 SA |
7447 | ROCCAT DRIVERS |
7448 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
7449 | W: http://sourceforge.net/projects/roccat/ | |
7450 | S: Maintained | |
7451 | F: drivers/hid/hid-roccat* | |
7452 | F: include/linux/hid-roccat* | |
7453 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7454 | ||
1da177e4 LT |
7455 | ROCKETPORT DRIVER |
7456 | P: Comtrol Corp. | |
1da177e4 LT |
7457 | W: http://www.comtrol.com |
7458 | S: Maintained | |
679655da | 7459 | F: Documentation/serial/rocket.txt |
c897401b | 7460 | F: drivers/tty/rocket* |
1da177e4 LT |
7461 | |
7462 | ROSE NETWORK LAYER | |
8b58be88 | 7463 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7464 | L: linux-hams@vger.kernel.org |
d34cb28a | 7465 | W: http://www.linux-ax25.org/ |
1da177e4 | 7466 | S: Maintained |
679655da | 7467 | F: include/net/rose.h |
c117ab84 | 7468 | F: include/uapi/linux/rose.h |
679655da | 7469 | F: net/rose/ |
1da177e4 | 7470 | |
91952bc0 AP |
7471 | RTL2830 MEDIA DRIVER |
7472 | M: Antti Palosaari <crope@iki.fi> | |
7473 | L: linux-media@vger.kernel.org | |
7474 | W: http://linuxtv.org/ | |
7475 | W: http://palosaari.fi/linux/ | |
7476 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7477 | T: git git://linuxtv.org/anttip/media_tree.git | |
7478 | S: Maintained | |
7479 | F: drivers/media/dvb-frontends/rtl2830* | |
7480 | ||
27a0aacf AP |
7481 | RTL2832 MEDIA DRIVER |
7482 | M: Antti Palosaari <crope@iki.fi> | |
7483 | L: linux-media@vger.kernel.org | |
7484 | W: http://linuxtv.org/ | |
7485 | W: http://palosaari.fi/linux/ | |
7486 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7487 | T: git git://linuxtv.org/anttip/media_tree.git | |
7488 | S: Maintained | |
7489 | F: drivers/media/dvb-frontends/rtl2832* | |
7490 | ||
ba6e6f6e AP |
7491 | RTL2832_SDR MEDIA DRIVER |
7492 | M: Antti Palosaari <crope@iki.fi> | |
7493 | L: linux-media@vger.kernel.org | |
7494 | W: http://linuxtv.org/ | |
7495 | W: http://palosaari.fi/linux/ | |
7496 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7497 | T: git git://linuxtv.org/anttip/media_tree.git | |
7498 | S: Maintained | |
7499 | F: drivers/staging/media/rtl2832u_sdr/rtl2832_sdr* | |
7500 | ||
59840488 | 7501 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7502 | M: "John W. Linville" <linville@tuxdriver.com> |
605bebe2 | 7503 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7504 | W: http://wireless.kernel.org/ |
54e5881d | 7505 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7506 | S: Maintained |
3cfeb0c3 | 7507 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7508 | |
59840488 | 7509 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7510 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
7511 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
7512 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 7513 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7514 | W: http://wireless.kernel.org/ |
54e5881d | 7515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7516 | S: Maintained |
3cfeb0c3 | 7517 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7518 | |
3cf0c8ad LF |
7519 | RTL8192CE WIRELESS DRIVER |
7520 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7521 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
7522 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 7523 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7524 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7525 | S: Maintained | |
7526 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7527 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7528 | |
9eb8ef74 | 7529 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7530 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7531 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7532 | S: Maintained |
679655da | 7533 | F: drivers/video/savage/ |
9eb8ef74 | 7534 | |
1da177e4 | 7535 | S390 |
8b58be88 JP |
7536 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
7537 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
1da177e4 | 7538 | M: linux390@de.ibm.com |
d58140cc | 7539 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7540 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7541 | S: Supported | |
679655da | 7542 | F: arch/s390/ |
a968cd3e | 7543 | F: drivers/s390/ |
3bfe6858 JN |
7544 | F: Documentation/s390/ |
7545 | F: Documentation/DocBook/s390* | |
5238da45 | 7546 | |
322986ca SO |
7547 | S390 COMMON I/O LAYER |
7548 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
7549 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> | |
7550 | L: linux-s390@vger.kernel.org | |
7551 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7552 | S: Supported | |
7553 | F: drivers/s390/cio/ | |
7554 | ||
7555 | S390 DASD DRIVER | |
7556 | M: Stefan Weinhuber <wein@de.ibm.com> | |
7557 | M: Stefan Haberland <stefan.haberland@de.ibm.com> | |
7558 | L: linux-s390@vger.kernel.org | |
7559 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7560 | S: Supported | |
7561 | F: drivers/s390/block/dasd* | |
7562 | F: block/partitions/ibm.c | |
7563 | ||
5238da45 | 7564 | S390 NETWORK DRIVERS |
8b58be88 JP |
7565 | M: Ursula Braun <ursula.braun@de.ibm.com> |
7566 | M: Frank Blaschka <blaschka@linux.vnet.ibm.com> | |
5238da45 | 7567 | M: linux390@de.ibm.com |
d58140cc | 7568 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7569 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7570 | S: Supported | |
679655da | 7571 | F: drivers/s390/net/ |
5238da45 | 7572 | |
322986ca SO |
7573 | S390 PCI SUBSYSTEM |
7574 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> | |
7575 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> | |
7576 | L: linux-s390@vger.kernel.org | |
7577 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7578 | S: Supported | |
7579 | F: arch/s390/pci/ | |
7580 | F: drivers/pci/hotplug/s390_pci_hpc.c | |
7581 | ||
feed9b62 | 7582 | S390 ZCRYPT DRIVER |
5c8d0983 | 7583 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 FB |
7584 | M: linux390@de.ibm.com |
7585 | L: linux-s390@vger.kernel.org | |
a968cd3e | 7586 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7587 | S: Supported |
d5ca6918 | 7588 | F: drivers/s390/crypto/ |
feed9b62 | 7589 | |
5238da45 | 7590 | S390 ZFCP DRIVER |
d38e19d0 | 7591 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
5238da45 | 7592 | M: linux390@de.ibm.com |
d58140cc | 7593 | L: linux-s390@vger.kernel.org |
5238da45 | 7594 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7595 | S: Supported |
679655da | 7596 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7597 | |
dd96df2c | 7598 | S390 IUCV NETWORK LAYER |
8b58be88 | 7599 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
7600 | M: linux390@de.ibm.com |
7601 | L: linux-s390@vger.kernel.org | |
7602 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7603 | S: Supported | |
679655da JP |
7604 | F: drivers/s390/net/*iucv* |
7605 | F: include/net/iucv/ | |
7606 | F: net/iucv/ | |
dd96df2c | 7607 | |
4dde7f75 | 7608 | S3C24XX SD/MMC Driver |
8b58be88 | 7609 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 7610 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 7611 | S: Supported |
679655da | 7612 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7613 | |
1f15a229 HV |
7614 | SAA6588 RDS RECEIVER DRIVER |
7615 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7616 | L: linux-media@vger.kernel.org | |
7617 | T: git git://linuxtv.org/media_tree.git | |
7618 | W: http://linuxtv.org | |
7619 | S: Odd Fixes | |
7620 | F: drivers/media/i2c/saa6588* | |
7621 | ||
98ed12e6 | 7622 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7623 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
98ed12e6 MCC |
7624 | L: linux-media@vger.kernel.org |
7625 | W: http://linuxtv.org | |
7626 | T: git git://linuxtv.org/media_tree.git | |
7627 | S: Odd fixes | |
e42bf501 | 7628 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7629 | F: drivers/media/pci/saa7134/ |
7630 | ||
1da177e4 | 7631 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7632 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 7633 | L: linux-media@vger.kernel.org |
275ffde4 | 7634 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7635 | S: Maintained |
90d72ac6 MCC |
7636 | F: drivers/media/common/saa7146/ |
7637 | F: drivers/media/pci/saa7146/ | |
7638 | F: include/media/saa7146* | |
1da177e4 | 7639 | |
92304a40 | 7640 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7641 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
7642 | L: platform-driver-x86@vger.kernel.org |
7643 | S: Maintained | |
7644 | F: drivers/platform/x86/samsung-laptop.c | |
7645 | ||
4a109cc0 | 7646 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7647 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
7648 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
7649 | S: Supported | |
14430813 | 7650 | F: sound/soc/samsung/ |
4a109cc0 | 7651 | |
0d89a28b JH |
7652 | SAMSUNG FRAMEBUFFER DRIVER |
7653 | M: Jingoo Han <jg1.han@samsung.com> | |
7654 | L: linux-fbdev@vger.kernel.org | |
7655 | S: Maintained | |
7656 | F: drivers/video/s3c-fb.c | |
7657 | ||
f69d3a17 SK |
7658 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7659 | M: Sangbeom Kim <sbkim73@samsung.com> | |
7660 | L: linux-kernel@vger.kernel.org | |
7661 | S: Supported | |
7662 | F: drivers/mfd/sec*.c | |
7663 | F: drivers/regulator/s2m*.c | |
7664 | F: drivers/regulator/s5m*.c | |
7665 | F: drivers/rtc/rtc-sec.c | |
7666 | F: include/linux/mfd/samsung/ | |
7667 | ||
038f5c4b SN |
7668 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7669 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7670 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
7671 | L: linux-media@vger.kernel.org | |
7672 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7673 | S: Supported | |
7674 | F: drivers/media/platform/exynos4-is/ | |
038f5c4b | 7675 | |
6fd86ab2 SN |
7676 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7677 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
7678 | L: linux-media@vger.kernel.org | |
7679 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7680 | S: Maintained | |
7681 | F: drivers/media/platform/s3c-camif/ | |
7682 | F: include/media/s3c_camif.h | |
7683 | ||
b84ef24e AH |
7684 | SAMSUNG S5C73M3 CAMERA DRIVER |
7685 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7686 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7687 | L: linux-media@vger.kernel.org | |
7688 | S: Supported | |
7689 | F: drivers/media/i2c/s5c73m3/* | |
7690 | ||
7d459937 AH |
7691 | SAMSUNG S5K5BAF CAMERA DRIVER |
7692 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7693 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7694 | L: linux-media@vger.kernel.org | |
7695 | S: Supported | |
7696 | F: drivers/media/i2c/s5k5baf.c | |
7697 | ||
310e39c9 TF |
7698 | SAMSUNG SOC CLOCK DRIVERS |
7699 | M: Tomasz Figa <t.figa@samsung.com> | |
7700 | S: Supported | |
7701 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7702 | F: drivers/clk/samsung/ | |
7703 | ||
66890ed6 BA |
7704 | SAMSUNG SXGBE DRIVERS |
7705 | M: Byungho An <bh74.an@samsung.com> | |
7706 | M: Girish K S <ks.giri@samsung.com> | |
66890ed6 BA |
7707 | M: Vipul Pandya <vipul.pandya@samsung.com> |
7708 | S: Supported | |
7709 | L: netdev@vger.kernel.org | |
7710 | F: drivers/net/ethernet/samsung/sxgbe/ | |
7711 | ||
ca749e2a | 7712 | SERIAL DRIVERS |
5e30bbb7 | 7713 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 7714 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 7715 | S: Maintained |
14430813 | 7716 | F: drivers/tty/serial/ |
ca749e2a | 7717 | |
aecb7b64 | 7718 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7719 | M: Viresh Kumar <viresh.linux@gmail.com> |
337ae47c | 7720 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 VK |
7721 | S: Maintained |
7722 | F: include/linux/dw_dmac.h | |
61a76496 | 7723 | F: drivers/dma/dw/ |
aecb7b64 | 7724 | |
f9e37137 SJ |
7725 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7726 | M: Seungwon Jeon <tgih.jun@samsung.com> | |
7727 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
7728 | L: linux-mmc@vger.kernel.org | |
7729 | S: Maintained | |
7730 | F: include/linux/mmc/dw_mmc.h | |
7731 | F: drivers/mmc/host/dw_mmc* | |
7732 | ||
9222d247 | 7733 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7734 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 7735 | M: Thomas Gleixner <tglx@linutronix.de> |
981c3a4f | 7736 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7737 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7738 | S: Supported |
7739 | F: include/linux/clocksource.h | |
7740 | F: include/linux/time.h | |
7741 | F: include/linux/timex.h | |
c117ab84 CEB |
7742 | F: include/uapi/linux/time.h |
7743 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7744 | F: kernel/time/clocksource.c |
7745 | F: kernel/time/time*.c | |
7746 | F: kernel/time/ntp.c | |
7747 | ||
5b3f03f0 | 7748 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7749 | M: Huang Shijie <shijie8@gmail.com> |
a545e2ea HV |
7750 | M: Hans Verkuil <hverkuil@xs4all.nl> |
7751 | S: Odd Fixes | |
14430813 | 7752 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7753 | |
1da177e4 | 7754 | SC1200 WDT DRIVER |
b300645a | 7755 | M: Zwane Mwaikambo <zwanem@gmail.com> |
1da177e4 | 7756 | S: Maintained |
679655da | 7757 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7758 | |
7759 | SCHEDULER | |
dd9b238c | 7760 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 7761 | M: Peter Zijlstra <peterz@infradead.org> |
981c3a4f | 7762 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 7763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7764 | S: Maintained |
95c0d71d | 7765 | F: kernel/sched/ |
679655da | 7766 | F: include/linux/sched.h |
c117ab84 | 7767 | F: include/uapi/linux/sched.h |
c2eb505b | 7768 | F: include/linux/wait.h |
1da177e4 | 7769 | |
6bcf6737 | 7770 | SCORE ARCHITECTURE |
ed38665e | 7771 | M: Chen Liqin <liqin.linux@gmail.com> |
a2681a75 | 7772 | M: Lennox Wu <lennox.wu@gmail.com> |
ed38665e | 7773 | W: http://www.sunplus.com |
6bcf6737 | 7774 | S: Supported |
a2681a75 | 7775 | F: arch/score/ |
6bcf6737 | 7776 | |
1da177e4 | 7777 | SCSI CDROM DRIVER |
8b58be88 | 7778 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
7779 | L: linux-scsi@vger.kernel.org |
7780 | W: http://www.kernel.dk | |
7781 | S: Maintained | |
679655da | 7782 | F: drivers/scsi/sr* |
1da177e4 | 7783 | |
fb50a83d | 7784 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
e6b45d49 | 7785 | M: Bart Van Assche <bvanassche@acm.org> |
fb50a83d RD |
7786 | L: linux-rdma@vger.kernel.org |
7787 | S: Supported | |
7788 | W: http://www.openfabrics.org | |
7789 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7790 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7791 | F: drivers/infiniband/ulp/srp/ | |
7792 | F: include/scsi/srp.h | |
7793 | ||
1da177e4 | 7794 | SCSI SG DRIVER |
8b58be88 | 7795 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 | 7796 | L: linux-scsi@vger.kernel.org |
59ab3c93 | 7797 | W: http://sg.danny.cz/sg |
1da177e4 | 7798 | S: Maintained |
59ab3c93 | 7799 | F: Documentation/scsi/scsi-generic.txt |
679655da JP |
7800 | F: drivers/scsi/sg.c |
7801 | F: include/scsi/sg.h | |
1da177e4 LT |
7802 | |
7803 | SCSI SUBSYSTEM | |
c95286d8 | 7804 | M: "James E.J. Bottomley" <JBottomley@parallels.com> |
1da177e4 | 7805 | L: linux-scsi@vger.kernel.org |
54e5881d JP |
7806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7807 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7809 | S: Maintained |
679655da JP |
7810 | F: drivers/scsi/ |
7811 | F: include/scsi/ | |
1da177e4 LT |
7812 | |
7813 | SCSI TAPE DRIVER | |
8b58be88 | 7814 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
7815 | L: linux-scsi@vger.kernel.org |
7816 | S: Maintained | |
679655da | 7817 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7818 | F: drivers/scsi/st.* |
7819 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7820 | |
7821 | SCTP PROTOCOL | |
8b6efb75 | 7822 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 7823 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 7824 | L: linux-sctp@vger.kernel.org |
5f85813c | 7825 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7826 | S: Maintained |
679655da JP |
7827 | F: Documentation/networking/sctp.txt |
7828 | F: include/linux/sctp.h | |
4d58c025 | 7829 | F: include/uapi/linux/sctp.h |
679655da JP |
7830 | F: include/net/sctp/ |
7831 | F: net/sctp/ | |
1da177e4 LT |
7832 | |
7833 | SCx200 CPU SUPPORT | |
8b58be88 | 7834 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7835 | S: Odd Fixes |
679655da | 7836 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7837 | F: arch/x86/platform/scx200/ |
679655da JP |
7838 | F: drivers/watchdog/scx200_wdt.c |
7839 | F: drivers/i2c/busses/scx200* | |
7840 | F: drivers/mtd/maps/scx200_docflash.c | |
7841 | F: include/linux/scx200.h | |
1662d32c JC |
7842 | |
7843 | SCx200 GPIO DRIVER | |
8b58be88 | 7844 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7845 | S: Maintained |
679655da JP |
7846 | F: drivers/char/scx200_gpio.c |
7847 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7848 | |
7849 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7850 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7851 | S: Maintained |
679655da | 7852 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7853 | |
6a36913a | 7854 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7855 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
7856 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
7857 | S: Maintained | |
679655da | 7858 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7859 | |
e7839f25 | 7860 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
6e443244 | 7861 | M: Chris Ball <chris@printf.net> |
7a241d6e | 7862 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
7863 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7864 | S: Maintained | |
7a241d6e | 7865 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7866 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7867 | |
3085e9c1 | 7868 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7869 | M: Anton Vorontsov <anton@enomsg.org> |
a4724ed6 | 7870 | L: linuxppc-dev@lists.ozlabs.org |
7a241d6e | 7871 | L: linux-mmc@vger.kernel.org |
e2d1d6c0 | 7872 | S: Maintained |
d4a45787 | 7873 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7874 | |
0d1bb41a | 7875 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7876 | M: Ben Dooks <ben-linux@fluff.org> |
7a241d6e | 7877 | L: linux-mmc@vger.kernel.org |
0d1bb41a BD |
7878 | S: Maintained |
7879 | F: drivers/mmc/host/sdhci-s3c.c | |
7880 | ||
c63b3cba | 7881 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7882 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 | 7883 | L: spear-devel@list.st.com |
c63b3cba VK |
7884 | L: linux-mmc@vger.kernel.org |
7885 | S: Maintained | |
7886 | F: drivers/mmc/host/sdhci-spear.c | |
7887 | ||
8711cca2 | 7888 | SECURITY SUBSYSTEM |
9b45c0d2 | 7889 | M: James Morris <james.l.morris@oracle.com> |
8711cca2 | 7890 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 7891 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7892 | W: http://kernsec.org/ |
8711cca2 | 7893 | S: Supported |
7d2c86b5 | 7894 | F: security/ |
8711cca2 | 7895 | |
1da177e4 | 7896 | SECURITY CONTACT |
8b58be88 | 7897 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
7898 | S: Supported |
7899 | ||
7900 | SELINUX SECURITY MODULE | |
e0238b4c | 7901 | M: Paul Moore <paul@paul-moore.com> |
8b58be88 | 7902 | M: Stephen Smalley <sds@tycho.nsa.gov> |
8b58be88 | 7903 | M: Eric Paris <eparis@parisplace.org> |
e0238b4c | 7904 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
f058925b | 7905 | W: http://selinuxproject.org |
5a5f2acf | 7906 | T: git git://git.infradead.org/users/pcmoore/selinux |
1da177e4 | 7907 | S: Supported |
679655da JP |
7908 | F: include/linux/selinux* |
7909 | F: security/selinux/ | |
6bde95ce | 7910 | F: scripts/selinux/ |
1da177e4 | 7911 | |
c1c124e9 JJ |
7912 | APPARMOR SECURITY MODULE |
7913 | M: John Johansen <john.johansen@canonical.com> | |
7914 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
7915 | W: apparmor.wiki.kernel.org | |
7916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7917 | S: Supported | |
7918 | F: security/apparmor/ | |
7919 | ||
cef2cf07 | 7920 | SENSABLE PHANTOM |
8b58be88 | 7921 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 7922 | S: Maintained |
679655da | 7923 | F: drivers/misc/phantom.c |
c117ab84 | 7924 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7925 | |
4480f15b | 7926 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7927 | M: Tejun Heo <tj@kernel.org> |
1da177e4 | 7928 | L: linux-ide@vger.kernel.org |
3d9b9350 | 7929 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7930 | S: Supported |
d5ca6918 JP |
7931 | F: drivers/ata/ |
7932 | F: include/linux/ata.h | |
7933 | F: include/linux/libata.h | |
1da177e4 | 7934 | |
6733b39a | 7935 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7936 | M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> |
3387f656 | 7937 | L: linux-scsi@vger.kernel.org |
0ca43cc0 | 7938 | W: http://www.emulex.com |
3387f656 JP |
7939 | S: Supported |
7940 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7941 | |
6b7c5b94 | 7942 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7943 | M: Sathya Perla <sathya.perla@emulex.com> |
7944 | M: Subbu Seetharaman <subbu.seetharaman@emulex.com> | |
7945 | M: Ajit Khaparde <ajit.khaparde@emulex.com> | |
7d2c86b5 | 7946 | L: netdev@vger.kernel.org |
fea3af67 | 7947 | W: http://www.emulex.com |
7d2c86b5 | 7948 | S: Supported |
9aebddd1 | 7949 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7950 | |
8ceee660 | 7951 | SFC NETWORK DRIVER |
c06f51ea | 7952 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
8533ccf3 | 7953 | M: Shradha Shah <sshah@solarflare.com> |
c06f51ea | 7954 | L: netdev@vger.kernel.org |
8ceee660 | 7955 | S: Supported |
874aeea5 | 7956 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7957 | |
e2d1d6c0 | 7958 | SGI GRU DRIVER |
cc883afc | 7959 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 7960 | S: Maintained |
679655da | 7961 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7962 | |
7963 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7964 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
7965 | L: linux-ia64@vger.kernel.org |
7966 | S: Supported | |
679655da | 7967 | F: Documentation/ia64/serial.txt |
df621252 | 7968 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7969 | F: include/linux/ioc?.h |
e2d1d6c0 | 7970 | |
75312619 | 7971 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
7972 | M: Cliff Whickman <cpw@sgi.com> |
7973 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 7974 | S: Maintained |
679655da | 7975 | F: drivers/misc/sgi-xp/ |
75312619 | 7976 | |
46eacf3b AP |
7977 | SI2157 MEDIA DRIVER |
7978 | M: Antti Palosaari <crope@iki.fi> | |
7979 | L: linux-media@vger.kernel.org | |
7980 | W: http://linuxtv.org/ | |
7981 | W: http://palosaari.fi/linux/ | |
7982 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7983 | T: git git://linuxtv.org/anttip/media_tree.git | |
7984 | S: Maintained | |
7985 | F: drivers/media/tuners/si2157* | |
7986 | ||
75e2d5ba AP |
7987 | SI2168 MEDIA DRIVER |
7988 | M: Antti Palosaari <crope@iki.fi> | |
7989 | L: linux-media@vger.kernel.org | |
7990 | W: http://linuxtv.org/ | |
7991 | W: http://palosaari.fi/linux/ | |
7992 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7993 | T: git git://linuxtv.org/anttip/media_tree.git | |
7994 | S: Maintained | |
7995 | F: drivers/media/dvb-frontends/si2168* | |
7996 | ||
49cc629d HV |
7997 | SI470X FM RADIO RECEIVER I2C DRIVER |
7998 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7999 | L: linux-media@vger.kernel.org | |
8000 | T: git git://linuxtv.org/media_tree.git | |
8001 | W: http://linuxtv.org | |
8002 | S: Odd Fixes | |
8003 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
8004 | ||
8005 | SI470X FM RADIO RECEIVER USB DRIVER | |
8006 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8007 | L: linux-media@vger.kernel.org | |
8008 | T: git git://linuxtv.org/media_tree.git | |
8009 | W: http://linuxtv.org | |
8010 | S: Maintained | |
8011 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
8012 | F: drivers/media/radio/si470x/radio-si470x.h | |
8013 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
8014 | ||
c937ca03 EV |
8015 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
8016 | M: Eduardo Valentin <edubezval@gmail.com> | |
8017 | L: linux-media@vger.kernel.org | |
8018 | T: git git://linuxtv.org/media_tree.git | |
8019 | W: http://linuxtv.org | |
8020 | S: Odd Fixes | |
99995ded | 8021 | F: drivers/media/radio/si4713/si4713.? |
c937ca03 EV |
8022 | |
8023 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
8024 | M: Eduardo Valentin <edubezval@gmail.com> | |
8025 | L: linux-media@vger.kernel.org | |
8026 | T: git git://linuxtv.org/media_tree.git | |
8027 | W: http://linuxtv.org | |
8028 | S: Odd Fixes | |
99995ded DR |
8029 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
8030 | ||
8031 | SI4713 FM RADIO TRANSMITTER USB DRIVER | |
8032 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8033 | L: linux-media@vger.kernel.org | |
8034 | T: git git://linuxtv.org/media_tree.git | |
8035 | W: http://linuxtv.org | |
8036 | S: Maintained | |
8037 | F: drivers/media/radio/si4713/radio-usb-si4713.c | |
c937ca03 | 8038 | |
beb91d46 | 8039 | SIANO DVB DRIVER |
1b2c14b4 | 8040 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
beb91d46 MCC |
8041 | L: linux-media@vger.kernel.org |
8042 | W: http://linuxtv.org | |
8043 | T: git git://linuxtv.org/media_tree.git | |
8044 | S: Odd fixes | |
8045 | F: drivers/media/common/siano/ | |
beb91d46 | 8046 | F: drivers/media/usb/siano/ |
beb91d46 | 8047 | F: drivers/media/usb/siano/ |
14430813 | 8048 | F: drivers/media/mmc/siano/ |
beb91d46 | 8049 | |
b618b69c | 8050 | SH_VEU V4L2 MEM2MEM DRIVER |
b618b69c | 8051 | L: linux-media@vger.kernel.org |
bb60fcb2 | 8052 | S: Orphan |
b618b69c | 8053 | F: drivers/media/platform/sh_veu.c |
b618b69c GL |
8054 | |
8055 | SH_VOU V4L2 OUTPUT DRIVER | |
b618b69c | 8056 | L: linux-media@vger.kernel.org |
bb60fcb2 | 8057 | S: Orphan |
b618b69c GL |
8058 | F: drivers/media/platform/sh_vou.c |
8059 | F: include/media/sh_vou.h | |
8060 | ||
6349d997 | 8061 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 8062 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
8063 | L: sfi-devel@simplefirmware.org |
8064 | W: http://simplefirmware.org/ | |
8065 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 8066 | S: Supported |
943fc810 | 8067 | F: arch/x86/platform/sfi/ |
6349d997 LB |
8068 | F: drivers/sfi/ |
8069 | F: include/linux/sfi*.h | |
e2d1d6c0 | 8070 | |
1da177e4 LT |
8071 | SIMTEC EB110ATX (Chalice CATS) |
8072 | P: Ben Dooks | |
b16957c6 BD |
8073 | P: Vincent Sanders <vince@simtec.co.uk> |
8074 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
8075 | W: http://www.simtec.co.uk/products/EB110ATX/ |
8076 | S: Supported | |
8077 | ||
8078 | SIMTEC EB2410ITX (BAST) | |
8079 | P: Ben Dooks | |
b16957c6 BD |
8080 | P: Vincent Sanders <vince@simtec.co.uk> |
8081 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
8082 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
8083 | S: Supported | |
15dba387 JP |
8084 | F: arch/arm/mach-s3c24xx/mach-bast.c |
8085 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
8086 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 8087 | |
4c5adde7 | 8088 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 8089 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 8090 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f296ed78 | 8091 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) |
c9f46a85 | 8092 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 8093 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 8094 | S: Supported |
14430813 | 8095 | F: arch/arm/mach-davinci/ |
046d0a37 | 8096 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 8097 | |
8d4b3f08 | 8098 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 8099 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
8d4b3f08 LP |
8100 | L: linux-media@vger.kernel.org |
8101 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) | |
8102 | W: http://linuxtv.org/ | |
8103 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8104 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 8105 | S: Maintained |
8d4b3f08 LP |
8106 | F: drivers/media/platform/davinci/ |
8107 | F: include/media/davinci/ | |
8108 | ||
92aab3c0 | 8109 | SIS 190 ETHERNET DRIVER |
8b58be88 | 8110 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
8111 | L: netdev@vger.kernel.org |
8112 | S: Maintained | |
8c7de408 | 8113 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 8114 | |
1da177e4 | 8115 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 8116 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 8117 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 8118 | L: netdev@vger.kernel.org |
1da177e4 | 8119 | S: Maintained |
8c7de408 | 8120 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
8121 | |
8122 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 8123 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 8124 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 8125 | S: Maintained |
679655da JP |
8126 | F: Documentation/fb/sisfb.txt |
8127 | F: drivers/video/sis/ | |
8128 | F: include/video/sisfb.h | |
1da177e4 LT |
8129 | |
8130 | SIS USB2VGA DRIVER | |
8b58be88 | 8131 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
8132 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
8133 | S: Maintained | |
679655da | 8134 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 8135 | |
415ad26d | 8136 | SLAB ALLOCATOR |
8b58be88 | 8137 | M: Christoph Lameter <cl@linux-foundation.org> |
2ed1c525 | 8138 | M: Pekka Enberg <penberg@kernel.org> |
8b58be88 | 8139 | M: Matt Mackall <mpm@selenic.com> |
415ad26d CL |
8140 | L: linux-mm@kvack.org |
8141 | S: Maintained | |
679655da JP |
8142 | F: include/linux/sl?b*.h |
8143 | F: mm/sl?b.c | |
415ad26d | 8144 | |
9fab9787 PM |
8145 | SLEEPABLE READ-COPY UPDATE (SRCU) |
8146 | M: Lai Jiangshan <laijs@cn.fujitsu.com> | |
8147 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
981c3a4f | 8148 | L: linux-kernel@vger.kernel.org |
9fab9787 PM |
8149 | W: http://www.rdrop.com/users/paulmck/RCU/ |
8150 | S: Supported | |
8151 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
4102adab PM |
8152 | F: include/linux/srcu.h |
8153 | F: kernel/rcu/srcu.c | |
9fab9787 | 8154 | |
66372841 CS |
8155 | SMACK SECURITY MODULE |
8156 | M: Casey Schaufler <casey@schaufler-ca.com> | |
8157 | L: linux-security-module@vger.kernel.org | |
8158 | W: http://schaufler-ca.com | |
8159 | T: git git://git.gitorious.org/smack-next/kernel.git | |
8160 | S: Maintained | |
8161 | F: Documentation/security/Smack.txt | |
8162 | F: security/smack/ | |
8163 | ||
68ace3e1 KH |
8164 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
8165 | M: Kevin Hilman <khilman@kernel.org> | |
8166 | M: Nishanth Menon <nm@ti.com> | |
8167 | S: Maintained | |
8168 | F: drivers/power/avs/smartreflex.c | |
8169 | F: include/linux/power/smartreflex.h | |
8170 | L: linux-pm@vger.kernel.org | |
8171 | ||
1da177e4 | 8172 | SMC91x ETHERNET DRIVER |
2f82af08 | 8173 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 8174 | S: Odd Fixes |
ae150435 | 8175 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 8176 | |
e8e31622 SA |
8177 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
8178 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
8179 | L: linux-media@vger.kernel.org | |
8180 | S: Maintained | |
14430813 | 8181 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
8182 | F: include/media/smiapp.h |
8183 | F: drivers/media/i2c/smiapp-pll.c | |
8184 | F: drivers/media/i2c/smiapp-pll.h | |
8185 | ||
920fa1ff GR |
8186 | SMM665 HARDWARE MONITOR DRIVER |
8187 | M: Guenter Roeck <linux@roeck-us.net> | |
8188 | L: lm-sensors@lm-sensors.org | |
8189 | S: Maintained | |
8190 | F: Documentation/hwmon/smm665 | |
8191 | F: drivers/hwmon/smm665.c | |
8192 | ||
9df7305b | 8193 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 8194 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 8195 | L: lm-sensors@lm-sensors.org |
90b24cfb | 8196 | S: Maintained |
9df7305b SG |
8197 | F: Documentation/hwmon/emc2103 |
8198 | F: drivers/hwmon/emc2103.c | |
8199 | ||
a98d506c HG |
8200 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
8201 | M: Hans de Goede <hdegoede@redhat.com> | |
8202 | L: lm-sensors@lm-sensors.org | |
8203 | S: Supported | |
8204 | F: Documentation/hwmon/sch5627 | |
8205 | F: drivers/hwmon/sch5627.c | |
8206 | ||
6ea884db | 8207 | SMSC47B397 HARDWARE MONITOR DRIVER |
7c81c60f | 8208 | M: Jean Delvare <jdelvare@suse.de> |
6ea884db MH |
8209 | L: lm-sensors@lm-sensors.org |
8210 | S: Maintained | |
679655da JP |
8211 | F: Documentation/hwmon/smsc47b397 |
8212 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 8213 | |
fd9abb3d | 8214 | SMSC911x ETHERNET DRIVER |
90b24cfb | 8215 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 8216 | L: netdev@vger.kernel.org |
90b24cfb | 8217 | S: Maintained |
679655da | 8218 | F: include/linux/smsc911x.h |
ae150435 | 8219 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
8220 | |
8221 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 8222 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 8223 | L: netdev@vger.kernel.org |
90b24cfb | 8224 | S: Maintained |
ae150435 | 8225 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 8226 | |
3c8a63e2 | 8227 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 8228 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 8229 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 8230 | S: Maintained |
3c8a63e2 SG |
8231 | F: drivers/video/smscufx.c |
8232 | ||
668acf32 | 8233 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 8234 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 8235 | L: linux-media@vger.kernel.org |
275ffde4 | 8236 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 8237 | S: Maintained |
90d72ac6 MCC |
8238 | F: include/media/soc* |
8239 | F: drivers/media/i2c/soc_camera/ | |
8240 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 8241 | |
e2d1d6c0 | 8242 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 8243 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 8244 | S: Maintained |
679655da | 8245 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 8246 | |
1da177e4 | 8247 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 8248 | M: Neil Brown <neilb@suse.de> |
1da177e4 | 8249 | L: linux-raid@vger.kernel.org |
524418bb | 8250 | S: Supported |
679655da JP |
8251 | F: drivers/md/ |
8252 | F: include/linux/raid/ | |
c117ab84 | 8253 | F: include/uapi/linux/raid/ |
1da177e4 | 8254 | |
1da177e4 | 8255 | SONIC NETWORK DRIVER |
8b58be88 | 8256 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 8257 | L: netdev@vger.kernel.org |
1da177e4 | 8258 | S: Maintained |
d9fb9f38 | 8259 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 8260 | |
61e115a5 | 8261 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 8262 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
8263 | L: netdev@vger.kernel.org |
8264 | S: Maintained | |
679655da JP |
8265 | F: drivers/ssb/ |
8266 | F: include/linux/ssb/ | |
61e115a5 | 8267 | |
1da177e4 | 8268 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 8269 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 8270 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 8271 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 8272 | S: Maintained |
679655da JP |
8273 | F: Documentation/laptops/sony-laptop.txt |
8274 | F: drivers/char/sonypi.c | |
8275 | F: drivers/platform/x86/sony-laptop.c | |
8276 | F: include/linux/sony-laptop.h | |
1da177e4 | 8277 | |
baf8532a | 8278 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 8279 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
8280 | W: http://tifmxx.berlios.de/ |
8281 | S: Maintained | |
679655da | 8282 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 8283 | |
0ab30494 ML |
8284 | SONY MEMORYSTICK STANDARD SUPPORT |
8285 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
8286 | S: Maintained | |
8287 | F: drivers/memstick/core/ms_block.* | |
8288 | ||
1da177e4 | 8289 | SOUND |
8b58be88 JP |
8290 | M: Jaroslav Kysela <perex@perex.cz> |
8291 | M: Takashi Iwai <tiwai@suse.de> | |
93711660 | 8292 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 8293 | W: http://www.alsa-project.org/ |
dde7ad8d | 8294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 8295 | T: git git://git.alsa-project.org/alsa-kernel.git |
ff4a8f32 | 8296 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
1da177e4 | 8297 | S: Maintained |
3126a179 JP |
8298 | F: Documentation/sound/ |
8299 | F: include/sound/ | |
c117ab84 | 8300 | F: include/uapi/sound/ |
679655da | 8301 | F: sound/ |
1da177e4 | 8302 | |
33bbe149 MB |
8303 | SOUND - COMPRESSED AUDIO |
8304 | M: Vinod Koul <vinod.koul@intel.com> | |
8305 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
8307 | S: Supported | |
f672f31a | 8308 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 8309 | F: include/sound/compress_driver.h |
f672f31a | 8310 | F: include/uapi/sound/compress_* |
33bbe149 MB |
8311 | F: sound/core/compress_offload.c |
8312 | F: sound/soc/soc-compress.c | |
8313 | ||
bd903bde | 8314 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 8315 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 8316 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 8317 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 8318 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 8319 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 8320 | S: Supported |
2820f615 | 8321 | F: Documentation/sound/alsa/soc/ |
679655da | 8322 | F: sound/soc/ |
e6e55122 | 8323 | F: include/sound/soc* |
eb1a6af3 | 8324 | |
d7f8761b MB |
8325 | SOUND - DMAENGINE HELPERS |
8326 | M: Lars-Peter Clausen <lars@metafoo.de> | |
8327 | S: Supported | |
8328 | F: include/sound/dmaengine_pcm.h | |
8329 | F: sound/core/pcm_dmaengine.c | |
8330 | F: sound/soc/soc-generic-dmaengine-pcm.c | |
8331 | ||
473321fc | 8332 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 8333 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 8334 | L: sparclinux@vger.kernel.org |
8a6e2535 | 8335 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
8336 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8337 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 8338 | S: Maintained |
679655da | 8339 | F: arch/sparc/ |
7765b8bb | 8340 | F: drivers/sbus/ |
1da177e4 | 8341 | |
6404fcca DM |
8342 | SPARC SERIAL DRIVERS |
8343 | M: "David S. Miller" <davem@davemloft.net> | |
8344 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
8345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
8346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 8347 | S: Maintained |
6816383a | 8348 | F: include/linux/sunserialcore.h |
df621252 | 8349 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
8350 | F: drivers/tty/serial/sunhv.c |
8351 | F: drivers/tty/serial/sunsab.c | |
8352 | F: drivers/tty/serial/sunsab.h | |
8353 | F: drivers/tty/serial/sunsu.c | |
8354 | F: drivers/tty/serial/sunzilog.c | |
8355 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 8356 | |
389325b4 CL |
8357 | SPARSE CHECKER |
8358 | M: "Christopher Li" <sparse@chrisli.org> | |
8359 | L: linux-sparse@vger.kernel.org | |
8360 | W: https://sparse.wiki.kernel.org/ | |
8361 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
8362 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
8363 | S: Maintained | |
8364 | F: include/linux/compiler.h | |
8365 | ||
fc0c195a | 8366 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 8367 | M: Viresh Kumar <viresh.linux@gmail.com> |
9cc23682 | 8368 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
fbfa0748 VK |
8369 | L: spear-devel@list.st.com |
8370 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 8371 | W: http://www.st.com/spear |
8372 | S: Maintained | |
281e192f | 8373 | F: arch/arm/mach-spear/ |
fc0c195a | 8374 | |
8375 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 8376 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 VK |
8377 | L: spear-devel@list.st.com |
8378 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 8379 | W: http://www.st.com/spear |
8380 | S: Maintained | |
5df33a62 | 8381 | F: drivers/clk/spear/ |
fc0c195a | 8382 | |
e2d1d6c0 | 8383 | SPI SUBSYSTEM |
b02e48f2 | 8384 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 8385 | L: linux-spi@vger.kernel.org |
e7e4e13c | 8386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 8387 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 8388 | S: Maintained |
679655da JP |
8389 | F: Documentation/spi/ |
8390 | F: drivers/spi/ | |
8391 | F: include/linux/spi/ | |
c117ab84 | 8392 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 8393 | |
2752e401 | 8394 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
8395 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
8396 | M: Jens Osterkamp <jens@de.ibm.com> | |
2752e401 JL |
8397 | L: netdev@vger.kernel.org |
8398 | S: Supported | |
679655da | 8399 | F: Documentation/networking/spider_net.txt |
8df158ac | 8400 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 8401 | |
e2d1d6c0 | 8402 | SPU FILE SYSTEM |
8b58be88 | 8403 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 SR |
8404 | L: linuxppc-dev@lists.ozlabs.org |
8405 | L: cbe-oss-dev@lists.ozlabs.org | |
e2d1d6c0 RD |
8406 | W: http://www.ibm.com/developerworks/power/cell/ |
8407 | S: Supported | |
679655da JP |
8408 | F: Documentation/filesystems/spufs.txt |
8409 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 8410 | |
fc555841 | 8411 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 8412 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
8413 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
8414 | W: http://squashfs.org.uk | |
8415 | S: Maintained | |
679655da JP |
8416 | F: Documentation/filesystems/squashfs.txt |
8417 | F: fs/squashfs/ | |
fc555841 | 8418 | |
1da177e4 | 8419 | SRM (Alpha) environment access |
8b58be88 | 8420 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 8421 | S: Maintained |
679655da | 8422 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 8423 | |
26e9a397 | 8424 | STABLE BRANCH |
879a5a00 | 8425 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 8426 | L: stable@vger.kernel.org |
879a5a00 | 8427 | S: Supported |
7b175c46 | 8428 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 8429 | |
26e9a397 | 8430 | STAGING SUBSYSTEM |
879a5a00 | 8431 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 8432 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 8433 | L: devel@driverdev.osuosl.org |
879a5a00 | 8434 | S: Supported |
679655da | 8435 | F: drivers/staging/ |
dbc6c2cc | 8436 | |
c8c8b105 JP |
8437 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
8438 | M: Henk de Groot <pe1dnn@amsat.org> | |
8439 | S: Odd Fixes | |
8440 | F: drivers/staging/wlags49_h2/ | |
8441 | F: drivers/staging/wlags49_h25/ | |
8442 | ||
c9555159 JP |
8443 | STAGING - ASUS OLED |
8444 | M: Jakub Schmidtke <sjakub@gmail.com> | |
8445 | S: Odd Fixes | |
8446 | F: drivers/staging/asus_oled/ | |
8447 | ||
ebd3d010 JP |
8448 | STAGING - COMEDI |
8449 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 8450 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
8451 | S: Odd Fixes |
8452 | F: drivers/staging/comedi/ | |
8453 | ||
8ca572c9 JP |
8454 | STAGING - CRYSTAL HD VIDEO DECODER |
8455 | M: Naren Sankar <nsankar@broadcom.com> | |
8456 | M: Jarod Wilson <jarod@wilsonet.com> | |
8457 | M: Scott Davilla <davilla@4pi.com> | |
8458 | M: Manu Abraham <abraham.manu@gmail.com> | |
8459 | S: Odd Fixes | |
8460 | F: drivers/staging/crystalhd/ | |
8461 | ||
0f16ffc4 JP |
8462 | STAGING - ECHO CANCELLER |
8463 | M: Steve Underwood <steveu@coppice.org> | |
8464 | M: David Rowe <david@rowetel.com> | |
8465 | S: Odd Fixes | |
8466 | F: drivers/staging/echo/ | |
8467 | ||
8dc2bbe7 ME |
8468 | STAGING - ET131X NETWORK DRIVER |
8469 | M: Mark Einon <mark.einon@gmail.com> | |
8470 | S: Odd Fixes | |
8471 | F: drivers/staging/et131x/ | |
8472 | ||
a0138163 JP |
8473 | STAGING - FLARION FT1000 DRIVERS |
8474 | M: Marek Belisko <marek.belisko@gmail.com> | |
8475 | S: Odd Fixes | |
8476 | F: drivers/staging/ft1000/ | |
8477 | ||
ec3fab92 JP |
8478 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
8479 | M: David Täht <d@teklibre.com> | |
8480 | S: Odd Fixes | |
8481 | F: drivers/staging/frontier/ | |
8482 | ||
98ded590 HV |
8483 | STAGING - GO7007 MPEG CODEC |
8484 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
8485 | S: Maintained | |
8486 | F: drivers/staging/media/go7007/ | |
8487 | ||
6c1bb424 | 8488 | STAGING - INDUSTRIAL IO |
030a13d7 | 8489 | M: Jonathan Cameron <jic23@kernel.org> |
a0138163 | 8490 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
8491 | S: Odd Fixes |
8492 | F: drivers/staging/iio/ | |
8493 | ||
a0138163 JP |
8494 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
8495 | M: Jarod Wilson <jarod@wilsonet.com> | |
8496 | W: http://www.lirc.org/ | |
8497 | S: Odd Fixes | |
b2b0186d | 8498 | F: drivers/staging/media/lirc/ |
a0138163 | 8499 | |
7c6b6c71 | 8500 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 8501 | M: Julian Andres Klode <jak@jak-linux.org> |
7c6b6c71 MD |
8502 | M: Marc Dietrich <marvin24@gmx.de> |
8503 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 8504 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
8505 | S: Maintained |
8506 | F: drivers/staging/nvec/ | |
8507 | ||
a0138163 | 8508 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
8509 | M: Jens Frederich <jfrederich@gmail.com> |
8510 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
8511 | M: Jon Nettleton <jon.nettleton@gmail.com> |
8512 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 8513 | S: Maintained |
a0138163 JP |
8514 | F: drivers/staging/olpc_dcon/ |
8515 | ||
94cfdd15 | 8516 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
96747a8f | 8517 | M: Shigekatsu Tateno <shigekatsu.tateno@atmel.com> |
94cfdd15 CK |
8518 | S: Maintained |
8519 | F: drivers/staging/ozwpan/ | |
8520 | ||
a0138163 | 8521 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
8522 | M: Willy Tarreau <willy@meta-x.org> |
8523 | S: Odd Fixes | |
8524 | F: drivers/staging/panel/ | |
8525 | ||
a0138163 JP |
8526 | STAGING - REALTEK RTL8712U DRIVERS |
8527 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8528 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
8529 | S: Odd Fixes | |
8530 | F: drivers/staging/rtl8712/ | |
8531 | ||
7591ba8b JS |
8532 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
8533 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8534 | M: Jes Sorensen <Jes.Sorensen@redhat.com> | |
8535 | L: linux-wireless@vger.kernel.org | |
8536 | S: Maintained | |
8537 | F: drivers/staging/rtl8723au/ | |
8538 | ||
9629fa86 JP |
8539 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
8540 | M: Teddy Wang <teddy.wang@siliconmotion.com.cn> | |
8541 | S: Odd Fixes | |
9df0a245 | 8542 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 8543 | |
510fa408 JP |
8544 | STAGING - SLICOSS |
8545 | M: Lior Dotan <liodot@gmail.com> | |
8546 | M: Christopher Harrer <charrer@alacritech.com> | |
8547 | S: Odd Fixes | |
8548 | F: drivers/staging/slicoss/ | |
8549 | ||
a0138163 | 8550 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8551 | M: Ismael Luceno <ismael.luceno@corp.bluecherry.net> |
8552 | S: Supported | |
b2b0186d | 8553 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8554 | |
8555 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8556 | M: William Hubbs <w.d.hubbs@gmail.com> | |
8557 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 8558 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 JP |
8559 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
8560 | L: speakup@braille.uwo.ca | |
8561 | W: http://www.linux-speakup.org/ | |
8562 | S: Odd Fixes | |
8563 | F: drivers/staging/speakup/ | |
8564 | ||
8565 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8566 | M: Omar Ramirez Luna <omar.ramirez@copitl.com> |
a0138163 JP |
8567 | S: Odd Fixes |
8568 | F: drivers/staging/tidspbridge/ | |
8569 | ||
a0138163 JP |
8570 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8571 | M: Al Cho <acho@novell.com> | |
8572 | S: Odd Fixes | |
8573 | F: drivers/staging/keucr/ | |
8574 | ||
b3e871ce JP |
8575 | STAGING - VIA VT665X DRIVERS |
8576 | M: Forest Bond <forest@alittletooquiet.net> | |
8577 | S: Odd Fixes | |
8578 | F: drivers/staging/vt665?/ | |
8579 | ||
81a9a526 JP |
8580 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8581 | M: Pavel Machek <pavel@ucw.cz> | |
8582 | S: Odd Fixes | |
8583 | F: drivers/staging/winbond/ | |
8584 | ||
709bcb07 | 8585 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8586 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
8587 | S: Odd Fixes |
8588 | F: drivers/staging/xgifb/ | |
8589 | ||
1da177e4 | 8590 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8591 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 8592 | S: Odd Fixes |
9bba23b0 | 8593 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8594 | |
e2d1d6c0 | 8595 | SUN3/3X |
8b58be88 | 8596 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
8597 | W: http://sammy.net/sun3/ |
8598 | S: Maintained | |
679655da JP |
8599 | F: arch/m68k/kernel/*sun3* |
8600 | F: arch/m68k/sun3*/ | |
8601 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8602 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8603 | |
2bc9ff01 DK |
8604 | SUNDANCE NETWORK DRIVER |
8605 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
8606 | L: netdev@vger.kernel.org | |
8607 | S: Maintained | |
8608 | F: drivers/net/ethernet/dlink/sundance.c | |
8609 | ||
2cbb12a4 | 8610 | SUPERH |
2cbb12a4 | 8611 | L: linux-sh@vger.kernel.org |
1da177e4 | 8612 | W: http://www.linux-sh.org |
8a6e2535 | 8613 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
dcaa57d5 | 8614 | S: Orphan |
066069e1 | 8615 | F: Documentation/sh/ |
679655da | 8616 | F: arch/sh/ |
066069e1 | 8617 | F: drivers/sh/ |
1da177e4 | 8618 | |
4480f15b | 8619 | SUSPEND TO RAM |
7fb06082 | 8620 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
8b58be88 JP |
8621 | M: Len Brown <len.brown@intel.com> |
8622 | M: Pavel Machek <pavel@ucw.cz> | |
bf1c138e | 8623 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 8624 | S: Supported |
679655da JP |
8625 | F: Documentation/power/ |
8626 | F: arch/x86/kernel/acpi/ | |
8627 | F: drivers/base/power/ | |
8628 | F: kernel/power/ | |
8629 | F: include/linux/suspend.h | |
8630 | F: include/linux/freezer.h | |
8631 | F: include/linux/pm.h | |
1da177e4 LT |
8632 | |
8633 | SVGA HANDLING | |
8b58be88 | 8634 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
8635 | L: linux-video@atrey.karlin.mff.cuni.cz |
8636 | S: Maintained | |
679655da JP |
8637 | F: Documentation/svga.txt |
8638 | F: arch/x86/boot/video* | |
1da177e4 | 8639 | |
6e28b761 KRW |
8640 | SWIOTLB SUBSYSTEM |
8641 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
8642 | L: linux-kernel@vger.kernel.org | |
8643 | S: Supported | |
8644 | F: lib/swiotlb.c | |
8645 | F: arch/*/kernel/pci-swiotlb.c | |
8646 | F: include/linux/swiotlb.h | |
8647 | ||
db8e35d5 VG |
8648 | SYNOPSYS ARC ARCHITECTURE |
8649 | M: Vineet Gupta <vgupta@synopsys.com> | |
db8e35d5 VG |
8650 | S: Supported |
8651 | F: arch/arc/ | |
6659a20a | 8652 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8653 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8654 | |
1da177e4 | 8655 | SYSV FILESYSTEM |
8b58be88 | 8656 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 8657 | S: Maintained |
679655da JP |
8658 | F: Documentation/filesystems/sysv-fs.txt |
8659 | F: fs/sysv/ | |
8660 | F: include/linux/sysv_fs.h | |
1da177e4 | 8661 | |
86cfa7fc NB |
8662 | TARGET SUBSYSTEM |
8663 | M: Nicholas A. Bellinger <nab@linux-iscsi.org> | |
8664 | L: linux-scsi@vger.kernel.org | |
b9f5edc2 | 8665 | L: target-devel@vger.kernel.org |
86cfa7fc | 8666 | W: http://www.linux-iscsi.org |
cf015e9f | 8667 | W: http://groups.google.com/group/linux-iscsi-target-dev |
452cf324 | 8668 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8669 | S: Supported |
8670 | F: drivers/target/ | |
8671 | F: include/target/ | |
8672 | F: Documentation/target/ | |
8673 | ||
4e68852d | 8674 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8675 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 8676 | S: Maintained |
679655da JP |
8677 | F: Documentation/accounting/taskstats* |
8678 | F: include/linux/taskstats* | |
8679 | F: kernel/taskstats.c | |
4e68852d | 8680 | |
781b456a | 8681 | TC CLASSIFIER |
f935f3f8 | 8682 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
8683 | L: netdev@vger.kernel.org |
8684 | S: Maintained | |
679655da | 8685 | F: include/net/pkt_cls.h |
c117ab84 | 8686 | F: include/uapi/linux/pkt_cls.h |
679655da | 8687 | F: net/sched/ |
781b456a | 8688 | |
5067f08a | 8689 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8690 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
8691 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
8692 | W: http://tcp-lp-mod.sourceforge.net/ |
8693 | S: Maintained | |
679655da | 8694 | F: net/ipv4/tcp_lp.c |
5067f08a | 8695 | |
91952bc0 AP |
8696 | TDA10071 MEDIA DRIVER |
8697 | M: Antti Palosaari <crope@iki.fi> | |
8698 | L: linux-media@vger.kernel.org | |
8699 | W: http://linuxtv.org/ | |
8700 | W: http://palosaari.fi/linux/ | |
8701 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8702 | T: git git://linuxtv.org/anttip/media_tree.git | |
8703 | S: Maintained | |
8704 | F: drivers/media/dvb-frontends/tda10071* | |
8705 | ||
8706 | TDA18212 MEDIA DRIVER | |
8707 | M: Antti Palosaari <crope@iki.fi> | |
8708 | L: linux-media@vger.kernel.org | |
8709 | W: http://linuxtv.org/ | |
8710 | W: http://palosaari.fi/linux/ | |
8711 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8712 | T: git git://linuxtv.org/anttip/media_tree.git | |
8713 | S: Maintained | |
8714 | F: drivers/media/tuners/tda18212* | |
8715 | ||
8716 | TDA18218 MEDIA DRIVER | |
8717 | M: Antti Palosaari <crope@iki.fi> | |
8718 | L: linux-media@vger.kernel.org | |
8719 | W: http://linuxtv.org/ | |
8720 | W: http://palosaari.fi/linux/ | |
8721 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8722 | T: git git://linuxtv.org/anttip/media_tree.git | |
8723 | S: Maintained | |
8724 | F: drivers/media/tuners/tda18218* | |
8725 | ||
3b2f6aba MK |
8726 | TDA18271 MEDIA DRIVER |
8727 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8728 | L: linux-media@vger.kernel.org | |
8729 | W: http://linuxtv.org/ | |
8730 | W: http://github.com/mkrufky | |
8731 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8732 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8733 | S: Maintained | |
8734 | F: drivers/media/tuners/tda18271* | |
8735 | ||
e48307a9 MK |
8736 | TDA827x MEDIA DRIVER |
8737 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8738 | L: linux-media@vger.kernel.org | |
8739 | W: http://linuxtv.org/ | |
8740 | W: http://github.com/mkrufky | |
8741 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8742 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8743 | S: Maintained | |
8744 | F: drivers/media/tuners/tda8290.* | |
8745 | ||
66cf9212 MK |
8746 | TDA8290 MEDIA DRIVER |
8747 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8748 | L: linux-media@vger.kernel.org | |
8749 | W: http://linuxtv.org/ | |
8750 | W: http://github.com/mkrufky | |
8751 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8752 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8753 | S: Maintained | |
8754 | F: drivers/media/tuners/tda8290.* | |
8755 | ||
4b9fba30 HV |
8756 | TDA9840 MEDIA DRIVER |
8757 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8758 | L: linux-media@vger.kernel.org | |
8759 | T: git git://linuxtv.org/media_tree.git | |
8760 | W: http://linuxtv.org | |
8761 | S: Maintained | |
8762 | F: drivers/media/i2c/tda9840* | |
8763 | ||
2cb654fd | 8764 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8765 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
8766 | L: linux-media@vger.kernel.org |
8767 | W: http://linuxtv.org | |
8768 | T: git git://linuxtv.org/media_tree.git | |
8769 | S: Odd fixes | |
8770 | F: drivers/media/tuners/tea5761.* | |
8771 | ||
8772 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8773 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
8774 | L: linux-media@vger.kernel.org |
8775 | W: http://linuxtv.org | |
8776 | T: git git://linuxtv.org/media_tree.git | |
8777 | S: Maintained | |
8778 | F: drivers/media/tuners/tea5767.* | |
8779 | ||
4b9fba30 HV |
8780 | TEA6415C MEDIA DRIVER |
8781 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8782 | L: linux-media@vger.kernel.org | |
8783 | T: git git://linuxtv.org/media_tree.git | |
8784 | W: http://linuxtv.org | |
8785 | S: Maintained | |
8786 | F: drivers/media/i2c/tea6415c* | |
8787 | ||
8788 | TEA6420 MEDIA DRIVER | |
8789 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8790 | L: linux-media@vger.kernel.org | |
8791 | T: git git://linuxtv.org/media_tree.git | |
8792 | W: http://linuxtv.org | |
8793 | S: Maintained | |
8794 | F: drivers/media/i2c/tea6420* | |
8795 | ||
3d249d4c | 8796 | TEAM DRIVER |
dca9ab92 | 8797 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
8798 | L: netdev@vger.kernel.org |
8799 | S: Supported | |
8800 | F: drivers/net/team/ | |
8801 | F: include/linux/if_team.h | |
c117ab84 | 8802 | F: include/uapi/linux/if_team.h |
3d249d4c | 8803 | |
7d029125 VD |
8804 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8805 | M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com> | |
8806 | S: Maintained | |
8807 | F: arch/x86/platform/ts5500/ | |
8808 | ||
40ad4a30 SY |
8809 | TECHNOTREND USB IR RECEIVER |
8810 | M: Sean Young <sean@mess.org> | |
8811 | L: linux-media@vger.kernel.org | |
8812 | S: Maintained | |
8813 | F: drivers/media/rc/ttusbir.c | |
8814 | ||
adabdb0c | 8815 | TEGRA ARCHITECTURE SUPPORT |
243d58ec | 8816 | M: Stephen Warren <swarren@wwwdotorg.org> |
adabdb0c | 8817 | M: Thierry Reding <thierry.reding@gmail.com> |
84b9414b | 8818 | L: linux-tegra@vger.kernel.org |
fd117cd1 OJ |
8819 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8821 | S: Supported |
bbbe96ed | 8822 | N: [^a-z]tegra |
84b9414b | 8823 | |
adabdb0c SW |
8824 | TEGRA ASOC DRIVER |
8825 | M: Stephen Warren <swarren@wwwdotorg.org> | |
8826 | S: Supported | |
8827 | F: sound/soc/tegra/ | |
8828 | ||
8829 | TEGRA CLOCK DRIVER | |
8830 | M: Peter De Schrijver <pdeschrijver@nvidia.com> | |
8831 | M: Prashant Gaikwad <pgaikwad@nvidia.com> | |
8832 | S: Supported | |
8833 | F: drivers/clk/tegra/ | |
8834 | ||
8835 | TEGRA DMA DRIVER | |
8836 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
8837 | S: Supported | |
8838 | F: drivers/dma/tegra20-apb-dma.c | |
8839 | ||
8840 | TEGRA GPIO DRIVER | |
8841 | M: Stephen Warren <swarren@wwwdotorg.org> | |
8842 | S: Supported | |
8843 | F: drivers/gpio/gpio-tegra.c | |
8844 | ||
8845 | TEGRA I2C DRIVER | |
8846 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
8847 | S: Supported | |
8848 | F: drivers/i2c/busses/i2c-tegra.c | |
8849 | ||
8850 | TEGRA IOMMU DRIVERS | |
8851 | M: Hiroshi Doyu <hdoyu@nvidia.com> | |
8852 | S: Supported | |
8853 | F: drivers/iommu/tegra* | |
8854 | ||
8855 | TEGRA KBC DRIVER | |
8856 | M: Rakesh Iyer <riyer@nvidia.com> | |
8857 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
8858 | S: Supported | |
8859 | F: drivers/input/keyboard/tegra-kbc.c | |
8860 | ||
8861 | TEGRA PINCTRL DRIVER | |
8862 | M: Stephen Warren <swarren@wwwdotorg.org> | |
8863 | S: Supported | |
8864 | F: drivers/pinctrl/pinctrl-tegra* | |
8865 | ||
8866 | TEGRA PWM DRIVER | |
8867 | M: Thierry Reding <thierry.reding@gmail.com> | |
8868 | S: Supported | |
8869 | F: drivers/pwm/pwm-tegra.c | |
8870 | ||
8871 | TEGRA SERIAL DRIVER | |
8872 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
8873 | S: Supported | |
8874 | F: drivers/tty/serial/serial-tegra.c | |
8875 | ||
8876 | TEGRA SPI DRIVER | |
8877 | M: Laxman Dewangan <ldewangan@nvidia.com> | |
8878 | S: Supported | |
8879 | F: drivers/spi/spi-tegra* | |
8880 | ||
1a348ccc | 8881 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8882 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
8883 | L: netdev@vger.kernel.org |
8884 | S: Supported | |
ef7f5429 | 8885 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8886 | |
4e68852d | 8887 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8888 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 8889 | S: Supported |
679655da | 8890 | F: drivers/char/tlclk.c |
4e68852d | 8891 | |
4480f15b | 8892 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8893 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
8894 | M: Max Filippov <jcmvbkbc@gmail.com> |
8895 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 8896 | S: Maintained |
679655da | 8897 | F: arch/xtensa/ |
3dc99857 | 8898 | F: drivers/irqchip/irq-xtensa-* |
4e68852d | 8899 | |
5313ba66 HV |
8900 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
8901 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8902 | L: linux-media@vger.kernel.org | |
8903 | T: git git://linuxtv.org/media_tree.git | |
8904 | W: http://linuxtv.org | |
8905 | S: Maintained | |
8906 | F: drivers/media/radio/radio-raremono.c | |
8907 | ||
d3fb6955 | 8908 | THERMAL |
b75f0050 JP |
8909 | M: Zhang Rui <rui.zhang@intel.com> |
8910 | M: Eduardo Valentin <eduardo.valentin@ti.com> | |
8911 | L: linux-pm@vger.kernel.org | |
8912 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
8913 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git | |
8914 | Q: https://patchwork.kernel.org/project/linux-pm/list/ | |
8915 | S: Supported | |
8916 | F: drivers/thermal/ | |
8917 | F: include/linux/thermal.h | |
8918 | F: include/linux/cpu_cooling.h | |
8919 | F: Documentation/devicetree/bindings/thermal/ | |
d3fb6955 | 8920 | |
30ba2fbd VD |
8921 | THINGM BLINK(1) USB RGB LED DRIVER |
8922 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
8923 | S: Maintained | |
8924 | F: drivers/hid/hid-thingm.c | |
8925 | ||
4e68852d | 8926 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8927 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 8928 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 8929 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
8930 | W: http://ibm-acpi.sourceforge.net |
8931 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8932 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8933 | S: Maintained |
679655da | 8934 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8935 | |
1b46f2a2 EV |
8936 | TI BANDGAP AND THERMAL DRIVER |
8937 | M: Eduardo Valentin <eduardo.valentin@ti.com> | |
8938 | L: linux-pm@vger.kernel.org | |
794b2e25 EV |
8939 | S: Supported |
8940 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8941 | |
4020f2d7 | 8942 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8943 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 8944 | S: Maintained |
679655da JP |
8945 | F: drivers/misc/tifm* |
8946 | F: drivers/mmc/host/tifm_sd.c | |
8947 | F: include/linux/tifm.h | |
4020f2d7 | 8948 | |
152ad442 SR |
8949 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8950 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 8951 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
8952 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
8953 | S: Maintained | |
8954 | F: sound/soc/codecs/lm49453* | |
d392dead | 8955 | F: sound/soc/codecs/isabelle* |
152ad442 | 8956 | |
0edd807d KM |
8957 | TI LP855x BACKLIGHT DRIVER |
8958 | M: Milo Kim <milo.kim@ti.com> | |
8959 | S: Maintained | |
8960 | F: Documentation/backlight/lp855x-driver.txt | |
8961 | F: drivers/video/backlight/lp855x_bl.c | |
8962 | F: include/linux/platform_data/lp855x.h | |
8963 | ||
faf13f6d KM |
8964 | TI LP8727 CHARGER DRIVER |
8965 | M: Milo Kim <milo.kim@ti.com> | |
8966 | S: Maintained | |
8967 | F: drivers/power/lp8727_charger.c | |
8968 | F: include/linux/platform_data/lp8727.h | |
8969 | ||
22f1229f KM |
8970 | TI LP8788 MFD DRIVER |
8971 | M: Milo Kim <milo.kim@ti.com> | |
8972 | S: Maintained | |
8973 | F: drivers/iio/adc/lp8788_adc.c | |
8974 | F: drivers/leds/leds-lp8788.c | |
8975 | F: drivers/mfd/lp8788*.c | |
8976 | F: drivers/power/lp8788-charger.c | |
8977 | F: drivers/regulator/lp8788-*.c | |
8978 | F: include/linux/mfd/lp8788*.h | |
8979 | ||
dd5e8e6b | 8980 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8981 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
8982 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
8983 | S: Maintained | |
8984 | F: sound/soc/codecs/twl4030* | |
8985 | ||
90921014 | 8986 | TI WILINK WIRELESS DRIVERS |
90921014 LC |
8987 | L: linux-wireless@vger.kernel.org |
8988 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8989 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8990 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
22d072f6 | 8991 | S: Orphan |
90921014 LC |
8992 | F: drivers/net/wireless/ti/ |
8993 | F: include/linux/wl12xx.h | |
8994 | ||
e86eaa3a | 8995 | TIPC NETWORK LAYER |
8b58be88 JP |
8996 | M: Jon Maloy <jon.maloy@ericsson.com> |
8997 | M: Allan Stephens <allan.stephens@windriver.com> | |
633d2bde AS |
8998 | L: netdev@vger.kernel.org (core kernel code) |
8999 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 9000 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 9001 | S: Maintained |
c117ab84 | 9002 | F: include/uapi/linux/tipc*.h |
679655da | 9003 | F: net/tipc/ |
e86eaa3a | 9004 | |
867e359b CM |
9005 | TILE ARCHITECTURE |
9006 | M: Chris Metcalf <cmetcalf@tilera.com> | |
9007 | W: http://www.tilera.com/scm/ | |
9008 | S: Supported | |
9009 | F: arch/tile/ | |
6b940606 | 9010 | F: drivers/char/tile-srom.c |
5c770755 | 9011 | F: drivers/edac/tile_edac.c |
6b940606 CM |
9012 | F: drivers/net/ethernet/tile/ |
9013 | F: drivers/rtc/rtc-tile.c | |
9014 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 9015 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
9016 | F: drivers/usb/host/*-tilegx.c |
9017 | F: include/linux/usb/tilegx.h | |
867e359b | 9018 | |
1da177e4 | 9019 | TLAN NETWORK DRIVER |
8b58be88 | 9020 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 9021 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
9022 | W: http://sourceforge.net/projects/tlan/ |
9023 | S: Maintained | |
679655da | 9024 | F: Documentation/networking/tlan.txt |
b544dbac | 9025 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 9026 | |
d74db3b2 | 9027 | TOMOYO SECURITY MODULE |
8b58be88 JP |
9028 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
9029 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
9030 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
9031 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
9032 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
9033 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
9034 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 9035 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 9036 | S: Maintained |
679655da | 9037 | F: security/tomoyo/ |
d74db3b2 | 9038 | |
9caeb532 | 9039 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 9040 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 9041 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
9042 | S: Maintained |
9043 | F: drivers/platform/x86/topstar-laptop.c | |
9044 | ||
1da177e4 | 9045 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 9046 | L: platform-driver-x86@vger.kernel.org |
15065531 | 9047 | S: Orphan |
679655da | 9048 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
9049 | |
9050 | TOSHIBA SMM DRIVER | |
8b58be88 | 9051 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
9052 | L: tlinux-users@tce.toshiba-dme.co.jp |
9053 | W: http://www.buzzard.org.uk/toshiba/ | |
9054 | S: Maintained | |
679655da JP |
9055 | F: drivers/char/toshiba.c |
9056 | F: include/linux/toshiba.h | |
c117ab84 | 9057 | F: include/uapi/linux/toshiba.h |
1da177e4 | 9058 | |
d719f900 | 9059 | TMIO MMC DRIVER |
8b58be88 | 9060 | M: Ian Molton <ian@mnementh.co.uk> |
d1057c40 | 9061 | L: linux-mmc@vger.kernel.org |
d719f900 | 9062 | S: Maintained |
d1057c40 GL |
9063 | F: drivers/mmc/host/tmio_mmc* |
9064 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
9065 | F: include/linux/mmc/tmio.h | |
9066 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 9067 | |
917cc4e6 GR |
9068 | TMP401 HARDWARE MONITOR DRIVER |
9069 | M: Guenter Roeck <linux@roeck-us.net> | |
9070 | L: lm-sensors@lm-sensors.org | |
9071 | S: Maintained | |
9072 | F: Documentation/hwmon/tmp401 | |
9073 | F: drivers/hwmon/tmp401.c | |
9074 | ||
98f32602 | 9075 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 9076 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
9077 | L: linux-mm@kvack.org |
9078 | S: Maintained | |
9079 | F: include/linux/shmem_fs.h | |
9080 | F: mm/shmem.c | |
9081 | ||
45f95b53 | 9082 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 9083 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
45f95b53 MCC |
9084 | L: linux-media@vger.kernel.org |
9085 | W: http://linuxtv.org | |
9086 | T: git git://linuxtv.org/media_tree.git | |
9087 | S: Odd fixes | |
9088 | F: drivers/media/usb/tm6000/ | |
9089 | ||
4e68852d | 9090 | TPM DEVICE DRIVER |
901486b8 | 9091 | M: Peter Huewe <peterhuewe@gmx.de> |
383dec1f | 9092 | M: Ashley Lai <ashley@ashleylai.com> |
cbb2d5e4 | 9093 | M: Marcel Selhorst <tpmdd@selhorst.net> |
383dec1f | 9094 | W: http://tpmdd.sourceforge.net |
63a10dfd | 9095 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
4e68852d | 9096 | S: Maintained |
679655da | 9097 | F: drivers/char/tpm/ |
4e68852d | 9098 | |
d6f005a1 JP |
9099 | TRACING |
9100 | M: Steven Rostedt <rostedt@goodmis.org> | |
9101 | M: Frederic Weisbecker <fweisbec@gmail.com> | |
9102 | M: Ingo Molnar <mingo@redhat.com> | |
75fc2d37 | 9103 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
9104 | S: Maintained |
9105 | F: Documentation/trace/ftrace.txt | |
9106 | F: arch/*/*/*/ftrace.h | |
9107 | F: arch/*/kernel/ftrace.c | |
9108 | F: include/*/ftrace.h | |
9109 | F: include/linux/trace*.h | |
9110 | F: include/trace/ | |
9111 | F: kernel/trace/ | |
9112 | ||
1da177e4 | 9113 | TRIVIAL PATCHES |
8b58be88 | 9114 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 9115 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 9116 | S: Maintained |
86ef925f | 9117 | K: ^Subject:.*(?i)trivial |
1da177e4 | 9118 | |
4e68852d | 9119 | TTY LAYER |
879a5a00 | 9120 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
25e6c11f | 9121 | M: Jiri Slaby <jslaby@suse.cz> |
879a5a00 | 9122 | S: Supported |
08deed1e | 9123 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 9124 | F: drivers/tty/ |
df621252 | 9125 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
9126 | F: include/linux/serial_core.h |
9127 | F: include/linux/serial.h | |
9128 | F: include/linux/tty.h | |
c117ab84 CEB |
9129 | F: include/uapi/linux/serial_core.h |
9130 | F: include/uapi/linux/serial.h | |
9131 | F: include/uapi/linux/tty.h | |
4e68852d | 9132 | |
91952bc0 AP |
9133 | TUA9001 MEDIA DRIVER |
9134 | M: Antti Palosaari <crope@iki.fi> | |
9135 | L: linux-media@vger.kernel.org | |
9136 | W: http://linuxtv.org/ | |
9137 | W: http://palosaari.fi/linux/ | |
9138 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
9139 | T: git git://linuxtv.org/anttip/media_tree.git | |
9140 | S: Maintained | |
9141 | F: drivers/media/tuners/tua9001* | |
9142 | ||
740db6d7 | 9143 | TULIP NETWORK DRIVERS |
8b58be88 | 9144 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
9145 | L: netdev@vger.kernel.org |
9146 | S: Maintained | |
0f04e2aa | 9147 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
9148 | |
9149 | TUN/TAP driver | |
ba57b6f2 | 9150 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
9151 | W: http://vtun.sourceforge.net/tun |
9152 | S: Maintained | |
679655da JP |
9153 | F: Documentation/networking/tuntap.txt |
9154 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 9155 | |
b454cc66 | 9156 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 9157 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
c406339c RB |
9158 | M: Ralf Baechle <ralf@linux-mips.org> |
9159 | L: linux-mips@linux-mips.org | |
9160 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ | |
b454cc66 | 9161 | S: Maintained |
679655da JP |
9162 | F: drivers/tc/ |
9163 | F: include/linux/tc.h | |
b454cc66 | 9164 | |
1da177e4 | 9165 | U14-34F SCSI DRIVER |
8b58be88 | 9166 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
9167 | L: linux-scsi@vger.kernel.org |
9168 | S: Maintained | |
679655da | 9169 | F: drivers/scsi/u14-34f.c |
1da177e4 | 9170 | |
e2d1d6c0 | 9171 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 9172 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 9173 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 9174 | L: linux-mtd@lists.infradead.org |
e2966cbe | 9175 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
9176 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
9177 | S: Maintained | |
679655da JP |
9178 | F: Documentation/filesystems/ubifs.txt |
9179 | F: fs/ubifs/ | |
e2d1d6c0 | 9180 | |
cc2020e6 | 9181 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 9182 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 AC |
9183 | W: http://www.uclinux.org/ |
9184 | L: uclinux-dev@uclinux.org (subscribers-only) | |
9185 | S: Maintained | |
61bc02bb JP |
9186 | F: arch/m68k/*/*_no.* |
9187 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 9188 | |
1da177e4 | 9189 | UDF FILESYSTEM |
8b58be88 | 9190 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 9191 | S: Maintained |
679655da JP |
9192 | F: Documentation/filesystems/udf.txt |
9193 | F: fs/udf/ | |
1da177e4 | 9194 | |
cc2020e6 | 9195 | UFS FILESYSTEM |
8b58be88 | 9196 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 9197 | S: Maintained |
679655da JP |
9198 | F: Documentation/filesystems/ufs.txt |
9199 | F: fs/ufs/ | |
cc2020e6 | 9200 | |
0a09d3ab DH |
9201 | UHID USERSPACE HID IO DRIVER: |
9202 | M: David Herrmann <dh.herrmann@googlemail.com> | |
9203 | L: linux-input@vger.kernel.org | |
9204 | S: Maintained | |
9205 | F: drivers/hid/uhid.c | |
c117ab84 | 9206 | F: include/uapi/linux/uhid.h |
0a09d3ab | 9207 | |
18332a80 | 9208 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 9209 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 9210 | S: Orphan |
355ffe69 | 9211 | F: drivers/uwb/ |
679655da JP |
9212 | F: include/linux/uwb.h |
9213 | F: include/linux/uwb/ | |
18332a80 | 9214 | |
b31d8273 G |
9215 | UNICORE32 ARCHITECTURE: |
9216 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
9217 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
9218 | S: Maintained | |
9219 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
9220 | F: arch/unicore32/ | |
9221 | ||
d8379ab1 TF |
9222 | UNIFDEF |
9223 | M: Tony Finch <dot@dotat.at> | |
9224 | W: http://dotat.at/prog/unifdef | |
9225 | S: Maintained | |
9226 | F: scripts/unifdef.c | |
9227 | ||
1da177e4 | 9228 | UNIFORM CDROM DRIVER |
8b58be88 | 9229 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
9230 | W: http://www.kernel.dk |
9231 | S: Maintained | |
679655da JP |
9232 | F: Documentation/cdrom/ |
9233 | F: drivers/cdrom/cdrom.c | |
9234 | F: include/linux/cdrom.h | |
c117ab84 | 9235 | F: include/uapi/linux/cdrom.h |
1da177e4 | 9236 | |
56df0122 BR |
9237 | UNISYS S-PAR DRIVERS |
9238 | M: Benjamin Romer <benjamin.romer@unisys.com> | |
9239 | M: David Kershner <david.kershner@unisys.com> | |
9240 | L: sparmaintainer@unisys.com (Unisys internal) | |
9241 | S: Supported | |
9242 | F: drivers/staging/unisys/ | |
9243 | ||
9941fa6e VH |
9244 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
9245 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
9246 | M: Santosh Y <santoshsy@gmail.com> | |
9247 | L: linux-scsi@vger.kernel.org | |
9248 | S: Supported | |
9249 | F: Documentation/scsi/ufs.txt | |
9250 | F: drivers/scsi/ufs/ | |
9251 | ||
e2d1d6c0 | 9252 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 9253 | M: Artem Bityutskiy <dedekind1@gmail.com> |
e2d1d6c0 RD |
9254 | W: http://www.linux-mtd.infradead.org/ |
9255 | L: linux-mtd@lists.infradead.org | |
b6b44e0a | 9256 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 | 9257 | S: Maintained |
80811493 | 9258 | F: drivers/mtd/ubi/ |
679655da | 9259 | F: include/linux/mtd/ubi.h |
c117ab84 | 9260 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 9261 | |
76ac66e4 RW |
9262 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
9263 | M: Richard Weinberger <richard@nod.at> | |
9264 | L: linux-mtd@lists.infradead.org | |
9265 | S: Maintained | |
9266 | F: drivers/mtd/ubi/fastmap.c | |
9267 | ||
1da177e4 | 9268 | USB ACM DRIVER |
61eee9a7 | 9269 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 9270 | L: linux-usb@vger.kernel.org |
1da177e4 | 9271 | S: Maintained |
679655da JP |
9272 | F: Documentation/usb/acm.txt |
9273 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 9274 | |
b7d572e1 PF |
9275 | USB AR5523 WIRELESS DRIVER |
9276 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
9277 | L: linux-wireless@vger.kernel.org | |
9278 | S: Maintained | |
9279 | F: drivers/net/wireless/ath/ar5523/ | |
9280 | ||
115bb1ff | 9281 | USB ATTACHED SCSI |
f50a4968 | 9282 | M: Hans de Goede <hdegoede@redhat.com> |
8eae0fb7 | 9283 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
9284 | L: linux-usb@vger.kernel.org |
9285 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 9286 | S: Maintained |
115bb1ff MW |
9287 | F: drivers/usb/storage/uas.c |
9288 | ||
1da177e4 | 9289 | USB CDC ETHERNET DRIVER |
61eee9a7 | 9290 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 9291 | L: linux-usb@vger.kernel.org |
1da177e4 | 9292 | S: Maintained |
679655da | 9293 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 9294 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 9295 | |
b02b371e | 9296 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 9297 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
9298 | L: linux-usb@vger.kernel.org |
9299 | S: Maintained | |
679655da | 9300 | F: drivers/usb/c67x00/ |
b02b371e | 9301 | |
d0374f4f | 9302 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 9303 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 9304 | L: netdev@vger.kernel.org |
d0374f4f PK |
9305 | W: http://www.linux-usb.org/usbnet |
9306 | S: Maintained | |
679655da | 9307 | F: drivers/net/usb/dm9601.c |
d0374f4f | 9308 | |
cc2020e6 | 9309 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 9310 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
9311 | L: rio500-users@lists.sourceforge.net |
9312 | W: http://rio500.sourceforge.net | |
9313 | S: Maintained | |
679655da | 9314 | F: drivers/usb/misc/rio500* |
cc2020e6 | 9315 | |
1da177e4 | 9316 | USB EHCI DRIVER |
578333ab | 9317 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9318 | L: linux-usb@vger.kernel.org |
578333ab | 9319 | S: Maintained |
679655da JP |
9320 | F: Documentation/usb/ehci.txt |
9321 | F: drivers/usb/host/ehci* | |
1da177e4 | 9322 | |
69ae9e3e | 9323 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 9324 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 9325 | L: linux-usb@vger.kernel.org |
69ae9e3e | 9326 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
9327 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
9328 | S: Maintained | |
679655da JP |
9329 | F: drivers/usb/gadget/ |
9330 | F: include/linux/usb/gadget* | |
69ae9e3e | 9331 | |
2dea64b4 | 9332 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 9333 | M: Jiri Kosina <jkosina@suse.cz> |
795fb7e7 | 9334 | L: linux-usb@vger.kernel.org |
54e5881d | 9335 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 9336 | S: Maintained |
c2f01971 | 9337 | F: Documentation/hid/hiddev.txt |
679655da | 9338 | F: drivers/hid/usbhid/ |
1da177e4 | 9339 | |
857aab34 | 9340 | USB/IP DRIVERS |
857aab34 | 9341 | L: linux-usb@vger.kernel.org |
3ff4afe8 | 9342 | S: Orphan |
857aab34 | 9343 | F: drivers/staging/usbip/ |
9344 | ||
959eea21 | 9345 | USB ISP116X DRIVER |
8b58be88 | 9346 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 9347 | L: linux-usb@vger.kernel.org |
959eea21 | 9348 | S: Maintained |
679655da JP |
9349 | F: drivers/usb/host/isp116x* |
9350 | F: include/linux/usb/isp116x.h | |
959eea21 | 9351 | |
1da177e4 | 9352 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 9353 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 9354 | L: linux-usb@vger.kernel.org |
1da177e4 | 9355 | S: Maintained |
679655da | 9356 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
9357 | |
9358 | USB MASS STORAGE DRIVER | |
8b58be88 | 9359 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 9360 | L: linux-usb@vger.kernel.org |
8836aeb8 | 9361 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
9362 | S: Maintained |
9363 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 9364 | F: drivers/usb/storage/ |
1da177e4 | 9365 | |
af39917d CL |
9366 | USB MIDI DRIVER |
9367 | M: Clemens Ladisch <clemens@ladisch.de> | |
9368 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
9369 | T: git git://git.alsa-project.org/alsa-kernel.git | |
9370 | S: Maintained | |
9371 | F: sound/usb/midi.* | |
9372 | ||
444ce9d4 JP |
9373 | USB NETWORKING DRIVERS |
9374 | L: linux-usb@vger.kernel.org | |
9375 | S: Odd Fixes | |
9376 | F: drivers/net/usb/ | |
9377 | ||
1da177e4 | 9378 | USB OHCI DRIVER |
578333ab | 9379 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9380 | L: linux-usb@vger.kernel.org |
578333ab | 9381 | S: Maintained |
679655da JP |
9382 | F: Documentation/usb/ohci.txt |
9383 | F: drivers/usb/host/ohci* | |
1da177e4 | 9384 | |
ba460e48 | 9385 | USB OPTION-CARD DRIVER |
8b58be88 | 9386 | M: Matthias Urlichs <smurf@smurf.noris.de> |
795fb7e7 | 9387 | L: linux-usb@vger.kernel.org |
ba460e48 | 9388 | S: Maintained |
679655da | 9389 | F: drivers/usb/serial/option.c |
ba460e48 | 9390 | |
1da177e4 | 9391 | USB PEGASUS DRIVER |
a16b945c | 9392 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 9393 | L: linux-usb@vger.kernel.org |
043600a6 | 9394 | L: netdev@vger.kernel.org |
052e3128 PM |
9395 | T: git git://github.com/petkan/pegasus.git |
9396 | W: https://github.com/petkan/pegasus | |
1da177e4 | 9397 | S: Maintained |
679655da | 9398 | F: drivers/net/usb/pegasus.* |
1da177e4 | 9399 | |
d3ad558f FB |
9400 | USB PHY LAYER |
9401 | M: Felipe Balbi <balbi@ti.com> | |
9402 | L: linux-usb@vger.kernel.org | |
9403 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
9404 | S: Maintained | |
9405 | F: drivers/usb/phy/ | |
d3ad558f | 9406 | |
73e4fb3f | 9407 | USB PRINTER DRIVER (usblp) |
8b58be88 | 9408 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 9409 | L: linux-usb@vger.kernel.org |
73e4fb3f | 9410 | S: Supported |
679655da | 9411 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
9412 | |
9413 | USB RTL8150 DRIVER | |
a16b945c | 9414 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 9415 | L: linux-usb@vger.kernel.org |
043600a6 | 9416 | L: netdev@vger.kernel.org |
052e3128 PM |
9417 | T: git git://github.com/petkan/rtl8150.git |
9418 | W: https://github.com/petkan/rtl8150 | |
1da177e4 | 9419 | S: Maintained |
679655da | 9420 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 9421 | |
f896b796 GK |
9422 | USB SERIAL SUBSYSTEM |
9423 | M: Johan Hovold <jhovold@gmail.com> | |
795fb7e7 | 9424 | L: linux-usb@vger.kernel.org |
4e68852d | 9425 | S: Maintained |
679655da | 9426 | F: Documentation/usb/usb-serial.txt |
f896b796 | 9427 | F: drivers/usb/serial/ |
679655da | 9428 | F: include/linux/usb/serial.h |
1da177e4 | 9429 | |
b3f0db1c SG |
9430 | USB SMSC75XX ETHERNET DRIVER |
9431 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
9432 | L: netdev@vger.kernel.org | |
9433 | S: Maintained | |
9434 | F: drivers/net/usb/smsc75xx.* | |
9435 | ||
2f7ca802 | 9436 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 9437 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 9438 | L: netdev@vger.kernel.org |
90b24cfb | 9439 | S: Maintained |
679655da | 9440 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 9441 | |
f423b9a8 | 9442 | USB SN9C1xx DRIVER |
8b58be88 | 9443 | M: Luca Risolia <luca.risolia@studio.unibo.it> |
795fb7e7 | 9444 | L: linux-usb@vger.kernel.org |
661263b5 | 9445 | L: linux-media@vger.kernel.org |
275ffde4 | 9446 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
9447 | W: http://www.linux-projects.org |
9448 | S: Maintained | |
b8da9d3a | 9449 | F: drivers/staging/media/sn9c102/ |
1da177e4 LT |
9450 | |
9451 | USB SUBSYSTEM | |
879a5a00 | 9452 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 9453 | L: linux-usb@vger.kernel.org |
1da177e4 | 9454 | W: http://www.linux-usb.org |
08deed1e | 9455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 9456 | S: Supported |
679655da | 9457 | F: Documentation/usb/ |
679655da JP |
9458 | F: drivers/usb/ |
9459 | F: include/linux/usb.h | |
9460 | F: include/linux/usb/ | |
1da177e4 LT |
9461 | |
9462 | USB UHCI DRIVER | |
8b58be88 | 9463 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 9464 | L: linux-usb@vger.kernel.org |
1da177e4 | 9465 | S: Maintained |
679655da | 9466 | F: drivers/usb/host/uhci* |
1da177e4 | 9467 | |
69ae9e3e | 9468 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 9469 | M: Oliver Neukum <oneukum@suse.de> |
043600a6 | 9470 | L: netdev@vger.kernel.org |
69ae9e3e | 9471 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 9472 | S: Maintained |
679655da JP |
9473 | F: drivers/net/usb/usbnet.c |
9474 | F: include/linux/usb/usbnet.h | |
1da177e4 | 9475 | |
c0efd232 | 9476 | USB VIDEO CLASS |
c53ac071 | 9477 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 9478 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 9479 | L: linux-media@vger.kernel.org |
275ffde4 | 9480 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 9481 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 9482 | S: Maintained |
0c0d06ca | 9483 | F: drivers/media/usb/uvc/ |
6c0f0359 | 9484 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 9485 | |
b60b9c45 HV |
9486 | USB VISION DRIVER |
9487 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9488 | L: linux-media@vger.kernel.org | |
9489 | T: git git://linuxtv.org/media_tree.git | |
9490 | W: http://linuxtv.org | |
9491 | S: Odd Fixes | |
9492 | F: drivers/media/usb/usbvision/ | |
9493 | ||
8282da47 LP |
9494 | USB WEBCAM GADGET |
9495 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
9496 | L: linux-usb@vger.kernel.org | |
9497 | S: Maintained | |
9498 | F: drivers/usb/gadget/*uvc*.c | |
9499 | F: drivers/usb/gadget/webcam.c | |
9500 | ||
bf164cc0 | 9501 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 9502 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
9503 | L: linux-wireless@vger.kernel.org |
9504 | S: Maintained | |
679655da | 9505 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 9506 | |
eb6bab13 | 9507 | USB XHCI DRIVER |
03d85053 | 9508 | M: Mathias Nyman <mathias.nyman@intel.com> |
eb6bab13 SS |
9509 | L: linux-usb@vger.kernel.org |
9510 | S: Supported | |
36d0344c SS |
9511 | F: drivers/usb/host/xhci* |
9512 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 9513 | |
1da177e4 | 9514 | USB ZD1201 DRIVER |
4086b9ca | 9515 | L: linux-wireless@vger.kernel.org |
1da177e4 | 9516 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 9517 | S: Orphan |
679655da | 9518 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 9519 | |
b7eee616 | 9520 | USB ZR364XX DRIVER |
8b58be88 | 9521 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 9522 | L: linux-usb@vger.kernel.org |
661263b5 | 9523 | L: linux-media@vger.kernel.org |
275ffde4 | 9524 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
9525 | W: http://royale.zerezo.com/zr364xx/ |
9526 | S: Maintained | |
679655da | 9527 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 9528 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 9529 | |
e7839f25 | 9530 | USER-MODE LINUX (UML) |
8b58be88 | 9531 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 9532 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
9533 | L: user-mode-linux-devel@lists.sourceforge.net |
9534 | L: user-mode-linux-user@lists.sourceforge.net | |
9535 | W: http://user-mode-linux.sourceforge.net | |
9536 | S: Maintained | |
61516587 | 9537 | F: Documentation/virtual/uml/ |
679655da | 9538 | F: arch/um/ |
b070989a | 9539 | F: arch/x86/um/ |
679655da JP |
9540 | F: fs/hostfs/ |
9541 | F: fs/hppfs/ | |
b7eee616 | 9542 | |
e5f114e9 | 9543 | USERSPACE I/O (UIO) |
6a534c9d | 9544 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 9545 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 9546 | S: Maintained |
679655da JP |
9547 | F: Documentation/DocBook/uio-howto.tmpl |
9548 | F: drivers/uio/ | |
9549 | F: include/linux/uio*.h | |
e5f114e9 | 9550 | |
256cccbe | 9551 | UTIL-LINUX PACKAGE |
8b58be88 | 9552 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
9553 | L: util-linux@vger.kernel.org |
9554 | W: http://en.wikipedia.org/wiki/Util-linux | |
9555 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9556 | S: Maintained |
9557 | ||
c1fd1c07 | 9558 | UVESAFB DRIVER |
8b58be88 | 9559 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 9560 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
9561 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9562 | S: Maintained | |
679655da JP |
9563 | F: Documentation/fb/uvesafb.txt |
9564 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9565 | |
4480f15b | 9566 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9567 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 9568 | S: Maintained |
679655da JP |
9569 | F: Documentation/filesystems/vfat.txt |
9570 | F: fs/fat/ | |
1da177e4 | 9571 | |
cba3345c AW |
9572 | VFIO DRIVER |
9573 | M: Alex Williamson <alex.williamson@redhat.com> | |
9574 | L: kvm@vger.kernel.org | |
9575 | S: Maintained | |
9576 | F: Documentation/vfio.txt | |
9577 | F: drivers/vfio/ | |
9578 | F: include/linux/vfio.h | |
c117ab84 | 9579 | F: include/uapi/linux/vfio.h |
cba3345c | 9580 | |
9e6f3438 PO |
9581 | VIDEOBUF2 FRAMEWORK |
9582 | M: Pawel Osciak <pawel@osciak.com> | |
9583 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 9584 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
9585 | L: linux-media@vger.kernel.org |
9586 | S: Maintained | |
90d72ac6 | 9587 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9588 | F: include/media/videobuf2-* |
9589 | ||
9a82446b AS |
9590 | VIRTIO CONSOLE DRIVER |
9591 | M: Amit Shah <amit.shah@redhat.com> | |
9592 | L: virtualization@lists.linux-foundation.org | |
9593 | S: Maintained | |
9594 | F: drivers/char/virtio_console.c | |
9595 | F: include/linux/virtio_console.h | |
c117ab84 | 9596 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9597 | |
2426ec8f MT |
9598 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9599 | M: Rusty Russell <rusty@rustcorp.com.au> | |
9600 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9601 | L: virtualization@lists.linux-foundation.org | |
9602 | S: Maintained | |
9603 | F: drivers/virtio/ | |
c893c8d7 | 9604 | F: tools/virtio/ |
2426ec8f MT |
9605 | F: drivers/net/virtio_net.c |
9606 | F: drivers/block/virtio_blk.c | |
9607 | F: include/linux/virtio_*.h | |
916cdabc | 9608 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9609 | |
3a4d5c94 MT |
9610 | VIRTIO HOST (VHOST) |
9611 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9612 | L: kvm@vger.kernel.org | |
c996d8b9 | 9613 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
9614 | L: netdev@vger.kernel.org |
9615 | S: Maintained | |
9616 | F: drivers/vhost/ | |
c117ab84 | 9617 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9618 | |
1da177e4 | 9619 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9620 | M: Roger Luethi <rl@hellgate.ch> |
1da177e4 | 9621 | S: Maintained |
f2148a47 | 9622 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9623 | |
f0bf7f61 | 9624 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9625 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 9626 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
9627 | S: Maintained |
9628 | F: drivers/mmc/host/via-sdmmc.c | |
9629 | ||
69e4a7c2 | 9630 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9631 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 9632 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 9633 | S: Maintained |
c7babebd FTS |
9634 | F: include/linux/via-core.h |
9635 | F: include/linux/via-gpio.h | |
9636 | F: include/linux/via_i2c.h | |
679655da | 9637 | F: drivers/video/via/ |
69e4a7c2 | 9638 | |
01f20734 | 9639 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9640 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
9641 | L: netdev@vger.kernel.org |
9642 | S: Maintained | |
f2148a47 | 9643 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9644 | |
0b7bc1fa HV |
9645 | VIVI VIRTUAL VIDEO DRIVER |
9646 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9647 | L: linux-media@vger.kernel.org | |
9648 | T: git git://linuxtv.org/media_tree.git | |
9649 | W: http://linuxtv.org | |
9650 | S: Maintained | |
9651 | F: drivers/media/platform/vivi* | |
9652 | ||
be7f8273 | 9653 | VLAN (802.1Q) |
8b58be88 | 9654 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
9655 | L: netdev@vger.kernel.org |
9656 | S: Maintained | |
679655da JP |
9657 | F: drivers/net/macvlan.c |
9658 | F: include/linux/if_*vlan.h | |
9659 | F: net/8021q/ | |
be7f8273 | 9660 | |
55e331cf | 9661 | VLYNQ BUS |
8b58be88 | 9662 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 9663 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
9664 | S: Maintained |
9665 | F: drivers/vlynq/vlynq.c | |
9666 | F: include/linux/vlynq.h | |
9667 | ||
390beae4 MW |
9668 | VME SUBSYSTEM |
9669 | M: Martyn Welch <martyn.welch@ge.com> | |
1bd289d1 | 9670 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
9671 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
9672 | L: devel@driverdev.osuosl.org | |
9673 | S: Maintained | |
9674 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9675 | F: Documentation/vme_api.txt | |
9676 | F: drivers/staging/vme/ | |
9677 | F: drivers/vme/ | |
9678 | F: include/linux/vme* | |
9679 | ||
4488e09b AK |
9680 | VMWARE HYPERVISOR INTERFACE |
9681 | M: Alok Kataria <akataria@vmware.com> | |
9682 | L: virtualization@lists.linux-foundation.org | |
9683 | S: Supported | |
9684 | F: arch/x86/kernel/cpu/vmware.c | |
9685 | ||
d1a890fa | 9686 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9687 | M: Shreyas Bhatewara <sbhatewara@vmware.com> |
9688 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
9689 | L: netdev@vger.kernel.org | |
9690 | S: Maintained | |
9691 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9692 | |
851b1642 | 9693 | VMware PVSCSI driver |
f2d7e40e | 9694 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
9695 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
9696 | L: linux-scsi@vger.kernel.org | |
9697 | S: Maintained | |
9698 | F: drivers/scsi/vmw_pvscsi.c | |
9699 | F: drivers/scsi/vmw_pvscsi.h | |
9700 | ||
e53e86c7 | 9701 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9702 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 9703 | M: Mark Brown <broonie@kernel.org> |
e53e86c7 | 9704 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9705 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9706 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9707 | S: Supported |
679655da JP |
9708 | F: drivers/regulator/ |
9709 | F: include/linux/regulator/ | |
e53e86c7 | 9710 | |
ab41319e | 9711 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9712 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
9713 | L: lm-sensors@lm-sensors.org |
9714 | S: Maintained | |
679655da JP |
9715 | F: Documentation/hwmon/vt1211 |
9716 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9717 | |
1de9e371 | 9718 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9719 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
9720 | L: lm-sensors@lm-sensors.org |
9721 | S: Maintained | |
679655da | 9722 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9723 | |
88095e7b TO |
9724 | VUB300 USB to SDIO/SD/MMC bridge chip |
9725 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
9726 | L: linux-mmc@vger.kernel.org | |
9727 | L: linux-usb@vger.kernel.org | |
9728 | S: Supported | |
9729 | F: drivers/mmc/host/vub300.c | |
9730 | ||
1da177e4 | 9731 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9732 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 9733 | S: Maintained |
679655da JP |
9734 | F: Documentation/w1/ |
9735 | F: drivers/w1/ | |
1da177e4 | 9736 | |
13927079 | 9737 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9738 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 9739 | L: lm-sensors@lm-sensors.org |
25845c22 | 9740 | S: Maintained |
679655da JP |
9741 | F: Documentation/hwmon/w83791d |
9742 | F: drivers/hwmon/w83791d.c | |
13927079 | 9743 | |
61db011d | 9744 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9745 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
9746 | L: lm-sensors@lm-sensors.org |
9747 | S: Maintained | |
679655da JP |
9748 | F: Documentation/hwmon/w83793 |
9749 | F: drivers/hwmon/w83793.c | |
61db011d | 9750 | |
e3760b43 | 9751 | W83795 HARDWARE MONITORING DRIVER |
7c81c60f | 9752 | M: Jean Delvare <jdelvare@suse.de> |
e3760b43 JD |
9753 | L: lm-sensors@lm-sensors.org |
9754 | S: Maintained | |
9755 | F: drivers/hwmon/w83795.c | |
9756 | ||
1da177e4 | 9757 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9758 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 9759 | S: Maintained |
679655da | 9760 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9761 | |
3527761c | 9762 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9763 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
9764 | L: linux-watchdog@vger.kernel.org |
9765 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9766 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9767 | S: Maintained |
679655da JP |
9768 | F: Documentation/watchdog/ |
9769 | F: drivers/watchdog/ | |
9770 | F: include/linux/watchdog.h | |
c117ab84 | 9771 | F: include/uapi/linux/watchdog.h |
3527761c | 9772 | |
1da177e4 | 9773 | WD7000 SCSI DRIVER |
8b58be88 | 9774 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
9775 | L: linux-scsi@vger.kernel.org |
9776 | S: Maintained | |
679655da | 9777 | F: drivers/scsi/wd7000.c |
1da177e4 | 9778 | |
b22e00f3 DH |
9779 | WIIMOTE HID DRIVER |
9780 | M: David Herrmann <dh.herrmann@googlemail.com> | |
9781 | L: linux-input@vger.kernel.org | |
9782 | S: Maintained | |
9783 | F: drivers/hid/hid-wiimote* | |
9784 | ||
e258b80e | 9785 | WINBOND CIR DRIVER |
364e9e18 | 9786 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 9787 | S: Maintained |
116ab806 | 9788 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9789 | |
8a70da82 | 9790 | WIMAX STACK |
8b58be88 | 9791 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 | 9792 | M: linux-wimax@intel.com |
63fae219 | 9793 | L: wimax@linuxwimax.org (subscribers-only) |
8a70da82 IPG |
9794 | S: Supported |
9795 | W: http://linuxwimax.org | |
315987dc | 9796 | F: Documentation/wimax/README.wimax |
315987dc JP |
9797 | F: include/linux/wimax/debug.h |
9798 | F: include/net/wimax.h | |
c117ab84 | 9799 | F: include/uapi/linux/wimax.h |
315987dc | 9800 | F: net/wimax/ |
8a70da82 | 9801 | |
5fc14680 | 9802 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9803 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 9804 | S: Maintained |
679655da | 9805 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9806 | |
1da177e4 | 9807 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9808 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 9809 | L: linux-wireless@vger.kernel.org |
926554c4 | 9810 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9811 | S: Maintained |
679655da | 9812 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9813 | |
febf1dff | 9814 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9815 | M: Mark Brown <broonie@kernel.org> |
8b58be88 | 9816 | M: Liam Girdwood <lrg@slimlogic.co.uk> |
febf1dff MB |
9817 | L: linux-input@vger.kernel.org |
9818 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9819 | W: http://opensource.wolfsonmicro.com/node/7 | |
9820 | S: Supported | |
679655da JP |
9821 | F: drivers/input/touchscreen/*wm97* |
9822 | F: include/linux/wm97xx.h | |
febf1dff | 9823 | |
055bcbcb | 9824 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9825 | L: patches@opensource.wolfsonmicro.com |
cf8eda3e | 9826 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9827 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9828 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9829 | S: Supported |
3768f0b1 | 9830 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9831 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9832 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9833 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9834 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9835 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9836 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9837 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9838 | F: drivers/input/misc/wm831x-on.c |
9839 | F: drivers/input/touchscreen/wm831x-ts.c | |
9840 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9841 | F: drivers/mfd/arizona* |
9842 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9843 | F: drivers/power/wm83*.c |
9844 | F: drivers/rtc/rtc-wm83*.c | |
9845 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9846 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9847 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9848 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9849 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9850 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9851 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9852 | F: include/linux/wm97xx.h |
055bcbcb | 9853 | F: include/sound/wm????.h |
9c309598 | 9854 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9855 | F: sound/soc/codecs/wm* |
b75ea16a | 9856 | |
3e6cd7a4 TH |
9857 | WORKQUEUE |
9858 | M: Tejun Heo <tj@kernel.org> | |
3e6cd7a4 TH |
9859 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9860 | S: Maintained | |
9861 | F: include/linux/workqueue.h | |
9862 | F: kernel/workqueue.c | |
9863 | F: Documentation/workqueue.txt | |
9864 | ||
1da177e4 | 9865 | X.25 NETWORK LAYER |
8bf28059 | 9866 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 9867 | L: linux-x25@vger.kernel.org |
8bf28059 | 9868 | S: Odd Fixes |
679655da JP |
9869 | F: Documentation/networking/x25* |
9870 | F: include/net/x25* | |
9871 | F: net/x25/ | |
1da177e4 | 9872 | |
e2d1d6c0 | 9873 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9874 | M: Thomas Gleixner <tglx@linutronix.de> |
9875 | M: Ingo Molnar <mingo@redhat.com> | |
9876 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 9877 | M: x86@kernel.org |
981c3a4f | 9878 | L: linux-kernel@vger.kernel.org |
75fc2d37 | 9879 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9880 | S: Maintained |
679655da JP |
9881 | F: Documentation/x86/ |
9882 | F: arch/x86/ | |
e2d1d6c0 | 9883 | |
d0944853 | 9884 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9885 | M: Matthew Garrett <matthew.garrett@nebula.com> |
d0944853 | 9886 | L: platform-driver-x86@vger.kernel.org |
28b8e8d4 | 9887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9888 | S: Maintained |
14430813 | 9889 | F: drivers/platform/x86/ |
d0944853 | 9890 | |
c1f5c54b IM |
9891 | X86 MCE INFRASTRUCTURE |
9892 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 9893 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
9894 | L: linux-edac@vger.kernel.org |
9895 | S: Maintained | |
9896 | F: arch/x86/kernel/cpu/mcheck/* | |
9897 | ||
d6fad502 | 9898 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9899 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d6fad502 MCC |
9900 | L: linux-media@vger.kernel.org |
9901 | W: http://linuxtv.org | |
9902 | T: git git://linuxtv.org/media_tree.git | |
9903 | S: Maintained | |
9904 | F: drivers/media/tuners/tuner-xc2028.* | |
9905 | ||
c4468085 | 9906 | XEN HYPERVISOR INTERFACE |
c4468085 | 9907 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
9908 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
9909 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 9910 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
ea70ba3a | 9911 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
c4468085 IC |
9912 | S: Supported |
9913 | F: arch/x86/xen/ | |
9914 | F: drivers/*/xen-*front.c | |
9915 | F: drivers/xen/ | |
9916 | F: arch/x86/include/asm/xen/ | |
9917 | F: include/xen/ | |
c117ab84 | 9918 | F: include/uapi/xen/ |
c4468085 | 9919 | |
77bfb479 SS |
9920 | XEN HYPERVISOR ARM |
9921 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 9922 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
9923 | S: Supported |
9924 | F: arch/arm/xen/ | |
9925 | F: arch/arm/include/asm/xen/ | |
9926 | ||
b475e83f SS |
9927 | XEN HYPERVISOR ARM64 |
9928 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 9929 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
9930 | S: Supported |
9931 | F: arch/arm64/xen/ | |
9932 | F: arch/arm64/include/asm/xen/ | |
9933 | ||
9b57e1a7 IC |
9934 | XEN NETWORK BACKEND DRIVER |
9935 | M: Ian Campbell <ian.campbell@citrix.com> | |
8386040b | 9936 | M: Wei Liu <wei.liu2@citrix.com> |
11dbb52b | 9937 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
9938 | L: netdev@vger.kernel.org |
9939 | S: Supported | |
9940 | F: drivers/net/xen-netback/* | |
9941 | ||
c5f8e29d KRW |
9942 | XEN PCI SUBSYSTEM |
9943 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 9944 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
9945 | S: Supported |
9946 | F: arch/x86/pci/*xen* | |
9947 | F: drivers/pci/*xen* | |
9948 | ||
9949 | XEN SWIOTLB SUBSYSTEM | |
9950 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 9951 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
9952 | S: Supported |
9953 | F: arch/x86/xen/*swiotlb* | |
9954 | F: drivers/xen/*swiotlb* | |
9955 | ||
1da177e4 LT |
9956 | XFS FILESYSTEM |
9957 | P: Silicon Graphics Inc | |
809625ca | 9958 | M: Dave Chinner <david@fromorbit.com> |
18caa67a | 9959 | M: xfs@oss.sgi.com |
d7ede1aa | 9960 | L: xfs@oss.sgi.com |
1da177e4 | 9961 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9962 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9963 | S: Supported |
679655da JP |
9964 | F: Documentation/filesystems/xfs.txt |
9965 | F: fs/xfs/ | |
1da177e4 | 9966 | |
8a3b7a25 | 9967 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9968 | M: Anirudha Sarangi <anirudh@xilinx.com> |
9969 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 9970 | S: Maintained |
9971 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9972 | ||
c9d3d8ec | 9973 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9974 | S: Orphan |
679655da | 9975 | F: drivers/block/xsysace.c |
c9d3d8ec | 9976 | |
238b8721 | 9977 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9978 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
9979 | L: linux-serial@vger.kernel.org |
9980 | S: Maintained | |
df621252 | 9981 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9982 | |
f620e4b8 MF |
9983 | XTENSA XTFPGA PLATFORM SUPPORT |
9984 | M: Max Filippov <jcmvbkbc@gmail.com> | |
9985 | L: linux-xtensa@linux-xtensa.org | |
9986 | S: Maintained | |
9987 | F: drivers/spi/spi-xtensa-xtfpga.c | |
9988 | ||
1da177e4 | 9989 | YAM DRIVER FOR AX.25 |
8b58be88 | 9990 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
9991 | L: linux-hams@vger.kernel.org |
9992 | S: Maintained | |
679655da JP |
9993 | F: drivers/net/hamradio/yam* |
9994 | F: include/linux/yam.h | |
1da177e4 | 9995 | |
af64a5eb | 9996 | YEALINK PHONE DRIVER |
8b58be88 | 9997 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb H |
9998 | L: usbb2k-api-dev@nongnu.org |
9999 | S: Maintained | |
679655da JP |
10000 | F: Documentation/input/yealink.txt |
10001 | F: drivers/input/misc/yealink.* | |
af64a5eb | 10002 | |
1da177e4 | 10003 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 10004 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
10005 | W: http://yaina.de/jreuter/ |
10006 | W: http://www.qsl.net/dl1bke/ | |
10007 | L: linux-hams@vger.kernel.org | |
10008 | S: Maintained | |
679655da JP |
10009 | F: Documentation/networking/z8530drv.txt |
10010 | F: drivers/net/hamradio/*scc.c | |
10011 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 10012 | |
0cf31ec1 | 10013 | ZBUD COMPRESSED PAGE ALLOCATOR |
0e3b7e54 | 10014 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
10015 | L: linux-mm@kvack.org |
10016 | S: Maintained | |
10017 | F: mm/zbud.c | |
10018 | F: include/linux/zbud.h | |
10019 | ||
7c0c3afb | 10020 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
10021 | M: Daniel Drake <dsd@gentoo.org> |
10022 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 10023 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 10024 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
10025 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
10026 | S: Maintained | |
679655da | 10027 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 10028 | |
1da177e4 | 10029 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 10030 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 10031 | L: linux-media@vger.kernel.org |
1da177e4 | 10032 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
cea8321c | 10033 | T: hg http://linuxtv.org/hg/v4l-dvb |
f63145e2 | 10034 | S: Odd Fixes |
90d72ac6 | 10035 | F: drivers/media/pci/zoran/ |
1da177e4 | 10036 | |
6920f2cc MK |
10037 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
10038 | M: Minchan Kim <minchan@kernel.org> | |
10039 | M: Nitin Gupta <ngupta@vflare.org> | |
10040 | L: linux-kernel@vger.kernel.org | |
10041 | S: Maintained | |
10042 | F: drivers/block/zram/ | |
10043 | F: Documentation/blockdev/zram.txt | |
10044 | ||
8b4a4080 | 10045 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 10046 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 10047 | S: Maintained |
df621252 | 10048 | F: drivers/tty/serial/zs.* |
8b4a4080 | 10049 | |
eae70d06 MK |
10050 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
10051 | M: Minchan Kim <minchan@kernel.org> | |
10052 | M: Nitin Gupta <ngupta@vflare.org> | |
10053 | L: linux-mm@kvack.org | |
10054 | S: Maintained | |
10055 | F: mm/zsmalloc.c | |
10056 | F: include/linux/zsmalloc.h | |
10057 | ||
0cf31ec1 | 10058 | ZSWAP COMPRESSED SWAP CACHING |
0e3b7e54 | 10059 | M: Seth Jennings <sjennings@variantweb.net> |
0cf31ec1 SJ |
10060 | L: linux-mm@kvack.org |
10061 | S: Maintained | |
10062 | F: mm/zswap.c | |
10063 | ||
1da177e4 | 10064 | THE REST |
8b58be88 | 10065 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 10066 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 10067 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 10068 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 10069 | S: Buried alive in reporters |
34d03cc1 JP |
10070 | F: * |
10071 | F: */ |