]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | |
cc8f9b99 | 2 | |
1da177e4 LT |
3 | List of maintainers and how to submit kernel changes |
4 | ||
5 | Please try to follow the guidelines below. This will make things | |
6 | easier on the maintainers. Not all of these guidelines matter for every | |
7 | trivial patch so apply some common sense. | |
8 | ||
9 | 1. Always _test_ your changes, however small, on at least 4 or | |
10 | 5 people, preferably many more. | |
11 | ||
12 | 2. Try to release a few ALPHA test versions to the net. Announce | |
13 | them onto the kernel channel and await results. This is especially | |
14 | important for device drivers, because often that's the only way | |
15 | you will find things like the fact version 3 firmware needs | |
16 | a magic fix you didn't know about, or some clown changed the | |
17 | chips on a board and not its name. (Don't laugh! Look at the | |
18 | SMC etherpower for that.) | |
19 | ||
20 | 3. Make sure your changes compile correctly in multiple | |
21 | configurations. In particular check that changes work both as a | |
22 | module and built into the kernel. | |
23 | ||
24 | 4. When you are happy with a change make it generally available for | |
25 | testing and await feedback. | |
26 | ||
27 | 5. Make a patch available to the relevant maintainer in the list. Use | |
28 | 'diff -u' to make the patch easy to merge. Be prepared to get your | |
29 | changes sent back with seemingly silly requests about formatting | |
30 | and variable names. These aren't as silly as they seem. One | |
31 | job the maintainers (and especially Linus) do is to keep things | |
32 | looking the same. Sometimes this means that the clever hack in | |
33 | your driver to get around a problem actually needs to become a | |
0a920b5b AW |
34 | generalized kernel feature ready for next time. |
35 | ||
36 | PLEASE check your patch with the automated style checker | |
6f9e2456 | 37 | (scripts/checkpatch.pl) to catch trivial style violations. |
0a920b5b | 38 | See Documentation/CodingStyle for guidance here. |
1da177e4 | 39 | |
f70f873b JP |
40 | PLEASE CC: the maintainers and mailing lists that are generated |
41 | by scripts/get_maintainer.pl. The results returned by the | |
42 | script will be best if you have git installed and are making | |
43 | your changes in a branch derived from Linus' latest git tree. | |
44 | See Documentation/SubmittingPatches for details. | |
45 | ||
1da177e4 LT |
46 | PLEASE try to include any credit lines you want added with the |
47 | patch. It avoids people being missed off by mistake and makes | |
48 | it easier to know who wants adding and who doesn't. | |
49 | ||
50 | PLEASE document known bugs. If it doesn't work for everything | |
51 | or does something very odd once a month document it. | |
52 | ||
c9ee133b | 53 | PLEASE remember that submissions must be made under the terms |
4500371e RD |
54 | of the OSDL certificate of contribution and should include a |
55 | Signed-off-by: line. The current version of this "Developer's | |
56 | Certificate of Origin" (DCO) is listed in the file | |
57 | Documentation/SubmittingPatches. | |
c9ee133b | 58 | |
1da177e4 LT |
59 | 6. Make sure you have the right to send any changes you make. If you |
60 | do changes at work you may find your employer owns the patch | |
61 | not you. | |
62 | ||
c9ee133b AC |
63 | 7. When sending security related changes or reports to a maintainer |
64 | please Cc: security@kernel.org, especially if the maintainer | |
65 | does not respond. | |
66 | ||
67 | 8. Happy hacking. | |
1da177e4 | 68 | |
c7c4fb18 JP |
69 | Descriptions of section entries: |
70 | ||
71 | P: Person (obsolete) | |
72 | M: Mail patches to: FullName <address@domain> | |
eafbaac3 PM |
73 | R: Designated reviewer: FullName <address@domain> |
74 | These reviewers should be CCed on patches. | |
c7c4fb18 JP |
75 | L: Mailing list that is relevant to this area |
76 | W: Web-page with status/info | |
8a6e2535 | 77 | Q: Patchwork web based patch tracking system site |
cea8321c JP |
78 | T: SCM tree type and location. |
79 | Type is one of: git, hg, quilt, stgit, topgit | |
c7c4fb18 JP |
80 | S: Status, one of the following: |
81 | Supported: Someone is actually paid to look after this. | |
82 | Maintained: Someone actually looks after it. | |
83 | Odd Fixes: It has a maintainer but they don't have time to do | |
84 | much other than throw the odd patch in. See below.. | |
85 | Orphan: No current maintainer [but maybe you could take the | |
86 | role as you write your new code]. | |
87 | Obsolete: Old code. Something tagged obsolete generally means | |
88 | it has been replaced by a better system and you | |
89 | should be using that. | |
90 | F: Files and directories with wildcard patterns. | |
91 | A trailing slash includes all files and subdirectory files. | |
92 | F: drivers/net/ all files in and below drivers/net | |
93 | F: drivers/net/* all files in drivers/net, but not below | |
94 | F: */net/* all files in "any top level directory"/net | |
95 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
96 | N: Files and directories with regex patterns. |
97 | N: [^a-z]tegra all files whose path contains the word tegra | |
98 | One pattern per line. Multiple N: lines acceptable. | |
6ab88e00 JP |
99 | scripts/get_maintainer.pl has different behavior for files that |
100 | match F: pattern and matches of N: patterns. By default, | |
101 | get_maintainer will not look at git log history when an F: pattern | |
102 | match occurs. When an N: match occurs, git log history is used | |
103 | to also notify the people that have git commit signatures. | |
c7c4fb18 JP |
104 | X: Files and directories that are NOT maintained, same rules as F: |
105 | Files exclusions are tested before file matches. | |
106 | Can be useful for excluding a specific subdirectory, for instance: | |
107 | F: net/ | |
108 | X: net/ipv6/ | |
109 | matches all files in and below net excluding net/ipv6/ | |
110 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 111 | patch or file. For instance: |
c7c4fb18 | 112 | K: of_get_profile |
bbbe96ed | 113 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 114 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
115 | matches patches or files that contain one or more of the words |
116 | printk, pr_info or pr_err | |
c7c4fb18 | 117 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
118 | |
119 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
120 | order. If you could add yourselves to it in alphabetical order that would be | |
121 | so much easier [Ed] | |
122 | ||
c7c4fb18 | 123 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 124 | |
c7c4fb18 | 125 | ----------------------------------- |
679655da | 126 | |
a6d89915 | 127 | 3C59X NETWORK DRIVER |
8b58be88 | 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
129 | L: netdev@vger.kernel.org |
130 | S: Maintained | |
679655da | 131 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 132 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 133 | |
1da177e4 | 134 | 3CR990 NETWORK DRIVER |
8b58be88 | 135 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 136 | L: netdev@vger.kernel.org |
1da177e4 | 137 | S: Maintained |
ca7a8e85 | 138 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 139 | |
c4de0ceb AR |
140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
141 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 142 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 143 | W: http://www.lsi.com |
1da177e4 | 144 | S: Supported |
c4de0ceb | 145 | F: drivers/scsi/3w-* |
1da177e4 LT |
146 | |
147 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
149 | L: linux-scsi@vger.kernel.org |
150 | S: Maintained | |
679655da | 151 | F: drivers/scsi/53c700* |
1da177e4 | 152 | |
68d96dcf AA |
153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
154 | M: Alexander Aring <alex.aring@gmail.com> | |
6970c34c | 155 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
68d96dcf | 156 | L: linux-bluetooth@vger.kernel.org |
ebef9c12 | 157 | L: linux-wpan@vger.kernel.org |
68d96dcf AA |
158 | S: Maintained |
159 | F: net/6lowpan/ | |
6304f8fc | 160 | F: include/net/6lowpan.h |
68d96dcf | 161 | |
1da177e4 | 162 | 6PACK NETWORK DRIVER FOR AX.25 |
8b58be88 | 163 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
164 | L: linux-hams@vger.kernel.org |
165 | S: Maintained | |
679655da | 166 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 167 | |
1da177e4 | 168 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 169 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
979b6c13 | 170 | L: netdev@vger.kernel.org |
1da177e4 | 171 | S: Maintained |
a8fe65b8 | 172 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
173 | |
174 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 175 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
176 | L: linux-serial@vger.kernel.org |
177 | W: http://serial.sourceforge.net | |
8ee16a1b | 178 | S: Maintained |
08deed1e | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 180 | F: drivers/tty/serial/8250* |
679655da | 181 | F: include/linux/serial_8250.h |
1da177e4 LT |
182 | |
183 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 184 | L: netdev@vger.kernel.org |
0cf445ce | 185 | S: Orphan / Obsolete |
644570b8 | 186 | F: drivers/net/ethernet/8390/ |
1da177e4 | 187 | |
67543e50 | 188 | 9P FILE SYSTEM |
8b58be88 JP |
189 | M: Eric Van Hensbergen <ericvh@gmail.com> |
190 | M: Ron Minnich <rminnich@sandia.gov> | |
191 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 192 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 193 | W: http://swik.net/v9fs |
8a6e2535 | 194 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 195 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 196 | S: Maintained |
679655da JP |
197 | F: Documentation/filesystems/9p.txt |
198 | F: fs/9p/ | |
2315cb14 RL |
199 | F: net/9p/ |
200 | F: include/net/9p/ | |
201 | F: include/uapi/linux/virtio_9p.h | |
202 | F: include/trace/events/9p.h | |
203 | ||
67543e50 | 204 | |
91952bc0 AP |
205 | A8293 MEDIA DRIVER |
206 | M: Antti Palosaari <crope@iki.fi> | |
207 | L: linux-media@vger.kernel.org | |
208 | W: http://linuxtv.org/ | |
209 | W: http://palosaari.fi/linux/ | |
210 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
211 | T: git git://linuxtv.org/anttip/media_tree.git | |
212 | S: Maintained | |
213 | F: drivers/media/dvb-frontends/a8293* | |
214 | ||
e2d1d6c0 | 215 | AACRAID SCSI RAID DRIVER |
8b58be88 | 216 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
217 | L: linux-scsi@vger.kernel.org |
218 | W: http://www.adaptec.com/ | |
1da177e4 | 219 | S: Supported |
679655da JP |
220 | F: Documentation/scsi/aacraid.txt |
221 | F: drivers/scsi/aacraid/ | |
1da177e4 | 222 | |
ea8f8fc8 JT |
223 | ABI/API |
224 | L: linux-api@vger.kernel.org | |
225 | F: Documentation/ABI/ | |
226 | F: include/linux/syscalls.h | |
227 | F: include/uapi/ | |
228 | F: kernel/sys_ni.c | |
229 | ||
249e3c85 | 230 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 231 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
232 | L: lm-sensors@lm-sensors.org |
233 | S: Maintained | |
679655da | 234 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 235 | |
249e3c85 | 236 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 237 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
238 | L: lm-sensors@lm-sensors.org |
239 | S: Maintained | |
679655da | 240 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 241 | |
1da177e4 | 242 | ACENIC DRIVER |
8b58be88 | 243 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
244 | L: linux-acenic@sunsite.dk |
245 | S: Maintained | |
531c4f89 | 246 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 247 | |
e86435eb | 248 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 249 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 250 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
251 | W: http://piie.net/?section=acerhdf |
252 | S: Maintained | |
253 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 254 | |
745a5d21 | 255 | ACER WMI LAPTOP EXTRAS |
182ae55c | 256 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 257 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 258 | S: Maintained |
679655da | 259 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 260 | |
1da177e4 | 261 | ACPI |
49db1903 | 262 | M: Rafael J. Wysocki <rjw@rjwysocki.net> |
7fb06082 | 263 | M: Len Brown <lenb@kernel.org> |
6968e50c | 264 | L: linux-acpi@vger.kernel.org |
360818b8 RW |
265 | W: https://01.org/linux-acpi |
266 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
8b59a454 | 268 | S: Supported |
679655da JP |
269 | F: drivers/acpi/ |
270 | F: drivers/pnp/pnpacpi/ | |
271 | F: include/linux/acpi.h | |
43368e74 | 272 | F: include/acpi/ |
3a75ef0c | 273 | F: Documentation/acpi/ |
89ca78a0 | 274 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
275 | F: drivers/pci/*acpi* |
276 | F: drivers/pci/*/*acpi* | |
277 | F: drivers/pci/*/*/*acpi* | |
3a75ef0c | 278 | F: tools/power/acpi/ |
8b59a454 | 279 | |
3774929d RW |
280 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
281 | M: Robert Moore <robert.moore@intel.com> | |
282 | M: Lv Zheng <lv.zheng@intel.com> | |
283 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> | |
284 | L: linux-acpi@vger.kernel.org | |
285 | L: devel@acpica.org | |
286 | W: https://acpica.org/ | |
287 | W: https://github.com/acpica/acpica/ | |
288 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ | |
289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm | |
290 | S: Supported | |
291 | F: drivers/acpi/acpica/ | |
292 | F: include/acpi/ | |
2754c447 | 293 | F: tools/power/acpi/ |
3774929d | 294 | |
8b59a454 | 295 | ACPI FAN DRIVER |
8b58be88 | 296 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 297 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 298 | W: https://01.org/linux-acpi |
8b59a454 | 299 | S: Supported |
679655da | 300 | F: drivers/acpi/fan.c |
1da177e4 | 301 | |
8b59a454 | 302 | ACPI THERMAL DRIVER |
8b58be88 | 303 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 304 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 305 | W: https://01.org/linux-acpi |
8b59a454 | 306 | S: Supported |
679655da | 307 | F: drivers/acpi/*thermal* |
998be20f | 308 | |
359acec8 | 309 | ACPI VIDEO DRIVER |
8b58be88 | 310 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 311 | L: linux-acpi@vger.kernel.org |
5ca92bd9 | 312 | W: https://01.org/linux-acpi |
8b59a454 | 313 | S: Supported |
679655da | 314 | F: drivers/acpi/video.c |
998be20f | 315 | |
bff431e4 | 316 | ACPI WMI DRIVER |
d0944853 | 317 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 318 | S: Orphan |
679655da | 319 | F: drivers/platform/x86/wmi.c |
bff431e4 | 320 | |
2f39d519 | 321 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 322 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
323 | W: http://wiki.parisc-linux.org/AD1889 |
324 | L: linux-parisc@vger.kernel.org | |
325 | S: Maintained | |
679655da | 326 | F: sound/pci/ad1889.* |
2f39d519 | 327 | |
527a1a83 MH |
328 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
329 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 330 | W: http://wiki.analog.com/AD5254 |
a4edbc10 | 331 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
332 | S: Supported |
333 | F: drivers/misc/ad525x_dpot.c | |
334 | ||
335 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
336 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 337 | W: http://wiki.analog.com/AD5398 |
a4edbc10 | 338 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
339 | S: Supported |
340 | F: drivers/regulator/ad5398.c | |
341 | ||
342 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
343 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 344 | W: http://wiki.analog.com/AD7142 |
a4edbc10 | 345 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
346 | S: Supported |
347 | F: drivers/input/misc/ad714x.c | |
348 | ||
349 | AD7877 TOUCHSCREEN DRIVER | |
350 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 351 | W: http://wiki.analog.com/AD7877 |
a4edbc10 | 352 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
353 | S: Supported |
354 | F: drivers/input/touchscreen/ad7877.c | |
355 | ||
356 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
357 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 358 | W: http://wiki.analog.com/AD7879 |
a4edbc10 | 359 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
360 | S: Supported |
361 | F: drivers/input/touchscreen/ad7879.c | |
362 | ||
1330b0dc JK |
363 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
364 | M: Jiri Kosina <jkosina@suse.cz> | |
365 | S: Maintained | |
366 | ||
1da177e4 | 367 | ADM1025 HARDWARE MONITOR DRIVER |
7c81c60f | 368 | M: Jean Delvare <jdelvare@suse.de> |
cc0b07ed | 369 | L: lm-sensors@lm-sensors.org |
1da177e4 | 370 | S: Maintained |
679655da JP |
371 | F: Documentation/hwmon/adm1025 |
372 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 373 | |
cae2caae | 374 | ADM1029 HARDWARE MONITOR DRIVER |
fce8ffa3 | 375 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
cae2caae CL |
376 | L: lm-sensors@lm-sensors.org |
377 | S: Maintained | |
679655da | 378 | F: drivers/hwmon/adm1029.c |
cae2caae | 379 | |
cc0b88cf | 380 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 381 | L: linux-wireless@vger.kernel.org |
491b26b4 | 382 | W: http://wireless.kernel.org/ |
e71bcbd0 | 383 | S: Orphan |
679655da | 384 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 385 | |
e8e31622 SA |
386 | ADP1653 FLASH CONTROLLER DRIVER |
387 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
388 | L: linux-media@vger.kernel.org | |
389 | S: Maintained | |
390 | F: drivers/media/i2c/adp1653.c | |
391 | F: include/media/adp1653.h | |
392 | ||
527a1a83 MH |
393 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
394 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 395 | W: http://wiki.analog.com/ADP5520 |
a4edbc10 | 396 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
397 | S: Supported |
398 | F: drivers/mfd/adp5520.c | |
399 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 400 | F: drivers/leds/leds-adp5520.c |
77278d50 | 401 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
402 | F: drivers/input/keyboard/adp5520-keys.c |
403 | ||
404 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
405 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 406 | W: http://wiki.analog.com/ADP5588 |
a4edbc10 | 407 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
408 | S: Supported |
409 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 410 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
411 | |
412 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
413 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 414 | W: http://wiki.analog.com/ADP8860 |
a4edbc10 | 415 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
416 | S: Supported |
417 | F: drivers/video/backlight/adp8860_bl.c | |
418 | ||
8c22a8f5 DE |
419 | ADS1015 HARDWARE MONITOR DRIVER |
420 | M: Dirk Eibach <eibach@gdsys.de> | |
421 | L: lm-sensors@lm-sensors.org | |
422 | S: Maintained | |
423 | F: Documentation/hwmon/ads1015 | |
424 | F: drivers/hwmon/ads1015.c | |
425 | F: include/linux/i2c/ads1015.h | |
426 | ||
1da177e4 | 427 | ADT746X FAN DRIVER |
8b58be88 | 428 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 429 | S: Maintained |
679655da | 430 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 431 | |
b058b859 | 432 | ADT7475 HARDWARE MONITOR DRIVER |
7c81c60f | 433 | M: Jean Delvare <jdelvare@suse.de> |
b058b859 JD |
434 | L: lm-sensors@lm-sensors.org |
435 | S: Maintained | |
436 | F: Documentation/hwmon/adt7475 | |
437 | F: drivers/hwmon/adt7475.c | |
438 | ||
527a1a83 MH |
439 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
440 | M: Michael Hennerich <michael.hennerich@analog.com> | |
a3f531ac | 441 | W: http://wiki.analog.com/ADXL345 |
a4edbc10 | 442 | W: http://ez.analog.com/community/linux-device-drivers |
527a1a83 MH |
443 | S: Supported |
444 | F: drivers/input/misc/adxl34x.c | |
445 | ||
8c6af9e1 | 446 | ADVANSYS SCSI DRIVER |
8b58be88 | 447 | M: Matthew Wilcox <matthew@wil.cx> |
8c6af9e1 MW |
448 | L: linux-scsi@vger.kernel.org |
449 | S: Maintained | |
679655da JP |
450 | F: Documentation/scsi/advansys.txt |
451 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 452 | |
1da177e4 | 453 | AEDSP16 DRIVER |
8b58be88 | 454 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 455 | S: Maintained |
679655da | 456 | F: sound/oss/aedsp16.c |
1da177e4 | 457 | |
91952bc0 AP |
458 | AF9013 MEDIA DRIVER |
459 | M: Antti Palosaari <crope@iki.fi> | |
460 | L: linux-media@vger.kernel.org | |
461 | W: http://linuxtv.org/ | |
462 | W: http://palosaari.fi/linux/ | |
463 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
464 | T: git git://linuxtv.org/anttip/media_tree.git | |
465 | S: Maintained | |
466 | F: drivers/media/dvb-frontends/af9013* | |
467 | ||
468 | AF9033 MEDIA DRIVER | |
469 | M: Antti Palosaari <crope@iki.fi> | |
470 | L: linux-media@vger.kernel.org | |
471 | W: http://linuxtv.org/ | |
472 | W: http://palosaari.fi/linux/ | |
473 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
474 | T: git git://linuxtv.org/anttip/media_tree.git | |
475 | S: Maintained | |
476 | F: drivers/media/dvb-frontends/af9033* | |
477 | ||
1da177e4 | 478 | AFFS FILE SYSTEM |
6cf515e1 GU |
479 | L: linux-fsdevel@vger.kernel.org |
480 | S: Orphan | |
679655da JP |
481 | F: Documentation/filesystems/affs.txt |
482 | F: fs/affs/ | |
1da177e4 | 483 | |
e2d1d6c0 | 484 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 485 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
486 | L: linux-afs@lists.infradead.org |
487 | S: Supported | |
679655da JP |
488 | F: fs/afs/ |
489 | F: include/net/af_rxrpc.h | |
490 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 491 | |
1da177e4 | 492 | AGPGART DRIVER |
8b58be88 | 493 | M: David Airlie <airlied@linux.ie> |
878eaf61 | 494 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
1da177e4 | 495 | S: Maintained |
679655da JP |
496 | F: drivers/char/agp/ |
497 | F: include/linux/agp* | |
c117ab84 | 498 | F: include/uapi/linux/agp* |
1da177e4 LT |
499 | |
500 | AHA152X SCSI DRIVER | |
8b58be88 | 501 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
502 | L: linux-scsi@vger.kernel.org |
503 | S: Maintained | |
679655da JP |
504 | F: drivers/scsi/aha152x* |
505 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 506 | |
64624d4f | 507 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 508 | M: Hannes Reinecke <hare@suse.de> |
64624d4f | 509 | L: linux-scsi@vger.kernel.org |
1da177e4 | 510 | S: Maintained |
679655da | 511 | F: drivers/scsi/aic7xxx/ |
1da177e4 | 512 | |
450500ad HV |
513 | AIMSLAB FM RADIO RECEIVER DRIVER |
514 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
515 | L: linux-media@vger.kernel.org | |
516 | T: git git://linuxtv.org/media_tree.git | |
517 | W: http://linuxtv.org | |
518 | S: Maintained | |
519 | F: drivers/media/radio/radio-aimslab* | |
520 | ||
e2d1d6c0 | 521 | AIO |
8b58be88 | 522 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
523 | L: linux-aio@kvack.org |
524 | S: Supported | |
679655da JP |
525 | F: fs/aio.c |
526 | F: include/linux/*aio*.h | |
e2d1d6c0 | 527 | |
469d4ec8 AP |
528 | AIRSPY MEDIA DRIVER |
529 | M: Antti Palosaari <crope@iki.fi> | |
530 | L: linux-media@vger.kernel.org | |
531 | W: http://linuxtv.org/ | |
532 | W: http://palosaari.fi/linux/ | |
533 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
534 | T: git git://linuxtv.org/anttip/media_tree.git | |
535 | S: Maintained | |
536 | F: drivers/media/usb/airspy/ | |
537 | ||
1da177e4 | 538 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 539 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 540 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
541 | W: http://www.linux-usb.org/SpeedTouch/ |
542 | S: Maintained | |
679655da JP |
543 | F: drivers/usb/atm/speedtch.c |
544 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 545 | |
272f133a | 546 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 547 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 548 | S: Maintained |
679655da | 549 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 550 | |
4a4e5787 | 551 | ALI1563 I2C DRIVER |
8b58be88 | 552 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 553 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 554 | S: Maintained |
679655da JP |
555 | F: Documentation/i2c/busses/i2c-ali1563 |
556 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 557 | |
1da177e4 | 558 | ALPHA PORT |
8b58be88 | 559 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 560 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 561 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 562 | S: Odd Fixes |
a9406699 | 563 | L: linux-alpha@vger.kernel.org |
679655da | 564 | F: arch/alpha/ |
1da177e4 | 565 | |
f62092f6 LFT |
566 | ALTERA MAILBOX DRIVER |
567 | M: Ley Foon Tan <lftan@altera.com> | |
568 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
569 | S: Maintained | |
570 | F: drivers/mailbox/mailbox-altera.c | |
571 | ||
16b8b922 | 572 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
c53fed07 | 573 | M: Vince Bridgers <vbridger@opensource.altera.com> |
16b8b922 VB |
574 | L: netdev@vger.kernel.org |
575 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) | |
576 | S: Maintained | |
577 | F: drivers/net/ethernet/altera/ | |
578 | ||
adf9251f TK |
579 | ALTERA UART/JTAG UART SERIAL DRIVERS |
580 | M: Tobias Klauser <tklauser@distanz.ch> | |
581 | L: linux-serial@vger.kernel.org | |
61bd0943 | 582 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
adf9251f TK |
583 | S: Maintained |
584 | F: drivers/tty/serial/altera_uart.c | |
585 | F: drivers/tty/serial/altera_jtaguart.c | |
586 | F: include/linux/altera_uart.h | |
587 | F: include/linux/altera_jtaguart.h | |
588 | ||
f4875e12 TL |
589 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
590 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
591 | L: linux-crypto@vger.kernel.org | |
592 | S: Supported | |
593 | F: drivers/crypto/ccp/ | |
594 | F: include/linux/ccp.h | |
595 | ||
512d1027 | 596 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 597 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
598 | L: lm-sensors@lm-sensors.org |
599 | S: Maintained | |
600 | F: Documentation/hwmon/fam15h_power | |
601 | F: drivers/hwmon/fam15h_power.c | |
602 | ||
167a675a | 603 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 604 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 605 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 606 | S: Supported |
faf2e1db | 607 | F: drivers/usb/gadget/udc/amd5536udc.* |
167a675a | 608 | |
f90b8116 | 609 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 610 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 611 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
612 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
613 | S: Supported | |
679655da JP |
614 | F: drivers/char/hw_random/geode-rng.c |
615 | F: drivers/crypto/geode* | |
8a61f013 | 616 | F: drivers/video/fbdev/geode/ |
679655da | 617 | F: arch/x86/include/asm/geode.h |
f90b8116 | 618 | |
919ee7dd | 619 | AMD IOMMU (AMD-VI) |
e4110568 | 620 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 621 | L: iommu@lists.linux-foundation.org |
525b233c | 622 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 623 | S: Maintained |
b2c16391 JP |
624 | F: drivers/iommu/amd_iommu*.[ch] |
625 | F: include/linux/amd-iommu.h | |
919ee7dd | 626 | |
16423d67 OG |
627 | AMD KFD |
628 | M: Oded Gabbay <oded.gabbay@amd.com> | |
629 | L: dri-devel@lists.freedesktop.org | |
630 | T: git git://people.freedesktop.org/~gabbayo/linux.git | |
631 | S: Supported | |
632 | F: drivers/gpu/drm/amd/amdkfd/ | |
04df25d1 OG |
633 | F: drivers/gpu/drm/amd/include/cik_structs.h |
634 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h | |
16423d67 OG |
635 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
636 | F: drivers/gpu/drm/radeon/radeon_kfd.h | |
637 | F: include/uapi/linux/kfd_ioctl.h | |
638 | ||
e7f5b309 | 639 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 640 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
7d2c86b5 | 641 | L: amd64-microcode@amd64.org |
943482d0 | 642 | S: Maintained |
73d425fd | 643 | F: arch/x86/kernel/cpu/microcode/amd* |
e7f5b309 | 644 | |
45198c7b LT |
645 | AMD XGBE DRIVER |
646 | M: Tom Lendacky <thomas.lendacky@amd.com> | |
647 | L: netdev@vger.kernel.org | |
648 | S: Supported | |
649 | F: drivers/net/ethernet/amd/xgbe/ | |
650 | F: drivers/net/phy/amd-xgbe-phy.c | |
651 | ||
284f42b6 | 652 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 653 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 654 | S: Supported |
bd5f47ec | 655 | F: drivers/macintosh/ams/ |
284f42b6 | 656 | |
f94b533d | 657 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
658 | M: Tom Tucker <tom@opengridcomputing.com> |
659 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 660 | L: linux-rdma@vger.kernel.org |
f94b533d | 661 | S: Maintained |
679655da | 662 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 663 | |
531fca16 HV |
664 | ANALOG DEVICES INC AD9389B DRIVER |
665 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
666 | L: linux-media@vger.kernel.org | |
667 | S: Maintained | |
668 | F: drivers/media/i2c/ad9389b* | |
669 | ||
614b4384 LPC |
670 | ANALOG DEVICES INC ADV7180 DRIVER |
671 | M: Lars-Peter Clausen <lars@metafoo.de> | |
672 | L: linux-media@vger.kernel.org | |
673 | W: http://ez.analog.com/community/linux-device-drivers | |
674 | S: Supported | |
675 | F: drivers/media/i2c/adv7180.c | |
676 | ||
c40ddfa3 HV |
677 | ANALOG DEVICES INC ADV7511 DRIVER |
678 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
679 | L: linux-media@vger.kernel.org | |
680 | S: Maintained | |
681 | F: drivers/media/i2c/adv7511* | |
682 | ||
531fca16 HV |
683 | ANALOG DEVICES INC ADV7604 DRIVER |
684 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
685 | L: linux-media@vger.kernel.org | |
686 | S: Maintained | |
687 | F: drivers/media/i2c/adv7604* | |
688 | ||
c40ddfa3 HV |
689 | ANALOG DEVICES INC ADV7842 DRIVER |
690 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
691 | L: linux-media@vger.kernel.org | |
692 | S: Maintained | |
693 | F: drivers/media/i2c/adv7842* | |
694 | ||
527a1a83 | 695 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 696 | M: Lars-Peter Clausen <lars@metafoo.de> |
4bdef3bd | 697 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 698 | W: http://wiki.analog.com/ |
a4edbc10 | 699 | W: http://ez.analog.com/community/linux-device-drivers |
4bdef3bd | 700 | S: Supported |
39c9d199 | 701 | F: sound/soc/codecs/adau* |
cc52688a | 702 | F: sound/soc/codecs/adav* |
4bdef3bd | 703 | F: sound/soc/codecs/ad1* |
ae48f5ef | 704 | F: sound/soc/codecs/ad7* |
4bdef3bd | 705 | F: sound/soc/codecs/ssm* |
40216ce7 | 706 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 707 | |
527a1a83 | 708 | ANALOG DEVICES INC ASOC DRIVERS |
b3fe92b0 | 709 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
527a1a83 MH |
710 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
711 | W: http://blackfin.uclinux.org/ | |
712 | S: Supported | |
713 | F: sound/soc/blackfin/* | |
7d1f9018 | 714 | |
4ce72abc LPC |
715 | ANALOG DEVICES INC IIO DRIVERS |
716 | M: Lars-Peter Clausen <lars@metafoo.de> | |
717 | M: Michael Hennerich <Michael.Hennerich@analog.com> | |
718 | W: http://wiki.analog.com/ | |
719 | W: http://ez.analog.com/community/linux-device-drivers | |
720 | S: Supported | |
721 | F: drivers/iio/*/ad* | |
722 | X: drivers/iio/*/adjd* | |
723 | F: drivers/staging/iio/*/ad* | |
724 | F: staging/iio/trigger/iio-trig-bfin-timer.c | |
527a1a83 | 725 | |
41c9e95d GK |
726 | ANDROID DRIVERS |
727 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
728 |