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 |
b153da60 | 76 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit. |
c7c4fb18 JP |
77 | S: Status, one of the following: |
78 | Supported: Someone is actually paid to look after this. | |
79 | Maintained: Someone actually looks after it. | |
80 | Odd Fixes: It has a maintainer but they don't have time to do | |
81 | much other than throw the odd patch in. See below.. | |
82 | Orphan: No current maintainer [but maybe you could take the | |
83 | role as you write your new code]. | |
84 | Obsolete: Old code. Something tagged obsolete generally means | |
85 | it has been replaced by a better system and you | |
86 | should be using that. | |
87 | F: Files and directories with wildcard patterns. | |
88 | A trailing slash includes all files and subdirectory files. | |
89 | F: drivers/net/ all files in and below drivers/net | |
90 | F: drivers/net/* all files in drivers/net, but not below | |
91 | F: */net/* all files in "any top level directory"/net | |
92 | One pattern per line. Multiple F: lines acceptable. | |
bbbe96ed SW |
93 | N: Files and directories with regex patterns. |
94 | N: [^a-z]tegra all files whose path contains the word tegra | |
95 | One pattern per line. Multiple N: lines acceptable. | |
c7c4fb18 JP |
96 | X: Files and directories that are NOT maintained, same rules as F: |
97 | Files exclusions are tested before file matches. | |
98 | Can be useful for excluding a specific subdirectory, for instance: | |
99 | F: net/ | |
100 | X: net/ipv6/ | |
101 | matches all files in and below net excluding net/ipv6/ | |
102 | K: Keyword perl extended regex pattern to match content in a | |
bbbe96ed | 103 | patch or file. For instance: |
c7c4fb18 | 104 | K: of_get_profile |
bbbe96ed | 105 | matches patches or files that contain "of_get_profile" |
c7c4fb18 | 106 | K: \b(printk|pr_(info|err))\b |
bbbe96ed SW |
107 | matches patches or files that contain one or more of the words |
108 | printk, pr_info or pr_err | |
c7c4fb18 | 109 | One regex pattern per line. Multiple K: lines acceptable. |
1da177e4 LT |
110 | |
111 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
112 | order. If you could add yourselves to it in alphabetical order that would be | |
113 | so much easier [Ed] | |
114 | ||
c7c4fb18 | 115 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 116 | |
c7c4fb18 | 117 | ----------------------------------- |
679655da | 118 | |
a6d89915 | 119 | 3C59X NETWORK DRIVER |
8b58be88 | 120 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
121 | L: netdev@vger.kernel.org |
122 | S: Maintained | |
679655da | 123 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 124 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 125 | |
1da177e4 | 126 | 3CR990 NETWORK DRIVER |
8b58be88 | 127 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 128 | L: netdev@vger.kernel.org |
1da177e4 | 129 | S: Maintained |
ca7a8e85 | 130 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 131 | |
c4de0ceb | 132 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
133 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 134 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 135 | W: http://www.lsi.com |
1da177e4 | 136 | S: Supported |
c4de0ceb | 137 | F: drivers/scsi/3w-* |
1da177e4 LT |
138 | |
139 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 140 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
141 | L: linux-scsi@vger.kernel.org |
142 | S: Maintained | |
679655da | 143 | F: drivers/scsi/53c700* |
1da177e4 LT |
144 | |
145 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 146 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
147 | L: linux-hams@vger.kernel.org |
148 | S: Maintained | |
679655da | 149 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 150 | |
1da177e4 | 151 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 152 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
8b58be88 | 153 | M: Francois Romieu <romieu@fr.zoreil.com> |
979b6c13 | 154 | L: netdev@vger.kernel.org |
1da177e4 | 155 | S: Maintained |
a8fe65b8 | 156 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
157 | |
158 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 159 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
160 | L: linux-serial@vger.kernel.org |
161 | W: http://serial.sourceforge.net | |
8ee16a1b | 162 | S: Maintained |
08deed1e | 163 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 164 | F: drivers/tty/serial/8250* |
679655da | 165 | F: include/linux/serial_8250.h |
1da177e4 LT |
166 | |
167 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 168 | L: netdev@vger.kernel.org |
0cf445ce | 169 | S: Orphan / Obsolete |
644570b8 | 170 | F: drivers/net/ethernet/8390/ |
1da177e4 | 171 | |
67543e50 | 172 | 9P FILE SYSTEM |
8b58be88 JP |
173 | M: Eric Van Hensbergen <ericvh@gmail.com> |
174 | M: Ron Minnich <rminnich@sandia.gov> | |
175 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 176 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 177 | W: http://swik.net/v9fs |
8a6e2535 | 178 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 179 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 180 | S: Maintained |
679655da JP |
181 | F: Documentation/filesystems/9p.txt |
182 | F: fs/9p/ | |
2315cb14 RL |
183 | F: net/9p/ |
184 | F: include/net/9p/ | |
185 | F: include/uapi/linux/virtio_9p.h | |
186 | F: include/trace/events/9p.h | |
187 | ||
67543e50 | 188 | |
91952bc0 AP |
189 | A8293 MEDIA DRIVER |
190 | M: Antti Palosaari <crope@iki.fi> | |
191 | L: linux-media@vger.kernel.org | |
192 | W: http://linuxtv.org/ | |
193 | W: http://palosaari.fi/linux/ | |
194 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
195 | T: git git://linuxtv.org/anttip/media_tree.git | |
196 | S: Maintained | |
197 | F: drivers/media/dvb-frontends/a8293* | |
198 | ||
e2d1d6c0 | 199 | AACRAID SCSI RAID DRIVER |
8b58be88 | 200 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
201 | L: linux-scsi@vger.kernel.org |
202 | W: http://www.adaptec.com/ | |
1da177e4 | 203 | S: Supported |
679655da JP |
204 | F: Documentation/scsi/aacraid.txt |
205 | F: drivers/scsi/aacraid/ | |
1da177e4 | 206 | |
249e3c85 | 207 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 208 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
209 | L: lm-sensors@lm-sensors.org |
210 | S: Maintained | |
679655da | 211 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 212 | |
249e3c85 | 213 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 214 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
215 | L: lm-sensors@lm-sensors.org |
216 | S: Maintained | |
679655da | 217 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 218 | |
1da177e4 | 219 | ACENIC DRIVER |
8b58be88 | 220 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
221 | L: linux-acenic@sunsite.dk |
222 | S: Maintained | |
531c4f89 | 223 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 224 | |
e86435eb | 225 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 226 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 227 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
228 | W: http://piie.net/?section=acerhdf |
229 | S: Maintained | |
230 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 231 | |
745a5d21 | 232 | ACER WMI LAPTOP EXTRAS |
182ae55c | 233 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 234 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 235 | S: Maintained |
679655da | 236 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 237 | |
1da177e4 | 238 | ACPI |
8b58be88 | 239 | M: Len Brown <lenb@kernel.org> |
ea26d0cf | 240 | M: Rafael J. Wysocki <rjw@sisk.pl> |
6968e50c | 241 | L: linux-acpi@vger.kernel.org |
38e09d83 | 242 | W: http://www.lesswatts.org/projects/acpi/ |
8a6e2535 | 243 | Q: http://patchwork.kernel.org/project/linux-acpi/list/ |
aaef292a | 244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux |
8b59a454 | 245 | S: Supported |
679655da JP |
246 | F: drivers/acpi/ |
247 | F: drivers/pnp/pnpacpi/ | |
248 | F: include/linux/acpi.h | |
43368e74 | 249 | F: include/acpi/ |
994b942f | 250 | F: Documentation/acpi |
89ca78a0 | 251 | F: Documentation/ABI/testing/sysfs-bus-acpi |
15fd830d BH |
252 | F: drivers/pci/*acpi* |
253 | F: drivers/pci/*/*acpi* | |
254 | F: drivers/pci/*/*/*acpi* | |
8b59a454 | 255 | |
8b59a454 | 256 | ACPI FAN DRIVER |
8b58be88 | 257 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 258 | L: linux-acpi@vger.kernel.org |
0638bc8d | 259 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 260 | S: Supported |
679655da | 261 | F: drivers/acpi/fan.c |
1da177e4 | 262 | |
8b59a454 | 263 | ACPI THERMAL DRIVER |
8b58be88 | 264 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 265 | L: linux-acpi@vger.kernel.org |
0638bc8d | 266 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 267 | S: Supported |
679655da | 268 | F: drivers/acpi/*thermal* |
998be20f | 269 | |
359acec8 | 270 | ACPI VIDEO DRIVER |
8b58be88 | 271 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 272 | L: linux-acpi@vger.kernel.org |
0638bc8d | 273 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 274 | S: Supported |
679655da | 275 | F: drivers/acpi/video.c |
998be20f | 276 | |
bff431e4 | 277 | ACPI WMI DRIVER |
d0944853 | 278 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 279 | S: Orphan |
679655da | 280 | F: drivers/platform/x86/wmi.c |
bff431e4 | 281 | |
2f39d519 | 282 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 283 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
284 | W: http://wiki.parisc-linux.org/AD1889 |
285 | L: linux-parisc@vger.kernel.org | |
286 | S: Maintained | |
679655da | 287 | F: sound/pci/ad1889.* |
2f39d519 | 288 | |
527a1a83 MH |
289 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
290 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 291 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 292 | W: http://wiki.analog.com/AD5254 |
527a1a83 MH |
293 | S: Supported |
294 | F: drivers/misc/ad525x_dpot.c | |
295 | ||
296 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
297 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 298 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 299 | W: http://wiki.analog.com/AD5398 |
527a1a83 MH |
300 | S: Supported |
301 | F: drivers/regulator/ad5398.c | |
302 | ||
303 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
304 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 305 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 306 | W: http://wiki.analog.com/AD7142 |
527a1a83 MH |
307 | S: Supported |
308 | F: drivers/input/misc/ad714x.c | |
309 | ||
310 | AD7877 TOUCHSCREEN DRIVER | |
311 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 312 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 313 | W: http://wiki.analog.com/AD7877 |
527a1a83 MH |
314 | S: Supported |
315 | F: drivers/input/touchscreen/ad7877.c | |
316 | ||
317 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
318 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 319 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 320 | W: http://wiki.analog.com/AD7879 |
527a1a83 MH |
321 | S: Supported |
322 | F: drivers/input/touchscreen/ad7879.c | |
323 | ||
1330b0dc JK |
324 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
325 | M: Jiri Kosina <jkosina@suse.cz> | |
326 | S: Maintained | |
327 | ||
1da177e4 | 328 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 329 | M: Jean Delvare <khali@linux-fr.org> |
cc0b07ed | 330 | L: lm-sensors@lm-sensors.org |
1da177e4 | 331 | S: Maintained |
679655da JP |
332 | F: Documentation/hwmon/adm1025 |
333 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 334 | |
cae2caae | 335 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 336 | M: Corentin Labbe <corentin.labbe@geomatys.fr> |
cae2caae CL |
337 | L: lm-sensors@lm-sensors.org |
338 | S: Maintained | |
679655da | 339 | F: drivers/hwmon/adm1029.c |
cae2caae | 340 | |
cc0b88cf | 341 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 342 | L: linux-wireless@vger.kernel.org |
491b26b4 | 343 | W: http://wireless.kernel.org/ |
e71bcbd0 | 344 | S: Orphan |
679655da | 345 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 346 | |
e8e31622 SA |
347 | ADP1653 FLASH CONTROLLER DRIVER |
348 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
349 | L: linux-media@vger.kernel.org | |
350 | S: Maintained | |
351 | F: drivers/media/i2c/adp1653.c | |
352 | F: include/media/adp1653.h | |
353 | ||
527a1a83 MH |
354 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
355 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 356 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 357 | W: http://wiki.analog.com/ADP5520 |
527a1a83 MH |
358 | S: Supported |
359 | F: drivers/mfd/adp5520.c | |
360 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 361 | F: drivers/leds/leds-adp5520.c |
77278d50 | 362 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
363 | F: drivers/input/keyboard/adp5520-keys.c |
364 | ||
365 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
366 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 367 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 368 | W: http://wiki.analog.com/ADP5588 |
527a1a83 MH |
369 | S: Supported |
370 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 371 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
372 | |
373 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
374 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 375 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 376 | W: http://wiki.analog.com/ADP8860 |
527a1a83 MH |
377 | S: Supported |
378 | F: drivers/video/backlight/adp8860_bl.c | |
379 | ||
8c22a8f5 DE |
380 | ADS1015 HARDWARE MONITOR DRIVER |
381 | M: Dirk Eibach <eibach@gdsys.de> | |
382 | L: lm-sensors@lm-sensors.org | |
383 | S: Maintained | |
384 | F: Documentation/hwmon/ads1015 | |
385 | F: drivers/hwmon/ads1015.c | |
386 | F: include/linux/i2c/ads1015.h | |
387 | ||
1da177e4 | 388 | ADT746X FAN DRIVER |
8b58be88 | 389 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 390 | S: Maintained |
679655da | 391 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 392 | |
b058b859 JD |
393 | ADT7475 HARDWARE MONITOR DRIVER |
394 | M: Jean Delvare <khali@linux-fr.org> | |
395 | L: lm-sensors@lm-sensors.org | |
396 | S: Maintained | |
397 | F: Documentation/hwmon/adt7475 | |
398 | F: drivers/hwmon/adt7475.c | |
399 | ||
527a1a83 MH |
400 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
401 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 402 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 403 | W: http://wiki.analog.com/ADXL345 |
527a1a83 MH |
404 | S: Supported |
405 | F: drivers/input/misc/adxl34x.c | |
406 | ||
8c6af9e1 | 407 | ADVANSYS SCSI DRIVER |
8b58be88 | 408 | M: Matthew Wilcox <matthew@wil.cx> |
8c6af9e1 MW |
409 | L: linux-scsi@vger.kernel.org |
410 | S: Maintained | |
679655da JP |
411 | F: Documentation/scsi/advansys.txt |
412 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 413 | |
1da177e4 | 414 | AEDSP16 DRIVER |
8b58be88 | 415 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 416 | S: Maintained |
679655da | 417 | F: sound/oss/aedsp16.c |
1da177e4 | 418 | |
91952bc0 AP |
419 | AF9013 MEDIA DRIVER |
420 | M: Antti Palosaari <crope@iki.fi> | |
421 | L: linux-media@vger.kernel.org | |
422 | W: http://linuxtv.org/ | |
423 | W: http://palosaari.fi/linux/ | |
424 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
425 | T: git git://linuxtv.org/anttip/media_tree.git | |
426 | S: Maintained | |
427 | F: drivers/media/dvb-frontends/af9013* | |
428 | ||
429 | AF9033 MEDIA DRIVER | |
430 | M: Antti Palosaari <crope@iki.fi> | |
431 | L: linux-media@vger.kernel.org | |
432 | W: http://linuxtv.org/ | |
433 | W: http://palosaari.fi/linux/ | |
434 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
435 | T: git git://linuxtv.org/anttip/media_tree.git | |
436 | S: Maintained | |
437 | F: drivers/media/dvb-frontends/af9033* | |
438 | ||
1da177e4 | 439 | AFFS FILE SYSTEM |
6cf515e1 GU |
440 | L: linux-fsdevel@vger.kernel.org |
441 | S: Orphan | |
679655da JP |
442 | F: Documentation/filesystems/affs.txt |
443 | F: fs/affs/ | |
1da177e4 | 444 | |
e2d1d6c0 | 445 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 446 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
447 | L: linux-afs@lists.infradead.org |
448 | S: Supported | |
679655da JP |
449 | F: fs/afs/ |
450 | F: include/net/af_rxrpc.h | |
451 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 452 | |
1da177e4 | 453 | AGPGART DRIVER |
8b58be88 | 454 | M: David Airlie <airlied@linux.ie> |
54e5881d | 455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 456 | S: Maintained |
679655da JP |
457 | F: drivers/char/agp/ |
458 | F: include/linux/agp* | |
c117ab84 | 459 | F: include/uapi/linux/agp* |
1da177e4 LT |
460 | |
461 | AHA152X SCSI DRIVER | |
8b58be88 | 462 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
463 | L: linux-scsi@vger.kernel.org |
464 | S: Maintained | |
679655da JP |
465 | F: drivers/scsi/aha152x* |
466 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 467 | |
64624d4f | 468 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 469 | M: Hannes Reinecke <hare@suse.de> |
64624d4f | 470 | L: linux-scsi@vger.kernel.org |
1da177e4 | 471 | S: Maintained |
679655da JP |
472 | F: drivers/scsi/aic7xxx/ |
473 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 474 | |
450500ad HV |
475 | AIMSLAB FM RADIO RECEIVER DRIVER |
476 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
477 | L: linux-media@vger.kernel.org | |
478 | T: git git://linuxtv.org/media_tree.git | |
479 | W: http://linuxtv.org | |
480 | S: Maintained | |
481 | F: drivers/media/radio/radio-aimslab* | |
482 | ||
e2d1d6c0 | 483 | AIO |
8b58be88 | 484 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
485 | L: linux-aio@kvack.org |
486 | S: Supported | |
679655da JP |
487 | F: fs/aio.c |
488 | F: include/linux/*aio*.h | |
e2d1d6c0 | 489 | |
1da177e4 | 490 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 491 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 492 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
493 | W: http://www.linux-usb.org/SpeedTouch/ |
494 | S: Maintained | |
679655da JP |
495 | F: drivers/usb/atm/speedtch.c |
496 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 497 | |
272f133a | 498 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 499 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 500 | S: Maintained |
679655da | 501 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 502 | |
4a4e5787 | 503 | ALI1563 I2C DRIVER |
8b58be88 | 504 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 505 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 506 | S: Maintained |
679655da JP |
507 | F: Documentation/i2c/busses/i2c-ali1563 |
508 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 509 | |
1da177e4 | 510 | ALPHA PORT |
8b58be88 | 511 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 512 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 513 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 514 | S: Odd Fixes |
a9406699 | 515 | L: linux-alpha@vger.kernel.org |
679655da | 516 | F: arch/alpha/ |
1da177e4 | 517 | |
adf9251f TK |
518 | ALTERA UART/JTAG UART SERIAL DRIVERS |
519 | M: Tobias Klauser <tklauser@distanz.ch> | |
520 | L: linux-serial@vger.kernel.org | |
521 | L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers) | |
522 | S: Maintained | |
523 | F: drivers/tty/serial/altera_uart.c | |
524 | F: drivers/tty/serial/altera_jtaguart.c | |
525 | F: include/linux/altera_uart.h | |
526 | F: include/linux/altera_jtaguart.h | |
527 | ||
512d1027 | 528 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 529 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
530 | L: lm-sensors@lm-sensors.org |
531 | S: Maintained | |
532 | F: Documentation/hwmon/fam15h_power | |
533 | F: drivers/hwmon/fam15h_power.c | |
534 | ||
167a675a | 535 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 536 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 537 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 538 | S: Supported |
679655da | 539 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 540 | |
f90b8116 | 541 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 542 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 543 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
544 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
545 | S: Supported | |
679655da JP |
546 | F: drivers/char/hw_random/geode-rng.c |
547 | F: drivers/crypto/geode* | |
548 | F: drivers/video/geode/ | |
549 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 550 | |
919ee7dd | 551 | AMD IOMMU (AMD-VI) |
e4110568 | 552 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 553 | L: iommu@lists.linux-foundation.org |
525b233c | 554 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 555 | S: Maintained |
b2c16391 JP |
556 | F: drivers/iommu/amd_iommu*.[ch] |
557 | F: include/linux/amd-iommu.h | |
919ee7dd | 558 | |
e7f5b309 | 559 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 560 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
7d2c86b5 | 561 | L: amd64-microcode@amd64.org |
943482d0 | 562 | S: Maintained |
679655da | 563 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 564 | |
284f42b6 | 565 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 566 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 567 | S: Supported |
bd5f47ec | 568 | F: drivers/macintosh/ams/ |
284f42b6 | 569 | |
f94b533d | 570 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
571 | M: Tom Tucker <tom@opengridcomputing.com> |
572 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 573 | L: linux-rdma@vger.kernel.org |
f94b533d | 574 | S: Maintained |
679655da | 575 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 576 | |
531fca16 HV |
577 | ANALOG DEVICES INC AD9389B DRIVER |
578 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
579 | L: linux-media@vger.kernel.org | |
580 | S: Maintained | |
581 | F: drivers/media/i2c/ad9389b* | |
582 | ||
c40ddfa3 HV |
583 | ANALOG DEVICES INC ADV7511 DRIVER |
584 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
585 | L: linux-media@vger.kernel.org | |
586 | S: Maintained | |
587 | F: drivers/media/i2c/adv7511* | |
588 | ||
531fca16 HV |
589 | ANALOG DEVICES INC ADV7604 DRIVER |
590 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
591 | L: linux-media@vger.kernel.org | |
592 | S: Maintained | |
593 | F: drivers/media/i2c/adv7604* | |
594 | ||
c40ddfa3 HV |
595 | ANALOG DEVICES INC ADV7842 DRIVER |
596 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
597 | L: linux-media@vger.kernel.org | |
598 | S: Maintained | |
599 | F: drivers/media/i2c/adv7842* | |
600 | ||
527a1a83 | 601 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 602 | M: Lars-Peter Clausen <lars@metafoo.de> |
f8bd42b8 | 603 | L: device-drivers-devel@blackfin.uclinux.org |
4bdef3bd | 604 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 605 | W: http://wiki.analog.com/ |
4bdef3bd | 606 | S: Supported |
39c9d199 | 607 | F: sound/soc/codecs/adau* |
cc52688a | 608 | F: sound/soc/codecs/adav* |
4bdef3bd | 609 | F: sound/soc/codecs/ad1* |
ae48f5ef | 610 | F: sound/soc/codecs/ad7* |
4bdef3bd | 611 | F: sound/soc/codecs/ssm* |
40216ce7 | 612 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 613 | |
527a1a83 MH |
614 | ANALOG DEVICES INC ASOC DRIVERS |
615 | L: uclinux-dist-devel@blackfin.uclinux.org | |
616 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
617 | W: http://blackfin.uclinux.org/ | |
618 | S: Supported | |
619 | F: sound/soc/blackfin/* | |
620 | ||
42269063 | 621 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 622 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 623 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 624 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 625 | S: Maintained |
679655da | 626 | F: sound/aoa/ |
42269063 | 627 | |
1da177e4 | 628 | APM DRIVER |
81024fc4 JK |
629 | M: Jiri Kosina <jkosina@suse.cz> |
630 | S: Odd fixes | |
679655da JP |
631 | F: arch/x86/kernel/apm_32.c |
632 | F: include/linux/apm_bios.h | |
c117ab84 | 633 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 634 | F: drivers/char/apm-emulation.c |
1da177e4 | 635 | |
bd7aa4b2 | 636 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 637 | M: Henrik Rydberg <rydberg@euromail.se> |
bd7aa4b2 HR |
638 | L: linux-input@vger.kernel.org |
639 | S: Maintained | |
679655da | 640 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 641 | |
6f2fad74 | 642 | APPLE SMC DRIVER |
d618540f HR |
643 | M: Henrik Rydberg <rydberg@euromail.se> |
644 | L: lm-sensors@lm-sensors.org | |
6f2fad74 | 645 | S: Maintained |
679655da | 646 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 647 | |
1da177e4 | 648 | APPLETALK NETWORK LAYER |
8b58be88 | 649 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 650 | S: Maintained |
679655da JP |
651 | F: drivers/net/appletalk/ |
652 | F: net/appletalk/ | |
1da177e4 | 653 | |
62a37dc7 LP |
654 | APTINA CAMERA SENSOR PLL |
655 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> | |
656 | L: linux-media@vger.kernel.org | |
657 | S: Maintained | |
658 | F: drivers/media/i2c/aptina-pll.* | |
659 | ||
a480167b | 660 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 661 | M: Viresh Kumar <viresh.linux@gmail.com> |
a480167b VK |
662 | L: linux-ide@vger.kernel.org |
663 | S: Maintained | |
664 | F: include/linux/pata_arasan_cf_data.h | |
665 | F: drivers/ata/pata_arasan_cf.c | |
666 | ||
1154ea7d | 667 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 668 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 669 | S: Maintained |
679655da JP |
670 | F: drivers/video/arcfb.c |
671 | F: drivers/video/fb_defio.c | |
1154ea7d | 672 | |
1da177e4 | 673 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 674 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 675 | S: Maintained |
679655da JP |
676 | F: arch/arm/lib/floppydma.S |
677 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 678 | |
6f96521f WD |
679 | ARM PMU PROFILING AND DEBUGGING |
680 | M: Will Deacon <will.deacon@arm.com> | |
681 | S: Maintained | |
682 | F: arch/arm/kernel/perf_event* | |
683 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
684 | F: arch/arm/include/asm/pmu.h |
685 | F: arch/arm/kernel/hw_breakpoint.c | |
686 | F: arch/arm/include/asm/hw_breakpoint.h | |
687 | ||
d4275354 | 688 | ARM PORT |
8b58be88 | 689 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 690 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
691 | W: http://www.arm.linux.org.uk/ |
692 | S: Maintained | |
693 | F: arch/arm/ | |
694 | ||
d323c243 SB |
695 | ARM SUB-ARCHITECTURES |
696 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 697 | S: Maintained |
d323c243 SB |
698 | F: arch/arm/mach-*/ |
699 | F: arch/arm/plat-*/ | |
700 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
701 | ||
cefbf4ea RK |
702 | ARM PRIMECELL AACI PL041 DRIVER |
703 | M: Russell King <linux@arm.linux.org.uk> | |
704 | S: Maintained | |
705 | F: sound/arm/aaci.* | |
706 | ||
707 | ARM PRIMECELL CLCD PL110 DRIVER | |
708 | M: Russell King <linux@arm.linux.org.uk> | |
709 | S: Maintained | |
710 | F: drivers/video/amba-clcd.* | |
711 | ||
712 | ARM PRIMECELL KMI PL050 DRIVER | |
713 | M: Russell King <linux@arm.linux.org.uk> | |
714 | S: Maintained | |
715 | F: drivers/input/serio/ambakmi.* | |
716 | F: include/linux/amba/kmi.h | |
717 | ||
2761f5c2 | 718 | ARM PRIMECELL MMCI PL180/1 DRIVER |
08a5c9a2 RK |
719 | M: Russell King <linux@arm.linux.org.uk> |
720 | S: Maintained | |
679655da | 721 | F: drivers/mmc/host/mmci.* |
2f748aaa | 722 | F: include/linux/amba/mmci.h |
2761f5c2 | 723 | |
1b4304e5 RK |
724 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
725 | M: Russell King <linux@arm.linux.org.uk> | |
726 | S: Maintained | |
727 | F: drivers/tty/serial/amba-pl01*.c | |
728 | F: include/linux/amba/serial.h | |
2761f5c2 | 729 | |
cefbf4ea RK |
730 | ARM PRIMECELL BUS SUPPORT |
731 | M: Russell King <linux@arm.linux.org.uk> | |
732 | S: Maintained | |
733 | F: drivers/amba/ | |
734 | F: include/linux/amba/bus.h | |
735 | ||
2b7a52a4 | 736 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 737 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 738 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
739 | S: Maintained |
740 | ||
9c784f95 | 741 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 742 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 743 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
744 | S: Maintained |
745 | ||
2b7a52a4 | 746 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 747 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 748 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
749 | S: Maintained |
750 | ||
1b106699 MR |
751 | ARM/Allwinner A1X SoC support |
752 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
753 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
754 | S: Maintained | |
755 | F: arch/arm/mach-sunxi/ | |
756 | ||
c1fc8675 | 757 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 758 | M: Andrew Victor <linux@maxim.org.za> |
c1fc8675 NF |
759 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
760 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
efc03ecb | 761 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
795fb7e7 | 762 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
763 | W: http://www.linux4sam.org |
764 | S: Supported | |
765 | F: arch/arm/mach-at91/ | |
d4a89c7d | 766 | |
986cf2e9 RH |
767 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
768 | M: Rob Herring <rob.herring@calxeda.com> | |
769 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
770 | S: Maintained | |
771 | F: arch/arm/mach-highbank/ | |
772 | ||
d94f944e | 773 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
9d5e2a02 | 774 | M: Anton Vorontsov <anton@enomsg.org> |
d94f944e AV |
775 | S: Maintained |
776 | F: arch/arm/mach-cns3xxx/ | |
777 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
778 | ||
386ab516 AS |
779 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
780 | M: Alexander Shiyan <shc_work@mail.ru> | |
781 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
782 | S: Odd Fixes | |
783 | F: arch/arm/mach-clps711x/ | |
784 | ||
2b7a52a4 | 785 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 786 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 787 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 788 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 789 | S: Maintained |
d19d3667 HS |
790 | F: arch/arm/mach-ep93xx/ |
791 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
792 | |
793 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 794 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 795 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
796 | S: Maintained |
797 | ||
d4275354 | 798 | ARM/CLKDEV SUPPORT |
8b58be88 | 799 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 800 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 801 | S: Maintained |
d4275354 | 802 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 803 | F: drivers/clk/clkdev.c |
d4275354 | 804 | |
d48134e7 | 805 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 806 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 807 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
808 | S: Maintained |
809 | ||
94150095 HF |
810 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
811 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
812 | S: Maintained | |
813 | F: arch/arm/mach-ep93xx/micro9.c | |
814 | ||
1da177e4 | 815 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 816 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
817 | S: Maintained |
818 | ||
881a95f9 | 819 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 820 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 821 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 HUK |
822 | T: git git://git.berlios.de/gemini-board |
823 | S: Maintained | |
f49afbb5 | 824 | F: arch/arm/mach-gemini/ |
881a95f9 | 825 | |
a990cbd8 BS |
826 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
827 | M: Barry Song <baohua.song@csr.com> | |
828 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
85529d14 | 829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
a990cbd8 BS |
830 | S: Maintained |
831 | F: arch/arm/mach-prima2/ | |
47ac3e44 BS |
832 | F: drivers/dma/sirf-dma.c |
833 | F: drivers/i2c/busses/i2c-sirf.c | |
b3b665b0 | 834 | F: drivers/mmc/host/sdhci-sirf.c |
6f73349d | 835 | F: drivers/pinctrl/sirf/ |
47ac3e44 | 836 | F: drivers/spi/spi-sirf.c |
a990cbd8 | 837 | |
d4275354 | 838 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 839 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 840 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
841 | W: http://www.arm.linux.org.uk/ |
842 | S: Maintained | |
843 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 844 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 845 | |
a9da4f7e | 846 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
847 | M: Daniel Ribeiro <drwyrm@gmail.com> |
848 | M: Stefan Schmidt <stefan@openezx.org> | |
849 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 850 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
851 | W: http://www.openezx.org/ |
852 | S: Maintained | |
cafc2265 SS |
853 | T: topgit git://git.openezx.org/openezx.git |
854 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 855 | |
6a915af9 | 856 | ARM/FARADAY FA526 PORT |
162500b3 | 857 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 858 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 859 | S: Maintained |
1fa7e547 | 860 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 861 | F: arch/arm/mm/*-fa* |
6a915af9 | 862 | |
d4275354 | 863 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 864 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 865 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
866 | W: http://www.arm.linux.org.uk/ |
867 | S: Maintained | |
868 | F: arch/arm/include/asm/hardware/dec21285.h | |
869 | F: arch/arm/mach-footbridge/ | |
870 | ||
86183a5f | 871 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 872 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 873 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 874 | S: Maintained |
1fa7e547 | 875 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 876 | F: arch/arm/mach-imx/ |
e5dafa22 | 877 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 878 | |
8bcb9765 SG |
879 | ARM/FREESCALE IMX6 |
880 | M: Shawn Guo <shawn.guo@linaro.org> | |
881 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
882 | S: Maintained | |
883 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
884 | F: arch/arm/mach-imx/*imx6* | |
885 | ||
a9866a09 SG |
886 | ARM/FREESCALE MXS ARM ARCHITECTURE |
887 | M: Shawn Guo <shawn.guo@linaro.org> | |
888 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
889 | S: Maintained | |
890 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
891 | F: arch/arm/mach-mxs/ | |
892 | ||
2b7a52a4 | 893 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 894 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 895 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
896 | S: Maintained |
897 | ||
90b8fc34 | 898 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 899 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 900 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
901 | S: Maintained |
902 | ||
ef47d5f0 | 903 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 904 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
905 | M: Paul Parsons <lost.distance@yahoo.com> |
906 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
907 | S: Maintained |
908 | F: arch/arm/mach-pxa/hx4700.c | |
909 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 910 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 911 | |
21f37bc3 | 912 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 913 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
914 | W: www.jlime.com |
915 | S: Maintained | |
084bad91 KE |
916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
917 | F: arch/arm/mach-sa1100/jornada720.c | |
918 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 919 | |
5e767ab9 JMC |
920 | ARM/IGEP MACHINE SUPPORT |
921 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
922 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
923 | L: linux-omap@vger.kernel.org | |
924 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
925 | S: Maintained | |
926 | F: arch/arm/mach-omap2/board-igep0020.c | |
927 | ||
403d2971 MV |
928 | ARM/INCOME PXA270 SUPPORT |
929 | M: Marek Vasut <marek.vasut@gmail.com> | |
930 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
931 | S: Maintained | |
ec154082 | 932 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 933 | |
2b7a52a4 | 934 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 935 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 936 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 937 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 938 | S: Maintained |
e2bdb176 DW |
939 | |
940 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
ab5f8c6e | 941 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 942 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 943 | S: Maintained |
2b7a52a4 LB |
944 | |
945 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 946 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 947 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 948 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 949 | S: Maintained |
2b7a52a4 LB |
950 | |
951 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 952 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 953 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 954 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 955 | S: Maintained |
2b7a52a4 | 956 | |
2b7a52a4 | 957 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 958 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 959 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
960 | S: Maintained |
961 | ||
dfdd8cc9 KH |
962 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
963 | M: Imre Kaloz <kaloz@openwrt.org> | |
964 | M: Krzysztof Halasa <khc@pm.waw.pl> | |
baea7b94 | 965 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
966 | S: Maintained |
967 | F: arch/arm/mach-ixp4xx/ | |
968 | ||
838553c5 | 969 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
970 | M: Jonathan Cameron <jic23@cam.ac.uk> |
971 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
972 | S: Maintained | |
973 | F: arch/arm/mach-pxa/stargate2.c | |
974 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
975 | ||
2b7a52a4 | 976 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 977 | M: Lennert Buytenhek <kernel@wantstofly.org> |
ab5f8c6e | 978 | M: Dan Williams <dan.j.williams@intel.com> |
efc03ecb | 979 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 980 | S: Maintained |
2b7a52a4 LB |
981 | |
982 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 983 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 984 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
985 | S: Maintained |
986 | ||
1154f858 SS |
987 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
988 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
989 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
990 | S: Maintained | |
991 | F: arch/arm/mach-keystone/ | |
992 | ||
2b7a52a4 | 993 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
8b58be88 | 994 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 995 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
996 | S: Maintained |
997 | ||
3b886171 | 998 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 999 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
1000 | S: Maintained |
1001 | ||
75f41273 TP |
1002 | ARM/Marvell Armada 370 and Armada XP SOC support |
1003 | M: Jason Cooper <jason@lakedaemon.net> | |
1004 | M: Andrew Lunn <andrew@lunn.ch> | |
1005 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
1006 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1007 | S: Maintained | |
1008 | F: arch/arm/mach-mvebu/ | |
1009 | ||
4f1312b0 NP |
1010 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
1011 | M: Jason Cooper <jason@lakedaemon.net> | |
1012 | M: Andrew Lunn <andrew@lunn.ch> | |
efc03ecb | 1013 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
1014 | S: Maintained |
1015 | F: arch/arm/mach-dove/ | |
54a246ff NP |
1016 | F: arch/arm/mach-kirkwood/ |
1017 | F: arch/arm/mach-mv78xx0/ | |
1018 | F: arch/arm/mach-orion5x/ | |
1019 | F: arch/arm/plat-orion/ | |
3b886171 | 1020 | |
d69ac131 AC |
1021 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
1022 | M: Alexander Clouter <alex@digriz.org.uk> | |
1023 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1024 | W: http://www.digriz.org.uk/ts78xx/kernel | |
1025 | S: Maintained | |
1026 | F: arch/arm/mach-orion5x/ts78xx-* | |
1027 | ||
adcb079f AB |
1028 | ARM/MICREL KS8695 ARCHITECTURE |
1029 | M: Greg Ungerer <gerg@uclinux.org> | |
1030 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
14430813 | 1031 | F: arch/arm/mach-ks8695/ |
adcb079f AB |
1032 | S: Odd Fixes |
1033 | ||
d78ff0a5 | 1034 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 1035 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 1036 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
1037 | F: arch/arm/mach-pxa/mioa701.c |
1038 | S: Maintained | |
1039 | ||
9624dfe6 | 1040 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 1041 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
1042 | S: Maintained |
1043 | ||
e0ee9851 | 1044 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 1045 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 1046 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
1047 | M: STEricsson <STEricsson_nomadik_linux@list.st.com> |
1048 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1049 | S: Maintained | |
1050 | F: arch/arm/mach-nomadik/ | |
87572880 | 1051 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 1052 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 1053 | |
9d76295a | 1054 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 1055 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
1056 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
1057 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
1058 | S: Supported | |
1059 | ||
0c19d21e DW |
1060 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1061 | M: David Brown <davidb@codeaurora.org> | |
b4c9bfab | 1062 | M: Daniel Walker <dwalker@fifo99.com> |
0c19d21e | 1063 | M: Bryan Huntsman <bryanh@codeaurora.org> |
c68af41d | 1064 | L: linux-arm-msm@vger.kernel.org |
0c19d21e DW |
1065 | F: arch/arm/mach-msm/ |
1066 | F: drivers/video/msm/ | |
1067 | F: drivers/mmc/host/msm_sdcc.c | |
1068 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1069 | F: drivers/tty/serial/msm_serial.h |
1070 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 | 1071 | F: drivers/*/pm8???-* |
31a12b31 | 1072 | F: drivers/mfd/ssbi/ |
ea91db52 | 1073 | F: include/linux/mfd/pm8xxx/ |
8cd5c866 | 1074 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1075 | S: Maintained |
1076 | ||
8459c159 | 1077 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1078 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1079 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1080 | S: Maintained |
1081 | ||
5d783a2d | 1082 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1083 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1084 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1085 | W: http://hackndev.com |
1086 | S: Maintained | |
933d35f0 JP |
1087 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1088 | F: arch/arm/mach-pxa/palmtx.c | |
1089 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1090 | F: arch/arm/mach-pxa/palmt5.c | |
1091 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1092 | F: arch/arm/mach-pxa/palmld.c | |
1093 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1094 | F: arch/arm/mach-pxa/palmte2.c | |
1095 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1096 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1097 | |
b57fe924 | 1098 | ARM/PALM TREO SUPPORT |
8b58be88 | 1099 | M: Tomas Cech <sleep_walker@suse.cz> |
75280787 | 1100 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1101 | W: http://hackndev.com |
1102 | S: Maintained | |
b57fe924 JP |
1103 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1104 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1105 | |
c49e1e63 | 1106 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1107 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1108 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1109 | W: http://hackndev.com |
1110 | S: Maintained | |
933d35f0 JP |
1111 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1112 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1113 | |
1da177e4 | 1114 | ARM/PLEB SUPPORT |
8b58be88 | 1115 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1116 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1117 | S: Maintained | |
1118 | ||
1119 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1120 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1121 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1122 | W: http://www.arm.linux.org.uk/ |
1123 | S: Maintained | |
1124 | ||
2b7a52a4 | 1125 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1126 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1127 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1128 | S: Maintained |
1129 | ||
d4275354 | 1130 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1131 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1132 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1133 | W: http://www.arm.linux.org.uk/ |
1134 | S: Maintained | |
d4275354 RK |
1135 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1136 | F: arch/arm/include/asm/hardware/ioc.h | |
1137 | F: arch/arm/include/asm/hardware/iomd.h | |
1138 | F: arch/arm/include/asm/hardware/memc.h | |
1139 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1140 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1141 | F: drivers/net/ethernet/i825xx/ether1* |
1142 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1143 | F: drivers/scsi/arm/ |
1144 | ||
1da177e4 | 1145 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1146 | M: Alexander Schulz <alex@shark-linux.de> |
1da177e4 LT |
1147 | W: http://www.shark-linux.de/shark.html |
1148 | S: Maintained | |
1149 | ||
b21477f9 | 1150 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1151 | M: Ben Dooks <ben-linux@fluff.org> |
482ce512 | 1152 | M: Kukjin Kim <kgene.kim@samsung.com> |
efc03ecb | 1153 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1154 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 BD |
1155 | W: http://www.fluff.org/ben/linux/ |
1156 | S: Maintained | |
482ce512 | 1157 | F: arch/arm/plat-samsung/ |
769bbb63 HS |
1158 | F: arch/arm/mach-s3c24*/ |
1159 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1160 | F: drivers/*/*s3c2410* |
1161 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1162 | F: drivers/spi/spi-s3c* |
1163 | F: sound/soc/samsung/* | |
1da177e4 | 1164 | |
0dcecae2 | 1165 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1166 | M: Kukjin Kim <kgene.kim@samsung.com> |
1167 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1168 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
1169 | S: Maintained | |
1170 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1171 | F: arch/arm/mach-exynos*/ |
33d43cdd | 1172 | N: exynos |
f556cb07 | 1173 | |
10ffa964 KP |
1174 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1175 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1176 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1177 | S: Maintained | |
1178 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1179 | F: arch/arm/mach-s5pv210/mach-goni.c | |
10ffa964 | 1180 | |
3ce4ccb6 KD |
1181 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
1182 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1183 | M: Kamil Debski <k.debski@samsung.com> | |
1184 | L: linux-arm-kernel@lists.infradead.org | |
1185 | L: linux-media@vger.kernel.org | |
1186 | S: Maintained | |
1187 | F: drivers/media/platform/s5p-g2d/ | |
1188 | ||
e6a476fd MS |
1189 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1190 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1191 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1192 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1193 | L: linux-arm-kernel@lists.infradead.org |
1194 | L: linux-media@vger.kernel.org | |
1195 | S: Maintained | |
934455d7 | 1196 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1197 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1198 | |
1199 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1200 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1201 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1202 | L: linux-arm-kernel@lists.infradead.org | |
1203 | L: linux-media@vger.kernel.org | |
1204 | S: Maintained | |
90d72ac6 | 1205 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1206 | |
d48d38e8 | 1207 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1208 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1209 | M: Magnus Damm <magnus.damm@gmail.com> |
1210 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1211 | W: http://oss.renesas.com |
bbff48f5 | 1212 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1213 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1214 | S: Supported |
1215 | F: arch/arm/mach-shmobile/ | |
1216 | F: drivers/sh/ | |
1217 | ||
66314223 DN |
1218 | ARM/SOCFPGA ARCHITECTURE |
1219 | M: Dinh Nguyen <dinguyen@altera.com> | |
1220 | S: Maintained | |
1221 | F: arch/arm/mach-socfpga/ | |
1222 | ||
1223 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1224 | M: Dinh Nguyen <dinguyen@altera.com> | |
1225 | S: Maintained | |
1226 | F: drivers/clk/socfpga/ | |
1227 | ||
65ebcc11 SK |
1228 | ARM/STI ARCHITECTURE |
1229 | M: Srinivas Kandagatla <srinivas.kandagatla@st.com> | |
1230 | M: Stuart Menefy <stuart.menefy@st.com> | |
1231 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1232 | L: kernel@stlinux.com | |
1233 | W: http://www.stlinux.com | |
1234 | S: Maintained | |
1235 | F: arch/arm/mach-sti/ | |
1236 | ||
2b7a52a4 | 1237 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1238 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1239 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1240 | S: Maintained |
1241 | ||
1bbd7089 | 1242 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1243 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1244 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1245 | S: Maintained | |
1246 | ||
2b7a52a4 | 1247 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1248 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1249 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1250 | S: Maintained |
1251 | ||
98ad6e3b | 1252 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1253 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1254 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1255 | W: http://www.mcuos.com |
1256 | S: Maintained | |
4e89e8f6 | 1257 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1258 | F: drivers/input/keyboard/w90p910_keypad.c |
1259 | F: drivers/input/touchscreen/w90p910_ts.c | |
1260 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1261 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1262 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1263 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1264 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1265 | F: drivers/usb/host/ehci-w90x900.c |
1266 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1267 | |
54274d71 | 1268 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1269 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1270 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1271 | S: Supported | |
1272 | F: arch/arm/mach-u300/ | |
1273 | F: drivers/i2c/busses/i2c-stu300.c | |
1274 | F: drivers/rtc/rtc-coh901331.c | |
1275 | F: drivers/watchdog/coh901327_wdt.c | |
1276 | F: drivers/dma/coh901318* | |
87572880 LW |
1277 | F: drivers/mfd/ab3100* |
1278 | F: drivers/rtc/rtc-ab3100.c | |
1279 | F: drivers/rtc/rtc-coh901331.c | |
1280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1281 | |
87572880 | 1282 | ARM/Ux500 ARM ARCHITECTURE |
e4651a9f | 1283 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1284 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1285 | S: Maintained | |
1286 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1287 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1288 | F: drivers/dma/ste_dma40* |
e4651a9f | 1289 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1290 | F: drivers/mfd/abx500* |
1291 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1292 | F: drivers/mfd/dbx500* |
1293 | F: drivers/mfd/db8500* | |
1294 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1295 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1296 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1298 | |
d4275354 | 1299 | ARM/VFP SUPPORT |
8b58be88 | 1300 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1301 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1302 | W: http://www.arm.linux.org.uk/ |
1303 | S: Maintained | |
1304 | F: arch/arm/vfp/ | |
1305 | ||
e66b6d8e MV |
1306 | ARM/VOIPAC PXA270 SUPPORT |
1307 | M: Marek Vasut <marek.vasut@gmail.com> | |
1308 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1309 | S: Maintained | |
1310 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1311 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1312 | |
04529fe2 TP |
1313 | ARM/VT8500 ARM ARCHITECTURE |
1314 | M: Tony Prisk <linux@prisktech.co.nz> | |
1315 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1316 | S: Maintained | |
1317 | F: arch/arm/mach-vt8500/ | |
41fd91b4 | 1318 | F: drivers/clocksource/vt8500_timer.c |
560746eb | 1319 | F: drivers/i2c/busses/i2c-wmt.c |
41fd91b4 TP |
1320 | F: drivers/mmc/host/wmt-sdmmc.c |
1321 | F: drivers/pwm/pwm-vt8500.c | |
1322 | F: drivers/rtc/rtc-vt8500.c | |
1323 | F: drivers/tty/serial/vt8500_serial.c | |
4f31102b | 1324 | F: drivers/usb/host/ehci-platform.c |
41fd91b4 | 1325 | F: drivers/usb/host/uhci-platform.c |
04529fe2 TP |
1326 | F: drivers/video/vt8500lcdfb.* |
1327 | F: drivers/video/wm8505fb* | |
1328 | F: drivers/video/wmt_ge_rops.* | |
04529fe2 | 1329 | |
e66b6d8e MV |
1330 | ARM/ZIPIT Z2 SUPPORT |
1331 | M: Marek Vasut <marek.vasut@gmail.com> | |
1332 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1333 | S: Maintained | |
1334 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1335 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1336 | |
51f29d44 MS |
1337 | ARM/ZYNQ ARCHITECTURE |
1338 | M: Michal Simek <michal.simek@xilinx.com> | |
1339 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1340 | W: http://wiki.xilinx.com | |
1341 | T: git git://git.xilinx.com/linux-xlnx.git | |
1342 | S: Supported | |
1343 | F: arch/arm/mach-zynq/ | |
bd2a337a | 1344 | F: drivers/cpuidle/cpuidle-zynq.c |
51f29d44 | 1345 | |
b8f9879e WD |
1346 | ARM SMMU DRIVER |
1347 | M: Will Deacon <will.deacon@arm.com> | |
1348 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1349 | S: Maintained | |
1350 | F: drivers/iommu/arm-smmu.c | |
1351 | ||
38074229 CM |
1352 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1353 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1354 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1355 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1356 | S: Maintained | |
1357 | F: arch/arm64/ | |
d19766ec | 1358 | F: Documentation/arm64/ |
38074229 | 1359 | |
9d7005f9 LP |
1360 | AS3645A LED FLASH CONTROLLER DRIVER |
1361 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
1362 | L: linux-media@vger.kernel.org | |
1363 | T: git git://linuxtv.org/media_tree.git | |
1364 | S: Maintained | |
1365 | F: drivers/media/i2c/as3645a.c | |
1366 | F: include/media/as3645a.h | |
1367 | ||
d58de038 GJ |
1368 | ASC7621 HARDWARE MONITOR DRIVER |
1369 | M: George Joseph <george.joseph@fairview5.com> | |
1370 | L: lm-sensors@lm-sensors.org | |
1371 | S: Maintained | |
1372 | F: Documentation/hwmon/asc7621 | |
1373 | F: drivers/hwmon/asc7621.c | |
1374 | ||
b229ece9 | 1375 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1376 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1377 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1378 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1379 | W: http://acpi4asus.sf.net |
85091b71 | 1380 | S: Maintained |
b229ece9 CC |
1381 | F: drivers/platform/x86/asus*.c |
1382 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1383 | |
953a6479 | 1384 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
ab5f8c6e | 1385 | M: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 1386 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1387 | S: Maintained |
679655da JP |
1388 | F: Documentation/crypto/async-tx-api.txt |
1389 | F: crypto/async_tx/ | |
1390 | F: drivers/dma/ | |
1391 | F: include/linux/dmaengine.h | |
1392 | F: include/linux/async_tx.h | |
b3e5f263 | 1393 | |
a1867d36 | 1394 | AT24 EEPROM DRIVER |
14d77c4d | 1395 | M: Wolfram Sang <wsa@the-dreams.de> |
a1867d36 WS |
1396 | L: linux-i2c@vger.kernel.org |
1397 | S: Maintained | |
1398 | F: drivers/misc/eeprom/at24.c | |
1399 | F: include/linux/i2c/at24.h | |
1400 | ||
e7839f25 | 1401 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1402 | M: "Ed L. Cashin" <ecashin@coraid.com> |
eecdf226 | 1403 | W: http://support.coraid.com/support/linux |
1da177e4 | 1404 | S: Supported |
679655da JP |
1405 | F: Documentation/aoe/ |
1406 | F: drivers/block/aoe/ | |
1da177e4 | 1407 | |
9a10a870 | 1408 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1409 | M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> |
9a10a870 JP |
1410 | L: linux-wireless@vger.kernel.org |
1411 | S: Supported | |
1412 | F: drivers/net/wireless/ath/* | |
1413 | ||
fa1c114f | 1414 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1415 | M: Jiri Slaby <jirislaby@gmail.com> |
1416 | M: Nick Kossifidis <mickflemm@gmail.com> | |
fe8e0844 | 1417 | M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> |
fa1c114f JS |
1418 | L: linux-wireless@vger.kernel.org |
1419 | L: ath5k-devel@lists.ath5k.org | |
72c706b7 | 1420 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1421 | S: Maintained |
fa451753 | 1422 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1423 | |
12e62d6f KV |
1424 | ATHEROS ATH6KL WIRELESS DRIVER |
1425 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1426 | L: linux-wireless@vger.kernel.org | |
1427 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
58cfb681 | 1428 | T: git git://github.com/kvalo/ath.git |
12e62d6f KV |
1429 | S: Supported |
1430 | F: drivers/net/wireless/ath/ath6kl/ | |
1431 | ||
f078f209 | 1432 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1433 | M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> |
1434 | M: Jouni Malinen <jouni@qca.qualcomm.com> | |
1435 | M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> | |
1436 | M: Senthil Balasubramanian <senthilb@qca.qualcomm.com> | |
f078f209 LR |
1437 | L: linux-wireless@vger.kernel.org |
1438 | L: ath9k-devel@lists.ath9k.org | |
72c706b7 | 1439 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1440 | S: Supported |
fa451753 | 1441 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1442 | |
2be7d22f VK |
1443 | WILOCITY WIL6210 WIRELESS DRIVER |
1444 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1445 | L: linux-wireless@vger.kernel.org | |
1446 | L: wil6210@qca.qualcomm.com | |
1447 | S: Supported | |
1448 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1449 | F: drivers/net/wireless/ath/wil6210/ | |
1450 | ||
1d7e1e6b CL |
1451 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1452 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1453 | L: linux-wireless@vger.kernel.org | |
1454 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1455 | S: Maintained | |
1456 | F: drivers/net/wireless/ath/carl9170/ | |
1457 | ||
2c2a6172 LT |
1458 | ATK0110 HWMON DRIVER |
1459 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1460 | L: lm-sensors@lm-sensors.org | |
1461 | S: Maintained | |
1462 | F: drivers/hwmon/asus_atk0110.c | |
1463 | ||
6f69a6d7 | 1464 | ATI_REMOTE2 DRIVER |
8b58be88 | 1465 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1466 | S: Maintained |
679655da | 1467 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1468 | |
7ae115b4 | 1469 | ATLX ETHERNET DRIVERS |
8b58be88 | 1470 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1471 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1472 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1473 | W: http://sourceforge.net/projects/atl1 |
1474 | W: http://atl1.sourceforge.net | |
1475 | S: Maintained | |
2b133ad6 | 1476 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1477 | |
1da177e4 | 1478 | ATM |
8b58be88 | 1479 | M: Chas Williams <chas@cmf.nrl.navy.mil> |
476604de | 1480 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1481 | L: netdev@vger.kernel.org |
1da177e4 LT |
1482 | W: http://linux-atm.sourceforge.net |
1483 | S: Maintained | |
679655da JP |
1484 | F: drivers/atm/ |
1485 | F: include/linux/atm* | |
c117ab84 | 1486 | F: include/uapi/linux/atm* |
1da177e4 | 1487 | |
04ac2f46 | 1488 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1489 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1490 | S: Maintained |
1491 | F: drivers/mmc/host/atmel-mci.c | |
1492 | F: drivers/mmc/host/atmel-mci-regs.h | |
1493 | ||
a1cfac48 | 1494 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1495 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1496 | S: Supported |
df621252 | 1497 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1498 | |
b414dc16 NF |
1499 | ATMEL DMA DRIVER |
1500 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1501 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1502 | S: Supported | |
1503 | F: drivers/dma/at_hdmac.c | |
1504 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1505 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1506 | |
888f2804 LD |
1507 | ATMEL I2C DRIVER |
1508 | M: Ludovic Desroches <ludovic.desroches@atmel.com> | |
1509 | L: linux-i2c@vger.kernel.org | |
1510 | S: Supported | |
1511 | F: drivers/i2c/busses/i2c-at91.c | |
1512 | ||
15515545 JW |
1513 | ATMEL ISI DRIVER |
1514 | M: Josh Wu <josh.wu@atmel.com> | |
1515 | L: linux-media@vger.kernel.org | |
1516 | S: Supported | |
f2294c2d | 1517 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1518 | F: include/media/atmel-isi.h |
1519 | ||
8f4c79ce | 1520 | ATMEL LCDFB DRIVER |
8b58be88 | 1521 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1522 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1523 | S: Maintained |
679655da JP |
1524 | F: drivers/video/atmel_lcdfb.c |
1525 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1526 | |
89e5785f | 1527 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1528 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1529 | S: Supported |
9f2f381f | 1530 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1531 | |
754ce4f2 | 1532 | ATMEL SPI DRIVER |
a02875a6 | 1533 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1534 | S: Supported |
9df92e6c | 1535 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1536 | |
e9cb1c5a NF |
1537 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1538 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1539 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1540 | S: Supported | |
1541 | F: drivers/misc/atmel_tclib.c | |
1542 | F: drivers/clocksource/tcb_clksrc.c | |
1543 | ||
ff2675d6 JW |
1544 | ATMEL TSADCC DRIVER |
1545 | M: Josh Wu <josh.wu@atmel.com> | |
1546 | L: linux-input@vger.kernel.org | |
1547 | S: Supported | |
1548 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1549 | ||
914a3f3b | 1550 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1551 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1552 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1553 | S: Supported |
679655da | 1554 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1555 | |
1da177e4 | 1556 | ATMEL WIRELESS DRIVER |
8b58be88 | 1557 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1558 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1559 | W: http://www.thekelleys.org.uk/atmel |
1560 | W: http://atmelwlandriver.sourceforge.net/ | |
1561 | S: Maintained | |
679655da | 1562 | F: drivers/net/wireless/atmel* |
1da177e4 | 1563 | |
26780d9e BG |
1564 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
1565 | M: Bradley Grove <linuxdrivers@attotech.com> | |
1566 | L: linux-scsi@vger.kernel.org | |
1567 | W: http://www.attotech.com | |
1568 | S: Supported | |
1569 | F: drivers/scsi/esas2r | |
1570 | ||
a92b7b80 | 1571 | AUDIT SUBSYSTEM |
8b58be88 JP |
1572 | M: Al Viro <viro@zeniv.linux.org.uk> |
1573 | M: Eric Paris <eparis@redhat.com> | |
b9a06207 | 1574 | L: linux-audit@redhat.com (subscribers-only) |
ad3f9a22 | 1575 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1577 | S: Maintained |
679655da | 1578 | F: include/linux/audit.h |
c117ab84 | 1579 | F: include/uapi/linux/audit.h |
679655da | 1580 | F: kernel/audit* |
a92b7b80 | 1581 | |
70e84049 | 1582 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1583 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1584 | W: http://miguelojeda.es/auxdisplay.htm |
1585 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1586 | S: Maintained |
679655da JP |
1587 | F: drivers/auxdisplay/ |
1588 | F: include/linux/cfag12864b.h | |
70e84049 | 1589 | |
5f97f7f9 | 1590 | AVR32 ARCHITECTURE |
e336f61f HCE |
1591 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1592 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 | 1593 | W: http://www.atmel.com/products/AVR32/ |
249d9d9d | 1594 | W: http://mirror.egtvedt.no/avr32linux.org/ |
5f97f7f9 | 1595 | W: http://avrfreaks.net/ |
e336f61f | 1596 | S: Maintained |
679655da | 1597 | F: arch/avr32/ |
5f97f7f9 HS |
1598 | |
1599 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1600 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1601 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
1602 | S: Maintained | |
679655da | 1603 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1604 | |
1da177e4 | 1605 | AX.25 NETWORK LAYER |
8b58be88 | 1606 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 1607 | L: linux-hams@vger.kernel.org |
d34cb28a | 1608 | W: http://www.linux-ax25.org/ |
1da177e4 | 1609 | S: Maintained |
c117ab84 | 1610 | F: include/uapi/linux/ax25.h |
679655da JP |
1611 | F: include/net/ax25.h |
1612 | F: net/ax25/ | |
1da177e4 | 1613 | |
d5269395 | 1614 | AZ6007 DVB DRIVER |
1b2c14b4 | 1615 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d5269395 MCC |
1616 | L: linux-media@vger.kernel.org |
1617 | W: http://linuxtv.org | |
1618 | T: git git://linuxtv.org/media_tree.git | |
1619 | S: Maintained | |
1620 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1621 | ||
6777376e HV |
1622 | AZTECH FM RADIO RECEIVER DRIVER |
1623 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
1624 | L: linux-media@vger.kernel.org | |
1625 | T: git git://linuxtv.org/media_tree.git | |
1626 | W: http://linuxtv.org | |
1627 | S: Maintained | |
1628 | F: drivers/media/radio/radio-aztech* | |
1629 | ||
e2d1d6c0 | 1630 | B43 WIRELESS DRIVER |
8b58be88 | 1631 | M: Stefano Brivio <stefano.brivio@polimi.it> |
e2d1d6c0 | 1632 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1633 | L: b43-dev@lists.infradead.org |
491b26b4 | 1634 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1635 | S: Maintained |
679655da | 1636 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1637 | |
1638 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1639 | M: Larry Finger <Larry.Finger@lwfinger.net> |
1640 | M: Stefano Brivio <stefano.brivio@polimi.it> | |
e2d1d6c0 | 1641 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1642 | L: b43-dev@lists.infradead.org |
491b26b4 | 1643 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1644 | S: Maintained |
679655da | 1645 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1646 | |
300abeb5 | 1647 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1648 | M: Richard Purdie <rpurdie@rpsys.net> |
6212de88 | 1649 | M: Jingoo Han <jg1.han@samsung.com> |
300abeb5 | 1650 | S: Maintained |
679655da JP |
1651 | F: drivers/video/backlight/ |
1652 | F: include/linux/backlight.h | |
300abeb5 | 1653 | |
c6c8fea2 SE |
1654 | BATMAN ADVANCED |
1655 | M: Marek Lindner <lindner_marek@yahoo.de> | |
1656 | M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> | |
cf9ab887 | 1657 | M: Antonio Quartulli <ordex@autistici.org> |
c6c8fea2 SE |
1658 | L: b.a.t.m.a.n@lists.open-mesh.org |
1659 | W: http://www.open-mesh.org/ | |
1660 | S: Maintained | |
1661 | F: net/batman-adv/ | |
1662 | ||
e2d1d6c0 | 1663 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1664 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
1665 | L: linux-hams@vger.kernel.org |
1666 | W: http://www.baycom.org/~tom/ham/ham.html | |
1667 | S: Maintained | |
679655da | 1668 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 | 1669 | |
cafe5635 | 1670 | BCACHE (BLOCK LAYER CACHE) |
47cd2eb0 | 1671 | M: Kent Overstreet <kmo@daterainc.com> |
cafe5635 KO |
1672 | L: linux-bcache@vger.kernel.org |
1673 | W: http://bcache.evilpiepirate.org | |
1674 | S: Maintained: | |
1675 | F: drivers/md/bcache/ | |
1676 | ||
e2d1d6c0 | 1677 | BEFS FILE SYSTEM |
55817d3d | 1678 | S: Orphan |
679655da JP |
1679 | F: Documentation/filesystems/befs.txt |
1680 | F: fs/befs/ | |
e2d1d6c0 RD |
1681 | |
1682 | BFS FILE SYSTEM | |
8b58be88 | 1683 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 1684 | S: Maintained |
679655da JP |
1685 | F: Documentation/filesystems/bfs.txt |
1686 | F: fs/bfs/ | |
c117ab84 | 1687 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1688 | |
1394f032 | 1689 | BLACKFIN ARCHITECTURE |
8b58be88 | 1690 | M: Mike Frysinger <vapier@gentoo.org> |
5b93e13f | 1691 | L: uclinux-dist-devel@blackfin.uclinux.org |
e3b2d3f3 BW |
1692 | W: http://blackfin.uclinux.org |
1693 | S: Supported | |
679655da | 1694 | F: arch/blackfin/ |
566da5b2 | 1695 | |
e190d6b1 | 1696 | BLACKFIN EMAC DRIVER |
49afa609 | 1697 | L: uclinux-dist-devel@blackfin.uclinux.org |
e190d6b1 BW |
1698 | W: http://blackfin.uclinux.org |
1699 | S: Supported | |
7b35f033 | 1700 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1701 | |
566da5b2 | 1702 | BLACKFIN RTC DRIVER |
8b58be88 | 1703 | M: Mike Frysinger <vapier.adi@gmail.com> |
49afa609 | 1704 | L: uclinux-dist-devel@blackfin.uclinux.org |
566da5b2 MF |
1705 | W: http://blackfin.uclinux.org |
1706 | S: Supported | |
679655da | 1707 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1708 | |
936ed49a | 1709 | BLACKFIN SDH DRIVER |
109ec8c3 | 1710 | M: Sonic Zhang <sonic.zhang@analog.com> |
936ed49a MF |
1711 | L: uclinux-dist-devel@blackfin.uclinux.org |
1712 | W: http://blackfin.uclinux.org | |
1713 | S: Supported | |
1714 | F: drivers/mmc/host/bfin_sdh.c | |
1715 | ||
1394f032 | 1716 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1717 | M: Sonic Zhang <sonic.zhang@analog.com> |
49afa609 | 1718 | L: uclinux-dist-devel@blackfin.uclinux.org |
e3b2d3f3 BW |
1719 | W: http://blackfin.uclinux.org |
1720 | S: Supported | |
8460241e | 1721 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1722 | |
1e6d320f | 1723 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1724 | M: Mike Frysinger <vapier.adi@gmail.com> |
49afa609 | 1725 | L: uclinux-dist-devel@blackfin.uclinux.org |
1e6d320f BW |
1726 | W: http://blackfin.uclinux.org |
1727 | S: Supported | |
679655da | 1728 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1729 | |
d24ecfcc | 1730 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1731 | M: Sonic Zhang <sonic.zhang@analog.com> |
49afa609 | 1732 | L: uclinux-dist-devel@blackfin.uclinux.org |
d24ecfcc BW |
1733 | W: http://blackfin.uclinux.org/ |
1734 | S: Supported | |
679655da | 1735 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1736 | |
1e204377 SJ |
1737 | BLACKFIN MEDIA DRIVER |
1738 | M: Scott Jiang <scott.jiang.linux@gmail.com> | |
1739 | L: uclinux-dist-devel@blackfin.uclinux.org | |
1740 | W: http://blackfin.uclinux.org/ | |
1741 | S: Supported | |
1742 | F: drivers/media/platform/blackfin/ | |
1743 | F: drivers/media/i2c/adv7183* | |
1744 | F: drivers/media/i2c/vs6624* | |
1745 | ||
b54cf35a JSM |
1746 | BLINKM RGB LED DRIVER |
1747 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
1748 | S: Maintained | |
1749 | F: drivers/leds/leds-blinkm.c | |
1750 | ||
1da177e4 | 1751 | BLOCK LAYER |
8b58be88 | 1752 | M: Jens Axboe <axboe@kernel.dk> |
08deed1e | 1753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1754 | S: Maintained |
679655da | 1755 | F: block/ |
1da177e4 | 1756 | |
2b54aaef | 1757 | BLOCK2MTD DRIVER |
8b58be88 | 1758 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
1759 | L: linux-mtd@lists.infradead.org |
1760 | S: Maintained | |
679655da | 1761 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1762 | |
63fbd24e | 1763 | BLUETOOTH DRIVERS |
8b58be88 | 1764 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1765 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1766 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 1767 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 1768 | W: http://www.bluez.org/ |
22e7a424 MH |
1769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1771 | S: Maintained |
679655da | 1772 | F: drivers/bluetooth/ |
1da177e4 | 1773 | |
63fbd24e | 1774 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1775 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1776 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1777 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
1778 | L: linux-bluetooth@vger.kernel.org |
1779 | W: http://www.bluez.org/ | |
22e7a424 MH |
1780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1781 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1782 | S: Maintained |
679655da JP |
1783 | F: net/bluetooth/ |
1784 | F: include/net/bluetooth/ | |
1da177e4 LT |
1785 | |
1786 | BONDING DRIVER | |
8b58be88 | 1787 | M: Jay Vosburgh <fubar@us.ibm.com> |
4cd72c6e | 1788 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 1789 | L: netdev@vger.kernel.org |
ce00f85c JC |
1790 | W: http://sourceforge.net/projects/bonding/ |
1791 | S: Supported | |
679655da | 1792 | F: drivers/net/bonding/ |
c117ab84 | 1793 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1794 | |
39105890 | 1795 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1796 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
1797 | L: netdev@vger.kernel.org |
1798 | S: Supported | |
adfc5217 | 1799 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1800 | |
948c51e6 | 1801 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1802 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
1803 | L: netdev@vger.kernel.org |
1804 | S: Supported | |
adfc5217 JK |
1805 | F: drivers/net/ethernet/broadcom/bnx2.* |
1806 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1807 | |
4d9d2cb0 | 1808 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1809 | M: Eilon Greenstein <eilong@broadcom.com> |
4d9d2cb0 ET |
1810 | L: netdev@vger.kernel.org |
1811 | S: Supported | |
adfc5217 | 1812 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1813 | |
af4b8e37 | 1814 | BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE |
497a045d CD |
1815 | M: Christian Daudt <bcm@fixthebug.org> |
1816 | L: bcm-kernel-feedback-list@broadcom.com | |
af4b8e37 CD |
1817 | T: git git://git.github.com/broadcom/bcm11351 |
1818 | S: Maintained | |
1819 | F: arch/arm/mach-bcm/ | |
1820 | F: arch/arm/boot/dts/bcm113* | |
1821 | F: arch/arm/boot/dts/bcm281* | |
1822 | F: arch/arm/configs/bcm_defconfig | |
1823 | F: drivers/mmc/host/sdhci_bcm_kona.c | |
1824 | F: drivers/clocksource/bcm_kona_timer.c | |
1825 | ||
f680f25c SW |
1826 | BROADCOM BCM2835 ARM ARCHICTURE |
1827 | M: Stephen Warren <swarren@wwwdotorg.org> | |
1828 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) | |
1829 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1830 | S: Maintained | |
1831 | F: arch/arm/mach-bcm2835/ | |
1832 | F: arch/arm/boot/dts/bcm2835* | |
1833 | F: arch/arm/configs/bcm2835_defconfig | |
1834 | F: drivers/*/*bcm2835* | |
1835 | ||
948c51e6 | 1836 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
99bbd929 | 1837 | M: Nithin Nayak Sujir <nsujir@broadcom.com> |
8b58be88 | 1838 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
1839 | L: netdev@vger.kernel.org |
1840 | S: Supported | |
adfc5217 | 1841 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1842 | |
a9533e7e HP |
1843 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1844 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 1845 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 1846 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 1847 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 1848 | L: linux-wireless@vger.kernel.org |
5615171c | 1849 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 1850 | S: Supported |
f62ebdd5 | 1851 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1852 | |
9958d6f9 BPG |
1853 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1854 | M: Bhanu Prakash Gollapudi <bprakash@broadcom.com> | |
1855 | L: linux-scsi@vger.kernel.org | |
1856 | S: Supported | |
1857 | F: drivers/scsi/bnx2fc/ | |
1858 | ||
6a6b5ad0 EW |
1859 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
1860 | M: Eddie Wai <eddie.wai@broadcom.com> | |
1861 | L: linux-scsi@vger.kernel.org | |
1862 | S: Supported | |
1863 | F: drivers/scsi/bnx2i/ | |
1864 | ||
c9678d86 RM |
1865 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1866 | M: Rafał Miłecki <zajec5@gmail.com> | |
1867 | L: linux-wireless@vger.kernel.org | |
1868 | S: Maintained | |
1869 | F: drivers/bcma/ | |
1870 | F: include/linux/bcma/ | |
1871 | ||
7725ccfd | 1872 | BROCADE BFA FC SCSI DRIVER |
37d80839 VMG |
1873 | M: Anil Gurumurthy <agurumur@brocade.com> |
1874 | M: Vijaya Mohan Guvva <vmohan@brocade.com> | |
455518e7 JP |
1875 | L: linux-scsi@vger.kernel.org |
1876 | S: Supported | |
1877 | F: drivers/scsi/bfa/ | |
7725ccfd | 1878 | |
8b230ed8 RM |
1879 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1880 | M: Rasesh Mody <rmody@brocade.com> | |
8b230ed8 RM |
1881 | L: netdev@vger.kernel.org |
1882 | S: Supported | |
f844a0ea | 1883 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1884 | |
5cdf7f76 | 1885 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1886 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
1887 | L: linux-scsi@vger.kernel.org |
1888 | S: Supported | |
679655da JP |
1889 | F: block/bsg.c |
1890 | F: include/linux/bsg.h | |
c117ab84 | 1891 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1892 | |
af39917d CL |
1893 | BT87X AUDIO DRIVER |
1894 | M: Clemens Ladisch <clemens@ladisch.de> | |
1895 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
1896 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1897 | S: Maintained | |
1898 | F: Documentation/sound/alsa/Bt87x.txt | |
1899 | F: sound/pci/bt87x.c | |
1900 | ||
ff1d5c2f | 1901 | BT8XXGPIO DRIVER |
eb032b98 | 1902 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
1903 | W: http://bu3sch.de/btgpio.php |
1904 | S: Maintained | |
72dbb705 | 1905 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1906 | |
eb1eb04f | 1907 | BTRFS FILE SYSTEM |
9c106405 | 1908 | M: Chris Mason <chris.mason@fusionio.com> |
eb1eb04f JP |
1909 | L: linux-btrfs@vger.kernel.org |
1910 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1911 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1912 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1913 | S: Maintained |
679655da JP |
1914 | F: Documentation/filesystems/btrfs.txt |
1915 | F: fs/btrfs/ | |
eb1eb04f | 1916 | |
1da177e4 | 1917 | BTTV VIDEO4LINUX DRIVER |
1b2c14b4 | 1918 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
661263b5 | 1919 | L: linux-media@vger.kernel.org |
96b6aba0 | 1920 | W: http://linuxtv.org |
275ffde4 | 1921 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1922 | S: Odd fixes |
679655da | 1923 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1924 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1925 | |
1f34923c KA |
1926 | BUSLOGIC SCSI DRIVER |
1927 | M: Khalid Aziz <khalid@gonehiking.org> | |
1928 | L: linux-scsi@vger.kernel.org | |
1929 | S: Maintained | |
1930 | F: drivers/scsi/BusLogic.* | |
1931 | F: drivers/scsi/FlashPoint.* | |
1932 | ||
af39917d CL |
1933 | C-MEDIA CMI8788 DRIVER |
1934 | M: Clemens Ladisch <clemens@ladisch.de> | |
1935 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
1936 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1937 | S: Maintained | |
1938 | F: sound/pci/oxygen/ | |
1939 | ||
2141355f MS |
1940 | C6X ARCHITECTURE |
1941 | M: Mark Salter <msalter@redhat.com> | |
1942 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
1943 | L: linux-c6x-dev@linux-c6x.org | |
1944 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1945 | S: Maintained | |
1946 | F: arch/c6x/ | |
1947 | ||
a5432f5a | 1948 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1949 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
1950 | L: linux-cachefs@redhat.com |
1951 | S: Supported | |
1952 | F: Documentation/filesystems/caching/cachefiles.txt | |
1953 | F: fs/cachefiles/ | |
1954 | ||
c815ca39 HV |
1955 | CADET FM/AM RADIO RECEIVER DRIVER |
1956 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
1957 | L: linux-media@vger.kernel.org | |
1958 | T: git git://linuxtv.org/media_tree.git | |
1959 | W: http://linuxtv.org | |
1960 | S: Maintained | |
1961 | F: drivers/media/radio/radio-cadet* | |
1962 | ||
77d5140f | 1963 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1964 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 1965 | L: linux-media@vger.kernel.org |
275ffde4 | 1966 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1967 | S: Maintained |
679655da | 1968 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1969 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1970 | |
201b6bab | 1971 | CAIF NETWORK LAYER |
5c574f50 | 1972 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
201b6bab JP |
1973 | L: netdev@vger.kernel.org |
1974 | S: Supported | |
1975 | F: Documentation/networking/caif/ | |
1976 | F: drivers/net/caif/ | |
c117ab84 | 1977 | F: include/uapi/linux/caif/ |
201b6bab JP |
1978 | F: include/net/caif/ |
1979 | F: net/caif/ | |
1980 | ||
77dac90f | 1981 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1982 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
1983 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
1984 | L: discuss@x86-64.org |
1985 | S: Maintained | |
679655da JP |
1986 | F: arch/x86/kernel/pci-calgary_64.c |
1987 | F: arch/x86/kernel/tce_64.c | |
1988 | F: arch/x86/include/asm/calgary.h | |
1989 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1990 | |
e2d1d6c0 | 1991 | CAN NETWORK LAYER |
8d15d386 | 1992 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
1caa60b6 | 1993 | L: linux-can@vger.kernel.org |
ec78213a | 1994 | W: http://gitorious.org/linux-can |
405cc273 | 1995 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1996 | S: Maintained |
8d15d386 | 1997 | F: net/can/ |
8d15d386 | 1998 | F: include/linux/can/core.h |
c117ab84 CEB |
1999 | F: include/uapi/linux/can.h |
2000 | F: include/uapi/linux/can/bcm.h | |
2001 | F: include/uapi/linux/can/raw.h | |
2002 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 2003 | |
4261a204 | 2004 | CAN NETWORK DRIVERS |
8b58be88 | 2005 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 2006 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 2007 | L: linux-can@vger.kernel.org |
ec78213a | 2008 | W: http://gitorious.org/linux-can |
405cc273 | 2009 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 2010 | S: Maintained |
8d15d386 OH |
2011 | F: drivers/net/can/ |
2012 | F: include/linux/can/dev.h | |
8d15d386 | 2013 | F: include/linux/can/platform/ |
c117ab84 CEB |
2014 | F: include/uapi/linux/can/error.h |
2015 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 2016 | |
95d16c72 JM |
2017 | CAPABILITIES |
2018 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
2019 | L: linux-security-module@vger.kernel.org | |
6305902c | 2020 | S: Supported |
95d16c72 | 2021 | F: include/linux/capability.h |
c117ab84 | 2022 | F: include/uapi/linux/capability.h |
95d16c72 | 2023 | F: security/capability.c |
6305902c | 2024 | F: security/commoncap.c |
38a94118 | 2025 | F: kernel/capability.c |
95d16c72 | 2026 | |
b8154542 | 2027 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 2028 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 SR |
2029 | L: linuxppc-dev@lists.ozlabs.org |
2030 | L: cbe-oss-dev@lists.ozlabs.org | |
b8154542 AB |
2031 | W: http://www.ibm.com/developerworks/power/cell/ |
2032 | S: Supported | |
679655da | 2033 | F: arch/powerpc/include/asm/cell*.h |
679655da | 2034 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 2035 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
2036 | F: arch/powerpc/oprofile/*cell* |
2037 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 2038 | |
9030aaf9 | 2039 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 2040 | M: Sage Weil <sage@inktank.com> |
82593f87 | 2041 | L: ceph-devel@vger.kernel.org |
09d90327 | 2042 | W: http://ceph.com/ |
fb99f881 | 2043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
2044 | S: Supported |
2045 | F: Documentation/filesystems/ceph.txt | |
14430813 JP |
2046 | F: fs/ceph/ |
2047 | F: net/ceph/ | |
2048 | F: include/linux/ceph/ | |
2049 | F: include/linux/crush/ | |
9030aaf9 | 2050 | |
18332a80 | 2051 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 2052 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 2053 | S: Orphan |
679655da JP |
2054 | F: Documentation/usb/WUSB-Design-overview.txt |
2055 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
2056 | F: drivers/usb/host/hwa-hc.c |
2057 | F: drivers/usb/host/whci/ | |
679655da JP |
2058 | F: drivers/usb/wusbcore/ |
2059 | F: include/linux/usb/wusb* | |
18332a80 | 2060 | |
70e84049 | 2061 | CFAG12864B LCD DRIVER |
8b58be88 | 2062 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2063 | W: http://miguelojeda.es/auxdisplay.htm |
2064 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2065 | S: Maintained |
679655da JP |
2066 | F: drivers/auxdisplay/cfag12864b.c |
2067 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
2068 | |
2069 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 2070 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
2071 | W: http://miguelojeda.es/auxdisplay.htm |
2072 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 2073 | S: Maintained |
679655da JP |
2074 | F: drivers/auxdisplay/cfag12864bfb.c |
2075 | F: include/linux/cfag12864b.h | |
70e84049 | 2076 | |
704232c2 | 2077 | CFG80211 and NL80211 |
8b58be88 | 2078 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 2079 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
2080 | W: http://wireless.kernel.org/ |
2081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
2082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 2083 | S: Maintained |
c117ab84 | 2084 | F: include/uapi/linux/nl80211.h |
679655da JP |
2085 | F: include/net/cfg80211.h |
2086 | F: net/wireless/* | |
2087 | X: net/wireless/wext* | |
704232c2 | 2088 | |
46e64261 GKH |
2089 | CHAR and MISC DRIVERS |
2090 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 2091 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 2092 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 2093 | S: Supported |
46e64261 GKH |
2094 | F: drivers/char/* |
2095 | F: drivers/misc/* | |
2096 | ||
0a920b5b | 2097 | CHECKPATCH |
8b58be88 | 2098 | M: Andy Whitcroft <apw@canonical.com> |
10d83f07 JP |
2099 | M: Joe Perches <joe@perches.com> |
2100 | S: Maintained | |
679655da | 2101 | F: scripts/checkpatch.pl |
0a920b5b | 2102 | |
f8407f26 HW |
2103 | CHINESE DOCUMENTATION |
2104 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 2105 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
2106 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
2107 | S: Maintained | |
2108 | F: Documentation/zh_CN/ | |
2109 | ||
2721ea2c AS |
2110 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
2111 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
2112 | L: linux-usb@vger.kernel.org | |
2113 | S: Maintained | |
2114 | F: drivers/usb/chipidea/ | |
2115 | ||
641cb85e | 2116 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 2117 | M: Christian Benvenuti <benve@cisco.com> |
001e1c1d | 2118 | M: Sujith Sankar <ssujith@cisco.com> |
2119 | M: Govindarajulu Varadarajan <govindarajulu90@gmail.com> | |
5c6652f5 NP |
2120 | M: Neel Patel <neepatel@cisco.com> |
2121 | M: Nishank Trivedi <nistrive@cisco.com> | |
7063fbf2 | 2122 | S: Supported |
a6a5580c | 2123 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 2124 | |
2b7a52a4 | 2125 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 2126 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
2127 | L: netdev@vger.kernel.org |
2128 | S: Maintained | |
57d0b7a0 | 2129 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 2130 | |
2b7a52a4 | 2131 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 2132 | M: Lennert Buytenhek <kernel@wantstofly.org> |
6372594a | 2133 | L: linux-usb@vger.kernel.org |
2b7a52a4 | 2134 | S: Maintained |
679655da | 2135 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 2136 | |
d9e9d82c | 2137 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 2138 | M: Timur Tabi <timur@tabi.org> |
93711660 | 2139 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
c4ef9bc4 | 2140 | S: Odd Fixes |
679655da | 2141 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 2142 | |
94574d9a KRW |
2143 | CLEANCACHE API |
2144 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
2145 | L: linux-kernel@vger.kernel.org | |
2146 | S: Maintained | |
2147 | F: mm/cleancache.c | |
2148 | F: include/linux/cleancache.h | |
2149 | ||
d4275354 | 2150 | CLK API |
8b58be88 | 2151 | M: Russell King <linux@arm.linux.org.uk> |
37417046 | 2152 | S: Maintained |
d4275354 RK |
2153 | F: include/linux/clk.h |
2154 | ||
9222d247 JS |
2155 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
2156 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2157 | M: Thomas Gleixner <tglx@linutronix.de> | |
2158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core | |
2159 | S: Supported | |
2160 | F: drivers/clocksource | |
2161 | ||
5df6d737 | 2162 | CISCO FCOE HBA DRIVER |
8fc89a79 HP |
2163 | M: Hiral Patel <hiralpat@cisco.com> |
2164 | M: Suma Ramars <sramars@cisco.com> | |
d7e01dc6 | 2165 | M: Brian Uchino <buchino@cisco.com> |
5df6d737 AJ |
2166 | L: linux-scsi@vger.kernel.org |
2167 | S: Supported | |
2a99921a | 2168 | F: drivers/scsi/fnic/ |
5df6d737 | 2169 | |
529aa8cb TLSC |
2170 | CMPC ACPI DRIVER |
2171 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2172 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2173 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2174 | S: Supported |
2175 | F: drivers/platform/x86/classmate-laptop.c | |
2176 | ||
74425eee | 2177 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2178 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2179 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 | 2180 | M: Nicolas Palix <nicolas.palix@imag.fr> |
c00b5110 | 2181 | M: Michal Marek <mmarek@suse.cz> |
26de9c26 | 2182 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
c00b5110 | 2183 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
74425eee NP |
2184 | W: http://coccinelle.lip6.fr/ |
2185 | S: Supported | |
4b92b2aa | 2186 | F: Documentation/coccinelle.txt |
74425eee NP |
2187 | F: scripts/coccinelle/ |
2188 | F: scripts/coccicheck | |
2189 | ||
1da177e4 | 2190 | CODA FILE SYSTEM |
8b58be88 | 2191 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2192 | M: coda@cs.cmu.edu |
2193 | L: codalist@coda.cs.cmu.edu | |
2194 | W: http://www.coda.cs.cmu.edu/ | |
2195 | S: Maintained | |
679655da JP |
2196 | F: Documentation/filesystems/coda.txt |
2197 | F: fs/coda/ | |
2198 | F: include/linux/coda*.h | |
c117ab84 | 2199 | F: include/uapi/linux/coda*.h |
1da177e4 | 2200 | |
7704addb | 2201 | COMMON CLK FRAMEWORK |
7704addb MT |
2202 | M: Mike Turquette <mturquette@linaro.org> |
2203 | L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV) | |
2204 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2205 | S: Maintained | |
60bea3b5 SW |
2206 | F: drivers/clk/ |
2207 | X: drivers/clk/clkdev.c | |
7704addb | 2208 | F: include/linux/clk-pr* |
60bea3b5 | 2209 | F: include/linux/clk/ |
7704addb | 2210 | |
e2d1d6c0 | 2211 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2212 | M: Steve French <sfrench@samba.org> |
51223df6 | 2213 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2214 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2215 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2216 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2217 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2218 | S: Supported |
679655da JP |
2219 | F: Documentation/filesystems/cifs.txt |
2220 | F: fs/cifs/ | |
e2d1d6c0 | 2221 | |
1da177e4 | 2222 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2223 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2224 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2225 | S: Maintained |
679655da | 2226 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2227 | |
2228 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2229 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2230 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2231 | S: Maintained |
679655da | 2232 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2233 | |
2234 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2235 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2236 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2237 | S: Maintained |
679655da | 2238 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2239 | |
5411552c | 2240 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2241 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2242 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2243 | S: Maintained |
679655da | 2244 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2245 | |
949be0f7 | 2246 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2247 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2248 | L: accessrunner-general@lists.sourceforge.net |
2249 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2250 | S: Maintained |
679655da | 2251 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2252 | |
e2d1d6c0 | 2253 | CONFIGFS |
d6351db2 JB |
2254 | M: Joel Becker <jlbec@evilplan.org> |
2255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2256 | S: Supported |
679655da JP |
2257 | F: fs/configfs/ |
2258 | F: include/linux/configfs.h | |
e2d1d6c0 | 2259 | |
acb9c1b2 | 2260 | CONNECTOR |
8b58be88 | 2261 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2262 | L: netdev@vger.kernel.org |
2263 | S: Maintained | |
2264 | F: drivers/connector/ | |
2265 | ||
fb3a0fb6 | 2266 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2267 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2268 | M: Li Zefan <lizefan@huawei.com> |
fb3a0fb6 | 2269 | L: containers@lists.linux-foundation.org |
12340313 | 2270 | L: cgroups@vger.kernel.org |
860ca0e6 | 2271 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2272 | S: Maintained |
679655da JP |
2273 | F: include/linux/cgroup* |
2274 | F: kernel/cgroup* | |
8ca739e3 | 2275 | F: mm/*cgroup* |
fb3a0fb6 | 2276 | |
bebe4678 | 2277 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2278 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2279 | L: lm-sensors@lm-sensors.org |
2280 | S: Maintained | |
679655da JP |
2281 | F: Documentation/hwmon/coretemp |
2282 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2283 | |
1da177e4 | 2284 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2285 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2286 | W: http://www.fi.muni.cz/~kas/cosa/ |
2287 | S: Maintained | |
679655da | 2288 | F: drivers/net/wan/cosa* |
1da177e4 | 2289 | |
4371ee35 | 2290 | CPMAC ETHERNET DRIVER |
8b58be88 | 2291 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2292 | L: netdev@vger.kernel.org |
2293 | S: Maintained | |
b544dbac | 2294 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2295 | |
1da177e4 | 2296 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2297 | M: Rafael J. Wysocki <rjw@sisk.pl> |
45c009a9 | 2298 | M: Viresh Kumar <viresh.kumar@linaro.org> |
bc5f65d4 | 2299 | L: cpufreq@vger.kernel.org |
a6c072c7 | 2300 | L: linux-pm@vger.kernel.org |
1da177e4 | 2301 | S: Maintained |
27209d91 VK |
2302 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
2303 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) | |
679655da JP |
2304 | F: drivers/cpufreq/ |
2305 | F: include/linux/cpufreq.h | |
1da177e4 | 2306 | |
8a67f0ef VK |
2307 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
2308 | M: Viresh Kumar <viresh.kumar@linaro.org> | |
2309 | M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com> | |
2310 | L: cpufreq@vger.kernel.org | |
2311 | L: linux-pm@vger.kernel.org | |
2312 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php | |
2313 | S: Maintained | |
2314 | F: drivers/cpufreq/arm_big_little.h | |
2315 | F: drivers/cpufreq/arm_big_little.c | |
2316 | F: drivers/cpufreq/arm_big_little_dt.c | |
2317 | ||
14d2c34c LP |
2318 | CPUIDLE DRIVER - ARM BIG LITTLE |
2319 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> | |
2320 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2321 | L: linux-pm@vger.kernel.org | |
2322 | L: linux-arm-kernel@lists.infradead.org | |
2323 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2324 | S: Maintained | |
2325 | F: drivers/cpuidle/cpuidle-big_little.c | |
2326 | ||
a8e39c35 DL |
2327 | CPUIDLE DRIVERS |
2328 | M: Rafael J. Wysocki <rjw@sisk.pl> | |
2329 | M: Daniel Lezcano <daniel.lezcano@linaro.org> | |
2330 | L: linux-pm@vger.kernel.org | |
2331 | S: Maintained | |
2332 | T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git | |
2333 | F: drivers/cpuidle/* | |
2334 | F: include/linux/cpuidle.h | |
2335 | ||
1da177e4 | 2336 | CPUID/MSR DRIVER |
8b58be88 | 2337 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 2338 | S: Maintained |
679655da JP |
2339 | F: arch/x86/kernel/cpuid.c |
2340 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2341 | |
7fe2f639 DB |
2342 | CPU POWER MONITORING SUBSYSTEM |
2343 | M: Dominik Brodowski <linux@dominikbrodowski.net> | |
2344 | M: Thomas Renninger <trenn@suse.de> | |
2345 | S: Maintained | |
14430813 | 2346 | F: tools/power/cpupower/ |
7fe2f639 | 2347 | |
ed90fb4a | 2348 | CPUSETS |
f47b89c7 | 2349 | M: Li Zefan <lizefan@huawei.com> |
ed90fb4a | 2350 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2351 | W: http://oss.sgi.com/projects/cpusets/ |
f47b89c7 | 2352 | S: Maintained |
679655da JP |
2353 | F: Documentation/cgroups/cpusets.txt |
2354 | F: include/linux/cpuset.h | |
2355 | F: kernel/cpuset.c | |
ed90fb4a | 2356 | |
1da177e4 | 2357 | CRAMFS FILESYSTEM |
ce00f85c JC |
2358 | W: http://sourceforge.net/projects/cramfs/ |
2359 | S: Orphan | |
679655da JP |
2360 | F: Documentation/filesystems/cramfs.txt |
2361 | F: fs/cramfs/ | |
1da177e4 LT |
2362 | |
2363 | CRIS PORT | |
8b58be88 JP |
2364 | M: Mikael Starvik <starvik@axis.com> |
2365 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 2366 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
2367 | W: http://developer.axis.com |
2368 | S: Maintained | |
679655da | 2369 | F: arch/cris/ |
df621252 | 2370 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2371 | |
2372 | CRYPTO API | |
8b58be88 JP |
2373 | M: Herbert Xu <herbert@gondor.apana.org.au> |
2374 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 2375 | L: linux-crypto@vger.kernel.org |
54e5881d | 2376 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2377 | S: Maintained |
679655da JP |
2378 | F: Documentation/crypto/ |
2379 | F: arch/*/crypto/ | |
2380 | F: crypto/ | |
2381 | F: drivers/crypto/ | |
2382 | F: include/crypto/ | |
1da177e4 | 2383 | |
5b07bd57 | 2384 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2385 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
2386 | L: linux-crypto@vger.kernel.org |
2387 | S: Maintained | |
51a2228a JP |
2388 | F: crypto/ansi_cprng.c |
2389 | F: crypto/rng.c | |
5b07bd57 | 2390 | |
9b4ffa48 | 2391 | CS5535 Audio ALSA driver |
8b58be88 | 2392 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 2393 | S: Maintained |
679655da | 2394 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2395 | |
a910e4a9 SP |
2396 | CW1200 WLAN driver |
2397 | M: Solomon Peachy <pizza@shaftnet.org> | |
2398 | S: Maintained | |
2399 | F: drivers/net/wireless/cw1200/ | |
2400 | ||
6d8425b1 | 2401 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2402 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 2403 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 2404 | L: linux-media@vger.kernel.org |
275ffde4 | 2405 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2406 | W: http://linuxtv.org |
30e10993 | 2407 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2408 | S: Maintained |
679655da | 2409 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2410 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2411 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2412 | |
3f101d91 HV |
2413 | CX2341X MPEG ENCODER HELPER MODULE |
2414 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
2415 | L: linux-media@vger.kernel.org | |
2416 | T: git git://linuxtv.org/media_tree.git | |
2417 | W: http://linuxtv.org | |
2418 | S: Maintained | |
c368360b | 2419 | F: drivers/media/common/cx2341x* |
3f101d91 HV |
2420 | F: include/media/cx2341x* |
2421 | ||
20357578 | 2422 | CX88 VIDEO4LINUX DRIVER |
1b2c14b4 | 2423 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
20357578 MCC |
2424 | L: linux-media@vger.kernel.org |
2425 | W: http://linuxtv.org | |
2426 | T: git git://linuxtv.org/media_tree.git | |
2427 | S: Odd fixes | |
2428 | F: Documentation/video4linux/cx88/ | |
2429 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2430 | |
91952bc0 AP |
2431 | CXD2820R MEDIA DRIVER |
2432 | M: Antti Palosaari <crope@iki.fi> | |
2433 | L: linux-media@vger.kernel.org | |
2434 | W: http://linuxtv.org/ | |
2435 | W: http://palosaari.fi/linux/ | |
2436 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2437 | T: git git://linuxtv.org/anttip/media_tree.git | |
2438 | S: Maintained | |
2439 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2440 | |
e5ec3789 | 2441 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2442 | M: Divy Le Ray <divy@chelsio.com> |
e5ec3789 SW |
2443 | L: netdev@vger.kernel.org |
2444 | W: http://www.chelsio.com | |
2445 | S: Supported | |
f7917c00 | 2446 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2447 | |
2448 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2449 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 2450 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
2451 | W: http://www.openfabrics.org |
2452 | S: Supported | |
679655da | 2453 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2454 | |
be4c9bad RD |
2455 | CXGB4 ETHERNET DRIVER (CXGB4) |
2456 | M: Dimitris Michailidis <dm@chelsio.com> | |
2457 | L: netdev@vger.kernel.org | |
2458 | W: http://www.chelsio.com | |
2459 | S: Supported | |
f7917c00 | 2460 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2461 | |
2462 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2463 | M: Steve Wise <swise@chelsio.com> | |
2464 | L: linux-rdma@vger.kernel.org | |
2465 | W: http://www.openfabrics.org | |
2466 | S: Supported | |
2467 | F: drivers/infiniband/hw/cxgb4/ | |
2468 | ||
5c20a5c7 CL |
2469 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2470 | M: Casey Leedom <leedom@chelsio.com> | |
2471 | L: netdev@vger.kernel.org | |
2472 | W: http://www.chelsio.com | |
2473 | S: Supported | |
f7917c00 | 2474 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2475 | |
b52b97a3 GC |
2476 | STMMAC ETHERNET DRIVER |
2477 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
2478 | L: netdev@vger.kernel.org | |
2479 | W: http://www.stlinux.com | |
2480 | S: Supported | |
7ac6653a | 2481 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2482 | |
1da177e4 | 2483 | CYBERPRO FB DRIVER |
8b58be88 | 2484 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 2485 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
2486 | W: http://www.arm.linux.org.uk/ |
2487 | S: Maintained | |
679655da | 2488 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2489 | |
1da177e4 | 2490 | CYCLADES ASYNC MUX DRIVER |
1da177e4 | 2491 | W: http://www.cyclades.com/ |
d459883e | 2492 | S: Orphan |
c897401b | 2493 | F: drivers/tty/cyclades.c |
679655da | 2494 | F: include/linux/cyclades.h |
c117ab84 | 2495 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2496 | |
2497 | CYCLADES PC300 DRIVER | |
1da177e4 | 2498 | W: http://www.cyclades.com/ |
d459883e | 2499 | S: Orphan |
679655da | 2500 | F: drivers/net/wan/pc300* |
1da177e4 | 2501 | |
402f6ae4 AP |
2502 | CYPRESS_FIRMWARE MEDIA DRIVER |
2503 | M: Antti Palosaari <crope@iki.fi> | |
2504 | L: linux-media@vger.kernel.org | |
2505 | W: http://linuxtv.org/ | |
2506 | W: http://palosaari.fi/linux/ | |
2507 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2508 | T: git git://linuxtv.org/anttip/media_tree.git | |
2509 | S: Maintained | |
2510 | F: drivers/media/common/cypress_firmware* | |
2511 | ||
e3ae3525 | 2512 | CYTTSP TOUCHSCREEN DRIVER |
be9a6f40 | 2513 | M: Ferruh Yigit <fery@cypress.com> |
6305902c | 2514 | L: linux-input@vger.kernel.org |
be9a6f40 | 2515 | S: Supported |
6305902c JP |
2516 | F: drivers/input/touchscreen/cyttsp* |
2517 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2518 | |
1da177e4 | 2519 | DAMA SLAVE for AX.25 |
8b58be88 | 2520 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
2521 | W: http://yaina.de/jreuter/ |
2522 | W: http://www.qsl.net/dl1bke/ | |
2523 | L: linux-hams@vger.kernel.org | |
2524 | S: Maintained | |
679655da JP |
2525 | F: net/ax25/af_ax25.c |
2526 | F: net/ax25/ax25_dev.c | |
2527 | F: net/ax25/ax25_ds_* | |
2528 | F: net/ax25/ax25_in.c | |
2529 | F: net/ax25/ax25_out.c | |
2530 | F: net/ax25/ax25_timer.c | |
2531 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2532 | |
e2d1d6c0 | 2533 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2534 | L: netdev@vger.kernel.org |
5ff77428 | 2535 | S: Orphan |
679655da | 2536 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2537 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2538 | |
2539 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2540 | M: Kurt Garloff <garloff@suse.de> |
e2d1d6c0 | 2541 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2542 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
e2d1d6c0 | 2543 | S: Maintained |
679655da | 2544 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2545 | |
1da177e4 | 2546 | DC395x SCSI driver |
61eee9a7 | 2547 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
2548 | M: Ali Akcaagac <aliakc@web.de> |
2549 | M: Jamie Lenehan <lenehan@twibble.org> | |
1da177e4 | 2550 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2551 | L: dc395x@twibble.org |
1da177e4 LT |
2552 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2553 | S: Maintained | |
679655da JP |
2554 | F: Documentation/scsi/dc395x.txt |
2555 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2556 | |
eb8edb08 | 2557 | DCCP PROTOCOL |
a89d030e | 2558 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 2559 | L: dccp@vger.kernel.org |
c996d8b9 | 2560 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2561 | S: Maintained |
679655da | 2562 | F: include/linux/dccp.h |
c117ab84 | 2563 | F: include/uapi/linux/dccp.h |
679655da JP |
2564 | F: include/linux/tfrc.h |
2565 | F: net/dccp/ | |
eb8edb08 | 2566 | |
1da177e4 | 2567 | DECnet NETWORK LAYER |
1da177e4 LT |
2568 | W: http://linux-decnet.sourceforge.net |
2569 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 2570 | S: Orphan |
679655da JP |
2571 | F: Documentation/networking/decnet.txt |
2572 | F: net/decnet/ | |
1da177e4 LT |
2573 | |
2574 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2575 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 2576 | S: Maintained |
33f810b2 | 2577 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2578 | |
ad8f07cc | 2579 | DELL LAPTOP DRIVER |
8b58be88 | 2580 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
d0944853 | 2581 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 2582 | S: Maintained |
679655da | 2583 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2584 | |
1da177e4 | 2585 | DELL LAPTOP SMM DRIVER |
c5471462 | 2586 | S: Orphan |
679655da | 2587 | F: drivers/char/i8k.c |
c117ab84 | 2588 | F: include/uapi/linux/i8k.h |
1da177e4 | 2589 | |
90563ec4 | 2590 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2591 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 2592 | S: Maintained |
679655da JP |
2593 | F: Documentation/dcdbas.txt |
2594 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2595 | |
0b3f6109 | 2596 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2597 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
0b3f6109 | 2598 | S: Maintained |
36b3a96f | 2599 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2600 | |
5efc75e3 PZ |
2601 | DESIGNWARE USB2 DRD IP DRIVER |
2602 | M: Paul Zimmerman <paulz@synopsys.com> | |
2603 | L: linux-usb@vger.kernel.org | |
2604 | S: Maintained | |
2605 | F: drivers/staging/dwc2/ | |
2606 | ||
94ab23dd FB |
2607 | DESIGNWARE USB3 DRD IP DRIVER |
2608 | M: Felipe Balbi <balbi@ti.com> | |
2609 | L: linux-usb@vger.kernel.org | |
2610 | L: linux-omap@vger.kernel.org | |
2611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2612 | S: Maintained | |
2613 | F: drivers/usb/dwc3/ | |
2614 | ||
89d07767 KP |
2615 | DEVICE FREQUENCY (DEVFREQ) |
2616 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
2617 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
88476d34 | 2618 | L: linux-pm@vger.kernel.org |
89d07767 KP |
2619 | S: Maintained |
2620 | F: drivers/devfreq/ | |
2621 | ||
1da177e4 | 2622 | DEVICE NUMBER REGISTRY |
8b58be88 | 2623 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 2624 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2625 | S: Maintained |
2626 | ||
e2d1d6c0 | 2627 | DEVICE-MAPPER (LVM) |
854ecaad | 2628 | M: Alasdair Kergon <agk@redhat.com> |
8504eed3 | 2629 | M: Mike Snitzer <snitzer@redhat.com> |
854ecaad | 2630 | M: dm-devel@redhat.com |
e2d1d6c0 RD |
2631 | L: dm-devel@redhat.com |
2632 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2633 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2634 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2635 | S: Maintained |
679655da JP |
2636 | F: Documentation/device-mapper/ |
2637 | F: drivers/md/dm* | |
854ecaad | 2638 | F: drivers/md/persistent-data/ |
679655da JP |
2639 | F: include/linux/device-mapper.h |
2640 | F: include/linux/dm-*.h | |
8504eed3 | 2641 | F: include/uapi/linux/dm-*.h |
e2d1d6c0 | 2642 | |
599aa697 LL |
2643 | DIGI NEO AND CLASSIC PCI PRODUCTS |
2644 | M: Lidza Louina <lidza.louina@gmail.com> | |
2645 | L: driverdev-devel@linuxdriverproject.org | |
2646 | S: Maintained | |
2647 | F: drivers/staging/dgnc/ | |
2648 | ||
2649 | DIGI EPCA PCI PRODUCTS | |
2650 | M: Lidza Louina <lidza.louina@gmail.com> | |
2651 | L: driverdev-devel@linuxdriverproject.org | |
2652 | S: Maintained | |
2653 | F: drivers/staging/dgap/ | |
2654 | ||
335d7c58 | 2655 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2656 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
2657 | L: linux-i2c@vger.kernel.org |
2658 | S: Maintained | |
2659 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2660 | ||
e7839f25 | 2661 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2662 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 2663 | S: Maintained |
679655da JP |
2664 | F: Documentation/filesystems/dnotify.txt |
2665 | F: fs/notify/dnotify/ | |
2666 | F: include/linux/dnotify.h | |
1da177e4 LT |
2667 | |
2668 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2669 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
2670 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2671 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2672 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2673 | S: Maintained | |
2674 | ||
4480f15b | 2675 | DISKQUOTA |
8b58be88 | 2676 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 2677 | S: Maintained |
679655da JP |
2678 | F: Documentation/filesystems/quota.txt |
2679 | F: fs/quota/ | |
2680 | F: include/linux/quota*.h | |
c117ab84 | 2681 | F: include/uapi/linux/quota*.h |
1da177e4 | 2682 | |
702686ad BT |
2683 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2684 | M: Bernie Thompson <bernie@plugable.com> | |
2685 | L: linux-fbdev@vger.kernel.org | |
2686 | S: Maintained | |
2687 | W: http://plugable.com/category/projects/udlfb/ | |
2688 | F: drivers/video/udlfb.c | |
2689 | F: include/video/udlfb.h | |
2690 | F: Documentation/fb/udlfb.txt | |
2691 | ||
e7839f25 | 2692 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2693 | M: Christine Caulfield <ccaulfie@redhat.com> |
2694 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 2695 | L: cluster-devel@redhat.com |
5be7b50f | 2696 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2697 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2698 | S: Supported |
679655da | 2699 | F: fs/dlm/ |
5be7b50f | 2700 | |
53b6b3e0 SS |
2701 | DMA BUFFER SHARING FRAMEWORK |
2702 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
2703 | S: Maintained | |
2704 | L: linux-media@vger.kernel.org | |
2705 | L: dri-devel@lists.freedesktop.org | |
2706 | L: linaro-mm-sig@lists.linaro.org | |
2707 | F: drivers/base/dma-buf* | |
2708 | F: include/linux/dma-buf* | |
2709 | F: Documentation/dma-buf-sharing.txt | |
2710 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2711 | ||
b3e5f263 | 2712 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2713 | M: Vinod Koul <vinod.koul@intel.com> |
ab5f8c6e | 2714 | M: Dan Williams <dan.j.williams@intel.com> |
b3e5f263 | 2715 | S: Supported |
679655da JP |
2716 | F: drivers/dma/ |
2717 | F: include/linux/dma* | |
5dbd05d4 VK |
2718 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2719 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2720 | |
b825037d | 2721 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2722 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
2723 | L: lm-sensors@lm-sensors.org |
2724 | S: Maintained | |
679655da JP |
2725 | F: Documentation/hwmon/dme1737 |
2726 | F: drivers/hwmon/dme1737.c | |
b825037d | 2727 | |
5b9c9bf6 | 2728 | DOCKING STATION DRIVER |
8b58be88 | 2729 | M: Shaohua Li <shaohua.li@intel.com> |
5b9c9bf6 | 2730 | L: linux-acpi@vger.kernel.org |
8b59a454 | 2731 | S: Supported |
679655da | 2732 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2733 | |
7d2c86b5 | 2734 | DOCUMENTATION |
5191d566 | 2735 | M: Rob Landley <rob@landley.net> |
795fb7e7 | 2736 | L: linux-doc@vger.kernel.org |
5191d566 | 2737 | T: TBD |
795fb7e7 | 2738 | S: Maintained |
679655da | 2739 | F: Documentation/ |
abbaeff3 | 2740 | |
1da177e4 | 2741 | DOUBLETALK DRIVER |
8b58be88 | 2742 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
2743 | L: blinux-list@redhat.com |
2744 | S: Maintained | |
679655da JP |
2745 | F: drivers/char/dtlk.c |
2746 | F: include/linux/dtlk.h | |
1da177e4 | 2747 | |
e2d1d6c0 | 2748 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2749 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
2750 | L: linux-scsi@vger.kernel.org |
2751 | W: http://www.adaptec.com/ | |
2752 | S: Maintained | |
679655da JP |
2753 | F: drivers/scsi/dpt* |
2754 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2755 | |
b411b363 | 2756 | DRBD DRIVER |
28b8e8d4 JP |
2757 | P: Philipp Reisner |
2758 | P: Lars Ellenberg | |
2759 | M: drbd-dev@lists.linbit.com | |
2760 | L: drbd-user@lists.linbit.com | |
2761 | W: http://www.drbd.org | |
2762 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2763 | T: git git://git.drbd.org/drbd-8.3.git | |
2764 | S: Supported | |
2765 | F: drivers/block/drbd/ | |
2766 | F: lib/lru_cache.c | |
2767 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2768 | |
87544653 | 2769 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2770 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 2771 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2772 | S: Supported |
679655da | 2773 | F: Documentation/kobject.txt |
7cfc51b9 | 2774 | F: drivers/base/ |
679655da | 2775 | F: fs/sysfs/ |
87544653 | 2776 | F: fs/debugfs/ |
679655da | 2777 | F: include/linux/kobj* |
87544653 | 2778 | F: include/linux/debugfs.h |
679655da | 2779 | F: lib/kobj* |
1da177e4 LT |
2780 | |
2781 | DRM DRIVERS | |
8b58be88 | 2782 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 2783 | L: dri-devel@lists.freedesktop.org |
54e5881d | 2784 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2785 | S: Maintained |
679655da | 2786 | F: drivers/gpu/drm/ |
850e9411 | 2787 | F: include/drm/ |
c117ab84 | 2788 | F: include/uapi/drm/ |
1da177e4 | 2789 | |
8daf7473 | 2790 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2791 | M: Daniel Vetter <daniel.vetter@ffwll.ch> |
362132d2 | 2792 | L: intel-gfx@lists.freedesktop.org |
8daf7473 | 2793 | L: dri-devel@lists.freedesktop.org |
38e490fe | 2794 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 | 2795 | S: Supported |
14430813 | 2796 | F: drivers/gpu/drm/i915/ |
8daf7473 | 2797 | F: include/drm/i915* |
c117ab84 | 2798 | F: include/uapi/drm/i915* |
8daf7473 | 2799 | |
398a6d4a KP |
2800 | DRM DRIVERS FOR EXYNOS |
2801 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
2802 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
2803 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
2804 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 2805 | L: dri-devel@lists.freedesktop.org |
25a58030 | 2806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a | 2807 | S: Supported |
14430813 | 2808 | F: drivers/gpu/drm/exynos/ |
398a6d4a | 2809 | F: include/drm/exynos* |
c117ab84 | 2810 | F: include/uapi/drm/exynos* |
398a6d4a | 2811 | |
bd3b49f2 | 2812 | DRM DRIVERS FOR NVIDIA TEGRA |
a5ad7a63 TR |
2813 | M: Thierry Reding <thierry.reding@gmail.com> |
2814 | M: Terje Bergström <tbergstrom@nvidia.com> | |
bd3b49f2 TR |
2815 | L: dri-devel@lists.freedesktop.org |
2816 | L: linux-tegra@vger.kernel.org | |
a5ad7a63 | 2817 | T: git git://anongit.freedesktop.org/tegra/linux.git |
bd3b49f2 | 2818 | S: Maintained |
a5ad7a63 TR |
2819 | F: drivers/gpu/host1x/ |
2820 | F: include/uapi/drm/tegra_drm.h | |
bd3b49f2 TR |
2821 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt |
2822 | ||
598df1ac AK |
2823 | DSBR100 USB FM RADIO DRIVER |
2824 | M: Alexey Klimov <klimov.linux@gmail.com> | |
2825 | L: linux-media@vger.kernel.org | |
2826 | T: git git://linuxtv.org/media_tree.git | |
2827 | S: Maintained | |
2828 | F: drivers/media/radio/dsbr100.c | |
2829 | ||
1da177e4 | 2830 | DSCC4 DRIVER |
8b58be88 | 2831 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 2832 | L: netdev@vger.kernel.org |
1da177e4 | 2833 | S: Maintained |
679655da | 2834 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2835 | |
91952bc0 AP |
2836 | DVB_USB_AF9015 MEDIA DRIVER |
2837 | M: Antti Palosaari <crope@iki.fi> | |
2838 | L: linux-media@vger.kernel.org | |
2839 | W: http://linuxtv.org/ | |
2840 | W: http://palosaari.fi/linux/ | |
2841 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2842 | T: git git://linuxtv.org/anttip/media_tree.git | |
2843 | S: Maintained | |
2844 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2845 | ||
2846 | DVB_USB_AF9035 MEDIA DRIVER | |
2847 | M: Antti Palosaari <crope@iki.fi> | |
2848 | L: linux-media@vger.kernel.org | |
2849 | W: http://linuxtv.org/ | |
2850 | W: http://palosaari.fi/linux/ | |
2851 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2852 | T: git git://linuxtv.org/anttip/media_tree.git | |
2853 | S: Maintained | |
2854 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2855 | ||
2856 | DVB_USB_ANYSEE MEDIA DRIVER | |
2857 | M: Antti Palosaari <crope@iki.fi> | |
2858 | L: linux-media@vger.kernel.org | |
2859 | W: http://linuxtv.org/ | |
2860 | W: http://palosaari.fi/linux/ | |
2861 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2862 | T: git git://linuxtv.org/anttip/media_tree.git | |
2863 | S: Maintained | |
2864 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2865 | ||
2866 | DVB_USB_AU6610 MEDIA DRIVER | |
2867 | M: Antti Palosaari <crope@iki.fi> | |
2868 | L: linux-media@vger.kernel.org | |
2869 | W: http://linuxtv.org/ | |
2870 | W: http://palosaari.fi/linux/ | |
2871 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2872 | T: git git://linuxtv.org/anttip/media_tree.git | |
2873 | S: Maintained | |
2874 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2875 | ||
2876 | DVB_USB_CE6230 MEDIA DRIVER | |
2877 | M: Antti Palosaari <crope@iki.fi> | |
2878 | L: linux-media@vger.kernel.org | |
2879 | W: http://linuxtv.org/ | |
2880 | W: http://palosaari.fi/linux/ | |
2881 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2882 | T: git git://linuxtv.org/anttip/media_tree.git | |
2883 | S: Maintained | |
2884 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2885 | ||
d099dea2 MK |
2886 | DVB_USB_CXUSB MEDIA DRIVER |
2887 | M: Michael Krufky <mkrufky@linuxtv.org> | |
2888 | L: linux-media@vger.kernel.org | |
2889 | W: http://linuxtv.org/ | |
2890 | W: http://github.com/mkrufky | |
2891 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2892 | T: git git://linuxtv.org/media_tree.git | |
2893 | S: Maintained | |
9819da66 | 2894 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2895 | |
91952bc0 | 2896 | DVB_USB_EC168 MEDIA DRIVER |
91952bc0 AP |
2897 | M: Antti Palosaari <crope@iki.fi> |
2898 | L: linux-media@vger.kernel.org | |
2899 | W: http://linuxtv.org/ | |
2900 | W: http://palosaari.fi/linux/ | |
2901 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2902 | T: git git://linuxtv.org/anttip/media_tree.git | |
2903 | S: Maintained | |
91952bc0 | 2904 | F: drivers/media/usb/dvb-usb-v2/ec168* |
91952bc0 | 2905 | |
5560983b | 2906 | DVB_USB_GL861 MEDIA DRIVER |
91952bc0 AP |
2907 | M: Antti Palosaari <crope@iki.fi> |
2908 | L: linux-media@vger.kernel.org | |
2909 | W: http://linuxtv.org/ | |
91952bc0 AP |
2910 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
2911 | T: git git://linuxtv.org/anttip/media_tree.git | |
2912 | S: Maintained | |
5560983b | 2913 | F: drivers/media/usb/dvb-usb-v2/gl861* |
91952bc0 | 2914 | |
8856f5f2 MK |
2915 | DVB_USB_MXL111SF MEDIA DRIVER |
2916 | M: Michael Krufky <mkrufky@linuxtv.org> | |
2917 | L: linux-media@vger.kernel.org | |
2918 | W: http://linuxtv.org/ | |
2919 | W: http://github.com/mkrufky | |
2920 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2921 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2922 | S: Maintained | |
2923 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2924 | ||
91952bc0 AP |
2925 | DVB_USB_RTL28XXU MEDIA DRIVER |
2926 | M: Antti Palosaari <crope@iki.fi> | |
2927 | L: linux-media@vger.kernel.org | |
2928 | W: http://linuxtv.org/ | |
2929 | W: http://palosaari.fi/linux/ | |
2930 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2931 | T: git git://linuxtv.org/anttip/media_tree.git | |
2932 | S: Maintained | |
2933 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2934 | ||
2935 | DVB_USB_V2 MEDIA DRIVER | |
2936 | M: Antti Palosaari <crope@iki.fi> | |
2937 | L: linux-media@vger.kernel.org | |
2938 | W: http://linuxtv.org/ | |
2939 | W: http://palosaari.fi/linux/ | |
2940 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2941 | T: git git://linuxtv.org/anttip/media_tree.git | |
2942 | S: Maintained | |
2943 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2944 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2945 | ||
ac0ac38f | 2946 | DYNAMIC DEBUG |
5c4a97d1 | 2947 | M: Jason Baron <jbaron@akamai.com> |
ac0ac38f JB |
2948 | S: Maintained |
2949 | F: lib/dynamic_debug.c | |
2950 | F: include/linux/dynamic_debug.h | |
2951 | ||
789c7048 | 2952 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2953 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 2954 | S: Maintained |
df621252 | 2955 | F: drivers/tty/serial/dz.* |
789c7048 | 2956 | |
91952bc0 AP |
2957 | E4000 MEDIA DRIVER |
2958 | M: Antti Palosaari <crope@iki.fi> | |
2959 | L: linux-media@vger.kernel.org | |
2960 | W: http://linuxtv.org/ | |
2961 | W: http://palosaari.fi/linux/ | |
2962 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2963 | T: git git://linuxtv.org/anttip/media_tree.git | |
2964 | S: Maintained | |
2965 | F: drivers/media/tuners/e4000* | |
2966 | ||
1da177e4 | 2967 | EATA-DMA SCSI DRIVER |
8b58be88 | 2968 | M: Michael Neuffer <mike@i-Connect.Net> |
7d2c86b5 JP |
2969 | L: linux-eata@i-connect.net |
2970 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 2971 | S: Maintained |
679655da | 2972 | F: drivers/scsi/eata* |
1da177e4 LT |
2973 | |
2974 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2975 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
2976 | L: linux-scsi@vger.kernel.org |
2977 | S: Maintained | |
679655da | 2978 | F: drivers/scsi/eata.c |
1da177e4 LT |
2979 | |
2980 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2981 | M: Michael Neuffer <mike@i-Connect.Net> |
7d2c86b5 JP |
2982 | L: linux-eata@i-connect.net |
2983 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 2984 | S: Maintained |
679655da | 2985 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2986 | |
2987 | EBTABLES | |
8b58be88 | 2988 | M: Bart De Schuymer <bart.de.schuymer@pandora.be> |
d3ab6fde | 2989 | L: netfilter-devel@vger.kernel.org |
1da177e4 LT |
2990 | W: http://ebtables.sourceforge.net/ |
2991 | S: Maintained | |
679655da | 2992 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 2993 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 2994 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 2995 | |
91952bc0 AP |
2996 | EC100 MEDIA DRIVER |
2997 | M: Antti Palosaari <crope@iki.fi> | |
2998 | L: linux-media@vger.kernel.org | |
2999 | W: http://linuxtv.org/ | |
3000 | W: http://palosaari.fi/linux/ | |
3001 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3002 | T: git git://linuxtv.org/anttip/media_tree.git | |
3003 | S: Maintained | |
3004 | F: drivers/media/dvb-frontends/ec100* | |
3005 | ||
237fead6 | 3006 | ECRYPT FILE SYSTEM |
0de9adf2 | 3007 | M: Tyler Hicks <tyhicks@canonical.com> |
a058bfbb | 3008 | L: ecryptfs@vger.kernel.org |
24a923e4 | 3009 | W: http://ecryptfs.org |
6dc7516e | 3010 | W: https://launchpad.net/ecryptfs |
237fead6 | 3011 | S: Supported |
679655da JP |
3012 | F: Documentation/filesystems/ecryptfs.txt |
3013 | F: fs/ecryptfs/ | |
237fead6 | 3014 | |
da9bb1d2 | 3015 | EDAC-CORE |
8b58be88 | 3016 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3017 | L: linux-edac@vger.kernel.org |
0e438e3f | 3018 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 3019 | S: Supported |
679655da | 3020 | F: Documentation/edac.txt |
91445c72 | 3021 | F: drivers/edac/ |
679655da | 3022 | F: include/linux/edac.h |
0e438e3f | 3023 | |
c476c23b | 3024 | EDAC-AMD64 |
8b58be88 | 3025 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 3026 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 3027 | L: linux-edac@vger.kernel.org |
c476c23b | 3028 | W: bluesmoke.sourceforge.net |
487ba8e8 | 3029 | S: Maintained |
c476c23b BP |
3030 | F: drivers/edac/amd64_edac* |
3031 | ||
f65aad41 RB |
3032 | EDAC-CAVIUM |
3033 | M: Ralf Baechle <ralf@linux-mips.org> | |
3034 | M: David Daney <david.daney@cavium.com> | |
3035 | L: linux-edac@vger.kernel.org | |
3036 | L: linux-mips@linux-mips.org | |
3037 | W: bluesmoke.sourceforge.net | |
3038 | S: Supported | |
3039 | F: drivers/edac/octeon_edac* | |
3040 | ||
0e438e3f | 3041 | EDAC-E752X |
8b58be88 JP |
3042 | M: Mark Gross <mark.gross@intel.com> |
3043 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 3044 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3045 | W: bluesmoke.sourceforge.net |
3046 | S: Maintained | |
679655da | 3047 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
3048 | |
3049 | EDAC-E7XXX | |
8b58be88 | 3050 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3051 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3052 | W: bluesmoke.sourceforge.net |
3053 | S: Maintained | |
679655da | 3054 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 3055 | |
77c5f5d2 | 3056 | EDAC-GHES |
1b2c14b4 | 3057 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
77c5f5d2 MCC |
3058 | L: linux-edac@vger.kernel.org |
3059 | W: bluesmoke.sourceforge.net | |
3060 | S: Maintained | |
2caa67a6 | 3061 | F: drivers/edac/ghes_edac.c |
77c5f5d2 | 3062 | |
6bc78404 | 3063 | EDAC-I82443BXGX |
8b58be88 | 3064 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3065 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3066 | W: bluesmoke.sourceforge.net |
3067 | S: Maintained | |
679655da | 3068 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
3069 | |
3070 | EDAC-I3000 | |
8b58be88 | 3071 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 3072 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3073 | W: bluesmoke.sourceforge.net |
3074 | S: Maintained | |
679655da | 3075 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
3076 | |
3077 | EDAC-I5000 | |
8b58be88 | 3078 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 3079 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3080 | W: bluesmoke.sourceforge.net |
3081 | S: Maintained | |
679655da | 3082 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 3083 | |
44c12cb2 | 3084 | EDAC-I5400 |
1b2c14b4 | 3085 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 | 3086 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
3087 | W: bluesmoke.sourceforge.net |
3088 | S: Maintained | |
679655da | 3089 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 3090 | |
3c9c92b6 | 3091 | EDAC-I7300 |
1b2c14b4 | 3092 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
3c9c92b6 MCC |
3093 | L: linux-edac@vger.kernel.org |
3094 | W: bluesmoke.sourceforge.net | |
3095 | S: Maintained | |
3096 | F: drivers/edac/i7300_edac.c | |
3097 | ||
67c89316 | 3098 | EDAC-I7CORE |
1b2c14b4 | 3099 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
67c89316 MCC |
3100 | L: linux-edac@vger.kernel.org |
3101 | W: bluesmoke.sourceforge.net | |
3102 | S: Maintained | |
70aff0ce | 3103 | F: drivers/edac/i7core_edac.c |
67c89316 | 3104 | |
ba9a5918 | 3105 | EDAC-I82975X |
8b58be88 | 3106 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 3107 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 3108 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
3109 | W: bluesmoke.sourceforge.net |
3110 | S: Maintained | |
679655da | 3111 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
3112 | |
3113 | EDAC-PASEMI | |
8b58be88 | 3114 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 3115 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
3116 | W: bluesmoke.sourceforge.net |
3117 | S: Maintained | |
679655da | 3118 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 3119 | |
0e438e3f | 3120 | EDAC-R82600 |
8b58be88 | 3121 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 3122 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
3123 | W: bluesmoke.sourceforge.net |
3124 | S: Maintained | |
679655da | 3125 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 3126 | |
4d096ca7 | 3127 | EDAC-SBRIDGE |
1b2c14b4 | 3128 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
4d096ca7 MCC |
3129 | L: linux-edac@vger.kernel.org |
3130 | W: bluesmoke.sourceforge.net | |
3131 | S: Maintained | |
3132 | F: drivers/edac/sb_edac.c | |
3133 | ||
af39917d CL |
3134 | EDIROL UA-101/UA-1000 DRIVER |
3135 | M: Clemens Ladisch <clemens@ladisch.de> | |
3136 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3137 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3138 | S: Maintained | |
3139 | F: sound/usb/misc/ua101.c | |
3140 | ||
1f7df953 MF |
3141 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
3142 | M: Matt Fleming <matt.fleming@intel.com> | |
3143 | L: linux-efi@vger.kernel.org | |
78bef24e | 3144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
3145 | S: Maintained |
3146 | F: Documentation/x86/efi-stub.txt | |
3147 | F: arch/ia64/kernel/efi.c | |
3148 | F: arch/x86/boot/compressed/eboot.[ch] | |
3149 | F: arch/x86/include/asm/efi.h | |
3150 | F: arch/x86/platform/efi/* | |
a9499fa7 | 3151 | F: drivers/firmware/efi/* |
1f7df953 MF |
3152 | F: include/linux/efi*.h |
3153 | ||
d68772b7 MF |
3154 | EFI VARIABLE FILESYSTEM |
3155 | M: Matthew Garrett <matthew.garrett@nebula.com> | |
3156 | M: Jeremy Kerr <jk@ozlabs.org> | |
3157 | M: Matt Fleming <matt.fleming@intel.com> | |
3158 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git | |
3159 | L: linux-efi@vger.kernel.org | |
3160 | S: Maintained | |
3161 | F: fs/efivarfs/ | |
3162 | ||
85a00d9b PJ |
3163 | EFIFB FRAMEBUFFER DRIVER |
3164 | L: linux-fbdev@vger.kernel.org | |
3165 | M: Peter Jones <pjones@redhat.com> | |
3166 | S: Maintained | |
3167 | F: drivers/video/efifb.c | |
3168 | ||
0bee8d28 JT |
3169 | EFS FILESYSTEM |
3170 | W: http://aeschi.ch.eu.org/efs/ | |
3171 | S: Orphan | |
679655da | 3172 | F: fs/efs/ |
0bee8d28 | 3173 | |
4480f15b | 3174 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
3175 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
3176 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 3177 | L: linux-rdma@vger.kernel.org |
fab97220 | 3178 | S: Supported |
679655da | 3179 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 3180 | |
aa8a9e25 | 3181 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 3182 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
3183 | L: netdev@vger.kernel.org |
3184 | S: Maintained | |
9aa32835 | 3185 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 3186 | |
f0319efe | 3187 | EM28XX VIDEO4LINUX DRIVER |
1b2c14b4 | 3188 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
f0319efe MCC |
3189 | L: linux-media@vger.kernel.org |
3190 | W: http://linuxtv.org | |
3191 | T: git git://linuxtv.org/media_tree.git | |
3192 | S: Maintained | |
3193 | F: drivers/media/usb/em28xx/ | |
3194 | ||
3e3a7d66 | 3195 | EMBEDDED LINUX |
8b58be88 JP |
3196 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
3197 | M: Matt Mackall <mpm@selenic.com> | |
3198 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
3199 | L: linux-embedded@vger.kernel.org |
3200 | S: Maintained | |
3201 | ||
3a1c1d44 | 3202 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 3203 | M: James Smart <james.smart@emulex.com> |
ce00f85c JC |
3204 | L: linux-scsi@vger.kernel.org |
3205 | W: http://sourceforge.net/projects/lpfcxxxx | |
3206 | S: Supported | |
679655da | 3207 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 3208 | |
5f5bac82 | 3209 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 3210 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
3211 | S: Maintained |
3212 | F: drivers/misc/cb710/ | |
3213 | F: drivers/mmc/host/cb710-mmc.* | |
3214 | F: include/linux/cb710.h | |
3215 | ||
931e39a1 ML |
3216 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
3217 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
3218 | S: Maintained | |
2a837449 | 3219 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 3220 | |
ec207dcc GS |
3221 | ENHANCED ERROR HANDLING (EEH) |
3222 | M: Gavin Shan <shangw@linux.vnet.ibm.com> | |
3223 | L: linuxppc-dev@lists.ozlabs.org | |
3224 | S: Supported | |
3225 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
3226 | F: arch/powerpc/kernel/eeh*.c | |
3227 | ||
d5ca9006 | 3228 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 3229 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 3230 | S: Maintained |
084bad91 | 3231 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
3232 | F: drivers/video/s1d13xxxfb.c |
3233 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 3234 | |
1da177e4 | 3235 | ETHERNET BRIDGE |
adbbf69d | 3236 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 3237 | L: bridge@lists.linux-foundation.org |
4c325313 | 3238 | L: netdev@vger.kernel.org |
c996d8b9 | 3239 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 3240 | S: Maintained |
679655da JP |
3241 | F: include/linux/netfilter_bridge/ |
3242 | F: net/bridge/ | |
1da177e4 | 3243 | |
1da177e4 | 3244 | EXT2 FILE SYSTEM |
01971952 | 3245 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 3246 | L: linux-ext4@vger.kernel.org |
1da177e4 | 3247 | S: Maintained |
679655da JP |
3248 | F: Documentation/filesystems/ext2.txt |
3249 | F: fs/ext2/ | |
3250 | F: include/linux/ext2* | |
1da177e4 LT |
3251 | |
3252 | EXT3 FILE SYSTEM | |
01971952 | 3253 | M: Jan Kara <jack@suse.cz> |
8b58be88 | 3254 | M: Andrew Morton <akpm@linux-foundation.org> |
3c373a5f | 3255 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf EM |
3256 | L: linux-ext4@vger.kernel.org |
3257 | S: Maintained | |
679655da JP |
3258 | F: Documentation/filesystems/ext3.txt |
3259 | F: fs/ext3/ | |
72be2ccf EM |
3260 | |
3261 | EXT4 FILE SYSTEM | |
8b58be88 | 3262 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 3263 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 3264 | L: linux-ext4@vger.kernel.org |
08a225f1 | 3265 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3266 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3267 | S: Maintained |
679655da JP |
3268 | F: Documentation/filesystems/ext4.txt |
3269 | F: fs/ext4/ | |
1da177e4 | 3270 | |
c5532b09 MZ |
3271 | Extended Verification Module (EVM) |
3272 | M: Mimi Zohar <zohar@us.ibm.com> | |
3273 | S: Supported | |
3274 | F: security/integrity/evm/ | |
3275 | ||
df6b3cfe MH |
3276 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3277 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3278 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3279 | L: linux-kernel@vger.kernel.org | |
3280 | S: Maintained | |
3281 | F: drivers/extcon/ | |
3282 | F: Documentation/extcon/ | |
3283 | ||
0a79951a JH |
3284 | EXYNOS DP DRIVER |
3285 | M: Jingoo Han <jg1.han@samsung.com> | |
3286 | L: linux-fbdev@vger.kernel.org | |
3287 | S: Maintained | |
3288 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3289 | F: include/video/exynos_dp* |
0a79951a | 3290 | |
33ad3912 DL |
3291 | EXYNOS MIPI DISPLAY DRIVERS |
3292 | M: Inki Dae <inki.dae@samsung.com> | |
3293 | M: Donghwa Lee <dh09.lee@samsung.com> | |
3294 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3295 | L: linux-fbdev@vger.kernel.org | |
3296 | S: Maintained | |
3297 | F: drivers/video/exynos/exynos_mipi* | |
3298 | F: include/video/exynos_mipi* | |
3299 | ||
e53004e2 | 3300 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3301 | M: Jean Delvare <khali@linux-fr.org> |
e53004e2 JD |
3302 | L: lm-sensors@lm-sensors.org |
3303 | S: Maintained | |
679655da JP |
3304 | F: Documentation/hwmon/f71805f |
3305 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3306 | |
eea977ed MB |
3307 | FC0011 TUNER DRIVER |
3308 | M: Michael Buesch <m@bues.ch> | |
3309 | L: linux-media@vger.kernel.org | |
3310 | S: Maintained | |
ccae7af2 MCC |
3311 | F: drivers/media/tuners/fc0011.h |
3312 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3313 | |
91952bc0 AP |
3314 | FC2580 MEDIA DRIVER |
3315 | M: Antti Palosaari <crope@iki.fi> | |
3316 | L: linux-media@vger.kernel.org | |
3317 | W: http://linuxtv.org/ | |
3318 | W: http://palosaari.fi/linux/ | |
3319 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3320 | T: git git://linuxtv.org/anttip/media_tree.git | |
3321 | S: Maintained | |
3322 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3323 | |
88b2dbdb EP |
3324 | FANOTIFY |
3325 | M: Eric Paris <eparis@redhat.com> | |
3326 | S: Maintained | |
3327 | F: fs/notify/fanotify/ | |
3328 | F: include/linux/fanotify.h | |
c117ab84 | 3329 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3330 | |
1da177e4 | 3331 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3332 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
3333 | W: http://www.farsite.co.uk/ |
3334 | S: Supported | |
679655da | 3335 | F: drivers/net/wan/farsync.* |
1da177e4 | 3336 | |
c5408b88 | 3337 | FAULT INJECTION SUPPORT |
8b58be88 | 3338 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 3339 | S: Supported |
679655da JP |
3340 | F: Documentation/fault-injection/ |
3341 | F: lib/fault-inject.c | |
c5408b88 | 3342 | |
cae727db RL |
3343 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3344 | M: Robert Love <robert.w.love@intel.com> | |
f4aaea6d | 3345 | L: fcoe-devel@open-fcoe.org |
cae727db RL |
3346 | W: www.Open-FCoE.org |
3347 | S: Supported | |
3348 | F: drivers/scsi/libfc/ | |
3349 | F: drivers/scsi/fcoe/ | |
3350 | F: include/scsi/fc/ | |
3351 | F: include/scsi/libfc.h | |
3352 | F: include/scsi/libfcoe.h | |
c117ab84 | 3353 | F: include/uapi/scsi/fc/ |
cae727db | 3354 | |
e2d1d6c0 | 3355 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3356 | M: Matthew Wilcox <matthew@wil.cx> |
e2d1d6c0 | 3357 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 3358 | S: Maintained |
679655da JP |
3359 | F: include/linux/fcntl.h |
3360 | F: include/linux/fs.h | |
c117ab84 CEB |
3361 | F: include/uapi/linux/fcntl.h |
3362 | F: include/uapi/linux/fs.h | |
679655da JP |
3363 | F: fs/fcntl.c |
3364 | F: fs/locks.c | |
1da177e4 | 3365 | |
e2d1d6c0 | 3366 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3367 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 3368 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 3369 | S: Maintained |
679655da | 3370 | F: fs/* |
173acc7c | 3371 | |
b26e0ed4 | 3372 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3373 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
3374 | L: lm-sensors@lm-sensors.org |
3375 | S: Maintained | |
d5ca6918 JP |
3376 | F: drivers/hwmon/f75375s.c |
3377 | F: include/linux/f75375s.h | |
b26e0ed4 | 3378 | |
a331b0c3 CL |
3379 | FIREWIRE AUDIO DRIVERS |
3380 | M: Clemens Ladisch <clemens@ladisch.de> | |
3381 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3382 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3383 | S: Maintained | |
3384 | F: sound/firewire/ | |
3385 | ||
eb86ec51 SR |
3386 | FIREWIRE MEDIA DRIVERS (firedtv) |
3387 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
3388 | L: linux-media@vger.kernel.org | |
3389 | L: linux1394-devel@lists.sourceforge.net | |
3390 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3391 | S: Maintained | |
3392 | F: drivers/media/firewire/ | |
3393 | ||
a511ce33 CB |
3394 | FIREWIRE SBP-2 TARGET |
3395 | M: Chris Boot <bootc@bootc.net> | |
3396 | L: linux-scsi@vger.kernel.org | |
3397 | L: target-devel@vger.kernel.org | |
3398 | L: linux1394-devel@lists.sourceforge.net | |
3399 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3400 | S: Maintained | |
3401 | F: drivers/target/sbp/ | |
3402 | ||
7d2c86b5 | 3403 | FIREWIRE SUBSYSTEM |
8b58be88 | 3404 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 3405 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 3406 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3407 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3408 | S: Maintained |
679655da | 3409 | F: drivers/firewire/ |
8f06ce3b SR |
3410 | F: include/linux/firewire.h |
3411 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3412 | F: tools/firewire/ |
e2d1d6c0 RD |
3413 | |
3414 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3415 | M: Ming Lei <ming.lei@canonical.com> |
3416 | L: linux-kernel@vger.kernel.org | |
3417 | S: Maintained | |
679655da JP |
3418 | F: Documentation/firmware_class/ |
3419 | F: drivers/base/firmware*.c | |
3420 | F: include/linux/firmware.h | |
e2d1d6c0 | 3421 | |
f730e3dc | 3422 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
9bb3c446 PK |
3423 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
3424 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> | |
3425 | S: Maintained | |
3426 | F: drivers/block/rsxx/ | |
3427 | ||
8206f664 JK |
3428 | FLOPPY DRIVER |
3429 | M: Jiri Kosina <jkosina@suse.cz> | |
3430 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3431 | S: Odd fixes | |
3432 | F: drivers/block/floppy.c | |
3433 | ||
9c9f32ed AR |
3434 | FMC SUBSYSTEM |
3435 | M: Alessandro Rubini <rubini@gnudd.com> | |
3436 | W: http://www.ohwr.org/projects/fmc-bus | |
3437 | S: Supported | |
3438 | F: drivers/fmc/ | |
3439 | F: include/linux/fmc*.h | |
3440 | F: include/linux/ipmi-fru.h | |
3441 | K: fmc_d.*register | |
3442 | ||
e2d1d6c0 | 3443 | FPU EMULATOR |
8b58be88 | 3444 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 3445 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3446 | S: Maintained |
679655da | 3447 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3448 | |
3449 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3450 | L: netdev@vger.kernel.org |
c173bfac | 3451 | S: Orphan |
679655da JP |
3452 | F: drivers/net/wan/dlci.c |
3453 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3454 | |
3455 | FRAMEBUFFER LAYER | |
5489e948 JCPV |
3456 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
3457 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> | |
c69f677c | 3458 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 3459 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3460 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
5489e948 | 3461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
56be1416 | 3462 | S: Maintained |
679655da | 3463 | F: Documentation/fb/ |
d958c62c | 3464 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3465 | F: drivers/video/ |
3466 | F: include/video/ | |
679655da | 3467 | F: include/linux/fb.h |
c117ab84 CEB |
3468 | F: include/uapi/video/ |
3469 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3470 | |
a57c188e | 3471 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3472 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 3473 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 3474 | S: Maintained |
a57c188e TT |
3475 | F: drivers/video/fsl-diu-fb.* |
3476 | ||
e2d1d6c0 | 3477 | FREESCALE DMA DRIVER |
8b58be88 JP |
3478 | M: Li Yang <leoli@freescale.com> |
3479 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 3480 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 3481 | S: Maintained |
679655da | 3482 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3483 | |
3484 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3485 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 3486 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 3487 | L: linux-i2c@vger.kernel.org |
0d2b405a | 3488 | S: Maintained |
679655da | 3489 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3490 | |
60e8c5ab | 3491 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3492 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 3493 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 3494 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 3495 | S: Maintained |
bad985a1 | 3496 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3497 | F: drivers/video/imxfb.c |
60e8c5ab | 3498 | |
4689a6b1 | 3499 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3500 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
3501 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 3502 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
3503 | L: netdev@vger.kernel.org |
3504 | S: Maintained | |
ec21e2ec | 3505 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3506 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3507 | |
d9e9d82c | 3508 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3509 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3510 | S: Orphan |
679655da JP |
3511 | F: arch/powerpc/sysdev/qe_lib/ |
3512 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3513 | |
b55ef929 | 3514 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3515 | M: Li Yang <leoli@freescale.com> |
6372594a | 3516 | L: linux-usb@vger.kernel.org |
a4724ed6 | 3517 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 3518 | S: Maintained |
5429c731 | 3519 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3520 | |
beaf53bf | 3521 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3522 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 3523 | L: netdev@vger.kernel.org |
a4724ed6 | 3524 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 3525 | S: Maintained |
ec21e2ec | 3526 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3527 | |
d9e9d82c | 3528 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3529 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 3530 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3531 | S: Maintained |
df621252 | 3532 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3533 | |
3534 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3535 | M: Timur Tabi <timur@tabi.org> |
93711660 | 3536 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 3537 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3538 | S: Maintained |
69aefcea JP |
3539 | F: sound/soc/fsl/fsl* |
3540 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3541 | |
1da177e4 | 3542 | FREEVXFS FILESYSTEM |
8b58be88 | 3543 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
3544 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3545 | S: Maintained | |
679655da | 3546 | F: fs/freevxfs/ |
1da177e4 | 3547 | |
71038f52 | 3548 | FREEZER |
8b58be88 JP |
3549 | M: Pavel Machek <pavel@ucw.cz> |
3550 | M: "Rafael J. Wysocki" <rjw@sisk.pl> | |
bf1c138e | 3551 | L: linux-pm@vger.kernel.org |
71038f52 | 3552 | S: Supported |
679655da JP |
3553 | F: Documentation/power/freezing-of-tasks.txt |
3554 | F: include/linux/freezer.h | |
3555 | F: kernel/freezer.c | |
71038f52 | 3556 | |
839a1f79 KRW |
3557 | FRONTSWAP API |
3558 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3559 | L: linux-kernel@vger.kernel.org | |
3560 | S: Maintained | |
3561 | F: mm/frontswap.c | |
3562 | F: include/linux/frontswap.h | |
3563 | ||
a5432f5a | 3564 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3565 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
3566 | L: linux-cachefs@redhat.com |
3567 | S: Supported | |
3568 | F: Documentation/filesystems/caching/ | |
3569 | F: fs/fscache/ | |
3570 | F: include/linux/fscache*.h | |
3571 | ||
f58ad8f5 JK |
3572 | F2FS FILE SYSTEM |
3573 | M: Jaegeuk Kim <jaegeuk.kim@samsung.com> | |
3574 | L: linux-f2fs-devel@lists.sourceforge.net | |
3575 | W: http://en.wikipedia.org/wiki/F2FS | |
3576 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3577 | S: Maintained | |
3578 | F: Documentation/filesystems/f2fs.txt | |
3579 | F: fs/f2fs/ | |
3580 | F: include/linux/f2fs_fs.h | |
3581 | ||
5ab7ffea | 3582 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3583 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 3584 | S: Maintained |
679655da | 3585 | F: arch/frv/ |
1da177e4 | 3586 | |
20b93734 | 3587 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3588 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 3589 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 3590 | S: Maintained |
679655da | 3591 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3592 | |
4da621b6 HK |
3593 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3594 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3595 | M: Heungjun Kim <riverful.kim@samsung.com> | |
3596 | L: linux-media@vger.kernel.org | |
3597 | S: Maintained | |
90d72ac6 | 3598 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3599 | F: include/media/m5mols.h |
3600 | ||
2d24c490 RG |
3601 | FUJITSU TABLET EXTRAS |
3602 | M: Robert Gerlach <khnz@gmx.de> | |
3603 | L: platform-driver-x86@vger.kernel.org | |
3604 | S: Maintained | |
3605 | F: drivers/platform/x86/fujitsu-tablet.c | |
3606 | ||
04578f17 | 3607 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3608 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
3609 | L: fuse-devel@lists.sourceforge.net |
3610 | W: http://fuse.sourceforge.net/ | |
3611 | S: Maintained | |
679655da | 3612 | F: fs/fuse/ |
c117ab84 | 3613 | F: include/uapi/linux/fuse.h |
04578f17 | 3614 | |
1da177e4 | 3615 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3616 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 3617 | L: linux-scsi@vger.kernel.org |
baaea1dc | 3618 | S: Odd Fixes (e.g., new signatures) |
679655da | 3619 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3620 | |
3621 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3622 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
3623 | L: linux-scsi@vger.kernel.org |
3624 | W: http://www.icp-vortex.com/ | |
3625 | S: Supported | |
679655da | 3626 | F: drivers/scsi/gdt* |
1da177e4 | 3627 | |
3169a1c7 HV |
3628 | GEMTEK FM RADIO RECEIVER DRIVER |
3629 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3630 | L: linux-media@vger.kernel.org | |
3631 | T: git git://linuxtv.org/media_tree.git | |
3632 | W: http://linuxtv.org | |
3633 | S: Maintained | |
3634 | F: drivers/media/radio/radio-gemtek* | |
3635 | ||
1c23af90 | 3636 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3637 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 3638 | S: Supported |
679655da JP |
3639 | F: drivers/i2c/busses/i2c-gpio.c |
3640 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3641 | |
92ed1a76 PK |
3642 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3643 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
3644 | L: linux-i2c@vger.kernel.org | |
3645 | S: Supported | |
e7065e20 JD |
3646 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3647 | F: include/linux/i2c-mux-gpio.h | |
3648 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3649 | |
9251ce95 | 3650 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3651 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
3652 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3653 | S: Maintained | |
679655da JP |
3654 | F: drivers/net/wan/c101.c |
3655 | F: drivers/net/wan/hd6457* | |
3656 | F: drivers/net/wan/hdlc* | |
3657 | F: drivers/net/wan/n2.c | |
3658 | F: drivers/net/wan/pc300too.c | |
3659 | F: drivers/net/wan/pci200syn.c | |
3660 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3661 | |
1527aab6 | 3662 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3663 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
3664 | L: linux-arch@vger.kernel.org |
3665 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3666 | S: Maintained | |
14430813 JP |
3667 | F: include/asm-generic/ |
3668 | F: include/uapi/asm-generic/ | |
1527aab6 | 3669 | |
ccb86a69 | 3670 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3671 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 3672 | L: kvm@vger.kernel.org |
ccb86a69 MT |
3673 | S: Supported |
3674 | F: drivers/uio/uio_pci_generic.c | |
3675 | ||
5be7b50f | 3676 | GFS2 FILE SYSTEM |
8b58be88 | 3677 | M: Steven Whitehouse <swhiteho@redhat.com> |
a4644184 | 3678 | L: cluster-devel@redhat.com |
5be7b50f | 3679 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3680 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3681 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3682 | S: Supported |
679655da JP |
3683 | F: Documentation/filesystems/gfs2*.txt |
3684 | F: fs/gfs2/ | |
c117ab84 | 3685 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3686 | |
0a34eb8f | 3687 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3688 | M: Hansjoerg Lipp <hjlipp@web.de> |
3689 | M: Tilman Schmidt <tilman@imap.cc> | |
0a34eb8f HL |
3690 | L: gigaset307x-common@lists.sourceforge.net |
3691 | W: http://gigaset307x.sourceforge.net/ | |
3692 | S: Maintained | |
679655da JP |
3693 | F: Documentation/isdn/README.gigaset |
3694 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3695 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3696 | |
a0dc00b4 | 3697 | GPIO SUBSYSTEM |
e4651a9f | 3698 | M: Linus Walleij <linus.walleij@linaro.org> |
a0dc00b4 | 3699 | S: Maintained |
d15b7179 | 3700 | L: linux-gpio@vger.kernel.org |
98909cf0 | 3701 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3702 | F: drivers/gpio/ |
3703 | F: include/linux/gpio* | |
9b692346 | 3704 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3705 | |
71a6d0af HW |
3706 | GRE DEMULTIPLEXER DRIVER |
3707 | M: Dmitry Kozlov <xeb@mail.ru> | |
3708 | L: netdev@vger.kernel.org | |
3709 | S: Maintained | |
11c26770 JP |
3710 | F: net/ipv4/gre_demux.c |
3711 | F: net/ipv4/gre_offload.c | |
71a6d0af HW |
3712 | F: include/net/gre.h |
3713 | ||
d4c41139 KG |
3714 | GRETH 10/100/1G Ethernet MAC device driver |
3715 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
3716 | L: netdev@vger.kernel.org | |
3717 | S: Maintained | |
a31a96ad | 3718 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3719 | |
e8deeae2 | 3720 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3721 | M: Frank Zago <frank@zago.net> |
661263b5 | 3722 | L: linux-media@vger.kernel.org |
275ffde4 | 3723 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3724 | S: Maintained |
0c0d06ca | 3725 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3726 | |
4b3fa3c4 OL |
3727 | GSPCA GL860 SUBDRIVER |
3728 | M: Olivier Lorin <o.lorin@laposte.net> | |
3729 | L: linux-media@vger.kernel.org | |
275ffde4 | 3730 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3731 | S: Maintained |
0c0d06ca | 3732 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3733 | |
e8deeae2 | 3734 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3735 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 3736 | L: linux-media@vger.kernel.org |
275ffde4 | 3737 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3738 | S: Maintained |
0c0d06ca | 3739 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3740 | |
3741 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3742 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 3743 | L: linux-media@vger.kernel.org |
275ffde4 | 3744 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3745 | S: Maintained |
0c0d06ca | 3746 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3747 | |
261982f1 | 3748 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3749 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 3750 | L: linux-media@vger.kernel.org |
275ffde4 | 3751 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3752 | S: Maintained |
0c0d06ca | 3753 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3754 | |
e8deeae2 | 3755 | GSPCA T613 SUBDRIVER |
8b58be88 | 3756 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 3757 | L: linux-media@vger.kernel.org |
275ffde4 | 3758 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3759 | S: Maintained |
0c0d06ca | 3760 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3761 | |
3762 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3763 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 3764 | L: linux-media@vger.kernel.org |
275ffde4 | 3765 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3766 | S: Maintained |
0c0d06ca | 3767 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3768 | |
aa3c598b EG |
3769 | STK1160 USB VIDEO CAPTURE DRIVER |
3770 | M: Ezequiel Garcia <elezegarcia@gmail.com> | |
3771 | L: linux-media@vger.kernel.org | |
275ffde4 | 3772 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3773 | S: Maintained |
3774 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3775 | |
71a6d0af HW |
3776 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3777 | M: Frank Seidel <frank@f-seidel.de> | |
3778 | L: platform-driver-x86@vger.kernel.org | |
3779 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3780 | S: Maintained | |
3781 | F: drivers/platform/x86/hdaps.c | |
3782 | ||
48fc9e26 HV |
3783 | HDPVR USB VIDEO ENCODER DRIVER |
3784 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
3785 | L: linux-media@vger.kernel.org | |
3786 | T: git git://linuxtv.org/media_tree.git | |
3787 | W: http://linuxtv.org | |
3788 | S: Odd Fixes | |
14430813 | 3789 | F: drivers/media/usb/hdpvr/ |
48fc9e26 | 3790 | |
71a6d0af HW |
3791 | HWPOISON MEMORY FAILURE HANDLING |
3792 | M: Andi Kleen <andi@firstfloor.org> | |
3793 | L: linux-mm@kvack.org | |
3794 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3795 | S: Maintained | |
3796 | F: mm/memory-failure.c | |
3797 | F: mm/hwpoison-inject.c | |
3798 | ||
3799 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3800 | L: linuxppc-dev@lists.ozlabs.org | |
3801 | S: Odd Fixes | |
3802 | F: drivers/tty/hvc/ | |
3803 | ||
5b543965 | 3804 | HARDWARE MONITORING |
9e012c1a | 3805 | M: Jean Delvare <khali@linux-fr.org> |
ca462085 | 3806 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 3807 | L: lm-sensors@lm-sensors.org |
595142e0 | 3808 | W: http://www.lm-sensors.org/ |
9e012c1a | 3809 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3811 | S: Maintained |
047f4ec2 | 3812 | F: Documentation/hwmon/ |
679655da | 3813 | F: drivers/hwmon/ |
047f4ec2 | 3814 | F: include/linux/hwmon*.h |
5b543965 | 3815 | |
844dd05f | 3816 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3817 | M: Matt Mackall <mpm@selenic.com> |
3818 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3819 | S: Odd fixes | |
679655da JP |
3820 | F: Documentation/hw_random.txt |
3821 | F: drivers/char/hw_random/ | |
3822 | F: include/linux/hw_random.h | |
844dd05f | 3823 | |
8b37fcfc OBC |
3824 | HARDWARE SPINLOCK CORE |
3825 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
3826 | S: Maintained | |
3827 | F: Documentation/hwspinlock.txt | |
3828 | F: drivers/hwspinlock/hwspinlock_* | |
3829 | F: include/linux/hwspinlock.h | |
3830 | ||
1da177e4 | 3831 | HARMONY SOUND DRIVER |
ac6aecbf | 3832 | L: linux-parisc@vger.kernel.org |
1da177e4 | 3833 | S: Maintained |
679655da | 3834 | F: sound/parisc/harmony.* |
1da177e4 | 3835 | |
91952bc0 AP |
3836 | HD29L2 MEDIA DRIVER |
3837 | M: Antti Palosaari <crope@iki.fi> | |
3838 | L: linux-media@vger.kernel.org | |
3839 | W: http://linuxtv.org/ | |
3840 | W: http://palosaari.fi/linux/ | |
3841 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3842 | T: git git://linuxtv.org/anttip/media_tree.git | |
3843 | S: Maintained | |
3844 | F: drivers/media/dvb-frontends/hd29l2* | |
3845 | ||
e2d1d6c0 | 3846 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3847 | M: Chirag Kantharia <chirag.kantharia@hp.com> |
e2d1d6c0 RD |
3848 | L: iss_storagedev@hp.com |
3849 | S: Maintained | |
679655da JP |
3850 | F: Documentation/blockdev/cpqarray.txt |
3851 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3852 | |
9257aa49 | 3853 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3854 | M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> |
9257aa49 SC |
3855 | L: iss_storagedev@hp.com |
3856 | S: Supported | |
3857 | F: Documentation/scsi/hpsa.txt | |
3858 | F: drivers/scsi/hpsa*.[ch] | |
3859 | F: include/linux/cciss*.h | |
c117ab84 | 3860 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3861 | |
e2d1d6c0 | 3862 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3863 | M: Mike Miller <mike.miller@hp.com> |
e2d1d6c0 RD |
3864 | L: iss_storagedev@hp.com |
3865 | S: Supported | |
679655da JP |
3866 | F: Documentation/blockdev/cciss.txt |
3867 | F: drivers/block/cciss* | |
3868 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3869 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3870 | |
1da177e4 | 3871 | HFS FILESYSTEM |
6cf515e1 GU |
3872 | L: linux-fsdevel@vger.kernel.org |
3873 | S: Orphan | |
679655da JP |
3874 | F: Documentation/filesystems/hfs.txt |
3875 | F: fs/hfs/ | |
1da177e4 LT |
3876 | |
3877 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3878 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
3879 | L: linux-nvidia@lists.surfsouth.com |
3880 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3881 | S: Maintained | |
679655da | 3882 | F: drivers/video/hgafb.c |
1da177e4 | 3883 | |
4480f15b | 3884 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3885 | M: Pavel Machek <pavel@ucw.cz> |
3886 | M: "Rafael J. Wysocki" <rjw@sisk.pl> | |
bf1c138e | 3887 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 3888 | S: Supported |
679655da JP |
3889 | F: arch/x86/power/ |
3890 | F: drivers/base/power/ | |
3891 | F: kernel/power/ | |
3892 | F: include/linux/suspend.h | |
3893 | F: include/linux/freezer.h | |
3894 | F: include/linux/pm.h | |
679655da | 3895 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3896 | |
4ef4caad | 3897 | HID CORE LAYER |
8b58be88 | 3898 | M: Jiri Kosina <jkosina@suse.cz> |
eb76c5c0 | 3899 | L: linux-input@vger.kernel.org |
54e5881d | 3900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3901 | S: Maintained |
679655da JP |
3902 | F: drivers/hid/ |
3903 | F: include/linux/hid* | |
c117ab84 | 3904 | F: include/uapi/linux/hid* |
4ef4caad | 3905 | |
38bed542 | 3906 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3907 | M: Thomas Gleixner <tglx@linutronix.de> |
75fc2d37 | 3908 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3909 | S: Maintained |
679655da JP |
3910 | F: Documentation/timers/ |
3911 | F: kernel/hrtimer.c | |
88606e80 TG |
3912 | F: kernel/time/clockevents.c |
3913 | F: kernel/time/tick*.* | |
3914 | F: kernel/time/timer_*.c | |
05ed8490 | 3915 | F: include/linux/clockchips.h |
679655da | 3916 | F: include/linux/hrtimer.h |
38bed542 | 3917 | |
1da177e4 | 3918 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3919 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 3920 | S: Orphan |
679655da JP |
3921 | F: drivers/net/hamradio/dmascc.c |
3922 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3923 | |
ede1e6f8 | 3924 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3925 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
3926 | W: http://www.highpoint-tech.com |
3927 | S: Supported | |
679655da JP |
3928 | F: Documentation/scsi/hptiop.txt |
3929 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3930 | |
1da177e4 | 3931 | HIPPI |
8b58be88 | 3932 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
3933 | L: linux-hippi@sunsite.dk |
3934 | S: Maintained | |
679655da | 3935 | F: include/linux/hippidevice.h |
c117ab84 | 3936 | F: include/uapi/linux/if_hippi.h |
679655da | 3937 | F: net/802/hippi.c |
ff5a3b50 | 3938 | F: drivers/net/hippi/ |
1da177e4 | 3939 | |
ff1d2767 | 3940 | HOST AP DRIVER |
8b58be88 | 3941 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 3942 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 3943 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
3944 | W: http://hostap.epitest.fi/ |
3945 | S: Maintained | |
679655da | 3946 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3947 | |
dd8cd779 | 3948 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3949 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 3950 | S: Orphan |
679655da | 3951 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3952 | |
e2d1d6c0 | 3953 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3954 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 3955 | S: Maintained |
7e25d724 | 3956 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3957 | |
7d2c86b5 | 3958 | HPET: High Precision Event Timers driver |
8b58be88 | 3959 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 3960 | S: Maintained |
679655da JP |
3961 | F: Documentation/timers/hpet.txt |
3962 | F: drivers/char/hpet.c | |
3963 | F: include/linux/hpet.h | |
c117ab84 | 3964 | F: include/uapi/linux/hpet.h |
b9b0332f | 3965 | |
e07b5d79 | 3966 | HPET: x86 |
9c5fb19a | 3967 | M: "Venkatesh Pallipadi (Venki)" <venki@google.com> |
b9b0332f | 3968 | S: Maintained |
679655da JP |
3969 | F: arch/x86/kernel/hpet.c |
3970 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3971 | |
1da177e4 | 3972 | HPFS FILESYSTEM |
8b58be88 | 3973 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
3974 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3975 | S: Maintained | |
679655da | 3976 | F: fs/hpfs/ |
1da177e4 | 3977 | |
7d2c86b5 | 3978 | HSO 3G MODEM DRIVER |
8b58be88 | 3979 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
3980 | W: http://www.pharscape.org |
3981 | S: Maintained | |
679655da | 3982 | F: drivers/net/usb/hso.c |
11cd29b0 | 3983 | |
5a18c343 | 3984 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3985 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
3986 | L: linux-input@vger.kernel.org |
3987 | S: Maintained | |
679655da | 3988 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3989 | |
1da177e4 | 3990 | HUGETLB FILESYSTEM |
6d49e352 | 3991 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 3992 | S: Maintained |
679655da | 3993 | F: fs/hugetlbfs/ |
1da177e4 | 3994 | |
05183189 S |
3995 | Hyper-V CORE AND DRIVERS |
3996 | M: K. Y. Srinivasan <kys@microsoft.com> | |
3997 | M: Haiyang Zhang <haiyangz@microsoft.com> | |
3998 | L: devel@linuxdriverproject.org | |
3999 | S: Maintained | |
a4162747 HZ |
4000 | F: arch/x86/include/asm/mshyperv.h |
4001 | F: arch/x86/include/uapi/asm/hyperv.h | |
4002 | F: arch/x86/kernel/cpu/mshyperv.c | |
05183189 | 4003 | F: drivers/hid/hid-hyperv.c |
a4162747 | 4004 | F: drivers/hv/ |
05183189 | 4005 | F: drivers/net/hyperv/ |
a4162747 HZ |
4006 | F: drivers/scsi/storvsc_drv.c |
4007 | F: drivers/video/hyperv_fb.c | |
4008 | F: include/linux/hyperv.h | |
4009 | F: tools/hv/ | |
05183189 | 4010 | |
d85c8a6a JD |
4011 | I2C OVER PARALLEL PORT |
4012 | M: Jean Delvare <khali@linux-fr.org> | |
4013 | L: linux-i2c@vger.kernel.org | |
4014 | S: Maintained | |
4015 | F: Documentation/i2c/busses/i2c-parport | |
4016 | F: Documentation/i2c/busses/i2c-parport-light | |
4017 | F: drivers/i2c/busses/i2c-parport.c | |
4018 | F: drivers/i2c/busses/i2c-parport-light.c | |
4019 | ||
4020 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
4021 | M: Jean Delvare <khali@linux-fr.org> | |
4022 | L: linux-i2c@vger.kernel.org | |
4023 | S: Maintained | |
4024 | F: Documentation/i2c/busses/i2c-ali1535 | |
4025 | F: Documentation/i2c/busses/i2c-ali1563 | |
4026 | F: Documentation/i2c/busses/i2c-ali15x3 | |
4027 | F: Documentation/i2c/busses/i2c-amd756 | |
4028 | F: Documentation/i2c/busses/i2c-amd8111 | |
4029 | F: Documentation/i2c/busses/i2c-i801 | |
4030 | F: Documentation/i2c/busses/i2c-nforce2 | |
4031 | F: Documentation/i2c/busses/i2c-piix4 | |
4032 | F: Documentation/i2c/busses/i2c-sis5595 | |
4033 | F: Documentation/i2c/busses/i2c-sis630 | |
4034 | F: Documentation/i2c/busses/i2c-sis96x | |
4035 | F: Documentation/i2c/busses/i2c-via | |
4036 | F: Documentation/i2c/busses/i2c-viapro | |
4037 | F: drivers/i2c/busses/i2c-ali1535.c | |
4038 | F: drivers/i2c/busses/i2c-ali1563.c | |
4039 | F: drivers/i2c/busses/i2c-ali15x3.c | |
4040 | F: drivers/i2c/busses/i2c-amd756.c | |
4041 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
4042 | F: drivers/i2c/busses/i2c-amd8111.c | |
4043 | F: drivers/i2c/busses/i2c-i801.c | |
4044 | F: drivers/i2c/busses/i2c-isch.c | |
4045 | F: drivers/i2c/busses/i2c-nforce2.c | |
4046 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
4047 | F: drivers/i2c/busses/i2c-piix4.c | |
4048 | F: drivers/i2c/busses/i2c-sis5595.c | |
4049 | F: drivers/i2c/busses/i2c-sis630.c | |
4050 | F: drivers/i2c/busses/i2c-sis96x.c | |
4051 | F: drivers/i2c/busses/i2c-via.c | |
4052 | F: drivers/i2c/busses/i2c-viapro.c | |
4053 | ||
cb7f07a4 NH |
4054 | I2C/SMBUS ISMT DRIVER |
4055 | M: Seth Heasley <seth.heasley@intel.com> | |
4056 | M: Neil Horman <nhorman@tuxdriver.com> | |
4057 | L: linux-i2c@vger.kernel.org | |
4058 | F: drivers/i2c/busses/i2c-ismt.c | |
4059 | F: Documentation/i2c/busses/i2c-ismt | |
4060 | ||
6ea884db | 4061 | I2C/SMBUS STUB DRIVER |
94877548 | 4062 | M: Jean Delvare <khali@linux-fr.org> |
846557d3 | 4063 | L: linux-i2c@vger.kernel.org |
6ea884db | 4064 | S: Maintained |
8547a5bc | 4065 | F: drivers/i2c/i2c-stub.c |
6ea884db | 4066 | |
5b543965 | 4067 | I2C SUBSYSTEM |
14d77c4d | 4068 | M: Wolfram Sang <wsa@the-dreams.de> |
846557d3 | 4069 | L: linux-i2c@vger.kernel.org |
a01064a9 | 4070 | W: http://i2c.wiki.kernel.org/ |
14d77c4d | 4071 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
1da177e4 | 4072 | S: Maintained |
679655da JP |
4073 | F: Documentation/i2c/ |
4074 | F: drivers/i2c/ | |
4075 | F: include/linux/i2c.h | |
03b70d62 | 4076 | F: include/linux/i2c-*.h |
c117ab84 CEB |
4077 | F: include/uapi/linux/i2c.h |
4078 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 4079 | |
d85c8a6a JD |
4080 | I2C-TAOS-EVM DRIVER |
4081 | M: Jean Delvare <khali@linux-fr.org> | |
4082 | L: linux-i2c@vger.kernel.org | |
4083 | S: Maintained | |
4084 | F: Documentation/i2c/busses/i2c-taos-evm | |
4085 | F: drivers/i2c/busses/i2c-taos-evm.c | |
4086 | ||
e8c76eed | 4087 | I2C-TINY-USB DRIVER |
8b58be88 | 4088 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 4089 | L: linux-i2c@vger.kernel.org |
932d1872 | 4090 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 4091 | S: Maintained |
679655da | 4092 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 4093 | |
1da177e4 | 4094 | i386 BOOT CODE |
8b58be88 | 4095 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 4096 | S: Maintained |
679655da | 4097 | F: arch/x86/boot/ |
1da177e4 LT |
4098 | |
4099 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 4100 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 4101 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
4102 | S: Maintained |
4103 | ||
1da177e4 | 4104 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
4105 | M: Tony Luck <tony.luck@intel.com> |
4106 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 4107 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 4108 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 4109 | S: Maintained |
679655da | 4110 | F: arch/ia64/ |
1da177e4 | 4111 | |
956c203c | 4112 | IBM Power in-Nest Crypto Acceleration |
5b88e270 KY |
4113 | M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com> |
4114 | M: Fionnuala Gunter <fin@linux.vnet.ibm.com> | |
956c203c KY |
4115 | L: linux-crypto@vger.kernel.org |
4116 | S: Supported | |
4117 | F: drivers/crypto/nx/ | |
4118 | ||
0e16aafb SJ |
4119 | IBM Power 842 compression accelerator |
4120 | M: Robert Jennings <rcj@linux.vnet.ibm.com> | |
4121 | S: Supported | |
4122 | F: drivers/crypto/nx/nx-842.c | |
4123 | F: include/linux/nx842.h | |
4124 | ||
1da177e4 | 4125 | IBM Power Linux RAID adapter |
8b58be88 | 4126 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 4127 | S: Supported |
679655da | 4128 | F: drivers/scsi/ipr.* |
1da177e4 | 4129 | |
9d348af4 SL |
4130 | IBM Power Virtual Ethernet Device Driver |
4131 | M: Santiago Leon <santil@linux.vnet.ibm.com> | |
4132 | L: netdev@vger.kernel.org | |
4133 | S: Supported | |
9aa32835 | 4134 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 4135 | |
4b7652cc RJ |
4136 | IBM Power Virtual SCSI/FC Device Drivers |
4137 | M: Robert Jennings <rcj@linux.vnet.ibm.com> | |
4138 | L: linux-scsi@vger.kernel.org | |
4139 | S: Supported | |
4140 | F: drivers/scsi/ibmvscsi/ | |
4141 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
4142 | ||
1da177e4 LT |
4143 | IBM ServeRAID RAID DRIVER |
4144 | P: Jack Hammer | |
8b58be88 | 4145 | M: Dave Jeffery <ipslinux@adaptec.com> |
1da177e4 | 4146 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 4147 | S: Supported |
679655da | 4148 | F: drivers/scsi/ips.* |
1da177e4 | 4149 | |
6ed9f9c4 PT |
4150 | ICH LPC AND GPIO DRIVER |
4151 | M: Peter Tyser <ptyser@xes-inc.com> | |
4152 | S: Maintained | |
4153 | F: drivers/mfd/lpc_ich.c | |
4154 | F: drivers/gpio/gpio-ich.c | |
4155 | ||
1e7106fc | 4156 | IDE SUBSYSTEM |
8b58be88 | 4157 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 4158 | L: linux-ide@vger.kernel.org |
8a6e2535 | 4159 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 4160 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 4161 | S: Maintained |
679655da JP |
4162 | F: Documentation/ide/ |
4163 | F: drivers/ide/ | |
4164 | F: include/linux/ide.h | |
1da177e4 | 4165 | |
6cb8c13d IP |
4166 | IDEAPAD LAPTOP EXTRAS DRIVER |
4167 | M: Ike Panhc <ike.pan@canonical.com> | |
4168 | L: platform-driver-x86@vger.kernel.org | |
4169 | W: http://launchpad.net/ideapad-laptop | |
4170 | S: Maintained | |
4171 | F: drivers/platform/x86/ideapad-laptop.c | |
4172 | ||
1ea4c161 AM |
4173 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
4174 | M: Andrey Moiseev <o2g.org.ru@gmail.com> | |
4175 | L: linux-input@vger.kernel.org | |
4176 | W: https://github.com/o2genum/ideapad-slidebar | |
4177 | S: Maintained | |
4178 | F: drivers/input/misc/ideapad_slidebar.c | |
4179 | ||
0f861e8c | 4180 | IDE/ATAPI DRIVERS |
487ba8e8 | 4181 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 4182 | L: linux-ide@vger.kernel.org |
c404c199 | 4183 | S: Maintained |
679655da JP |
4184 | F: Documentation/cdrom/ide-cd |
4185 | F: drivers/ide/ide-cd* | |
1da177e4 | 4186 | |
27471fdb | 4187 | IDLE-I7300 |
8b58be88 | 4188 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 4189 | L: linux-pm@vger.kernel.org |
27471fdb | 4190 | S: Supported |
679655da | 4191 | F: drivers/idle/i7300_idle.c |
27471fdb | 4192 | |
02cf2286 | 4193 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 4194 | M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
8b58be88 | 4195 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
e0af6062 | 4196 | L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) |
02cf2286 | 4197 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 4198 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
4199 | S: Maintained |
4200 | F: net/ieee802154/ | |
68653359 | 4201 | F: net/mac802154/ |
251741b1 | 4202 | F: drivers/net/ieee802154/ |
02cf2286 | 4203 | |
40ad4a30 SY |
4204 | IGUANAWORKS USB IR TRANSCEIVER |
4205 | M: Sean Young <sean@mess.org> | |
4206 | L: linux-media@vger.kernel.org | |
4207 | S: Maintained | |
4208 | F: drivers/media/rc/iguanair.c | |
4209 | ||
9545f86e AP |
4210 | IIO SUBSYSTEM AND DRIVERS |
4211 | M: Jonathan Cameron <jic23@cam.ac.uk> | |
4212 | L: linux-iio@vger.kernel.org | |
4213 | S: Maintained | |
03e7c251 | 4214 | F: drivers/iio/ |
9545f86e AP |
4215 | F: drivers/staging/iio/ |
4216 | ||
65519263 SG |
4217 | IKANOS/ADI EAGLE ADSL USB DRIVER |
4218 | M: Matthieu Castet <castet.matthieu@free.fr> | |
4219 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
4220 | S: Maintained | |
4221 | F: drivers/usb/atm/ueagle-atm.c | |
4222 | ||
e89ab51f GR |
4223 | INA209 HARDWARE MONITOR DRIVER |
4224 | M: Guenter Roeck <linux@roeck-us.net> | |
4225 | L: lm-sensors@lm-sensors.org | |
4226 | S: Maintained | |
4227 | F: Documentation/hwmon/ina209 | |
4228 | F: Documentation/devicetree/bindings/i2c/ina209.txt | |
4229 | F: drivers/hwmon/ina209.c | |
4230 | ||
4231 | INA2XX HARDWARE MONITOR DRIVER | |
4232 | M: Guenter Roeck <linux@roeck-us.net> | |
4233 | L: lm-sensors@lm-sensors.org | |
4234 | S: Maintained | |
4235 | F: Documentation/hwmon/ina2xx | |
4236 | F: drivers/hwmon/ina2xx.c | |
4237 | F: include/linux/platform_data/ina2xx.h | |
4238 | ||
14dc124f SIG |
4239 | INDUSTRY PACK SUBSYSTEM (IPACK) |
4240 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
4241 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
4242 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
4243 | L: industrypack-devel@lists.sourceforge.net | |
4244 | W: http://industrypack.sourceforge.net | |
4245 | S: Maintained | |
4246 | F: drivers/ipack/ | |
4247 | ||
aa7168f4 | 4248 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 4249 | M: Mimi Zohar <zohar@us.ibm.com> |
8912176c | 4250 | M: Dmitry Kasatkin <d.kasatkin@samsung.com> |
aa7168f4 | 4251 | S: Supported |
679655da | 4252 | F: security/integrity/ima/ |
aa7168f4 | 4253 | |
1da177e4 | 4254 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 4255 | L: linux-fbdev@vger.kernel.org |
843393d3 | 4256 | S: Orphan |
679655da | 4257 | F: drivers/video/imsttfb.c |
1da177e4 LT |
4258 | |
4259 | INFINIBAND SUBSYSTEM | |
db9fd848 | 4260 | M: Roland Dreier <roland@kernel.org> |
8b58be88 JP |
4261 | M: Sean Hefty <sean.hefty@intel.com> |
4262 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 4263 | L: linux-rdma@vger.kernel.org |
605841f5 | 4264 | W: http://www.openfabrics.org/ |
8a6e2535 | 4265 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 4266 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 4267 | S: Supported |
679655da JP |
4268 | F: Documentation/infiniband/ |
4269 | F: drivers/infiniband/ | |
c117ab84 | 4270 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 4271 | |
c9f04f58 | 4272 | INOTIFY |
8b58be88 JP |
4273 | M: John McCutchan <john@johnmccutchan.com> |
4274 | M: Robert Love <rlove@rlove.org> | |
4275 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 4276 | S: Maintained |
679655da JP |
4277 | F: Documentation/filesystems/inotify.txt |
4278 | F: fs/notify/inotify/ | |
4279 | F: include/linux/inotify.h | |
c117ab84 | 4280 | F: include/uapi/linux/inotify.h |
c9f04f58 | 4281 | |
e2d1d6c0 | 4282 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
4283 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
4284 | M: Dmitry Torokhov <dtor@mail.ru> | |
e2d1d6c0 | 4285 | L: linux-input@vger.kernel.org |
8a6e2535 | 4286 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 4287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 4288 | S: Maintained |
679655da | 4289 | F: drivers/input/ |
f4eea7e2 | 4290 | F: include/linux/input.h |
c117ab84 | 4291 | F: include/uapi/linux/input.h |
f4eea7e2 | 4292 | F: include/linux/input/ |
e2d1d6c0 | 4293 | |
3267a87f HR |
4294 | INPUT MULTITOUCH (MT) PROTOCOL |
4295 | M: Henrik Rydberg <rydberg@euromail.se> | |
4296 | L: linux-input@vger.kernel.org | |
7f9c2454 | 4297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
4298 | S: Maintained |
4299 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 4300 | F: drivers/input/input-mt.c |
3267a87f HR |
4301 | K: \b(ABS|SYN)_MT_ |
4302 | ||
4ac13e17 DJ |
4303 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
4304 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
7106891a DJ |
4305 | M: Lukasz Dorau <lukasz.dorau@intel.com> |
4306 | M: Maciej Patelczyk <maciej.patelczyk@intel.com> | |
4ac13e17 | 4307 | M: Dave Jiang <dave.jiang@intel.com> |
4ac13e17 | 4308 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
4309 | T: git git://git.code.sf.net/p/intel-sas/isci |
4310 | S: Supported | |
4ac13e17 | 4311 | F: drivers/scsi/isci/ |
4ac13e17 | 4312 | |
26717172 LB |
4313 | INTEL IDLE DRIVER |
4314 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 4315 | L: linux-pm@vger.kernel.org |
08deed1e | 4316 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
4317 | S: Supported |
4318 | F: drivers/idle/intel_idle.c | |
4319 | ||
9eb8ef74 | 4320 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 4321 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 4322 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4323 | S: Maintained |
679655da JP |
4324 | F: Documentation/fb/intelfb.txt |
4325 | F: drivers/video/intelfb/ | |
9eb8ef74 | 4326 | |
1da177e4 | 4327 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 4328 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 4329 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 4330 | S: Maintained |
679655da | 4331 | F: drivers/video/i810/ |
1da177e4 | 4332 | |
f4a9bc4c | 4333 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4334 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 4335 | L: platform-driver-x86@vger.kernel.org |
f4a9bc4c TS |
4336 | W: http://www.lesswatts.org/projects/acpi/ |
4337 | S: Supported | |
679655da | 4338 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4339 | |
1da177e4 | 4340 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4341 | M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
1da177e4 | 4342 | S: Maintained |
679655da JP |
4343 | F: arch/x86/kernel/microcode_core.c |
4344 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4345 | |
248a9dc3 | 4346 | INTEL I/OAT DMA DRIVER |
ab5f8c6e | 4347 | M: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 4348 | S: Maintained |
679655da | 4349 | F: drivers/dma/ioat* |
248a9dc3 | 4350 | |
6c8909b4 | 4351 | INTEL IOMMU (VT-d) |
8b58be88 | 4352 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 4353 | L: iommu@lists.linux-foundation.org |
54e5881d | 4354 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4355 | S: Supported |
3fb39615 | 4356 | F: drivers/iommu/intel-iommu.c |
679655da | 4357 | F: include/linux/intel-iommu.h |
6c8909b4 | 4358 | |
b3e5f263 | 4359 | INTEL IOP-ADMA DMA DRIVER |
ab5f8c6e | 4360 | M: Dan Williams <dan.j.williams@intel.com> |
1dd8372d | 4361 | S: Odd fixes |
679655da | 4362 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4363 | |
9251ce95 | 4364 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4365 | M: Krzysztof Halasa <khc@pm.waw.pl> |
9251ce95 | 4366 | S: Maintained |
679655da JP |
4367 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4368 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4369 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4370 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4371 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4372 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4373 | |
844dd05f | 4374 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4375 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 4376 | S: Maintained |
679655da | 4377 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4378 | |
1bff6529 | 4379 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e) |
8b58be88 JP |
4380 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
4381 | M: Jesse Brandeburg <jesse.brandeburg@intel.com> | |
4382 | M: Bruce Allan <bruce.w.allan@intel.com> | |
0d164401 JK |
4383 | M: Carolyn Wyborny <carolyn.wyborny@intel.com> |
4384 | M: Don Skidmore <donald.c.skidmore@intel.com> | |
4385 | M: Greg Rose <gregory.v.rose@intel.com> | |
dee1ad47 | 4386 | M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> |
0d164401 | 4387 | M: Alex Duyck <alexander.h.duyck@intel.com> |
8b58be88 | 4388 | M: John Ronciak <john.ronciak@intel.com> |
f6fde11a | 4389 | M: Tushar Dave <tushar.n.dave@intel.com> |
dcd01faf | 4390 | L: e1000-devel@lists.sourceforge.net |
f6fde11a | 4391 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4392 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4393 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4395 | S: Supported |
0d164401 JK |
4396 | F: Documentation/networking/e100.txt |
4397 | F: Documentation/networking/e1000.txt | |
4398 | F: Documentation/networking/e1000e.txt | |
4399 | F: Documentation/networking/igb.txt | |
4400 | F: Documentation/networking/igbvf.txt | |
4401 | F: Documentation/networking/ixgb.txt | |
4402 | F: Documentation/networking/ixgbe.txt | |
4403 | F: Documentation/networking/ixgbevf.txt | |
1bff6529 | 4404 | F: Documentation/networking/i40e.txt |
dee1ad47 | 4405 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4406 | |
ca907a90 SY |
4407 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4408 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 4409 | L: linux-wireless@vger.kernel.org |
ca907a90 | 4410 | S: Maintained |
679655da | 4411 | F: Documentation/networking/README.ipw2100 |
679655da | 4412 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4413 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4414 | |
4bd96a7a | 4415 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4416 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
4417 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
4418 | M: Shane Wang <shane.wang@intel.com> |
4419 | L: tboot-devel@lists.sourceforge.net | |
4420 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4421 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4422 | S: Supported |
4423 | F: Documentation/intel_txt.txt | |
4424 | F: include/linux/tboot.h | |
4425 | F: arch/x86/kernel/tboot.c | |
4426 | ||
8a70da82 | 4427 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4428 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 IPG |
4429 | M: linux-wimax@intel.com |
4430 | L: wimax@linuxwimax.org | |
4431 | S: Supported | |
4432 | W: http://linuxwimax.org | |
679655da JP |
4433 | F: Documentation/wimax/README.i2400m |
4434 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4435 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4436 | |
1c0ce89c SG |
4437 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4438 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 4439 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 4440 | S: Supported |
efa3144e WYG |
4441 | F: drivers/net/wireless/iwlegacy/ |
4442 | ||
b481de9c | 4443 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4444 | M: Johannes Berg <johannes.berg@intel.com> |
6161b02b | 4445 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
a0bf797f | 4446 | M: Intel Linux Wireless <ilw@linux.intel.com> |
b481de9c | 4447 | L: linux-wireless@vger.kernel.org |
b481de9c | 4448 | W: http://intellinuxwireless.org |
b62ff718 | 4449 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4450 | S: Supported |
679655da | 4451 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4452 | |
de8fe023 TW |
4453 | INTEL MANAGEMENT ENGINE (mei) |
4454 | M: Tomas Winkler <tomas.winkler@intel.com> | |
4455 | L: linux-kernel@vger.kernel.org | |
4456 | S: Supported | |
c117ab84 | 4457 | F: include/uapi/linux/mei.h |
de8fe023 | 4458 | F: drivers/misc/mei/* |
e07950a1 | 4459 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4460 | |
cb109a0e | 4461 | IOC3 ETHERNET DRIVER |
8b58be88 | 4462 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
4463 | L: linux-mips@linux-mips.org |
4464 | S: Maintained | |
8862bf1e | 4465 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4466 | |
cb109a0e | 4467 | IOC3 SERIAL DRIVER |
8b58be88 | 4468 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 4469 | L: linux-serial@vger.kernel.org |
cb109a0e | 4470 | S: Maintained |
df621252 | 4471 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4472 | |
4480f15b | 4473 | IP MASQUERADING |
8b58be88 | 4474 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 4475 | S: Maintained |
679655da | 4476 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4477 | |
1202d6ff | 4478 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4479 | M: Francois Romieu <romieu@fr.zoreil.com> |
4480 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
4481 | L: netdev@vger.kernel.org |
4482 | S: Maintained | |
7443713a | 4483 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4484 | |
4480f15b | 4485 | IPATH DRIVER |
8473c603 | 4486 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 4487 | L: linux-rdma@vger.kernel.org |
52a09a04 | 4488 | S: Maintained |
679655da | 4489 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4490 | |
4409ebe9 | 4491 | IPMI SUBSYSTEM |
8b58be88 | 4492 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 4493 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
4494 | W: http://openipmi.sourceforge.net/ |
4495 | S: Supported | |
679655da JP |
4496 | F: Documentation/IPMI.txt |
4497 | F: drivers/char/ipmi/ | |
4498 | F: include/linux/ipmi* | |
c117ab84 | 4499 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4500 | |
e2d1d6c0 | 4501 | IPS SCSI RAID DRIVER |
8b58be88 | 4502 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4503 | L: linux-scsi@vger.kernel.org |
4504 | W: http://www.adaptec.com/ | |
4505 | S: Maintained | |
679655da | 4506 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4507 | |
4508 | IPVS | |
8b58be88 JP |
4509 | M: Wensong Zhang <wensong@linux-vs.org> |
4510 | M: Simon Horman <horms@verge.net.au> | |
4511 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 4512 | L: netdev@vger.kernel.org |
e2d1d6c0 | 4513 | L: lvs-devel@vger.kernel.org |
1da177e4 | 4514 | S: Maintained |
679655da | 4515 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4516 | F: include/net/ip_vs.h |
c117ab84 | 4517 | F: include/uapi/linux/ip_vs.h |
679655da | 4518 | F: net/netfilter/ipvs/ |
1da177e4 | 4519 | |
e7839f25 | 4520 | IPWIRELESS DRIVER |
8b58be88 JP |
4521 | M: Jiri Kosina <jkosina@suse.cz> |
4522 | M: David Sterba <dsterba@suse.cz> | |
92094aa0 | 4523 | S: Odd Fixes |
282361a0 | 4524 | F: drivers/tty/ipwireless/ |
099dc4fb | 4525 | |
e2d1d6c0 | 4526 | IPX NETWORK LAYER |
8b58be88 | 4527 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
4528 | L: netdev@vger.kernel.org |
4529 | S: Maintained | |
679655da | 4530 | F: include/net/ipx.h |
c117ab84 | 4531 | F: include/uapi/linux/ipx.h |
679655da | 4532 | F: net/ipx/ |
e2d1d6c0 | 4533 | |
1da177e4 | 4534 | IRDA SUBSYSTEM |
8b58be88 | 4535 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 4536 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 4537 | L: netdev@vger.kernel.org |
1da177e4 | 4538 | W: http://irda.sourceforge.net/ |
f353976d | 4539 | S: Maintained |
e0057975 | 4540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4541 | F: Documentation/networking/irda.txt |
4542 | F: drivers/net/irda/ | |
4543 | F: include/net/irda/ | |
4544 | F: net/irda/ | |
1da177e4 | 4545 | |
a800c7cc TG |
4546 | IRQ SUBSYSTEM |
4547 | M: Thomas Gleixner <tglx@linutronix.de> | |
4548 | S: Maintained | |
75fc2d37 | 4549 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc | 4550 | F: kernel/irq/ |
edd96900 | 4551 | F: drivers/irqchip/ |
a800c7cc | 4552 | |
7ab3a837 GL |
4553 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4554 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
7ab3a837 GL |
4555 | S: Maintained |
4556 | F: Documentation/IRQ-domain.txt | |
4557 | F: include/linux/irqdomain.h | |
4558 | F: kernel/irq/irqdomain.c | |
4559 | ||
e2d1d6c0 | 4560 | ISAPNP |
8b58be88 | 4561 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4562 | S: Maintained |
679655da JP |
4563 | F: Documentation/isapnp.txt |
4564 | F: drivers/pnp/isapnp/ | |
4565 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4566 | |
d39b8420 HV |
4567 | ISA RADIO MODULE |
4568 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4569 | L: linux-media@vger.kernel.org | |
4570 | T: git git://linuxtv.org/media_tree.git | |
4571 | W: http://linuxtv.org | |
4572 | S: Maintained | |
4573 | F: drivers/media/radio/radio-isa* | |
4574 | ||
71a6d0af HW |
4575 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4576 | M: Peter Jones <pjones@redhat.com> | |
4577 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
4578 | S: Maintained | |
4579 | F: drivers/firmware/iscsi_ibft* | |
4580 | ||
14816b1e | 4581 | ISCSI |
8b58be88 | 4582 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
4583 | L: open-iscsi@googlegroups.com |
4584 | W: www.open-iscsi.org | |
54e5881d | 4585 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4586 | S: Maintained |
679655da JP |
4587 | F: drivers/scsi/*iscsi* |
4588 | F: include/scsi/*iscsi* | |
14816b1e | 4589 | |
1e65eb42 OG |
4590 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
4591 | M: Or Gerlitz <ogerlitz@mellanox.com> | |
4592 | M: Roi Dayan <roid@mellanox.com> | |
4593 | L: linux-rdma@vger.kernel.org | |
4594 | S: Supported | |
4595 | W: http://www.openfabrics.org | |
4596 | W: www.open-iscsi.org | |
4597 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
14430813 | 4598 | F: drivers/infiniband/ulp/iser/ |
1e65eb42 | 4599 | |
1da177e4 | 4600 | ISDN SUBSYSTEM |
8b58be88 | 4601 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 4602 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 4603 | L: netdev@vger.kernel.org |
1da177e4 | 4604 | W: http://www.isdn4linux.de |
54e5881d | 4605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4606 | S: Maintained |
679655da JP |
4607 | F: Documentation/isdn/ |
4608 | F: drivers/isdn/ | |
4609 | F: include/linux/isdn.h | |
4610 | F: include/linux/isdn/ | |
c117ab84 CEB |
4611 | F: include/uapi/linux/isdn.h |
4612 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4613 | |
4614 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4615 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 4616 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
4617 | W: http://www.melware.de |
4618 | S: Maintained | |
679655da | 4619 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4620 | |
d624870f JD |
4621 | IT87 HARDWARE MONITORING DRIVER |
4622 | M: Jean Delvare <khali@linux-fr.org> | |
4623 | L: lm-sensors@lm-sensors.org | |
4624 | S: Maintained | |
4625 | F: Documentation/hwmon/it87 | |
4626 | F: drivers/hwmon/it87.c | |
4627 | ||
68620bdd MP |
4628 | IT913X MEDIA DRIVER |
4629 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4630 | L: linux-media@vger.kernel.org | |
4631 | W: http://linuxtv.org/ | |
4632 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4633 | S: Maintained | |
4634 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4635 | ||
4636 | IT913X FE MEDIA DRIVER | |
4637 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4638 | L: linux-media@vger.kernel.org | |
4639 | W: http://linuxtv.org/ | |
4640 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4641 | S: Maintained | |
4642 | F: drivers/media/dvb-frontends/it913x-fe* | |
4643 | ||
d7104bff AP |
4644 | IT913X MEDIA DRIVER |
4645 | M: Antti Palosaari <crope@iki.fi> | |
4646 | L: linux-media@vger.kernel.org | |
4647 | W: http://linuxtv.org/ | |
4648 | W: http://palosaari.fi/linux/ | |
4649 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4650 | T: git git://linuxtv.org/anttip/media_tree.git | |
4651 | S: Maintained | |
9d9fb744 | 4652 | F: drivers/media/tuners/tuner_it913x* |
d7104bff | 4653 | |
91821ff3 | 4654 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4655 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 4656 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 4657 | L: linux-media@vger.kernel.org |
275ffde4 | 4658 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4659 | W: http://www.ivtvdriver.org |
4660 | S: Maintained | |
679655da | 4661 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4662 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4663 | F: include/uapi/linux/ivtv* |
91821ff3 | 4664 | |
68620bdd MP |
4665 | IX2505V MEDIA DRIVER |
4666 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4667 | L: linux-media@vger.kernel.org | |
4668 | W: http://linuxtv.org/ | |
4669 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4670 | S: Maintained | |
4671 | F: drivers/media/dvb-frontends/ix2505v* | |
4672 | ||
4453d736 GR |
4673 | JC42.4 TEMPERATURE SENSOR DRIVER |
4674 | M: Guenter Roeck <linux@roeck-us.net> | |
4675 | L: lm-sensors@lm-sensors.org | |
4676 | S: Maintained | |
4677 | F: drivers/hwmon/jc42.c | |
4678 | F: Documentation/hwmon/jc42 | |
4679 | ||
e2d1d6c0 | 4680 | JFS FILESYSTEM |
3256f80f | 4681 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
4682 | L: jfs-discussion@lists.sourceforge.net |
4683 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4684 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4685 | S: Maintained |
679655da JP |
4686 | F: Documentation/filesystems/jfs.txt |
4687 | F: fs/jfs/ | |
e2d1d6c0 | 4688 | |
95252236 | 4689 | JME NETWORK DRIVER |
8b58be88 | 4690 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
4691 | L: netdev@vger.kernel.org |
4692 | S: Maintained | |
63d24a0e | 4693 | F: drivers/net/ethernet/jme.* |
95252236 | 4694 | |
1da177e4 | 4695 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4696 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
4697 | L: linux-mtd@lists.infradead.org |
4698 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4699 | S: Maintained |
679655da | 4700 | F: fs/jffs2/ |
c117ab84 | 4701 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4702 | |
de456d37 | 4703 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4704 | M: Andrew Morton <akpm@linux-foundation.org> |
19003c18 | 4705 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 4706 | L: linux-ext4@vger.kernel.org |
ae0718f8 | 4707 | S: Maintained |
d183e11a | 4708 | F: fs/jbd/ |
d183e11a TT |
4709 | F: include/linux/jbd.h |
4710 | ||
4711 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4712 | M: "Theodore Ts'o" <tytso@mit.edu> | |
4713 | L: linux-ext4@vger.kernel.org | |
4714 | S: Maintained | |
4715 | F: fs/jbd2/ | |
4716 | F: include/linux/jbd2.h | |
ae0718f8 | 4717 | |
fd8b6cb4 | 4718 | JSM Neo PCI based serial card |
9d141cb9 | 4719 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
fd8b6cb4 BL |
4720 | L: linux-serial@vger.kernel.org |
4721 | S: Maintained | |
df621252 | 4722 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4723 | |
af39917d CL |
4724 | K10TEMP HARDWARE MONITORING DRIVER |
4725 | M: Clemens Ladisch <clemens@ladisch.de> | |
4726 | L: lm-sensors@lm-sensors.org | |
4727 | S: Maintained | |
4728 | F: Documentation/hwmon/k10temp | |
4729 | F: drivers/hwmon/k10temp.c | |
4730 | ||
4660cb35 | 4731 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4732 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 4733 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 4734 | S: Maintained |
679655da JP |
4735 | F: Documentation/hwmon/k8temp |
4736 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4737 | |
1da177e4 | 4738 | KCONFIG |
76ce94a3 | 4739 | M: Michal Marek <mmarek@suse.cz> |
347d12d7 | 4740 | L: linux-kbuild@vger.kernel.org |
76ce94a3 | 4741 | S: Odd Fixes |
679655da JP |
4742 | F: Documentation/kbuild/kconfig-language.txt |
4743 | F: scripts/kconfig/ | |
1da177e4 | 4744 | |
ea6c2089 | 4745 | KDUMP |
8b58be88 JP |
4746 | M: Vivek Goyal <vgoyal@redhat.com> |
4747 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 4748 | L: kexec@lists.infradead.org |
ea6c2089 VG |
4749 | W: http://lse.sourceforge.net/kdump/ |
4750 | S: Maintained | |
80811493 | 4751 | F: Documentation/kdump/ |
ea6c2089 | 4752 | |
f41bf02f HV |
4753 | KEENE FM RADIO TRANSMITTER DRIVER |
4754 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
4755 | L: linux-media@vger.kernel.org | |
4756 | T: git git://linuxtv.org/media_tree.git | |
4757 | W: http://linuxtv.org | |
4758 | S: Maintained | |
4759 | F: drivers/media/radio/radio-keene* | |
4760 | ||
1da177e4 | 4761 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4762 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 4763 | L: autofs@vger.kernel.org |
1da177e4 | 4764 | S: Maintained |
679655da | 4765 | F: fs/autofs4/ |
1da177e4 | 4766 | |
70fb7ba6 | 4767 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4768 | M: Michal Marek <mmarek@suse.cz> |
08deed1e JP |
4769 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4770 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4771 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 4772 | S: Maintained |
679655da JP |
4773 | F: Documentation/kbuild/ |
4774 | F: Makefile | |
4775 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4776 | F: scripts/basic/ |
4777 | F: scripts/mk* | |
4778 | F: scripts/package/ | |
1da177e4 LT |
4779 | |
4780 | KERNEL JANITORS | |
c3000e03 | 4781 | L: kernel-janitors@vger.kernel.org |
10466f5a | 4782 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4783 | S: Odd Fixes |
1da177e4 | 4784 | |
e8b43555 | 4785 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4786 | M: "J. Bruce Fields" <bfields@fieldses.org> |
16141c02 | 4787 | L: linux-nfs@vger.kernel.org |
1da177e4 | 4788 | W: http://nfs.sourceforge.net/ |
98fac23f | 4789 | S: Supported |
679655da JP |
4790 | F: fs/nfsd/ |
4791 | F: include/linux/nfsd/ | |
c117ab84 | 4792 | F: include/uapi/linux/nfsd/ |
679655da JP |
4793 | F: fs/lockd/ |
4794 | F: fs/nfs_common/ | |
4795 | F: net/sunrpc/ | |
4796 | F: include/linux/lockd/ | |
4797 | F: include/linux/sunrpc/ | |
c117ab84 | 4798 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4799 | |
426d62e2 | 4800 | KERNEL VIRTUAL MACHINE (KVM) |
484cbfd2 | 4801 | M: Gleb Natapov <gleb@redhat.com> |
c93a64fe | 4802 | M: Paolo Bonzini <pbonzini@redhat.com> |
1fc9d2bf | 4803 | L: kvm@vger.kernel.org |
c93a64fe | 4804 | W: http://linux-kvm.org |
426d62e2 | 4805 | S: Supported |
c93a64fe PB |
4806 | F: Documentation/*/kvm*.txt |
4807 | F: Documentation/virtual/kvm/ | |
679655da JP |
4808 | F: arch/*/kvm/ |
4809 | F: arch/*/include/asm/kvm* | |
4810 | F: include/linux/kvm* | |
c117ab84 | 4811 | F: include/uapi/linux/kvm* |
679655da | 4812 | F: virt/kvm/ |
426d62e2 | 4813 | |
ad8003d3 | 4814 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4815 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf AK |
4816 | L: kvm@vger.kernel.org |
4817 | W: http://kvm.qumranet.com | |
7de609c8 | 4818 | S: Maintained |
679655da | 4819 | F: arch/x86/include/asm/svm.h |
679655da | 4820 | F: arch/x86/kvm/svm.c |
426d62e2 | 4821 | |
513014b7 | 4822 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4823 | M: Alexander Graf <agraf@suse.de> |
1fc9d2bf AK |
4824 | L: kvm-ppc@vger.kernel.org |
4825 | W: http://kvm.qumranet.com | |
6a7f972d | 4826 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4827 | S: Supported |
679655da JP |
4828 | F: arch/powerpc/include/asm/kvm* |
4829 | F: arch/powerpc/kvm/ | |
513014b7 | 4830 | |
1fc9d2bf | 4831 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4832 | M: Xiantao Zhang <xiantao.zhang@intel.com> |
1fc9d2bf AK |
4833 | L: kvm-ia64@vger.kernel.org |
4834 | W: http://kvm.qumranet.com | |
920ed9f1 | 4835 | S: Supported |
679655da JP |
4836 | F: Documentation/ia64/kvm.txt |
4837 | F: arch/ia64/include/asm/kvm* | |
4838 | F: arch/ia64/kvm/ | |
920ed9f1 | 4839 | |
85f8fffe | 4840 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4841 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 4842 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
4843 | M: linux390@de.ibm.com |
4844 | L: linux-s390@vger.kernel.org | |
4845 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4846 | S: Supported | |
679655da JP |
4847 | F: Documentation/s390/kvm.txt |
4848 | F: arch/s390/include/asm/kvm* | |
80811493 | 4849 | F: arch/s390/kvm/ |
a968cd3e | 4850 | F: drivers/s390/kvm/ |
85f8fffe | 4851 | |
a749474d | 4852 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
0f4ca79e | 4853 | M: Christoffer Dall <christoffer.dall@linaro.org> |
a749474d CD |
4854 | L: kvmarm@lists.cs.columbia.edu |
4855 | W: http://systems.cs.columbia.edu/projects/kvm-arm | |
0f4ca79e | 4856 | S: Supported |
a749474d CD |
4857 | F: arch/arm/include/uapi/asm/kvm* |
4858 | F: arch/arm/include/asm/kvm* | |
4859 | F: arch/arm/kvm/ | |
4860 | ||
6394a3ec MZ |
4861 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
4862 | M: Marc Zyngier <marc.zyngier@arm.com> | |
4863 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
4864 | L: kvmarm@lists.cs.columbia.edu | |
4865 | S: Maintained | |
4866 | F: arch/arm64/include/uapi/asm/kvm* | |
4867 | F: arch/arm64/include/asm/kvm* | |
4868 | F: arch/arm64/kvm/ | |
4869 | ||
dc009d92 | 4870 | KEXEC |
8b58be88 | 4871 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 4872 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4873 | L: kexec@lists.infradead.org |
dc009d92 | 4874 | S: Maintained |
679655da | 4875 | F: include/linux/kexec.h |
c117ab84 | 4876 | F: include/uapi/linux/kexec.h |
679655da | 4877 | F: kernel/kexec.c |
dc009d92 | 4878 | |
e971461f DH |
4879 | KEYS/KEYRINGS: |
4880 | M: David Howells <dhowells@redhat.com> | |
4881 | L: keyrings@linux-nfs.org | |
4882 | S: Maintained | |
d410fa4e | 4883 | F: Documentation/security/keys.txt |
e971461f DH |
4884 | F: include/linux/key.h |
4885 | F: include/linux/key-type.h | |
4886 | F: include/keys/ | |
4887 | F: security/keys/ | |
4888 | ||
7f3c68be MZ |
4889 | KEYS-TRUSTED |
4890 | M: David Safford <safford@watson.ibm.com> | |
4891 | M: Mimi Zohar <zohar@us.ibm.com> | |
4892 | L: linux-security-module@vger.kernel.org | |
4893 | L: keyrings@linux-nfs.org | |
4894 | S: Supported | |
d410fa4e | 4895 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4896 | F: include/keys/trusted-type.h |
4897 | F: security/keys/trusted.c | |
4898 | F: security/keys/trusted.h | |
4899 | ||
4900 | KEYS-ENCRYPTED | |
4901 | M: Mimi Zohar <zohar@us.ibm.com> | |
4902 | M: David Safford <safford@watson.ibm.com> | |
4903 | L: linux-security-module@vger.kernel.org | |
4904 | L: keyrings@linux-nfs.org | |
4905 | S: Supported | |
d410fa4e | 4906 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4907 | F: include/keys/encrypted-type.h |
19c90aa6 | 4908 | F: security/keys/encrypted-keys/ |
7f3c68be | 4909 | |
5b778dad | 4910 | KGDB / KDB /debug_core |
8b58be88 | 4911 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 4912 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4913 | L: kgdb-bugreport@lists.sourceforge.net |
4914 | S: Maintained | |
679655da JP |
4915 | F: Documentation/DocBook/kgdb.tmpl |
4916 | F: drivers/misc/kgdbts.c | |
df621252 | 4917 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4918 | F: include/linux/kdb.h |
679655da | 4919 | F: include/linux/kgdb.h |
4063eb5f | 4920 | F: kernel/debug/ |
e3e2aaf7 | 4921 | |
456db8cc | 4922 | KMEMCHECK |
8b58be88 | 4923 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 4924 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 4925 | S: Maintained |
410d7a97 JP |
4926 | F: Documentation/kmemcheck.txt |
4927 | F: arch/x86/include/asm/kmemcheck.h | |
4928 | F: arch/x86/mm/kmemcheck/ | |
4929 | F: include/linux/kmemcheck.h | |
4930 | F: mm/kmemcheck.c | |
b9ce08c0 | 4931 | |
c3bb4d24 | 4932 | KMEMLEAK |
8b58be88 | 4933 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
4934 | S: Maintained |
4935 | F: Documentation/kmemleak.txt | |
4936 | F: include/linux/kmemleak.h | |
4937 | F: mm/kmemleak.c | |
4938 | F: mm/kmemleak-test.c | |
4939 | ||
89559a61 | 4940 | KPROBES |
8b58be88 JP |
4941 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
4942 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
4943 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 4944 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 4945 | S: Maintained |
679655da JP |
4946 | F: Documentation/kprobes.txt |
4947 | F: include/linux/kprobes.h | |
4948 | F: kernel/kprobes.c | |
89559a61 | 4949 | |
70e84049 | 4950 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4951 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
4952 | W: http://miguelojeda.es/auxdisplay.htm |
4953 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4954 | S: Maintained |
679655da JP |
4955 | F: Documentation/auxdisplay/ks0108 |
4956 | F: drivers/auxdisplay/ks0108.c | |
4957 | F: include/linux/ks0108.h | |
70e84049 | 4958 | |
1da177e4 | 4959 | LAPB module |
1da177e4 | 4960 | L: linux-x25@vger.kernel.org |
bf9915cc | 4961 | S: Orphan |
679655da JP |
4962 | F: Documentation/networking/lapb-module.txt |
4963 | F: include/*/lapb.h | |
4964 | F: net/lapb/ | |
1da177e4 LT |
4965 | |
4966 | LASI 53c700 driver for PARISC | |
8b58be88 | 4967 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
4968 | L: linux-scsi@vger.kernel.org |
4969 | S: Maintained | |
679655da JP |
4970 | F: Documentation/scsi/53c700.txt |
4971 | F: drivers/scsi/53c700* | |
1da177e4 | 4972 | |
263de9b5 | 4973 | LED SUBSYSTEM |
c772fc26 | 4974 | M: Bryan Wu <cooloney@gmail.com> |
8b58be88 | 4975 | M: Richard Purdie <rpurdie@rpsys.net> |
aa69cb8c BW |
4976 | L: linux-leds@vger.kernel.org |
4977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4978 | S: Maintained |
679655da JP |
4979 | F: drivers/leds/ |
4980 | F: include/linux/leds.h | |
263de9b5 | 4981 | |
b0461a44 JD |
4982 | LEGACY EEPROM DRIVER |
4983 | M: Jean Delvare <khali@linux-fr.org> | |
4984 | S: Maintained | |
4985 | F: Documentation/misc-devices/eeprom | |
4986 | F: drivers/misc/eeprom/eeprom.c | |
4987 | ||
1da177e4 | 4988 | LEGO USB Tower driver |
8b58be88 | 4989 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
4990 | L: legousb-devel@lists.sourceforge.net |
4991 | W: http://legousb.sourceforge.net/ | |
4992 | S: Maintained | |
679655da | 4993 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4994 | |
055616a8 MK |
4995 | LG2160 MEDIA DRIVER |
4996 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4997 | L: linux-media@vger.kernel.org | |
4998 | W: http://linuxtv.org/ | |
4999 | W: http://github.com/mkrufky | |
5000 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5001 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5002 | S: Maintained | |
5003 | F: drivers/media/dvb-frontends/lg2160.* | |
5004 | ||
6f0e7725 MK |
5005 | LGDT3305 MEDIA DRIVER |
5006 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5007 | L: linux-media@vger.kernel.org | |
5008 | W: http://linuxtv.org/ | |
5009 | W: http://github.com/mkrufky | |
5010 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5011 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5012 | S: Maintained | |
5013 | F: drivers/media/dvb-frontends/lgdt3305.* | |
5014 | ||
568a17ff | 5015 | LGUEST |
8b58be88 | 5016 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 5017 | L: lguest@lists.ozlabs.org |
568a17ff | 5018 | W: http://lguest.ozlabs.org/ |
72e91863 | 5019 | S: Odd Fixes |
070f420b | 5020 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
5021 | F: arch/x86/lguest/ |
5022 | F: drivers/lguest/ | |
5023 | F: include/linux/lguest*.h | |
070f420b | 5024 | F: tools/lguest/ |
568a17ff | 5025 | |
1da177e4 | 5026 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 5027 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
5028 | W: http://www.ibm.com/linux/ltc/projects/ppc |
5029 | S: Supported | |
11c34c7d | 5030 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 5031 | |
852bb9f5 | 5032 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
5033 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
5034 | M: Paul Mackerras <paulus@samba.org> | |
1da177e4 | 5035 | W: http://www.penguinppc.org/ |
a4724ed6 | 5036 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 5037 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 5038 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 5039 | S: Supported |
11c34c7d JP |
5040 | F: Documentation/powerpc/ |
5041 | F: arch/powerpc/ | |
1da177e4 LT |
5042 | |
5043 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 5044 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 5045 | W: http://www.penguinppc.org/ |
a4724ed6 | 5046 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 5047 | S: Maintained |
11c34c7d JP |
5048 | F: arch/powerpc/platforms/powermac/ |
5049 | F: drivers/macintosh/ | |
1da177e4 | 5050 | |
77a76369 | 5051 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 5052 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 5053 | L: linuxppc-dev@lists.ozlabs.org |
a149507b | 5054 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 5055 | S: Maintained |
11c34c7d JP |
5056 | F: arch/powerpc/platforms/512x/ |
5057 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
5058 | |
5059 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 5060 | M: Josh Boyer <jwboyer@gmail.com> |
8b58be88 | 5061 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 5062 | W: http://www.penguinppc.org/ |
a4724ed6 | 5063 | L: linuxppc-dev@lists.ozlabs.org |
645609c0 | 5064 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 5065 | S: Maintained |
11c34c7d JP |
5066 | F: arch/powerpc/platforms/40x/ |
5067 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 5068 | |
260c02a9 | 5069 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
a4724ed6 | 5070 | L: linuxppc-dev@lists.ozlabs.org |
cdeb8994 | 5071 | S: Orphan |
11c34c7d JP |
5072 | F: arch/powerpc/*/*virtex* |
5073 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 5074 | |
e93adf1e | 5075 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
5076 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
5077 | M: Marcelo Tosatti <marcelo@kvack.org> | |
e93adf1e | 5078 | W: http://www.penguinppc.org/ |
a4724ed6 | 5079 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 5080 | S: Maintained |
a2b1f7c8 | 5081 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 5082 | |
1da177e4 | 5083 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 5084 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 5085 | W: http://www.penguinppc.org/ |
a4724ed6 | 5086 | L: linuxppc-dev@lists.ozlabs.org |
ce00f85c | 5087 | S: Maintained |
11c34c7d | 5088 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 5089 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 5090 | |
ab06ff3a | 5091 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 5092 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 5093 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 5094 | S: Maintained |
11c34c7d JP |
5095 | F: arch/powerpc/platforms/pasemi/ |
5096 | F: drivers/*/*pasemi* | |
5097 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 5098 | |
1da177e4 | 5099 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 5100 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 5101 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
5102 | S: Supported |
5103 | ||
a23ce6da HW |
5104 | LIS3LV02D ACCELEROMETER DRIVER |
5105 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
5106 | S: Maintained | |
ff606677 JD |
5107 | F: Documentation/misc-devices/lis3lv02d |
5108 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 5109 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 5110 | |
e2d1d6c0 | 5111 | LLC (802.2) |
8b58be88 | 5112 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 5113 | S: Maintained |
679655da | 5114 | F: include/linux/llc.h |
c117ab84 | 5115 | F: include/uapi/linux/llc.h |
679655da JP |
5116 | F: include/net/llc* |
5117 | F: net/llc/ | |
e2d1d6c0 | 5118 | |
4e233cbe AD |
5119 | LM73 HARDWARE MONITOR DRIVER |
5120 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
5121 | L: lm-sensors@lm-sensors.org | |
5122 | S: Maintained | |
5123 | F: drivers/hwmon/lm73.c | |
5124 | ||
156e2d1a JD |
5125 | LM78 HARDWARE MONITOR DRIVER |
5126 | M: Jean Delvare <khali@linux-fr.org> | |
5127 | L: lm-sensors@lm-sensors.org | |
5128 | S: Maintained | |
5129 | F: Documentation/hwmon/lm78 | |
5130 | F: drivers/hwmon/lm78.c | |
5131 | ||
1da177e4 | 5132 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 5133 | M: Jean Delvare <khali@linux-fr.org> |
cc0b07ed | 5134 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5135 | S: Maintained |
679655da JP |
5136 | F: Documentation/hwmon/lm83 |
5137 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
5138 | |
5139 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 5140 | M: Jean Delvare <khali@linux-fr.org> |
cc0b07ed | 5141 | L: lm-sensors@lm-sensors.org |
1da177e4 | 5142 | S: Maintained |
679655da JP |
5143 | F: Documentation/hwmon/lm90 |
5144 | F: drivers/hwmon/lm90.c | |
1da177e4 | 5145 | |
917cc4e6 GR |
5146 | LM95234 HARDWARE MONITOR DRIVER |
5147 | M: Guenter Roeck <linux@roeck-us.net> | |
5148 | L: lm-sensors@lm-sensors.org | |
5149 | S: Maintained | |
5150 | F: Documentation/hwmon/lm95234 | |
5151 | F: drivers/hwmon/lm95234.c | |
5152 | ||
68620bdd MP |
5153 | LME2510 MEDIA DRIVER |
5154 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5155 | L: linux-media@vger.kernel.org | |
5156 | W: http://linuxtv.org/ | |
5157 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5158 | S: Maintained | |
5159 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
5160 | ||
512e67f9 | 5161 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
5162 | M: Peter Zijlstra <peterz@infradead.org> |
5163 | M: Ingo Molnar <mingo@redhat.com> | |
75fc2d37 | 5164 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 5165 | S: Maintained |
679655da JP |
5166 | F: Documentation/lockdep*.txt |
5167 | F: Documentation/lockstat.txt | |
5168 | F: include/linux/lockdep.h | |
5169 | F: kernel/lockdep* | |
512e67f9 | 5170 | |
dde33348 | 5171 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 5172 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
5173 | L: linux-ntfs-dev@lists.sourceforge.net |
5174 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 5175 | S: Maintained |
679655da | 5176 | F: Documentation/ldm.txt |
20d16fef | 5177 | F: block/partitions/ldm.* |
1da177e4 | 5178 | |
ef6ada3d JE |
5179 | LogFS |
5180 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 5181 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
5182 | L: logfs@logfs.org |
5183 | W: logfs.org | |
5184 | S: Maintained | |
5185 | F: fs/logfs/ | |
5186 | ||
b62d7946 RS |
5187 | LPC32XX MACHINE SUPPORT |
5188 | M: Roland Stigge <stigge@antcom.de> | |
5189 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5190 | S: Maintained | |
5191 | F: arch/arm/mach-lpc32xx/ | |
5192 | ||
c87e34ef | 5193 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 5194 | M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com> |
5195 | M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com> | |
d8a82d7b | 5196 | M: support@lsi.com |
cec744fb | 5197 | L: DL-MPTFusionLinux@lsi.com |
c87e34ef MED |
5198 | L: linux-scsi@vger.kernel.org |
5199 | W: http://www.lsilogic.com/support | |
5200 | S: Supported | |
679655da | 5201 | F: drivers/message/fusion/ |
500c152a | 5202 | F: drivers/scsi/mpt2sas/ |
5203 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 5204 | |
1da177e4 | 5205 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 5206 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
5207 | L: linux-scsi@vger.kernel.org |
5208 | S: Maintained | |
679655da | 5209 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 5210 | |
e5f5c99a GR |
5211 | LTC4261 HARDWARE MONITOR DRIVER |
5212 | M: Guenter Roeck <linux@roeck-us.net> | |
5213 | L: lm-sensors@lm-sensors.org | |
5214 | S: Maintained | |
5215 | F: Documentation/hwmon/ltc4261 | |
5216 | F: drivers/hwmon/ltc4261.c | |
5217 | ||
81365c31 | 5218 | LTP (Linux Test Project) |
7d1ae8a8 | 5219 | M: Shubham Goyal <shubham@linux.vnet.ibm.com> |
28b8e8d4 | 5220 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 WG |
5221 | M: Cyril Hrubis <chrubis@suse.cz> |
5222 | M: Caspar Zhang <caspar@casparzhang.com> | |
5223 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> | |
81365c31 MF |
5224 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
5225 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 5226 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 5227 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
5228 | S: Maintained |
5229 | ||
c12a54b3 | 5230 | M32R ARCHITECTURE |
8b58be88 | 5231 | M: Hirokazu Takata <takata@linux-m32r.org> |
0d89e54c | 5232 | L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) |
c12a54b3 HT |
5233 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
5234 | W: http://www.linux-m32r.org/ | |
5235 | S: Maintained | |
679655da | 5236 | F: arch/m32r/ |
c12a54b3 | 5237 | |
1da177e4 | 5238 | M68K ARCHITECTURE |
8b58be88 | 5239 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
5240 | L: linux-m68k@lists.linux-m68k.org |
5241 | W: http://www.linux-m68k.org/ | |
54e5881d | 5242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 5243 | S: Maintained |
679655da | 5244 | F: arch/m68k/ |
9db35182 | 5245 | F: drivers/zorro/ |
1da177e4 LT |
5246 | |
5247 | M68K ON APPLE MACINTOSH | |
8b58be88 | 5248 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 5249 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 5250 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 5251 | S: Maintained |
9db35182 | 5252 | F: arch/m68k/mac/ |
1da177e4 LT |
5253 | |
5254 | M68K ON HP9000/300 | |
8b58be88 | 5255 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
5256 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
5257 | S: Maintained | |
679655da | 5258 | F: arch/m68k/hp300/ |
1da177e4 | 5259 | |
68620bdd MP |
5260 | M88RS2000 MEDIA DRIVER |
5261 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
5262 | L: linux-media@vger.kernel.org | |
5263 | W: http://linuxtv.org/ | |
5264 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5265 | S: Maintained | |
5266 | F: drivers/media/dvb-frontends/m88rs2000* | |
5267 | ||
07a092fa AK |
5268 | MA901 MASTERKIT USB FM RADIO DRIVER |
5269 | M: Alexey Klimov <klimov.linux@gmail.com> | |
5270 | L: linux-media@vger.kernel.org | |
5271 | T: git git://linuxtv.org/media_tree.git | |
5272 | S: Maintained | |
5273 | F: drivers/media/radio/radio-ma901.c | |
5274 | ||
64a327a7 | 5275 | MAC80211 |
8b58be88 | 5276 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 5277 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5278 | W: http://wireless.kernel.org/ |
ce466579 JB |
5279 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5280 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 5281 | S: Maintained |
679655da JP |
5282 | F: Documentation/networking/mac80211-injection.txt |
5283 | F: include/net/mac80211.h | |
5284 | F: net/mac80211/ | |
64a327a7 | 5285 | |
1036d864 | 5286 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
5287 | M: Stefano Brivio <stefano.brivio@polimi.it> |
5288 | M: Mattias Nissler <mattias.nissler@gmx.de> | |
1036d864 | 5289 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5290 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
5291 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
5292 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 5293 | S: Maintained |
679655da | 5294 | F: net/mac80211/rc80211_pid* |
1036d864 | 5295 | |
b863ceb7 | 5296 | MACVLAN DRIVER |
8b58be88 | 5297 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
5298 | L: netdev@vger.kernel.org |
5299 | S: Maintained | |
679655da JP |
5300 | F: drivers/net/macvlan.c |
5301 | F: include/linux/if_macvlan.h | |
b863ceb7 | 5302 | |
faf1668c | 5303 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 5304 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 5305 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 5306 | L: linux-man@vger.kernel.org |
1b53dc74 | 5307 | S: Maintained |
faf1668c | 5308 | |
44c14c1d | 5309 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
5310 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 5311 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 5312 | L: netdev@vger.kernel.org |
5313 | S: Maintained | |
5314 | F: drivers/net/ethernet/marvell/sk* | |
5315 | ||
74cda169 | 5316 | MARVELL LIBERTAS WIRELESS DRIVER |
74cda169 | 5317 | L: libertas-dev@lists.infradead.org |
8ac3e99e | 5318 | S: Orphan |
679655da | 5319 | F: drivers/net/wireless/libertas/ |
74cda169 | 5320 | |
b60d6975 | 5321 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 5322 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
979b6c13 | 5323 | L: netdev@vger.kernel.org |
f5ca8502 | 5324 | S: Maintained |
527a6266 | 5325 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 5326 | F: include/linux/mv643xx.h |
1da177e4 | 5327 | |
370b8ed9 TP |
5328 | MARVELL MVNETA ETHERNET DRIVER |
5329 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
5330 | L: netdev@vger.kernel.org | |
5331 | S: Maintained | |
5332 | F: drivers/net/ethernet/marvell/mvneta.* | |
5333 | ||
fcad584d BZ |
5334 | MARVELL MWIFIEX WIRELESS DRIVER |
5335 | M: Bing Zhao <bzhao@marvell.com> | |
5336 | L: linux-wireless@vger.kernel.org | |
5337 | S: Maintained | |
5338 | F: drivers/net/wireless/mwifiex/ | |
5339 | ||
a2c3f656 | 5340 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 5341 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 5342 | L: linux-wireless@vger.kernel.org |
16345910 | 5343 | S: Odd Fixes |
a2c3f656 LB |
5344 | F: drivers/net/wireless/mwl8k.c |
5345 | ||
2a69567b | 5346 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 5347 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 5348 | S: Odd Fixes |
1fa7e547 | 5349 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 5350 | |
1da177e4 | 5351 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 5352 | L: linux-fbdev@vger.kernel.org |
52653199 | 5353 | S: Orphan |
679655da | 5354 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 5355 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 5356 | |
ca462085 GR |
5357 | MAX16065 HARDWARE MONITOR DRIVER |
5358 | M: Guenter Roeck <linux@roeck-us.net> | |
5359 | L: lm-sensors@lm-sensors.org | |
5360 | S: Maintained | |
5361 | F: Documentation/hwmon/max16065 | |
5362 | F: drivers/hwmon/max16065.c | |
5363 | ||
d20620de | 5364 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 5365 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
5366 | L: lm-sensors@lm-sensors.org |
5367 | S: Maintained | |
679655da JP |
5368 | F: Documentation/hwmon/max6650 |
5369 | F: drivers/hwmon/max6650.c | |
d20620de | 5370 | |
e89ab51f GR |
5371 | MAX6697 HARDWARE MONITOR DRIVER |
5372 | M: Guenter Roeck <linux@roeck-us.net> | |
5373 | L: lm-sensors@lm-sensors.org | |
5374 | S: Maintained | |
5375 | F: Documentation/hwmon/max6697 | |
5376 | F: Documentation/devicetree/bindings/i2c/max6697.txt | |
5377 | F: drivers/hwmon/max6697.c | |
5378 | F: include/linux/platform_data/max6697.h | |
5379 | ||
9be3c9a5 HV |
5380 | MAXIRADIO FM RADIO RECEIVER DRIVER |
5381 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5382 | L: linux-media@vger.kernel.org | |
5383 | T: git git://linuxtv.org/media_tree.git | |
5384 | W: http://linuxtv.org | |
5385 | S: Maintained | |
5386 | F: drivers/media/radio/radio-maxiradio* | |
5387 | ||
127c49ae | 5388 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
1b2c14b4 | 5389 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
127c49ae JP |
5390 | P: LinuxTV.org Project |
5391 | L: linux-media@vger.kernel.org | |
5392 | W: http://linuxtv.org | |
8a6e2535 | 5393 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 5394 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
5395 | S: Maintained |
5396 | F: Documentation/dvb/ | |
5397 | F: Documentation/video4linux/ | |
ffe06198 | 5398 | F: Documentation/DocBook/media/ |
127c49ae | 5399 | F: drivers/media/ |
ffe06198 | 5400 | F: drivers/staging/media/ |
127c49ae | 5401 | F: include/media/ |
6c0f0359 MCC |
5402 | F: include/uapi/linux/dvb/ |
5403 | F: include/uapi/linux/videodev2.h | |
5404 | F: include/uapi/linux/media.h | |
5405 | F: include/uapi/linux/v4l2-* | |
5406 | F: include/uapi/linux/meye.h | |
5407 | F: include/uapi/linux/ivtv* | |
5408 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 5409 | |
6149a936 HV |
5410 | MEDIAVISION PRO MOVIE STUDIO DRIVER |
5411 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5412 | L: linux-media@vger.kernel.org | |
5413 | T: git git://linuxtv.org/media_tree.git | |
5414 | W: http://linuxtv.org | |
5415 | S: Odd Fixes | |
5416 | F: drivers/media/parport/pms* | |
5417 | ||
757e0108 | 5418 | MEGARAID SCSI DRIVERS |
8b58be88 | 5419 | M: Neela Syam Kolli <megaraidlinux@lsi.com> |
baaea1dc | 5420 | L: linux-scsi@vger.kernel.org |
ce00f85c JC |
5421 | W: http://megaraid.lsilogic.com |
5422 | S: Maintained | |
679655da JP |
5423 | F: Documentation/scsi/megaraid.txt |
5424 | F: drivers/scsi/megaraid.* | |
5425 | F: drivers/scsi/megaraid/ | |
757e0108 | 5426 | |
2c46c9d5 AV |
5427 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5428 | M: Amir Vadai <amirv@mellanox.com> | |
5429 | L: netdev@vger.kernel.org | |
5430 | S: Supported | |
5431 | W: http://www.mellanox.com | |
5432 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5433 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5434 | ||
70ea91f1 SR |
5435 | MEMORY MANAGEMENT |
5436 | L: linux-mm@kvack.org | |
70ea91f1 SR |
5437 | W: http://www.linux-mm.org |
5438 | S: Maintained | |
679655da | 5439 | F: include/linux/mm.h |
551450bb CS |
5440 | F: include/linux/gfp.h |
5441 | F: include/linux/mmzone.h | |
5442 | F: include/linux/memory_hotplug.h | |
5443 | F: include/linux/vmalloc.h | |
679655da | 5444 | F: mm/ |
70ea91f1 | 5445 | |
938a9204 | 5446 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5447 | M: Johannes Weiner <hannes@cmpxchg.org> |
5448 | M: Michal Hocko <mhocko@suse.cz> | |
185e595f | 5449 | M: Balbir Singh <bsingharora@gmail.com> |
8b58be88 | 5450 | M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> |
12340313 | 5451 | L: cgroups@vger.kernel.org |
938a9204 | 5452 | L: linux-mm@kvack.org |
938a9204 | 5453 | S: Maintained |
679655da | 5454 | F: mm/memcontrol.c |
4e4c941c | 5455 | F: mm/page_cgroup.c |
938a9204 | 5456 | |
f4e9ce66 | 5457 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5458 | M: David Woodhouse <dwmw2@infradead.org> |
1da177e4 | 5459 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
5460 | W: http://www.linux-mtd.infradead.org/ |
5461 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5462 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5463 | S: Maintained |
679655da JP |
5464 | F: drivers/mtd/ |
5465 | F: include/linux/mtd/ | |
c117ab84 | 5466 | F: include/uapi/mtd/ |
1da177e4 | 5467 | |
26c57ef1 JT |
5468 | MEN A21 WATCHDOG DRIVER |
5469 | M: Johannes Thumshirn <johannes.thumshirn@men.de> | |
5470 | L: linux-watchdog@vger.kernel.org | |
5471 | S: Supported | |
5472 | F: drivers/watchdog/mena21_wdt.c | |
5473 | ||
12285945 JH |
5474 | METAG ARCHITECTURE |
5475 | M: James Hogan <james.hogan@imgtec.com> | |
d668d9ed | 5476 | L: linux-metag@vger.kernel.org |
12285945 JH |
5477 | S: Supported |
5478 | F: arch/metag/ | |
5479 | F: Documentation/metag/ | |
5480 | F: Documentation/devicetree/bindings/metag/ | |
a2c5d4ed | 5481 | F: drivers/clocksource/metag_generic.c |
5698c50d JH |
5482 | F: drivers/irqchip/irq-metag.c |
5483 | F: drivers/irqchip/irq-metag-ext.c | |
ae85ac71 JH |
5484 | F: drivers/tty/metag_da.c |
5485 | F: fs/imgdafs/ | |
12285945 | 5486 | |
c6375b0a | 5487 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5488 | M: Michal Simek <monstr@monstr.eu> |
f3cb0e31 | 5489 | L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers) |
c6375b0a MS |
5490 | W: http://www.monstr.eu/fdt/ |
5491 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5492 | S: Supported | |
0a8c7914 | 5493 | F: arch/microblaze/ |
1da177e4 LT |
5494 | |
5495 | MICROTEK X6 SCANNER | |
61eee9a7 | 5496 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 5497 | S: Maintained |
679655da | 5498 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5499 | |
5500 | MIPS | |
8b58be88 | 5501 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 5502 | L: linux-mips@linux-mips.org |
6097050d | 5503 | W: http://www.linux-mips.org/ |
b05e988e | 5504 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5505 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5506 | S: Supported |
679655da JP |
5507 | F: Documentation/mips/ |
5508 | F: arch/mips/ | |
1da177e4 | 5509 | |
08b7620a HV |
5510 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
5511 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
5512 | L: linux-media@vger.kernel.org | |
5513 | T: git git://linuxtv.org/media_tree.git | |
5514 | W: http://linuxtv.org | |
5515 | S: Odd Fixes | |
5516 | F: drivers/media/radio/radio-miropcm20* | |
5517 | ||
e126ba97 EC |
5518 | Mellanox MLX5 core VPI driver |
5519 | M: Eli Cohen <eli@mellanox.com> | |
5520 | L: netdev@vger.kernel.org | |
5521 | L: linux-rdma@vger.kernel.org | |
5522 | W: http://www.mellanox.com | |
5523 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5524 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5525 | T: git://openfabrics.org/~eli/connect-ib.git | |
5526 | S: Supported | |
5527 | F: drivers/net/ethernet/mellanox/mlx5/core/ | |
5528 | F: include/linux/mlx5/ | |
5529 | ||
5530 | Mellanox MLX5 IB driver | |
5531 | M: Eli Cohen <eli@mellanox.com> | |
5532 | L: linux-rdma@vger.kernel.org | |
5533 | W: http://www.mellanox.com | |
5534 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
5535 | T: git://openfabrics.org/~eli/connect-ib.git | |
5536 | S: Supported | |
5537 | F: include/linux/mlx5/ | |
5538 | F: drivers/infiniband/hw/mlx5/ | |
5539 | ||
1da177e4 | 5540 | MODULE SUPPORT |
8b58be88 | 5541 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 5542 | S: Maintained |
679655da JP |
5543 | F: include/linux/module.h |
5544 | F: kernel/module.c | |
1da177e4 LT |
5545 | |
5546 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5547 | W: http://popies.net/meye/ |
b7788e13 | 5548 | S: Orphan |
679655da | 5549 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5550 | F: drivers/media/pci/meye/ |
6c0f0359 | 5551 | F: include/uapi/linux/meye.h |
1da177e4 | 5552 | |
b9705b60 | 5553 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5554 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 5555 | S: Maintained |
679655da | 5556 | F: Documentation/serial/moxa-smartio |
c897401b | 5557 | F: drivers/tty/mxser.* |
d735410a | 5558 | |
889b2f87 AK |
5559 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5560 | M: Alexey Klimov <klimov.linux@gmail.com> | |
5561 | L: linux-media@vger.kernel.org | |
5562 | T: git git://linuxtv.org/media_tree.git | |
5563 | S: Maintained | |
5564 | F: drivers/media/radio/radio-mr800.c | |
5565 | ||
8c4c731a | 5566 | MSI LAPTOP SUPPORT |
182ae55c | 5567 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 5568 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 5569 | S: Maintained |
679655da | 5570 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5571 | |
0f1006b1 AA |
5572 | MSI WMI SUPPORT |
5573 | M: Anisse Astier <anisse@astier.eu> | |
d0944853 | 5574 | L: platform-driver-x86@vger.kernel.org |
0f1006b1 AA |
5575 | S: Supported |
5576 | F: drivers/platform/x86/msi-wmi.c | |
5577 | ||
62a37dc7 | 5578 | MT9M032 APTINA SENSOR DRIVER |
0e837fb9 LP |
5579 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5580 | L: linux-media@vger.kernel.org | |
5581 | T: git git://linuxtv.org/media_tree.git | |
5582 | S: Maintained | |
5583 | F: drivers/media/i2c/mt9m032.c | |
5584 | F: include/media/mt9m032.h | |
5585 | ||
62a37dc7 | 5586 | MT9P031 APTINA CAMERA SENSOR |
0e837fb9 LP |
5587 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5588 | L: linux-media@vger.kernel.org | |
5589 | T: git git://linuxtv.org/media_tree.git | |
5590 | S: Maintained | |
5591 | F: drivers/media/i2c/mt9p031.c | |
5592 | F: include/media/mt9p031.h | |
5593 | ||
62a37dc7 | 5594 | MT9T001 APTINA CAMERA SENSOR |
0e837fb9 LP |
5595 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5596 | L: linux-media@vger.kernel.org | |
5597 | T: git git://linuxtv.org/media_tree.git | |
5598 | S: Maintained | |
5599 | F: drivers/media/i2c/mt9t001.c | |
5600 | F: include/media/mt9t001.h | |
5601 | ||
62a37dc7 | 5602 | MT9V032 APTINA CAMERA SENSOR |
0e837fb9 LP |
5603 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
5604 | L: linux-media@vger.kernel.org | |
5605 | T: git git://linuxtv.org/media_tree.git | |
5606 | S: Maintained | |
5607 | F: drivers/media/i2c/mt9v032.c | |
5608 | F: include/media/mt9v032.h | |
5609 | ||
4e0d13cb | 5610 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5611 | M: Samuel Ortiz <sameo@linux.intel.com> |
f7d3210e SO |
5612 | M: Lee Jones <lee.jones@linaro.org> |
5613 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git | |
5614 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git | |
4e0d13cb | 5615 | S: Supported |
679655da | 5616 | F: drivers/mfd/ |
55b5940d | 5617 | F: include/linux/mfd/ |
4e0d13cb | 5618 | |
5c4e6f13 | 5619 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5620 | M: Chris Ball <cjb@laptop.org> |
b2503a94 | 5621 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
5622 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5623 | S: Maintained | |
679655da JP |
5624 | F: drivers/mmc/ |
5625 | F: include/linux/mmc/ | |
c117ab84 | 5626 | F: include/uapi/linux/mmc/ |
baca2da4 | 5627 | |
15a0580c | 5628 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5629 | S: Orphan |
679655da JP |
5630 | F: drivers/mmc/host/mmc_spi.c |
5631 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5632 | |
1da177e4 | 5633 | MULTISOUND SOUND DRIVER |
8b58be88 | 5634 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 5635 | S: Maintained |
679655da JP |
5636 | F: Documentation/sound/oss/MultiSound |
5637 | F: sound/oss/msnd* | |
1da177e4 | 5638 | |
d735410a | 5639 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5640 | S: Orphan |
c897401b | 5641 | F: drivers/tty/isicom.c |
679655da | 5642 | F: include/linux/isicom.h |
d735410a | 5643 | |
550a7375 | 5644 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5645 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 5646 | L: linux-usb@vger.kernel.org |
43b416e5 | 5647 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5648 | S: Maintained |
679655da | 5649 | F: drivers/usb/musb/ |
550a7375 | 5650 | |
ea0af5f6 MK |
5651 | MXL5007T MEDIA DRIVER |
5652 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5653 | L: linux-media@vger.kernel.org | |
5654 | W: http://linuxtv.org/ | |
5655 | W: http://github.com/mkrufky | |
5656 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5657 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5658 | S: Maintained | |
5659 | F: drivers/media/tuners/mxl5007t.* | |
5660 | ||
2d3cf588 | 5661 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
205057ae | 5662 | M: Hyong-Youb Kim <hykim@myri.com> |
2d3cf588 | 5663 | L: netdev@vger.kernel.org |
205057ae | 5664 | W: https://www.myricom.com/support/downloads/myri10ge.html |
2d3cf588 | 5665 | S: Supported |
93f7848b | 5666 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5667 | |
1da177e4 | 5668 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5669 | S: Orphan |
d9fb9f38 | 5670 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5671 | |
23dc05a3 DM |
5672 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5673 | M: Daniel Mack <zonque@gmail.com> | |
5674 | S: Maintained | |
5675 | L: alsa-devel@alsa-project.org | |
5676 | W: http://www.native-instruments.com | |
5677 | F: sound/usb/caiaq/ | |
5678 | ||
1da177e4 | 5679 | NCP FILESYSTEM |
52653199 PV |
5680 | M: Petr Vandrovec <petr@vandrovec.name> |
5681 | S: Odd Fixes | |
679655da | 5682 | F: fs/ncpfs/ |
1da177e4 LT |
5683 | |
5684 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5685 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
5686 | L: linux-scsi@vger.kernel.org |
5687 | S: Maintained | |
679655da | 5688 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5689 | |
4aa3eb4c GR |
5690 | NCT6775 HARDWARE MONITOR DRIVER |
5691 | M: Guenter Roeck <linux@roeck-us.net> | |
5692 | L: lm-sensors@lm-sensors.org | |
5693 | S: Maintained | |
5694 | F: Documentation/hwmon/nct6775 | |
5695 | F: drivers/hwmon/nct6775.c | |
5696 | ||
3c2d774c | 5697 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5698 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 5699 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 5700 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5701 | S: Supported |
5702 | F: drivers/infiniband/hw/nes/ | |
5703 | ||
be2f2e84 | 5704 | NETEM NETWORK EMULATOR |
adbbf69d | 5705 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 5706 | L: netem@lists.linux-foundation.org |
be2f2e84 | 5707 | S: Maintained |
679655da | 5708 | F: net/sched/sch_netem.c |
be2f2e84 | 5709 | |
b2f5a051 | 5710 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5711 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 5712 | L: netdev@vger.kernel.org |
4a58448b | 5713 | S: Supported |
679655da | 5714 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5715 | F: Documentation/networking/vxge.txt |
86387e1a | 5716 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5717 | |
42010ed0 | 5718 | NETFILTER/IPTABLES |
0e05e192 | 5719 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 5720 | M: Patrick McHardy <kaber@trash.net> |
42010ed0 | 5721 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
1a03b81d PM |
5722 | L: netfilter-devel@vger.kernel.org |
5723 | L: netfilter@vger.kernel.org | |
82b98543 | 5724 | L: coreteam@netfilter.org |
1da177e4 LT |
5725 | W: http://www.netfilter.org/ |
5726 | W: http://www.iptables.org/ | |
42010ed0 PNA |
5727 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
5728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git | |
5729 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git | |
1da177e4 | 5730 | S: Supported |
679655da JP |
5731 | F: include/linux/netfilter* |
5732 | F: include/linux/netfilter/ | |
5733 | F: include/net/netfilter/ | |
c117ab84 CEB |
5734 | F: include/uapi/linux/netfilter* |
5735 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5736 | F: net/*/netfilter.c |
5737 | F: net/*/netfilter/ | |
5738 | F: net/netfilter/ | |
1da177e4 | 5739 | |
4cc67735 | 5740 | NETLABEL |
87a0874c | 5741 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
5742 | W: http://netlabel.sf.net |
5743 | L: netdev@vger.kernel.org | |
87a0874c | 5744 | S: Maintained |
80811493 | 5745 | F: Documentation/netlabel/ |
679655da JP |
5746 | F: include/net/netlabel.h |
5747 | F: net/netlabel/ | |
4cc67735 | 5748 | |
1da177e4 | 5749 | NETROM NETWORK LAYER |
8b58be88 | 5750 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 5751 | L: linux-hams@vger.kernel.org |
d34cb28a | 5752 | W: http://www.linux-ax25.org/ |
1da177e4 | 5753 | S: Maintained |
679655da | 5754 | F: include/net/netrom.h |
c117ab84 | 5755 | F: include/uapi/linux/netrom.h |
679655da | 5756 | F: net/netrom/ |
1da177e4 | 5757 | |
5ddb88c0 | 5758 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5759 | M: Paul Clements <Paul.Clements@steeleye.com> |
1da177e4 | 5760 | S: Maintained |
5e4b269b | 5761 | L: nbd-general@lists.sourceforge.net |
679655da JP |
5762 | F: Documentation/blockdev/nbd.txt |
5763 | F: drivers/block/nbd.c | |
5764 | F: include/linux/nbd.h | |
c117ab84 | 5765 | F: include/uapi/linux/nbd.h |
1da177e4 | 5766 | |
6e43650c NH |
5767 | NETWORK DROP MONITOR |
5768 | M: Neil Horman <nhorman@tuxdriver.com> | |
5769 | L: netdev@vger.kernel.org | |
5770 | S: Maintained | |
5771 | W: https://fedorahosted.org/dropwatch/ | |
5772 | F: net/core/drop_monitor.c | |
5773 | ||
1da177e4 | 5774 | NETWORKING [GENERAL] |
8b58be88 | 5775 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 5776 | L: netdev@vger.kernel.org |
b1e8fd54 | 5777 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5778 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5779 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5781 | S: Maintained |
679655da JP |
5782 | F: net/ |
5783 | F: include/net/ | |
018d21ed JP |
5784 | F: include/linux/in.h |
5785 | F: include/linux/net.h | |
5786 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5787 | F: include/uapi/linux/in.h |
5788 | F: include/uapi/linux/net.h | |
5789 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5790 | |
5791 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5792 | M: "David S. Miller" <davem@davemloft.net> |
5793 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
5794 | M: James Morris <jmorris@namei.org> |
5795 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
5796 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 5797 | L: netdev@vger.kernel.org |
08deed1e | 5798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5799 | S: Maintained |
679655da JP |
5800 | F: net/ipv4/ |
5801 | F: net/ipv6/ | |
5802 | F: include/net/ip* | |
0a14842f | 5803 | F: arch/x86/net/* |
1da177e4 | 5804 | |
73b7656c DM |
5805 | NETWORKING [IPSEC] |
5806 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
5807 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
5808 | M: "David S. Miller" <davem@davemloft.net> | |
5809 | L: netdev@vger.kernel.org | |
5810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5811 | S: Maintained | |
5812 | F: net/xfrm/ | |
5813 | F: net/key/ | |
5814 | F: net/ipv4/xfrm* | |
5815 | F: net/ipv6/xfrm* | |
5816 | F: include/uapi/linux/xfrm.h | |
5817 | F: include/net/xfrm.h | |
5818 | ||
10e2ff1c | 5819 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5820 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
5821 | L: netdev@vger.kernel.org |
5822 | S: Maintained | |
5823 | ||
29f8f632 | 5824 | NETWORKING [WIRELESS] |
8b58be88 | 5825 | M: "John W. Linville" <linville@tuxdriver.com> |
2cb4abd1 | 5826 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 5827 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5828 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5829 | S: Maintained |
34b921cf JP |
5830 | F: net/mac80211/ |
5831 | F: net/rfkill/ | |
679655da JP |
5832 | F: net/wireless/ |
5833 | F: include/net/ieee80211* | |
cc8b4a2b | 5834 | F: include/linux/wireless.h |
c117ab84 | 5835 | F: include/uapi/linux/wireless.h |
c984e24d | 5836 | F: include/net/iw_handler.h |
34b921cf | 5837 | F: drivers/net/wireless/ |
29f8f632 | 5838 | |
788873ac JP |
5839 | NETWORKING DRIVERS |
5840 | L: netdev@vger.kernel.org | |
5841 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5842 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5843 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5844 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5845 | S: Odd Fixes |
5846 | F: drivers/net/ | |
018d21ed | 5847 | F: include/linux/if_* |
0b63bf1f JD |
5848 | F: include/linux/netdevice.h |
5849 | F: include/linux/arcdevice.h | |
5850 | F: include/linux/etherdevice.h | |
5851 | F: include/linux/fcdevice.h | |
5852 | F: include/linux/fddidevice.h | |
5853 | F: include/linux/hippidevice.h | |
5854 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5855 | F: include/uapi/linux/if_* |
5856 | F: include/uapi/linux/netdevice.h | |
788873ac | 5857 | |
3d396eb1 | 5858 | NETXEN (1/10) GbE SUPPORT |
8622315e | 5859 | M: Manish Chopra <manish.chopra@qlogic.com> |
83c07dde AKS |
5860 | M: Sony Chacko <sony.chacko@qlogic.com> |
5861 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 5862 | L: netdev@vger.kernel.org |
9c2b5bde | 5863 | W: http://www.qlogic.com |
3d396eb1 | 5864 | S: Supported |
aa43c215 | 5865 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5866 | |
6423d30f AAJ |
5867 | NFC SUBSYSTEM |
5868 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
5869 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
5870 | M: Samuel Ortiz <sameo@linux.intel.com> | |
5871 | L: linux-wireless@vger.kernel.org | |
5adf54de | 5872 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
0293ba20 | 5873 | S: Supported |
6423d30f | 5874 | F: net/nfc/ |
55eb94f9 | 5875 | F: include/net/nfc/ |
c117ab84 | 5876 | F: include/uapi/linux/nfc.h |
6423d30f | 5877 | F: drivers/nfc/ |
08eaa1e0 | 5878 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5879 | |
e8b43555 | 5880 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5881 | M: Trond Myklebust <Trond.Myklebust@netapp.com> |
78f58153 TM |
5882 | L: linux-nfs@vger.kernel.org |
5883 | W: http://client.linux-nfs.org | |
5884 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5885 | S: Maintained |
679655da JP |
5886 | F: fs/lockd/ |
5887 | F: fs/nfs/ | |
5888 | F: fs/nfs_common/ | |
5889 | F: net/sunrpc/ | |
5890 | F: include/linux/lockd/ | |
5891 | F: include/linux/nfs* | |
5892 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5893 | F: include/uapi/linux/nfs* |
5894 | F: include/uapi/linux/sunrpc/ | |
1da177e4 | 5895 | |
85ef9cea | 5896 | NILFS2 FILESYSTEM |
8b58be88 | 5897 | M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 5898 | L: linux-nilfs@vger.kernel.org |
85ef9cea | 5899 | W: http://www.nilfs.org/en/ |
af1761f2 | 5900 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5901 | S: Supported |
679655da JP |
5902 | F: Documentation/filesystems/nilfs2.txt |
5903 | F: fs/nilfs2/ | |
5904 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5905 | |
1da177e4 | 5906 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5907 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
5908 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5909 | S: Maintained | |
679655da JP |
5910 | F: Documentation/scsi/NinjaSCSI.txt |
5911 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5912 | |
5913 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5914 | M: GOTO Masanori <gotom@debian.or.jp> |
5915 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
5916 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5917 | S: Maintained | |
679655da JP |
5918 | F: Documentation/scsi/NinjaSCSI.txt |
5919 | F: drivers/scsi/nsp32* | |
1da177e4 | 5920 | |
fce8a7bb JM |
5921 | NTB DRIVER |
5922 | M: Jon Mason <jon.mason@intel.com> | |
5923 | S: Supported | |
2984411f JM |
5924 | W: https://github.com/jonmason/ntb/wiki |
5925 | T: git git://github.com/jonmason/ntb.git | |
fce8a7bb | 5926 | F: drivers/ntb/ |
548c237c | 5927 | F: drivers/net/ntb_netdev.c |
fce8a7bb JM |
5928 | F: include/linux/ntb.h |
5929 | ||
1da177e4 | 5930 | NTFS FILESYSTEM |
2818ef50 | 5931 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 5932 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 5933 | W: http://www.tuxera.com/ |
e6f4dee7 | 5934 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5935 | S: Supported |
679655da JP |
5936 | F: Documentation/filesystems/ntfs.txt |
5937 | F: fs/ntfs/ | |
1da177e4 | 5938 | |
9eb8ef74 | 5939 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5940 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 5941 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5942 | S: Maintained |
679655da JP |
5943 | F: drivers/video/riva/ |
5944 | F: drivers/video/nvidia/ | |
1da177e4 | 5945 | |
79461681 MW |
5946 | NVM EXPRESS DRIVER |
5947 | M: Matthew Wilcox <willy@linux.intel.com> | |
5948 | L: linux-nvme@lists.infradead.org | |
5949 | T: git git://git.infradead.org/users/willy/linux-nvme.git | |
5950 | S: Supported | |
5be37bf9 | 5951 | F: drivers/block/nvme* |
79461681 MW |
5952 | F: include/linux/nvme.h |
5953 | ||
f5525786 | 5954 | OMAP SUPPORT |
0e24bdd4 | 5955 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
5956 | L: linux-omap@vger.kernel.org |
5957 | W: http://www.muru.com/linux/omap/ | |
5958 | W: http://linux.omap.com/ | |
8a6e2535 | 5959 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5960 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5961 | S: Maintained |
4e04d5a3 | 5962 | F: arch/arm/*omap*/ |
046d0a37 JD |
5963 | F: drivers/i2c/busses/i2c-omap.c |
5964 | F: include/linux/i2c-omap.h | |
f5525786 | 5965 | |
50f29fbd | 5966 | OMAP DEVICE TREE SUPPORT |
cdb55ab0 | 5967 | M: Benoît Cousson <bcousson@baylibre.com> |
50f29fbd TL |
5968 | M: Tony Lindgren <tony@atomide.com> |
5969 | L: linux-omap@vger.kernel.org | |
d0fb18c5 | 5970 | L: devicetree@vger.kernel.org |
50f29fbd TL |
5971 | S: Maintained |
5972 | F: arch/arm/boot/dts/*omap* | |
5973 | F: arch/arm/boot/dts/*am3* | |
5974 | ||
f5525786 | 5975 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 5976 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
5977 | L: linux-omap@vger.kernel.org |
5978 | S: Maintained | |
5979 | F: arch/arm/*omap*/*clock* | |
5980 | ||
5981 | OMAP POWER MANAGEMENT SUPPORT | |
c69d72ae | 5982 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f5525786 TL |
5983 | L: linux-omap@vger.kernel.org |
5984 | S: Maintained | |
5985 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5986 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5987 | |
d21db568 | 5988 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
692ab1f3 PW |
5989 | M: Rajendra Nayak <rnayak@ti.com> |
5990 | M: Paul Walmsley <paul@pwsan.com> | |
5991 | L: linux-omap@vger.kernel.org | |
5992 | S: Maintained | |
d21db568 | 5993 | F: arch/arm/mach-omap2/prm* |
692ab1f3 | 5994 | |
f5525786 | 5995 | OMAP AUDIO SUPPORT |
6c284903 | 5996 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 5997 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
f5525786 TL |
5998 | L: alsa-devel@alsa-project.org (subscribers-only) |
5999 | L: linux-omap@vger.kernel.org | |
6000 | S: Maintained | |
6001 | F: sound/soc/omap/ | |
6002 | ||
6003 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 6004 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 6005 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
6006 | L: linux-omap@vger.kernel.org |
6007 | S: Maintained | |
6008 | F: drivers/video/omap/ | |
6009 | ||
676eec0d | 6010 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 6011 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 6012 | L: linux-omap@vger.kernel.org |
676eec0d | 6013 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 6014 | S: Maintained |
676eec0d | 6015 | F: drivers/video/omap2/ |
178ff4c9 TV |
6016 | F: Documentation/arm/OMAP/DSS |
6017 | ||
8b37fcfc OBC |
6018 | OMAP HARDWARE SPINLOCK SUPPORT |
6019 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6020 | L: linux-omap@vger.kernel.org | |
6021 | S: Maintained | |
6022 | F: drivers/hwspinlock/omap_hwspinlock.c | |
6023 | F: arch/arm/mach-omap2/hwspinlock.c | |
6024 | ||
f5525786 | 6025 | OMAP MMC SUPPORT |
8b58be88 | 6026 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
6027 | L: linux-omap@vger.kernel.org |
6028 | S: Maintained | |
653f41b5 MC |
6029 | F: drivers/mmc/host/omap.c |
6030 | ||
6031 | OMAP HS MMC SUPPORT | |
14006bfb | 6032 | M: Balaji T K <balajitk@ti.com> |
0a4585c6 | 6033 | L: linux-mmc@vger.kernel.org |
653f41b5 | 6034 | L: linux-omap@vger.kernel.org |
0a4585c6 | 6035 | S: Maintained |
653f41b5 | 6036 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
6037 | |
6038 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 6039 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
6040 | S: Maintained |
6041 | F: drivers/char/hw_random/omap-rng.c | |
6042 | ||
f400c82e | 6043 | OMAP HWMOD SUPPORT |
cdb55ab0 | 6044 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6045 | M: Paul Walmsley <paul@pwsan.com> |
6046 | L: linux-omap@vger.kernel.org | |
6047 | S: Maintained | |
8fc8b12b | 6048 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
6049 | |
6050 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
cdb55ab0 | 6051 | M: Benoît Cousson <bcousson@baylibre.com> |
f400c82e PW |
6052 | L: linux-omap@vger.kernel.org |
6053 | S: Maintained | |
6054 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
6055 | ||
7e8970e1 LP |
6056 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
6057 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
6058 | L: linux-media@vger.kernel.org | |
6059 | S: Maintained | |
90d72ac6 | 6060 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 6061 | |
f5525786 | 6062 | OMAP USB SUPPORT |
f299470a | 6063 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
6064 | L: linux-usb@vger.kernel.org |
6065 | L: linux-omap@vger.kernel.org | |
43b416e5 | 6066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 6067 | S: Maintained |
a16fbd65 JP |
6068 | F: drivers/usb/*/*omap* |
6069 | F: arch/arm/*omap*/usb* | |
f5525786 | 6070 | |
6d994710 KH |
6071 | OMAP GPIO DRIVER |
6072 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
c69d72ae | 6073 | M: Kevin Hilman <khilman@deeprootsystems.com> |
6d994710 KH |
6074 | L: linux-omap@vger.kernel.org |
6075 | S: Maintained | |
6076 | F: drivers/gpio/gpio-omap.c | |
6077 | ||
0ad122d9 | 6078 | OMFS FILESYSTEM |
8b58be88 | 6079 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
6080 | L: linux-karma-devel@lists.sourceforge.net |
6081 | S: Maintained | |
679655da JP |
6082 | F: Documentation/filesystems/omfs.txt |
6083 | F: fs/omfs/ | |
0ad122d9 | 6084 | |
c1986ee9 | 6085 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 6086 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 6087 | S: Maintained |
679655da JP |
6088 | F: drivers/char/pcmcia/cm4000_cs.c |
6089 | F: include/linux/cm4000_cs.h | |
c117ab84 | 6090 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 6091 | |
77c44ab1 | 6092 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 6093 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 6094 | S: Maintained |
679655da | 6095 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 6096 | |
77d5140f | 6097 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 6098 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 6099 | L: linux-media@vger.kernel.org |
275ffde4 | 6100 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 6101 | S: Maintained |
90d72ac6 | 6102 | F: drivers/media/i2c/ov7670.c |
77d5140f | 6103 | |
431bca73 | 6104 | ONENAND FLASH DRIVER |
8b58be88 | 6105 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
6106 | L: linux-mtd@lists.infradead.org |
6107 | S: Maintained | |
679655da JP |
6108 | F: drivers/mtd/onenand/ |
6109 | F: include/linux/mtd/onenand*.h | |
431bca73 | 6110 | |
1da177e4 | 6111 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 6112 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
6113 | L: osst-users@lists.sourceforge.net |
6114 | L: linux-scsi@vger.kernel.org | |
6115 | S: Maintained | |
f7269cfc JD |
6116 | F: Documentation/scsi/osst.txt |
6117 | F: drivers/scsi/osst.* | |
6118 | F: drivers/scsi/osst_*.h | |
6119 | F: drivers/scsi/st.h | |
1da177e4 | 6120 | |
e2d1d6c0 | 6121 | OPENCORES I2C BUS DRIVER |
8b58be88 | 6122 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 6123 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 6124 | S: Maintained |
679655da JP |
6125 | F: Documentation/i2c/busses/i2c-ocores |
6126 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 6127 | |
860c44c1 | 6128 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
19624236 | 6129 | M: Grant Likely <grant.likely@linaro.org> |
f910b831 | 6130 | M: Rob Herring <rob.herring@calxeda.com> |
d0fb18c5 | 6131 | L: devicetree@vger.kernel.org |
860c44c1 | 6132 | W: http://fdt.secretlab.ca |
3bbf9b9b | 6133 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 6134 | S: Maintained |
f8828205 | 6135 | F: drivers/of/ |
860c44c1 | 6136 | F: include/linux/of*.h |
f8828205 | 6137 | F: scripts/dtc/ |
860c44c1 | 6138 | K: of_get_property |
d945fa0d | 6139 | K: of_match_table |
860c44c1 | 6140 | |
f8828205 GL |
6141 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
6142 | M: Rob Herring <rob.herring@calxeda.com> | |
6143 | M: Pawel Moll <pawel.moll@arm.com> | |
6144 | M: Mark Rutland <mark.rutland@arm.com> | |
6145 | M: Stephen Warren <swarren@wwwdotorg.org> | |
de80963e | 6146 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
f8828205 GL |
6147 | L: devicetree@vger.kernel.org |
6148 | S: Maintained | |
6149 | F: Documentation/devicetree/ | |
6150 | F: arch/*/boot/dts/ | |
6151 | F: include/dt-bindings/ | |
6152 | ||
19f9d392 JB |
6153 | OPENRISC ARCHITECTURE |
6154 | M: Jonas Bonn <jonas@southpole.se> | |
6155 | W: http://openrisc.net | |
eab7c1c0 | 6156 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
6157 | S: Maintained |
6158 | T: git git://openrisc.net/~jonas/linux | |
14430813 | 6159 | F: arch/openrisc/ |
19f9d392 | 6160 | |
ccb1352e JG |
6161 | OPENVSWITCH |
6162 | M: Jesse Gross <jesse@nicira.com> | |
6163 | L: dev@openvswitch.org | |
6164 | W: http://openvswitch.org | |
6165 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
6166 | S: Maintained | |
6167 | F: net/openvswitch/ | |
6168 | ||
af39917d CL |
6169 | OPL4 DRIVER |
6170 | M: Clemens Ladisch <clemens@ladisch.de> | |
6171 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
6172 | T: git git://git.alsa-project.org/alsa-kernel.git | |
6173 | S: Maintained | |
6174 | F: sound/drivers/opl4/ | |
6175 | ||
1da177e4 | 6176 | OPROFILE |
4cf7e718 | 6177 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
6178 | L: oprofile-list@lists.sf.net |
6179 | S: Maintained | |
81c4a8a6 | 6180 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
6181 | F: arch/*/oprofile/ |
6182 | F: drivers/oprofile/ | |
6183 | F: include/linux/oprofile.h | |
1da177e4 | 6184 | |
e2d1d6c0 | 6185 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 6186 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 6187 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 RD |
6188 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
6189 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 6190 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 6191 | S: Supported |
679655da JP |
6192 | F: Documentation/filesystems/ocfs2.txt |
6193 | F: Documentation/filesystems/dlmfs.txt | |
6194 | F: fs/ocfs2/ | |
e2d1d6c0 | 6195 | |
1da177e4 | 6196 | ORINOCO DRIVER |
724c6b35 | 6197 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6198 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 6199 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 6200 | S: Orphan |
679655da | 6201 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 6202 | |
42c55aa8 | 6203 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 6204 | M: Boaz Harrosh <bharrosh@panasas.com> |
df4e33ad | 6205 | M: Benny Halevy <bhalevy@tonian.com> |
68274794 BH |
6206 | L: osd-dev@open-osd.org |
6207 | W: http://open-osd.org | |
54e5881d | 6208 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 6209 | S: Maintained |
42c55aa8 | 6210 | F: drivers/scsi/osd/ |
6b6f0b6c | 6211 | F: include/scsi/osd_* |
42c55aa8 | 6212 | F: fs/exofs/ |
68274794 | 6213 | |
e2d1d6c0 | 6214 | P54 WIRELESS DRIVER |
084cb0fe | 6215 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 6216 | L: linux-wireless@vger.kernel.org |
084cb0fe | 6217 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 6218 | S: Maintained |
679655da | 6219 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 6220 | |
f5cd7872 | 6221 | PA SEMI ETHERNET DRIVER |
8b58be88 | 6222 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
6223 | L: netdev@vger.kernel.org |
6224 | S: Maintained | |
ded19add | 6225 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 6226 | |
beb58aa3 | 6227 | PA SEMI SMBUS DRIVER |
8b58be88 | 6228 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 6229 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 6230 | S: Maintained |
679655da | 6231 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 6232 | |
48fc267e SK |
6233 | PADATA PARALLEL EXECUTION MECHANISM |
6234 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
6235 | L: linux-crypto@vger.kernel.org |
6236 | S: Maintained | |
6237 | F: kernel/padata.c | |
6238 | F: include/linux/padata.h | |
6239 | F: Documentation/padata.txt | |
6240 | ||
709ee531 | 6241 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 6242 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 6243 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 6244 | S: Maintained |
679655da | 6245 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 6246 | |
368dd5ac | 6247 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
6248 | M: David Howells <dhowells@redhat.com> |
6249 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
6250 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
6251 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
6252 | S: Maintained | |
679655da JP |
6253 | F: Documentation/mn10300/ |
6254 | F: arch/mn10300/ | |
4fa97181 | 6255 | |
1da177e4 | 6256 | PARALLEL PORT SUPPORT |
3dd1a329 | 6257 | L: linux-parport@lists.infradead.org (subscribers-only) |
5fdc2abe | 6258 | S: Orphan |
679655da JP |
6259 | F: drivers/parport/ |
6260 | F: include/linux/parport*.h | |
6261 | F: drivers/char/ppdev.c | |
c117ab84 | 6262 | F: include/uapi/linux/ppdev.h |
1da177e4 | 6263 | |
4cdf6bc2 | 6264 | PARAVIRT_OPS INTERFACE |
d633180c | 6265 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
6266 | M: Chris Wright <chrisw@sous-sol.org> |
6267 | M: Alok Kataria <akataria@vmware.com> | |
6268 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 6269 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 6270 | S: Supported |
679655da JP |
6271 | F: Documentation/ia64/paravirt_ops.txt |
6272 | F: arch/*/kernel/paravirt* | |
6273 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 6274 | |
e2d1d6c0 | 6275 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 6276 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 RD |
6277 | L: linux-parport@lists.infradead.org (subscribers-only) |
6278 | W: http://www.torque.net/linux-pp.html | |
6279 | S: Maintained | |
679655da JP |
6280 | F: Documentation/blockdev/paride.txt |
6281 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
6282 | |
6283 | PARISC ARCHITECTURE | |
b8828770 | 6284 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 6285 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
6286 | L: linux-parisc@vger.kernel.org |
6287 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 6288 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 6289 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
fbb46caa | 6290 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
e2d1d6c0 | 6291 | S: Maintained |
679655da | 6292 | F: arch/parisc/ |
2b6bac9e | 6293 | F: Documentation/parisc/ |
679655da | 6294 | F: drivers/parisc/ |
2b6bac9e HD |
6295 | F: drivers/char/agp/parisc-agp.c |
6296 | F: drivers/input/serio/gscps2.c | |
6297 | F: drivers/parport/parport_gsc.* | |
6298 | F: drivers/tty/serial/8250/8250_gsc.c | |
6299 | F: drivers/video/sti* | |
6300 | F: drivers/video/console/sti* | |
6301 | F: drivers/video/logo/logo_parisc* | |
e2d1d6c0 | 6302 | |
1662d32c | 6303 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 6304 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
6305 | L: lm-sensors@lm-sensors.org |
6306 | S: Maintained | |
679655da JP |
6307 | F: Documentation/hwmon/pc87360 |
6308 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
6309 | |
6310 | PC8736x GPIO DRIVER | |
8b58be88 | 6311 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6312 | S: Maintained |
679655da | 6313 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 6314 | |
1ad107fd JD |
6315 | PC87427 HARDWARE MONITORING DRIVER |
6316 | M: Jean Delvare <khali@linux-fr.org> | |
6317 | L: lm-sensors@lm-sensors.org | |
6318 | S: Maintained | |
6319 | F: Documentation/hwmon/pc87427 | |
6320 | F: drivers/hwmon/pc87427.c | |
6321 | ||
b26e0ed4 | 6322 | PCA9532 LED DRIVER |
8b58be88 | 6323 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 6324 | S: Maintained |
d5ca6918 JP |
6325 | F: drivers/leds/leds-pca9532.c |
6326 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 6327 | |
5ce914a8 | 6328 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 6329 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
6330 | L: linux-i2c@vger.kernel.org |
6331 | S: Maintained | |
b4f0b74e | 6332 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 6333 | |
3971dae5 | 6334 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 6335 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
6336 | S: Maintained |
6337 | F: drivers/firmware/pcdp.* | |
6338 | ||
065c6359 | 6339 | PCI ERROR RECOVERY |
6305902c | 6340 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 6341 | L: linux-pci@vger.kernel.org |
065c6359 | 6342 | S: Supported |
679655da | 6343 | F: Documentation/PCI/pci-error-recovery.txt |
065c6359 | 6344 | |
1da177e4 | 6345 | PCI SUBSYSTEM |
5ac3a6d2 | 6346 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 6347 | L: linux-pci@vger.kernel.org |
99662dd1 | 6348 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 6349 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 6350 | S: Supported |
679655da JP |
6351 | F: Documentation/PCI/ |
6352 | F: drivers/pci/ | |
6353 | F: include/linux/pci* | |
1da177e4 | 6354 | |
0447cfd7 TR |
6355 | PCI DRIVER FOR NVIDIA TEGRA |
6356 | M: Thierry Reding <thierry.reding@gmail.com> | |
6357 | L: linux-tegra@vger.kernel.org | |
6358 | S: Supported | |
6359 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt | |
6360 | F: drivers/pci/host/pci-tegra.c | |
6361 | ||
1da177e4 | 6362 | PCMCIA SUBSYSTEM |
4230dfc9 | 6363 | P: Linux PCMCIA Team |
f5df5881 | 6364 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 6365 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 6366 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 6367 | S: Maintained |
679655da JP |
6368 | F: Documentation/pcmcia/ |
6369 | F: drivers/pcmcia/ | |
6370 | F: include/pcmcia/ | |
1da177e4 LT |
6371 | |
6372 | PCNET32 NETWORK DRIVER | |
227fb925 | 6373 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 6374 | L: netdev@vger.kernel.org |
1da177e4 | 6375 | S: Maintained |
b955f6ca | 6376 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 6377 | |
48fc267e SK |
6378 | PCRYPT PARALLEL CRYPTO ENGINE |
6379 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
6380 | L: linux-crypto@vger.kernel.org | |
6381 | S: Maintained | |
6382 | F: crypto/pcrypt.c | |
6383 | F: include/crypto/pcrypt.h | |
6384 | ||
e72df0b8 TH |
6385 | PER-CPU MEMORY ALLOCATOR |
6386 | M: Tejun Heo <tj@kernel.org> | |
6387 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
6388 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
6389 | S: Maintained | |
6390 | F: include/linux/percpu*.h | |
6391 | F: mm/percpu*.c | |
6392 | F: arch/*/include/asm/percpu.h | |
6393 | ||
ad4ecbcb | 6394 | PER-TASK DELAY ACCOUNTING |
185e595f | 6395 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 6396 | S: Maintained |
679655da JP |
6397 | F: include/linux/delayacct.h |
6398 | F: kernel/delayacct.c | |
ad4ecbcb | 6399 | |
57c0c15b | 6400 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
6401 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
6402 | M: Paul Mackerras <paulus@samba.org> | |
dd9b238c | 6403 | M: Ingo Molnar <mingo@redhat.com> |
4aafd3f7 | 6404 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
75fc2d37 | 6405 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 6406 | S: Supported |
d53e8365 | 6407 | F: kernel/events/* |
a003236c | 6408 | F: include/linux/perf_event.h |
c117ab84 | 6409 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
6410 | F: arch/*/kernel/perf_event*.c |
6411 | F: arch/*/kernel/*/perf_event*.c | |
6412 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 6413 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
6414 | F: arch/*/kernel/perf_callchain.c |
6415 | F: tools/perf/ | |
6c0b3244 | 6416 | |
dd49d0f5 | 6417 | PERSONALITY HANDLING |
8b58be88 | 6418 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
6419 | L: linux-abi-devel@lists.sourceforge.net |
6420 | S: Maintained | |
679655da | 6421 | F: include/linux/personality.h |
c117ab84 | 6422 | F: include/uapi/linux/personality.h |
dd49d0f5 | 6423 | |
838e7a03 | 6424 | PHONET PROTOCOL |
2a06b40f | 6425 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
6426 | S: Supported |
6427 | F: Documentation/networking/phonet.txt | |
6428 | F: include/linux/phonet.h | |
6429 | F: include/net/phonet/ | |
c117ab84 | 6430 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
6431 | F: net/phonet/ |
6432 | ||
1da177e4 | 6433 | PHRAM MTD DRIVER |
8b58be88 | 6434 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
6435 | L: linux-mtd@lists.infradead.org |
6436 | S: Maintained | |
679655da | 6437 | F: drivers/mtd/devices/phram.c |
1da177e4 | 6438 | |
efdbb10e BP |
6439 | PICOLCD HID DRIVER |
6440 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
6441 | L: linux-input@vger.kernel.org | |
6442 | S: Maintained | |
6443 | F: drivers/hid/hid-picolcd* | |
6444 | ||
a53bfa07 JI |
6445 | PICOXCELL SUPPORT |
6446 | M: Jamie Iles <jamie@jamieiles.com> | |
6447 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6448 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
6449 | S: Supported | |
14430813 | 6450 | F: arch/arm/mach-picoxcell/ |
a53bfa07 JI |
6451 | F: drivers/*/picoxcell* |
6452 | F: drivers/*/*/picoxcell* | |
6453 | ||
2744e8af LW |
6454 | PIN CONTROL SUBSYSTEM |
6455 | M: Linus Walleij <linus.walleij@linaro.org> | |
6456 | S: Maintained | |
07f29ba6 | 6457 | F: drivers/pinctrl/ |
8e406fe4 | 6458 | F: include/linux/pinctrl/ |
2744e8af | 6459 | |
2201bbb8 JCPV |
6460 | PIN CONTROLLER - ATMEL AT91 |
6461 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
6462 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6463 | S: Maintained | |
6464 | F: drivers/pinctrl/pinctrl-at91.c | |
6465 | ||
b75e60d6 DA |
6466 | PIN CONTROLLER - SAMSUNG |
6467 | M: Tomasz Figa <t.figa@samsung.com> | |
6468 | M: Thomas Abraham <thomas.abraham@linaro.org> | |
6469 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6470 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
6471 | S: Maintained | |
6472 | F: drivers/pinctrl/pinctrl-exynos.* | |
6473 | F: drivers/pinctrl/pinctrl-s3c* | |
6474 | F: drivers/pinctrl/pinctrl-samsung.* | |
6475 | ||
deda8287 | 6476 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 6477 | M: Viresh Kumar <viresh.linux@gmail.com> |
deda8287 VK |
6478 | L: spear-devel@list.st.com |
6479 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
6480 | W: http://www.st.com/spear | |
6481 | S: Maintained | |
8e406fe4 | 6482 | F: drivers/pinctrl/spear/ |
deda8287 | 6483 | |
249a6771 | 6484 | PKTCDVD DRIVER |
dbd47133 | 6485 | M: Jiri Kosina <jkosina@suse.cz> |
249a6771 | 6486 | S: Maintained |
679655da JP |
6487 | F: drivers/block/pktcdvd.c |
6488 | F: include/linux/pktcdvd.h | |
c117ab84 | 6489 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 6490 | |
b31d8273 G |
6491 | PKUNITY SOC DRIVERS |
6492 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
6493 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
6494 | S: Maintained | |
6495 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
6496 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 6497 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 6498 | F: drivers/video/fb-puv3.c |
2809e80b | 6499 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 6500 | |
9d2ecfb7 | 6501 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 6502 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
6503 | L: lm-sensors@lm-sensors.org |
6504 | W: http://www.lm-sensors.org/ | |
6505 | W: http://www.roeck-us.net/linux/drivers/ | |
6506 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
6507 | S: Maintained | |
6508 | F: Documentation/hwmon/pmbus | |
6509 | F: drivers/hwmon/pmbus/ | |
6510 | F: include/linux/i2c/pmbus.h | |
6511 | ||
89a36810 | 6512 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 6513 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
89a36810 AR |
6514 | L: linux-scsi@vger.kernel.org |
6515 | W: http://www.pmc-sierra.com/ | |
6516 | S: Supported | |
6517 | F: drivers/scsi/pmcraid.* | |
6518 | ||
dbf9bfe6 | 6519 | PMC SIERRA PM8001 DRIVER |
4f0e359c | 6520 | M: xjtuwjp@gmail.com |
dbf9bfe6 | 6521 | M: lindar_liu@usish.com |
6522 | L: linux-scsi@vger.kernel.org | |
6523 | S: Supported | |
6524 | F: drivers/scsi/pm8001/ | |
6525 | ||
1da177e4 | 6526 | POSIX CLOCKS and TIMERS |
8b58be88 | 6527 | M: Thomas Gleixner <tglx@linutronix.de> |
75fc2d37 | 6528 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 6529 | S: Supported |
679655da JP |
6530 | F: fs/timerfd.c |
6531 | F: include/linux/timer* | |
6532 | F: kernel/*timer* | |
1da177e4 | 6533 | |
3be86148 | 6534 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
9d5e2a02 | 6535 | M: Anton Vorontsov <anton@enomsg.org> |
8b58be88 | 6536 | M: David Woodhouse <dwmw2@infradead.org> |
54e5881d | 6537 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 6538 | S: Maintained |
679655da | 6539 | F: include/linux/power_supply.h |
8cd725a1 | 6540 | F: drivers/power/ |
3be86148 | 6541 | |
1da177e4 | 6542 | PNP SUPPORT |
46a1f21a | 6543 | M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> |
c2d197e8 | 6544 | M: Bjorn Helgaas <bhelgaas@google.com> |
1da177e4 | 6545 | S: Maintained |
679655da | 6546 | F: drivers/pnp/ |
1da177e4 | 6547 | |
999445d4 | 6548 | PNXxxxx I2C DRIVER |
8b58be88 | 6549 | M: Vitaly Wool <vitalywool@gmail.com> |
846557d3 | 6550 | L: linux-i2c@vger.kernel.org |
999445d4 | 6551 | S: Maintained |
679655da | 6552 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 6553 | |
1da177e4 | 6554 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 6555 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
6556 | L: linux-ppp@vger.kernel.org |
6557 | S: Maintained | |
224cf5ad | 6558 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
6559 | |
6560 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6561 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 6562 | S: Maintained |
679655da | 6563 | F: net/atm/pppoatm.c |
c117ab84 | 6564 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6565 | |
6566 | PPP OVER ETHERNET | |
8b58be88 | 6567 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 6568 | S: Maintained |
224cf5ad JK |
6569 | F: drivers/net/ppp/pppoe.c |
6570 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6571 | |
a6d2370b | 6572 | PPP OVER L2TP |
8b58be88 | 6573 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 6574 | S: Maintained |
90ca28d1 | 6575 | F: net/l2tp/l2tp_ppp.c |
679655da | 6576 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6577 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6578 | |
eae9d2ba | 6579 | PPS SUPPORT |
8b58be88 | 6580 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
6581 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6582 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
6583 | S: Maintained | |
cabaaf41 JP |
6584 | F: Documentation/pps/ |
6585 | F: drivers/pps/ | |
6586 | F: include/linux/pps*.h | |
eae9d2ba | 6587 | |
71a6d0af HW |
6588 | PPTP DRIVER |
6589 | M: Dmitry Kozlov <xeb@mail.ru> | |
6590 | L: netdev@vger.kernel.org | |
6591 | S: Maintained | |
224cf5ad | 6592 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6593 | W: http://sourceforge.net/projects/accel-pptp |
6594 | ||
1da177e4 | 6595 | PREEMPTIBLE KERNEL |
8b58be88 | 6596 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
6597 | L: kpreempt-tech@lists.sourceforge.net |
6598 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6599 | S: Supported | |
679655da JP |
6600 | F: Documentation/preempt-locking.txt |
6601 | F: include/linux/preempt.h | |
1da177e4 LT |
6602 | |
6603 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6604 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 6605 | L: linux-wireless@vger.kernel.org |
9ef80804 | 6606 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6607 | S: Obsolete |
679655da | 6608 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6609 | |
b3277dfa | 6610 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
743a7ecb | 6611 | M: Mikael Pettersson <mikpelinux@gmail.com> |
b3277dfa MP |
6612 | L: linux-ide@vger.kernel.org |
6613 | S: Maintained | |
679655da | 6614 | F: drivers/ata/sata_promise.* |
b3277dfa | 6615 | |
02c18891 | 6616 | PS3 NETWORK SUPPORT |
b809b9ca | 6617 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 6618 | L: netdev@vger.kernel.org |
a4724ed6 | 6619 | L: cbe-oss-dev@lists.ozlabs.org |
b809b9ca | 6620 | S: Maintained |
8df158ac | 6621 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6622 | |
f58a9d17 | 6623 | PS3 PLATFORM SUPPORT |
b809b9ca | 6624 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 SR |
6625 | L: linuxppc-dev@lists.ozlabs.org |
6626 | L: cbe-oss-dev@lists.ozlabs.org | |
b809b9ca | 6627 | S: Maintained |
679655da JP |
6628 | F: arch/powerpc/boot/ps3* |
6629 | F: arch/powerpc/include/asm/lv1call.h | |
6630 | F: arch/powerpc/include/asm/ps3*.h | |
6631 | F: arch/powerpc/platforms/ps3/ | |
6632 | F: drivers/*/ps3* | |
6633 | F: drivers/ps3/ | |
fec629b8 | 6634 | F: drivers/rtc/rtc-ps3.c |
679655da | 6635 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6636 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6637 | |
cffb4add | 6638 | PS3VRAM DRIVER |
8b58be88 | 6639 | M: Jim Paris <jim@jtan.com> |
a4724ed6 | 6640 | L: cbe-oss-dev@lists.ozlabs.org |
cffb4add | 6641 | S: Maintained |
8a3977cb | 6642 | F: drivers/block/ps3vram.c |
cffb4add | 6643 | |
8defe599 | 6644 | PSTORE FILESYSTEM |
9d5e2a02 | 6645 | M: Anton Vorontsov <anton@enomsg.org> |
8defe599 AV |
6646 | M: Colin Cross <ccross@android.com> |
6647 | M: Kees Cook <keescook@chromium.org> | |
6648 | M: Tony Luck <tony.luck@intel.com> | |
6649 | S: Maintained | |
6650 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6651 | F: fs/pstore/ | |
6652 | F: include/linux/pstore* | |
04851772 | 6653 | F: drivers/firmware/efi/efi-pstore.c |
8defe599 AV |
6654 | F: drivers/acpi/apei/erst.c |
6655 | ||
7fbc415d RC |
6656 | PTP HARDWARE CLOCK SUPPORT |
6657 | M: Richard Cochran <richardcochran@gmail.com> | |
e7333e3c | 6658 | L: netdev@vger.kernel.org |
7fbc415d RC |
6659 | S: Maintained |
6660 | W: http://linuxptp.sourceforge.net/ | |
6661 | F: Documentation/ABI/testing/sysfs-ptp | |
6662 | F: Documentation/ptp/* | |
0ecb3cdd | 6663 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6664 | F: drivers/net/phy/dp83640* |
6665 | F: drivers/ptp/* | |
6666 | F: include/linux/ptp_cl* | |
6667 | ||
cf94a4d1 | 6668 | PTRACE SUPPORT |
8b58be88 JP |
6669 | M: Roland McGrath <roland@redhat.com> |
6670 | M: Oleg Nesterov <oleg@redhat.com> | |
cf94a4d1 CH |
6671 | S: Maintained |
6672 | F: include/asm-generic/syscall.h | |
6673 | F: include/linux/ptrace.h | |
6674 | F: include/linux/regset.h | |
6675 | F: include/linux/tracehook.h | |
c117ab84 | 6676 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6677 | F: kernel/ptrace.c |
6678 | ||
8320204a | 6679 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6680 | M: Mike Isely <isely@pobox.com> |
16e9495d | 6681 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 6682 | L: linux-media@vger.kernel.org |
8320204a | 6683 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6684 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6685 | S: Maintained |
679655da | 6686 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6687 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6688 | |
39532e6c HG |
6689 | PWC WEBCAM DRIVER |
6690 | M: Hans de Goede <hdegoede@redhat.com> | |
6691 | L: linux-media@vger.kernel.org | |
6692 | T: git git://linuxtv.org/media_tree.git | |
6693 | S: Maintained | |
6694 | F: drivers/media/usb/pwc/* | |
6695 | ||
200efedd | 6696 | PWM SUBSYSTEM |
aa3495f7 TR |
6697 | M: Thierry Reding <thierry.reding@gmail.com> |
6698 | L: linux-pwm@vger.kernel.org | |
0c2498f1 | 6699 | S: Maintained |
200efedd TR |
6700 | W: http://gitorious.org/linux-pwm |
6701 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6702 | F: Documentation/pwm.txt | |
6703 | F: Documentation/devicetree/bindings/pwm/ | |
6704 | F: include/linux/pwm.h | |
0c2498f1 | 6705 | F: drivers/pwm/ |
a140b98d TR |
6706 | F: drivers/video/backlight/pwm_bl.c |
6707 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6708 | |
30ec261e | 6709 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6710 | M: Eric Miao <eric.y.miao@gmail.com> |
6711 | M: Russell King <linux@arm.linux.org.uk> | |
a323f664 | 6712 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
efc03ecb | 6713 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
6714 | T: git git://github.com/hzhuang1/linux.git |
6715 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6716 | S: Maintained |
679655da JP |
6717 | F: arch/arm/mach-pxa/ |
6718 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6719 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6720 | F: drivers/usb/gadget/pxa2* |
6721 | F: include/sound/pxa2xx-lib.h | |
bec4c99e | 6722 | F: sound/arm/pxa* |
14430813 | 6723 | F: sound/soc/pxa/ |
1da177e4 | 6724 | |
3f640c61 | 6725 | MMP SUPPORT |
8b58be88 | 6726 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 6727 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 6728 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
6729 | T: git git://github.com/hzhuang1/linux.git |
6730 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6731 | S: Maintained |
3f640c61 | 6732 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6733 | |
272f133a PO |
6734 | PXA MMCI DRIVER |
6735 | S: Orphan | |
6736 | ||
57f63bc8 | 6737 | PXA RTC DRIVER |
8b58be88 | 6738 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
6739 | L: rtc-linux@googlegroups.com |
6740 | S: Maintained | |
6741 | ||
52a09a04 | 6742 | QIB DRIVER |
8473c603 | 6743 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
6744 | L: linux-rdma@vger.kernel.org |
6745 | S: Supported | |
6746 | F: drivers/infiniband/hw/qib/ | |
6747 | ||
5e9772b9 JS |
6748 | QLOGIC QLA1280 SCSI DRIVER |
6749 | M: Michael Reed <mdr@sgi.com> | |
6750 | L: linux-scsi@vger.kernel.org | |
6751 | S: Maintained | |
6752 | F: drivers/scsi/qla1280.[ch] | |
6753 | ||
1da177e4 | 6754 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6755 | M: Andrew Vasquez <andrew.vasquez@qlogic.com> |
95e6a856 | 6756 | M: linux-driver@qlogic.com |
1da177e4 LT |
6757 | L: linux-scsi@vger.kernel.org |
6758 | S: Supported | |
679655da JP |
6759 | F: Documentation/scsi/LICENSE.qla2xxx |
6760 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6761 | |
883c98fe | 6762 | QLOGIC QLA4XXX iSCSI DRIVER |
883c98fe RA |
6763 | M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> |
6764 | M: iscsi-driver@qlogic.com | |
6765 | L: linux-scsi@vger.kernel.org | |
6766 | S: Supported | |
bacfb81b | 6767 | F: Documentation/scsi/LICENSE.qla4xxx |
883c98fe RA |
6768 | F: drivers/scsi/qla4xxx/ |
6769 | ||
5a4faa87 | 6770 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6771 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 6772 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
6773 | M: linux-driver@qlogic.com |
6774 | L: netdev@vger.kernel.org | |
6775 | S: Supported | |
679655da | 6776 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6777 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6778 | |
0ec00f03 | 6779 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
7ad031ee | 6780 | M: Himanshu Madhani <himanshu.madhani@qlogic.com> |
195ca382 SC |
6781 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> |
6782 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> | |
2ab1c24b | 6783 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
e987716b | 6784 | M: Sony Chacko <sony.chacko@qlogic.com> |
7ad031ee | 6785 | M: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com> |
0ec00f03 AKS |
6786 | M: linux-driver@qlogic.com |
6787 | L: netdev@vger.kernel.org | |
6788 | S: Supported | |
aa43c215 | 6789 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6790 | |
c4e84bde | 6791 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
d4ec1b5c | 6792 | M: Shahed Shaikh <shahed.shaikh@qlogic.com> |
b997d79a | 6793 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 6794 | M: Ron Mercer <ron.mercer@qlogic.com> |
4cbfbe25 | 6795 | M: linux-driver@qlogic.com |
c4e84bde RM |
6796 | L: netdev@vger.kernel.org |
6797 | S: Supported | |
aa43c215 | 6798 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6799 | |
1da177e4 | 6800 | QNX4 FILESYSTEM |
8b58be88 | 6801 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
6802 | W: http://www.alarsen.net/linux/qnx4fs/ |
6803 | S: Maintained | |
80811493 | 6804 | F: fs/qnx4/ |
c117ab84 CEB |
6805 | F: include/uapi/linux/qnx4_fs.h |
6806 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6807 | |
91952bc0 AP |
6808 | QT1010 MEDIA DRIVER |
6809 | M: Antti Palosaari <crope@iki.fi> | |
6810 | L: linux-media@vger.kernel.org | |
6811 | W: http://linuxtv.org/ | |
6812 | W: http://palosaari.fi/linux/ | |
6813 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6814 | T: git git://linuxtv.org/anttip/media_tree.git | |
6815 | S: Maintained | |
6816 | F: drivers/media/tuners/qt1010* | |
6817 | ||
2ea0ffcb KV |
6818 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
6819 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
6820 | L: ath10k@lists.infradead.org | |
6821 | W: http://wireless.kernel.org/en/users/Drivers/ath10k | |
6822 | T: git git://github.com/kvalo/ath.git | |
6823 | S: Supported | |
6824 | F: drivers/net/wireless/ath/ath10k/ | |
6825 | ||
4f4567cf RK |
6826 | QUALCOMM HEXAGON ARCHITECTURE |
6827 | M: Richard Kuo <rkuo@codeaurora.org> | |
6828 | L: linux-hexagon@vger.kernel.org | |
6829 | S: Supported | |
6830 | F: arch/hexagon/ | |
6831 | ||
35e3540b HV |
6832 | QUICKCAM PARALLEL PORT WEBCAMS |
6833 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
6834 | L: linux-media@vger.kernel.org | |
6835 | T: git git://linuxtv.org/media_tree.git | |
6836 | W: http://linuxtv.org | |
6837 | S: Odd Fixes | |
6838 | F: drivers/media/parport/*-qcam* | |
6839 | ||
602adf40 | 6840 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6841 | M: Yehuda Sadeh <yehuda@inktank.com> |
6842 | M: Sage Weil <sage@inktank.com> | |
6843 | M: Alex Elder <elder@inktank.com> | |
602adf40 | 6844 | M: ceph-devel@vger.kernel.org |
09d90327 SW |
6845 | W: http://ceph.com/ |
6846 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6847 | S: Supported |
6848 | F: drivers/block/rbd.c | |
6849 | F: drivers/block/rbd_types.h | |
6850 | ||
1da177e4 | 6851 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6852 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 6853 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 6854 | S: Maintained |
679655da | 6855 | F: drivers/video/aty/radeon* |
c117ab84 | 6856 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6857 | |
c6c9b34c HG |
6858 | RADIOSHARK RADIO DRIVER |
6859 | M: Hans de Goede <hdegoede@redhat.com> | |
6860 | L: linux-media@vger.kernel.org | |
6861 | T: git git://linuxtv.org/media_tree.git | |
6862 | S: Maintained | |
6863 | F: drivers/media/radio/radio-shark.c | |
6864 | ||
6865 | RADIOSHARK2 RADIO DRIVER | |
6866 | M: Hans de Goede <hdegoede@redhat.com> | |
6867 | L: linux-media@vger.kernel.org | |
6868 | T: git git://linuxtv.org/media_tree.git | |
6869 | S: Maintained | |
6870 | F: drivers/media/radio/radio-shark2.c | |
6871 | F: drivers/media/radio/radio-tea5777.c | |
6872 | ||
1da177e4 | 6873 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6874 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 6875 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 6876 | S: Maintained |
679655da | 6877 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6878 | |
e7839f25 | 6879 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6880 | P: rt2x00 project |
e1a6542f | 6881 | M: Ivo van Doorn <IvDoorn@gmail.com> |
4a7bd3ec | 6882 | M: Gertjan van Wingerde <gwingerde@gmail.com> |
f198f98e | 6883 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 6884 | L: linux-wireless@vger.kernel.org |
83fc9c89 | 6885 | L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) |
95ea3627 ID |
6886 | W: http://rt2x00.serialmonkey.com/ |
6887 | S: Maintained | |
54e5881d | 6888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6889 | F: drivers/net/wireless/rt2x00/ |
6890 | ||
9db5579b | 6891 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6892 | M: Nick Piggin <npiggin@kernel.dk> |
9db5579b | 6893 | S: Maintained |
679655da JP |
6894 | F: Documentation/blockdev/ramdisk.txt |
6895 | F: drivers/block/brd.c | |
9db5579b | 6896 | |
9e95ce27 | 6897 | RANDOM NUMBER DRIVER |
330e0a01 | 6898 | M: Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 6899 | S: Maintained |
679655da | 6900 | F: drivers/char/random.c |
9e95ce27 | 6901 | |
394b701c | 6902 | RAPIDIO SUBSYSTEM |
8b58be88 | 6903 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 6904 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 6905 | S: Maintained |
679655da | 6906 | F: drivers/rapidio/ |
394b701c | 6907 | |
e2d1d6c0 | 6908 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6909 | L: linux-wireless@vger.kernel.org |
f52a5490 | 6910 | S: Orphan |
679655da | 6911 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6912 | |
6913 | RCUTORTURE MODULE | |
8b58be88 JP |
6914 | M: Josh Triplett <josh@freedesktop.org> |
6915 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
f9094d8e | 6916 | S: Supported |
08deed1e | 6917 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6918 | F: Documentation/RCU/torture.txt |
6919 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6920 | |
c1f766b5 | 6921 | RDC R-321X SoC |
8b58be88 | 6922 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
6923 | S: Maintained |
6924 | ||
db17f395 | 6925 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6926 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
6927 | L: netdev@vger.kernel.org |
6928 | S: Maintained | |
58565a35 | 6929 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6930 | |
a09ed661 | 6931 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6932 | M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com> |
fbb5a558 | 6933 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 6934 | S: Supported |
679655da | 6935 | F: net/rds/ |
a09ed661 | 6936 | |
595182bc | 6937 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6938 | M: Dipankar Sarma <dipankar@in.ibm.com> |
6939 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
9fab9787 | 6940 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6941 | S: Supported |
08deed1e | 6942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6943 | F: Documentation/RCU/ |
9fab9787 | 6944 | X: Documentation/RCU/torture.txt |
f9094d8e | 6945 | F: include/linux/rcu* |
f9094d8e | 6946 | F: kernel/rcu* |
f9094d8e | 6947 | X: kernel/rcutorture.c |
595182bc | 6948 | |
0c86edc0 | 6949 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6950 | M: Alessandro Zummo <a.zummo@towertech.it> |
76465493 | 6951 | L: rtc-linux@googlegroups.com |
8a6e2535 | 6952 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6953 | S: Maintained |
679655da JP |
6954 | F: Documentation/rtc.txt |
6955 | F: drivers/rtc/ | |
6956 | F: include/linux/rtc.h | |
c117ab84 | 6957 | F: include/uapi/linux/rtc.h |
0c86edc0 | 6958 | |
1da177e4 | 6959 | REISERFS FILE SYSTEM |
76c4e5ea | 6960 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 6961 | S: Supported |
679655da | 6962 | F: fs/reiserfs/ |
1da177e4 | 6963 | |
b83a313b | 6964 | REGISTER MAP ABSTRACTION |
b02e48f2 | 6965 | M: Mark Brown <broonie@kernel.org> |
b83a313b MB |
6966 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
6967 | S: Supported | |
6968 | F: drivers/base/regmap/ | |
6969 | F: include/linux/regmap.h | |
6970 | ||
400e64df OBC |
6971 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6972 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 6973 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6974 | S: Maintained |
6975 | F: drivers/remoteproc/ | |
6976 | F: Documentation/remoteproc.txt | |
6fc26488 | 6977 | F: include/linux/remoteproc.h |
400e64df | 6978 | |
d8115db5 OBC |
6979 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
6980 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6981 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git | |
6982 | S: Maintained | |
6983 | F: drivers/rpmsg/ | |
6984 | F: Documentation/rpmsg.txt | |
6985 | F: include/linux/rpmsg.h | |
6986 | ||
e0897645 | 6987 | RFKILL |
8b58be88 | 6988 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 6989 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
6990 | W: http://wireless.kernel.org/ |
6991 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6992 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6993 | S: Maintained |
505c9247 | 6994 | F: Documentation/rfkill.txt |
80811493 | 6995 | F: net/rfkill/ |
e0897645 | 6996 | |
67e054e9 ML |
6997 | RICOH SMARTMEDIA/XD DRIVER |
6998 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
6999 | S: Maintained | |
21c26f50 JP |
7000 | F: drivers/mtd/nand/r852.c |
7001 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 7002 | |
92634125 ML |
7003 | RICOH R5C592 MEMORYSTICK DRIVER |
7004 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7005 | S: Maintained | |
7006 | F: drivers/memstick/host/r592.* | |
7007 | ||
27f1d2f9 SA |
7008 | ROCCAT DRIVERS |
7009 | M: Stefan Achatz <erazor_de@users.sourceforge.net> | |
7010 | W: http://sourceforge.net/projects/roccat/ | |
7011 | S: Maintained | |
7012 | F: drivers/hid/hid-roccat* | |
7013 | F: include/linux/hid-roccat* | |
7014 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* | |
7015 | ||
1da177e4 LT |
7016 | ROCKETPORT DRIVER |
7017 | P: Comtrol Corp. | |
1da177e4 LT |
7018 | W: http://www.comtrol.com |
7019 | S: Maintained | |
679655da | 7020 | F: Documentation/serial/rocket.txt |
c897401b | 7021 | F: drivers/tty/rocket* |
1da177e4 LT |
7022 | |
7023 | ROSE NETWORK LAYER | |
8b58be88 | 7024 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 7025 | L: linux-hams@vger.kernel.org |
d34cb28a | 7026 | W: http://www.linux-ax25.org/ |
1da177e4 | 7027 | S: Maintained |
679655da | 7028 | F: include/net/rose.h |
c117ab84 | 7029 | F: include/uapi/linux/rose.h |
679655da | 7030 | F: net/rose/ |
1da177e4 | 7031 | |
91952bc0 AP |
7032 | RTL2830 MEDIA DRIVER |
7033 | M: Antti Palosaari <crope@iki.fi> | |
7034 | L: linux-media@vger.kernel.org | |
7035 | W: http://linuxtv.org/ | |
7036 | W: http://palosaari.fi/linux/ | |
7037 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7038 | T: git git://linuxtv.org/anttip/media_tree.git | |
7039 | S: Maintained | |
7040 | F: drivers/media/dvb-frontends/rtl2830* | |
7041 | ||
27a0aacf AP |
7042 | RTL2832 MEDIA DRIVER |
7043 | M: Antti Palosaari <crope@iki.fi> | |
7044 | L: linux-media@vger.kernel.org | |
7045 | W: http://linuxtv.org/ | |
7046 | W: http://palosaari.fi/linux/ | |
7047 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7048 | T: git git://linuxtv.org/anttip/media_tree.git | |
7049 | S: Maintained | |
7050 | F: drivers/media/dvb-frontends/rtl2832* | |
7051 | ||
59840488 | 7052 | RTL8180 WIRELESS DRIVER |
8b58be88 | 7053 | M: "John W. Linville" <linville@tuxdriver.com> |
605bebe2 | 7054 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7055 | W: http://wireless.kernel.org/ |
54e5881d | 7056 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 7057 | S: Maintained |
3cfeb0c3 | 7058 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 7059 | |
59840488 | 7060 | RTL8187 WIRELESS DRIVER |
9f0939bf | 7061 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
7062 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
7063 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 7064 | L: linux-wireless@vger.kernel.org |
491b26b4 | 7065 | W: http://wireless.kernel.org/ |
54e5881d | 7066 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 7067 | S: Maintained |
3cfeb0c3 | 7068 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 7069 | |
3cf0c8ad LF |
7070 | RTL8192CE WIRELESS DRIVER |
7071 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7072 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
7073 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 7074 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
7075 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7076 | S: Maintained | |
7077 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 7078 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 7079 | |
9eb8ef74 | 7080 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 7081 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 7082 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 7083 | S: Maintained |
679655da | 7084 | F: drivers/video/savage/ |
9eb8ef74 | 7085 | |
1da177e4 | 7086 | S390 |
8b58be88 JP |
7087 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
7088 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
1da177e4 | 7089 | M: linux390@de.ibm.com |
d58140cc | 7090 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7091 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7092 | S: Supported | |
679655da | 7093 | F: arch/s390/ |
a968cd3e | 7094 | F: drivers/s390/ |
20d16fef | 7095 | F: block/partitions/ibm.c |
3bfe6858 JN |
7096 | F: Documentation/s390/ |
7097 | F: Documentation/DocBook/s390* | |
5238da45 HC |
7098 | |
7099 | S390 NETWORK DRIVERS | |
8b58be88 JP |
7100 | M: Ursula Braun <ursula.braun@de.ibm.com> |
7101 | M: Frank Blaschka <blaschka@linux.vnet.ibm.com> | |
5238da45 | 7102 | M: linux390@de.ibm.com |
d58140cc | 7103 | L: linux-s390@vger.kernel.org |
5238da45 HC |
7104 | W: http://www.ibm.com/developerworks/linux/linux390/ |
7105 | S: Supported | |
679655da | 7106 | F: drivers/s390/net/ |
5238da45 | 7107 | |
feed9b62 | 7108 | S390 ZCRYPT DRIVER |
5c8d0983 | 7109 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
feed9b62 FB |
7110 | M: linux390@de.ibm.com |
7111 | L: linux-s390@vger.kernel.org | |
a968cd3e | 7112 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 7113 | S: Supported |
d5ca6918 | 7114 | F: drivers/s390/crypto/ |
feed9b62 | 7115 | |
5238da45 | 7116 | S390 ZFCP DRIVER |
d38e19d0 | 7117 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
5238da45 | 7118 | M: linux390@de.ibm.com |
d58140cc | 7119 | L: linux-s390@vger.kernel.org |
5238da45 | 7120 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 7121 | S: Supported |
679655da | 7122 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 7123 | |
dd96df2c | 7124 | S390 IUCV NETWORK LAYER |
8b58be88 | 7125 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
7126 | M: linux390@de.ibm.com |
7127 | L: linux-s390@vger.kernel.org | |
7128 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
7129 | S: Supported | |
679655da JP |
7130 | F: drivers/s390/net/*iucv* |
7131 | F: include/net/iucv/ | |
7132 | F: net/iucv/ | |
dd96df2c | 7133 | |
4dde7f75 | 7134 | S3C24XX SD/MMC Driver |
8b58be88 | 7135 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 7136 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 7137 | S: Supported |
679655da | 7138 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 7139 | |
1f15a229 HV |
7140 | SAA6588 RDS RECEIVER DRIVER |
7141 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7142 | L: linux-media@vger.kernel.org | |
7143 | T: git git://linuxtv.org/media_tree.git | |
7144 | W: http://linuxtv.org | |
7145 | S: Odd Fixes | |
7146 | F: drivers/media/i2c/saa6588* | |
7147 | ||
98ed12e6 | 7148 | SAA7134 VIDEO4LINUX DRIVER |
1b2c14b4 | 7149 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
98ed12e6 MCC |
7150 | L: linux-media@vger.kernel.org |
7151 | W: http://linuxtv.org | |
7152 | T: git git://linuxtv.org/media_tree.git | |
7153 | S: Odd fixes | |
e42bf501 | 7154 | F: Documentation/video4linux/*.saa7134 |
98ed12e6 MCC |
7155 | F: drivers/media/pci/saa7134/ |
7156 | ||
1da177e4 | 7157 | SAA7146 VIDEO4LINUX-2 DRIVER |
566b8157 | 7158 | M: Hans Verkuil <hverkuil@xs4all.nl> |
661263b5 | 7159 | L: linux-media@vger.kernel.org |
275ffde4 | 7160 | T: git git://linuxtv.org/media_tree.git |
1da177e4 | 7161 | S: Maintained |
90d72ac6 MCC |
7162 | F: drivers/media/common/saa7146/ |
7163 | F: drivers/media/pci/saa7146/ | |
7164 | F: include/media/saa7146* | |
1da177e4 | 7165 | |
92304a40 | 7166 | SAMSUNG LAPTOP DRIVER |
5909c654 | 7167 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
7168 | L: platform-driver-x86@vger.kernel.org |
7169 | S: Maintained | |
7170 | F: drivers/platform/x86/samsung-laptop.c | |
7171 | ||
4a109cc0 | 7172 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 7173 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
7174 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
7175 | S: Supported | |
14430813 | 7176 | F: sound/soc/samsung/ |
4a109cc0 | 7177 | |
0d89a28b JH |
7178 | SAMSUNG FRAMEBUFFER DRIVER |
7179 | M: Jingoo Han <jg1.han@samsung.com> | |
7180 | L: linux-fbdev@vger.kernel.org | |
7181 | S: Maintained | |
7182 | F: drivers/video/s3c-fb.c | |
7183 | ||
f69d3a17 SK |
7184 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
7185 | M: Sangbeom Kim <sbkim73@samsung.com> | |
7186 | L: linux-kernel@vger.kernel.org | |
7187 | S: Supported | |
7188 | F: drivers/mfd/sec*.c | |
7189 | F: drivers/regulator/s2m*.c | |
7190 | F: drivers/regulator/s5m*.c | |
7191 | F: drivers/rtc/rtc-sec.c | |
7192 | F: include/linux/mfd/samsung/ | |
7193 | ||
038f5c4b SN |
7194 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
7195 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7196 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
7197 | L: linux-media@vger.kernel.org | |
7198 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ | |
7199 | S: Supported | |
7200 | F: drivers/media/platform/exynos4-is/ | |
7201 | F: include/media/s5p_fimc.h | |
7202 | ||
6fd86ab2 SN |
7203 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
7204 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
7205 | L: linux-media@vger.kernel.org | |
7206 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
7207 | S: Maintained | |
7208 | F: drivers/media/platform/s3c-camif/ | |
7209 | F: include/media/s3c_camif.h | |
7210 | ||
b84ef24e AH |
7211 | SAMSUNG S5C73M3 CAMERA DRIVER |
7212 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
7213 | M: Andrzej Hajda <a.hajda@samsung.com> | |
7214 | L: linux-media@vger.kernel.org | |
7215 | S: Supported | |
7216 | F: drivers/media/i2c/s5c73m3/* | |
7217 | ||
ca749e2a | 7218 | SERIAL DRIVERS |
5e30bbb7 | 7219 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 7220 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 7221 | S: Maintained |
14430813 | 7222 | F: drivers/tty/serial/ |
ca749e2a | 7223 | |
aecb7b64 | 7224 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 7225 | M: Viresh Kumar <viresh.linux@gmail.com> |
337ae47c | 7226 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
aecb7b64 VK |
7227 | S: Maintained |
7228 | F: include/linux/dw_dmac.h | |
61a76496 | 7229 | F: drivers/dma/dw/ |
aecb7b64 | 7230 | |
f9e37137 SJ |
7231 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
7232 | M: Seungwon Jeon <tgih.jun@samsung.com> | |
7233 | M: Jaehoon Chung <jh80.chung@samsung.com> | |
7234 | L: linux-mmc@vger.kernel.org | |
7235 | S: Maintained | |
7236 | F: include/linux/mmc/dw_mmc.h | |
7237 | F: drivers/mmc/host/dw_mmc* | |
7238 | ||
9222d247 | 7239 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
50363737 | 7240 | M: John Stultz <john.stultz@linaro.org> |
88606e80 | 7241 | M: Thomas Gleixner <tglx@linutronix.de> |
75fc2d37 | 7242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
7243 | S: Supported |
7244 | F: include/linux/clocksource.h | |
7245 | F: include/linux/time.h | |
7246 | F: include/linux/timex.h | |
c117ab84 CEB |
7247 | F: include/uapi/linux/time.h |
7248 | F: include/uapi/linux/timex.h | |
88606e80 TG |
7249 | F: kernel/time/clocksource.c |
7250 | F: kernel/time/time*.c | |
7251 | F: kernel/time/ntp.c | |
7252 | ||
5b3f03f0 | 7253 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 | 7254 | M: Huang Shijie <shijie8@gmail.com> |
a545e2ea HV |
7255 | M: Hans Verkuil <hverkuil@xs4all.nl> |
7256 | S: Odd Fixes | |
14430813 | 7257 | F: drivers/media/usb/tlg2300/ |
5b3f03f0 | 7258 | |
1da177e4 | 7259 | SC1200 WDT DRIVER |
8b58be88 | 7260 | M: Zwane Mwaikambo <zwane@arm.linux.org.uk> |
1da177e4 | 7261 | S: Maintained |
679655da | 7262 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
7263 | |
7264 | SCHEDULER | |
dd9b238c | 7265 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 7266 | M: Peter Zijlstra <peterz@infradead.org> |
75fc2d37 | 7267 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 7268 | S: Maintained |
95c0d71d | 7269 | F: kernel/sched/ |
679655da | 7270 | F: include/linux/sched.h |
c117ab84 | 7271 | F: include/uapi/linux/sched.h |
1da177e4 | 7272 | |
6bcf6737 | 7273 | SCORE ARCHITECTURE |
a2681a75 JP |
7274 | M: Chen Liqin <liqin.chen@sunplusct.com> |
7275 | M: Lennox Wu <lennox.wu@gmail.com> | |
6bcf6737 CL |
7276 | W: http://www.sunplusct.com |
7277 | S: Supported | |
a2681a75 | 7278 | F: arch/score/ |
6bcf6737 | 7279 | |
1da177e4 | 7280 | SCSI CDROM DRIVER |
8b58be88 | 7281 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
7282 | L: linux-scsi@vger.kernel.org |
7283 | W: http://www.kernel.dk | |
7284 | S: Maintained | |
679655da | 7285 | F: drivers/scsi/sr* |
1da177e4 | 7286 | |
fb50a83d RD |
7287 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
7288 | M: David Dillow <dillowda@ornl.gov> | |
7289 | L: linux-rdma@vger.kernel.org | |
7290 | S: Supported | |
7291 | W: http://www.openfabrics.org | |
7292 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
7293 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
7294 | F: drivers/infiniband/ulp/srp/ | |
7295 | F: include/scsi/srp.h | |
7296 | ||
1da177e4 | 7297 | SCSI SG DRIVER |
8b58be88 | 7298 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 LT |
7299 | L: linux-scsi@vger.kernel.org |
7300 | W: http://www.torque.net/sg | |
7301 | S: Maintained | |
679655da JP |
7302 | F: drivers/scsi/sg.c |
7303 | F: include/scsi/sg.h | |
1da177e4 LT |
7304 | |
7305 | SCSI SUBSYSTEM | |
c95286d8 | 7306 | M: "James E.J. Bottomley" <JBottomley@parallels.com> |
1da177e4 | 7307 | L: linux-scsi@vger.kernel.org |
54e5881d JP |
7308 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
7309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
7310 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 7311 | S: Maintained |
679655da JP |
7312 | F: drivers/scsi/ |
7313 | F: include/scsi/ | |
1da177e4 LT |
7314 | |
7315 | SCSI TAPE DRIVER | |
8b58be88 | 7316 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
7317 | L: linux-scsi@vger.kernel.org |
7318 | S: Maintained | |
679655da | 7319 | F: Documentation/scsi/st.txt |
f7269cfc JD |
7320 | F: drivers/scsi/st.* |
7321 | F: drivers/scsi/st_*.h | |
1da177e4 LT |
7322 | |
7323 | SCTP PROTOCOL | |
8b6efb75 | 7324 | M: Vlad Yasevich <vyasevich@gmail.com> |
02c38d0a | 7325 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 7326 | L: linux-sctp@vger.kernel.org |
5f85813c | 7327 | W: http://lksctp.sourceforge.net |
8b6efb75 | 7328 | S: Maintained |
679655da JP |
7329 | F: Documentation/networking/sctp.txt |
7330 | F: include/linux/sctp.h | |
4d58c025 | 7331 | F: include/uapi/linux/sctp.h |
679655da JP |
7332 | F: include/net/sctp/ |
7333 | F: net/sctp/ | |
1da177e4 LT |
7334 | |
7335 | SCx200 CPU SUPPORT | |
8b58be88 | 7336 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7337 | S: Odd Fixes |
679655da | 7338 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 7339 | F: arch/x86/platform/scx200/ |
679655da JP |
7340 | F: drivers/watchdog/scx200_wdt.c |
7341 | F: drivers/i2c/busses/scx200* | |
7342 | F: drivers/mtd/maps/scx200_docflash.c | |
7343 | F: include/linux/scx200.h | |
1662d32c JC |
7344 | |
7345 | SCx200 GPIO DRIVER | |
8b58be88 | 7346 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7347 | S: Maintained |
679655da JP |
7348 | F: drivers/char/scx200_gpio.c |
7349 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
7350 | |
7351 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 7352 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 7353 | S: Maintained |
679655da | 7354 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 7355 | |
6a36913a | 7356 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 7357 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
7358 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
7359 | S: Maintained | |
679655da | 7360 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 7361 | |
e7839f25 | 7362 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 7363 | M: Chris Ball <cjb@laptop.org> |
7a241d6e | 7364 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
7365 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
7366 | S: Maintained | |
7a241d6e | 7367 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 7368 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7369 | |
3085e9c1 | 7370 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
9d5e2a02 | 7371 | M: Anton Vorontsov <anton@enomsg.org> |
a4724ed6 | 7372 | L: linuxppc-dev@lists.ozlabs.org |
7a241d6e | 7373 | L: linux-mmc@vger.kernel.org |
e2d1d6c0 | 7374 | S: Maintained |
d4a45787 | 7375 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 7376 | |
0d1bb41a | 7377 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 7378 | M: Ben Dooks <ben-linux@fluff.org> |
7a241d6e | 7379 | L: linux-mmc@vger.kernel.org |
0d1bb41a BD |
7380 | S: Maintained |
7381 | F: drivers/mmc/host/sdhci-s3c.c | |
7382 | ||
c63b3cba | 7383 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 7384 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 | 7385 | L: spear-devel@list.st.com |
c63b3cba VK |
7386 | L: linux-mmc@vger.kernel.org |
7387 | S: Maintained | |
7388 | F: drivers/mmc/host/sdhci-spear.c | |
7389 | ||
8711cca2 | 7390 | SECURITY SUBSYSTEM |
9b45c0d2 | 7391 | M: James Morris <james.l.morris@oracle.com> |
8711cca2 | 7392 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 7393 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 7394 | W: http://kernsec.org/ |
8711cca2 | 7395 | S: Supported |
7d2c86b5 | 7396 | F: security/ |
8711cca2 | 7397 | |
1da177e4 | 7398 | SECURITY CONTACT |
8b58be88 | 7399 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
7400 | S: Supported |
7401 | ||
7402 | SELINUX SECURITY MODULE | |
8b58be88 | 7403 | M: Stephen Smalley <sds@tycho.nsa.gov> |
9b45c0d2 | 7404 | M: James Morris <james.l.morris@oracle.com> |
8b58be88 | 7405 | M: Eric Paris <eparis@parisplace.org> |
7d2c86b5 | 7406 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
f058925b | 7407 | W: http://selinuxproject.org |
6bde95ce | 7408 | T: git git://git.infradead.org/users/eparis/selinux.git |
1da177e4 | 7409 | S: Supported |
679655da JP |
7410 | F: include/linux/selinux* |
7411 | F: security/selinux/ | |
6bde95ce | 7412 | F: scripts/selinux/ |
1da177e4 | 7413 | |
c1c124e9 JJ |
7414 | APPARMOR SECURITY MODULE |
7415 | M: John Johansen <john.johansen@canonical.com> | |
7416 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
7417 | W: apparmor.wiki.kernel.org | |
7418 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
7419 | S: Supported | |
7420 | F: security/apparmor/ | |
7421 | ||
cef2cf07 | 7422 | SENSABLE PHANTOM |
8b58be88 | 7423 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 7424 | S: Maintained |
679655da | 7425 | F: drivers/misc/phantom.c |
c117ab84 | 7426 | F: include/uapi/linux/phantom.h |
cef2cf07 | 7427 | |
4480f15b | 7428 | SERIAL ATA (SATA) SUBSYSTEM |
3d9b9350 | 7429 | M: Tejun Heo <tj@kernel.org> |
1da177e4 | 7430 | L: linux-ide@vger.kernel.org |
3d9b9350 | 7431 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
1da177e4 | 7432 | S: Supported |
d5ca6918 JP |
7433 | F: drivers/ata/ |
7434 | F: include/linux/ata.h | |
7435 | F: include/linux/libata.h | |
1da177e4 | 7436 | |
6733b39a | 7437 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 7438 | M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> |
3387f656 | 7439 | L: linux-scsi@vger.kernel.org |
0ca43cc0 | 7440 | W: http://www.emulex.com |
3387f656 JP |
7441 | S: Supported |
7442 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 7443 | |
6b7c5b94 | 7444 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
7445 | M: Sathya Perla <sathya.perla@emulex.com> |
7446 | M: Subbu Seetharaman <subbu.seetharaman@emulex.com> | |
7447 | M: Ajit Khaparde <ajit.khaparde@emulex.com> | |
7d2c86b5 | 7448 | L: netdev@vger.kernel.org |
fea3af67 | 7449 | W: http://www.emulex.com |
7d2c86b5 | 7450 | S: Supported |
9aebddd1 | 7451 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 7452 | |
8ceee660 | 7453 | SFC NETWORK DRIVER |
c06f51ea | 7454 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
c06f51ea JP |
7455 | M: Ben Hutchings <bhutchings@solarflare.com> |
7456 | L: netdev@vger.kernel.org | |
8ceee660 | 7457 | S: Supported |
874aeea5 | 7458 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 7459 | |
e2d1d6c0 | 7460 | SGI GRU DRIVER |
cc883afc | 7461 | M: Dimitri Sivanich <sivanich@sgi.com> |
e2d1d6c0 | 7462 | S: Maintained |
679655da | 7463 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
7464 | |
7465 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 7466 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
7467 | L: linux-ia64@vger.kernel.org |
7468 | S: Supported | |
679655da | 7469 | F: Documentation/ia64/serial.txt |
df621252 | 7470 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 7471 | F: include/linux/ioc?.h |
e2d1d6c0 | 7472 | |
1da177e4 | 7473 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 7474 | M: Andrey Panin <pazke@donpac.ru> |
1da177e4 LT |
7475 | L: linux-visws-devel@lists.sf.net |
7476 | W: http://linux-visws.sf.net | |
7477 | S: Maintained for 2.6. | |
679655da | 7478 | F: Documentation/sgi-visws.txt |
1da177e4 | 7479 | |
75312619 | 7480 | SGI XP/XPC/XPNET DRIVER |
e180383f RH |
7481 | M: Cliff Whickman <cpw@sgi.com> |
7482 | M: Robin Holt <robinmholt@gmail.com> | |
75312619 | 7483 | S: Maintained |
679655da | 7484 | F: drivers/misc/sgi-xp/ |
75312619 | 7485 | |
49cc629d HV |
7486 | SI470X FM RADIO RECEIVER I2C DRIVER |
7487 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7488 | L: linux-media@vger.kernel.org | |
7489 | T: git git://linuxtv.org/media_tree.git | |
7490 | W: http://linuxtv.org | |
7491 | S: Odd Fixes | |
7492 | F: drivers/media/radio/si470x/radio-si470x-i2c.c | |
7493 | ||
7494 | SI470X FM RADIO RECEIVER USB DRIVER | |
7495 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
7496 | L: linux-media@vger.kernel.org | |
7497 | T: git git://linuxtv.org/media_tree.git | |
7498 | W: http://linuxtv.org | |
7499 | S: Maintained | |
7500 | F: drivers/media/radio/si470x/radio-si470x-common.c | |
7501 | F: drivers/media/radio/si470x/radio-si470x.h | |
7502 | F: drivers/media/radio/si470x/radio-si470x-usb.c | |
7503 | ||
c937ca03 EV |
7504 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
7505 | M: Eduardo Valentin <edubezval@gmail.com> | |
7506 | L: linux-media@vger.kernel.org | |
7507 | T: git git://linuxtv.org/media_tree.git | |
7508 | W: http://linuxtv.org | |
7509 | S: Odd Fixes | |
7510 | F: drivers/media/radio/si4713-i2c.? | |
7511 | ||
7512 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER | |
7513 | M: Eduardo Valentin <edubezval@gmail.com> | |
7514 | L: linux-media@vger.kernel.org | |
7515 | T: git git://linuxtv.org/media_tree.git | |
7516 | W: http://linuxtv.org | |
7517 | S: Odd Fixes | |
559cdc82 | 7518 | F: drivers/media/radio/radio-si4713.c |
c937ca03 | 7519 | |
beb91d46 | 7520 | SIANO DVB DRIVER |
1b2c14b4 | 7521 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
beb91d46 MCC |
7522 | L: linux-media@vger.kernel.org |
7523 | W: http://linuxtv.org | |
7524 | T: git git://linuxtv.org/media_tree.git | |
7525 | S: Odd fixes | |
7526 | F: drivers/media/common/siano/ | |
beb91d46 | 7527 | F: drivers/media/usb/siano/ |
beb91d46 | 7528 | F: drivers/media/usb/siano/ |
14430813 | 7529 | F: drivers/media/mmc/siano/ |
beb91d46 | 7530 | |
b618b69c GL |
7531 | SH_VEU V4L2 MEM2MEM DRIVER |
7532 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> | |
7533 | L: linux-media@vger.kernel.org | |
7534 | S: Maintained | |
7535 | F: drivers/media/platform/sh_veu.c | |
b618b69c GL |
7536 | |
7537 | SH_VOU V4L2 OUTPUT DRIVER | |
7538 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> | |
7539 | L: linux-media@vger.kernel.org | |
4290fd1a | 7540 | S: Odd Fixes |
b618b69c GL |
7541 | F: drivers/media/platform/sh_vou.c |
7542 | F: include/media/sh_vou.h | |
7543 | ||
6349d997 | 7544 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 7545 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
7546 | L: sfi-devel@simplefirmware.org |
7547 | W: http://simplefirmware.org/ | |
7548 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 7549 | S: Supported |
943fc810 | 7550 | F: arch/x86/platform/sfi/ |
6349d997 LB |
7551 | F: drivers/sfi/ |
7552 | F: include/linux/sfi*.h | |
e2d1d6c0 | 7553 | |
1da177e4 LT |
7554 | SIMTEC EB110ATX (Chalice CATS) |
7555 | P: Ben Dooks | |
b16957c6 BD |
7556 | P: Vincent Sanders <vince@simtec.co.uk> |
7557 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
7558 | W: http://www.simtec.co.uk/products/EB110ATX/ |
7559 | S: Supported | |
7560 | ||
7561 | SIMTEC EB2410ITX (BAST) | |
7562 | P: Ben Dooks | |
b16957c6 BD |
7563 | P: Vincent Sanders <vince@simtec.co.uk> |
7564 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
7565 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
7566 | S: Supported | |
15dba387 JP |
7567 | F: arch/arm/mach-s3c24xx/mach-bast.c |
7568 | F: arch/arm/mach-s3c24xx/bast-ide.c | |
7569 | F: arch/arm/mach-s3c24xx/bast-irq.c | |
1da177e4 | 7570 | |
4c5adde7 | 7571 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 | 7572 | M: Sekhar Nori <nsekhar@ti.com> |
c69d72ae | 7573 | M: Kevin Hilman <khilman@deeprootsystems.com> |
f296ed78 | 7574 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) |
c9f46a85 | 7575 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 7576 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 | 7577 | S: Supported |
14430813 | 7578 | F: arch/arm/mach-davinci/ |
046d0a37 | 7579 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 7580 | |
8d4b3f08 | 7581 | TI DAVINCI SERIES MEDIA DRIVER |
9ce5eca7 | 7582 | M: Lad, Prabhakar <prabhakar.csengg@gmail.com> |
8d4b3f08 LP |
7583 | L: linux-media@vger.kernel.org |
7584 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) | |
7585 | W: http://linuxtv.org/ | |
7586 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7587 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
9ce5eca7 | 7588 | S: Maintained |
8d4b3f08 LP |
7589 | F: drivers/media/platform/davinci/ |
7590 | F: include/media/davinci/ | |
7591 | ||
92aab3c0 | 7592 | SIS 190 ETHERNET DRIVER |
8b58be88 | 7593 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
7594 | L: netdev@vger.kernel.org |
7595 | S: Maintained | |
8c7de408 | 7596 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 7597 | |
1da177e4 | 7598 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 7599 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 7600 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 7601 | L: netdev@vger.kernel.org |
1da177e4 | 7602 | S: Maintained |
8c7de408 | 7603 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 LT |
7604 | |
7605 | SIS FRAMEBUFFER DRIVER | |
8b58be88 | 7606 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 7607 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 7608 | S: Maintained |
679655da JP |
7609 | F: Documentation/fb/sisfb.txt |
7610 | F: drivers/video/sis/ | |
7611 | F: include/video/sisfb.h | |
1da177e4 LT |
7612 | |
7613 | SIS USB2VGA DRIVER | |
8b58be88 | 7614 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
7615 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
7616 | S: Maintained | |
679655da | 7617 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 7618 | |
415ad26d | 7619 | SLAB ALLOCATOR |
8b58be88 | 7620 | M: Christoph Lameter <cl@linux-foundation.org> |
2ed1c525 | 7621 | M: Pekka Enberg <penberg@kernel.org> |
8b58be88 | 7622 | M: Matt Mackall <mpm@selenic.com> |
415ad26d CL |
7623 | L: linux-mm@kvack.org |
7624 | S: Maintained | |
679655da JP |
7625 | F: include/linux/sl?b*.h |
7626 | F: mm/sl?b.c | |
415ad26d | 7627 | |
9fab9787 PM |
7628 | SLEEPABLE READ-COPY UPDATE (SRCU) |
7629 | M: Lai Jiangshan <laijs@cn.fujitsu.com> | |
7630 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
7631 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
7632 | S: Supported | |
7633 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
7634 | F: include/linux/srcu* | |
7635 | F: kernel/srcu* | |
7636 | ||
66372841 CS |
7637 | SMACK SECURITY MODULE |
7638 | M: Casey Schaufler <casey@schaufler-ca.com> | |
7639 | L: linux-security-module@vger.kernel.org | |
7640 | W: http://schaufler-ca.com | |
7641 | T: git git://git.gitorious.org/smack-next/kernel.git | |
7642 | S: Maintained | |
7643 | F: Documentation/security/Smack.txt | |
7644 | F: security/smack/ | |
7645 | ||
68ace3e1 KH |
7646 | SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
7647 | M: Kevin Hilman <khilman@kernel.org> | |
7648 | M: Nishanth Menon <nm@ti.com> | |
7649 | S: Maintained | |
7650 | F: drivers/power/avs/smartreflex.c | |
7651 | F: include/linux/power/smartreflex.h | |
7652 | L: linux-pm@vger.kernel.org | |
7653 | ||
1da177e4 | 7654 | SMC91x ETHERNET DRIVER |
2f82af08 | 7655 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 7656 | S: Odd Fixes |
ae150435 | 7657 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 7658 | |
e8e31622 SA |
7659 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
7660 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
7661 | L: linux-media@vger.kernel.org | |
7662 | S: Maintained | |
14430813 | 7663 | F: drivers/media/i2c/smiapp/ |
e8e31622 SA |
7664 | F: include/media/smiapp.h |
7665 | F: drivers/media/i2c/smiapp-pll.c | |
7666 | F: drivers/media/i2c/smiapp-pll.h | |
7667 | ||
920fa1ff GR |
7668 | SMM665 HARDWARE MONITOR DRIVER |
7669 | M: Guenter Roeck <linux@roeck-us.net> | |
7670 | L: lm-sensors@lm-sensors.org | |
7671 | S: Maintained | |
7672 | F: Documentation/hwmon/smm665 | |
7673 | F: drivers/hwmon/smm665.c | |
7674 | ||
9df7305b | 7675 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 7676 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 7677 | L: lm-sensors@lm-sensors.org |
90b24cfb | 7678 | S: Maintained |
9df7305b SG |
7679 | F: Documentation/hwmon/emc2103 |
7680 | F: drivers/hwmon/emc2103.c | |
7681 | ||
a98d506c HG |
7682 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
7683 | M: Hans de Goede <hdegoede@redhat.com> | |
7684 | L: lm-sensors@lm-sensors.org | |
7685 | S: Supported | |
7686 | F: Documentation/hwmon/sch5627 | |
7687 | F: drivers/hwmon/sch5627.c | |
7688 | ||
6ea884db | 7689 | SMSC47B397 HARDWARE MONITOR DRIVER |
94877548 | 7690 | M: Jean Delvare <khali@linux-fr.org> |
6ea884db MH |
7691 | L: lm-sensors@lm-sensors.org |
7692 | S: Maintained | |
679655da JP |
7693 | F: Documentation/hwmon/smsc47b397 |
7694 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 7695 | |
fd9abb3d | 7696 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7697 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 7698 | L: netdev@vger.kernel.org |
90b24cfb | 7699 | S: Maintained |
679655da | 7700 | F: include/linux/smsc911x.h |
ae150435 | 7701 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7702 | |
7703 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7704 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 7705 | L: netdev@vger.kernel.org |
90b24cfb | 7706 | S: Maintained |
ae150435 | 7707 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7708 | |
3c8a63e2 | 7709 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7710 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 7711 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 7712 | S: Maintained |
3c8a63e2 SG |
7713 | F: drivers/video/smscufx.c |
7714 | ||
668acf32 | 7715 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7716 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 7717 | L: linux-media@vger.kernel.org |
275ffde4 | 7718 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7719 | S: Maintained |
90d72ac6 MCC |
7720 | F: include/media/soc* |
7721 | F: drivers/media/i2c/soc_camera/ | |
7722 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7723 | |
e2d1d6c0 | 7724 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7725 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 7726 | S: Maintained |
679655da | 7727 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7728 | |
1da177e4 | 7729 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7730 | M: Neil Brown <neilb@suse.de> |
1da177e4 | 7731 | L: linux-raid@vger.kernel.org |
524418bb | 7732 | S: Supported |
679655da JP |
7733 | F: drivers/md/ |
7734 | F: include/linux/raid/ | |
c117ab84 | 7735 | F: include/uapi/linux/raid/ |
1da177e4 | 7736 | |
1da177e4 | 7737 | SONIC NETWORK DRIVER |
8b58be88 | 7738 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 7739 | L: netdev@vger.kernel.org |
1da177e4 | 7740 | S: Maintained |
d9fb9f38 | 7741 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7742 | |
61e115a5 | 7743 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7744 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
7745 | L: netdev@vger.kernel.org |
7746 | S: Maintained | |
679655da JP |
7747 | F: drivers/ssb/ |
7748 | F: include/linux/ssb/ | |
61e115a5 | 7749 | |
1da177e4 | 7750 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7751 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 7752 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 7753 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7754 | S: Maintained |
679655da JP |
7755 | F: Documentation/laptops/sony-laptop.txt |
7756 | F: drivers/char/sonypi.c | |
7757 | F: drivers/platform/x86/sony-laptop.c | |
7758 | F: include/linux/sony-laptop.h | |
1da177e4 | 7759 | |
baf8532a | 7760 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7761 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
7762 | W: http://tifmxx.berlios.de/ |
7763 | S: Maintained | |
679655da | 7764 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7765 | |
0ab30494 ML |
7766 | SONY MEMORYSTICK STANDARD SUPPORT |
7767 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
7768 | S: Maintained | |
7769 | F: drivers/memstick/core/ms_block.* | |
7770 | ||
1da177e4 | 7771 | SOUND |
8b58be88 JP |
7772 | M: Jaroslav Kysela <perex@perex.cz> |
7773 | M: Takashi Iwai <tiwai@suse.de> | |
93711660 | 7774 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 7775 | W: http://www.alsa-project.org/ |
dde7ad8d | 7776 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7777 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7778 | S: Maintained |
3126a179 JP |
7779 | F: Documentation/sound/ |
7780 | F: include/sound/ | |
c117ab84 | 7781 | F: include/uapi/sound/ |
679655da | 7782 | F: sound/ |
1da177e4 | 7783 | |
33bbe149 MB |
7784 | SOUND - COMPRESSED AUDIO |
7785 | M: Vinod Koul <vinod.koul@intel.com> | |
7786 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
7787 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git | |
7788 | S: Supported | |
f672f31a | 7789 | F: Documentation/sound/alsa/compress_offload.txt |
33bbe149 | 7790 | F: include/sound/compress_driver.h |
f672f31a | 7791 | F: include/uapi/sound/compress_* |
33bbe149 MB |
7792 | F: sound/core/compress_offload.c |
7793 | F: sound/soc/soc-compress.c | |
7794 | ||
bd903bde | 7795 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
6b9cf5c2 | 7796 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 7797 | M: Mark Brown <broonie@kernel.org> |
86f14df8 | 7798 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7799 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 7800 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7801 | S: Supported |
2820f615 | 7802 | F: Documentation/sound/alsa/soc/ |
679655da | 7803 | F: sound/soc/ |
e6e55122 | 7804 | F: include/sound/soc* |
eb1a6af3 | 7805 | |
473321fc | 7806 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7807 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 7808 | L: sparclinux@vger.kernel.org |
8a6e2535 | 7809 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7810 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7811 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7812 | S: Maintained |
679655da | 7813 | F: arch/sparc/ |
7765b8bb | 7814 | F: drivers/sbus/ |
1da177e4 | 7815 | |
6404fcca DM |
7816 | SPARC SERIAL DRIVERS |
7817 | M: "David S. Miller" <davem@davemloft.net> | |
7818 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
7819 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7820 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7821 | S: Maintained |
6816383a | 7822 | F: include/linux/sunserialcore.h |
df621252 | 7823 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7824 | F: drivers/tty/serial/sunhv.c |
7825 | F: drivers/tty/serial/sunsab.c | |
7826 | F: drivers/tty/serial/sunsab.h | |
7827 | F: drivers/tty/serial/sunsu.c | |
7828 | F: drivers/tty/serial/sunzilog.c | |
7829 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7830 | |
389325b4 CL |
7831 | SPARSE CHECKER |
7832 | M: "Christopher Li" <sparse@chrisli.org> | |
7833 | L: linux-sparse@vger.kernel.org | |
7834 | W: https://sparse.wiki.kernel.org/ | |
7835 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7836 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7837 | S: Maintained | |
7838 | F: include/linux/compiler.h | |
7839 | ||
fc0c195a | 7840 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7841 | M: Viresh Kumar <viresh.linux@gmail.com> |
71e09a9e | 7842 | M: Shiraz Hashim <shiraz.hashim@st.com> |
fbfa0748 VK |
7843 | L: spear-devel@list.st.com |
7844 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7845 | W: http://www.st.com/spear |
7846 | S: Maintained | |
281e192f | 7847 | F: arch/arm/mach-spear/ |
fc0c195a | 7848 | |
7849 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7850 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 VK |
7851 | L: spear-devel@list.st.com |
7852 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7853 | W: http://www.st.com/spear |
7854 | S: Maintained | |
5df33a62 | 7855 | F: drivers/clk/spear/ |
fc0c195a | 7856 | |
e2d1d6c0 | 7857 | SPI SUBSYSTEM |
b02e48f2 | 7858 | M: Mark Brown <broonie@kernel.org> |
dfbe403c | 7859 | L: linux-spi@vger.kernel.org |
e7e4e13c | 7860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
8a6e2535 | 7861 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
e2d1d6c0 | 7862 | S: Maintained |
679655da JP |
7863 | F: Documentation/spi/ |
7864 | F: drivers/spi/ | |
7865 | F: include/linux/spi/ | |
c117ab84 | 7866 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7867 | |
2752e401 | 7868 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7869 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
7870 | M: Jens Osterkamp <jens@de.ibm.com> | |
2752e401 JL |
7871 | L: netdev@vger.kernel.org |
7872 | S: Supported | |
679655da | 7873 | F: Documentation/networking/spider_net.txt |
8df158ac | 7874 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7875 | |
e2d1d6c0 | 7876 | SPU FILE SYSTEM |
8b58be88 | 7877 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 SR |
7878 | L: linuxppc-dev@lists.ozlabs.org |
7879 | L: cbe-oss-dev@lists.ozlabs.org | |
e2d1d6c0 RD |
7880 | W: http://www.ibm.com/developerworks/power/cell/ |
7881 | S: Supported | |
679655da JP |
7882 | F: Documentation/filesystems/spufs.txt |
7883 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7884 | |
fc555841 | 7885 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7886 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
7887 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
7888 | W: http://squashfs.org.uk | |
7889 | S: Maintained | |
679655da JP |
7890 | F: Documentation/filesystems/squashfs.txt |
7891 | F: fs/squashfs/ | |
fc555841 | 7892 | |
1da177e4 | 7893 | SRM (Alpha) environment access |
8b58be88 | 7894 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 7895 | S: Maintained |
679655da | 7896 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7897 | |
26e9a397 | 7898 | STABLE BRANCH |
879a5a00 | 7899 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 7900 | L: stable@vger.kernel.org |
879a5a00 | 7901 | S: Supported |
7b175c46 | 7902 | F: Documentation/stable_kernel_rules.txt |
e2d1d6c0 | 7903 | |
26e9a397 | 7904 | STAGING SUBSYSTEM |
879a5a00 | 7905 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 7906 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7907 | L: devel@driverdev.osuosl.org |
879a5a00 | 7908 | S: Supported |
679655da | 7909 | F: drivers/staging/ |
dbc6c2cc | 7910 | |
c8c8b105 JP |
7911 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7912 | M: Henk de Groot <pe1dnn@amsat.org> | |
7913 | S: Odd Fixes | |
7914 | F: drivers/staging/wlags49_h2/ | |
7915 | F: drivers/staging/wlags49_h25/ | |
7916 | ||
c9555159 JP |
7917 | STAGING - ASUS OLED |
7918 | M: Jakub Schmidtke <sjakub@gmail.com> | |
7919 | S: Odd Fixes | |
7920 | F: drivers/staging/asus_oled/ | |
7921 | ||
ebd3d010 JP |
7922 | STAGING - COMEDI |
7923 | M: Ian Abbott <abbotti@mev.co.uk> | |
81b884c9 | 7924 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
ebd3d010 JP |
7925 | S: Odd Fixes |
7926 | F: drivers/staging/comedi/ | |
7927 | ||
8ca572c9 JP |
7928 | STAGING - CRYSTAL HD VIDEO DECODER |
7929 | M: Naren Sankar <nsankar@broadcom.com> | |
7930 | M: Jarod Wilson <jarod@wilsonet.com> | |
7931 | M: Scott Davilla <davilla@4pi.com> | |
7932 | M: Manu Abraham <abraham.manu@gmail.com> | |
7933 | S: Odd Fixes | |
7934 | F: drivers/staging/crystalhd/ | |
7935 | ||
0f16ffc4 JP |
7936 | STAGING - ECHO CANCELLER |
7937 | M: Steve Underwood <steveu@coppice.org> | |
7938 | M: David Rowe <david@rowetel.com> | |
7939 | S: Odd Fixes | |
7940 | F: drivers/staging/echo/ | |
7941 | ||
8dc2bbe7 ME |
7942 | STAGING - ET131X NETWORK DRIVER |
7943 | M: Mark Einon <mark.einon@gmail.com> | |
7944 | S: Odd Fixes | |
7945 | F: drivers/staging/et131x/ | |
7946 | ||
a0138163 JP |
7947 | STAGING - FLARION FT1000 DRIVERS |
7948 | M: Marek Belisko <marek.belisko@gmail.com> | |
7949 | S: Odd Fixes | |
7950 | F: drivers/staging/ft1000/ | |
7951 | ||
ec3fab92 JP |
7952 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7953 | M: David Täht <d@teklibre.com> | |
7954 | S: Odd Fixes | |
7955 | F: drivers/staging/frontier/ | |
7956 | ||
98ded590 HV |
7957 | STAGING - GO7007 MPEG CODEC |
7958 | M: Hans Verkuil <hans.verkuil@cisco.com> | |
7959 | S: Maintained | |
7960 | F: drivers/staging/media/go7007/ | |
7961 | ||
6c1bb424 JP |
7962 | STAGING - INDUSTRIAL IO |
7963 | M: Jonathan Cameron <jic23@cam.ac.uk> | |
a0138163 | 7964 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
7965 | S: Odd Fixes |
7966 | F: drivers/staging/iio/ | |
7967 | ||
a0138163 JP |
7968 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7969 | M: Jarod Wilson <jarod@wilsonet.com> | |
7970 | W: http://www.lirc.org/ | |
7971 | S: Odd Fixes | |
b2b0186d | 7972 | F: drivers/staging/media/lirc/ |
a0138163 | 7973 | |
7c6b6c71 | 7974 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7975 | M: Julian Andres Klode <jak@jak-linux.org> |
7c6b6c71 MD |
7976 | M: Marc Dietrich <marvin24@gmx.de> |
7977 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
5d96bf4d | 7978 | L: linux-tegra@vger.kernel.org |
7c6b6c71 MD |
7979 | S: Maintained |
7980 | F: drivers/staging/nvec/ | |
7981 | ||
a0138163 | 7982 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
3140b458 JF |
7983 | M: Jens Frederich <jfrederich@gmail.com> |
7984 | M: Daniel Drake <dsd@laptop.org> | |
a0138163 JP |
7985 | M: Jon Nettleton <jon.nettleton@gmail.com> |
7986 | W: http://wiki.laptop.org/go/DCON | |
3140b458 | 7987 | S: Maintained |
a0138163 JP |
7988 | F: drivers/staging/olpc_dcon/ |
7989 | ||
94cfdd15 | 7990 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
c4048c64 | 7991 | M: Rupesh Gujare <rupesh.gujare@atmel.com> |
94cfdd15 CK |
7992 | S: Maintained |
7993 | F: drivers/staging/ozwpan/ | |
7994 | ||
a0138163 | 7995 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7996 | M: Willy Tarreau <willy@meta-x.org> |
7997 | S: Odd Fixes | |
7998 | F: drivers/staging/panel/ | |
7999 | ||
a0138163 JP |
8000 | STAGING - REALTEK RTL8712U DRIVERS |
8001 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
8002 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
8003 | S: Odd Fixes | |
8004 | F: drivers/staging/rtl8712/ | |
8005 | ||
9629fa86 JP |
8006 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
8007 | M: Teddy Wang <teddy.wang@siliconmotion.com.cn> | |
8008 | S: Odd Fixes | |
9df0a245 | 8009 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 8010 | |
a0138163 | 8011 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
4d35435d IL |
8012 | M: Ismael Luceno <ismael.luceno@corp.bluecherry.net> |
8013 | S: Supported | |
b2b0186d | 8014 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
8015 | |
8016 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
8017 | M: William Hubbs <w.d.hubbs@gmail.com> | |
8018 | M: Chris Brannon <chris@the-brannons.com> | |
d33bce31 | 8019 | M: Kirk Reiser <kirk@reisers.ca> |
a0138163 JP |
8020 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
8021 | L: speakup@braille.uwo.ca | |
8022 | W: http://www.linux-speakup.org/ | |
8023 | S: Odd Fixes | |
8024 | F: drivers/staging/speakup/ | |
8025 | ||
8026 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 8027 | M: Omar Ramirez Luna <omar.ramirez@copitl.com> |
a0138163 JP |
8028 | S: Odd Fixes |
8029 | F: drivers/staging/tidspbridge/ | |
8030 | ||
a0138163 JP |
8031 | STAGING - USB ENE SM/MS CARD READER DRIVER |
8032 | M: Al Cho <acho@novell.com> | |
8033 | S: Odd Fixes | |
8034 | F: drivers/staging/keucr/ | |
8035 | ||
b3e871ce JP |
8036 | STAGING - VIA VT665X DRIVERS |
8037 | M: Forest Bond <forest@alittletooquiet.net> | |
8038 | S: Odd Fixes | |
8039 | F: drivers/staging/vt665?/ | |
8040 | ||
81a9a526 JP |
8041 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
8042 | M: Pavel Machek <pavel@ucw.cz> | |
8043 | S: Odd Fixes | |
8044 | F: drivers/staging/winbond/ | |
8045 | ||
709bcb07 | 8046 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 8047 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
8048 | S: Odd Fixes |
8049 | F: drivers/staging/xgifb/ | |
8050 | ||
1da177e4 | 8051 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 8052 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 8053 | S: Odd Fixes |
9bba23b0 | 8054 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 8055 | |
e2d1d6c0 | 8056 | SUN3/3X |
8b58be88 | 8057 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
8058 | W: http://sammy.net/sun3/ |
8059 | S: Maintained | |
679655da JP |
8060 | F: arch/m68k/kernel/*sun3* |
8061 | F: arch/m68k/sun3*/ | |
8062 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 8063 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 8064 | |
2bc9ff01 DK |
8065 | SUNDANCE NETWORK DRIVER |
8066 | M: Denis Kirjanov <kda@linux-powerpc.org> | |
8067 | L: netdev@vger.kernel.org | |
8068 | S: Maintained | |
8069 | F: drivers/net/ethernet/dlink/sundance.c | |
8070 | ||
2cbb12a4 | 8071 | SUPERH |
8b58be88 | 8072 | M: Paul Mundt <lethal@linux-sh.org> |
2cbb12a4 | 8073 | L: linux-sh@vger.kernel.org |
1da177e4 | 8074 | W: http://www.linux-sh.org |
8a6e2535 | 8075 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 8076 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 8077 | S: Supported |
066069e1 | 8078 | F: Documentation/sh/ |
679655da | 8079 | F: arch/sh/ |
066069e1 | 8080 | F: drivers/sh/ |
1da177e4 | 8081 | |
4480f15b | 8082 | SUSPEND TO RAM |
8b58be88 JP |
8083 | M: Len Brown <len.brown@intel.com> |
8084 | M: Pavel Machek <pavel@ucw.cz> | |
8085 | M: "Rafael J. Wysocki" <rjw@sisk.pl> | |
bf1c138e | 8086 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 8087 | S: Supported |
679655da JP |
8088 | F: Documentation/power/ |
8089 | F: arch/x86/kernel/acpi/ | |
8090 | F: drivers/base/power/ | |
8091 | F: kernel/power/ | |
8092 | F: include/linux/suspend.h | |
8093 | F: include/linux/freezer.h | |
8094 | F: include/linux/pm.h | |
1da177e4 LT |
8095 | |
8096 | SVGA HANDLING | |
8b58be88 | 8097 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
8098 | L: linux-video@atrey.karlin.mff.cuni.cz |
8099 | S: Maintained | |
679655da JP |
8100 | F: Documentation/svga.txt |
8101 | F: arch/x86/boot/video* | |
1da177e4 | 8102 | |
6e28b761 KRW |
8103 | SWIOTLB SUBSYSTEM |
8104 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
8105 | L: linux-kernel@vger.kernel.org | |
8106 | S: Supported | |
8107 | F: lib/swiotlb.c | |
8108 | F: arch/*/kernel/pci-swiotlb.c | |
8109 | F: include/linux/swiotlb.h | |
8110 | ||
db8e35d5 VG |
8111 | SYNOPSYS ARC ARCHITECTURE |
8112 | M: Vineet Gupta <vgupta@synopsys.com> | |
db8e35d5 VG |
8113 | S: Supported |
8114 | F: arch/arc/ | |
6659a20a | 8115 | F: Documentation/devicetree/bindings/arc/ |
c6a0fe4a | 8116 | F: drivers/tty/serial/arc_uart.c |
db8e35d5 | 8117 | |
1da177e4 | 8118 | SYSV FILESYSTEM |
8b58be88 | 8119 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 8120 | S: Maintained |
679655da JP |
8121 | F: Documentation/filesystems/sysv-fs.txt |
8122 | F: fs/sysv/ | |
8123 | F: include/linux/sysv_fs.h | |
1da177e4 | 8124 | |
86cfa7fc NB |
8125 | TARGET SUBSYSTEM |
8126 | M: Nicholas A. Bellinger <nab@linux-iscsi.org> | |
8127 | L: linux-scsi@vger.kernel.org | |
b9f5edc2 | 8128 | L: target-devel@vger.kernel.org |
86cfa7fc NB |
8129 | L: http://groups.google.com/group/linux-iscsi-target-dev |
8130 | W: http://www.linux-iscsi.org | |
452cf324 | 8131 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
86cfa7fc NB |
8132 | S: Supported |
8133 | F: drivers/target/ | |
8134 | F: include/target/ | |
8135 | F: Documentation/target/ | |
8136 | ||
4e68852d | 8137 | TASKSTATS STATISTICS INTERFACE |
185e595f | 8138 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 8139 | S: Maintained |
679655da JP |
8140 | F: Documentation/accounting/taskstats* |
8141 | F: include/linux/taskstats* | |
8142 | F: kernel/taskstats.c | |
4e68852d | 8143 | |
781b456a | 8144 | TC CLASSIFIER |
f935f3f8 | 8145 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
8146 | L: netdev@vger.kernel.org |
8147 | S: Maintained | |
679655da | 8148 | F: include/net/pkt_cls.h |
c117ab84 | 8149 | F: include/uapi/linux/pkt_cls.h |
679655da | 8150 | F: net/sched/ |
781b456a | 8151 | |
5067f08a | 8152 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
8153 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
8154 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
8155 | W: http://tcp-lp-mod.sourceforge.net/ |
8156 | S: Maintained | |
679655da | 8157 | F: net/ipv4/tcp_lp.c |
5067f08a | 8158 | |
91952bc0 AP |
8159 | TDA10071 MEDIA DRIVER |
8160 | M: Antti Palosaari <crope@iki.fi> | |
8161 | L: linux-media@vger.kernel.org | |
8162 | W: http://linuxtv.org/ | |
8163 | W: http://palosaari.fi/linux/ | |
8164 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8165 | T: git git://linuxtv.org/anttip/media_tree.git | |
8166 | S: Maintained | |
8167 | F: drivers/media/dvb-frontends/tda10071* | |
8168 | ||
8169 | TDA18212 MEDIA DRIVER | |
8170 | M: Antti Palosaari <crope@iki.fi> | |
8171 | L: linux-media@vger.kernel.org | |
8172 | W: http://linuxtv.org/ | |
8173 | W: http://palosaari.fi/linux/ | |
8174 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8175 | T: git git://linuxtv.org/anttip/media_tree.git | |
8176 | S: Maintained | |
8177 | F: drivers/media/tuners/tda18212* | |
8178 | ||
8179 | TDA18218 MEDIA DRIVER | |
8180 | M: Antti Palosaari <crope@iki.fi> | |
8181 | L: linux-media@vger.kernel.org | |
8182 | W: http://linuxtv.org/ | |
8183 | W: http://palosaari.fi/linux/ | |
8184 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8185 | T: git git://linuxtv.org/anttip/media_tree.git | |
8186 | S: Maintained | |
8187 | F: drivers/media/tuners/tda18218* | |
8188 | ||
3b2f6aba MK |
8189 | TDA18271 MEDIA DRIVER |
8190 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8191 | L: linux-media@vger.kernel.org | |
8192 | W: http://linuxtv.org/ | |
8193 | W: http://github.com/mkrufky | |
8194 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8195 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8196 | S: Maintained | |
8197 | F: drivers/media/tuners/tda18271* | |
8198 | ||
e48307a9 MK |
8199 | TDA827x MEDIA DRIVER |
8200 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8201 | L: linux-media@vger.kernel.org | |
8202 | W: http://linuxtv.org/ | |
8203 | W: http://github.com/mkrufky | |
8204 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8205 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8206 | S: Maintained | |
8207 | F: drivers/media/tuners/tda8290.* | |
8208 | ||
66cf9212 MK |
8209 | TDA8290 MEDIA DRIVER |
8210 | M: Michael Krufky <mkrufky@linuxtv.org> | |
8211 | L: linux-media@vger.kernel.org | |
8212 | W: http://linuxtv.org/ | |
8213 | W: http://github.com/mkrufky | |
8214 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8215 | T: git git://linuxtv.org/mkrufky/tuners.git | |
8216 | S: Maintained | |
8217 | F: drivers/media/tuners/tda8290.* | |
8218 | ||
4b9fba30 HV |
8219 | TDA9840 MEDIA DRIVER |
8220 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8221 | L: linux-media@vger.kernel.org | |
8222 | T: git git://linuxtv.org/media_tree.git | |
8223 | W: http://linuxtv.org | |
8224 | S: Maintained | |
8225 | F: drivers/media/i2c/tda9840* | |
8226 | ||
2cb654fd | 8227 | TEA5761 TUNER DRIVER |
1b2c14b4 | 8228 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
8229 | L: linux-media@vger.kernel.org |
8230 | W: http://linuxtv.org | |
8231 | T: git git://linuxtv.org/media_tree.git | |
8232 | S: Odd fixes | |
8233 | F: drivers/media/tuners/tea5761.* | |
8234 | ||
8235 | TEA5767 TUNER DRIVER | |
1b2c14b4 | 8236 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
2cb654fd MCC |
8237 | L: linux-media@vger.kernel.org |
8238 | W: http://linuxtv.org | |
8239 | T: git git://linuxtv.org/media_tree.git | |
8240 | S: Maintained | |
8241 | F: drivers/media/tuners/tea5767.* | |
8242 | ||
4b9fba30 HV |
8243 | TEA6415C MEDIA DRIVER |
8244 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8245 | L: linux-media@vger.kernel.org | |
8246 | T: git git://linuxtv.org/media_tree.git | |
8247 | W: http://linuxtv.org | |
8248 | S: Maintained | |
8249 | F: drivers/media/i2c/tea6415c* | |
8250 | ||
8251 | TEA6420 MEDIA DRIVER | |
8252 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8253 | L: linux-media@vger.kernel.org | |
8254 | T: git git://linuxtv.org/media_tree.git | |
8255 | W: http://linuxtv.org | |
8256 | S: Maintained | |
8257 | F: drivers/media/i2c/tea6420* | |
8258 | ||
3d249d4c | 8259 | TEAM DRIVER |
dca9ab92 | 8260 | M: Jiri Pirko <jiri@resnulli.us> |
3d249d4c JP |
8261 | L: netdev@vger.kernel.org |
8262 | S: Supported | |
8263 | F: drivers/net/team/ | |
8264 | F: include/linux/if_team.h | |
c117ab84 | 8265 | F: include/uapi/linux/if_team.h |
3d249d4c | 8266 | |
7d029125 VD |
8267 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
8268 | M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com> | |
8269 | S: Maintained | |
8270 | F: arch/x86/platform/ts5500/ | |
8271 | ||
40ad4a30 SY |
8272 | TECHNOTREND USB IR RECEIVER |
8273 | M: Sean Young <sean@mess.org> | |
8274 | L: linux-media@vger.kernel.org | |
8275 | S: Maintained | |
8276 | F: drivers/media/rc/ttusbir.c | |
8277 | ||
84b9414b | 8278 | TEGRA SUPPORT |
243d58ec | 8279 | M: Stephen Warren <swarren@wwwdotorg.org> |
84b9414b | 8280 | L: linux-tegra@vger.kernel.org |
fd117cd1 OJ |
8281 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
8282 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b | 8283 | S: Supported |
bbbe96ed | 8284 | N: [^a-z]tegra |
84b9414b | 8285 | |
1a348ccc | 8286 | TEHUTI ETHERNET DRIVER |
8b58be88 | 8287 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
8288 | L: netdev@vger.kernel.org |
8289 | S: Supported | |
ef7f5429 | 8290 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 8291 | |
4e68852d | 8292 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 8293 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 8294 | S: Supported |
679655da | 8295 | F: drivers/char/tlclk.c |
4e68852d | 8296 | |
4480f15b | 8297 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 8298 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
8299 | M: Max Filippov <jcmvbkbc@gmail.com> |
8300 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 8301 | S: Maintained |
679655da | 8302 | F: arch/xtensa/ |
4e68852d | 8303 | |
d3fb6955 ZR |
8304 | THERMAL |
8305 | M: Zhang Rui <rui.zhang@intel.com> | |
fa3031d7 | 8306 | M: Eduardo Valentin <eduardo.valentin@ti.com> |
d3fb6955 ZR |
8307 | L: linux-pm@vger.kernel.org |
8308 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
65d467e8 | 8309 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
2f99a47d | 8310 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
d3fb6955 ZR |
8311 | S: Supported |
8312 | F: drivers/thermal/ | |
8313 | F: include/linux/thermal.h | |
cfaf7179 | 8314 | F: include/linux/cpu_cooling.h |
d3fb6955 | 8315 | |
30ba2fbd VD |
8316 | THINGM BLINK(1) USB RGB LED DRIVER |
8317 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> | |
8318 | S: Maintained | |
8319 | F: drivers/hid/hid-thingm.c | |
8320 | ||
4e68852d | 8321 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 8322 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 8323 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 8324 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
8325 | W: http://ibm-acpi.sourceforge.net |
8326 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 8327 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 8328 | S: Maintained |
679655da | 8329 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 8330 | |
1b46f2a2 EV |
8331 | TI BANDGAP AND THERMAL DRIVER |
8332 | M: Eduardo Valentin <eduardo.valentin@ti.com> | |
8333 | L: linux-pm@vger.kernel.org | |
794b2e25 EV |
8334 | S: Supported |
8335 | F: drivers/thermal/ti-soc-thermal/ | |
1b46f2a2 | 8336 | |
4020f2d7 | 8337 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 8338 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 8339 | S: Maintained |
679655da JP |
8340 | F: drivers/misc/tifm* |
8341 | F: drivers/mmc/host/tifm_sd.c | |
8342 | F: include/linux/tifm.h | |
4020f2d7 | 8343 | |
152ad442 SR |
8344 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
8345 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 8346 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
8347 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
8348 | S: Maintained | |
8349 | F: sound/soc/codecs/lm49453* | |
d392dead | 8350 | F: sound/soc/codecs/isabelle* |
152ad442 | 8351 | |
0edd807d KM |
8352 | TI LP855x BACKLIGHT DRIVER |
8353 | M: Milo Kim <milo.kim@ti.com> | |
8354 | S: Maintained | |
8355 | F: Documentation/backlight/lp855x-driver.txt | |
8356 | F: drivers/video/backlight/lp855x_bl.c | |
8357 | F: include/linux/platform_data/lp855x.h | |
8358 | ||
faf13f6d KM |
8359 | TI LP8727 CHARGER DRIVER |
8360 | M: Milo Kim <milo.kim@ti.com> | |
8361 | S: Maintained | |
8362 | F: drivers/power/lp8727_charger.c | |
8363 | F: include/linux/platform_data/lp8727.h | |
8364 | ||
22f1229f KM |
8365 | TI LP8788 MFD DRIVER |
8366 | M: Milo Kim <milo.kim@ti.com> | |
8367 | S: Maintained | |
8368 | F: drivers/iio/adc/lp8788_adc.c | |
8369 | F: drivers/leds/leds-lp8788.c | |
8370 | F: drivers/mfd/lp8788*.c | |
8371 | F: drivers/power/lp8788-charger.c | |
8372 | F: drivers/regulator/lp8788-*.c | |
8373 | F: include/linux/mfd/lp8788*.h | |
8374 | ||
dd5e8e6b | 8375 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 8376 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
8377 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
8378 | S: Maintained | |
8379 | F: sound/soc/codecs/twl4030* | |
8380 | ||
90921014 | 8381 | TI WILINK WIRELESS DRIVERS |
d6158a55 | 8382 | M: Luciano Coelho <luca@coelho.fi> |
90921014 LC |
8383 | L: linux-wireless@vger.kernel.org |
8384 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
8385 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
8386 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
8387 | S: Maintained | |
8388 | F: drivers/net/wireless/ti/ | |
8389 | F: include/linux/wl12xx.h | |
8390 | ||
e86eaa3a | 8391 | TIPC NETWORK LAYER |
8b58be88 JP |
8392 | M: Jon Maloy <jon.maloy@ericsson.com> |
8393 | M: Allan Stephens <allan.stephens@windriver.com> | |
633d2bde AS |
8394 | L: netdev@vger.kernel.org (core kernel code) |
8395 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 8396 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 8397 | S: Maintained |
c117ab84 | 8398 | F: include/uapi/linux/tipc*.h |
679655da | 8399 | F: net/tipc/ |
e86eaa3a | 8400 | |
867e359b CM |
8401 | TILE ARCHITECTURE |
8402 | M: Chris Metcalf <cmetcalf@tilera.com> | |
8403 | W: http://www.tilera.com/scm/ | |
8404 | S: Supported | |
8405 | F: arch/tile/ | |
6b940606 | 8406 | F: drivers/char/tile-srom.c |
5c770755 | 8407 | F: drivers/edac/tile_edac.c |
6b940606 CM |
8408 | F: drivers/net/ethernet/tile/ |
8409 | F: drivers/rtc/rtc-tile.c | |
8410 | F: drivers/tty/hvc/hvc_tile.c | |
b5c6c1a7 | 8411 | F: drivers/tty/serial/tilegx.c |
6b940606 CM |
8412 | F: drivers/usb/host/*-tilegx.c |
8413 | F: include/linux/usb/tilegx.h | |
867e359b | 8414 | |
1da177e4 | 8415 | TLAN NETWORK DRIVER |
8b58be88 | 8416 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 8417 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
8418 | W: http://sourceforge.net/projects/tlan/ |
8419 | S: Maintained | |
679655da | 8420 | F: Documentation/networking/tlan.txt |
b544dbac | 8421 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 8422 | |
d74db3b2 | 8423 | TOMOYO SECURITY MODULE |
8b58be88 JP |
8424 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
8425 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
8426 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
8427 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
8428 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
8429 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
8430 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 8431 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 8432 | S: Maintained |
679655da | 8433 | F: security/tomoyo/ |
d74db3b2 | 8434 | |
9caeb532 | 8435 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 8436 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 8437 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
8438 | S: Maintained |
8439 | F: drivers/platform/x86/topstar-laptop.c | |
8440 | ||
1da177e4 | 8441 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 8442 | L: platform-driver-x86@vger.kernel.org |
15065531 | 8443 | S: Orphan |
679655da | 8444 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
8445 | |
8446 | TOSHIBA SMM DRIVER | |
8b58be88 | 8447 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
8448 | L: tlinux-users@tce.toshiba-dme.co.jp |
8449 | W: http://www.buzzard.org.uk/toshiba/ | |
8450 | S: Maintained | |
679655da JP |
8451 | F: drivers/char/toshiba.c |
8452 | F: include/linux/toshiba.h | |
c117ab84 | 8453 | F: include/uapi/linux/toshiba.h |
1da177e4 | 8454 | |
d719f900 | 8455 | TMIO MMC DRIVER |
d1057c40 | 8456 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
8b58be88 | 8457 | M: Ian Molton <ian@mnementh.co.uk> |
d1057c40 | 8458 | L: linux-mmc@vger.kernel.org |
d719f900 | 8459 | S: Maintained |
d1057c40 GL |
8460 | F: drivers/mmc/host/tmio_mmc* |
8461 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
8462 | F: include/linux/mmc/tmio.h | |
8463 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 8464 | |
917cc4e6 GR |
8465 | TMP401 HARDWARE MONITOR DRIVER |
8466 | M: Guenter Roeck <linux@roeck-us.net> | |
8467 | L: lm-sensors@lm-sensors.org | |
8468 | S: Maintained | |
8469 | F: Documentation/hwmon/tmp401 | |
8470 | F: drivers/hwmon/tmp401.c | |
8471 | ||
98f32602 | 8472 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 8473 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
8474 | L: linux-mm@kvack.org |
8475 | S: Maintained | |
8476 | F: include/linux/shmem_fs.h | |
8477 | F: mm/shmem.c | |
8478 | ||
45f95b53 | 8479 | TM6000 VIDEO4LINUX DRIVER |
1b2c14b4 | 8480 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
45f95b53 MCC |
8481 | L: linux-media@vger.kernel.org |
8482 | W: http://linuxtv.org | |
8483 | T: git git://linuxtv.org/media_tree.git | |
8484 | S: Odd fixes | |
8485 | F: drivers/media/usb/tm6000/ | |
8486 | ||
4e68852d | 8487 | TPM DEVICE DRIVER |
5b88e270 KY |
8488 | M: Leonidas Da Silva Barbosa <leosilva@linux.vnet.ibm.com> |
8489 | M: Ashley Lai <ashley@ashleylai.com> | |
cbb2d5e4 | 8490 | M: Rajiv Andrade <mail@srajiv.net> |
4e68852d | 8491 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
8492 | M: Marcel Selhorst <tpmdd@selhorst.net> |
8493 | M: Sirrix AG <tpmdd@sirrix.com> | |
7dcce133 | 8494 | W: http://www.sirrix.com |
63a10dfd | 8495 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
4e68852d | 8496 | S: Maintained |
679655da | 8497 | F: drivers/char/tpm/ |
4e68852d | 8498 | |
d6f005a1 JP |
8499 | TRACING |
8500 | M: Steven Rostedt <rostedt@goodmis.org> | |
8501 | M: Frederic Weisbecker <fweisbec@gmail.com> | |
8502 | M: Ingo Molnar <mingo@redhat.com> | |
75fc2d37 | 8503 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
8504 | S: Maintained |
8505 | F: Documentation/trace/ftrace.txt | |
8506 | F: arch/*/*/*/ftrace.h | |
8507 | F: arch/*/kernel/ftrace.c | |
8508 | F: include/*/ftrace.h | |
8509 | F: include/linux/trace*.h | |
8510 | F: include/trace/ | |
8511 | F: kernel/trace/ | |
8512 | ||
1da177e4 | 8513 | TRIVIAL PATCHES |
8b58be88 | 8514 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 8515 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 8516 | S: Maintained |
86ef925f | 8517 | K: ^Subject:.*(?i)trivial |
1da177e4 | 8518 | |
4e68852d | 8519 | TTY LAYER |
879a5a00 | 8520 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
25e6c11f | 8521 | M: Jiri Slaby <jslaby@suse.cz> |
879a5a00 | 8522 | S: Supported |
08deed1e | 8523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 8524 | F: drivers/tty/ |
df621252 | 8525 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
8526 | F: include/linux/serial_core.h |
8527 | F: include/linux/serial.h | |
8528 | F: include/linux/tty.h | |
c117ab84 CEB |
8529 | F: include/uapi/linux/serial_core.h |
8530 | F: include/uapi/linux/serial.h | |
8531 | F: include/uapi/linux/tty.h | |
4e68852d | 8532 | |
91952bc0 AP |
8533 | TUA9001 MEDIA DRIVER |
8534 | M: Antti Palosaari <crope@iki.fi> | |
8535 | L: linux-media@vger.kernel.org | |
8536 | W: http://linuxtv.org/ | |
8537 | W: http://palosaari.fi/linux/ | |
8538 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
8539 | T: git git://linuxtv.org/anttip/media_tree.git | |
8540 | S: Maintained | |
8541 | F: drivers/media/tuners/tua9001* | |
8542 | ||
740db6d7 | 8543 | TULIP NETWORK DRIVERS |
8b58be88 | 8544 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
8545 | L: netdev@vger.kernel.org |
8546 | S: Maintained | |
0f04e2aa | 8547 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
8548 | |
8549 | TUN/TAP driver | |
ba57b6f2 | 8550 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
8551 | W: http://vtun.sourceforge.net/tun |
8552 | S: Maintained | |
679655da JP |
8553 | F: Documentation/networking/tuntap.txt |
8554 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 8555 | |
b454cc66 | 8556 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 8557 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
b454cc66 | 8558 | S: Maintained |
679655da JP |
8559 | F: drivers/tc/ |
8560 | F: include/linux/tc.h | |
b454cc66 | 8561 | |
1da177e4 | 8562 | U14-34F SCSI DRIVER |
8b58be88 | 8563 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
8564 | L: linux-scsi@vger.kernel.org |
8565 | S: Maintained | |
679655da | 8566 | F: drivers/scsi/u14-34f.c |
1da177e4 | 8567 | |
e2d1d6c0 | 8568 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 8569 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 8570 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 8571 | L: linux-mtd@lists.infradead.org |
e2966cbe | 8572 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
8573 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
8574 | S: Maintained | |
679655da JP |
8575 | F: Documentation/filesystems/ubifs.txt |
8576 | F: fs/ubifs/ | |
e2d1d6c0 | 8577 | |
cc2020e6 | 8578 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 8579 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 AC |
8580 | W: http://www.uclinux.org/ |
8581 | L: uclinux-dev@uclinux.org (subscribers-only) | |
8582 | S: Maintained | |
61bc02bb JP |
8583 | F: arch/m68k/*/*_no.* |
8584 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 8585 | |
14fadca7 | 8586 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 8587 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
cc2020e6 AC |
8588 | W: http://uclinux-h8.sourceforge.jp/ |
8589 | S: Supported | |
a7e4fd93 JP |
8590 | F: arch/h8300/ |
8591 | F: drivers/ide/ide-h8300.c | |
644570b8 | 8592 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 8593 | |
1da177e4 | 8594 | UDF FILESYSTEM |
8b58be88 | 8595 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 8596 | S: Maintained |
679655da JP |
8597 | F: Documentation/filesystems/udf.txt |
8598 | F: fs/udf/ | |
1da177e4 | 8599 | |
cc2020e6 | 8600 | UFS FILESYSTEM |
8b58be88 | 8601 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 8602 | S: Maintained |
679655da JP |
8603 | F: Documentation/filesystems/ufs.txt |
8604 | F: fs/ufs/ | |
cc2020e6 | 8605 | |
0a09d3ab DH |
8606 | UHID USERSPACE HID IO DRIVER: |
8607 | M: David Herrmann <dh.herrmann@googlemail.com> | |
8608 | L: linux-input@vger.kernel.org | |
8609 | S: Maintained | |
8610 | F: drivers/hid/uhid.c | |
c117ab84 | 8611 | F: include/uapi/linux/uhid.h |
0a09d3ab | 8612 | |
18332a80 | 8613 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 8614 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 8615 | S: Orphan |
355ffe69 | 8616 | F: drivers/uwb/ |
679655da JP |
8617 | F: include/linux/uwb.h |
8618 | F: include/linux/uwb/ | |
18332a80 | 8619 | |
b31d8273 G |
8620 | UNICORE32 ARCHITECTURE: |
8621 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
8622 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
8623 | S: Maintained | |
8624 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
8625 | F: arch/unicore32/ | |
8626 | ||
d8379ab1 TF |
8627 | UNIFDEF |
8628 | M: Tony Finch <dot@dotat.at> | |
8629 | W: http://dotat.at/prog/unifdef | |
8630 | S: Maintained | |
8631 | F: scripts/unifdef.c | |
8632 | ||
1da177e4 | 8633 | UNIFORM CDROM DRIVER |
8b58be88 | 8634 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
8635 | W: http://www.kernel.dk |
8636 | S: Maintained | |
679655da JP |
8637 | F: Documentation/cdrom/ |
8638 | F: drivers/cdrom/cdrom.c | |
8639 | F: include/linux/cdrom.h | |
c117ab84 | 8640 | F: include/uapi/linux/cdrom.h |
1da177e4 | 8641 | |
9941fa6e VH |
8642 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
8643 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
8644 | M: Santosh Y <santoshsy@gmail.com> | |
8645 | L: linux-scsi@vger.kernel.org | |
8646 | S: Supported | |
8647 | F: Documentation/scsi/ufs.txt | |
8648 | F: drivers/scsi/ufs/ | |
8649 | ||
e2d1d6c0 | 8650 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 8651 | M: Artem Bityutskiy <dedekind1@gmail.com> |
e2d1d6c0 RD |
8652 | W: http://www.linux-mtd.infradead.org/ |
8653 | L: linux-mtd@lists.infradead.org | |
e2966cbe | 8654 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 8655 | S: Maintained |
80811493 | 8656 | F: drivers/mtd/ubi/ |
679655da | 8657 | F: include/linux/mtd/ubi.h |
c117ab84 | 8658 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 8659 | |
76ac66e4 RW |
8660 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
8661 | M: Richard Weinberger <richard@nod.at> | |
8662 | L: linux-mtd@lists.infradead.org | |
8663 | S: Maintained | |
8664 | F: drivers/mtd/ubi/fastmap.c | |
8665 | ||
1da177e4 | 8666 | USB ACM DRIVER |
61eee9a7 | 8667 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 8668 | L: linux-usb@vger.kernel.org |
1da177e4 | 8669 | S: Maintained |
679655da JP |
8670 | F: Documentation/usb/acm.txt |
8671 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 8672 | |
b7d572e1 PF |
8673 | USB AR5523 WIRELESS DRIVER |
8674 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
8675 | L: linux-wireless@vger.kernel.org | |
8676 | S: Maintained | |
8677 | F: drivers/net/wireless/ath/ar5523/ | |
8678 | ||
115bb1ff MW |
8679 | USB ATTACHED SCSI |
8680 | M: Matthew Wilcox <willy@linux.intel.com> | |
8681 | M: Sarah Sharp <sarah.a.sharp@linux.intel.com> | |
8eae0fb7 | 8682 | M: Gerd Hoffmann <kraxel@redhat.com> |
115bb1ff MW |
8683 | L: linux-usb@vger.kernel.org |
8684 | L: linux-scsi@vger.kernel.org | |
8eae0fb7 | 8685 | S: Maintained |
115bb1ff MW |
8686 | F: drivers/usb/storage/uas.c |
8687 | ||
1da177e4 | 8688 | USB CDC ETHERNET DRIVER |
61eee9a7 | 8689 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 8690 | L: linux-usb@vger.kernel.org |
1da177e4 | 8691 | S: Maintained |
679655da | 8692 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 8693 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 8694 | |
b02b371e | 8695 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 8696 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
8697 | L: linux-usb@vger.kernel.org |
8698 | S: Maintained | |
679655da | 8699 | F: drivers/usb/c67x00/ |
b02b371e | 8700 | |
d0374f4f | 8701 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 8702 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 8703 | L: netdev@vger.kernel.org |
d0374f4f PK |
8704 | W: http://www.linux-usb.org/usbnet |
8705 | S: Maintained | |
679655da | 8706 | F: drivers/net/usb/dm9601.c |
d0374f4f | 8707 | |
cc2020e6 | 8708 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 8709 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
8710 | L: rio500-users@lists.sourceforge.net |
8711 | W: http://rio500.sourceforge.net | |
8712 | S: Maintained | |
679655da | 8713 | F: drivers/usb/misc/rio500* |
cc2020e6 | 8714 | |
1da177e4 | 8715 | USB EHCI DRIVER |
578333ab | 8716 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 8717 | L: linux-usb@vger.kernel.org |
578333ab | 8718 | S: Maintained |
679655da JP |
8719 | F: Documentation/usb/ehci.txt |
8720 | F: drivers/usb/host/ehci* | |
1da177e4 | 8721 | |
69ae9e3e | 8722 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 8723 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 8724 | L: linux-usb@vger.kernel.org |
69ae9e3e | 8725 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
8726 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
8727 | S: Maintained | |
679655da JP |
8728 | F: drivers/usb/gadget/ |
8729 | F: include/linux/usb/gadget* | |
69ae9e3e | 8730 | |
2dea64b4 | 8731 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 8732 | M: Jiri Kosina <jkosina@suse.cz> |
795fb7e7 | 8733 | L: linux-usb@vger.kernel.org |
54e5881d | 8734 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 8735 | S: Maintained |
c2f01971 | 8736 | F: Documentation/hid/hiddev.txt |
679655da | 8737 | F: drivers/hid/usbhid/ |
1da177e4 | 8738 | |
857aab34 | 8739 | USB/IP DRIVERS |
857aab34 | 8740 | L: linux-usb@vger.kernel.org |
3ff4afe8 | 8741 | S: Orphan |
857aab34 | 8742 | F: drivers/staging/usbip/ |
8743 | ||
959eea21 | 8744 | USB ISP116X DRIVER |
8b58be88 | 8745 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 8746 | L: linux-usb@vger.kernel.org |
959eea21 | 8747 | S: Maintained |
679655da JP |
8748 | F: drivers/usb/host/isp116x* |
8749 | F: include/linux/usb/isp116x.h | |
959eea21 | 8750 | |
1da177e4 | 8751 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 8752 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 8753 | L: linux-usb@vger.kernel.org |
1da177e4 | 8754 | S: Maintained |
679655da | 8755 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
8756 | |
8757 | USB MASS STORAGE DRIVER | |
8b58be88 | 8758 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 8759 | L: linux-usb@vger.kernel.org |
8836aeb8 | 8760 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
8761 | S: Maintained |
8762 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 8763 | F: drivers/usb/storage/ |
1da177e4 | 8764 | |
af39917d CL |
8765 | USB MIDI DRIVER |
8766 | M: Clemens Ladisch <clemens@ladisch.de> | |
8767 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8768 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8769 | S: Maintained | |
8770 | F: sound/usb/midi.* | |
8771 | ||
444ce9d4 JP |
8772 | USB NETWORKING DRIVERS |
8773 | L: linux-usb@vger.kernel.org | |
8774 | S: Odd Fixes | |
8775 | F: drivers/net/usb/ | |
8776 | ||
1da177e4 | 8777 | USB OHCI DRIVER |
578333ab | 8778 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 8779 | L: linux-usb@vger.kernel.org |
578333ab | 8780 | S: Maintained |
679655da JP |
8781 | F: Documentation/usb/ohci.txt |
8782 | F: drivers/usb/host/ohci* | |
1da177e4 | 8783 | |
ba460e48 | 8784 | USB OPTION-CARD DRIVER |
8b58be88 | 8785 | M: Matthias Urlichs <smurf@smurf.noris.de> |
795fb7e7 | 8786 | L: linux-usb@vger.kernel.org |
ba460e48 | 8787 | S: Maintained |
679655da | 8788 | F: drivers/usb/serial/option.c |
ba460e48 | 8789 | |
1da177e4 | 8790 | USB PEGASUS DRIVER |
a16b945c | 8791 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 8792 | L: linux-usb@vger.kernel.org |
043600a6 | 8793 | L: netdev@vger.kernel.org |
a16b945c | 8794 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8795 | W: http://pegasus2.sourceforge.net/ |
8796 | S: Maintained | |
679655da | 8797 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8798 | |
d3ad558f FB |
8799 | USB PHY LAYER |
8800 | M: Felipe Balbi <balbi@ti.com> | |
8801 | L: linux-usb@vger.kernel.org | |
8802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8803 | S: Maintained | |
8804 | F: drivers/usb/phy/ | |
d3ad558f | 8805 | |
73e4fb3f | 8806 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8807 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 8808 | L: linux-usb@vger.kernel.org |
73e4fb3f | 8809 | S: Supported |
679655da | 8810 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8811 | |
8812 | USB RTL8150 DRIVER | |
a16b945c | 8813 | M: Petko Manolov <petkan@nucleusys.com> |
795fb7e7 | 8814 | L: linux-usb@vger.kernel.org |
043600a6 | 8815 | L: netdev@vger.kernel.org |
a16b945c | 8816 | T: git git://git.code.sf.net/p/pegasus2/git |
1da177e4 LT |
8817 | W: http://pegasus2.sourceforge.net/ |
8818 | S: Maintained | |
679655da | 8819 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 8820 | |
4e68852d | 8821 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 8822 | M: William Greathouse <wgreathouse@smva.com> |
795fb7e7 | 8823 | L: linux-usb@vger.kernel.org |
4e68852d | 8824 | S: Maintained |
679655da | 8825 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
8826 | |
8827 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 8828 | M: Lonnie Mendez <dignome@gmail.com> |
795fb7e7 | 8829 | L: linux-usb@vger.kernel.org |
4e68852d AC |
8830 | S: Maintained |
8831 | W: http://geocities.com/i0xox0i | |
8832 | W: http://firstlight.net/cvs | |
679655da | 8833 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 8834 | |
1da177e4 | 8835 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 8836 | M: Matthias Bruestle and Harald Welte <support@reiner-sct.com> |
1da177e4 LT |
8837 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
8838 | S: Maintained | |
679655da | 8839 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
8840 | |
8841 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
8842 | M: Peter Berger <pberger@brimson.com> |
8843 | M: Al Borchers <alborchers@steinerpoint.com> | |
795fb7e7 | 8844 | L: linux-usb@vger.kernel.org |
1da177e4 | 8845 | S: Maintained |
679655da | 8846 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
8847 | |
8848 | USB SERIAL DRIVER | |
879a5a00 | 8849 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 8850 | L: linux-usb@vger.kernel.org |
1da177e4 | 8851 | S: Supported |
679655da JP |
8852 | F: Documentation/usb/usb-serial.txt |
8853 | F: drivers/usb/serial/generic.c | |
8854 | F: drivers/usb/serial/usb-serial.c | |
8855 | F: include/linux/usb/serial.h | |
1da177e4 | 8856 | |
1da177e4 | 8857 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 8858 | M: Gary Brubaker <xavyer@ix.netcom.com> |
795fb7e7 | 8859 | L: linux-usb@vger.kernel.org |
1da177e4 | 8860 | S: Maintained |
679655da | 8861 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
8862 | |
8863 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 8864 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 8865 | L: linux-usb@vger.kernel.org |
1da177e4 | 8866 | S: Maintained |
679655da | 8867 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
8868 | |
8869 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 8870 | M: Support Department <support@connecttech.com> |
795fb7e7 | 8871 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
8872 | W: http://www.connecttech.com |
8873 | S: Supported | |
679655da | 8874 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 8875 | |
b3f0db1c SG |
8876 | USB SMSC75XX ETHERNET DRIVER |
8877 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
8878 | L: netdev@vger.kernel.org | |
8879 | S: Maintained | |
8880 | F: drivers/net/usb/smsc75xx.* | |
8881 | ||
2f7ca802 | 8882 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 8883 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 8884 | L: netdev@vger.kernel.org |
90b24cfb | 8885 | S: Maintained |
679655da | 8886 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 8887 | |
f423b9a8 | 8888 | USB SN9C1xx DRIVER |
8b58be88 | 8889 | M: Luca Risolia <luca.risolia@studio.unibo.it> |
795fb7e7 | 8890 | L: linux-usb@vger.kernel.org |
661263b5 | 8891 | L: linux-media@vger.kernel.org |
275ffde4 | 8892 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
8893 | W: http://www.linux-projects.org |
8894 | S: Maintained | |
679655da | 8895 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8896 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8897 | |
8898 | USB SUBSYSTEM | |
879a5a00 | 8899 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 8900 | L: linux-usb@vger.kernel.org |
1da177e4 | 8901 | W: http://www.linux-usb.org |
08deed1e | 8902 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8903 | S: Supported |
679655da | 8904 | F: Documentation/usb/ |
679655da JP |
8905 | F: drivers/usb/ |
8906 | F: include/linux/usb.h | |
8907 | F: include/linux/usb/ | |
1da177e4 LT |
8908 | |
8909 | USB UHCI DRIVER | |
8b58be88 | 8910 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 8911 | L: linux-usb@vger.kernel.org |
1da177e4 | 8912 | S: Maintained |
679655da | 8913 | F: drivers/usb/host/uhci* |
1da177e4 | 8914 | |
69ae9e3e | 8915 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8916 | M: Oliver Neukum <oneukum@suse.de> |
043600a6 | 8917 | L: netdev@vger.kernel.org |
69ae9e3e | 8918 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8919 | S: Maintained |
679655da JP |
8920 | F: drivers/net/usb/usbnet.c |
8921 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8922 | |
c0efd232 | 8923 | USB VIDEO CLASS |
c53ac071 | 8924 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 8925 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 8926 | L: linux-media@vger.kernel.org |
275ffde4 | 8927 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8928 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8929 | S: Maintained |
0c0d06ca | 8930 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8931 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8932 | |
b60b9c45 HV |
8933 | USB VISION DRIVER |
8934 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
8935 | L: linux-media@vger.kernel.org | |
8936 | T: git git://linuxtv.org/media_tree.git | |
8937 | W: http://linuxtv.org | |
8938 | S: Odd Fixes | |
8939 | F: drivers/media/usb/usbvision/ | |
8940 | ||
8282da47 LP |
8941 | USB WEBCAM GADGET |
8942 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
8943 | L: linux-usb@vger.kernel.org | |
8944 | S: Maintained | |
8945 | F: drivers/usb/gadget/*uvc*.c | |
8946 | F: drivers/usb/gadget/webcam.c | |
8947 | ||
bf164cc0 | 8948 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
e6146c5c | 8949 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
bf164cc0 JK |
8950 | L: linux-wireless@vger.kernel.org |
8951 | S: Maintained | |
679655da | 8952 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8953 | |
eb6bab13 | 8954 | USB XHCI DRIVER |
36d0344c | 8955 | M: Sarah Sharp <sarah.a.sharp@linux.intel.com> |
eb6bab13 SS |
8956 | L: linux-usb@vger.kernel.org |
8957 | S: Supported | |
36d0344c SS |
8958 | F: drivers/usb/host/xhci* |
8959 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8960 | |
1da177e4 | 8961 | USB ZD1201 DRIVER |
4086b9ca | 8962 | L: linux-wireless@vger.kernel.org |
1da177e4 | 8963 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8964 | S: Orphan |
679655da | 8965 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8966 | |
b7eee616 | 8967 | USB ZR364XX DRIVER |
8b58be88 | 8968 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 8969 | L: linux-usb@vger.kernel.org |
661263b5 | 8970 | L: linux-media@vger.kernel.org |
275ffde4 | 8971 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8972 | W: http://royale.zerezo.com/zr364xx/ |
8973 | S: Maintained | |
679655da | 8974 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8975 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8976 | |
e7839f25 | 8977 | USER-MODE LINUX (UML) |
8b58be88 | 8978 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 8979 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
8980 | L: user-mode-linux-devel@lists.sourceforge.net |
8981 | L: user-mode-linux-user@lists.sourceforge.net | |
8982 | W: http://user-mode-linux.sourceforge.net | |
8983 | S: Maintained | |
61516587 | 8984 | F: Documentation/virtual/uml/ |
679655da | 8985 | F: arch/um/ |
b070989a | 8986 | F: arch/x86/um/ |
679655da JP |
8987 | F: fs/hostfs/ |
8988 | F: fs/hppfs/ | |
b7eee616 | 8989 | |
e5f114e9 | 8990 | USERSPACE I/O (UIO) |
6a534c9d | 8991 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 8992 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 8993 | S: Maintained |
679655da JP |
8994 | F: Documentation/DocBook/uio-howto.tmpl |
8995 | F: drivers/uio/ | |
8996 | F: include/linux/uio*.h | |
e5f114e9 | 8997 | |
256cccbe | 8998 | UTIL-LINUX PACKAGE |
8b58be88 | 8999 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
9000 | L: util-linux@vger.kernel.org |
9001 | W: http://en.wikipedia.org/wiki/Util-linux | |
9002 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
9003 | S: Maintained |
9004 | ||
c1fd1c07 | 9005 | UVESAFB DRIVER |
8b58be88 | 9006 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 9007 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
9008 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
9009 | S: Maintained | |
679655da JP |
9010 | F: Documentation/fb/uvesafb.txt |
9011 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 9012 | |
4480f15b | 9013 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 9014 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 9015 | S: Maintained |
679655da JP |
9016 | F: Documentation/filesystems/vfat.txt |
9017 | F: fs/fat/ | |
1da177e4 | 9018 | |
cba3345c AW |
9019 | VFIO DRIVER |
9020 | M: Alex Williamson <alex.williamson@redhat.com> | |
9021 | L: kvm@vger.kernel.org | |
9022 | S: Maintained | |
9023 | F: Documentation/vfio.txt | |
9024 | F: drivers/vfio/ | |
9025 | F: include/linux/vfio.h | |
c117ab84 | 9026 | F: include/uapi/linux/vfio.h |
cba3345c | 9027 | |
9e6f3438 PO |
9028 | VIDEOBUF2 FRAMEWORK |
9029 | M: Pawel Osciak <pawel@osciak.com> | |
9030 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 9031 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
9032 | L: linux-media@vger.kernel.org |
9033 | S: Maintained | |
90d72ac6 | 9034 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
9035 | F: include/media/videobuf2-* |
9036 | ||
9a82446b AS |
9037 | VIRTIO CONSOLE DRIVER |
9038 | M: Amit Shah <amit.shah@redhat.com> | |
9039 | L: virtualization@lists.linux-foundation.org | |
9040 | S: Maintained | |
9041 | F: drivers/char/virtio_console.c | |
9042 | F: include/linux/virtio_console.h | |
c117ab84 | 9043 | F: include/uapi/linux/virtio_console.h |
9a82446b | 9044 | |
2426ec8f MT |
9045 | VIRTIO CORE, NET AND BLOCK DRIVERS |
9046 | M: Rusty Russell <rusty@rustcorp.com.au> | |
9047 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9048 | L: virtualization@lists.linux-foundation.org | |
9049 | S: Maintained | |
9050 | F: drivers/virtio/ | |
c893c8d7 | 9051 | F: tools/virtio/ |
2426ec8f MT |
9052 | F: drivers/net/virtio_net.c |
9053 | F: drivers/block/virtio_blk.c | |
9054 | F: include/linux/virtio_*.h | |
916cdabc | 9055 | F: include/uapi/linux/virtio_*.h |
2426ec8f | 9056 | |
3a4d5c94 MT |
9057 | VIRTIO HOST (VHOST) |
9058 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
9059 | L: kvm@vger.kernel.org | |
c996d8b9 | 9060 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
9061 | L: netdev@vger.kernel.org |
9062 | S: Maintained | |
9063 | F: drivers/vhost/ | |
c117ab84 | 9064 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 9065 | |
1da177e4 | 9066 | VIA RHINE NETWORK DRIVER |
8b58be88 | 9067 | M: Roger Luethi <rl@hellgate.ch> |
1da177e4 | 9068 | S: Maintained |
f2148a47 | 9069 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 9070 | |
f0bf7f61 | 9071 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 9072 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 9073 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
9074 | S: Maintained |
9075 | F: drivers/mmc/host/via-sdmmc.c | |
9076 | ||
69e4a7c2 | 9077 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 9078 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 9079 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 9080 | S: Maintained |
c7babebd FTS |
9081 | F: include/linux/via-core.h |
9082 | F: include/linux/via-gpio.h | |
9083 | F: include/linux/via_i2c.h | |
679655da | 9084 | F: drivers/video/via/ |
69e4a7c2 | 9085 | |
01f20734 | 9086 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 9087 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
9088 | L: netdev@vger.kernel.org |
9089 | S: Maintained | |
f2148a47 | 9090 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 9091 | |
0b7bc1fa HV |
9092 | VIVI VIRTUAL VIDEO DRIVER |
9093 | M: Hans Verkuil <hverkuil@xs4all.nl> | |
9094 | L: linux-media@vger.kernel.org | |
9095 | T: git git://linuxtv.org/media_tree.git | |
9096 | W: http://linuxtv.org | |
9097 | S: Maintained | |
9098 | F: drivers/media/platform/vivi* | |
9099 | ||
be7f8273 | 9100 | VLAN (802.1Q) |
8b58be88 | 9101 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
9102 | L: netdev@vger.kernel.org |
9103 | S: Maintained | |
679655da JP |
9104 | F: drivers/net/macvlan.c |
9105 | F: include/linux/if_*vlan.h | |
9106 | F: net/8021q/ | |
be7f8273 | 9107 | |
55e331cf | 9108 | VLYNQ BUS |
8b58be88 | 9109 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 9110 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
9111 | S: Maintained |
9112 | F: drivers/vlynq/vlynq.c | |
9113 | F: include/linux/vlynq.h | |
9114 | ||
390beae4 MW |
9115 | VME SUBSYSTEM |
9116 | M: Martyn Welch <martyn.welch@ge.com> | |
1bd289d1 | 9117 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
9118 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
9119 | L: devel@driverdev.osuosl.org | |
9120 | S: Maintained | |
9121 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
9122 | F: Documentation/vme_api.txt | |
9123 | F: drivers/staging/vme/ | |
9124 | F: drivers/vme/ | |
9125 | F: include/linux/vme* | |
9126 | ||
4488e09b AK |
9127 | VMWARE HYPERVISOR INTERFACE |
9128 | M: Alok Kataria <akataria@vmware.com> | |
9129 | L: virtualization@lists.linux-foundation.org | |
9130 | S: Supported | |
9131 | F: arch/x86/kernel/cpu/vmware.c | |
9132 | ||
d1a890fa | 9133 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
9134 | M: Shreyas Bhatewara <sbhatewara@vmware.com> |
9135 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
9136 | L: netdev@vger.kernel.org | |
9137 | S: Maintained | |
9138 | F: drivers/net/vmxnet3/ | |
d1a890fa | 9139 | |
851b1642 | 9140 | VMware PVSCSI driver |
f2d7e40e | 9141 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
9142 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
9143 | L: linux-scsi@vger.kernel.org | |
9144 | S: Maintained | |
9145 | F: drivers/scsi/vmw_pvscsi.c | |
9146 | F: drivers/scsi/vmw_pvscsi.h | |
9147 | ||
e53e86c7 | 9148 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
88dd75af | 9149 | M: Liam Girdwood <lgirdwood@gmail.com> |
b02e48f2 | 9150 | M: Mark Brown <broonie@kernel.org> |
e53e86c7 | 9151 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 9152 | W: http://www.slimlogic.co.uk/?p=48 |
6febb5ab | 9153 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
e53e86c7 | 9154 | S: Supported |
679655da JP |
9155 | F: drivers/regulator/ |
9156 | F: include/linux/regulator/ | |
e53e86c7 | 9157 | |
ab41319e | 9158 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 9159 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
9160 | L: lm-sensors@lm-sensors.org |
9161 | S: Maintained | |
679655da JP |
9162 | F: Documentation/hwmon/vt1211 |
9163 | F: drivers/hwmon/vt1211.c | |
ab41319e | 9164 | |
1de9e371 | 9165 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 9166 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
9167 | L: lm-sensors@lm-sensors.org |
9168 | S: Maintained | |
679655da | 9169 | F: drivers/hwmon/vt8231.c |
1de9e371 | 9170 | |
88095e7b TO |
9171 | VUB300 USB to SDIO/SD/MMC bridge chip |
9172 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
9173 | L: linux-mmc@vger.kernel.org | |
9174 | L: linux-usb@vger.kernel.org | |
9175 | S: Supported | |
9176 | F: drivers/mmc/host/vub300.c | |
9177 | ||
1da177e4 | 9178 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 9179 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 9180 | S: Maintained |
679655da JP |
9181 | F: Documentation/w1/ |
9182 | F: drivers/w1/ | |
1da177e4 | 9183 | |
13927079 | 9184 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 9185 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 9186 | L: lm-sensors@lm-sensors.org |
25845c22 | 9187 | S: Maintained |
679655da JP |
9188 | F: Documentation/hwmon/w83791d |
9189 | F: drivers/hwmon/w83791d.c | |
13927079 | 9190 | |
61db011d | 9191 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 9192 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
9193 | L: lm-sensors@lm-sensors.org |
9194 | S: Maintained | |
679655da JP |
9195 | F: Documentation/hwmon/w83793 |
9196 | F: drivers/hwmon/w83793.c | |
61db011d | 9197 | |
e3760b43 JD |
9198 | W83795 HARDWARE MONITORING DRIVER |
9199 | M: Jean Delvare <khali@linux-fr.org> | |
9200 | L: lm-sensors@lm-sensors.org | |
9201 | S: Maintained | |
9202 | F: drivers/hwmon/w83795.c | |
9203 | ||
1da177e4 | 9204 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 9205 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 9206 | S: Maintained |
679655da | 9207 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 9208 | |
3527761c | 9209 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 9210 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
9211 | L: linux-watchdog@vger.kernel.org |
9212 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 9213 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 9214 | S: Maintained |
679655da JP |
9215 | F: Documentation/watchdog/ |
9216 | F: drivers/watchdog/ | |
9217 | F: include/linux/watchdog.h | |
c117ab84 | 9218 | F: include/uapi/linux/watchdog.h |
3527761c | 9219 | |
1da177e4 | 9220 | WD7000 SCSI DRIVER |
8b58be88 | 9221 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
9222 | L: linux-scsi@vger.kernel.org |
9223 | S: Maintained | |
679655da | 9224 | F: drivers/scsi/wd7000.c |
1da177e4 | 9225 | |
b22e00f3 DH |
9226 | WIIMOTE HID DRIVER |
9227 | M: David Herrmann <dh.herrmann@googlemail.com> | |
9228 | L: linux-input@vger.kernel.org | |
9229 | S: Maintained | |
9230 | F: drivers/hid/hid-wiimote* | |
9231 | ||
e258b80e | 9232 | WINBOND CIR DRIVER |
364e9e18 | 9233 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 9234 | S: Maintained |
116ab806 | 9235 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 9236 | |
8a70da82 | 9237 | WIMAX STACK |
8b58be88 | 9238 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 IPG |
9239 | M: linux-wimax@intel.com |
9240 | L: wimax@linuxwimax.org | |
9241 | S: Supported | |
9242 | W: http://linuxwimax.org | |
315987dc | 9243 | F: Documentation/wimax/README.wimax |
315987dc JP |
9244 | F: include/linux/wimax/debug.h |
9245 | F: include/net/wimax.h | |
c117ab84 | 9246 | F: include/uapi/linux/wimax.h |
315987dc | 9247 | F: net/wimax/ |
8a70da82 | 9248 | |
5fc14680 | 9249 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 9250 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 9251 | S: Maintained |
679655da | 9252 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 9253 | |
1da177e4 | 9254 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 9255 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 9256 | L: linux-wireless@vger.kernel.org |
926554c4 | 9257 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 9258 | S: Maintained |
679655da | 9259 | F: drivers/net/wireless/wl3501* |
1da177e4 | 9260 | |
febf1dff | 9261 | WM97XX TOUCHSCREEN DRIVERS |
d9f1f489 | 9262 | M: Mark Brown <broonie@kernel.org> |
8b58be88 | 9263 | M: Liam Girdwood <lrg@slimlogic.co.uk> |
febf1dff MB |
9264 | L: linux-input@vger.kernel.org |
9265 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
9266 | W: http://opensource.wolfsonmicro.com/node/7 | |
9267 | S: Supported | |
679655da JP |
9268 | F: drivers/input/touchscreen/*wm97* |
9269 | F: include/linux/wm97xx.h | |
febf1dff | 9270 | |
055bcbcb | 9271 | WOLFSON MICROELECTRONICS DRIVERS |
fef95164 | 9272 | L: patches@opensource.wolfsonmicro.com |
cf8eda3e | 9273 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 9274 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 9275 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 9276 | S: Supported |
3768f0b1 | 9277 | F: Documentation/hwmon/wm83?? |
af1c5386 | 9278 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 9279 | F: drivers/clk/clk-wm83*.c |
9c309598 | 9280 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 9281 | F: drivers/leds/leds-wm83*.c |
25b273ba | 9282 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 9283 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 9284 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
9285 | F: drivers/input/misc/wm831x-on.c |
9286 | F: drivers/input/touchscreen/wm831x-ts.c | |
9287 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
9288 | F: drivers/mfd/arizona* |
9289 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
9290 | F: drivers/power/wm83*.c |
9291 | F: drivers/rtc/rtc-wm83*.c | |
9292 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 9293 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 9294 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 9295 | F: include/linux/mfd/arizona/ |
3860e6c4 | 9296 | F: include/linux/mfd/wm831x/ |
b75ea16a | 9297 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 9298 | F: include/linux/mfd/wm8400* |
59ec6da2 | 9299 | F: include/linux/wm97xx.h |
055bcbcb | 9300 | F: include/sound/wm????.h |
9c309598 | 9301 | F: sound/soc/codecs/arizona.? |
055bcbcb | 9302 | F: sound/soc/codecs/wm* |
b75ea16a | 9303 | |
3e6cd7a4 TH |
9304 | WORKQUEUE |
9305 | M: Tejun Heo <tj@kernel.org> | |
3e6cd7a4 TH |
9306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
9307 | S: Maintained | |
9308 | F: include/linux/workqueue.h | |
9309 | F: kernel/workqueue.c | |
9310 | F: Documentation/workqueue.txt | |
9311 | ||
1da177e4 | 9312 | X.25 NETWORK LAYER |
8bf28059 | 9313 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 9314 | L: linux-x25@vger.kernel.org |
8bf28059 | 9315 | S: Odd Fixes |
679655da JP |
9316 | F: Documentation/networking/x25* |
9317 | F: include/net/x25* | |
9318 | F: net/x25/ | |
1da177e4 | 9319 | |
e2d1d6c0 | 9320 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
9321 | M: Thomas Gleixner <tglx@linutronix.de> |
9322 | M: Ingo Molnar <mingo@redhat.com> | |
9323 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 9324 | M: x86@kernel.org |
75fc2d37 | 9325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 9326 | S: Maintained |
679655da JP |
9327 | F: Documentation/x86/ |
9328 | F: arch/x86/ | |
e2d1d6c0 | 9329 | |
d0944853 | 9330 | X86 PLATFORM DRIVERS |
f7cb13b3 | 9331 | M: Matthew Garrett <matthew.garrett@nebula.com> |
d0944853 | 9332 | L: platform-driver-x86@vger.kernel.org |
28b8e8d4 | 9333 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 | 9334 | S: Maintained |
14430813 | 9335 | F: drivers/platform/x86/ |
d0944853 | 9336 | |
c1f5c54b IM |
9337 | X86 MCE INFRASTRUCTURE |
9338 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 9339 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
9340 | L: linux-edac@vger.kernel.org |
9341 | S: Maintained | |
9342 | F: arch/x86/kernel/cpu/mcheck/* | |
9343 | ||
d6fad502 | 9344 | XC2028/3028 TUNER DRIVER |
1b2c14b4 | 9345 | M: Mauro Carvalho Chehab <m.chehab@samsung.com> |
d6fad502 MCC |
9346 | L: linux-media@vger.kernel.org |
9347 | W: http://linuxtv.org | |
9348 | T: git git://linuxtv.org/media_tree.git | |
9349 | S: Maintained | |
9350 | F: drivers/media/tuners/tuner-xc2028.* | |
9351 | ||
c4468085 | 9352 | XEN HYPERVISOR INTERFACE |
c4468085 | 9353 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
3eeef8f7 KRW |
9354 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
9355 | M: David Vrabel <david.vrabel@citrix.com> | |
11dbb52b | 9356 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c4468085 IC |
9357 | S: Supported |
9358 | F: arch/x86/xen/ | |
9359 | F: drivers/*/xen-*front.c | |
9360 | F: drivers/xen/ | |
9361 | F: arch/x86/include/asm/xen/ | |
9362 | F: include/xen/ | |
c117ab84 | 9363 | F: include/uapi/xen/ |
c4468085 | 9364 | |
77bfb479 SS |
9365 | XEN HYPERVISOR ARM |
9366 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 9367 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
77bfb479 SS |
9368 | S: Supported |
9369 | F: arch/arm/xen/ | |
9370 | F: arch/arm/include/asm/xen/ | |
9371 | ||
b475e83f SS |
9372 | XEN HYPERVISOR ARM64 |
9373 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
11dbb52b | 9374 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
b475e83f SS |
9375 | S: Supported |
9376 | F: arch/arm64/xen/ | |
9377 | F: arch/arm64/include/asm/xen/ | |
9378 | ||
9b57e1a7 IC |
9379 | XEN NETWORK BACKEND DRIVER |
9380 | M: Ian Campbell <ian.campbell@citrix.com> | |
11dbb52b | 9381 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
9b57e1a7 IC |
9382 | L: netdev@vger.kernel.org |
9383 | S: Supported | |
9384 | F: drivers/net/xen-netback/* | |
9385 | ||
c5f8e29d KRW |
9386 | XEN PCI SUBSYSTEM |
9387 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 9388 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
9389 | S: Supported |
9390 | F: arch/x86/pci/*xen* | |
9391 | F: drivers/pci/*xen* | |
9392 | ||
9393 | XEN SWIOTLB SUBSYSTEM | |
9394 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
11dbb52b | 9395 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
c5f8e29d KRW |
9396 | S: Supported |
9397 | F: arch/x86/xen/*swiotlb* | |
9398 | F: drivers/xen/*swiotlb* | |
9399 | ||
1da177e4 LT |
9400 | XFS FILESYSTEM |
9401 | P: Silicon Graphics Inc | |
c8891329 AE |
9402 | M: Ben Myers <bpm@sgi.com> |
9403 | M: Alex Elder <elder@kernel.org> | |
18caa67a | 9404 | M: xfs@oss.sgi.com |
d7ede1aa | 9405 | L: xfs@oss.sgi.com |
1da177e4 | 9406 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 9407 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 9408 | S: Supported |
679655da JP |
9409 | F: Documentation/filesystems/xfs.txt |
9410 | F: fs/xfs/ | |
1da177e4 | 9411 | |
8a3b7a25 | 9412 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
9413 | M: Anirudha Sarangi <anirudh@xilinx.com> |
9414 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 9415 | S: Maintained |
9416 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
9417 | ||
c9d3d8ec | 9418 | XILINX SYSTEMACE DRIVER |
cdeb8994 | 9419 | S: Orphan |
679655da | 9420 | F: drivers/block/xsysace.c |
c9d3d8ec | 9421 | |
238b8721 | 9422 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 9423 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
9424 | L: linux-serial@vger.kernel.org |
9425 | S: Maintained | |
df621252 | 9426 | F: drivers/tty/serial/uartlite.c |
238b8721 | 9427 | |
1da177e4 | 9428 | YAM DRIVER FOR AX.25 |
8b58be88 | 9429 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
9430 | L: linux-hams@vger.kernel.org |
9431 | S: Maintained | |
679655da JP |
9432 | F: drivers/net/hamradio/yam* |
9433 | F: include/linux/yam.h | |
1da177e4 | 9434 | |
af64a5eb | 9435 | YEALINK PHONE DRIVER |
8b58be88 | 9436 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb H |
9437 | L: usbb2k-api-dev@nongnu.org |
9438 | S: Maintained | |
679655da JP |
9439 | F: Documentation/input/yealink.txt |
9440 | F: drivers/input/misc/yealink.* | |
af64a5eb | 9441 | |
1da177e4 | 9442 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 9443 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
9444 | W: http://yaina.de/jreuter/ |
9445 | W: http://www.qsl.net/dl1bke/ | |
9446 | L: linux-hams@vger.kernel.org | |
9447 | S: Maintained | |
679655da JP |
9448 | F: Documentation/networking/z8530drv.txt |
9449 | F: drivers/net/hamradio/*scc.c | |
9450 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 9451 | |
0cf31ec1 SJ |
9452 | ZBUD COMPRESSED PAGE ALLOCATOR |
9453 | M: Seth Jennings <sjenning@linux.vnet.ibm.com> | |
9454 | L: linux-mm@kvack.org | |
9455 | S: Maintained | |
9456 | F: mm/zbud.c | |
9457 | F: include/linux/zbud.h | |
9458 | ||
7c0c3afb | 9459 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
9460 | M: Daniel Drake <dsd@gentoo.org> |
9461 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 9462 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 9463 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
9464 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
9465 | S: Maintained | |
679655da | 9466 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 9467 | |
1da177e4 | 9468 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 9469 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 9470 | L: linux-media@vger.kernel.org |
1da177e4 | 9471 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
9472 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
9473 | S: Odd Fixes | |
90d72ac6 | 9474 | F: drivers/media/pci/zoran/ |
1da177e4 | 9475 | |
8b4a4080 | 9476 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 9477 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 9478 | S: Maintained |
df621252 | 9479 | F: drivers/tty/serial/zs.* |
8b4a4080 | 9480 | |
0cf31ec1 SJ |
9481 | ZSWAP COMPRESSED SWAP CACHING |
9482 | M: Seth Jennings <sjenning@linux.vnet.ibm.com> | |
9483 | L: linux-mm@kvack.org | |
9484 | S: Maintained | |
9485 | F: mm/zswap.c | |
9486 | ||
1da177e4 | 9487 | THE REST |
8b58be88 | 9488 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 9489 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 9490 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 9491 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 9492 | S: Buried alive in reporters |
34d03cc1 JP |
9493 | F: * |
9494 | F: */ |