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. | |
93 | X: Files and directories that are NOT maintained, same rules as F: | |
94 | Files exclusions are tested before file matches. | |
95 | Can be useful for excluding a specific subdirectory, for instance: | |
96 | F: net/ | |
97 | X: net/ipv6/ | |
98 | matches all files in and below net excluding net/ipv6/ | |
99 | K: Keyword perl extended regex pattern to match content in a | |
100 | patch or file. For instance: | |
101 | K: of_get_profile | |
102 | matches patches or files that contain "of_get_profile" | |
103 | K: \b(printk|pr_(info|err))\b | |
104 | matches patches or files that contain one or more of the words | |
105 | printk, pr_info or pr_err | |
106 | One regex pattern per line. Multiple K: lines acceptable. | |
1da177e4 LT |
107 | |
108 | Note: For the hard of thinking, this list is meant to remain in alphabetical | |
109 | order. If you could add yourselves to it in alphabetical order that would be | |
110 | so much easier [Ed] | |
111 | ||
c7c4fb18 | 112 | Maintainers List (try to look for most precise areas first) |
1da177e4 | 113 | |
c7c4fb18 | 114 | ----------------------------------- |
679655da | 115 | |
1da177e4 | 116 | 3C505 NETWORK DRIVER |
8b58be88 | 117 | M: Philip Blundell <philb@gnu.org> |
979b6c13 | 118 | L: netdev@vger.kernel.org |
1da177e4 | 119 | S: Maintained |
11597885 | 120 | F: drivers/net/ethernet/i825xx/3c505* |
1da177e4 | 121 | |
a6d89915 | 122 | 3C59X NETWORK DRIVER |
8b58be88 | 123 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
a6d89915 SK |
124 | L: netdev@vger.kernel.org |
125 | S: Maintained | |
679655da | 126 | F: Documentation/networking/vortex.txt |
ca7a8e85 | 127 | F: drivers/net/ethernet/3com/3c59x.c |
a6d89915 | 128 | |
1da177e4 | 129 | 3CR990 NETWORK DRIVER |
8b58be88 | 130 | M: David Dillow <dave@thedillows.org> |
979b6c13 | 131 | L: netdev@vger.kernel.org |
1da177e4 | 132 | S: Maintained |
ca7a8e85 | 133 | F: drivers/net/ethernet/3com/typhoon* |
1da177e4 | 134 | |
c4de0ceb | 135 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
136 | M: Adam Radford <linuxraid@lsi.com> | |
1da177e4 | 137 | L: linux-scsi@vger.kernel.org |
c4de0ceb | 138 | W: http://www.lsi.com |
1da177e4 | 139 | S: Supported |
c4de0ceb | 140 | F: drivers/scsi/3w-* |
1da177e4 LT |
141 | |
142 | 53C700 AND 53C700-66 SCSI DRIVER | |
8b58be88 | 143 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
144 | L: linux-scsi@vger.kernel.org |
145 | S: Maintained | |
679655da | 146 | F: drivers/scsi/53c700* |
1da177e4 LT |
147 | |
148 | 6PACK NETWORK DRIVER FOR AX.25 | |
8b58be88 | 149 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
1da177e4 LT |
150 | L: linux-hams@vger.kernel.org |
151 | S: Maintained | |
679655da | 152 | F: drivers/net/hamradio/6pack.c |
1da177e4 | 153 | |
1da177e4 | 154 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
c8a75b34 | 155 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
8b58be88 | 156 | M: Francois Romieu <romieu@fr.zoreil.com> |
979b6c13 | 157 | L: netdev@vger.kernel.org |
1da177e4 | 158 | S: Maintained |
a8fe65b8 | 159 | F: drivers/net/ethernet/realtek/r8169.c |
1da177e4 LT |
160 | |
161 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER | |
879a5a00 | 162 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
1da177e4 LT |
163 | L: linux-serial@vger.kernel.org |
164 | W: http://serial.sourceforge.net | |
8ee16a1b | 165 | S: Maintained |
08deed1e | 166 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
df621252 | 167 | F: drivers/tty/serial/8250* |
679655da | 168 | F: include/linux/serial_8250.h |
1da177e4 LT |
169 | |
170 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] | |
979b6c13 | 171 | L: netdev@vger.kernel.org |
0cf445ce | 172 | S: Orphan / Obsolete |
644570b8 | 173 | F: drivers/net/ethernet/8390/ |
1da177e4 | 174 | |
67543e50 | 175 | 9P FILE SYSTEM |
8b58be88 JP |
176 | M: Eric Van Hensbergen <ericvh@gmail.com> |
177 | M: Ron Minnich <rminnich@sandia.gov> | |
178 | M: Latchesar Ionkov <lucho@ionkov.net> | |
ce00f85c | 179 | L: v9fs-developer@lists.sourceforge.net |
27a2a5ff | 180 | W: http://swik.net/v9fs |
8a6e2535 | 181 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
eeba444a | 182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
ce00f85c | 183 | S: Maintained |
679655da JP |
184 | F: Documentation/filesystems/9p.txt |
185 | F: fs/9p/ | |
67543e50 | 186 | |
91952bc0 AP |
187 | A8293 MEDIA DRIVER |
188 | M: Antti Palosaari <crope@iki.fi> | |
189 | L: linux-media@vger.kernel.org | |
190 | W: http://linuxtv.org/ | |
191 | W: http://palosaari.fi/linux/ | |
192 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
193 | T: git git://linuxtv.org/anttip/media_tree.git | |
194 | S: Maintained | |
195 | F: drivers/media/dvb-frontends/a8293* | |
196 | ||
e2d1d6c0 | 197 | AACRAID SCSI RAID DRIVER |
8b58be88 | 198 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
199 | L: linux-scsi@vger.kernel.org |
200 | W: http://www.adaptec.com/ | |
1da177e4 | 201 | S: Supported |
679655da JP |
202 | F: Documentation/scsi/aacraid.txt |
203 | F: drivers/scsi/aacraid/ | |
1da177e4 | 204 | |
249e3c85 | 205 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
93d0cc58 | 206 | M: Hans de Goede <hdegoede@redhat.com> |
f2b84bbc HG |
207 | L: lm-sensors@lm-sensors.org |
208 | S: Maintained | |
679655da | 209 | F: drivers/hwmon/abituguru.c |
f2b84bbc | 210 | |
249e3c85 | 211 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
8b58be88 | 212 | M: Alistair John Strachan <alistair@devzero.co.uk> |
249e3c85 AJS |
213 | L: lm-sensors@lm-sensors.org |
214 | S: Maintained | |
679655da | 215 | F: drivers/hwmon/abituguru3.c |
249e3c85 | 216 | |
1da177e4 | 217 | ACENIC DRIVER |
8b58be88 | 218 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
219 | L: linux-acenic@sunsite.dk |
220 | S: Maintained | |
531c4f89 | 221 | F: drivers/net/ethernet/alteon/acenic* |
1da177e4 | 222 | |
e86435eb | 223 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
8b58be88 | 224 | M: Peter Feuerer <peter@piie.net> |
d0944853 | 225 | L: platform-driver-x86@vger.kernel.org |
4fc26e36 JP |
226 | W: http://piie.net/?section=acerhdf |
227 | S: Maintained | |
228 | F: drivers/platform/x86/acerhdf.c | |
e86435eb | 229 | |
745a5d21 | 230 | ACER WMI LAPTOP EXTRAS |
182ae55c | 231 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 232 | L: platform-driver-x86@vger.kernel.org |
745a5d21 | 233 | S: Maintained |
679655da | 234 | F: drivers/platform/x86/acer-wmi.c |
745a5d21 | 235 | |
1da177e4 | 236 | ACPI |
8b58be88 | 237 | M: Len Brown <lenb@kernel.org> |
ea26d0cf | 238 | M: Rafael J. Wysocki <rjw@sisk.pl> |
6968e50c | 239 | L: linux-acpi@vger.kernel.org |
38e09d83 | 240 | W: http://www.lesswatts.org/projects/acpi/ |
8a6e2535 | 241 | Q: http://patchwork.kernel.org/project/linux-acpi/list/ |
aaef292a | 242 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux |
8b59a454 | 243 | S: Supported |
679655da JP |
244 | F: drivers/acpi/ |
245 | F: drivers/pnp/pnpacpi/ | |
246 | F: include/linux/acpi.h | |
43368e74 | 247 | F: include/acpi/ |
8b59a454 | 248 | |
8b59a454 | 249 | ACPI FAN DRIVER |
8b58be88 | 250 | M: Zhang Rui <rui.zhang@intel.com> |
8b59a454 | 251 | L: linux-acpi@vger.kernel.org |
0638bc8d | 252 | W: http://www.lesswatts.org/projects/acpi/ |
8b59a454 | 253 | S: Supported |
679655da | 254 | F: drivers/acpi/fan.c |
1da177e4 | 255 | |
8b59a454 | 256 | ACPI THERMAL 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/*thermal* |
998be20f | 262 | |
359acec8 | 263 | ACPI VIDEO 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/video.c |
998be20f | 269 | |
bff431e4 | 270 | ACPI WMI DRIVER |
d0944853 | 271 | L: platform-driver-x86@vger.kernel.org |
5b927259 | 272 | S: Orphan |
679655da | 273 | F: drivers/platform/x86/wmi.c |
bff431e4 | 274 | |
2f39d519 | 275 | AD1889 ALSA SOUND DRIVER |
8b58be88 | 276 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
795fb7e7 JD |
277 | W: http://wiki.parisc-linux.org/AD1889 |
278 | L: linux-parisc@vger.kernel.org | |
279 | S: Maintained | |
679655da | 280 | F: sound/pci/ad1889.* |
2f39d519 | 281 | |
527a1a83 MH |
282 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
283 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 284 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 285 | W: http://wiki.analog.com/AD5254 |
527a1a83 MH |
286 | S: Supported |
287 | F: drivers/misc/ad525x_dpot.c | |
288 | ||
289 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) | |
290 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 291 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 292 | W: http://wiki.analog.com/AD5398 |
527a1a83 MH |
293 | S: Supported |
294 | F: drivers/regulator/ad5398.c | |
295 | ||
296 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) | |
297 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 298 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 299 | W: http://wiki.analog.com/AD7142 |
527a1a83 MH |
300 | S: Supported |
301 | F: drivers/input/misc/ad714x.c | |
302 | ||
303 | AD7877 TOUCHSCREEN DRIVER | |
304 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 305 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 306 | W: http://wiki.analog.com/AD7877 |
527a1a83 MH |
307 | S: Supported |
308 | F: drivers/input/touchscreen/ad7877.c | |
309 | ||
310 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) | |
311 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 312 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 313 | W: http://wiki.analog.com/AD7879 |
527a1a83 MH |
314 | S: Supported |
315 | F: drivers/input/touchscreen/ad7879.c | |
316 | ||
1330b0dc JK |
317 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
318 | M: Jiri Kosina <jkosina@suse.cz> | |
319 | S: Maintained | |
320 | ||
1da177e4 | 321 | ADM1025 HARDWARE MONITOR DRIVER |
8b58be88 | 322 | M: Jean Delvare <khali@linux-fr.org> |
cc0b07ed | 323 | L: lm-sensors@lm-sensors.org |
1da177e4 | 324 | S: Maintained |
679655da JP |
325 | F: Documentation/hwmon/adm1025 |
326 | F: drivers/hwmon/adm1025.c | |
1da177e4 | 327 | |
cae2caae | 328 | ADM1029 HARDWARE MONITOR DRIVER |
8b58be88 | 329 | M: Corentin Labbe <corentin.labbe@geomatys.fr> |
cae2caae CL |
330 | L: lm-sensors@lm-sensors.org |
331 | S: Maintained | |
679655da | 332 | F: drivers/hwmon/adm1029.c |
cae2caae | 333 | |
cc0b88cf | 334 | ADM8211 WIRELESS DRIVER |
cc0b88cf | 335 | L: linux-wireless@vger.kernel.org |
491b26b4 | 336 | W: http://wireless.kernel.org/ |
e71bcbd0 | 337 | S: Orphan |
679655da | 338 | F: drivers/net/wireless/adm8211.* |
cc0b88cf | 339 | |
e8e31622 SA |
340 | ADP1653 FLASH CONTROLLER DRIVER |
341 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
342 | L: linux-media@vger.kernel.org | |
343 | S: Maintained | |
344 | F: drivers/media/i2c/adp1653.c | |
345 | F: include/media/adp1653.h | |
346 | ||
527a1a83 MH |
347 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
348 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 349 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 350 | W: http://wiki.analog.com/ADP5520 |
527a1a83 MH |
351 | S: Supported |
352 | F: drivers/mfd/adp5520.c | |
353 | F: drivers/video/backlight/adp5520_bl.c | |
45b4e0d5 | 354 | F: drivers/leds/leds-adp5520.c |
77278d50 | 355 | F: drivers/gpio/gpio-adp5520.c |
527a1a83 MH |
356 | F: drivers/input/keyboard/adp5520-keys.c |
357 | ||
358 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) | |
359 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 360 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 361 | W: http://wiki.analog.com/ADP5588 |
527a1a83 MH |
362 | S: Supported |
363 | F: drivers/input/keyboard/adp5588-keys.c | |
77278d50 | 364 | F: drivers/gpio/gpio-adp5588.c |
527a1a83 MH |
365 | |
366 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) | |
367 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 368 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 369 | W: http://wiki.analog.com/ADP8860 |
527a1a83 MH |
370 | S: Supported |
371 | F: drivers/video/backlight/adp8860_bl.c | |
372 | ||
8c22a8f5 DE |
373 | ADS1015 HARDWARE MONITOR DRIVER |
374 | M: Dirk Eibach <eibach@gdsys.de> | |
375 | L: lm-sensors@lm-sensors.org | |
376 | S: Maintained | |
377 | F: Documentation/hwmon/ads1015 | |
378 | F: drivers/hwmon/ads1015.c | |
379 | F: include/linux/i2c/ads1015.h | |
380 | ||
1da177e4 | 381 | ADT746X FAN DRIVER |
8b58be88 | 382 | M: Colin Leroy <colin@colino.net> |
1da177e4 | 383 | S: Maintained |
679655da | 384 | F: drivers/macintosh/therm_adt746x.c |
1da177e4 | 385 | |
b058b859 JD |
386 | ADT7475 HARDWARE MONITOR DRIVER |
387 | M: Jean Delvare <khali@linux-fr.org> | |
388 | L: lm-sensors@lm-sensors.org | |
389 | S: Maintained | |
390 | F: Documentation/hwmon/adt7475 | |
391 | F: drivers/hwmon/adt7475.c | |
392 | ||
527a1a83 MH |
393 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
394 | M: Michael Hennerich <michael.hennerich@analog.com> | |
f8bd42b8 | 395 | L: device-drivers-devel@blackfin.uclinux.org |
a3f531ac | 396 | W: http://wiki.analog.com/ADXL345 |
527a1a83 MH |
397 | S: Supported |
398 | F: drivers/input/misc/adxl34x.c | |
399 | ||
8c6af9e1 | 400 | ADVANSYS SCSI DRIVER |
8b58be88 | 401 | M: Matthew Wilcox <matthew@wil.cx> |
8c6af9e1 MW |
402 | L: linux-scsi@vger.kernel.org |
403 | S: Maintained | |
679655da JP |
404 | F: Documentation/scsi/advansys.txt |
405 | F: drivers/scsi/advansys.c | |
8c6af9e1 | 406 | |
1da177e4 | 407 | AEDSP16 DRIVER |
8b58be88 | 408 | M: Riccardo Facchetti <fizban@tin.it> |
1da177e4 | 409 | S: Maintained |
679655da | 410 | F: sound/oss/aedsp16.c |
1da177e4 | 411 | |
91952bc0 AP |
412 | AF9013 MEDIA DRIVER |
413 | M: Antti Palosaari <crope@iki.fi> | |
414 | L: linux-media@vger.kernel.org | |
415 | W: http://linuxtv.org/ | |
416 | W: http://palosaari.fi/linux/ | |
417 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
418 | T: git git://linuxtv.org/anttip/media_tree.git | |
419 | S: Maintained | |
420 | F: drivers/media/dvb-frontends/af9013* | |
421 | ||
422 | AF9033 MEDIA DRIVER | |
423 | M: Antti Palosaari <crope@iki.fi> | |
424 | L: linux-media@vger.kernel.org | |
425 | W: http://linuxtv.org/ | |
426 | W: http://palosaari.fi/linux/ | |
427 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
428 | T: git git://linuxtv.org/anttip/media_tree.git | |
429 | S: Maintained | |
430 | F: drivers/media/dvb-frontends/af9033* | |
431 | ||
1da177e4 | 432 | AFFS FILE SYSTEM |
6cf515e1 GU |
433 | L: linux-fsdevel@vger.kernel.org |
434 | S: Orphan | |
679655da JP |
435 | F: Documentation/filesystems/affs.txt |
436 | F: fs/affs/ | |
1da177e4 | 437 | |
e2d1d6c0 | 438 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
8b58be88 | 439 | M: David Howells <dhowells@redhat.com> |
e2d1d6c0 RD |
440 | L: linux-afs@lists.infradead.org |
441 | S: Supported | |
679655da JP |
442 | F: fs/afs/ |
443 | F: include/net/af_rxrpc.h | |
444 | F: net/rxrpc/af_rxrpc.c | |
e2d1d6c0 | 445 | |
1da177e4 | 446 | AGPGART DRIVER |
8b58be88 | 447 | M: David Airlie <airlied@linux.ie> |
54e5881d | 448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 449 | S: Maintained |
679655da JP |
450 | F: drivers/char/agp/ |
451 | F: include/linux/agp* | |
c117ab84 | 452 | F: include/uapi/linux/agp* |
1da177e4 LT |
453 | |
454 | AHA152X SCSI DRIVER | |
8b58be88 | 455 | M: "Juergen E. Fischer" <fischer@norbit.de> |
1da177e4 LT |
456 | L: linux-scsi@vger.kernel.org |
457 | S: Maintained | |
679655da JP |
458 | F: drivers/scsi/aha152x* |
459 | F: drivers/scsi/pcmcia/aha152x* | |
1da177e4 | 460 | |
64624d4f | 461 | AIC7XXX / AIC79XX SCSI DRIVER |
8b58be88 | 462 | M: Hannes Reinecke <hare@suse.de> |
64624d4f | 463 | L: linux-scsi@vger.kernel.org |
1da177e4 | 464 | S: Maintained |
679655da JP |
465 | F: drivers/scsi/aic7xxx/ |
466 | F: drivers/scsi/aic7xxx_old/ | |
1da177e4 | 467 | |
e2d1d6c0 | 468 | AIO |
8b58be88 | 469 | M: Benjamin LaHaise <bcrl@kvack.org> |
e2d1d6c0 RD |
470 | L: linux-aio@kvack.org |
471 | S: Supported | |
679655da JP |
472 | F: fs/aio.c |
473 | F: include/linux/*aio*.h | |
e2d1d6c0 | 474 | |
1da177e4 | 475 | ALCATEL SPEEDTOUCH USB DRIVER |
8b58be88 | 476 | M: Duncan Sands <duncan.sands@free.fr> |
6372594a | 477 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
478 | W: http://www.linux-usb.org/SpeedTouch/ |
479 | S: Maintained | |
679655da JP |
480 | F: drivers/usb/atm/speedtch.c |
481 | F: drivers/usb/atm/usbatm.c | |
1da177e4 | 482 | |
272f133a | 483 | ALCHEMY AU1XX0 MMC DRIVER |
8b58be88 | 484 | M: Manuel Lauss <manuel.lauss@gmail.com> |
08fcb720 | 485 | S: Maintained |
679655da | 486 | F: drivers/mmc/host/au1xmmc.c |
272f133a | 487 | |
4a4e5787 | 488 | ALI1563 I2C DRIVER |
8b58be88 | 489 | M: Rudolf Marek <r.marek@assembler.cz> |
846557d3 | 490 | L: linux-i2c@vger.kernel.org |
4a4e5787 | 491 | S: Maintained |
679655da JP |
492 | F: Documentation/i2c/busses/i2c-ali1563 |
493 | F: drivers/i2c/busses/i2c-ali1563.c | |
4a4e5787 | 494 | |
1da177e4 | 495 | ALPHA PORT |
8b58be88 | 496 | M: Richard Henderson <rth@twiddle.net> |
8b58be88 | 497 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
abd4d609 | 498 | M: Matt Turner <mattst88@gmail.com> |
c89f4f9a | 499 | S: Odd Fixes |
a9406699 | 500 | L: linux-alpha@vger.kernel.org |
679655da | 501 | F: arch/alpha/ |
1da177e4 | 502 | |
adf9251f TK |
503 | ALTERA UART/JTAG UART SERIAL DRIVERS |
504 | M: Tobias Klauser <tklauser@distanz.ch> | |
505 | L: linux-serial@vger.kernel.org | |
506 | L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers) | |
507 | S: Maintained | |
508 | F: drivers/tty/serial/altera_uart.c | |
509 | F: drivers/tty/serial/altera_jtaguart.c | |
510 | F: include/linux/altera_uart.h | |
511 | F: include/linux/altera_jtaguart.h | |
512 | ||
512d1027 | 513 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
d034fbf0 | 514 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
512d1027 AH |
515 | L: lm-sensors@lm-sensors.org |
516 | S: Maintained | |
517 | F: Documentation/hwmon/fam15h_power | |
518 | F: drivers/hwmon/fam15h_power.c | |
519 | ||
167a675a | 520 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
8b58be88 | 521 | M: Thomas Dahlmann <dahlmann.thomas@arcor.de> |
67d76710 | 522 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
167a675a | 523 | S: Supported |
679655da | 524 | F: drivers/usb/gadget/amd5536udc.* |
167a675a | 525 | |
f90b8116 | 526 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
69006096 | 527 | P: Andres Salomon <dilinger@queued.net> |
67d76710 | 528 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
f90b8116 JC |
529 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
530 | S: Supported | |
679655da JP |
531 | F: drivers/char/hw_random/geode-rng.c |
532 | F: drivers/crypto/geode* | |
533 | F: drivers/video/geode/ | |
534 | F: arch/x86/include/asm/geode.h | |
f90b8116 | 535 | |
919ee7dd | 536 | AMD IOMMU (AMD-VI) |
e4110568 | 537 | M: Joerg Roedel <joro@8bytes.org> |
919ee7dd | 538 | L: iommu@lists.linux-foundation.org |
525b233c | 539 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
e4110568 | 540 | S: Maintained |
b2c16391 JP |
541 | F: drivers/iommu/amd_iommu*.[ch] |
542 | F: include/linux/amd-iommu.h | |
919ee7dd | 543 | |
e7f5b309 | 544 | AMD MICROCODE UPDATE SUPPORT |
943482d0 | 545 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
7d2c86b5 | 546 | L: amd64-microcode@amd64.org |
943482d0 | 547 | S: Maintained |
679655da | 548 | F: arch/x86/kernel/microcode_amd.c |
e7f5b309 | 549 | |
284f42b6 | 550 | AMS (Apple Motion Sensor) DRIVER |
8b58be88 | 551 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
284f42b6 | 552 | S: Supported |
bd5f47ec | 553 | F: drivers/macintosh/ams/ |
284f42b6 | 554 | |
f94b533d | 555 | AMSO1100 RNIC DRIVER |
8b58be88 JP |
556 | M: Tom Tucker <tom@opengridcomputing.com> |
557 | M: Steve Wise <swise@opengridcomputing.com> | |
e6cc0fd1 | 558 | L: linux-rdma@vger.kernel.org |
f94b533d | 559 | S: Maintained |
679655da | 560 | F: drivers/infiniband/hw/amso1100/ |
f94b533d | 561 | |
527a1a83 | 562 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
535bd16f | 563 | M: Lars-Peter Clausen <lars@metafoo.de> |
f8bd42b8 | 564 | L: device-drivers-devel@blackfin.uclinux.org |
4bdef3bd | 565 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a3f531ac | 566 | W: http://wiki.analog.com/ |
4bdef3bd | 567 | S: Supported |
39c9d199 | 568 | F: sound/soc/codecs/adau* |
cc52688a | 569 | F: sound/soc/codecs/adav* |
4bdef3bd | 570 | F: sound/soc/codecs/ad1* |
4bdef3bd | 571 | F: sound/soc/codecs/ssm* |
40216ce7 | 572 | F: sound/soc/codecs/sigmadsp.* |
4bdef3bd | 573 | |
527a1a83 MH |
574 | ANALOG DEVICES INC ASOC DRIVERS |
575 | L: uclinux-dist-devel@blackfin.uclinux.org | |
576 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
577 | W: http://blackfin.uclinux.org/ | |
578 | S: Supported | |
579 | F: sound/soc/blackfin/* | |
580 | ||
42269063 | 581 | AOA (Apple Onboard Audio) ALSA DRIVER |
8b58be88 | 582 | M: Johannes Berg <johannes@sipsolutions.net> |
a4724ed6 | 583 | L: linuxppc-dev@lists.ozlabs.org |
93711660 | 584 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
42269063 | 585 | S: Maintained |
679655da | 586 | F: sound/aoa/ |
42269063 | 587 | |
1da177e4 | 588 | APM DRIVER |
81024fc4 JK |
589 | M: Jiri Kosina <jkosina@suse.cz> |
590 | S: Odd fixes | |
679655da JP |
591 | F: arch/x86/kernel/apm_32.c |
592 | F: include/linux/apm_bios.h | |
c117ab84 | 593 | F: include/uapi/linux/apm_bios.h |
81024fc4 | 594 | F: drivers/char/apm-emulation.c |
1da177e4 | 595 | |
bd7aa4b2 | 596 | APPLE BCM5974 MULTITOUCH DRIVER |
8b58be88 | 597 | M: Henrik Rydberg <rydberg@euromail.se> |
bd7aa4b2 HR |
598 | L: linux-input@vger.kernel.org |
599 | S: Maintained | |
679655da | 600 | F: drivers/input/mouse/bcm5974.c |
bd7aa4b2 | 601 | |
6f2fad74 | 602 | APPLE SMC DRIVER |
d618540f HR |
603 | M: Henrik Rydberg <rydberg@euromail.se> |
604 | L: lm-sensors@lm-sensors.org | |
6f2fad74 | 605 | S: Maintained |
679655da | 606 | F: drivers/hwmon/applesmc.c |
6f2fad74 | 607 | |
1da177e4 | 608 | APPLETALK NETWORK LAYER |
8b58be88 | 609 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
1da177e4 | 610 | S: Maintained |
679655da JP |
611 | F: drivers/net/appletalk/ |
612 | F: net/appletalk/ | |
1da177e4 | 613 | |
a480167b | 614 | ARASAN COMPACT FLASH PATA CONTROLLER |
2d8a3b3d | 615 | M: Viresh Kumar <viresh.linux@gmail.com> |
a480167b VK |
616 | L: linux-ide@vger.kernel.org |
617 | S: Maintained | |
618 | F: include/linux/pata_arasan_cf_data.h | |
619 | F: drivers/ata/pata_arasan_cf.c | |
620 | ||
1154ea7d | 621 | ARC FRAMEBUFFER DRIVER |
8b58be88 | 622 | M: Jaya Kumar <jayalk@intworks.biz> |
1154ea7d | 623 | S: Maintained |
679655da JP |
624 | F: drivers/video/arcfb.c |
625 | F: drivers/video/fb_defio.c | |
1154ea7d | 626 | |
1da177e4 | 627 | ARM MFM AND FLOPPY DRIVERS |
8b58be88 | 628 | M: Ian Molton <spyro@f2s.com> |
1da177e4 | 629 | S: Maintained |
679655da JP |
630 | F: arch/arm/lib/floppydma.S |
631 | F: arch/arm/include/asm/floppy.h | |
1da177e4 | 632 | |
6f96521f WD |
633 | ARM PMU PROFILING AND DEBUGGING |
634 | M: Will Deacon <will.deacon@arm.com> | |
635 | S: Maintained | |
636 | F: arch/arm/kernel/perf_event* | |
637 | F: arch/arm/oprofile/common.c | |
6f96521f WD |
638 | F: arch/arm/include/asm/pmu.h |
639 | F: arch/arm/kernel/hw_breakpoint.c | |
640 | F: arch/arm/include/asm/hw_breakpoint.h | |
641 | ||
d4275354 | 642 | ARM PORT |
8b58be88 | 643 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 644 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
645 | W: http://www.arm.linux.org.uk/ |
646 | S: Maintained | |
647 | F: arch/arm/ | |
648 | ||
d323c243 SB |
649 | ARM SUB-ARCHITECTURES |
650 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
56ca9d98 | 651 | S: Maintained |
d323c243 SB |
652 | F: arch/arm/mach-*/ |
653 | F: arch/arm/plat-*/ | |
654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git | |
655 | ||
cefbf4ea RK |
656 | ARM PRIMECELL AACI PL041 DRIVER |
657 | M: Russell King <linux@arm.linux.org.uk> | |
658 | S: Maintained | |
659 | F: sound/arm/aaci.* | |
660 | ||
661 | ARM PRIMECELL CLCD PL110 DRIVER | |
662 | M: Russell King <linux@arm.linux.org.uk> | |
663 | S: Maintained | |
664 | F: drivers/video/amba-clcd.* | |
665 | ||
666 | ARM PRIMECELL KMI PL050 DRIVER | |
667 | M: Russell King <linux@arm.linux.org.uk> | |
668 | S: Maintained | |
669 | F: drivers/input/serio/ambakmi.* | |
670 | F: include/linux/amba/kmi.h | |
671 | ||
2761f5c2 | 672 | ARM PRIMECELL MMCI PL180/1 DRIVER |
6d79947a | 673 | S: Orphan |
679655da | 674 | F: drivers/mmc/host/mmci.* |
2761f5c2 | 675 | |
cefbf4ea RK |
676 | ARM PRIMECELL BUS SUPPORT |
677 | M: Russell King <linux@arm.linux.org.uk> | |
678 | S: Maintained | |
679 | F: drivers/amba/ | |
680 | F: include/linux/amba/bus.h | |
681 | ||
2b7a52a4 | 682 | ARM/ADS SPHERE MACHINE SUPPORT |
8b58be88 | 683 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 684 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
685 | S: Maintained |
686 | ||
9c784f95 | 687 | ARM/AFEB9260 MACHINE SUPPORT |
8b58be88 | 688 | M: Sergey Lapin <slapin@ossfans.org> |
efc03ecb | 689 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
9c784f95 SL |
690 | S: Maintained |
691 | ||
2b7a52a4 | 692 | ARM/AJECO 1ARM MACHINE SUPPORT |
8b58be88 | 693 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 694 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
695 | S: Maintained |
696 | ||
1b106699 MR |
697 | ARM/Allwinner A1X SoC support |
698 | M: Maxime Ripard <maxime.ripard@free-electrons.com> | |
699 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
700 | S: Maintained | |
701 | F: arch/arm/mach-sunxi/ | |
702 | ||
c1fc8675 | 703 | ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES |
8b58be88 | 704 | M: Andrew Victor <linux@maxim.org.za> |
c1fc8675 NF |
705 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
706 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
efc03ecb | 707 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
795fb7e7 | 708 | W: http://maxim.org.za/at91_26.html |
c1fc8675 NF |
709 | W: http://www.linux4sam.org |
710 | S: Supported | |
711 | F: arch/arm/mach-at91/ | |
d4a89c7d | 712 | |
986cf2e9 RH |
713 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
714 | M: Rob Herring <rob.herring@calxeda.com> | |
715 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
716 | S: Maintained | |
717 | F: arch/arm/mach-highbank/ | |
718 | ||
d94f944e AV |
719 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
720 | M: Anton Vorontsov <avorontsov@mvista.com> | |
721 | S: Maintained | |
722 | F: arch/arm/mach-cns3xxx/ | |
723 | T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git | |
724 | ||
386ab516 AS |
725 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
726 | M: Alexander Shiyan <shc_work@mail.ru> | |
727 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
728 | S: Odd Fixes | |
729 | F: arch/arm/mach-clps711x/ | |
730 | ||
2b7a52a4 | 731 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
ddd559b1 | 732 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
1c5454ee | 733 | M: Ryan Mallon <rmallon@gmail.com> |
efc03ecb | 734 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 | 735 | S: Maintained |
d19d3667 HS |
736 | F: arch/arm/mach-ep93xx/ |
737 | F: arch/arm/mach-ep93xx/include/mach/ | |
2b7a52a4 LB |
738 | |
739 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT | |
8b58be88 | 740 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 741 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
742 | S: Maintained |
743 | ||
d4275354 | 744 | ARM/CLKDEV SUPPORT |
8b58be88 | 745 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 746 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
37417046 | 747 | S: Maintained |
d4275354 | 748 | F: arch/arm/include/asm/clkdev.h |
4fa2651d | 749 | F: drivers/clk/clkdev.c |
d4275354 | 750 | |
d48134e7 | 751 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
8b58be88 | 752 | M: Mike Rapoport <mike@compulab.co.il> |
efc03ecb | 753 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
a9da4f7e RK |
754 | S: Maintained |
755 | ||
94150095 HF |
756 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
757 | M: Hubert Feurstein <hubert.feurstein@contec.at> | |
758 | S: Maintained | |
759 | F: arch/arm/mach-ep93xx/micro9.c | |
760 | ||
1da177e4 | 761 | ARM/CORGI MACHINE SUPPORT |
8b58be88 | 762 | M: Richard Purdie <rpurdie@rpsys.net> |
1da177e4 LT |
763 | S: Maintained |
764 | ||
881a95f9 | 765 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
162500b3 | 766 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 767 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 HUK |
768 | T: git git://git.berlios.de/gemini-board |
769 | S: Maintained | |
f49afbb5 | 770 | F: arch/arm/mach-gemini/ |
881a95f9 | 771 | |
a990cbd8 BS |
772 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
773 | M: Barry Song <baohua.song@csr.com> | |
774 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
775 | S: Maintained | |
776 | F: arch/arm/mach-prima2/ | |
47ac3e44 BS |
777 | F: drivers/dma/sirf-dma.c |
778 | F: drivers/i2c/busses/i2c-sirf.c | |
779 | F: drivers/pinctrl/pinctrl-sirf.c | |
780 | F: drivers/spi/spi-sirf.c | |
a990cbd8 | 781 | |
d4275354 | 782 | ARM/EBSA110 MACHINE SUPPORT |
8b58be88 | 783 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 784 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
785 | W: http://www.arm.linux.org.uk/ |
786 | S: Maintained | |
787 | F: arch/arm/mach-ebsa110/ | |
b955f6ca | 788 | F: drivers/net/ethernet/amd/am79c961a.* |
d4275354 | 789 | |
a9da4f7e | 790 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
8b58be88 JP |
791 | M: Daniel Ribeiro <drwyrm@gmail.com> |
792 | M: Stefan Schmidt <stefan@openezx.org> | |
793 | M: Harald Welte <laforge@openezx.org> | |
d66f1886 | 794 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
a9da4f7e RK |
795 | W: http://www.openezx.org/ |
796 | S: Maintained | |
cafc2265 SS |
797 | T: topgit git://git.openezx.org/openezx.git |
798 | F: arch/arm/mach-pxa/ezx.c | |
a9da4f7e | 799 | |
6a915af9 | 800 | ARM/FARADAY FA526 PORT |
162500b3 | 801 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
efc03ecb | 802 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
162500b3 | 803 | S: Maintained |
1fa7e547 | 804 | T: git git://git.berlios.de/gemini-board |
f49afbb5 | 805 | F: arch/arm/mm/*-fa* |
6a915af9 | 806 | |
d4275354 | 807 | ARM/FOOTBRIDGE ARCHITECTURE |
8b58be88 | 808 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 809 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
810 | W: http://www.arm.linux.org.uk/ |
811 | S: Maintained | |
812 | F: arch/arm/include/asm/hardware/dec21285.h | |
813 | F: arch/arm/mach-footbridge/ | |
814 | ||
86183a5f | 815 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
8b58be88 | 816 | M: Sascha Hauer <kernel@pengutronix.de> |
efc03ecb | 817 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
86183a5f | 818 | S: Maintained |
1fa7e547 | 819 | T: git git://git.pengutronix.de/git/imx/linux-2.6.git |
adf79292 | 820 | F: arch/arm/mach-imx/ |
e5dafa22 | 821 | F: arch/arm/configs/imx*_defconfig |
86183a5f | 822 | |
8bcb9765 SG |
823 | ARM/FREESCALE IMX6 |
824 | M: Shawn Guo <shawn.guo@linaro.org> | |
825 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
826 | S: Maintained | |
827 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
828 | F: arch/arm/mach-imx/*imx6* | |
829 | ||
a9866a09 SG |
830 | ARM/FREESCALE MXS ARM ARCHITECTURE |
831 | M: Shawn Guo <shawn.guo@linaro.org> | |
832 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
833 | S: Maintained | |
834 | T: git git://git.linaro.org/people/shawnguo/linux-2.6.git | |
835 | F: arch/arm/mach-mxs/ | |
836 | ||
2b7a52a4 | 837 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
8b58be88 | 838 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 839 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
840 | S: Maintained |
841 | ||
90b8fc34 | 842 | ARM/GUMSTIX MACHINE SUPPORT |
8b58be88 | 843 | M: Steve Sakoman <sakoman@gmail.com> |
efc03ecb | 844 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
90b8fc34 JK |
845 | S: Maintained |
846 | ||
ef47d5f0 | 847 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
8b58be88 | 848 | M: Philipp Zabel <philipp.zabel@gmail.com> |
12a93f32 PZ |
849 | M: Paul Parsons <lost.distance@yahoo.com> |
850 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
ef47d5f0 PZ |
851 | S: Maintained |
852 | F: arch/arm/mach-pxa/hx4700.c | |
853 | F: arch/arm/mach-pxa/include/mach/hx4700.h | |
12a93f32 | 854 | F: sound/soc/pxa/hx4700.c |
ef47d5f0 | 855 | |
21f37bc3 | 856 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
8b58be88 | 857 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
795fb7e7 JD |
858 | W: www.jlime.com |
859 | S: Maintained | |
084bad91 KE |
860 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
861 | F: arch/arm/mach-sa1100/jornada720.c | |
862 | F: arch/arm/mach-sa1100/include/mach/jornada720.h | |
21f37bc3 | 863 | |
5e767ab9 JMC |
864 | ARM/IGEP MACHINE SUPPORT |
865 | M: Enric Balletbo i Serra <eballetbo@gmail.com> | |
866 | M: Javier Martinez Canillas <javier@dowhile0.org> | |
867 | L: linux-omap@vger.kernel.org | |
868 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
869 | S: Maintained | |
870 | F: arch/arm/mach-omap2/board-igep0020.c | |
871 | ||
403d2971 MV |
872 | ARM/INCOME PXA270 SUPPORT |
873 | M: Marek Vasut <marek.vasut@gmail.com> | |
874 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
875 | S: Maintained | |
ec154082 | 876 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
403d2971 | 877 | |
2b7a52a4 | 878 | ARM/INTEL IOP32X ARM ARCHITECTURE |
8b58be88 | 879 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1dd8372d | 880 | M: Dan Williams <djbw@fb.com> |
efc03ecb | 881 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 882 | S: Maintained |
e2bdb176 DW |
883 | |
884 | ARM/INTEL IOP33X ARM ARCHITECTURE | |
1dd8372d | 885 | M: Dan Williams <djbw@fb.com> |
efc03ecb | 886 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 887 | S: Maintained |
2b7a52a4 LB |
888 | |
889 | ARM/INTEL IOP13XX ARM ARCHITECTURE | |
8b58be88 | 890 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1dd8372d | 891 | M: Dan Williams <djbw@fb.com> |
efc03ecb | 892 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 893 | S: Maintained |
2b7a52a4 LB |
894 | |
895 | ARM/INTEL IQ81342EX MACHINE SUPPORT | |
8b58be88 | 896 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1dd8372d | 897 | M: Dan Williams <djbw@fb.com> |
efc03ecb | 898 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 899 | S: Maintained |
2b7a52a4 | 900 | |
2b7a52a4 | 901 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
8b58be88 | 902 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 903 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
904 | S: Maintained |
905 | ||
dfdd8cc9 KH |
906 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
907 | M: Imre Kaloz <kaloz@openwrt.org> | |
908 | M: Krzysztof Halasa <khc@pm.waw.pl> | |
baea7b94 | 909 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
dfdd8cc9 KH |
910 | S: Maintained |
911 | F: arch/arm/mach-ixp4xx/ | |
912 | ||
838553c5 | 913 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
7f49a7f7 JC |
914 | M: Jonathan Cameron <jic23@cam.ac.uk> |
915 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
916 | S: Maintained | |
917 | F: arch/arm/mach-pxa/stargate2.c | |
918 | F: drivers/pcmcia/pxa2xx_stargate2.c | |
919 | ||
2b7a52a4 | 920 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
8b58be88 | 921 | M: Lennert Buytenhek <kernel@wantstofly.org> |
1dd8372d | 922 | M: Dan Williams <djbw@fb.com> |
efc03ecb | 923 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
f00f510a | 924 | S: Maintained |
2b7a52a4 LB |
925 | |
926 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT | |
8b58be88 | 927 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 928 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
929 | S: Maintained |
930 | ||
931 | ARM/LOGICPD PXA270 MACHINE SUPPORT | |
8b58be88 | 932 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 933 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
934 | S: Maintained |
935 | ||
3b886171 | 936 | ARM/MAGICIAN MACHINE SUPPORT |
8b58be88 | 937 | M: Philipp Zabel <philipp.zabel@gmail.com> |
3b886171 PZ |
938 | S: Maintained |
939 | ||
75f41273 TP |
940 | ARM/Marvell Armada 370 and Armada XP SOC support |
941 | M: Jason Cooper <jason@lakedaemon.net> | |
942 | M: Andrew Lunn <andrew@lunn.ch> | |
943 | M: Gregory Clement <gregory.clement@free-electrons.com> | |
944 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
945 | S: Maintained | |
946 | F: arch/arm/mach-mvebu/ | |
947 | ||
4f1312b0 NP |
948 | ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support |
949 | M: Jason Cooper <jason@lakedaemon.net> | |
950 | M: Andrew Lunn <andrew@lunn.ch> | |
efc03ecb | 951 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4f1312b0 NP |
952 | S: Maintained |
953 | F: arch/arm/mach-dove/ | |
54a246ff NP |
954 | F: arch/arm/mach-kirkwood/ |
955 | F: arch/arm/mach-mv78xx0/ | |
956 | F: arch/arm/mach-orion5x/ | |
957 | F: arch/arm/plat-orion/ | |
3b886171 | 958 | |
d69ac131 AC |
959 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
960 | M: Alexander Clouter <alex@digriz.org.uk> | |
961 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
962 | W: http://www.digriz.org.uk/ts78xx/kernel | |
963 | S: Maintained | |
964 | F: arch/arm/mach-orion5x/ts78xx-* | |
965 | ||
adcb079f AB |
966 | ARM/MICREL KS8695 ARCHITECTURE |
967 | M: Greg Ungerer <gerg@uclinux.org> | |
968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
969 | F: arch/arm/mach-ks8695 | |
970 | S: Odd Fixes | |
971 | ||
d78ff0a5 | 972 | ARM/MIOA701 MACHINE SUPPORT |
8b58be88 | 973 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
efc03ecb | 974 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d78ff0a5 RJ |
975 | F: arch/arm/mach-pxa/mioa701.c |
976 | S: Maintained | |
977 | ||
9624dfe6 | 978 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
8b58be88 | 979 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
9624dfe6 KE |
980 | S: Maintained |
981 | ||
e0ee9851 | 982 | ARM/NOMADIK ARCHITECTURE |
28b8e8d4 | 983 | M: Alessandro Rubini <rubini@unipv.it> |
e4651a9f | 984 | M: Linus Walleij <linus.walleij@linaro.org> |
28b8e8d4 JP |
985 | M: STEricsson <STEricsson_nomadik_linux@list.st.com> |
986 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
987 | S: Maintained | |
988 | F: arch/arm/mach-nomadik/ | |
989 | F: arch/arm/plat-nomadik/ | |
87572880 | 990 | F: drivers/i2c/busses/i2c-nomadik.c |
e4651a9f | 991 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
e0ee9851 | 992 | |
9d76295a | 993 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
8b58be88 | 994 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
9d76295a AG |
995 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
996 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner | |
997 | S: Supported | |
998 | ||
0c19d21e DW |
999 | ARM/QUALCOMM MSM MACHINE SUPPORT |
1000 | M: David Brown <davidb@codeaurora.org> | |
b4c9bfab | 1001 | M: Daniel Walker <dwalker@fifo99.com> |
0c19d21e | 1002 | M: Bryan Huntsman <bryanh@codeaurora.org> |
c68af41d | 1003 | L: linux-arm-msm@vger.kernel.org |
0c19d21e DW |
1004 | F: arch/arm/mach-msm/ |
1005 | F: drivers/video/msm/ | |
1006 | F: drivers/mmc/host/msm_sdcc.c | |
1007 | F: drivers/mmc/host/msm_sdcc.h | |
df621252 GKH |
1008 | F: drivers/tty/serial/msm_serial.h |
1009 | F: drivers/tty/serial/msm_serial.c | |
ea91db52 AD |
1010 | F: drivers/*/pm8???-* |
1011 | F: include/linux/mfd/pm8xxx/ | |
8cd5c866 | 1012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git |
0c19d21e DW |
1013 | S: Maintained |
1014 | ||
8459c159 | 1015 | ARM/TOSA MACHINE SUPPORT |
8b58be88 JP |
1016 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
1017 | M: Dirk Opfer <dirk@opfer-online.de> | |
8459c159 DO |
1018 | S: Maintained |
1019 | ||
5d783a2d | 1020 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
933d35f0 | 1021 | M: Marek Vasut <marek.vasut@gmail.com> |
75280787 | 1022 | L: linux-arm-kernel@lists.infradead.org |
b5e4ad57 MV |
1023 | W: http://hackndev.com |
1024 | S: Maintained | |
933d35f0 JP |
1025 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
1026 | F: arch/arm/mach-pxa/palmtx.c | |
1027 | F: arch/arm/mach-pxa/include/mach/palmt5.h | |
1028 | F: arch/arm/mach-pxa/palmt5.c | |
1029 | F: arch/arm/mach-pxa/include/mach/palmld.h | |
1030 | F: arch/arm/mach-pxa/palmld.c | |
1031 | F: arch/arm/mach-pxa/include/mach/palmte2.h | |
1032 | F: arch/arm/mach-pxa/palmte2.c | |
1033 | F: arch/arm/mach-pxa/include/mach/palmtc.h | |
1034 | F: arch/arm/mach-pxa/palmtc.c | |
b5e4ad57 | 1035 | |
b57fe924 | 1036 | ARM/PALM TREO SUPPORT |
8b58be88 | 1037 | M: Tomas Cech <sleep_walker@suse.cz> |
75280787 | 1038 | L: linux-arm-kernel@lists.infradead.org |
90af5811 TSC |
1039 | W: http://hackndev.com |
1040 | S: Maintained | |
b57fe924 JP |
1041 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
1042 | F: arch/arm/mach-pxa/palmtreo.c | |
90af5811 | 1043 | |
c49e1e63 | 1044 | ARM/PALMZ72 SUPPORT |
8b58be88 | 1045 | M: Sergey Lapin <slapin@ossfans.org> |
75280787 | 1046 | L: linux-arm-kernel@lists.infradead.org |
7d2c86b5 JP |
1047 | W: http://hackndev.com |
1048 | S: Maintained | |
933d35f0 JP |
1049 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
1050 | F: arch/arm/mach-pxa/palmz72.c | |
c49e1e63 | 1051 | |
1da177e4 | 1052 | ARM/PLEB SUPPORT |
8b58be88 | 1053 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
1da177e4 LT |
1054 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
1055 | S: Maintained | |
1056 | ||
1057 | ARM/PT DIGITAL BOARD PORT | |
8b58be88 | 1058 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
efc03ecb | 1059 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
1060 | W: http://www.arm.linux.org.uk/ |
1061 | S: Maintained | |
1062 | ||
2b7a52a4 | 1063 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
8b58be88 | 1064 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1065 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1066 | S: Maintained |
1067 | ||
d4275354 | 1068 | ARM/RISCPC ARCHITECTURE |
8b58be88 | 1069 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1070 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1071 | W: http://www.arm.linux.org.uk/ |
1072 | S: Maintained | |
d4275354 RK |
1073 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
1074 | F: arch/arm/include/asm/hardware/ioc.h | |
1075 | F: arch/arm/include/asm/hardware/iomd.h | |
1076 | F: arch/arm/include/asm/hardware/memc.h | |
1077 | F: arch/arm/mach-rpc/ | |
1a6422f6 | 1078 | F: drivers/net/ethernet/8390/etherh.c |
9e13fbf7 JK |
1079 | F: drivers/net/ethernet/i825xx/ether1* |
1080 | F: drivers/net/ethernet/seeq/ether3* | |
d4275354 RK |
1081 | F: drivers/scsi/arm/ |
1082 | ||
1da177e4 | 1083 | ARM/SHARK MACHINE SUPPORT |
8b58be88 | 1084 | M: Alexander Schulz <alex@shark-linux.de> |
1da177e4 LT |
1085 | W: http://www.shark-linux.de/shark.html |
1086 | S: Maintained | |
1087 | ||
b21477f9 | 1088 | ARM/SAMSUNG ARM ARCHITECTURES |
8b58be88 | 1089 | M: Ben Dooks <ben-linux@fluff.org> |
482ce512 | 1090 | M: Kukjin Kim <kgene.kim@samsung.com> |
efc03ecb | 1091 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7a549d78 | 1092 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
b21477f9 BD |
1093 | W: http://www.fluff.org/ben/linux/ |
1094 | S: Maintained | |
482ce512 | 1095 | F: arch/arm/plat-samsung/ |
b21477f9 | 1096 | F: arch/arm/plat-s3c24xx/ |
769bbb63 HS |
1097 | F: arch/arm/mach-s3c24*/ |
1098 | F: arch/arm/mach-s3c64xx/ | |
eb2ffcaf BD |
1099 | F: drivers/*/*s3c2410* |
1100 | F: drivers/*/*/*s3c2410* | |
40c76662 MB |
1101 | F: drivers/spi/spi-s3c* |
1102 | F: sound/soc/samsung/* | |
1da177e4 | 1103 | |
0dcecae2 | 1104 | ARM/S5P EXYNOS ARM ARCHITECTURES |
f556cb07 KK |
1105 | M: Kukjin Kim <kgene.kim@samsung.com> |
1106 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1107 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
1108 | S: Maintained | |
1109 | F: arch/arm/mach-s5p*/ | |
0dcecae2 | 1110 | F: arch/arm/mach-exynos*/ |
f556cb07 | 1111 | |
10ffa964 KP |
1112 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
1113 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1114 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1115 | S: Maintained | |
1116 | F: arch/arm/mach-s5pv210/mach-aquila.c | |
1117 | F: arch/arm/mach-s5pv210/mach-goni.c | |
38f1b4c5 JP |
1118 | F: arch/arm/mach-exynos/mach-universal_c210.c |
1119 | F: arch/arm/mach-exynos/mach-nuri.c | |
10ffa964 | 1120 | |
aaac7d9e KP |
1121 | ARM/SAMSUNG S5P SERIES FIMC SUPPORT |
1122 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1123 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> | |
1124 | L: linux-arm-kernel@lists.infradead.org | |
1125 | L: linux-media@vger.kernel.org | |
1126 | S: Maintained | |
aaac7d9e | 1127 | F: arch/arm/plat-samsung/include/plat/*fimc* |
90d72ac6 | 1128 | F: drivers/media/platform/s5p-fimc/ |
aaac7d9e | 1129 | |
e6a476fd MS |
1130 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
1131 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1132 | M: Kamil Debski <k.debski@samsung.com> | |
6305902c | 1133 | M: Jeongtae Park <jtp.park@samsung.com> |
e6a476fd MS |
1134 | L: linux-arm-kernel@lists.infradead.org |
1135 | L: linux-media@vger.kernel.org | |
1136 | S: Maintained | |
934455d7 | 1137 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
90d72ac6 | 1138 | F: drivers/media/platform/s5p-mfc/ |
e6a476fd MS |
1139 | |
1140 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT | |
1141 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
1142 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> | |
1143 | L: linux-arm-kernel@lists.infradead.org | |
1144 | L: linux-media@vger.kernel.org | |
1145 | S: Maintained | |
90d72ac6 | 1146 | F: drivers/media/platform/s5p-tv/ |
e6a476fd | 1147 | |
d48d38e8 | 1148 | ARM/SHMOBILE ARM ARCHITECTURE |
5e212598 | 1149 | M: Simon Horman <horms@verge.net.au> |
d48d38e8 PM |
1150 | M: Magnus Damm <magnus.damm@gmail.com> |
1151 | L: linux-sh@vger.kernel.org | |
d48d38e8 | 1152 | W: http://oss.renesas.com |
bbff48f5 | 1153 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
5e212598 | 1154 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
d48d38e8 PM |
1155 | S: Supported |
1156 | F: arch/arm/mach-shmobile/ | |
1157 | F: drivers/sh/ | |
1158 | ||
66314223 DN |
1159 | ARM/SOCFPGA ARCHITECTURE |
1160 | M: Dinh Nguyen <dinguyen@altera.com> | |
1161 | S: Maintained | |
1162 | F: arch/arm/mach-socfpga/ | |
1163 | ||
1164 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT | |
1165 | M: Dinh Nguyen <dinguyen@altera.com> | |
1166 | S: Maintained | |
1167 | F: drivers/clk/socfpga/ | |
1168 | ||
2b7a52a4 | 1169 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
8b58be88 | 1170 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1171 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1172 | S: Maintained |
1173 | ||
1bbd7089 | 1174 | ARM/TETON BGA MACHINE SUPPORT |
706e69d6 | 1175 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
1bbd7089 MB |
1176 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1177 | S: Maintained | |
1178 | ||
2b7a52a4 | 1179 | ARM/THECUS N2100 MACHINE SUPPORT |
8b58be88 | 1180 | M: Lennert Buytenhek <kernel@wantstofly.org> |
efc03ecb | 1181 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
2b7a52a4 LB |
1182 | S: Maintained |
1183 | ||
98ad6e3b | 1184 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
8b58be88 | 1185 | M: Wan ZongShun <mcuos.com@gmail.com> |
efc03ecb | 1186 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
7d2c86b5 JP |
1187 | W: http://www.mcuos.com |
1188 | S: Maintained | |
4e89e8f6 | 1189 | F: arch/arm/mach-w90x900/ |
4e89e8f6 WZ |
1190 | F: drivers/input/keyboard/w90p910_keypad.c |
1191 | F: drivers/input/touchscreen/w90p910_ts.c | |
1192 | F: drivers/watchdog/nuc900_wdt.c | |
679ec0ef | 1193 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
5351684f | 1194 | F: drivers/mtd/nand/nuc900_nand.c |
4e89e8f6 | 1195 | F: drivers/rtc/rtc-nuc900.c |
9df92e6c | 1196 | F: drivers/spi/spi-nuc900.c |
4e89e8f6 WZ |
1197 | F: drivers/usb/host/ehci-w90x900.c |
1198 | F: drivers/video/nuc900fb.c | |
98ad6e3b | 1199 | |
54274d71 | 1200 | ARM/U300 MACHINE SUPPORT |
e4651a9f | 1201 | M: Linus Walleij <linus.walleij@linaro.org> |
54274d71 LW |
1202 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1203 | S: Supported | |
1204 | F: arch/arm/mach-u300/ | |
1205 | F: drivers/i2c/busses/i2c-stu300.c | |
1206 | F: drivers/rtc/rtc-coh901331.c | |
1207 | F: drivers/watchdog/coh901327_wdt.c | |
1208 | F: drivers/dma/coh901318* | |
87572880 LW |
1209 | F: drivers/mfd/ab3100* |
1210 | F: drivers/rtc/rtc-ab3100.c | |
1211 | F: drivers/rtc/rtc-coh901331.c | |
1212 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git | |
54274d71 | 1213 | |
87572880 | 1214 | ARM/Ux500 ARM ARCHITECTURE |
870725d9 | 1215 | M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> |
e4651a9f | 1216 | M: Linus Walleij <linus.walleij@linaro.org> |
870725d9 SK |
1217 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1218 | S: Maintained | |
1219 | F: arch/arm/mach-ux500/ | |
e4651a9f | 1220 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
87572880 | 1221 | F: drivers/dma/ste_dma40* |
e4651a9f | 1222 | F: drivers/hwspinlock/u8500_hsem.c |
87572880 LW |
1223 | F: drivers/mfd/abx500* |
1224 | F: drivers/mfd/ab8500* | |
e4651a9f LW |
1225 | F: drivers/mfd/dbx500* |
1226 | F: drivers/mfd/db8500* | |
1227 | F: drivers/pinctrl/pinctrl-nomadik* | |
87572880 | 1228 | F: drivers/rtc/rtc-ab8500.c |
e4651a9f | 1229 | F: drivers/rtc/rtc-pl031.c |
87572880 | 1230 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
870725d9 | 1231 | |
d4275354 | 1232 | ARM/VFP SUPPORT |
8b58be88 | 1233 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 1234 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
d4275354 RK |
1235 | W: http://www.arm.linux.org.uk/ |
1236 | S: Maintained | |
1237 | F: arch/arm/vfp/ | |
1238 | ||
e66b6d8e MV |
1239 | ARM/VOIPAC PXA270 SUPPORT |
1240 | M: Marek Vasut <marek.vasut@gmail.com> | |
1241 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1242 | S: Maintained | |
1243 | F: arch/arm/mach-pxa/vpac270.c | |
e0cca11b | 1244 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
e66b6d8e | 1245 | |
04529fe2 TP |
1246 | ARM/VT8500 ARM ARCHITECTURE |
1247 | M: Tony Prisk <linux@prisktech.co.nz> | |
1248 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1249 | S: Maintained | |
1250 | F: arch/arm/mach-vt8500/ | |
1251 | F: drivers/video/vt8500lcdfb.* | |
1252 | F: drivers/video/wm8505fb* | |
1253 | F: drivers/video/wmt_ge_rops.* | |
1254 | F: drivers/tty/serial/vt8500_serial.c | |
7beefe1d | 1255 | F: drivers/rtc/rtc-vt8500.c |
3a96dff0 | 1256 | F: drivers/mmc/host/wmt-sdmmc.c |
04529fe2 | 1257 | |
e66b6d8e MV |
1258 | ARM/ZIPIT Z2 SUPPORT |
1259 | M: Marek Vasut <marek.vasut@gmail.com> | |
1260 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1261 | S: Maintained | |
1262 | F: arch/arm/mach-pxa/z2.c | |
6ab2a855 | 1263 | F: arch/arm/mach-pxa/include/mach/z2.h |
e66b6d8e | 1264 | |
38074229 CM |
1265 | ARM64 PORT (AARCH64 ARCHITECTURE) |
1266 | M: Catalin Marinas <catalin.marinas@arm.com> | |
d19766ec | 1267 | M: Will Deacon <will.deacon@arm.com> |
38074229 CM |
1268 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1269 | S: Maintained | |
1270 | F: arch/arm64/ | |
d19766ec | 1271 | F: Documentation/arm64/ |
38074229 | 1272 | |
d58de038 GJ |
1273 | ASC7621 HARDWARE MONITOR DRIVER |
1274 | M: George Joseph <george.joseph@fairview5.com> | |
1275 | L: lm-sensors@lm-sensors.org | |
1276 | S: Maintained | |
1277 | F: Documentation/hwmon/asc7621 | |
1278 | F: drivers/hwmon/asc7621.c | |
1279 | ||
b229ece9 | 1280 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
5909c654 | 1281 | M: Corentin Chary <corentin.chary@gmail.com> |
1da177e4 | 1282 | L: acpi4asus-user@lists.sourceforge.net |
d0944853 | 1283 | L: platform-driver-x86@vger.kernel.org |
76593d6f | 1284 | W: http://acpi4asus.sf.net |
85091b71 | 1285 | S: Maintained |
b229ece9 CC |
1286 | F: drivers/platform/x86/asus*.c |
1287 | F: drivers/platform/x86/eeepc*.c | |
85091b71 | 1288 | |
6ea884db | 1289 | ASUS ASB100 HARDWARE MONITOR DRIVER |
8b58be88 | 1290 | M: "Mark M. Hoffman" <mhoffman@lightlink.com> |
6ea884db MH |
1291 | L: lm-sensors@lm-sensors.org |
1292 | S: Maintained | |
679655da | 1293 | F: drivers/hwmon/asb100.c |
6ea884db | 1294 | |
953a6479 | 1295 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
1dd8372d | 1296 | M: Dan Williams <djbw@fb.com> |
b3e5f263 | 1297 | W: http://sourceforge.net/projects/xscaleiop |
1dd8372d | 1298 | S: Maintained |
679655da JP |
1299 | F: Documentation/crypto/async-tx-api.txt |
1300 | F: crypto/async_tx/ | |
1301 | F: drivers/dma/ | |
1302 | F: include/linux/dmaengine.h | |
1303 | F: include/linux/async_tx.h | |
b3e5f263 | 1304 | |
a1867d36 WS |
1305 | AT24 EEPROM DRIVER |
1306 | M: Wolfram Sang <w.sang@pengutronix.de> | |
1307 | L: linux-i2c@vger.kernel.org | |
1308 | S: Maintained | |
1309 | F: drivers/misc/eeprom/at24.c | |
1310 | F: include/linux/i2c/at24.h | |
1311 | ||
e7839f25 | 1312 | ATA OVER ETHERNET (AOE) DRIVER |
8b58be88 | 1313 | M: "Ed L. Cashin" <ecashin@coraid.com> |
eecdf226 | 1314 | W: http://support.coraid.com/support/linux |
1da177e4 | 1315 | S: Supported |
679655da JP |
1316 | F: Documentation/aoe/ |
1317 | F: drivers/block/aoe/ | |
1da177e4 | 1318 | |
9a10a870 | 1319 | ATHEROS ATH GENERIC UTILITIES |
fe8e0844 | 1320 | M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> |
9a10a870 JP |
1321 | L: linux-wireless@vger.kernel.org |
1322 | S: Supported | |
1323 | F: drivers/net/wireless/ath/* | |
1324 | ||
fa1c114f | 1325 | ATHEROS ATH5K WIRELESS DRIVER |
8b58be88 JP |
1326 | M: Jiri Slaby <jirislaby@gmail.com> |
1327 | M: Nick Kossifidis <mickflemm@gmail.com> | |
fe8e0844 | 1328 | M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> |
fa1c114f JS |
1329 | L: linux-wireless@vger.kernel.org |
1330 | L: ath5k-devel@lists.ath5k.org | |
72c706b7 | 1331 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
fa1c114f | 1332 | S: Maintained |
fa451753 | 1333 | F: drivers/net/wireless/ath/ath5k/ |
fa1c114f | 1334 | |
12e62d6f KV |
1335 | ATHEROS ATH6KL WIRELESS DRIVER |
1336 | M: Kalle Valo <kvalo@qca.qualcomm.com> | |
1337 | L: linux-wireless@vger.kernel.org | |
1338 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl | |
1339 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git | |
1340 | S: Supported | |
1341 | F: drivers/net/wireless/ath/ath6kl/ | |
1342 | ||
f078f209 | 1343 | ATHEROS ATH9K WIRELESS DRIVER |
fe8e0844 LR |
1344 | M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> |
1345 | M: Jouni Malinen <jouni@qca.qualcomm.com> | |
1346 | M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> | |
1347 | M: Senthil Balasubramanian <senthilb@qca.qualcomm.com> | |
f078f209 LR |
1348 | L: linux-wireless@vger.kernel.org |
1349 | L: ath9k-devel@lists.ath9k.org | |
72c706b7 | 1350 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
f078f209 | 1351 | S: Supported |
fa451753 | 1352 | F: drivers/net/wireless/ath/ath9k/ |
f078f209 | 1353 | |
2be7d22f VK |
1354 | WILOCITY WIL6210 WIRELESS DRIVER |
1355 | M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> | |
1356 | L: linux-wireless@vger.kernel.org | |
1357 | L: wil6210@qca.qualcomm.com | |
1358 | S: Supported | |
1359 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 | |
1360 | F: drivers/net/wireless/ath/wil6210/ | |
1361 | ||
1d7e1e6b CL |
1362 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
1363 | M: Christian Lamparter <chunkeey@googlemail.com> | |
1364 | L: linux-wireless@vger.kernel.org | |
1365 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 | |
1366 | S: Maintained | |
1367 | F: drivers/net/wireless/ath/carl9170/ | |
1368 | ||
2c2a6172 LT |
1369 | ATK0110 HWMON DRIVER |
1370 | M: Luca Tettamanti <kronos.it@gmail.com> | |
1371 | L: lm-sensors@lm-sensors.org | |
1372 | S: Maintained | |
1373 | F: drivers/hwmon/asus_atk0110.c | |
1374 | ||
6f69a6d7 | 1375 | ATI_REMOTE2 DRIVER |
8b58be88 | 1376 | M: Ville Syrjala <syrjala@sci.fi> |
6f69a6d7 | 1377 | S: Maintained |
679655da | 1378 | F: drivers/input/misc/ati_remote2.c |
6f69a6d7 | 1379 | |
7ae115b4 | 1380 | ATLX ETHERNET DRIVERS |
8b58be88 | 1381 | M: Jay Cliburn <jcliburn@gmail.com> |
cb2f33e9 | 1382 | M: Chris Snook <chris.snook@gmail.com> |
e443e383 | 1383 | L: netdev@vger.kernel.org |
8d5ca6ec JC |
1384 | W: http://sourceforge.net/projects/atl1 |
1385 | W: http://atl1.sourceforge.net | |
1386 | S: Maintained | |
2b133ad6 | 1387 | F: drivers/net/ethernet/atheros/ |
8d5ca6ec | 1388 | |
1da177e4 | 1389 | ATM |
8b58be88 | 1390 | M: Chas Williams <chas@cmf.nrl.navy.mil> |
476604de | 1391 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
44ae98b5 | 1392 | L: netdev@vger.kernel.org |
1da177e4 LT |
1393 | W: http://linux-atm.sourceforge.net |
1394 | S: Maintained | |
679655da JP |
1395 | F: drivers/atm/ |
1396 | F: include/linux/atm* | |
c117ab84 | 1397 | F: include/uapi/linux/atm* |
1da177e4 | 1398 | |
04ac2f46 | 1399 | ATMEL AT91 / AT32 MCI DRIVER |
24e1511f | 1400 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
04ac2f46 NF |
1401 | S: Maintained |
1402 | F: drivers/mmc/host/atmel-mci.c | |
1403 | F: drivers/mmc/host/atmel-mci-regs.h | |
1404 | ||
a1cfac48 | 1405 | ATMEL AT91 / AT32 SERIAL DRIVER |
a02875a6 | 1406 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
a1cfac48 | 1407 | S: Supported |
df621252 | 1408 | F: drivers/tty/serial/atmel_serial.c |
a1cfac48 | 1409 | |
b414dc16 NF |
1410 | ATMEL DMA DRIVER |
1411 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1412 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1413 | S: Supported | |
1414 | F: drivers/dma/at_hdmac.c | |
1415 | F: drivers/dma/at_hdmac_regs.h | |
6f0d65af | 1416 | F: include/linux/platform_data/dma-atmel.h |
b414dc16 | 1417 | |
15515545 JW |
1418 | ATMEL ISI DRIVER |
1419 | M: Josh Wu <josh.wu@atmel.com> | |
1420 | L: linux-media@vger.kernel.org | |
1421 | S: Supported | |
f2294c2d | 1422 | F: drivers/media/platform/soc_camera/atmel-isi.c |
15515545 JW |
1423 | F: include/media/atmel-isi.h |
1424 | ||
8f4c79ce | 1425 | ATMEL LCDFB DRIVER |
8b58be88 | 1426 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
c69f677c | 1427 | L: linux-fbdev@vger.kernel.org |
8f4c79ce | 1428 | S: Maintained |
679655da JP |
1429 | F: drivers/video/atmel_lcdfb.c |
1430 | F: include/video/atmel_lcdc.h | |
8f4c79ce | 1431 | |
89e5785f | 1432 | ATMEL MACB ETHERNET DRIVER |
a02875a6 | 1433 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
89e5785f | 1434 | S: Supported |
9f2f381f | 1435 | F: drivers/net/ethernet/cadence/ |
89e5785f | 1436 | |
754ce4f2 | 1437 | ATMEL SPI DRIVER |
a02875a6 | 1438 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
754ce4f2 | 1439 | S: Supported |
9df92e6c | 1440 | F: drivers/spi/spi-atmel.* |
754ce4f2 | 1441 | |
e9cb1c5a NF |
1442 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
1443 | M: Nicolas Ferre <nicolas.ferre@atmel.com> | |
1444 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
1445 | S: Supported | |
1446 | F: drivers/misc/atmel_tclib.c | |
1447 | F: drivers/clocksource/tcb_clksrc.c | |
1448 | ||
ff2675d6 JW |
1449 | ATMEL TSADCC DRIVER |
1450 | M: Josh Wu <josh.wu@atmel.com> | |
1451 | L: linux-input@vger.kernel.org | |
1452 | S: Supported | |
1453 | F: drivers/input/touchscreen/atmel_tsadcc.c | |
1454 | ||
914a3f3b | 1455 | ATMEL USBA UDC DRIVER |
a02875a6 NF |
1456 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
1457 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
914a3f3b | 1458 | S: Supported |
679655da | 1459 | F: drivers/usb/gadget/atmel_usba_udc.* |
914a3f3b | 1460 | |
1da177e4 | 1461 | ATMEL WIRELESS DRIVER |
8b58be88 | 1462 | M: Simon Kelley <simon@thekelleys.org.uk> |
724c6b35 | 1463 | L: linux-wireless@vger.kernel.org |
1da177e4 LT |
1464 | W: http://www.thekelleys.org.uk/atmel |
1465 | W: http://atmelwlandriver.sourceforge.net/ | |
1466 | S: Maintained | |
679655da | 1467 | F: drivers/net/wireless/atmel* |
1da177e4 | 1468 | |
a92b7b80 | 1469 | AUDIT SUBSYSTEM |
8b58be88 JP |
1470 | M: Al Viro <viro@zeniv.linux.org.uk> |
1471 | M: Eric Paris <eparis@redhat.com> | |
b9a06207 | 1472 | L: linux-audit@redhat.com (subscribers-only) |
ad3f9a22 | 1473 | W: http://people.redhat.com/sgrubb/audit/ |
54e5881d | 1474 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git |
a92b7b80 | 1475 | S: Maintained |
679655da | 1476 | F: include/linux/audit.h |
c117ab84 | 1477 | F: include/uapi/linux/audit.h |
679655da | 1478 | F: kernel/audit* |
a92b7b80 | 1479 | |
70e84049 | 1480 | AUXILIARY DISPLAY DRIVERS |
8b58be88 | 1481 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1482 | W: http://miguelojeda.es/auxdisplay.htm |
1483 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1484 | S: Maintained |
679655da JP |
1485 | F: drivers/auxdisplay/ |
1486 | F: include/linux/cfag12864b.h | |
70e84049 | 1487 | |
5f97f7f9 | 1488 | AVR32 ARCHITECTURE |
e336f61f HCE |
1489 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1490 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
5f97f7f9 HS |
1491 | W: http://www.atmel.com/products/AVR32/ |
1492 | W: http://avr32linux.org/ | |
1493 | W: http://avrfreaks.net/ | |
e336f61f | 1494 | S: Maintained |
679655da | 1495 | F: arch/avr32/ |
5f97f7f9 HS |
1496 | |
1497 | AVR32/AT32AP MACHINE SUPPORT | |
e336f61f HCE |
1498 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1499 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> | |
1500 | S: Maintained | |
679655da | 1501 | F: arch/avr32/mach-at32ap/ |
5f97f7f9 | 1502 | |
1da177e4 | 1503 | AX.25 NETWORK LAYER |
8b58be88 | 1504 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 1505 | L: linux-hams@vger.kernel.org |
d34cb28a | 1506 | W: http://www.linux-ax25.org/ |
1da177e4 | 1507 | S: Maintained |
c117ab84 | 1508 | F: include/uapi/linux/ax25.h |
679655da JP |
1509 | F: include/net/ax25.h |
1510 | F: net/ax25/ | |
1da177e4 | 1511 | |
d5269395 MCC |
1512 | AZ6007 DVB DRIVER |
1513 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
1514 | L: linux-media@vger.kernel.org | |
1515 | W: http://linuxtv.org | |
1516 | T: git git://linuxtv.org/media_tree.git | |
1517 | S: Maintained | |
1518 | F: drivers/media/usb/dvb-usb-v2/az6007.c | |
1519 | ||
e2d1d6c0 | 1520 | B43 WIRELESS DRIVER |
8b58be88 | 1521 | M: Stefano Brivio <stefano.brivio@polimi.it> |
e2d1d6c0 | 1522 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1523 | L: b43-dev@lists.infradead.org |
491b26b4 | 1524 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1525 | S: Maintained |
679655da | 1526 | F: drivers/net/wireless/b43/ |
e2d1d6c0 RD |
1527 | |
1528 | B43LEGACY WIRELESS DRIVER | |
8b58be88 JP |
1529 | M: Larry Finger <Larry.Finger@lwfinger.net> |
1530 | M: Stefano Brivio <stefano.brivio@polimi.it> | |
e2d1d6c0 | 1531 | L: linux-wireless@vger.kernel.org |
ed072f9e | 1532 | L: b43-dev@lists.infradead.org |
491b26b4 | 1533 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
e2d1d6c0 | 1534 | S: Maintained |
679655da | 1535 | F: drivers/net/wireless/b43legacy/ |
e2d1d6c0 | 1536 | |
300abeb5 | 1537 | BACKLIGHT CLASS/SUBSYSTEM |
8b58be88 | 1538 | M: Richard Purdie <rpurdie@rpsys.net> |
300abeb5 | 1539 | S: Maintained |
679655da JP |
1540 | F: drivers/video/backlight/ |
1541 | F: include/linux/backlight.h | |
300abeb5 | 1542 | |
c6c8fea2 SE |
1543 | BATMAN ADVANCED |
1544 | M: Marek Lindner <lindner_marek@yahoo.de> | |
1545 | M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> | |
cf9ab887 | 1546 | M: Antonio Quartulli <ordex@autistici.org> |
c6c8fea2 SE |
1547 | L: b.a.t.m.a.n@lists.open-mesh.org |
1548 | W: http://www.open-mesh.org/ | |
1549 | S: Maintained | |
1550 | F: net/batman-adv/ | |
1551 | ||
e2d1d6c0 | 1552 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
8b58be88 | 1553 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
e2d1d6c0 RD |
1554 | L: linux-hams@vger.kernel.org |
1555 | W: http://www.baycom.org/~tom/ham/ham.html | |
1556 | S: Maintained | |
679655da | 1557 | F: drivers/net/hamradio/baycom* |
e2d1d6c0 RD |
1558 | |
1559 | BEFS FILE SYSTEM | |
55817d3d | 1560 | S: Orphan |
679655da JP |
1561 | F: Documentation/filesystems/befs.txt |
1562 | F: fs/befs/ | |
e2d1d6c0 RD |
1563 | |
1564 | BFS FILE SYSTEM | |
8b58be88 | 1565 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
e2d1d6c0 | 1566 | S: Maintained |
679655da JP |
1567 | F: Documentation/filesystems/bfs.txt |
1568 | F: fs/bfs/ | |
c117ab84 | 1569 | F: include/uapi/linux/bfs_fs.h |
e2d1d6c0 | 1570 | |
1394f032 | 1571 | BLACKFIN ARCHITECTURE |
8b58be88 | 1572 | M: Mike Frysinger <vapier@gentoo.org> |
5b93e13f | 1573 | L: uclinux-dist-devel@blackfin.uclinux.org |
e3b2d3f3 BW |
1574 | W: http://blackfin.uclinux.org |
1575 | S: Supported | |
679655da | 1576 | F: arch/blackfin/ |
566da5b2 | 1577 | |
e190d6b1 | 1578 | BLACKFIN EMAC DRIVER |
49afa609 | 1579 | L: uclinux-dist-devel@blackfin.uclinux.org |
e190d6b1 BW |
1580 | W: http://blackfin.uclinux.org |
1581 | S: Supported | |
7b35f033 | 1582 | F: drivers/net/ethernet/adi/ |
e190d6b1 | 1583 | |
566da5b2 | 1584 | BLACKFIN RTC DRIVER |
8b58be88 | 1585 | M: Mike Frysinger <vapier.adi@gmail.com> |
49afa609 | 1586 | L: uclinux-dist-devel@blackfin.uclinux.org |
566da5b2 MF |
1587 | W: http://blackfin.uclinux.org |
1588 | S: Supported | |
679655da | 1589 | F: drivers/rtc/rtc-bfin.c |
1394f032 | 1590 | |
936ed49a | 1591 | BLACKFIN SDH DRIVER |
109ec8c3 | 1592 | M: Sonic Zhang <sonic.zhang@analog.com> |
936ed49a MF |
1593 | L: uclinux-dist-devel@blackfin.uclinux.org |
1594 | W: http://blackfin.uclinux.org | |
1595 | S: Supported | |
1596 | F: drivers/mmc/host/bfin_sdh.c | |
1597 | ||
1394f032 | 1598 | BLACKFIN SERIAL DRIVER |
8b58be88 | 1599 | M: Sonic Zhang <sonic.zhang@analog.com> |
49afa609 | 1600 | L: uclinux-dist-devel@blackfin.uclinux.org |
e3b2d3f3 BW |
1601 | W: http://blackfin.uclinux.org |
1602 | S: Supported | |
8460241e | 1603 | F: drivers/tty/serial/bfin_uart.c |
1394f032 | 1604 | |
1e6d320f | 1605 | BLACKFIN WATCHDOG DRIVER |
8b58be88 | 1606 | M: Mike Frysinger <vapier.adi@gmail.com> |
49afa609 | 1607 | L: uclinux-dist-devel@blackfin.uclinux.org |
1e6d320f BW |
1608 | W: http://blackfin.uclinux.org |
1609 | S: Supported | |
679655da | 1610 | F: drivers/watchdog/bfin_wdt.c |
1e6d320f | 1611 | |
d24ecfcc | 1612 | BLACKFIN I2C TWI DRIVER |
8b58be88 | 1613 | M: Sonic Zhang <sonic.zhang@analog.com> |
49afa609 | 1614 | L: uclinux-dist-devel@blackfin.uclinux.org |
d24ecfcc BW |
1615 | W: http://blackfin.uclinux.org/ |
1616 | S: Supported | |
679655da | 1617 | F: drivers/i2c/busses/i2c-bfin-twi.c |
d24ecfcc | 1618 | |
b54cf35a JSM |
1619 | BLINKM RGB LED DRIVER |
1620 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> | |
1621 | S: Maintained | |
1622 | F: drivers/leds/leds-blinkm.c | |
1623 | ||
1da177e4 | 1624 | BLOCK LAYER |
8b58be88 | 1625 | M: Jens Axboe <axboe@kernel.dk> |
08deed1e | 1626 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
1da177e4 | 1627 | S: Maintained |
679655da | 1628 | F: block/ |
1da177e4 | 1629 | |
2b54aaef | 1630 | BLOCK2MTD DRIVER |
8b58be88 | 1631 | M: Joern Engel <joern@lazybastard.org> |
2b54aaef JE |
1632 | L: linux-mtd@lists.infradead.org |
1633 | S: Maintained | |
679655da | 1634 | F: drivers/mtd/devices/block2mtd.c |
2b54aaef | 1635 | |
63fbd24e | 1636 | BLUETOOTH DRIVERS |
8b58be88 | 1637 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1638 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1639 | M: Johan Hedberg <johan.hedberg@gmail.com> |
781c2844 | 1640 | L: linux-bluetooth@vger.kernel.org |
63fbd24e | 1641 | W: http://www.bluez.org/ |
22e7a424 MH |
1642 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1643 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1644 | S: Maintained |
679655da | 1645 | F: drivers/bluetooth/ |
1da177e4 | 1646 | |
63fbd24e | 1647 | BLUETOOTH SUBSYSTEM |
8b58be88 | 1648 | M: Marcel Holtmann <marcel@holtmann.org> |
960d4d1b | 1649 | M: Gustavo Padovan <gustavo@padovan.org> |
eb491eca | 1650 | M: Johan Hedberg <johan.hedberg@gmail.com> |
63fbd24e MH |
1651 | L: linux-bluetooth@vger.kernel.org |
1652 | W: http://www.bluez.org/ | |
22e7a424 MH |
1653 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
1654 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git | |
1da177e4 | 1655 | S: Maintained |
679655da JP |
1656 | F: net/bluetooth/ |
1657 | F: include/net/bluetooth/ | |
1da177e4 LT |
1658 | |
1659 | BONDING DRIVER | |
8b58be88 | 1660 | M: Jay Vosburgh <fubar@us.ibm.com> |
4cd72c6e | 1661 | M: Andy Gospodarek <andy@greyhouse.net> |
a6c36ee6 | 1662 | L: netdev@vger.kernel.org |
ce00f85c JC |
1663 | W: http://sourceforge.net/projects/bonding/ |
1664 | S: Supported | |
679655da | 1665 | F: drivers/net/bonding/ |
c117ab84 | 1666 | F: include/uapi/linux/if_bonding.h |
1da177e4 | 1667 | |
39105890 | 1668 | BROADCOM B44 10/100 ETHERNET DRIVER |
8b58be88 | 1669 | M: Gary Zambrano <zambrano@broadcom.com> |
39105890 GZ |
1670 | L: netdev@vger.kernel.org |
1671 | S: Supported | |
adfc5217 | 1672 | F: drivers/net/ethernet/broadcom/b44.* |
39105890 | 1673 | |
948c51e6 | 1674 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
8b58be88 | 1675 | M: Michael Chan <mchan@broadcom.com> |
948c51e6 MC |
1676 | L: netdev@vger.kernel.org |
1677 | S: Supported | |
adfc5217 JK |
1678 | F: drivers/net/ethernet/broadcom/bnx2.* |
1679 | F: drivers/net/ethernet/broadcom/bnx2_* | |
948c51e6 | 1680 | |
4d9d2cb0 | 1681 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
8b58be88 | 1682 | M: Eilon Greenstein <eilong@broadcom.com> |
4d9d2cb0 ET |
1683 | L: netdev@vger.kernel.org |
1684 | S: Supported | |
adfc5217 | 1685 | F: drivers/net/ethernet/broadcom/bnx2x/ |
4d9d2cb0 | 1686 | |
f680f25c SW |
1687 | BROADCOM BCM2835 ARM ARCHICTURE |
1688 | M: Stephen Warren <swarren@wwwdotorg.org> | |
1689 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) | |
1690 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git | |
1691 | S: Maintained | |
1692 | F: arch/arm/mach-bcm2835/ | |
1693 | F: arch/arm/boot/dts/bcm2835* | |
1694 | F: arch/arm/configs/bcm2835_defconfig | |
1695 | F: drivers/*/*bcm2835* | |
1696 | ||
948c51e6 | 1697 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
1698 | M: Matt Carlson <mcarlson@broadcom.com> |
1699 | M: Michael Chan <mchan@broadcom.com> | |
948c51e6 MC |
1700 | L: netdev@vger.kernel.org |
1701 | S: Supported | |
adfc5217 | 1702 | F: drivers/net/ethernet/broadcom/tg3.* |
948c51e6 | 1703 | |
a9533e7e HP |
1704 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
1705 | M: Brett Rudley <brudley@broadcom.com> | |
818c07b8 | 1706 | M: Arend van Spriel <arend@broadcom.com> |
85d63686 | 1707 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
006a8f14 | 1708 | M: Hante Meuleman <meuleman@broadcom.com> |
a9533e7e | 1709 | L: linux-wireless@vger.kernel.org |
5615171c | 1710 | L: brcm80211-dev-list@broadcom.com |
a9533e7e | 1711 | S: Supported |
f62ebdd5 | 1712 | F: drivers/net/wireless/brcm80211/ |
a9533e7e | 1713 | |
9958d6f9 BPG |
1714 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
1715 | M: Bhanu Prakash Gollapudi <bprakash@broadcom.com> | |
1716 | L: linux-scsi@vger.kernel.org | |
1717 | S: Supported | |
1718 | F: drivers/scsi/bnx2fc/ | |
1719 | ||
c9678d86 RM |
1720 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
1721 | M: Rafał Miłecki <zajec5@gmail.com> | |
1722 | L: linux-wireless@vger.kernel.org | |
1723 | S: Maintained | |
1724 | F: drivers/bcma/ | |
1725 | F: include/linux/bcma/ | |
1726 | ||
7725ccfd | 1727 | BROCADE BFA FC SCSI DRIVER |
ad07b4a8 | 1728 | M: Krishna C Gudipati <kgudipat@brocade.com> |
455518e7 JP |
1729 | L: linux-scsi@vger.kernel.org |
1730 | S: Supported | |
1731 | F: drivers/scsi/bfa/ | |
7725ccfd | 1732 | |
8b230ed8 RM |
1733 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
1734 | M: Rasesh Mody <rmody@brocade.com> | |
8b230ed8 RM |
1735 | L: netdev@vger.kernel.org |
1736 | S: Supported | |
f844a0ea | 1737 | F: drivers/net/ethernet/brocade/bna/ |
8b230ed8 | 1738 | |
5cdf7f76 | 1739 | BSG (block layer generic sg v4 driver) |
8b58be88 | 1740 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
5cdf7f76 JA |
1741 | L: linux-scsi@vger.kernel.org |
1742 | S: Supported | |
679655da JP |
1743 | F: block/bsg.c |
1744 | F: include/linux/bsg.h | |
c117ab84 | 1745 | F: include/uapi/linux/bsg.h |
5cdf7f76 | 1746 | |
af39917d CL |
1747 | BT87X AUDIO DRIVER |
1748 | M: Clemens Ladisch <clemens@ladisch.de> | |
1749 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
1750 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1751 | S: Maintained | |
1752 | F: Documentation/sound/alsa/Bt87x.txt | |
1753 | F: sound/pci/bt87x.c | |
1754 | ||
ff1d5c2f | 1755 | BT8XXGPIO DRIVER |
eb032b98 | 1756 | M: Michael Buesch <m@bues.ch> |
ff1d5c2f MB |
1757 | W: http://bu3sch.de/btgpio.php |
1758 | S: Maintained | |
72dbb705 | 1759 | F: drivers/gpio/gpio-bt8xx.c |
ff1d5c2f | 1760 | |
eb1eb04f | 1761 | BTRFS FILE SYSTEM |
9c106405 | 1762 | M: Chris Mason <chris.mason@fusionio.com> |
eb1eb04f JP |
1763 | L: linux-btrfs@vger.kernel.org |
1764 | W: http://btrfs.wiki.kernel.org/ | |
8a6e2535 | 1765 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
9c106405 | 1766 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
eb1eb04f | 1767 | S: Maintained |
679655da JP |
1768 | F: Documentation/filesystems/btrfs.txt |
1769 | F: fs/btrfs/ | |
eb1eb04f | 1770 | |
1da177e4 | 1771 | BTTV VIDEO4LINUX DRIVER |
275ffde4 | 1772 | M: Mauro Carvalho Chehab <mchehab@redhat.com> |
661263b5 | 1773 | L: linux-media@vger.kernel.org |
96b6aba0 | 1774 | W: http://linuxtv.org |
275ffde4 | 1775 | T: git git://linuxtv.org/media_tree.git |
f96236e5 | 1776 | S: Odd fixes |
679655da | 1777 | F: Documentation/video4linux/bttv/ |
90d72ac6 | 1778 | F: drivers/media/pci/bt8xx/bttv* |
1da177e4 | 1779 | |
af39917d CL |
1780 | C-MEDIA CMI8788 DRIVER |
1781 | M: Clemens Ladisch <clemens@ladisch.de> | |
1782 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
1783 | T: git git://git.alsa-project.org/alsa-kernel.git | |
1784 | S: Maintained | |
1785 | F: sound/pci/oxygen/ | |
1786 | ||
2141355f MS |
1787 | C6X ARCHITECTURE |
1788 | M: Mark Salter <msalter@redhat.com> | |
1789 | M: Aurelien Jacquiot <a-jacquiot@ti.com> | |
1790 | L: linux-c6x-dev@linux-c6x.org | |
1791 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page | |
1792 | S: Maintained | |
1793 | F: arch/c6x/ | |
1794 | ||
a5432f5a | 1795 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
8b58be88 | 1796 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
1797 | L: linux-cachefs@redhat.com |
1798 | S: Supported | |
1799 | F: Documentation/filesystems/caching/cachefiles.txt | |
1800 | F: fs/cachefiles/ | |
1801 | ||
77d5140f | 1802 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
8b58be88 | 1803 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 1804 | L: linux-media@vger.kernel.org |
275ffde4 | 1805 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 1806 | S: Maintained |
679655da | 1807 | F: Documentation/video4linux/cafe_ccic |
90d72ac6 | 1808 | F: drivers/media/platform/marvell-ccic/ |
77d5140f | 1809 | |
201b6bab JP |
1810 | CAIF NETWORK LAYER |
1811 | M: Sjur Braendeland <sjur.brandeland@stericsson.com> | |
1812 | L: netdev@vger.kernel.org | |
1813 | S: Supported | |
1814 | F: Documentation/networking/caif/ | |
1815 | F: drivers/net/caif/ | |
c117ab84 | 1816 | F: include/uapi/linux/caif/ |
201b6bab JP |
1817 | F: include/net/caif/ |
1818 | F: net/caif/ | |
1819 | ||
77dac90f | 1820 | CALGARY x86-64 IOMMU |
8b58be88 JP |
1821 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
1822 | M: "Jon D. Mason" <jdmason@kudzu.us> | |
77dac90f MBY |
1823 | L: discuss@x86-64.org |
1824 | S: Maintained | |
679655da JP |
1825 | F: arch/x86/kernel/pci-calgary_64.c |
1826 | F: arch/x86/kernel/tce_64.c | |
1827 | F: arch/x86/include/asm/calgary.h | |
1828 | F: arch/x86/include/asm/tce.h | |
77dac90f | 1829 | |
e2d1d6c0 | 1830 | CAN NETWORK LAYER |
8d15d386 | 1831 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
1caa60b6 | 1832 | L: linux-can@vger.kernel.org |
ec78213a | 1833 | W: http://gitorious.org/linux-can |
405cc273 | 1834 | T: git git://gitorious.org/linux-can/linux-can-next.git |
e2d1d6c0 | 1835 | S: Maintained |
8d15d386 | 1836 | F: net/can/ |
8d15d386 | 1837 | F: include/linux/can/core.h |
c117ab84 CEB |
1838 | F: include/uapi/linux/can.h |
1839 | F: include/uapi/linux/can/bcm.h | |
1840 | F: include/uapi/linux/can/raw.h | |
1841 | F: include/uapi/linux/can/gw.h | |
e2d1d6c0 | 1842 | |
4261a204 | 1843 | CAN NETWORK DRIVERS |
8b58be88 | 1844 | M: Wolfgang Grandegger <wg@grandegger.com> |
ec78213a | 1845 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
1caa60b6 | 1846 | L: linux-can@vger.kernel.org |
ec78213a | 1847 | W: http://gitorious.org/linux-can |
405cc273 | 1848 | T: git git://gitorious.org/linux-can/linux-can-next.git |
4261a204 | 1849 | S: Maintained |
8d15d386 OH |
1850 | F: drivers/net/can/ |
1851 | F: include/linux/can/dev.h | |
8d15d386 | 1852 | F: include/linux/can/platform/ |
c117ab84 CEB |
1853 | F: include/uapi/linux/can/error.h |
1854 | F: include/uapi/linux/can/netlink.h | |
4261a204 | 1855 | |
95d16c72 JM |
1856 | CAPABILITIES |
1857 | M: Serge Hallyn <serge.hallyn@canonical.com> | |
1858 | L: linux-security-module@vger.kernel.org | |
6305902c | 1859 | S: Supported |
95d16c72 | 1860 | F: include/linux/capability.h |
c117ab84 | 1861 | F: include/uapi/linux/capability.h |
95d16c72 | 1862 | F: security/capability.c |
6305902c | 1863 | F: security/commoncap.c |
38a94118 | 1864 | F: kernel/capability.c |
95d16c72 | 1865 | |
b8154542 | 1866 | CELL BROADBAND ENGINE ARCHITECTURE |
8b58be88 | 1867 | M: Arnd Bergmann <arnd@arndb.de> |
a4724ed6 SR |
1868 | L: linuxppc-dev@lists.ozlabs.org |
1869 | L: cbe-oss-dev@lists.ozlabs.org | |
b8154542 AB |
1870 | W: http://www.ibm.com/developerworks/power/cell/ |
1871 | S: Supported | |
679655da | 1872 | F: arch/powerpc/include/asm/cell*.h |
679655da | 1873 | F: arch/powerpc/include/asm/spu*.h |
c117ab84 | 1874 | F: arch/powerpc/include/uapi/asm/spu*.h |
679655da JP |
1875 | F: arch/powerpc/oprofile/*cell* |
1876 | F: arch/powerpc/platforms/cell/ | |
b8154542 | 1877 | |
9030aaf9 | 1878 | CEPH DISTRIBUTED FILE SYSTEM CLIENT |
09d90327 | 1879 | M: Sage Weil <sage@inktank.com> |
82593f87 | 1880 | L: ceph-devel@vger.kernel.org |
09d90327 | 1881 | W: http://ceph.com/ |
fb99f881 | 1882 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
9030aaf9 SW |
1883 | S: Supported |
1884 | F: Documentation/filesystems/ceph.txt | |
1885 | F: fs/ceph | |
3d14c5d2 YS |
1886 | F: net/ceph |
1887 | F: include/linux/ceph | |
09d90327 | 1888 | F: include/linux/crush |
9030aaf9 | 1889 | |
18332a80 | 1890 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
18332a80 | 1891 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 1892 | S: Orphan |
679655da JP |
1893 | F: Documentation/usb/WUSB-Design-overview.txt |
1894 | F: Documentation/usb/wusb-cbaf | |
355ffe69 DV |
1895 | F: drivers/usb/host/hwa-hc.c |
1896 | F: drivers/usb/host/whci/ | |
679655da JP |
1897 | F: drivers/usb/wusbcore/ |
1898 | F: include/linux/usb/wusb* | |
18332a80 | 1899 | |
70e84049 | 1900 | CFAG12864B LCD DRIVER |
8b58be88 | 1901 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1902 | W: http://miguelojeda.es/auxdisplay.htm |
1903 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1904 | S: Maintained |
679655da JP |
1905 | F: drivers/auxdisplay/cfag12864b.c |
1906 | F: include/linux/cfag12864b.h | |
70e84049 MOS |
1907 | |
1908 | CFAG12864BFB LCD FRAMEBUFFER DRIVER | |
8b58be88 | 1909 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
1910 | W: http://miguelojeda.es/auxdisplay.htm |
1911 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 1912 | S: Maintained |
679655da JP |
1913 | F: drivers/auxdisplay/cfag12864bfb.c |
1914 | F: include/linux/cfag12864b.h | |
70e84049 | 1915 | |
704232c2 | 1916 | CFG80211 and NL80211 |
8b58be88 | 1917 | M: Johannes Berg <johannes@sipsolutions.net> |
704232c2 | 1918 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
1919 | W: http://wireless.kernel.org/ |
1920 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
1921 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
704232c2 | 1922 | S: Maintained |
c117ab84 | 1923 | F: include/uapi/linux/nl80211.h |
679655da JP |
1924 | F: include/net/cfg80211.h |
1925 | F: net/wireless/* | |
1926 | X: net/wireless/wext* | |
704232c2 | 1927 | |
46e64261 GKH |
1928 | CHAR and MISC DRIVERS |
1929 | M: Arnd Bergmann <arnd@arndb.de> | |
879a5a00 | 1930 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
46e64261 | 1931 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
879a5a00 | 1932 | S: Supported |
46e64261 GKH |
1933 | F: drivers/char/* |
1934 | F: drivers/misc/* | |
1935 | ||
0a920b5b | 1936 | CHECKPATCH |
8b58be88 | 1937 | M: Andy Whitcroft <apw@canonical.com> |
0a920b5b | 1938 | S: Supported |
679655da | 1939 | F: scripts/checkpatch.pl |
0a920b5b | 1940 | |
f8407f26 HW |
1941 | CHINESE DOCUMENTATION |
1942 | M: Harry Wei <harryxiyou@gmail.com> | |
9740153c | 1943 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
f8407f26 HW |
1944 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
1945 | S: Maintained | |
1946 | F: Documentation/zh_CN/ | |
1947 | ||
2721ea2c AS |
1948 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
1949 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> | |
1950 | L: linux-usb@vger.kernel.org | |
1951 | S: Maintained | |
1952 | F: drivers/usb/chipidea/ | |
1953 | ||
641cb85e | 1954 | CISCO VIC ETHERNET NIC DRIVER |
2360d2e8 | 1955 | M: Christian Benvenuti <benve@cisco.com> |
641cb85e | 1956 | M: Roopa Prabhu <roprabhu@cisco.com> |
5c6652f5 NP |
1957 | M: Neel Patel <neepatel@cisco.com> |
1958 | M: Nishank Trivedi <nistrive@cisco.com> | |
7063fbf2 | 1959 | S: Supported |
a6a5580c | 1960 | F: drivers/net/ethernet/cisco/enic/ |
7063fbf2 | 1961 | |
2b7a52a4 | 1962 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
5587912f | 1963 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
2b7a52a4 LB |
1964 | L: netdev@vger.kernel.org |
1965 | S: Maintained | |
57d0b7a0 | 1966 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
2b7a52a4 | 1967 | |
2b7a52a4 | 1968 | CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER |
8b58be88 | 1969 | M: Lennert Buytenhek <kernel@wantstofly.org> |
6372594a | 1970 | L: linux-usb@vger.kernel.org |
2b7a52a4 | 1971 | S: Maintained |
679655da | 1972 | F: drivers/usb/host/ohci-ep93xx.c |
2b7a52a4 | 1973 | |
d9e9d82c | 1974 | CIRRUS LOGIC CS4270 SOUND DRIVER |
c4ef9bc4 | 1975 | M: Timur Tabi <timur@tabi.org> |
93711660 | 1976 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
c4ef9bc4 | 1977 | S: Odd Fixes |
679655da | 1978 | F: sound/soc/codecs/cs4270* |
d9e9d82c | 1979 | |
94574d9a KRW |
1980 | CLEANCACHE API |
1981 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
1982 | L: linux-kernel@vger.kernel.org | |
1983 | S: Maintained | |
1984 | F: mm/cleancache.c | |
1985 | F: include/linux/cleancache.h | |
1986 | ||
d4275354 | 1987 | CLK API |
8b58be88 | 1988 | M: Russell King <linux@arm.linux.org.uk> |
37417046 | 1989 | S: Maintained |
d4275354 RK |
1990 | F: include/linux/clk.h |
1991 | ||
5df6d737 | 1992 | CISCO FCOE HBA DRIVER |
8b58be88 | 1993 | M: Abhijeet Joglekar <abjoglek@cisco.com> |
d7e01dc6 AJ |
1994 | M: Venkata Siva Vijayendra Bhamidipati <vbhamidi@cisco.com> |
1995 | M: Brian Uchino <buchino@cisco.com> | |
5df6d737 AJ |
1996 | L: linux-scsi@vger.kernel.org |
1997 | S: Supported | |
2a99921a | 1998 | F: drivers/scsi/fnic/ |
5df6d737 | 1999 | |
529aa8cb TLSC |
2000 | CMPC ACPI DRIVER |
2001 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | |
2002 | M: Daniel Oliveira Nascimento <don@syst.com.br> | |
d0944853 | 2003 | L: platform-driver-x86@vger.kernel.org |
529aa8cb TLSC |
2004 | S: Supported |
2005 | F: drivers/platform/x86/classmate-laptop.c | |
2006 | ||
74425eee | 2007 | COCCINELLE/Semantic Patches (SmPL) |
26de9c26 | 2008 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
74425eee | 2009 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
26de9c26 NP |
2010 | M: Nicolas Palix <nicolas.palix@imag.fr> |
2011 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) | |
74425eee NP |
2012 | W: http://coccinelle.lip6.fr/ |
2013 | S: Supported | |
2014 | F: scripts/coccinelle/ | |
2015 | F: scripts/coccicheck | |
2016 | ||
1da177e4 | 2017 | CODA FILE SYSTEM |
8b58be88 | 2018 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
1da177e4 LT |
2019 | M: coda@cs.cmu.edu |
2020 | L: codalist@coda.cs.cmu.edu | |
2021 | W: http://www.coda.cs.cmu.edu/ | |
2022 | S: Maintained | |
679655da JP |
2023 | F: Documentation/filesystems/coda.txt |
2024 | F: fs/coda/ | |
2025 | F: include/linux/coda*.h | |
c117ab84 | 2026 | F: include/uapi/linux/coda*.h |
1da177e4 | 2027 | |
7704addb | 2028 | COMMON CLK FRAMEWORK |
7704addb MT |
2029 | M: Mike Turquette <mturquette@linaro.org> |
2030 | L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV) | |
2031 | T: git git://git.linaro.org/people/mturquette/linux.git | |
2032 | S: Maintained | |
2033 | F: drivers/clk/clk.c | |
2034 | F: drivers/clk/clk-* | |
2035 | F: include/linux/clk-pr* | |
2036 | ||
e2d1d6c0 | 2037 | COMMON INTERNET FILE SYSTEM (CIFS) |
8b58be88 | 2038 | M: Steve French <sfrench@samba.org> |
51223df6 | 2039 | L: linux-cifs@vger.kernel.org |
d1f28953 | 2040 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
e2d1d6c0 | 2041 | W: http://linux-cifs.samba.org/ |
8a6e2535 | 2042 | Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ |
54e5881d | 2043 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git |
e2d1d6c0 | 2044 | S: Supported |
679655da JP |
2045 | F: Documentation/filesystems/cifs.txt |
2046 | F: fs/cifs/ | |
e2d1d6c0 | 2047 | |
1da177e4 | 2048 | COMPACTPCI HOTPLUG CORE |
8b58be88 | 2049 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2050 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2051 | S: Maintained |
679655da | 2052 | F: drivers/pci/hotplug/cpci_hotplug* |
1da177e4 LT |
2053 | |
2054 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER | |
8b58be88 | 2055 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2056 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2057 | S: Maintained |
679655da | 2058 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
1da177e4 LT |
2059 | |
2060 | COMPACTPCI HOTPLUG GENERIC DRIVER | |
8b58be88 | 2061 | M: Scott Murray <scott@spiteful.org> |
64dab204 | 2062 | L: linux-pci@vger.kernel.org |
82c4dfc7 | 2063 | S: Maintained |
679655da | 2064 | F: drivers/pci/hotplug/cpcihp_generic.c |
1da177e4 | 2065 | |
5411552c | 2066 | COMPAL LAPTOP SUPPORT |
8b58be88 | 2067 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
d0944853 | 2068 | L: platform-driver-x86@vger.kernel.org |
5411552c | 2069 | S: Maintained |
679655da | 2070 | F: drivers/platform/x86/compal-laptop.c |
5411552c | 2071 | |
949be0f7 | 2072 | CONEXANT ACCESSRUNNER USB DRIVER |
8b58be88 | 2073 | M: Simon Arlott <cxacru@fire.lp0.eu> |
9ae5e3bc SA |
2074 | L: accessrunner-general@lists.sourceforge.net |
2075 | W: http://accessrunner.sourceforge.net/ | |
949be0f7 | 2076 | S: Maintained |
679655da | 2077 | F: drivers/usb/atm/cxacru.c |
949be0f7 | 2078 | |
e2d1d6c0 | 2079 | CONFIGFS |
d6351db2 JB |
2080 | M: Joel Becker <jlbec@evilplan.org> |
2081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git | |
e2d1d6c0 | 2082 | S: Supported |
679655da JP |
2083 | F: fs/configfs/ |
2084 | F: include/linux/configfs.h | |
e2d1d6c0 | 2085 | |
acb9c1b2 | 2086 | CONNECTOR |
8b58be88 | 2087 | M: Evgeniy Polyakov <zbr@ioremap.net> |
acb9c1b2 EP |
2088 | L: netdev@vger.kernel.org |
2089 | S: Maintained | |
2090 | F: drivers/connector/ | |
2091 | ||
fb3a0fb6 | 2092 | CONTROL GROUPS (CGROUPS) |
860ca0e6 | 2093 | M: Tejun Heo <tj@kernel.org> |
ad50c159 | 2094 | M: Li Zefan <lizefan@huawei.com> |
fb3a0fb6 | 2095 | L: containers@lists.linux-foundation.org |
12340313 | 2096 | L: cgroups@vger.kernel.org |
860ca0e6 | 2097 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
fb3a0fb6 | 2098 | S: Maintained |
679655da JP |
2099 | F: include/linux/cgroup* |
2100 | F: kernel/cgroup* | |
8ca739e3 | 2101 | F: mm/*cgroup* |
fb3a0fb6 | 2102 | |
bebe4678 | 2103 | CORETEMP HARDWARE MONITORING DRIVER |
96859129 | 2104 | M: Fenghua Yu <fenghua.yu@intel.com> |
bebe4678 RM |
2105 | L: lm-sensors@lm-sensors.org |
2106 | S: Maintained | |
679655da JP |
2107 | F: Documentation/hwmon/coretemp |
2108 | F: drivers/hwmon/coretemp.c | |
bebe4678 | 2109 | |
1da177e4 | 2110 | COSA/SRP SYNC SERIAL DRIVER |
8b58be88 | 2111 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
1da177e4 LT |
2112 | W: http://www.fi.muni.cz/~kas/cosa/ |
2113 | S: Maintained | |
679655da | 2114 | F: drivers/net/wan/cosa* |
1da177e4 | 2115 | |
4371ee35 | 2116 | CPMAC ETHERNET DRIVER |
8b58be88 | 2117 | M: Florian Fainelli <florian@openwrt.org> |
4371ee35 FF |
2118 | L: netdev@vger.kernel.org |
2119 | S: Maintained | |
b544dbac | 2120 | F: drivers/net/ethernet/ti/cpmac.c |
4371ee35 | 2121 | |
1da177e4 | 2122 | CPU FREQUENCY DRIVERS |
a6c072c7 | 2123 | M: Rafael J. Wysocki <rjw@sisk.pl> |
bc5f65d4 | 2124 | L: cpufreq@vger.kernel.org |
a6c072c7 | 2125 | L: linux-pm@vger.kernel.org |
1da177e4 | 2126 | S: Maintained |
679655da JP |
2127 | F: drivers/cpufreq/ |
2128 | F: include/linux/cpufreq.h | |
1da177e4 LT |
2129 | |
2130 | CPUID/MSR DRIVER | |
8b58be88 | 2131 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 2132 | S: Maintained |
679655da JP |
2133 | F: arch/x86/kernel/cpuid.c |
2134 | F: arch/x86/kernel/msr.c | |
1da177e4 | 2135 | |
7fe2f639 DB |
2136 | CPU POWER MONITORING SUBSYSTEM |
2137 | M: Dominik Brodowski <linux@dominikbrodowski.net> | |
2138 | M: Thomas Renninger <trenn@suse.de> | |
2139 | S: Maintained | |
2140 | F: tools/power/cpupower | |
2141 | ||
ed90fb4a | 2142 | CPUSETS |
47331231 | 2143 | M: Paul Menage <paul@paulmenage.org> |
ed90fb4a | 2144 | W: http://www.bullopensource.org/cpuset/ |
551e172a | 2145 | W: http://oss.sgi.com/projects/cpusets/ |
ed90fb4a | 2146 | S: Supported |
679655da JP |
2147 | F: Documentation/cgroups/cpusets.txt |
2148 | F: include/linux/cpuset.h | |
2149 | F: kernel/cpuset.c | |
ed90fb4a | 2150 | |
1da177e4 | 2151 | CRAMFS FILESYSTEM |
ce00f85c JC |
2152 | W: http://sourceforge.net/projects/cramfs/ |
2153 | S: Orphan | |
679655da JP |
2154 | F: Documentation/filesystems/cramfs.txt |
2155 | F: fs/cramfs/ | |
1da177e4 LT |
2156 | |
2157 | CRIS PORT | |
8b58be88 JP |
2158 | M: Mikael Starvik <starvik@axis.com> |
2159 | M: Jesper Nilsson <jesper.nilsson@axis.com> | |
9937ac0c | 2160 | L: linux-cris-kernel@axis.com |
1da177e4 LT |
2161 | W: http://developer.axis.com |
2162 | S: Maintained | |
679655da | 2163 | F: arch/cris/ |
df621252 | 2164 | F: drivers/tty/serial/crisv10.* |
1da177e4 LT |
2165 | |
2166 | CRYPTO API | |
8b58be88 JP |
2167 | M: Herbert Xu <herbert@gondor.apana.org.au> |
2168 | M: "David S. Miller" <davem@davemloft.net> | |
1da177e4 | 2169 | L: linux-crypto@vger.kernel.org |
54e5881d | 2170 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
1da177e4 | 2171 | S: Maintained |
679655da JP |
2172 | F: Documentation/crypto/ |
2173 | F: arch/*/crypto/ | |
2174 | F: crypto/ | |
2175 | F: drivers/crypto/ | |
2176 | F: include/crypto/ | |
1da177e4 | 2177 | |
5b07bd57 | 2178 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
8b58be88 | 2179 | M: Neil Horman <nhorman@tuxdriver.com> |
5b07bd57 NH |
2180 | L: linux-crypto@vger.kernel.org |
2181 | S: Maintained | |
51a2228a JP |
2182 | F: crypto/ansi_cprng.c |
2183 | F: crypto/rng.c | |
5b07bd57 | 2184 | |
9b4ffa48 | 2185 | CS5535 Audio ALSA driver |
8b58be88 | 2186 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
9b4ffa48 | 2187 | S: Maintained |
679655da | 2188 | F: sound/pci/cs5535audio/ |
9b4ffa48 | 2189 | |
6d8425b1 | 2190 | CX18 VIDEO4LINUX DRIVER |
6afdeaf8 | 2191 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 2192 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 2193 | L: linux-media@vger.kernel.org |
275ffde4 | 2194 | T: git git://linuxtv.org/media_tree.git |
6d8425b1 | 2195 | W: http://linuxtv.org |
30e10993 | 2196 | W: http://www.ivtvdriver.org/index.php/Cx18 |
6d8425b1 | 2197 | S: Maintained |
679655da | 2198 | F: Documentation/video4linux/cx18.txt |
90d72ac6 | 2199 | F: drivers/media/pci/cx18/ |
6c0f0359 | 2200 | F: include/uapi/linux/ivtv* |
6d8425b1 | 2201 | |
20357578 MCC |
2202 | CX88 VIDEO4LINUX DRIVER |
2203 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
2204 | L: linux-media@vger.kernel.org | |
2205 | W: http://linuxtv.org | |
2206 | T: git git://linuxtv.org/media_tree.git | |
2207 | S: Odd fixes | |
2208 | F: Documentation/video4linux/cx88/ | |
2209 | F: drivers/media/pci/cx88/ | |
6d8425b1 | 2210 | |
91952bc0 AP |
2211 | CXD2820R MEDIA DRIVER |
2212 | M: Antti Palosaari <crope@iki.fi> | |
2213 | L: linux-media@vger.kernel.org | |
2214 | W: http://linuxtv.org/ | |
2215 | W: http://palosaari.fi/linux/ | |
2216 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2217 | T: git git://linuxtv.org/anttip/media_tree.git | |
2218 | S: Maintained | |
2219 | F: drivers/media/dvb-frontends/cxd2820r* | |
6d8425b1 | 2220 | |
e5ec3789 | 2221 | CXGB3 ETHERNET DRIVER (CXGB3) |
8b58be88 | 2222 | M: Divy Le Ray <divy@chelsio.com> |
e5ec3789 SW |
2223 | L: netdev@vger.kernel.org |
2224 | W: http://www.chelsio.com | |
2225 | S: Supported | |
f7917c00 | 2226 | F: drivers/net/ethernet/chelsio/cxgb3/ |
e5ec3789 SW |
2227 | |
2228 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) | |
8b58be88 | 2229 | M: Steve Wise <swise@chelsio.com> |
e6cc0fd1 | 2230 | L: linux-rdma@vger.kernel.org |
e5ec3789 SW |
2231 | W: http://www.openfabrics.org |
2232 | S: Supported | |
679655da | 2233 | F: drivers/infiniband/hw/cxgb3/ |
e5ec3789 | 2234 | |
be4c9bad RD |
2235 | CXGB4 ETHERNET DRIVER (CXGB4) |
2236 | M: Dimitris Michailidis <dm@chelsio.com> | |
2237 | L: netdev@vger.kernel.org | |
2238 | W: http://www.chelsio.com | |
2239 | S: Supported | |
f7917c00 | 2240 | F: drivers/net/ethernet/chelsio/cxgb4/ |
be4c9bad RD |
2241 | |
2242 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) | |
2243 | M: Steve Wise <swise@chelsio.com> | |
2244 | L: linux-rdma@vger.kernel.org | |
2245 | W: http://www.openfabrics.org | |
2246 | S: Supported | |
2247 | F: drivers/infiniband/hw/cxgb4/ | |
2248 | ||
5c20a5c7 CL |
2249 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
2250 | M: Casey Leedom <leedom@chelsio.com> | |
2251 | L: netdev@vger.kernel.org | |
2252 | W: http://www.chelsio.com | |
2253 | S: Supported | |
f7917c00 | 2254 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
5c20a5c7 | 2255 | |
b52b97a3 GC |
2256 | STMMAC ETHERNET DRIVER |
2257 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> | |
2258 | L: netdev@vger.kernel.org | |
2259 | W: http://www.stlinux.com | |
2260 | S: Supported | |
7ac6653a | 2261 | F: drivers/net/ethernet/stmicro/stmmac/ |
b52b97a3 | 2262 | |
1da177e4 | 2263 | CYBERPRO FB DRIVER |
8b58be88 | 2264 | M: Russell King <linux@arm.linux.org.uk> |
efc03ecb | 2265 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
1da177e4 LT |
2266 | W: http://www.arm.linux.org.uk/ |
2267 | S: Maintained | |
679655da | 2268 | F: drivers/video/cyber2000fb.* |
9fa68eae | 2269 | |
1da177e4 | 2270 | CYCLADES 2X SYNC CARD DRIVER |
8b58be88 | 2271 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
926554c4 | 2272 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 2273 | S: Maintained |
679655da | 2274 | F: drivers/net/wan/cycx* |
1da177e4 LT |
2275 | |
2276 | CYCLADES ASYNC MUX DRIVER | |
1da177e4 | 2277 | W: http://www.cyclades.com/ |
d459883e | 2278 | S: Orphan |
c897401b | 2279 | F: drivers/tty/cyclades.c |
679655da | 2280 | F: include/linux/cyclades.h |
c117ab84 | 2281 | F: include/uapi/linux/cyclades.h |
1da177e4 LT |
2282 | |
2283 | CYCLADES PC300 DRIVER | |
1da177e4 | 2284 | W: http://www.cyclades.com/ |
d459883e | 2285 | S: Orphan |
679655da | 2286 | F: drivers/net/wan/pc300* |
1da177e4 | 2287 | |
e3ae3525 | 2288 | CYTTSP TOUCHSCREEN DRIVER |
6305902c JP |
2289 | M: Javier Martinez Canillas <javier@dowhile0.org> |
2290 | L: linux-input@vger.kernel.org | |
2291 | S: Maintained | |
2292 | F: drivers/input/touchscreen/cyttsp* | |
2293 | F: include/linux/input/cyttsp.h | |
e3ae3525 | 2294 | |
1da177e4 | 2295 | DAMA SLAVE for AX.25 |
8b58be88 | 2296 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
2297 | W: http://yaina.de/jreuter/ |
2298 | W: http://www.qsl.net/dl1bke/ | |
2299 | L: linux-hams@vger.kernel.org | |
2300 | S: Maintained | |
679655da JP |
2301 | F: net/ax25/af_ax25.c |
2302 | F: net/ax25/ax25_dev.c | |
2303 | F: net/ax25/ax25_ds_* | |
2304 | F: net/ax25/ax25_in.c | |
2305 | F: net/ax25/ax25_out.c | |
2306 | F: net/ax25/ax25_timer.c | |
2307 | F: net/ax25/sysctl_net_ax25.c | |
1da177e4 | 2308 | |
e2d1d6c0 | 2309 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
e2d1d6c0 | 2310 | L: netdev@vger.kernel.org |
5ff77428 | 2311 | S: Orphan |
679655da | 2312 | F: Documentation/networking/dmfe.txt |
0f04e2aa | 2313 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
e2d1d6c0 RD |
2314 | |
2315 | DC390/AM53C974 SCSI driver | |
8b58be88 | 2316 | M: Kurt Garloff <garloff@suse.de> |
e2d1d6c0 | 2317 | W: http://www.garloff.de/kurt/linux/dc390/ |
8b58be88 | 2318 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
e2d1d6c0 | 2319 | S: Maintained |
679655da | 2320 | F: drivers/scsi/tmscsim.* |
e2d1d6c0 | 2321 | |
1da177e4 | 2322 | DC395x SCSI driver |
61eee9a7 | 2323 | M: Oliver Neukum <oliver@neukum.org> |
8b58be88 JP |
2324 | M: Ali Akcaagac <aliakc@web.de> |
2325 | M: Jamie Lenehan <lenehan@twibble.org> | |
1da177e4 | 2326 | W: http://twibble.org/dist/dc395x/ |
f5df5881 | 2327 | L: dc395x@twibble.org |
1da177e4 LT |
2328 | L: http://lists.twibble.org/mailman/listinfo/dc395x/ |
2329 | S: Maintained | |
679655da JP |
2330 | F: Documentation/scsi/dc395x.txt |
2331 | F: drivers/scsi/dc395x.* | |
1da177e4 | 2332 | |
eb8edb08 | 2333 | DCCP PROTOCOL |
a89d030e | 2334 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
eb8edb08 | 2335 | L: dccp@vger.kernel.org |
c996d8b9 | 2336 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
eb8edb08 | 2337 | S: Maintained |
679655da | 2338 | F: include/linux/dccp.h |
c117ab84 | 2339 | F: include/uapi/linux/dccp.h |
679655da JP |
2340 | F: include/linux/tfrc.h |
2341 | F: net/dccp/ | |
eb8edb08 | 2342 | |
1da177e4 | 2343 | DECnet NETWORK LAYER |
1da177e4 LT |
2344 | W: http://linux-decnet.sourceforge.net |
2345 | L: linux-decnet-user@lists.sourceforge.net | |
f546444d | 2346 | S: Orphan |
679655da JP |
2347 | F: Documentation/networking/decnet.txt |
2348 | F: net/decnet/ | |
1da177e4 LT |
2349 | |
2350 | DEFXX FDDI NETWORK DRIVER | |
8b58be88 | 2351 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
1da177e4 | 2352 | S: Maintained |
33f810b2 | 2353 | F: drivers/net/fddi/defxx.* |
1da177e4 | 2354 | |
ad8f07cc | 2355 | DELL LAPTOP DRIVER |
8b58be88 | 2356 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
d0944853 | 2357 | L: platform-driver-x86@vger.kernel.org |
ad8f07cc | 2358 | S: Maintained |
679655da | 2359 | F: drivers/platform/x86/dell-laptop.c |
ad8f07cc | 2360 | |
1da177e4 | 2361 | DELL LAPTOP SMM DRIVER |
8b58be88 | 2362 | M: Massimo Dal Zotto <dz@debian.org> |
1da177e4 LT |
2363 | W: http://www.debian.org/~dz/i8k/ |
2364 | S: Maintained | |
679655da | 2365 | F: drivers/char/i8k.c |
c117ab84 | 2366 | F: include/uapi/linux/i8k.h |
1da177e4 | 2367 | |
90563ec4 | 2368 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
8b58be88 | 2369 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
90563ec4 | 2370 | S: Maintained |
679655da JP |
2371 | F: Documentation/dcdbas.txt |
2372 | F: drivers/firmware/dcdbas.* | |
90563ec4 | 2373 | |
0b3f6109 | 2374 | DELL WMI EXTRAS DRIVER |
8b58be88 | 2375 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
0b3f6109 | 2376 | S: Maintained |
36b3a96f | 2377 | F: drivers/platform/x86/dell-wmi.c |
0b3f6109 | 2378 | |
94ab23dd FB |
2379 | DESIGNWARE USB3 DRD IP DRIVER |
2380 | M: Felipe Balbi <balbi@ti.com> | |
2381 | L: linux-usb@vger.kernel.org | |
2382 | L: linux-omap@vger.kernel.org | |
2383 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
2384 | S: Maintained | |
2385 | F: drivers/usb/dwc3/ | |
2386 | ||
89d07767 KP |
2387 | DEVICE FREQUENCY (DEVFREQ) |
2388 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
2389 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
2390 | L: linux-kernel@vger.kernel.org | |
2391 | S: Maintained | |
2392 | F: drivers/devfreq/ | |
2393 | ||
1da177e4 | 2394 | DEVICE NUMBER REGISTRY |
8b58be88 | 2395 | M: Torben Mathiasen <device@lanana.org> |
1da177e4 | 2396 | W: http://lanana.org/docs/device-list/index.html |
1da177e4 LT |
2397 | S: Maintained |
2398 | ||
e2d1d6c0 | 2399 | DEVICE-MAPPER (LVM) |
854ecaad AK |
2400 | M: Alasdair Kergon <agk@redhat.com> |
2401 | M: dm-devel@redhat.com | |
e2d1d6c0 RD |
2402 | L: dm-devel@redhat.com |
2403 | W: http://sources.redhat.com/dm | |
8a6e2535 | 2404 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
854ecaad | 2405 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
e2d1d6c0 | 2406 | S: Maintained |
679655da JP |
2407 | F: Documentation/device-mapper/ |
2408 | F: drivers/md/dm* | |
854ecaad | 2409 | F: drivers/md/persistent-data/ |
679655da JP |
2410 | F: include/linux/device-mapper.h |
2411 | F: include/linux/dm-*.h | |
e2d1d6c0 | 2412 | |
335d7c58 | 2413 | DIOLAN U2C-12 I2C DRIVER |
ca462085 | 2414 | M: Guenter Roeck <linux@roeck-us.net> |
335d7c58 GR |
2415 | L: linux-i2c@vger.kernel.org |
2416 | S: Maintained | |
2417 | F: drivers/i2c/busses/i2c-diolan-u2c.c | |
2418 | ||
e7839f25 | 2419 | DIRECTORY NOTIFICATION (DNOTIFY) |
8b58be88 | 2420 | M: Eric Paris <eparis@parisplace.org> |
3c5119c0 | 2421 | S: Maintained |
679655da JP |
2422 | F: Documentation/filesystems/dnotify.txt |
2423 | F: fs/notify/dnotify/ | |
2424 | F: include/linux/dnotify.h | |
1da177e4 LT |
2425 | |
2426 | DISK GEOMETRY AND PARTITION HANDLING | |
8b58be88 | 2427 | M: Andries Brouwer <aeb@cwi.nl> |
1da177e4 LT |
2428 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
2429 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html | |
2430 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html | |
2431 | S: Maintained | |
2432 | ||
4480f15b | 2433 | DISKQUOTA |
8b58be88 | 2434 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 2435 | S: Maintained |
679655da JP |
2436 | F: Documentation/filesystems/quota.txt |
2437 | F: fs/quota/ | |
2438 | F: include/linux/quota*.h | |
c117ab84 | 2439 | F: include/uapi/linux/quota*.h |
1da177e4 | 2440 | |
702686ad BT |
2441 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
2442 | M: Bernie Thompson <bernie@plugable.com> | |
2443 | L: linux-fbdev@vger.kernel.org | |
2444 | S: Maintained | |
2445 | W: http://plugable.com/category/projects/udlfb/ | |
2446 | F: drivers/video/udlfb.c | |
2447 | F: include/video/udlfb.h | |
2448 | F: Documentation/fb/udlfb.txt | |
2449 | ||
e7839f25 | 2450 | DISTRIBUTED LOCK MANAGER (DLM) |
8b58be88 JP |
2451 | M: Christine Caulfield <ccaulfie@redhat.com> |
2452 | M: David Teigland <teigland@redhat.com> | |
a4644184 | 2453 | L: cluster-devel@redhat.com |
5be7b50f | 2454 | W: http://sources.redhat.com/cluster/ |
54e5881d | 2455 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
5be7b50f | 2456 | S: Supported |
679655da | 2457 | F: fs/dlm/ |
5be7b50f | 2458 | |
53b6b3e0 SS |
2459 | DMA BUFFER SHARING FRAMEWORK |
2460 | M: Sumit Semwal <sumit.semwal@linaro.org> | |
2461 | S: Maintained | |
2462 | L: linux-media@vger.kernel.org | |
2463 | L: dri-devel@lists.freedesktop.org | |
2464 | L: linaro-mm-sig@lists.linaro.org | |
2465 | F: drivers/base/dma-buf* | |
2466 | F: include/linux/dma-buf* | |
2467 | F: Documentation/dma-buf-sharing.txt | |
2468 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git | |
2469 | ||
b3e5f263 | 2470 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
4abed0af | 2471 | M: Vinod Koul <vinod.koul@intel.com> |
1dd8372d | 2472 | M: Dan Williams <djbw@fb.com> |
b3e5f263 | 2473 | S: Supported |
679655da JP |
2474 | F: drivers/dma/ |
2475 | F: include/linux/dma* | |
5dbd05d4 VK |
2476 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git |
2477 | T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) | |
248a9dc3 | 2478 | |
b825037d | 2479 | DME1737 HARDWARE MONITOR DRIVER |
8b58be88 | 2480 | M: Juerg Haefliger <juergh@gmail.com> |
b825037d JH |
2481 | L: lm-sensors@lm-sensors.org |
2482 | S: Maintained | |
679655da JP |
2483 | F: Documentation/hwmon/dme1737 |
2484 | F: drivers/hwmon/dme1737.c | |
b825037d | 2485 | |
5b9c9bf6 | 2486 | DOCKING STATION DRIVER |
8b58be88 | 2487 | M: Shaohua Li <shaohua.li@intel.com> |
5b9c9bf6 | 2488 | L: linux-acpi@vger.kernel.org |
8b59a454 | 2489 | S: Supported |
679655da | 2490 | F: drivers/acpi/dock.c |
5b9c9bf6 | 2491 | |
7d2c86b5 | 2492 | DOCUMENTATION |
5191d566 | 2493 | M: Rob Landley <rob@landley.net> |
795fb7e7 | 2494 | L: linux-doc@vger.kernel.org |
5191d566 | 2495 | T: TBD |
795fb7e7 | 2496 | S: Maintained |
679655da | 2497 | F: Documentation/ |
abbaeff3 | 2498 | |
1da177e4 | 2499 | DOUBLETALK DRIVER |
8b58be88 | 2500 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
1da177e4 LT |
2501 | L: blinux-list@redhat.com |
2502 | S: Maintained | |
679655da JP |
2503 | F: drivers/char/dtlk.c |
2504 | F: include/linux/dtlk.h | |
1da177e4 | 2505 | |
e2d1d6c0 | 2506 | DPT_I2O SCSI RAID DRIVER |
8b58be88 | 2507 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
2508 | L: linux-scsi@vger.kernel.org |
2509 | W: http://www.adaptec.com/ | |
2510 | S: Maintained | |
679655da JP |
2511 | F: drivers/scsi/dpt* |
2512 | F: drivers/scsi/dpt/ | |
e2d1d6c0 | 2513 | |
b411b363 | 2514 | DRBD DRIVER |
28b8e8d4 JP |
2515 | P: Philipp Reisner |
2516 | P: Lars Ellenberg | |
2517 | M: drbd-dev@lists.linbit.com | |
2518 | L: drbd-user@lists.linbit.com | |
2519 | W: http://www.drbd.org | |
2520 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd | |
2521 | T: git git://git.drbd.org/drbd-8.3.git | |
2522 | S: Supported | |
2523 | F: drivers/block/drbd/ | |
2524 | F: lib/lru_cache.c | |
2525 | F: Documentation/blockdev/drbd/ | |
b411b363 | 2526 | |
87544653 | 2527 | DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS |
879a5a00 | 2528 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
08deed1e | 2529 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
1da177e4 | 2530 | S: Supported |
679655da | 2531 | F: Documentation/kobject.txt |
7cfc51b9 | 2532 | F: drivers/base/ |
679655da | 2533 | F: fs/sysfs/ |
87544653 | 2534 | F: fs/debugfs/ |
679655da | 2535 | F: include/linux/kobj* |
87544653 | 2536 | F: include/linux/debugfs.h |
679655da | 2537 | F: lib/kobj* |
1da177e4 LT |
2538 | |
2539 | DRM DRIVERS | |
8b58be88 | 2540 | M: David Airlie <airlied@linux.ie> |
4c6a3999 | 2541 | L: dri-devel@lists.freedesktop.org |
54e5881d | 2542 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git |
1da177e4 | 2543 | S: Maintained |
679655da | 2544 | F: drivers/gpu/drm/ |
850e9411 | 2545 | F: include/drm/ |
c117ab84 | 2546 | F: include/uapi/drm/ |
1da177e4 | 2547 | |
8daf7473 | 2548 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
38e490fe | 2549 | M: Daniel Vetter <daniel.vetter@ffwll.ch> |
cc840f77 | 2550 | L: intel-gfx@lists.freedesktop.org (subscribers-only) |
8daf7473 | 2551 | L: dri-devel@lists.freedesktop.org |
38e490fe | 2552 | T: git git://people.freedesktop.org/~danvet/drm-intel |
8daf7473 CW |
2553 | S: Supported |
2554 | F: drivers/gpu/drm/i915 | |
2555 | F: include/drm/i915* | |
c117ab84 | 2556 | F: include/uapi/drm/i915* |
8daf7473 | 2557 | |
398a6d4a KP |
2558 | DRM DRIVERS FOR EXYNOS |
2559 | M: Inki Dae <inki.dae@samsung.com> | |
f1501303 ID |
2560 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
2561 | M: Seung-Woo Kim <sw0312.kim@samsung.com> | |
2562 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
398a6d4a | 2563 | L: dri-devel@lists.freedesktop.org |
25a58030 | 2564 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
398a6d4a KP |
2565 | S: Supported |
2566 | F: drivers/gpu/drm/exynos | |
2567 | F: include/drm/exynos* | |
c117ab84 | 2568 | F: include/uapi/drm/exynos* |
398a6d4a | 2569 | |
bd3b49f2 TR |
2570 | DRM DRIVERS FOR NVIDIA TEGRA |
2571 | M: Thierry Reding <thierry.reding@avionic-design.de> | |
2572 | L: dri-devel@lists.freedesktop.org | |
2573 | L: linux-tegra@vger.kernel.org | |
2574 | T: git git://gitorious.org/thierryreding/linux.git | |
2575 | S: Maintained | |
2576 | F: drivers/gpu/drm/tegra/ | |
2577 | F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt | |
2578 | ||
1da177e4 | 2579 | DSCC4 DRIVER |
8b58be88 | 2580 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 | 2581 | L: netdev@vger.kernel.org |
1da177e4 | 2582 | S: Maintained |
679655da | 2583 | F: drivers/net/wan/dscc4.c |
1da177e4 | 2584 | |
91952bc0 AP |
2585 | DVB_USB_AF9015 MEDIA DRIVER |
2586 | M: Antti Palosaari <crope@iki.fi> | |
2587 | L: linux-media@vger.kernel.org | |
2588 | W: http://linuxtv.org/ | |
2589 | W: http://palosaari.fi/linux/ | |
2590 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2591 | T: git git://linuxtv.org/anttip/media_tree.git | |
2592 | S: Maintained | |
2593 | F: drivers/media/usb/dvb-usb-v2/af9015* | |
2594 | ||
2595 | DVB_USB_AF9035 MEDIA DRIVER | |
2596 | M: Antti Palosaari <crope@iki.fi> | |
2597 | L: linux-media@vger.kernel.org | |
2598 | W: http://linuxtv.org/ | |
2599 | W: http://palosaari.fi/linux/ | |
2600 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2601 | T: git git://linuxtv.org/anttip/media_tree.git | |
2602 | S: Maintained | |
2603 | F: drivers/media/usb/dvb-usb-v2/af9035* | |
2604 | ||
2605 | DVB_USB_ANYSEE MEDIA DRIVER | |
2606 | M: Antti Palosaari <crope@iki.fi> | |
2607 | L: linux-media@vger.kernel.org | |
2608 | W: http://linuxtv.org/ | |
2609 | W: http://palosaari.fi/linux/ | |
2610 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2611 | T: git git://linuxtv.org/anttip/media_tree.git | |
2612 | S: Maintained | |
2613 | F: drivers/media/usb/dvb-usb-v2/anysee* | |
2614 | ||
2615 | DVB_USB_AU6610 MEDIA DRIVER | |
2616 | M: Antti Palosaari <crope@iki.fi> | |
2617 | L: linux-media@vger.kernel.org | |
2618 | W: http://linuxtv.org/ | |
2619 | W: http://palosaari.fi/linux/ | |
2620 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2621 | T: git git://linuxtv.org/anttip/media_tree.git | |
2622 | S: Maintained | |
2623 | F: drivers/media/usb/dvb-usb-v2/au6610* | |
2624 | ||
2625 | DVB_USB_CE6230 MEDIA DRIVER | |
2626 | M: Antti Palosaari <crope@iki.fi> | |
2627 | L: linux-media@vger.kernel.org | |
2628 | W: http://linuxtv.org/ | |
2629 | W: http://palosaari.fi/linux/ | |
2630 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2631 | T: git git://linuxtv.org/anttip/media_tree.git | |
2632 | S: Maintained | |
2633 | F: drivers/media/usb/dvb-usb-v2/ce6230* | |
2634 | ||
d099dea2 MK |
2635 | DVB_USB_CXUSB MEDIA DRIVER |
2636 | M: Michael Krufky <mkrufky@linuxtv.org> | |
2637 | L: linux-media@vger.kernel.org | |
2638 | W: http://linuxtv.org/ | |
2639 | W: http://github.com/mkrufky | |
2640 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2641 | T: git git://linuxtv.org/media_tree.git | |
2642 | S: Maintained | |
9819da66 | 2643 | F: drivers/media/usb/dvb-usb/cxusb* |
d099dea2 | 2644 | |
91952bc0 AP |
2645 | DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER |
2646 | M: Antti Palosaari <crope@iki.fi> | |
2647 | L: linux-media@vger.kernel.org | |
2648 | W: http://linuxtv.org/ | |
2649 | W: http://palosaari.fi/linux/ | |
2650 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2651 | T: git git://linuxtv.org/anttip/media_tree.git | |
2652 | S: Maintained | |
2653 | F: drivers/media/usb/dvb-usb-v2/cypress_firmware* | |
2654 | ||
2655 | DVB_USB_EC168 MEDIA DRIVER | |
2656 | M: Antti Palosaari <crope@iki.fi> | |
2657 | L: linux-media@vger.kernel.org | |
2658 | W: http://linuxtv.org/ | |
2659 | W: http://palosaari.fi/linux/ | |
2660 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2661 | T: git git://linuxtv.org/anttip/media_tree.git | |
2662 | S: Maintained | |
2663 | F: drivers/media/usb/dvb-usb-v2/ec168* | |
2664 | ||
8856f5f2 MK |
2665 | DVB_USB_MXL111SF MEDIA DRIVER |
2666 | M: Michael Krufky <mkrufky@linuxtv.org> | |
2667 | L: linux-media@vger.kernel.org | |
2668 | W: http://linuxtv.org/ | |
2669 | W: http://github.com/mkrufky | |
2670 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2671 | T: git git://linuxtv.org/mkrufky/mxl111sf.git | |
2672 | S: Maintained | |
2673 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* | |
2674 | ||
91952bc0 AP |
2675 | DVB_USB_RTL28XXU MEDIA DRIVER |
2676 | M: Antti Palosaari <crope@iki.fi> | |
2677 | L: linux-media@vger.kernel.org | |
2678 | W: http://linuxtv.org/ | |
2679 | W: http://palosaari.fi/linux/ | |
2680 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2681 | T: git git://linuxtv.org/anttip/media_tree.git | |
2682 | S: Maintained | |
2683 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* | |
2684 | ||
2685 | DVB_USB_V2 MEDIA DRIVER | |
2686 | M: Antti Palosaari <crope@iki.fi> | |
2687 | L: linux-media@vger.kernel.org | |
2688 | W: http://linuxtv.org/ | |
2689 | W: http://palosaari.fi/linux/ | |
2690 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2691 | T: git git://linuxtv.org/anttip/media_tree.git | |
2692 | S: Maintained | |
2693 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* | |
2694 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c | |
2695 | ||
ac0ac38f JB |
2696 | DYNAMIC DEBUG |
2697 | M: Jason Baron <jbaron@redhat.com> | |
2698 | S: Maintained | |
2699 | F: lib/dynamic_debug.c | |
2700 | F: include/linux/dynamic_debug.h | |
2701 | ||
789c7048 | 2702 | DZ DECSTATION DZ11 SERIAL DRIVER |
8b58be88 | 2703 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
789c7048 | 2704 | S: Maintained |
df621252 | 2705 | F: drivers/tty/serial/dz.* |
789c7048 | 2706 | |
91952bc0 AP |
2707 | E4000 MEDIA DRIVER |
2708 | M: Antti Palosaari <crope@iki.fi> | |
2709 | L: linux-media@vger.kernel.org | |
2710 | W: http://linuxtv.org/ | |
2711 | W: http://palosaari.fi/linux/ | |
2712 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2713 | T: git git://linuxtv.org/anttip/media_tree.git | |
2714 | S: Maintained | |
2715 | F: drivers/media/tuners/e4000* | |
2716 | ||
1da177e4 | 2717 | EATA-DMA SCSI DRIVER |
8b58be88 | 2718 | M: Michael Neuffer <mike@i-Connect.Net> |
7d2c86b5 JP |
2719 | L: linux-eata@i-connect.net |
2720 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 2721 | S: Maintained |
679655da | 2722 | F: drivers/scsi/eata* |
1da177e4 LT |
2723 | |
2724 | EATA ISA/EISA/PCI SCSI DRIVER | |
8b58be88 | 2725 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
2726 | L: linux-scsi@vger.kernel.org |
2727 | S: Maintained | |
679655da | 2728 | F: drivers/scsi/eata.c |
1da177e4 LT |
2729 | |
2730 | EATA-PIO SCSI DRIVER | |
8b58be88 | 2731 | M: Michael Neuffer <mike@i-Connect.Net> |
7d2c86b5 JP |
2732 | L: linux-eata@i-connect.net |
2733 | L: linux-scsi@vger.kernel.org | |
1da177e4 | 2734 | S: Maintained |
679655da | 2735 | F: drivers/scsi/eata_pio.* |
1da177e4 LT |
2736 | |
2737 | EBTABLES | |
8b58be88 | 2738 | M: Bart De Schuymer <bart.de.schuymer@pandora.be> |
d3ab6fde | 2739 | L: netfilter-devel@vger.kernel.org |
1da177e4 LT |
2740 | W: http://ebtables.sourceforge.net/ |
2741 | S: Maintained | |
679655da | 2742 | F: include/linux/netfilter_bridge/ebt_*.h |
c117ab84 | 2743 | F: include/uapi/linux/netfilter_bridge/ebt_*.h |
679655da | 2744 | F: net/bridge/netfilter/ebt*.c |
1da177e4 | 2745 | |
91952bc0 AP |
2746 | EC100 MEDIA DRIVER |
2747 | M: Antti Palosaari <crope@iki.fi> | |
2748 | L: linux-media@vger.kernel.org | |
2749 | W: http://linuxtv.org/ | |
2750 | W: http://palosaari.fi/linux/ | |
2751 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
2752 | T: git git://linuxtv.org/anttip/media_tree.git | |
2753 | S: Maintained | |
2754 | F: drivers/media/dvb-frontends/ec100* | |
2755 | ||
237fead6 | 2756 | ECRYPT FILE SYSTEM |
0de9adf2 | 2757 | M: Tyler Hicks <tyhicks@canonical.com> |
14094198 | 2758 | M: Dustin Kirkland <dustin.kirkland@gazzang.com> |
a058bfbb | 2759 | L: ecryptfs@vger.kernel.org |
6dc7516e | 2760 | W: https://launchpad.net/ecryptfs |
237fead6 | 2761 | S: Supported |
679655da JP |
2762 | F: Documentation/filesystems/ecryptfs.txt |
2763 | F: fs/ecryptfs/ | |
237fead6 | 2764 | |
da9bb1d2 | 2765 | EDAC-CORE |
8b58be88 | 2766 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 2767 | L: linux-edac@vger.kernel.org |
0e438e3f | 2768 | W: bluesmoke.sourceforge.net |
8c2a6a40 | 2769 | S: Supported |
679655da | 2770 | F: Documentation/edac.txt |
91445c72 | 2771 | F: drivers/edac/ |
679655da | 2772 | F: include/linux/edac.h |
0e438e3f | 2773 | |
c476c23b | 2774 | EDAC-AMD64 |
8b58be88 | 2775 | M: Doug Thompson <dougthompson@xmission.com> |
487ba8e8 | 2776 | M: Borislav Petkov <bp@alien8.de> |
91445c72 | 2777 | L: linux-edac@vger.kernel.org |
c476c23b | 2778 | W: bluesmoke.sourceforge.net |
487ba8e8 | 2779 | S: Maintained |
c476c23b BP |
2780 | F: drivers/edac/amd64_edac* |
2781 | ||
f65aad41 RB |
2782 | EDAC-CAVIUM |
2783 | M: Ralf Baechle <ralf@linux-mips.org> | |
2784 | M: David Daney <david.daney@cavium.com> | |
2785 | L: linux-edac@vger.kernel.org | |
2786 | L: linux-mips@linux-mips.org | |
2787 | W: bluesmoke.sourceforge.net | |
2788 | S: Supported | |
2789 | F: drivers/edac/octeon_edac* | |
2790 | ||
0e438e3f | 2791 | EDAC-E752X |
8b58be88 JP |
2792 | M: Mark Gross <mark.gross@intel.com> |
2793 | M: Doug Thompson <dougthompson@xmission.com> | |
91445c72 | 2794 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
2795 | W: bluesmoke.sourceforge.net |
2796 | S: Maintained | |
679655da | 2797 | F: drivers/edac/e752x_edac.c |
0e438e3f DP |
2798 | |
2799 | EDAC-E7XXX | |
8b58be88 | 2800 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 2801 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
2802 | W: bluesmoke.sourceforge.net |
2803 | S: Maintained | |
679655da | 2804 | F: drivers/edac/e7xxx_edac.c |
0e438e3f | 2805 | |
6bc78404 | 2806 | EDAC-I82443BXGX |
8b58be88 | 2807 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 2808 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
2809 | W: bluesmoke.sourceforge.net |
2810 | S: Maintained | |
679655da | 2811 | F: drivers/edac/i82443bxgx_edac.c |
6bc78404 DT |
2812 | |
2813 | EDAC-I3000 | |
8b58be88 | 2814 | M: Jason Uhlenkott <juhlenko@akamai.com> |
91445c72 | 2815 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
2816 | W: bluesmoke.sourceforge.net |
2817 | S: Maintained | |
679655da | 2818 | F: drivers/edac/i3000_edac.c |
6bc78404 DT |
2819 | |
2820 | EDAC-I5000 | |
8b58be88 | 2821 | M: Doug Thompson <dougthompson@xmission.com> |
91445c72 | 2822 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
2823 | W: bluesmoke.sourceforge.net |
2824 | S: Maintained | |
679655da | 2825 | F: drivers/edac/i5000_edac.c |
ba9a5918 | 2826 | |
44c12cb2 | 2827 | EDAC-I5400 |
8b58be88 | 2828 | M: Mauro Carvalho Chehab <mchehab@redhat.com> |
67c89316 | 2829 | L: linux-edac@vger.kernel.org |
44c12cb2 MCC |
2830 | W: bluesmoke.sourceforge.net |
2831 | S: Maintained | |
679655da | 2832 | F: drivers/edac/i5400_edac.c |
44c12cb2 | 2833 | |
3c9c92b6 MCC |
2834 | EDAC-I7300 |
2835 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
2836 | L: linux-edac@vger.kernel.org | |
2837 | W: bluesmoke.sourceforge.net | |
2838 | S: Maintained | |
2839 | F: drivers/edac/i7300_edac.c | |
2840 | ||
67c89316 MCC |
2841 | EDAC-I7CORE |
2842 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
2843 | L: linux-edac@vger.kernel.org | |
2844 | W: bluesmoke.sourceforge.net | |
2845 | S: Maintained | |
70aff0ce | 2846 | F: drivers/edac/i7core_edac.c |
67c89316 | 2847 | |
ba9a5918 | 2848 | EDAC-I82975X |
8b58be88 | 2849 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
25527885 | 2850 | M: "Arvind R." <arvino55@gmail.com> |
91445c72 | 2851 | L: linux-edac@vger.kernel.org |
ba9a5918 DT |
2852 | W: bluesmoke.sourceforge.net |
2853 | S: Maintained | |
679655da | 2854 | F: drivers/edac/i82975x_edac.c |
ba9a5918 DT |
2855 | |
2856 | EDAC-PASEMI | |
8b58be88 | 2857 | M: Egor Martovetsky <egor@pasemi.com> |
91445c72 | 2858 | L: linux-edac@vger.kernel.org |
6bc78404 DT |
2859 | W: bluesmoke.sourceforge.net |
2860 | S: Maintained | |
679655da | 2861 | F: drivers/edac/pasemi_edac.c |
6bc78404 | 2862 | |
0e438e3f | 2863 | EDAC-R82600 |
8b58be88 | 2864 | M: Tim Small <tim@buttersideup.com> |
91445c72 | 2865 | L: linux-edac@vger.kernel.org |
0e438e3f DP |
2866 | W: bluesmoke.sourceforge.net |
2867 | S: Maintained | |
679655da | 2868 | F: drivers/edac/r82600_edac.c |
da9bb1d2 | 2869 | |
4d096ca7 MCC |
2870 | EDAC-SBRIDGE |
2871 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
2872 | L: linux-edac@vger.kernel.org | |
2873 | W: bluesmoke.sourceforge.net | |
2874 | S: Maintained | |
2875 | F: drivers/edac/sb_edac.c | |
2876 | ||
af39917d CL |
2877 | EDIROL UA-101/UA-1000 DRIVER |
2878 | M: Clemens Ladisch <clemens@ladisch.de> | |
2879 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
2880 | T: git git://git.alsa-project.org/alsa-kernel.git | |
2881 | S: Maintained | |
2882 | F: sound/usb/misc/ua101.c | |
2883 | ||
1f7df953 MF |
2884 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
2885 | M: Matt Fleming <matt.fleming@intel.com> | |
2886 | L: linux-efi@vger.kernel.org | |
78bef24e | 2887 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
1f7df953 MF |
2888 | S: Maintained |
2889 | F: Documentation/x86/efi-stub.txt | |
2890 | F: arch/ia64/kernel/efi.c | |
2891 | F: arch/x86/boot/compressed/eboot.[ch] | |
2892 | F: arch/x86/include/asm/efi.h | |
2893 | F: arch/x86/platform/efi/* | |
2894 | F: drivers/firmware/efivars.c | |
2895 | F: include/linux/efi*.h | |
2896 | ||
85a00d9b PJ |
2897 | EFIFB FRAMEBUFFER DRIVER |
2898 | L: linux-fbdev@vger.kernel.org | |
2899 | M: Peter Jones <pjones@redhat.com> | |
2900 | S: Maintained | |
2901 | F: drivers/video/efifb.c | |
2902 | ||
0bee8d28 JT |
2903 | EFS FILESYSTEM |
2904 | W: http://aeschi.ch.eu.org/efs/ | |
2905 | S: Orphan | |
679655da | 2906 | F: fs/efs/ |
0bee8d28 | 2907 | |
4480f15b | 2908 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
8b58be88 JP |
2909 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
2910 | M: Christoph Raisch <raisch@de.ibm.com> | |
e6cc0fd1 | 2911 | L: linux-rdma@vger.kernel.org |
fab97220 | 2912 | S: Supported |
679655da | 2913 | F: drivers/infiniband/hw/ehca/ |
fab97220 | 2914 | |
aa8a9e25 | 2915 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
34b1901a | 2916 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
aa8a9e25 BL |
2917 | L: netdev@vger.kernel.org |
2918 | S: Maintained | |
9aa32835 | 2919 | F: drivers/net/ethernet/ibm/ehea/ |
aa8a9e25 | 2920 | |
f0319efe MCC |
2921 | EM28XX VIDEO4LINUX DRIVER |
2922 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
2923 | L: linux-media@vger.kernel.org | |
2924 | W: http://linuxtv.org | |
2925 | T: git git://linuxtv.org/media_tree.git | |
2926 | S: Maintained | |
2927 | F: drivers/media/usb/em28xx/ | |
2928 | ||
3e3a7d66 | 2929 | EMBEDDED LINUX |
8b58be88 JP |
2930 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
2931 | M: Matt Mackall <mpm@selenic.com> | |
2932 | M: David Woodhouse <dwmw2@infradead.org> | |
3e3a7d66 DW |
2933 | L: linux-embedded@vger.kernel.org |
2934 | S: Maintained | |
2935 | ||
3a1c1d44 | 2936 | EMULEX LPFC FC SCSI DRIVER |
8b58be88 | 2937 | M: James Smart <james.smart@emulex.com> |
ce00f85c JC |
2938 | L: linux-scsi@vger.kernel.org |
2939 | W: http://sourceforge.net/projects/lpfcxxxx | |
2940 | S: Supported | |
679655da | 2941 | F: drivers/scsi/lpfc/ |
3a1c1d44 | 2942 | |
5f5bac82 | 2943 | ENE CB710 FLASH CARD READER DRIVER |
8b58be88 | 2944 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
5f5bac82 MM |
2945 | S: Maintained |
2946 | F: drivers/misc/cb710/ | |
2947 | F: drivers/mmc/host/cb710-mmc.* | |
2948 | F: include/linux/cb710.h | |
2949 | ||
931e39a1 ML |
2950 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
2951 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
2952 | S: Maintained | |
2a837449 | 2953 | F: drivers/media/rc/ene_ir.* |
931e39a1 | 2954 | |
d5ca9006 | 2955 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
8b58be88 | 2956 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
d5ca9006 | 2957 | S: Maintained |
084bad91 | 2958 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
679655da JP |
2959 | F: drivers/video/s1d13xxxfb.c |
2960 | F: include/video/s1d13xxxfb.h | |
d5ca9006 | 2961 | |
1da177e4 | 2962 | ETHEREXPRESS-16 NETWORK DRIVER |
8b58be88 | 2963 | M: Philip Blundell <philb@gnu.org> |
979b6c13 | 2964 | L: netdev@vger.kernel.org |
1da177e4 | 2965 | S: Maintained |
11597885 | 2966 | F: drivers/net/ethernet/i825xx/eexpress.* |
1da177e4 LT |
2967 | |
2968 | ETHERNET BRIDGE | |
adbbf69d | 2969 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 2970 | L: bridge@lists.linux-foundation.org |
4c325313 | 2971 | L: netdev@vger.kernel.org |
c996d8b9 | 2972 | W: http://www.linuxfoundation.org/en/Net:Bridge |
1da177e4 | 2973 | S: Maintained |
679655da JP |
2974 | F: include/linux/netfilter_bridge/ |
2975 | F: net/bridge/ | |
1da177e4 LT |
2976 | |
2977 | ETHERTEAM 16I DRIVER | |
8b58be88 | 2978 | M: Mika Kuoppala <miku@iki.fi> |
1da177e4 | 2979 | S: Maintained |
5346ebf6 | 2980 | F: drivers/net/ethernet/fujitsu/eth16i.c |
1da177e4 LT |
2981 | |
2982 | EXT2 FILE SYSTEM | |
01971952 | 2983 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 2984 | L: linux-ext4@vger.kernel.org |
1da177e4 | 2985 | S: Maintained |
679655da JP |
2986 | F: Documentation/filesystems/ext2.txt |
2987 | F: fs/ext2/ | |
2988 | F: include/linux/ext2* | |
1da177e4 LT |
2989 | |
2990 | EXT3 FILE SYSTEM | |
01971952 | 2991 | M: Jan Kara <jack@suse.cz> |
8b58be88 | 2992 | M: Andrew Morton <akpm@linux-foundation.org> |
3c373a5f | 2993 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf EM |
2994 | L: linux-ext4@vger.kernel.org |
2995 | S: Maintained | |
679655da JP |
2996 | F: Documentation/filesystems/ext3.txt |
2997 | F: fs/ext3/ | |
72be2ccf EM |
2998 | |
2999 | EXT4 FILE SYSTEM | |
8b58be88 | 3000 | M: "Theodore Ts'o" <tytso@mit.edu> |
3c373a5f | 3001 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
72be2ccf | 3002 | L: linux-ext4@vger.kernel.org |
08a225f1 | 3003 | W: http://ext4.wiki.kernel.org |
8a6e2535 | 3004 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
1da177e4 | 3005 | S: Maintained |
679655da JP |
3006 | F: Documentation/filesystems/ext4.txt |
3007 | F: fs/ext4/ | |
1da177e4 | 3008 | |
c5532b09 MZ |
3009 | Extended Verification Module (EVM) |
3010 | M: Mimi Zohar <zohar@us.ibm.com> | |
3011 | S: Supported | |
3012 | F: security/integrity/evm/ | |
3013 | ||
df6b3cfe MH |
3014 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
3015 | M: MyungJoo Ham <myungjoo.ham@samsung.com> | |
3016 | M: Chanwoo Choi <cw00.choi@samsung.com> | |
3017 | L: linux-kernel@vger.kernel.org | |
3018 | S: Maintained | |
3019 | F: drivers/extcon/ | |
3020 | F: Documentation/extcon/ | |
3021 | ||
0a79951a JH |
3022 | EXYNOS DP DRIVER |
3023 | M: Jingoo Han <jg1.han@samsung.com> | |
3024 | L: linux-fbdev@vger.kernel.org | |
3025 | S: Maintained | |
3026 | F: drivers/video/exynos/exynos_dp* | |
a824c73c | 3027 | F: include/video/exynos_dp* |
0a79951a | 3028 | |
33ad3912 DL |
3029 | EXYNOS MIPI DISPLAY DRIVERS |
3030 | M: Inki Dae <inki.dae@samsung.com> | |
3031 | M: Donghwa Lee <dh09.lee@samsung.com> | |
3032 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3033 | L: linux-fbdev@vger.kernel.org | |
3034 | S: Maintained | |
3035 | F: drivers/video/exynos/exynos_mipi* | |
3036 | F: include/video/exynos_mipi* | |
3037 | ||
e53004e2 | 3038 | F71805F HARDWARE MONITORING DRIVER |
8b58be88 | 3039 | M: Jean Delvare <khali@linux-fr.org> |
e53004e2 JD |
3040 | L: lm-sensors@lm-sensors.org |
3041 | S: Maintained | |
679655da JP |
3042 | F: Documentation/hwmon/f71805f |
3043 | F: drivers/hwmon/f71805f.c | |
e53004e2 | 3044 | |
eea977ed MB |
3045 | FC0011 TUNER DRIVER |
3046 | M: Michael Buesch <m@bues.ch> | |
3047 | L: linux-media@vger.kernel.org | |
3048 | S: Maintained | |
ccae7af2 MCC |
3049 | F: drivers/media/tuners/fc0011.h |
3050 | F: drivers/media/tuners/fc0011.c | |
eea977ed | 3051 | |
91952bc0 AP |
3052 | FC2580 MEDIA DRIVER |
3053 | M: Antti Palosaari <crope@iki.fi> | |
3054 | L: linux-media@vger.kernel.org | |
3055 | W: http://linuxtv.org/ | |
3056 | W: http://palosaari.fi/linux/ | |
3057 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3058 | T: git git://linuxtv.org/anttip/media_tree.git | |
3059 | S: Maintained | |
3060 | F: drivers/media/tuners/fc2580* | |
eea977ed | 3061 | |
88b2dbdb EP |
3062 | FANOTIFY |
3063 | M: Eric Paris <eparis@redhat.com> | |
3064 | S: Maintained | |
3065 | F: fs/notify/fanotify/ | |
3066 | F: include/linux/fanotify.h | |
c117ab84 | 3067 | F: include/uapi/linux/fanotify.h |
88b2dbdb | 3068 | |
1da177e4 | 3069 | FARSYNC SYNCHRONOUS DRIVER |
8b58be88 | 3070 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
1da177e4 LT |
3071 | W: http://www.farsite.co.uk/ |
3072 | S: Supported | |
679655da | 3073 | F: drivers/net/wan/farsync.* |
1da177e4 | 3074 | |
c5408b88 | 3075 | FAULT INJECTION SUPPORT |
8b58be88 | 3076 | M: Akinobu Mita <akinobu.mita@gmail.com> |
c5408b88 | 3077 | S: Supported |
679655da JP |
3078 | F: Documentation/fault-injection/ |
3079 | F: lib/fault-inject.c | |
c5408b88 | 3080 | |
cae727db RL |
3081 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
3082 | M: Robert Love <robert.w.love@intel.com> | |
3083 | L: devel@open-fcoe.org | |
3084 | W: www.Open-FCoE.org | |
3085 | S: Supported | |
3086 | F: drivers/scsi/libfc/ | |
3087 | F: drivers/scsi/fcoe/ | |
3088 | F: include/scsi/fc/ | |
3089 | F: include/scsi/libfc.h | |
3090 | F: include/scsi/libfcoe.h | |
c117ab84 | 3091 | F: include/uapi/scsi/fc/ |
cae727db | 3092 | |
e2d1d6c0 | 3093 | FILE LOCKING (flock() and fcntl()/lockf()) |
8b58be88 | 3094 | M: Matthew Wilcox <matthew@wil.cx> |
e2d1d6c0 | 3095 | L: linux-fsdevel@vger.kernel.org |
1da177e4 | 3096 | S: Maintained |
679655da JP |
3097 | F: include/linux/fcntl.h |
3098 | F: include/linux/fs.h | |
c117ab84 CEB |
3099 | F: include/uapi/linux/fcntl.h |
3100 | F: include/uapi/linux/fs.h | |
679655da JP |
3101 | F: fs/fcntl.c |
3102 | F: fs/locks.c | |
1da177e4 | 3103 | |
e2d1d6c0 | 3104 | FILESYSTEMS (VFS and infrastructure) |
8b58be88 | 3105 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
e2d1d6c0 | 3106 | L: linux-fsdevel@vger.kernel.org |
173acc7c | 3107 | S: Maintained |
679655da | 3108 | F: fs/* |
173acc7c | 3109 | |
b26e0ed4 | 3110 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
05576a1e | 3111 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 RV |
3112 | L: lm-sensors@lm-sensors.org |
3113 | S: Maintained | |
d5ca6918 JP |
3114 | F: drivers/hwmon/f75375s.c |
3115 | F: include/linux/f75375s.h | |
b26e0ed4 | 3116 | |
a331b0c3 CL |
3117 | FIREWIRE AUDIO DRIVERS |
3118 | M: Clemens Ladisch <clemens@ladisch.de> | |
3119 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
3120 | T: git git://git.alsa-project.org/alsa-kernel.git | |
3121 | S: Maintained | |
3122 | F: sound/firewire/ | |
3123 | ||
eb86ec51 SR |
3124 | FIREWIRE MEDIA DRIVERS (firedtv) |
3125 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> | |
3126 | L: linux-media@vger.kernel.org | |
3127 | L: linux1394-devel@lists.sourceforge.net | |
3128 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git | |
3129 | S: Maintained | |
3130 | F: drivers/media/firewire/ | |
3131 | ||
a511ce33 CB |
3132 | FIREWIRE SBP-2 TARGET |
3133 | M: Chris Boot <bootc@bootc.net> | |
3134 | L: linux-scsi@vger.kernel.org | |
3135 | L: target-devel@vger.kernel.org | |
3136 | L: linux1394-devel@lists.sourceforge.net | |
3137 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master | |
3138 | S: Maintained | |
3139 | F: drivers/target/sbp/ | |
3140 | ||
7d2c86b5 | 3141 | FIREWIRE SUBSYSTEM |
8b58be88 | 3142 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
e2d1d6c0 | 3143 | L: linux1394-devel@lists.sourceforge.net |
958a29cb | 3144 | W: http://ieee1394.wiki.kernel.org/ |
2ca526bf | 3145 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
e2d1d6c0 | 3146 | S: Maintained |
679655da | 3147 | F: drivers/firewire/ |
8f06ce3b SR |
3148 | F: include/linux/firewire.h |
3149 | F: include/uapi/linux/firewire*.h | |
9f6d3c4b | 3150 | F: tools/firewire/ |
e2d1d6c0 RD |
3151 | |
3152 | FIRMWARE LOADER (request_firmware) | |
39e68089 ML |
3153 | M: Ming Lei <ming.lei@canonical.com> |
3154 | L: linux-kernel@vger.kernel.org | |
3155 | S: Maintained | |
679655da JP |
3156 | F: Documentation/firmware_class/ |
3157 | F: drivers/base/firmware*.c | |
3158 | F: include/linux/firmware.h | |
e2d1d6c0 | 3159 | |
8206f664 JK |
3160 | FLOPPY DRIVER |
3161 | M: Jiri Kosina <jkosina@suse.cz> | |
3162 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git | |
3163 | S: Odd fixes | |
3164 | F: drivers/block/floppy.c | |
3165 | ||
e2d1d6c0 | 3166 | FPU EMULATOR |
8b58be88 | 3167 | M: Bill Metzenthen <billm@melbpc.org.au> |
e769980f | 3168 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
e2d1d6c0 | 3169 | S: Maintained |
679655da | 3170 | F: arch/x86/math-emu/ |
e2d1d6c0 RD |
3171 | |
3172 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) | |
e2d1d6c0 | 3173 | L: netdev@vger.kernel.org |
c173bfac | 3174 | S: Orphan |
679655da JP |
3175 | F: drivers/net/wan/dlci.c |
3176 | F: drivers/net/wan/sdla.c | |
e2d1d6c0 RD |
3177 | |
3178 | FRAMEBUFFER LAYER | |
f9557a44 | 3179 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 3180 | L: linux-fbdev@vger.kernel.org |
e2d1d6c0 | 3181 | W: http://linux-fbdev.sourceforge.net/ |
b22fe37b | 3182 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
f9557a44 | 3183 | T: git git://github.com/schandinat/linux-2.6.git fbdev-next |
56be1416 | 3184 | S: Maintained |
679655da | 3185 | F: Documentation/fb/ |
d958c62c | 3186 | F: Documentation/devicetree/bindings/fb/ |
b22fe37b PM |
3187 | F: drivers/video/ |
3188 | F: include/video/ | |
679655da | 3189 | F: include/linux/fb.h |
c117ab84 CEB |
3190 | F: include/uapi/video/ |
3191 | F: include/uapi/linux/fb.h | |
e2d1d6c0 | 3192 | |
a57c188e | 3193 | FREESCALE DIU FRAMEBUFFER DRIVER |
c4ef9bc4 | 3194 | M: Timur Tabi <timur@tabi.org> |
a57c188e | 3195 | L: linux-fbdev@vger.kernel.org |
c4ef9bc4 | 3196 | S: Maintained |
a57c188e TT |
3197 | F: drivers/video/fsl-diu-fb.* |
3198 | ||
e2d1d6c0 | 3199 | FREESCALE DMA DRIVER |
8b58be88 JP |
3200 | M: Li Yang <leoli@freescale.com> |
3201 | M: Zhang Wei <zw@zh-kernel.org> | |
a4724ed6 | 3202 | L: linuxppc-dev@lists.ozlabs.org |
e2d1d6c0 | 3203 | S: Maintained |
679655da | 3204 | F: drivers/dma/fsldma.* |
e2d1d6c0 RD |
3205 | |
3206 | FREESCALE I2C CPM DRIVER | |
8b58be88 | 3207 | M: Jochen Friedrich <jochen@scram.de> |
a4724ed6 | 3208 | L: linuxppc-dev@lists.ozlabs.org |
846557d3 | 3209 | L: linux-i2c@vger.kernel.org |
0d2b405a | 3210 | S: Maintained |
679655da | 3211 | F: drivers/i2c/busses/i2c-cpm.c |
0d2b405a | 3212 | |
60e8c5ab | 3213 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
8b58be88 | 3214 | M: Sascha Hauer <kernel@pengutronix.de> |
c69f677c | 3215 | L: linux-fbdev@vger.kernel.org |
efc03ecb | 3216 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
60e8c5ab | 3217 | S: Maintained |
bad985a1 | 3218 | F: include/linux/platform_data/video-imxfb.h |
679655da | 3219 | F: drivers/video/imxfb.c |
60e8c5ab | 3220 | |
4689a6b1 | 3221 | FREESCALE SOC FS_ENET DRIVER |
8b58be88 JP |
3222 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
3223 | M: Vitaly Bordug <vbordug@ru.mvista.com> | |
a4724ed6 | 3224 | L: linuxppc-dev@lists.ozlabs.org |
4689a6b1 PA |
3225 | L: netdev@vger.kernel.org |
3226 | S: Maintained | |
ec21e2ec | 3227 | F: drivers/net/ethernet/freescale/fs_enet/ |
679655da | 3228 | F: include/linux/fs_enet_pd.h |
4689a6b1 | 3229 | |
d9e9d82c | 3230 | FREESCALE QUICC ENGINE LIBRARY |
a4724ed6 | 3231 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3232 | S: Orphan |
679655da JP |
3233 | F: arch/powerpc/sysdev/qe_lib/ |
3234 | F: arch/powerpc/include/asm/*qe.h | |
d9e9d82c | 3235 | |
b55ef929 | 3236 | FREESCALE USB PERIPHERAL DRIVERS |
8b58be88 | 3237 | M: Li Yang <leoli@freescale.com> |
6372594a | 3238 | L: linux-usb@vger.kernel.org |
a4724ed6 | 3239 | L: linuxppc-dev@lists.ozlabs.org |
a7205b30 | 3240 | S: Maintained |
5429c731 | 3241 | F: drivers/usb/gadget/fsl* |
a7205b30 | 3242 | |
beaf53bf | 3243 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
8b58be88 | 3244 | M: Li Yang <leoli@freescale.com> |
beaf53bf | 3245 | L: netdev@vger.kernel.org |
a4724ed6 | 3246 | L: linuxppc-dev@lists.ozlabs.org |
beaf53bf | 3247 | S: Maintained |
ec21e2ec | 3248 | F: drivers/net/ethernet/freescale/ucc_geth* |
beaf53bf | 3249 | |
d9e9d82c | 3250 | FREESCALE QUICC ENGINE UCC UART DRIVER |
c4ef9bc4 | 3251 | M: Timur Tabi <timur@tabi.org> |
a4724ed6 | 3252 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3253 | S: Maintained |
df621252 | 3254 | F: drivers/tty/serial/ucc_uart.c |
d9e9d82c TT |
3255 | |
3256 | FREESCALE SOC SOUND DRIVERS | |
c4ef9bc4 | 3257 | M: Timur Tabi <timur@tabi.org> |
93711660 | 3258 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
a4724ed6 | 3259 | L: linuxppc-dev@lists.ozlabs.org |
c4ef9bc4 | 3260 | S: Maintained |
69aefcea JP |
3261 | F: sound/soc/fsl/fsl* |
3262 | F: sound/soc/fsl/mpc8610_hpcd.c | |
d9e9d82c | 3263 | |
1da177e4 | 3264 | FREEVXFS FILESYSTEM |
8b58be88 | 3265 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 LT |
3266 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
3267 | S: Maintained | |
679655da | 3268 | F: fs/freevxfs/ |
1da177e4 | 3269 | |
71038f52 | 3270 | FREEZER |
8b58be88 JP |
3271 | M: Pavel Machek <pavel@ucw.cz> |
3272 | M: "Rafael J. Wysocki" <rjw@sisk.pl> | |
bf1c138e | 3273 | L: linux-pm@vger.kernel.org |
71038f52 | 3274 | S: Supported |
679655da JP |
3275 | F: Documentation/power/freezing-of-tasks.txt |
3276 | F: include/linux/freezer.h | |
3277 | F: kernel/freezer.c | |
71038f52 | 3278 | |
839a1f79 KRW |
3279 | FRONTSWAP API |
3280 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
3281 | L: linux-kernel@vger.kernel.org | |
3282 | S: Maintained | |
3283 | F: mm/frontswap.c | |
3284 | F: include/linux/frontswap.h | |
3285 | ||
a5432f5a | 3286 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
8b58be88 | 3287 | M: David Howells <dhowells@redhat.com> |
a5432f5a DH |
3288 | L: linux-cachefs@redhat.com |
3289 | S: Supported | |
3290 | F: Documentation/filesystems/caching/ | |
3291 | F: fs/fscache/ | |
3292 | F: include/linux/fscache*.h | |
3293 | ||
f58ad8f5 JK |
3294 | F2FS FILE SYSTEM |
3295 | M: Jaegeuk Kim <jaegeuk.kim@samsung.com> | |
3296 | L: linux-f2fs-devel@lists.sourceforge.net | |
3297 | W: http://en.wikipedia.org/wiki/F2FS | |
3298 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git | |
3299 | S: Maintained | |
3300 | F: Documentation/filesystems/f2fs.txt | |
3301 | F: fs/f2fs/ | |
3302 | F: include/linux/f2fs_fs.h | |
3303 | ||
5ab7ffea | 3304 | FUJITSU FR-V (FRV) PORT |
8b58be88 | 3305 | M: David Howells <dhowells@redhat.com> |
1da177e4 | 3306 | S: Maintained |
679655da | 3307 | F: arch/frv/ |
1da177e4 | 3308 | |
20b93734 | 3309 | FUJITSU LAPTOP EXTRAS |
409a3e98 | 3310 | M: Jonathan Woithe <jwoithe@just42.net> |
d0944853 | 3311 | L: platform-driver-x86@vger.kernel.org |
20b93734 | 3312 | S: Maintained |
679655da | 3313 | F: drivers/platform/x86/fujitsu-laptop.c |
20b93734 | 3314 | |
4da621b6 HK |
3315 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
3316 | M: Kyungmin Park <kyungmin.park@samsung.com> | |
3317 | M: Heungjun Kim <riverful.kim@samsung.com> | |
3318 | L: linux-media@vger.kernel.org | |
3319 | S: Maintained | |
90d72ac6 | 3320 | F: drivers/media/i2c/m5mols/ |
4da621b6 HK |
3321 | F: include/media/m5mols.h |
3322 | ||
2d24c490 RG |
3323 | FUJITSU TABLET EXTRAS |
3324 | M: Robert Gerlach <khnz@gmx.de> | |
3325 | L: platform-driver-x86@vger.kernel.org | |
3326 | S: Maintained | |
3327 | F: drivers/platform/x86/fujitsu-tablet.c | |
3328 | ||
04578f17 | 3329 | FUSE: FILESYSTEM IN USERSPACE |
8b58be88 | 3330 | M: Miklos Szeredi <miklos@szeredi.hu> |
04578f17 MS |
3331 | L: fuse-devel@lists.sourceforge.net |
3332 | W: http://fuse.sourceforge.net/ | |
3333 | S: Maintained | |
679655da | 3334 | F: fs/fuse/ |
c117ab84 | 3335 | F: include/uapi/linux/fuse.h |
04578f17 | 3336 | |
1da177e4 | 3337 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
8b58be88 | 3338 | M: Rik Faith <faith@cs.unc.edu> |
1da177e4 | 3339 | L: linux-scsi@vger.kernel.org |
baaea1dc | 3340 | S: Odd Fixes (e.g., new signatures) |
679655da | 3341 | F: drivers/scsi/fdomain.* |
1da177e4 LT |
3342 | |
3343 | GDT SCSI DISK ARRAY CONTROLLER DRIVER | |
8b58be88 | 3344 | M: Achim Leubner <achim_leubner@adaptec.com> |
1da177e4 LT |
3345 | L: linux-scsi@vger.kernel.org |
3346 | W: http://www.icp-vortex.com/ | |
3347 | S: Supported | |
679655da | 3348 | F: drivers/scsi/gdt* |
1da177e4 | 3349 | |
1c23af90 | 3350 | GENERIC GPIO I2C DRIVER |
880b0e26 | 3351 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
1c23af90 | 3352 | S: Supported |
679655da JP |
3353 | F: drivers/i2c/busses/i2c-gpio.c |
3354 | F: include/linux/i2c-gpio.h | |
1c23af90 | 3355 | |
92ed1a76 PK |
3356 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
3357 | M: Peter Korsgaard <peter.korsgaard@barco.com> | |
3358 | L: linux-i2c@vger.kernel.org | |
3359 | S: Supported | |
e7065e20 JD |
3360 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
3361 | F: include/linux/i2c-mux-gpio.h | |
3362 | F: Documentation/i2c/muxes/i2c-mux-gpio | |
92ed1a76 | 3363 | |
9251ce95 | 3364 | GENERIC HDLC (WAN) DRIVERS |
8b58be88 | 3365 | M: Krzysztof Halasa <khc@pm.waw.pl> |
1da177e4 LT |
3366 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
3367 | S: Maintained | |
679655da JP |
3368 | F: drivers/net/wan/c101.c |
3369 | F: drivers/net/wan/hd6457* | |
3370 | F: drivers/net/wan/hdlc* | |
3371 | F: drivers/net/wan/n2.c | |
3372 | F: drivers/net/wan/pc300too.c | |
3373 | F: drivers/net/wan/pci200syn.c | |
3374 | F: drivers/net/wan/wanxl* | |
1da177e4 | 3375 | |
1527aab6 | 3376 | GENERIC INCLUDE/ASM HEADER FILES |
8b58be88 | 3377 | M: Arnd Bergmann <arnd@arndb.de> |
1527aab6 AB |
3378 | L: linux-arch@vger.kernel.org |
3379 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git | |
3380 | S: Maintained | |
3381 | F: include/asm-generic | |
c117ab84 | 3382 | F: include/uapi/asm-generic |
1527aab6 | 3383 | |
ccb86a69 | 3384 | GENERIC UIO DRIVER FOR PCI DEVICES |
bda2562c | 3385 | M: "Michael S. Tsirkin" <mst@redhat.com> |
ccb86a69 | 3386 | L: kvm@vger.kernel.org |
ccb86a69 MT |
3387 | S: Supported |
3388 | F: drivers/uio/uio_pci_generic.c | |
3389 | ||
5be7b50f | 3390 | GFS2 FILE SYSTEM |
8b58be88 | 3391 | M: Steven Whitehouse <swhiteho@redhat.com> |
a4644184 | 3392 | L: cluster-devel@redhat.com |
5be7b50f | 3393 | W: http://sources.redhat.com/cluster/ |
08deed1e JP |
3394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git |
3395 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git | |
5be7b50f | 3396 | S: Supported |
679655da JP |
3397 | F: Documentation/filesystems/gfs2*.txt |
3398 | F: fs/gfs2/ | |
c117ab84 | 3399 | F: include/uapi/linux/gfs2_ondisk.h |
5be7b50f | 3400 | |
0a34eb8f | 3401 | GIGASET ISDN DRIVERS |
8b58be88 JP |
3402 | M: Hansjoerg Lipp <hjlipp@web.de> |
3403 | M: Tilman Schmidt <tilman@imap.cc> | |
0a34eb8f HL |
3404 | L: gigaset307x-common@lists.sourceforge.net |
3405 | W: http://gigaset307x.sourceforge.net/ | |
3406 | S: Maintained | |
679655da JP |
3407 | F: Documentation/isdn/README.gigaset |
3408 | F: drivers/isdn/gigaset/ | |
c117ab84 | 3409 | F: include/uapi/linux/gigaset_dev.h |
0a34eb8f | 3410 | |
a0dc00b4 GL |
3411 | GPIO SUBSYSTEM |
3412 | M: Grant Likely <grant.likely@secretlab.ca> | |
e4651a9f | 3413 | M: Linus Walleij <linus.walleij@linaro.org> |
a0dc00b4 GL |
3414 | S: Maintained |
3415 | T: git git://git.secretlab.ca/git/linux-2.6.git | |
98909cf0 | 3416 | F: Documentation/gpio.txt |
a0dc00b4 GL |
3417 | F: drivers/gpio/ |
3418 | F: include/linux/gpio* | |
9b692346 | 3419 | F: include/asm-generic/gpio.h |
a0dc00b4 | 3420 | |
71a6d0af HW |
3421 | GRE DEMULTIPLEXER DRIVER |
3422 | M: Dmitry Kozlov <xeb@mail.ru> | |
3423 | L: netdev@vger.kernel.org | |
3424 | S: Maintained | |
3425 | F: net/ipv4/gre.c | |
3426 | F: include/net/gre.h | |
3427 | ||
d4c41139 KG |
3428 | GRETH 10/100/1G Ethernet MAC device driver |
3429 | M: Kristoffer Glembo <kristoffer@gaisler.com> | |
3430 | L: netdev@vger.kernel.org | |
3431 | S: Maintained | |
a31a96ad | 3432 | F: drivers/net/ethernet/aeroflex/ |
d4c41139 | 3433 | |
e8deeae2 | 3434 | GSPCA FINEPIX SUBDRIVER |
8b58be88 | 3435 | M: Frank Zago <frank@zago.net> |
661263b5 | 3436 | L: linux-media@vger.kernel.org |
275ffde4 | 3437 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3438 | S: Maintained |
0c0d06ca | 3439 | F: drivers/media/usb/gspca/finepix.c |
e8deeae2 | 3440 | |
4b3fa3c4 OL |
3441 | GSPCA GL860 SUBDRIVER |
3442 | M: Olivier Lorin <o.lorin@laposte.net> | |
3443 | L: linux-media@vger.kernel.org | |
275ffde4 | 3444 | T: git git://linuxtv.org/media_tree.git |
4b3fa3c4 | 3445 | S: Maintained |
0c0d06ca | 3446 | F: drivers/media/usb/gspca/gl860/ |
4b3fa3c4 | 3447 | |
e8deeae2 | 3448 | GSPCA M5602 SUBDRIVER |
8b58be88 | 3449 | M: Erik Andren <erik.andren@gmail.com> |
661263b5 | 3450 | L: linux-media@vger.kernel.org |
275ffde4 | 3451 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3452 | S: Maintained |
0c0d06ca | 3453 | F: drivers/media/usb/gspca/m5602/ |
e8deeae2 JFM |
3454 | |
3455 | GSPCA PAC207 SONIXB SUBDRIVER | |
8b58be88 | 3456 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 3457 | L: linux-media@vger.kernel.org |
275ffde4 | 3458 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3459 | S: Maintained |
0c0d06ca | 3460 | F: drivers/media/usb/gspca/pac207.c |
e8deeae2 | 3461 | |
261982f1 | 3462 | GSPCA SN9C20X SUBDRIVER |
d95c5b0b | 3463 | M: Brian Johnson <brijohn@gmail.com> |
261982f1 | 3464 | L: linux-media@vger.kernel.org |
275ffde4 | 3465 | T: git git://linuxtv.org/media_tree.git |
261982f1 | 3466 | S: Maintained |
0c0d06ca | 3467 | F: drivers/media/usb/gspca/sn9c20x.c |
261982f1 | 3468 | |
e8deeae2 | 3469 | GSPCA T613 SUBDRIVER |
8b58be88 | 3470 | M: Leandro Costantino <lcostantino@gmail.com> |
661263b5 | 3471 | L: linux-media@vger.kernel.org |
275ffde4 | 3472 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3473 | S: Maintained |
0c0d06ca | 3474 | F: drivers/media/usb/gspca/t613.c |
e8deeae2 JFM |
3475 | |
3476 | GSPCA USB WEBCAM DRIVER | |
fc3f906b | 3477 | M: Hans de Goede <hdegoede@redhat.com> |
661263b5 | 3478 | L: linux-media@vger.kernel.org |
275ffde4 | 3479 | T: git git://linuxtv.org/media_tree.git |
e8deeae2 | 3480 | S: Maintained |
0c0d06ca | 3481 | F: drivers/media/usb/gspca/ |
e8deeae2 | 3482 | |
aa3c598b EG |
3483 | STK1160 USB VIDEO CAPTURE DRIVER |
3484 | M: Ezequiel Garcia <elezegarcia@gmail.com> | |
3485 | L: linux-media@vger.kernel.org | |
275ffde4 | 3486 | T: git git://linuxtv.org/media_tree.git |
aa3c598b EG |
3487 | S: Maintained |
3488 | F: drivers/media/usb/stk1160/ | |
e8deeae2 | 3489 | |
71a6d0af HW |
3490 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
3491 | M: Frank Seidel <frank@f-seidel.de> | |
3492 | L: platform-driver-x86@vger.kernel.org | |
3493 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ | |
3494 | S: Maintained | |
3495 | F: drivers/platform/x86/hdaps.c | |
3496 | ||
3497 | HWPOISON MEMORY FAILURE HANDLING | |
3498 | M: Andi Kleen <andi@firstfloor.org> | |
3499 | L: linux-mm@kvack.org | |
3500 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison | |
3501 | S: Maintained | |
3502 | F: mm/memory-failure.c | |
3503 | F: mm/hwpoison-inject.c | |
3504 | ||
3505 | HYPERVISOR VIRTUAL CONSOLE DRIVER | |
3506 | L: linuxppc-dev@lists.ozlabs.org | |
3507 | S: Odd Fixes | |
3508 | F: drivers/tty/hvc/ | |
3509 | ||
5b543965 | 3510 | HARDWARE MONITORING |
9e012c1a | 3511 | M: Jean Delvare <khali@linux-fr.org> |
ca462085 | 3512 | M: Guenter Roeck <linux@roeck-us.net> |
5b543965 | 3513 | L: lm-sensors@lm-sensors.org |
595142e0 | 3514 | W: http://www.lm-sensors.org/ |
9e012c1a | 3515 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ |
885374e3 | 3516 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
9e012c1a | 3517 | S: Maintained |
047f4ec2 | 3518 | F: Documentation/hwmon/ |
679655da | 3519 | F: drivers/hwmon/ |
047f4ec2 | 3520 | F: include/linux/hwmon*.h |
5b543965 | 3521 | |
844dd05f | 3522 | HARDWARE RANDOM NUMBER GENERATOR CORE |
c0d0787b JP |
3523 | M: Matt Mackall <mpm@selenic.com> |
3524 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
3525 | S: Odd fixes | |
679655da JP |
3526 | F: Documentation/hw_random.txt |
3527 | F: drivers/char/hw_random/ | |
3528 | F: include/linux/hw_random.h | |
844dd05f | 3529 | |
8b37fcfc OBC |
3530 | HARDWARE SPINLOCK CORE |
3531 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
3532 | S: Maintained | |
3533 | F: Documentation/hwspinlock.txt | |
3534 | F: drivers/hwspinlock/hwspinlock_* | |
3535 | F: include/linux/hwspinlock.h | |
3536 | ||
1da177e4 | 3537 | HARMONY SOUND DRIVER |
ac6aecbf | 3538 | L: linux-parisc@vger.kernel.org |
1da177e4 | 3539 | S: Maintained |
679655da | 3540 | F: sound/parisc/harmony.* |
1da177e4 | 3541 | |
91952bc0 AP |
3542 | HD29L2 MEDIA DRIVER |
3543 | M: Antti Palosaari <crope@iki.fi> | |
3544 | L: linux-media@vger.kernel.org | |
3545 | W: http://linuxtv.org/ | |
3546 | W: http://palosaari.fi/linux/ | |
3547 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
3548 | T: git git://linuxtv.org/anttip/media_tree.git | |
3549 | S: Maintained | |
3550 | F: drivers/media/dvb-frontends/hd29l2* | |
3551 | ||
e2d1d6c0 | 3552 | HEWLETT-PACKARD SMART2 RAID DRIVER |
8b58be88 | 3553 | M: Chirag Kantharia <chirag.kantharia@hp.com> |
e2d1d6c0 RD |
3554 | L: iss_storagedev@hp.com |
3555 | S: Maintained | |
679655da JP |
3556 | F: Documentation/blockdev/cpqarray.txt |
3557 | F: drivers/block/cpqarray.* | |
e2d1d6c0 | 3558 | |
9257aa49 | 3559 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
706e69d6 | 3560 | M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> |
9257aa49 SC |
3561 | L: iss_storagedev@hp.com |
3562 | S: Supported | |
3563 | F: Documentation/scsi/hpsa.txt | |
3564 | F: drivers/scsi/hpsa*.[ch] | |
3565 | F: include/linux/cciss*.h | |
c117ab84 | 3566 | F: include/uapi/linux/cciss*.h |
9257aa49 | 3567 | |
e2d1d6c0 | 3568 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
8b58be88 | 3569 | M: Mike Miller <mike.miller@hp.com> |
e2d1d6c0 RD |
3570 | L: iss_storagedev@hp.com |
3571 | S: Supported | |
679655da JP |
3572 | F: Documentation/blockdev/cciss.txt |
3573 | F: drivers/block/cciss* | |
3574 | F: include/linux/cciss_ioctl.h | |
c117ab84 | 3575 | F: include/uapi/linux/cciss_ioctl.h |
e2d1d6c0 | 3576 | |
1da177e4 | 3577 | HFS FILESYSTEM |
6cf515e1 GU |
3578 | L: linux-fsdevel@vger.kernel.org |
3579 | S: Orphan | |
679655da JP |
3580 | F: Documentation/filesystems/hfs.txt |
3581 | F: fs/hfs/ | |
1da177e4 LT |
3582 | |
3583 | HGA FRAMEBUFFER DRIVER | |
8b58be88 | 3584 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
1da177e4 LT |
3585 | L: linux-nvidia@lists.surfsouth.com |
3586 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml | |
3587 | S: Maintained | |
679655da | 3588 | F: drivers/video/hgafb.c |
1da177e4 | 3589 | |
4480f15b | 3590 | HIBERNATION (aka Software Suspend, aka swsusp) |
8b58be88 JP |
3591 | M: Pavel Machek <pavel@ucw.cz> |
3592 | M: "Rafael J. Wysocki" <rjw@sisk.pl> | |
bf1c138e | 3593 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 3594 | S: Supported |
679655da JP |
3595 | F: arch/x86/power/ |
3596 | F: drivers/base/power/ | |
3597 | F: kernel/power/ | |
3598 | F: include/linux/suspend.h | |
3599 | F: include/linux/freezer.h | |
3600 | F: include/linux/pm.h | |
679655da | 3601 | F: arch/*/include/asm/suspend*.h |
e2d1d6c0 | 3602 | |
4ef4caad | 3603 | HID CORE LAYER |
8b58be88 | 3604 | M: Jiri Kosina <jkosina@suse.cz> |
eb76c5c0 | 3605 | L: linux-input@vger.kernel.org |
54e5881d | 3606 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
4ef4caad | 3607 | S: Maintained |
679655da JP |
3608 | F: drivers/hid/ |
3609 | F: include/linux/hid* | |
c117ab84 | 3610 | F: include/uapi/linux/hid* |
4ef4caad | 3611 | |
38bed542 | 3612 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
8b58be88 | 3613 | M: Thomas Gleixner <tglx@linutronix.de> |
75fc2d37 | 3614 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
38bed542 | 3615 | S: Maintained |
679655da JP |
3616 | F: Documentation/timers/ |
3617 | F: kernel/hrtimer.c | |
88606e80 TG |
3618 | F: kernel/time/clockevents.c |
3619 | F: kernel/time/tick*.* | |
3620 | F: kernel/time/timer_*.c | |
05ed8490 | 3621 | F: include/linux/clockchips.h |
679655da | 3622 | F: include/linux/hrtimer.h |
38bed542 | 3623 | |
1da177e4 | 3624 | HIGH-SPEED SCC DRIVER FOR AX.25 |
1da177e4 | 3625 | L: linux-hams@vger.kernel.org |
8b64f2a0 | 3626 | S: Orphan |
679655da JP |
3627 | F: drivers/net/hamradio/dmascc.c |
3628 | F: drivers/net/hamradio/scc.c | |
1da177e4 | 3629 | |
ede1e6f8 | 3630 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
8b58be88 | 3631 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
ede1e6f8 HLT |
3632 | W: http://www.highpoint-tech.com |
3633 | S: Supported | |
679655da JP |
3634 | F: Documentation/scsi/hptiop.txt |
3635 | F: drivers/scsi/hptiop.c | |
ede1e6f8 | 3636 | |
1da177e4 | 3637 | HIPPI |
8b58be88 | 3638 | M: Jes Sorensen <jes@trained-monkey.org> |
1da177e4 LT |
3639 | L: linux-hippi@sunsite.dk |
3640 | S: Maintained | |
679655da | 3641 | F: include/linux/hippidevice.h |
c117ab84 | 3642 | F: include/uapi/linux/if_hippi.h |
679655da | 3643 | F: net/802/hippi.c |
ff5a3b50 | 3644 | F: drivers/net/hippi/ |
1da177e4 | 3645 | |
ff1d2767 | 3646 | HOST AP DRIVER |
8b58be88 | 3647 | M: Jouni Malinen <j@w1.fi> |
85d32e7b | 3648 | L: hostap@shmoo.com (subscribers-only) |
724c6b35 | 3649 | L: linux-wireless@vger.kernel.org |
ff1d2767 JM |
3650 | W: http://hostap.epitest.fi/ |
3651 | S: Maintained | |
679655da | 3652 | F: drivers/net/wireless/hostap/ |
ff1d2767 | 3653 | |
dd8cd779 | 3654 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
d0944853 | 3655 | L: platform-driver-x86@vger.kernel.org |
95c70215 | 3656 | S: Orphan |
679655da | 3657 | F: drivers/platform/x86/tc1100-wmi.c |
dd8cd779 | 3658 | |
e2d1d6c0 | 3659 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
8b58be88 | 3660 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 3661 | S: Maintained |
7e25d724 | 3662 | F: drivers/net/ethernet/hp/hp100.* |
e2d1d6c0 | 3663 | |
7d2c86b5 | 3664 | HPET: High Precision Event Timers driver |
8b58be88 | 3665 | M: Clemens Ladisch <clemens@ladisch.de> |
b9b0332f | 3666 | S: Maintained |
679655da JP |
3667 | F: Documentation/timers/hpet.txt |
3668 | F: drivers/char/hpet.c | |
3669 | F: include/linux/hpet.h | |
c117ab84 | 3670 | F: include/uapi/linux/hpet.h |
b9b0332f | 3671 | |
e07b5d79 | 3672 | HPET: x86 |
9c5fb19a | 3673 | M: "Venkatesh Pallipadi (Venki)" <venki@google.com> |
b9b0332f | 3674 | S: Maintained |
679655da JP |
3675 | F: arch/x86/kernel/hpet.c |
3676 | F: arch/x86/include/asm/hpet.h | |
b9b0332f | 3677 | |
1da177e4 | 3678 | HPFS FILESYSTEM |
8b58be88 | 3679 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
1da177e4 LT |
3680 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
3681 | S: Maintained | |
679655da | 3682 | F: fs/hpfs/ |
1da177e4 | 3683 | |
7d2c86b5 | 3684 | HSO 3G MODEM DRIVER |
8b58be88 | 3685 | M: Jan Dumon <j.dumon@option.com> |
11cd29b0 DJB |
3686 | W: http://www.pharscape.org |
3687 | S: Maintained | |
679655da | 3688 | F: drivers/net/usb/hso.c |
11cd29b0 | 3689 | |
5a18c343 | 3690 | HTCPEN TOUCHSCREEN DRIVER |
8b58be88 | 3691 | M: Pau Oliva Fora <pof@eslack.org> |
5a18c343 POF |
3692 | L: linux-input@vger.kernel.org |
3693 | S: Maintained | |
679655da | 3694 | F: drivers/input/touchscreen/htcpen.c |
5a18c343 | 3695 | |
1da177e4 | 3696 | HUGETLB FILESYSTEM |
6d49e352 | 3697 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
1da177e4 | 3698 | S: Maintained |
679655da | 3699 | F: fs/hugetlbfs/ |
1da177e4 | 3700 | |
05183189 S |
3701 | Hyper-V CORE AND DRIVERS |
3702 | M: K. Y. Srinivasan <kys@microsoft.com> | |
3703 | M: Haiyang Zhang <haiyangz@microsoft.com> | |
3704 | L: devel@linuxdriverproject.org | |
3705 | S: Maintained | |
3706 | F: drivers/hv/ | |
3707 | F: drivers/hid/hid-hyperv.c | |
3708 | F: drivers/net/hyperv/ | |
05183189 | 3709 | |
d85c8a6a JD |
3710 | I2C OVER PARALLEL PORT |
3711 | M: Jean Delvare <khali@linux-fr.org> | |
3712 | L: linux-i2c@vger.kernel.org | |
3713 | S: Maintained | |
3714 | F: Documentation/i2c/busses/i2c-parport | |
3715 | F: Documentation/i2c/busses/i2c-parport-light | |
3716 | F: drivers/i2c/busses/i2c-parport.c | |
3717 | F: drivers/i2c/busses/i2c-parport-light.c | |
3718 | ||
3719 | I2C/SMBUS CONTROLLER DRIVERS FOR PC | |
3720 | M: Jean Delvare <khali@linux-fr.org> | |
3721 | L: linux-i2c@vger.kernel.org | |
3722 | S: Maintained | |
3723 | F: Documentation/i2c/busses/i2c-ali1535 | |
3724 | F: Documentation/i2c/busses/i2c-ali1563 | |
3725 | F: Documentation/i2c/busses/i2c-ali15x3 | |
3726 | F: Documentation/i2c/busses/i2c-amd756 | |
3727 | F: Documentation/i2c/busses/i2c-amd8111 | |
3728 | F: Documentation/i2c/busses/i2c-i801 | |
3729 | F: Documentation/i2c/busses/i2c-nforce2 | |
3730 | F: Documentation/i2c/busses/i2c-piix4 | |
3731 | F: Documentation/i2c/busses/i2c-sis5595 | |
3732 | F: Documentation/i2c/busses/i2c-sis630 | |
3733 | F: Documentation/i2c/busses/i2c-sis96x | |
3734 | F: Documentation/i2c/busses/i2c-via | |
3735 | F: Documentation/i2c/busses/i2c-viapro | |
3736 | F: drivers/i2c/busses/i2c-ali1535.c | |
3737 | F: drivers/i2c/busses/i2c-ali1563.c | |
3738 | F: drivers/i2c/busses/i2c-ali15x3.c | |
3739 | F: drivers/i2c/busses/i2c-amd756.c | |
3740 | F: drivers/i2c/busses/i2c-amd756-s4882.c | |
3741 | F: drivers/i2c/busses/i2c-amd8111.c | |
3742 | F: drivers/i2c/busses/i2c-i801.c | |
3743 | F: drivers/i2c/busses/i2c-isch.c | |
3744 | F: drivers/i2c/busses/i2c-nforce2.c | |
3745 | F: drivers/i2c/busses/i2c-nforce2-s4985.c | |
3746 | F: drivers/i2c/busses/i2c-piix4.c | |
3747 | F: drivers/i2c/busses/i2c-sis5595.c | |
3748 | F: drivers/i2c/busses/i2c-sis630.c | |
3749 | F: drivers/i2c/busses/i2c-sis96x.c | |
3750 | F: drivers/i2c/busses/i2c-via.c | |
3751 | F: drivers/i2c/busses/i2c-viapro.c | |
3752 | ||
6ea884db | 3753 | I2C/SMBUS STUB DRIVER |
8b58be88 | 3754 | M: "Mark M. Hoffman" <mhoffman@lightlink.com> |
846557d3 | 3755 | L: linux-i2c@vger.kernel.org |
6ea884db | 3756 | S: Maintained |
8547a5bc | 3757 | F: drivers/i2c/i2c-stub.c |
6ea884db | 3758 | |
5b543965 | 3759 | I2C SUBSYSTEM |
d85c8a6a | 3760 | M: Wolfram Sang <w.sang@pengutronix.de> |
8b58be88 | 3761 | M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org> |
846557d3 | 3762 | L: linux-i2c@vger.kernel.org |
a01064a9 JD |
3763 | W: http://i2c.wiki.kernel.org/ |
3764 | T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ | |
4a5b2b26 | 3765 | T: git git://git.pengutronix.de/git/wsa/linux.git |
1da177e4 | 3766 | S: Maintained |
679655da JP |
3767 | F: Documentation/i2c/ |
3768 | F: drivers/i2c/ | |
3769 | F: include/linux/i2c.h | |
03b70d62 | 3770 | F: include/linux/i2c-*.h |
c117ab84 CEB |
3771 | F: include/uapi/linux/i2c.h |
3772 | F: include/uapi/linux/i2c-*.h | |
1da177e4 | 3773 | |
d85c8a6a JD |
3774 | I2C-TAOS-EVM DRIVER |
3775 | M: Jean Delvare <khali@linux-fr.org> | |
3776 | L: linux-i2c@vger.kernel.org | |
3777 | S: Maintained | |
3778 | F: Documentation/i2c/busses/i2c-taos-evm | |
3779 | F: drivers/i2c/busses/i2c-taos-evm.c | |
3780 | ||
e8c76eed | 3781 | I2C-TINY-USB DRIVER |
8b58be88 | 3782 | M: Till Harbaum <till@harbaum.org> |
846557d3 | 3783 | L: linux-i2c@vger.kernel.org |
932d1872 | 3784 | W: http://www.harbaum.org/till/i2c_tiny_usb |
e8c76eed | 3785 | S: Maintained |
679655da | 3786 | F: drivers/i2c/busses/i2c-tiny-usb.c |
e8c76eed | 3787 | |
1da177e4 | 3788 | i386 BOOT CODE |
8b58be88 | 3789 | M: "H. Peter Anvin" <hpa@zytor.com> |
1da177e4 | 3790 | S: Maintained |
679655da | 3791 | F: arch/x86/boot/ |
1da177e4 LT |
3792 | |
3793 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS | |
8b58be88 | 3794 | M: "H. Peter Anvin" <hpa@zytor.com> |
54e5881d | 3795 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
1da177e4 LT |
3796 | S: Maintained |
3797 | ||
1da177e4 | 3798 | IA64 (Itanium) PLATFORM |
8b58be88 JP |
3799 | M: Tony Luck <tony.luck@intel.com> |
3800 | M: Fenghua Yu <fenghua.yu@intel.com> | |
1da177e4 | 3801 | L: linux-ia64@vger.kernel.org |
6b1c70b1 | 3802 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
1da177e4 | 3803 | S: Maintained |
679655da | 3804 | F: arch/ia64/ |
1da177e4 | 3805 | |
956c203c KY |
3806 | IBM Power in-Nest Crypto Acceleration |
3807 | M: Kent Yoder <key@linux.vnet.ibm.com> | |
3808 | L: linux-crypto@vger.kernel.org | |
3809 | S: Supported | |
3810 | F: drivers/crypto/nx/ | |
3811 | ||
0e16aafb SJ |
3812 | IBM Power 842 compression accelerator |
3813 | M: Robert Jennings <rcj@linux.vnet.ibm.com> | |
3814 | S: Supported | |
3815 | F: drivers/crypto/nx/nx-842.c | |
3816 | F: include/linux/nx842.h | |
3817 | ||
1da177e4 | 3818 | IBM Power Linux RAID adapter |
8b58be88 | 3819 | M: Brian King <brking@us.ibm.com> |
1da177e4 | 3820 | S: Supported |
679655da | 3821 | F: drivers/scsi/ipr.* |
1da177e4 | 3822 | |
9d348af4 SL |
3823 | IBM Power Virtual Ethernet Device Driver |
3824 | M: Santiago Leon <santil@linux.vnet.ibm.com> | |
3825 | L: netdev@vger.kernel.org | |
3826 | S: Supported | |
9aa32835 | 3827 | F: drivers/net/ethernet/ibm/ibmveth.* |
9d348af4 | 3828 | |
4b7652cc RJ |
3829 | IBM Power Virtual SCSI/FC Device Drivers |
3830 | M: Robert Jennings <rcj@linux.vnet.ibm.com> | |
3831 | L: linux-scsi@vger.kernel.org | |
3832 | S: Supported | |
3833 | F: drivers/scsi/ibmvscsi/ | |
3834 | X: drivers/scsi/ibmvscsi/ibmvstgt.c | |
3835 | ||
1da177e4 LT |
3836 | IBM ServeRAID RAID DRIVER |
3837 | P: Jack Hammer | |
8b58be88 | 3838 | M: Dave Jeffery <ipslinux@adaptec.com> |
1da177e4 | 3839 | W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html |
b7eee616 | 3840 | S: Supported |
679655da | 3841 | F: drivers/scsi/ips.* |
1da177e4 | 3842 | |
6ed9f9c4 PT |
3843 | ICH LPC AND GPIO DRIVER |
3844 | M: Peter Tyser <ptyser@xes-inc.com> | |
3845 | S: Maintained | |
3846 | F: drivers/mfd/lpc_ich.c | |
3847 | F: drivers/gpio/gpio-ich.c | |
3848 | ||
1e7106fc | 3849 | IDE SUBSYSTEM |
8b58be88 | 3850 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 3851 | L: linux-ide@vger.kernel.org |
8a6e2535 | 3852 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
08deed1e | 3853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
1da177e4 | 3854 | S: Maintained |
679655da JP |
3855 | F: Documentation/ide/ |
3856 | F: drivers/ide/ | |
3857 | F: include/linux/ide.h | |
1da177e4 | 3858 | |
6cb8c13d IP |
3859 | IDEAPAD LAPTOP EXTRAS DRIVER |
3860 | M: Ike Panhc <ike.pan@canonical.com> | |
3861 | L: platform-driver-x86@vger.kernel.org | |
3862 | W: http://launchpad.net/ideapad-laptop | |
3863 | S: Maintained | |
3864 | F: drivers/platform/x86/ideapad-laptop.c | |
3865 | ||
0f861e8c | 3866 | IDE/ATAPI DRIVERS |
487ba8e8 | 3867 | M: Borislav Petkov <bp@alien8.de> |
9c5b0ce4 | 3868 | L: linux-ide@vger.kernel.org |
c404c199 | 3869 | S: Maintained |
679655da JP |
3870 | F: Documentation/cdrom/ide-cd |
3871 | F: drivers/ide/ide-cd* | |
1da177e4 | 3872 | |
27471fdb | 3873 | IDLE-I7300 |
8b58be88 | 3874 | M: Andy Henroid <andrew.d.henroid@intel.com> |
bf1c138e | 3875 | L: linux-pm@vger.kernel.org |
27471fdb | 3876 | S: Supported |
679655da | 3877 | F: drivers/idle/i7300_idle.c |
27471fdb | 3878 | |
02cf2286 | 3879 | IEEE 802.15.4 SUBSYSTEM |
68653359 | 3880 | M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
8b58be88 | 3881 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
e0af6062 | 3882 | L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) |
02cf2286 | 3883 | W: http://apps.sourceforge.net/trac/linux-zigbee |
a060330e | 3884 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git |
02cf2286 SL |
3885 | S: Maintained |
3886 | F: net/ieee802154/ | |
68653359 | 3887 | F: net/mac802154/ |
251741b1 | 3888 | F: drivers/net/ieee802154/ |
02cf2286 | 3889 | |
40ad4a30 SY |
3890 | IGUANAWORKS USB IR TRANSCEIVER |
3891 | M: Sean Young <sean@mess.org> | |
3892 | L: linux-media@vger.kernel.org | |
3893 | S: Maintained | |
3894 | F: drivers/media/rc/iguanair.c | |
3895 | ||
9545f86e AP |
3896 | IIO SUBSYSTEM AND DRIVERS |
3897 | M: Jonathan Cameron <jic23@cam.ac.uk> | |
3898 | L: linux-iio@vger.kernel.org | |
3899 | S: Maintained | |
03e7c251 | 3900 | F: drivers/iio/ |
9545f86e AP |
3901 | F: drivers/staging/iio/ |
3902 | ||
65519263 SG |
3903 | IKANOS/ADI EAGLE ADSL USB DRIVER |
3904 | M: Matthieu Castet <castet.matthieu@free.fr> | |
3905 | M: Stanislaw Gruszka <stf_xl@wp.pl> | |
3906 | S: Maintained | |
3907 | F: drivers/usb/atm/ueagle-atm.c | |
3908 | ||
14dc124f SIG |
3909 | INDUSTRY PACK SUBSYSTEM (IPACK) |
3910 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> | |
3911 | M: Jens Taprogge <jens.taprogge@taprogge.org> | |
3912 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> | |
3913 | L: industrypack-devel@lists.sourceforge.net | |
3914 | W: http://industrypack.sourceforge.net | |
3915 | S: Maintained | |
3916 | F: drivers/ipack/ | |
3917 | ||
aa7168f4 | 3918 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
8b58be88 | 3919 | M: Mimi Zohar <zohar@us.ibm.com> |
aa7168f4 | 3920 | S: Supported |
679655da | 3921 | F: security/integrity/ima/ |
aa7168f4 | 3922 | |
1da177e4 | 3923 | IMS TWINTURBO FRAMEBUFFER DRIVER |
c69f677c | 3924 | L: linux-fbdev@vger.kernel.org |
843393d3 | 3925 | S: Orphan |
679655da | 3926 | F: drivers/video/imsttfb.c |
1da177e4 LT |
3927 | |
3928 | INFINIBAND SUBSYSTEM | |
db9fd848 | 3929 | M: Roland Dreier <roland@kernel.org> |
8b58be88 JP |
3930 | M: Sean Hefty <sean.hefty@intel.com> |
3931 | M: Hal Rosenstock <hal.rosenstock@gmail.com> | |
e6cc0fd1 | 3932 | L: linux-rdma@vger.kernel.org |
605841f5 | 3933 | W: http://www.openfabrics.org/ |
8a6e2535 | 3934 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
54e5881d | 3935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git |
1da177e4 | 3936 | S: Supported |
679655da JP |
3937 | F: Documentation/infiniband/ |
3938 | F: drivers/infiniband/ | |
c117ab84 | 3939 | F: include/uapi/linux/if_infiniband.h |
1da177e4 | 3940 | |
c9f04f58 | 3941 | INOTIFY |
8b58be88 JP |
3942 | M: John McCutchan <john@johnmccutchan.com> |
3943 | M: Robert Love <rlove@rlove.org> | |
3944 | M: Eric Paris <eparis@parisplace.org> | |
c9f04f58 | 3945 | S: Maintained |
679655da JP |
3946 | F: Documentation/filesystems/inotify.txt |
3947 | F: fs/notify/inotify/ | |
3948 | F: include/linux/inotify.h | |
c117ab84 | 3949 | F: include/uapi/linux/inotify.h |
c9f04f58 | 3950 | |
e2d1d6c0 | 3951 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
8b58be88 JP |
3952 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
3953 | M: Dmitry Torokhov <dtor@mail.ru> | |
e2d1d6c0 | 3954 | L: linux-input@vger.kernel.org |
8a6e2535 | 3955 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
54e5881d | 3956 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
e2d1d6c0 | 3957 | S: Maintained |
679655da | 3958 | F: drivers/input/ |
f4eea7e2 | 3959 | F: include/linux/input.h |
c117ab84 | 3960 | F: include/uapi/linux/input.h |
f4eea7e2 | 3961 | F: include/linux/input/ |
e2d1d6c0 | 3962 | |
3267a87f HR |
3963 | INPUT MULTITOUCH (MT) PROTOCOL |
3964 | M: Henrik Rydberg <rydberg@euromail.se> | |
3965 | L: linux-input@vger.kernel.org | |
7f9c2454 | 3966 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git |
3267a87f HR |
3967 | S: Maintained |
3968 | F: Documentation/input/multi-touch-protocol.txt | |
7f9c2454 | 3969 | F: drivers/input/input-mt.c |
3267a87f HR |
3970 | K: \b(ABS|SYN)_MT_ |
3971 | ||
4ac13e17 DJ |
3972 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
3973 | M: Intel SCU Linux support <intel-linux-scu@intel.com> | |
7106891a DJ |
3974 | M: Lukasz Dorau <lukasz.dorau@intel.com> |
3975 | M: Maciej Patelczyk <maciej.patelczyk@intel.com> | |
4ac13e17 | 3976 | M: Dave Jiang <dave.jiang@intel.com> |
4ac13e17 | 3977 | L: linux-scsi@vger.kernel.org |
7106891a DJ |
3978 | T: git git://git.code.sf.net/p/intel-sas/isci |
3979 | S: Supported | |
4ac13e17 | 3980 | F: drivers/scsi/isci/ |
4ac13e17 | 3981 | |
26717172 LB |
3982 | INTEL IDLE DRIVER |
3983 | M: Len Brown <lenb@kernel.org> | |
bf1c138e | 3984 | L: linux-pm@vger.kernel.org |
08deed1e | 3985 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
26717172 LB |
3986 | S: Supported |
3987 | F: drivers/idle/intel_idle.c | |
3988 | ||
9eb8ef74 | 3989 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
55a23c4a | 3990 | M: Maik Broemme <mbroemme@plusserver.de> |
c69f677c | 3991 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 3992 | S: Maintained |
679655da JP |
3993 | F: Documentation/fb/intelfb.txt |
3994 | F: drivers/video/intelfb/ | |
9eb8ef74 | 3995 | |
1da177e4 | 3996 | INTEL 810/815 FRAMEBUFFER DRIVER |
8b58be88 | 3997 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 3998 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 3999 | S: Maintained |
679655da | 4000 | F: drivers/video/i810/ |
1da177e4 | 4001 | |
f4a9bc4c | 4002 | INTEL MENLOW THERMAL DRIVER |
8b58be88 | 4003 | M: Sujith Thomas <sujith.thomas@intel.com> |
d0944853 | 4004 | L: platform-driver-x86@vger.kernel.org |
f4a9bc4c TS |
4005 | W: http://www.lesswatts.org/projects/acpi/ |
4006 | S: Supported | |
679655da | 4007 | F: drivers/platform/x86/intel_menlow.c |
f4a9bc4c | 4008 | |
1da177e4 | 4009 | INTEL IA32 MICROCODE UPDATE SUPPORT |
8b58be88 | 4010 | M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> |
1da177e4 | 4011 | S: Maintained |
679655da JP |
4012 | F: arch/x86/kernel/microcode_core.c |
4013 | F: arch/x86/kernel/microcode_intel.c | |
1da177e4 | 4014 | |
248a9dc3 | 4015 | INTEL I/OAT DMA DRIVER |
1dd8372d DW |
4016 | M: Dan Williams <djbw@fb.com> |
4017 | S: Maintained | |
679655da | 4018 | F: drivers/dma/ioat* |
248a9dc3 | 4019 | |
6c8909b4 | 4020 | INTEL IOMMU (VT-d) |
8b58be88 | 4021 | M: David Woodhouse <dwmw2@infradead.org> |
6c8909b4 | 4022 | L: iommu@lists.linux-foundation.org |
54e5881d | 4023 | T: git git://git.infradead.org/iommu-2.6.git |
6c8909b4 | 4024 | S: Supported |
3fb39615 | 4025 | F: drivers/iommu/intel-iommu.c |
679655da | 4026 | F: include/linux/intel-iommu.h |
6c8909b4 | 4027 | |
b3e5f263 | 4028 | INTEL IOP-ADMA DMA DRIVER |
1dd8372d DW |
4029 | M: Dan Williams <djbw@fb.com> |
4030 | S: Odd fixes | |
679655da | 4031 | F: drivers/dma/iop-adma.c |
b3e5f263 | 4032 | |
9251ce95 | 4033 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
8b58be88 | 4034 | M: Krzysztof Halasa <khc@pm.waw.pl> |
9251ce95 | 4035 | S: Maintained |
679655da JP |
4036 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
4037 | F: arch/arm/mach-ixp4xx/include/mach/npe.h | |
4038 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c | |
4039 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c | |
b47da977 | 4040 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
679655da | 4041 | F: drivers/net/wan/ixp4xx_hss.c |
9251ce95 | 4042 | |
844dd05f | 4043 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
8b58be88 | 4044 | M: Deepak Saxena <dsaxena@plexity.net> |
844dd05f | 4045 | S: Maintained |
679655da | 4046 | F: drivers/char/hw_random/ixp4xx-rng.c |
844dd05f | 4047 | |
0d164401 | 4048 | INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) |
8b58be88 JP |
4049 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
4050 | M: Jesse Brandeburg <jesse.brandeburg@intel.com> | |
4051 | M: Bruce Allan <bruce.w.allan@intel.com> | |
0d164401 JK |
4052 | M: Carolyn Wyborny <carolyn.wyborny@intel.com> |
4053 | M: Don Skidmore <donald.c.skidmore@intel.com> | |
4054 | M: Greg Rose <gregory.v.rose@intel.com> | |
dee1ad47 | 4055 | M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> |
0d164401 | 4056 | M: Alex Duyck <alexander.h.duyck@intel.com> |
8b58be88 | 4057 | M: John Ronciak <john.ronciak@intel.com> |
f6fde11a | 4058 | M: Tushar Dave <tushar.n.dave@intel.com> |
dcd01faf | 4059 | L: e1000-devel@lists.sourceforge.net |
f6fde11a | 4060 | W: http://www.intel.com/support/feedback.htm |
d94e6fed | 4061 | W: http://e1000.sourceforge.net/ |
dee1ad47 JK |
4062 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git |
4063 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git | |
1da177e4 | 4064 | S: Supported |
0d164401 JK |
4065 | F: Documentation/networking/e100.txt |
4066 | F: Documentation/networking/e1000.txt | |
4067 | F: Documentation/networking/e1000e.txt | |
4068 | F: Documentation/networking/igb.txt | |
4069 | F: Documentation/networking/igbvf.txt | |
4070 | F: Documentation/networking/ixgb.txt | |
4071 | F: Documentation/networking/ixgbe.txt | |
4072 | F: Documentation/networking/ixgbevf.txt | |
dee1ad47 | 4073 | F: drivers/net/ethernet/intel/ |
1da177e4 | 4074 | |
ca907a90 SY |
4075 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
4076 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> | |
724c6b35 | 4077 | L: linux-wireless@vger.kernel.org |
ca907a90 | 4078 | S: Maintained |
679655da | 4079 | F: Documentation/networking/README.ipw2100 |
679655da | 4080 | F: Documentation/networking/README.ipw2200 |
ca907a90 | 4081 | F: drivers/net/wireless/ipw2x00/ |
826d2abe | 4082 | |
4bd96a7a | 4083 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
e9b7d7c8 GW |
4084 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
4085 | M: Gang Wei <gang.wei@intel.com> | |
4bd96a7a SW |
4086 | M: Shane Wang <shane.wang@intel.com> |
4087 | L: tboot-devel@lists.sourceforge.net | |
4088 | W: http://tboot.sourceforge.net | |
e9b7d7c8 | 4089 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
4bd96a7a SW |
4090 | S: Supported |
4091 | F: Documentation/intel_txt.txt | |
4092 | F: include/linux/tboot.h | |
4093 | F: arch/x86/kernel/tboot.c | |
4094 | ||
8a70da82 | 4095 | INTEL WIRELESS WIMAX CONNECTION 2400 |
8b58be88 | 4096 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 IPG |
4097 | M: linux-wimax@intel.com |
4098 | L: wimax@linuxwimax.org | |
4099 | S: Supported | |
4100 | W: http://linuxwimax.org | |
679655da JP |
4101 | F: Documentation/wimax/README.i2400m |
4102 | F: drivers/net/wimax/i2400m/ | |
c117ab84 | 4103 | F: include/uapi/linux/wimax/i2400m.h |
8a70da82 | 4104 | |
1c0ce89c SG |
4105 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
4106 | M: Stanislaw Gruszka <sgruszka@redhat.com> | |
efa3144e | 4107 | L: linux-wireless@vger.kernel.org |
1c0ce89c | 4108 | S: Supported |
efa3144e WYG |
4109 | F: drivers/net/wireless/iwlegacy/ |
4110 | ||
b481de9c | 4111 | INTEL WIRELESS WIFI LINK (iwlwifi) |
15fae50a | 4112 | M: Johannes Berg <johannes.berg@intel.com> |
9edc71b7 | 4113 | M: Wey-Yi Guy <wey-yi.w.guy@intel.com> |
a0bf797f | 4114 | M: Intel Linux Wireless <ilw@linux.intel.com> |
b481de9c | 4115 | L: linux-wireless@vger.kernel.org |
b481de9c | 4116 | W: http://intellinuxwireless.org |
b62ff718 | 4117 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
b481de9c | 4118 | S: Supported |
679655da | 4119 | F: drivers/net/wireless/iwlwifi/ |
b481de9c | 4120 | |
de8fe023 TW |
4121 | INTEL MANAGEMENT ENGINE (mei) |
4122 | M: Tomas Winkler <tomas.winkler@intel.com> | |
4123 | L: linux-kernel@vger.kernel.org | |
4124 | S: Supported | |
c117ab84 | 4125 | F: include/uapi/linux/mei.h |
de8fe023 | 4126 | F: drivers/misc/mei/* |
e07950a1 | 4127 | F: Documentation/misc-devices/mei/* |
de8fe023 | 4128 | |
cb109a0e | 4129 | IOC3 ETHERNET DRIVER |
8b58be88 | 4130 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 LT |
4131 | L: linux-mips@linux-mips.org |
4132 | S: Maintained | |
8862bf1e | 4133 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
1da177e4 | 4134 | |
cb109a0e | 4135 | IOC3 SERIAL DRIVER |
8b58be88 | 4136 | M: Pat Gefre <pfg@sgi.com> |
d39e0721 | 4137 | L: linux-serial@vger.kernel.org |
cb109a0e | 4138 | S: Maintained |
df621252 | 4139 | F: drivers/tty/serial/ioc3_serial.c |
cb109a0e | 4140 | |
4480f15b | 4141 | IP MASQUERADING |
8b58be88 | 4142 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
1da177e4 | 4143 | S: Maintained |
679655da | 4144 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
1da177e4 | 4145 | |
1202d6ff | 4146 | IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER |
8b58be88 JP |
4147 | M: Francois Romieu <romieu@fr.zoreil.com> |
4148 | M: Sorbica Shieh <sorbica@icplus.com.tw> | |
1202d6ff FR |
4149 | L: netdev@vger.kernel.org |
4150 | S: Maintained | |
7443713a | 4151 | F: drivers/net/ethernet/icplus/ipg.* |
1202d6ff | 4152 | |
4480f15b | 4153 | IPATH DRIVER |
8473c603 | 4154 | M: Mike Marciniszyn <infinipath@intel.com> |
e6cc0fd1 | 4155 | L: linux-rdma@vger.kernel.org |
52a09a04 | 4156 | S: Maintained |
679655da | 4157 | F: drivers/infiniband/hw/ipath/ |
77d8798b | 4158 | |
4409ebe9 | 4159 | IPMI SUBSYSTEM |
8b58be88 | 4160 | M: Corey Minyard <minyard@acm.org> |
b0c90653 | 4161 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
4409ebe9 CM |
4162 | W: http://openipmi.sourceforge.net/ |
4163 | S: Supported | |
679655da JP |
4164 | F: Documentation/IPMI.txt |
4165 | F: drivers/char/ipmi/ | |
4166 | F: include/linux/ipmi* | |
c117ab84 | 4167 | F: include/uapi/linux/ipmi* |
4409ebe9 | 4168 | |
e2d1d6c0 | 4169 | IPS SCSI RAID DRIVER |
8b58be88 | 4170 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
e2d1d6c0 RD |
4171 | L: linux-scsi@vger.kernel.org |
4172 | W: http://www.adaptec.com/ | |
4173 | S: Maintained | |
679655da | 4174 | F: drivers/scsi/ips* |
e2d1d6c0 RD |
4175 | |
4176 | IPVS | |
8b58be88 JP |
4177 | M: Wensong Zhang <wensong@linux-vs.org> |
4178 | M: Simon Horman <horms@verge.net.au> | |
4179 | M: Julian Anastasov <ja@ssi.bg> | |
979b6c13 | 4180 | L: netdev@vger.kernel.org |
e2d1d6c0 | 4181 | L: lvs-devel@vger.kernel.org |
1da177e4 | 4182 | S: Maintained |
679655da | 4183 | F: Documentation/networking/ipvs-sysctl.txt |
b61d4a71 | 4184 | F: include/net/ip_vs.h |
c117ab84 | 4185 | F: include/uapi/linux/ip_vs.h |
679655da | 4186 | F: net/netfilter/ipvs/ |
1da177e4 | 4187 | |
e7839f25 | 4188 | IPWIRELESS DRIVER |
8b58be88 JP |
4189 | M: Jiri Kosina <jkosina@suse.cz> |
4190 | M: David Sterba <dsterba@suse.cz> | |
92094aa0 | 4191 | S: Odd Fixes |
282361a0 | 4192 | F: drivers/tty/ipwireless/ |
099dc4fb | 4193 | |
e2d1d6c0 | 4194 | IPX NETWORK LAYER |
8b58be88 | 4195 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 RD |
4196 | L: netdev@vger.kernel.org |
4197 | S: Maintained | |
679655da | 4198 | F: include/net/ipx.h |
c117ab84 | 4199 | F: include/uapi/linux/ipx.h |
679655da | 4200 | F: net/ipx/ |
e2d1d6c0 | 4201 | |
1da177e4 | 4202 | IRDA SUBSYSTEM |
8b58be88 | 4203 | M: Samuel Ortiz <samuel@sortiz.org> |
a2ac953d | 4204 | L: irda-users@lists.sourceforge.net (subscribers-only) |
ced649ea | 4205 | L: netdev@vger.kernel.org |
1da177e4 | 4206 | W: http://irda.sourceforge.net/ |
f353976d | 4207 | S: Maintained |
e0057975 | 4208 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
679655da JP |
4209 | F: Documentation/networking/irda.txt |
4210 | F: drivers/net/irda/ | |
4211 | F: include/net/irda/ | |
4212 | F: net/irda/ | |
1da177e4 | 4213 | |
a800c7cc TG |
4214 | IRQ SUBSYSTEM |
4215 | M: Thomas Gleixner <tglx@linutronix.de> | |
4216 | S: Maintained | |
75fc2d37 | 4217 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
a800c7cc TG |
4218 | F: kernel/irq/ |
4219 | ||
7ab3a837 GL |
4220 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
4221 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> | |
4222 | M: Grant Likely <grant.likely@secretlab.ca> | |
4223 | T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next | |
4224 | S: Maintained | |
4225 | F: Documentation/IRQ-domain.txt | |
4226 | F: include/linux/irqdomain.h | |
4227 | F: kernel/irq/irqdomain.c | |
4228 | ||
e2d1d6c0 | 4229 | ISAPNP |
8b58be88 | 4230 | M: Jaroslav Kysela <perex@perex.cz> |
e2d1d6c0 | 4231 | S: Maintained |
679655da JP |
4232 | F: Documentation/isapnp.txt |
4233 | F: drivers/pnp/isapnp/ | |
4234 | F: include/linux/isapnp.h | |
e2d1d6c0 | 4235 | |
71a6d0af HW |
4236 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
4237 | M: Peter Jones <pjones@redhat.com> | |
4238 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> | |
4239 | S: Maintained | |
4240 | F: drivers/firmware/iscsi_ibft* | |
4241 | ||
14816b1e | 4242 | ISCSI |
8b58be88 | 4243 | M: Mike Christie <michaelc@cs.wisc.edu> |
14816b1e MC |
4244 | L: open-iscsi@googlegroups.com |
4245 | W: www.open-iscsi.org | |
54e5881d | 4246 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
14816b1e | 4247 | S: Maintained |
679655da JP |
4248 | F: drivers/scsi/*iscsi* |
4249 | F: include/scsi/*iscsi* | |
14816b1e | 4250 | |
1da177e4 | 4251 | ISDN SUBSYSTEM |
8b58be88 | 4252 | M: Karsten Keil <isdn@linux-pingi.de> |
d5d52273 | 4253 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
3da0ae62 | 4254 | L: netdev@vger.kernel.org |
1da177e4 | 4255 | W: http://www.isdn4linux.de |
54e5881d | 4256 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
1da177e4 | 4257 | S: Maintained |
679655da JP |
4258 | F: Documentation/isdn/ |
4259 | F: drivers/isdn/ | |
4260 | F: include/linux/isdn.h | |
4261 | F: include/linux/isdn/ | |
c117ab84 CEB |
4262 | F: include/uapi/linux/isdn.h |
4263 | F: include/uapi/linux/isdn/ | |
1da177e4 LT |
4264 | |
4265 | ISDN SUBSYSTEM (Eicon active card driver) | |
8b58be88 | 4266 | M: Armin Schindler <mac@melware.de> |
d5d52273 | 4267 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
1da177e4 LT |
4268 | W: http://www.melware.de |
4269 | S: Maintained | |
679655da | 4270 | F: drivers/isdn/hardware/eicon/ |
1da177e4 | 4271 | |
d624870f JD |
4272 | IT87 HARDWARE MONITORING DRIVER |
4273 | M: Jean Delvare <khali@linux-fr.org> | |
4274 | L: lm-sensors@lm-sensors.org | |
4275 | S: Maintained | |
4276 | F: Documentation/hwmon/it87 | |
4277 | F: drivers/hwmon/it87.c | |
4278 | ||
68620bdd MP |
4279 | IT913X MEDIA DRIVER |
4280 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4281 | L: linux-media@vger.kernel.org | |
4282 | W: http://linuxtv.org/ | |
4283 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4284 | S: Maintained | |
4285 | F: drivers/media/usb/dvb-usb-v2/it913x* | |
4286 | ||
4287 | IT913X FE MEDIA DRIVER | |
4288 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4289 | L: linux-media@vger.kernel.org | |
4290 | W: http://linuxtv.org/ | |
4291 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4292 | S: Maintained | |
4293 | F: drivers/media/dvb-frontends/it913x-fe* | |
4294 | ||
91821ff3 | 4295 | IVTV VIDEO4LINUX DRIVER |
6afdeaf8 | 4296 | M: Andy Walls <awalls@md.metrocast.net> |
c4240509 | 4297 | L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) |
661263b5 | 4298 | L: linux-media@vger.kernel.org |
275ffde4 | 4299 | T: git git://linuxtv.org/media_tree.git |
91821ff3 HV |
4300 | W: http://www.ivtvdriver.org |
4301 | S: Maintained | |
679655da | 4302 | F: Documentation/video4linux/*.ivtv |
90d72ac6 | 4303 | F: drivers/media/pci/ivtv/ |
c117ab84 | 4304 | F: include/uapi/linux/ivtv* |
91821ff3 | 4305 | |
68620bdd MP |
4306 | IX2505V MEDIA DRIVER |
4307 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4308 | L: linux-media@vger.kernel.org | |
4309 | W: http://linuxtv.org/ | |
4310 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4311 | S: Maintained | |
4312 | F: drivers/media/dvb-frontends/ix2505v* | |
4313 | ||
4453d736 GR |
4314 | JC42.4 TEMPERATURE SENSOR DRIVER |
4315 | M: Guenter Roeck <linux@roeck-us.net> | |
4316 | L: lm-sensors@lm-sensors.org | |
4317 | S: Maintained | |
4318 | F: drivers/hwmon/jc42.c | |
4319 | F: Documentation/hwmon/jc42 | |
4320 | ||
e2d1d6c0 | 4321 | JFS FILESYSTEM |
3256f80f | 4322 | M: Dave Kleikamp <shaggy@kernel.org> |
e2d1d6c0 RD |
4323 | L: jfs-discussion@lists.sourceforge.net |
4324 | W: http://jfs.sourceforge.net/ | |
54e5881d | 4325 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
8f8f0134 | 4326 | S: Maintained |
679655da JP |
4327 | F: Documentation/filesystems/jfs.txt |
4328 | F: fs/jfs/ | |
e2d1d6c0 | 4329 | |
95252236 | 4330 | JME NETWORK DRIVER |
8b58be88 | 4331 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
95252236 GFT |
4332 | L: netdev@vger.kernel.org |
4333 | S: Maintained | |
63d24a0e | 4334 | F: drivers/net/ethernet/jme.* |
95252236 | 4335 | |
1da177e4 | 4336 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
8b58be88 | 4337 | M: David Woodhouse <dwmw2@infradead.org> |
6d85d066 DW |
4338 | L: linux-mtd@lists.infradead.org |
4339 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html | |
1da177e4 | 4340 | S: Maintained |
679655da | 4341 | F: fs/jffs2/ |
c117ab84 | 4342 | F: include/uapi/linux/jffs2.h |
1da177e4 | 4343 | |
de456d37 | 4344 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD) |
8b58be88 | 4345 | M: Andrew Morton <akpm@linux-foundation.org> |
19003c18 | 4346 | M: Jan Kara <jack@suse.cz> |
72be2ccf | 4347 | L: linux-ext4@vger.kernel.org |
ae0718f8 | 4348 | S: Maintained |
d183e11a | 4349 | F: fs/jbd/ |
d183e11a TT |
4350 | F: include/linux/jbd.h |
4351 | ||
4352 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) | |
4353 | M: "Theodore Ts'o" <tytso@mit.edu> | |
4354 | L: linux-ext4@vger.kernel.org | |
4355 | S: Maintained | |
4356 | F: fs/jbd2/ | |
4357 | F: include/linux/jbd2.h | |
ae0718f8 | 4358 | |
fd8b6cb4 | 4359 | JSM Neo PCI based serial card |
52b3bfc6 | 4360 | M: Lucas Tavares <lucaskt@linux.vnet.ibm.com> |
fd8b6cb4 BL |
4361 | L: linux-serial@vger.kernel.org |
4362 | S: Maintained | |
df621252 | 4363 | F: drivers/tty/serial/jsm/ |
ae0718f8 | 4364 | |
af39917d CL |
4365 | K10TEMP HARDWARE MONITORING DRIVER |
4366 | M: Clemens Ladisch <clemens@ladisch.de> | |
4367 | L: lm-sensors@lm-sensors.org | |
4368 | S: Maintained | |
4369 | F: Documentation/hwmon/k10temp | |
4370 | F: drivers/hwmon/k10temp.c | |
4371 | ||
4660cb35 | 4372 | K8TEMP HARDWARE MONITORING DRIVER |
8b58be88 | 4373 | M: Rudolf Marek <r.marek@assembler.cz> |
4660cb35 | 4374 | L: lm-sensors@lm-sensors.org |
ae0718f8 | 4375 | S: Maintained |
679655da JP |
4376 | F: Documentation/hwmon/k8temp |
4377 | F: drivers/hwmon/k8temp.c | |
ae0718f8 | 4378 | |
1da177e4 | 4379 | KCONFIG |
76ce94a3 | 4380 | M: Michal Marek <mmarek@suse.cz> |
347d12d7 | 4381 | L: linux-kbuild@vger.kernel.org |
76ce94a3 | 4382 | S: Odd Fixes |
679655da JP |
4383 | F: Documentation/kbuild/kconfig-language.txt |
4384 | F: scripts/kconfig/ | |
1da177e4 | 4385 | |
ea6c2089 | 4386 | KDUMP |
8b58be88 JP |
4387 | M: Vivek Goyal <vgoyal@redhat.com> |
4388 | M: Haren Myneni <hbabu@us.ibm.com> | |
34633993 | 4389 | L: kexec@lists.infradead.org |
ea6c2089 VG |
4390 | W: http://lse.sourceforge.net/kdump/ |
4391 | S: Maintained | |
80811493 | 4392 | F: Documentation/kdump/ |
ea6c2089 | 4393 | |
1da177e4 | 4394 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
8b58be88 | 4395 | M: Ian Kent <raven@themaw.net> |
f694fc97 | 4396 | L: autofs@vger.kernel.org |
1da177e4 | 4397 | S: Maintained |
679655da | 4398 | F: fs/autofs4/ |
1da177e4 | 4399 | |
70fb7ba6 | 4400 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
5ce45962 | 4401 | M: Michal Marek <mmarek@suse.cz> |
08deed1e JP |
4402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
4403 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes | |
347d12d7 | 4404 | L: linux-kbuild@vger.kernel.org |
5ce45962 | 4405 | S: Maintained |
679655da JP |
4406 | F: Documentation/kbuild/ |
4407 | F: Makefile | |
4408 | F: scripts/Makefile.* | |
70fb7ba6 MM |
4409 | F: scripts/basic/ |
4410 | F: scripts/mk* | |
4411 | F: scripts/package/ | |
1da177e4 LT |
4412 | |
4413 | KERNEL JANITORS | |
c3000e03 | 4414 | L: kernel-janitors@vger.kernel.org |
10466f5a | 4415 | W: http://kernelnewbies.org/KernelJanitors |
ee709b0c | 4416 | S: Odd Fixes |
1da177e4 | 4417 | |
e8b43555 | 4418 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
8b58be88 | 4419 | M: "J. Bruce Fields" <bfields@fieldses.org> |
16141c02 | 4420 | L: linux-nfs@vger.kernel.org |
1da177e4 | 4421 | W: http://nfs.sourceforge.net/ |
98fac23f | 4422 | S: Supported |
679655da JP |
4423 | F: fs/nfsd/ |
4424 | F: include/linux/nfsd/ | |
c117ab84 | 4425 | F: include/uapi/linux/nfsd/ |
679655da JP |
4426 | F: fs/lockd/ |
4427 | F: fs/nfs_common/ | |
4428 | F: net/sunrpc/ | |
4429 | F: include/linux/lockd/ | |
4430 | F: include/linux/sunrpc/ | |
c117ab84 | 4431 | F: include/uapi/linux/sunrpc/ |
1da177e4 | 4432 | |
426d62e2 | 4433 | KERNEL VIRTUAL MACHINE (KVM) |
8e616fc8 | 4434 | M: Marcelo Tosatti <mtosatti@redhat.com> |
484cbfd2 | 4435 | M: Gleb Natapov <gleb@redhat.com> |
1fc9d2bf AK |
4436 | L: kvm@vger.kernel.org |
4437 | W: http://kvm.qumranet.com | |
426d62e2 | 4438 | S: Supported |
679655da JP |
4439 | F: Documentation/*/kvm.txt |
4440 | F: arch/*/kvm/ | |
4441 | F: arch/*/include/asm/kvm* | |
4442 | F: include/linux/kvm* | |
c117ab84 | 4443 | F: include/uapi/linux/kvm* |
679655da | 4444 | F: virt/kvm/ |
426d62e2 | 4445 | |
ad8003d3 | 4446 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
7de609c8 | 4447 | M: Joerg Roedel <joro@8bytes.org> |
1fc9d2bf AK |
4448 | L: kvm@vger.kernel.org |
4449 | W: http://kvm.qumranet.com | |
7de609c8 | 4450 | S: Maintained |
679655da | 4451 | F: arch/x86/include/asm/svm.h |
679655da | 4452 | F: arch/x86/kvm/svm.c |
426d62e2 | 4453 | |
513014b7 | 4454 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
ddf0289d | 4455 | M: Alexander Graf <agraf@suse.de> |
1fc9d2bf AK |
4456 | L: kvm-ppc@vger.kernel.org |
4457 | W: http://kvm.qumranet.com | |
6a7f972d | 4458 | T: git git://github.com/agraf/linux-2.6.git |
513014b7 | 4459 | S: Supported |
679655da JP |
4460 | F: arch/powerpc/include/asm/kvm* |
4461 | F: arch/powerpc/kvm/ | |
513014b7 | 4462 | |
1fc9d2bf | 4463 | KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) |
8b58be88 | 4464 | M: Xiantao Zhang <xiantao.zhang@intel.com> |
1fc9d2bf AK |
4465 | L: kvm-ia64@vger.kernel.org |
4466 | W: http://kvm.qumranet.com | |
920ed9f1 | 4467 | S: Supported |
679655da JP |
4468 | F: Documentation/ia64/kvm.txt |
4469 | F: arch/ia64/include/asm/kvm* | |
4470 | F: arch/ia64/kvm/ | |
920ed9f1 | 4471 | |
85f8fffe | 4472 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
8b58be88 | 4473 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
4ae57b6c | 4474 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
85f8fffe CB |
4475 | M: linux390@de.ibm.com |
4476 | L: linux-s390@vger.kernel.org | |
4477 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
4478 | S: Supported | |
679655da JP |
4479 | F: Documentation/s390/kvm.txt |
4480 | F: arch/s390/include/asm/kvm* | |
80811493 | 4481 | F: arch/s390/kvm/ |
a968cd3e | 4482 | F: drivers/s390/kvm/ |
85f8fffe | 4483 | |
dc009d92 | 4484 | KEXEC |
8b58be88 | 4485 | M: Eric Biederman <ebiederm@xmission.com> |
2f327dad | 4486 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
34633993 | 4487 | L: kexec@lists.infradead.org |
dc009d92 | 4488 | S: Maintained |
679655da | 4489 | F: include/linux/kexec.h |
c117ab84 | 4490 | F: include/uapi/linux/kexec.h |
679655da | 4491 | F: kernel/kexec.c |
dc009d92 | 4492 | |
e971461f DH |
4493 | KEYS/KEYRINGS: |
4494 | M: David Howells <dhowells@redhat.com> | |
4495 | L: keyrings@linux-nfs.org | |
4496 | S: Maintained | |
d410fa4e | 4497 | F: Documentation/security/keys.txt |
e971461f DH |
4498 | F: include/linux/key.h |
4499 | F: include/linux/key-type.h | |
4500 | F: include/keys/ | |
4501 | F: security/keys/ | |
4502 | ||
7f3c68be MZ |
4503 | KEYS-TRUSTED |
4504 | M: David Safford <safford@watson.ibm.com> | |
4505 | M: Mimi Zohar <zohar@us.ibm.com> | |
4506 | L: linux-security-module@vger.kernel.org | |
4507 | L: keyrings@linux-nfs.org | |
4508 | S: Supported | |
d410fa4e | 4509 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be MZ |
4510 | F: include/keys/trusted-type.h |
4511 | F: security/keys/trusted.c | |
4512 | F: security/keys/trusted.h | |
4513 | ||
4514 | KEYS-ENCRYPTED | |
4515 | M: Mimi Zohar <zohar@us.ibm.com> | |
4516 | M: David Safford <safford@watson.ibm.com> | |
4517 | L: linux-security-module@vger.kernel.org | |
4518 | L: keyrings@linux-nfs.org | |
4519 | S: Supported | |
d410fa4e | 4520 | F: Documentation/security/keys-trusted-encrypted.txt |
7f3c68be | 4521 | F: include/keys/encrypted-type.h |
19c90aa6 | 4522 | F: security/keys/encrypted-keys/ |
7f3c68be | 4523 | |
5b778dad | 4524 | KGDB / KDB /debug_core |
8b58be88 | 4525 | M: Jason Wessel <jason.wessel@windriver.com> |
4063eb5f | 4526 | W: http://kgdb.wiki.kernel.org/ |
e3e2aaf7 JW |
4527 | L: kgdb-bugreport@lists.sourceforge.net |
4528 | S: Maintained | |
679655da JP |
4529 | F: Documentation/DocBook/kgdb.tmpl |
4530 | F: drivers/misc/kgdbts.c | |
df621252 | 4531 | F: drivers/tty/serial/kgdboc.c |
5b778dad | 4532 | F: include/linux/kdb.h |
679655da | 4533 | F: include/linux/kgdb.h |
4063eb5f | 4534 | F: kernel/debug/ |
e3e2aaf7 | 4535 | |
456db8cc | 4536 | KMEMCHECK |
8b58be88 | 4537 | M: Vegard Nossum <vegardno@ifi.uio.no> |
2ed1c525 | 4538 | M: Pekka Enberg <penberg@kernel.org> |
b9ce08c0 | 4539 | S: Maintained |
410d7a97 JP |
4540 | F: Documentation/kmemcheck.txt |
4541 | F: arch/x86/include/asm/kmemcheck.h | |
4542 | F: arch/x86/mm/kmemcheck/ | |
4543 | F: include/linux/kmemcheck.h | |
4544 | F: mm/kmemcheck.c | |
b9ce08c0 | 4545 | |
c3bb4d24 | 4546 | KMEMLEAK |
8b58be88 | 4547 | M: Catalin Marinas <catalin.marinas@arm.com> |
c3bb4d24 CM |
4548 | S: Maintained |
4549 | F: Documentation/kmemleak.txt | |
4550 | F: include/linux/kmemleak.h | |
4551 | F: mm/kmemleak.c | |
4552 | F: mm/kmemleak-test.c | |
4553 | ||
89559a61 | 4554 | KPROBES |
8b58be88 JP |
4555 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
4556 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> | |
4557 | M: "David S. Miller" <davem@davemloft.net> | |
97c29e74 | 4558 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
89559a61 | 4559 | S: Maintained |
679655da JP |
4560 | F: Documentation/kprobes.txt |
4561 | F: include/linux/kprobes.h | |
4562 | F: kernel/kprobes.c | |
89559a61 | 4563 | |
70e84049 | 4564 | KS0108 LCD CONTROLLER DRIVER |
8b58be88 | 4565 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
450c622e MO |
4566 | W: http://miguelojeda.es/auxdisplay.htm |
4567 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm | |
70e84049 | 4568 | S: Maintained |
679655da JP |
4569 | F: Documentation/auxdisplay/ks0108 |
4570 | F: drivers/auxdisplay/ks0108.c | |
4571 | F: include/linux/ks0108.h | |
70e84049 | 4572 | |
1da177e4 | 4573 | LAPB module |
1da177e4 | 4574 | L: linux-x25@vger.kernel.org |
bf9915cc | 4575 | S: Orphan |
679655da JP |
4576 | F: Documentation/networking/lapb-module.txt |
4577 | F: include/*/lapb.h | |
4578 | F: net/lapb/ | |
1da177e4 LT |
4579 | |
4580 | LASI 53c700 driver for PARISC | |
8b58be88 | 4581 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
4582 | L: linux-scsi@vger.kernel.org |
4583 | S: Maintained | |
679655da JP |
4584 | F: Documentation/scsi/53c700.txt |
4585 | F: drivers/scsi/53c700* | |
1da177e4 | 4586 | |
263de9b5 | 4587 | LED SUBSYSTEM |
c772fc26 | 4588 | M: Bryan Wu <cooloney@gmail.com> |
8b58be88 | 4589 | M: Richard Purdie <rpurdie@rpsys.net> |
aa69cb8c BW |
4590 | L: linux-leds@vger.kernel.org |
4591 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git | |
263de9b5 | 4592 | S: Maintained |
679655da JP |
4593 | F: drivers/leds/ |
4594 | F: include/linux/leds.h | |
263de9b5 | 4595 | |
b0461a44 JD |
4596 | LEGACY EEPROM DRIVER |
4597 | M: Jean Delvare <khali@linux-fr.org> | |
4598 | S: Maintained | |
4599 | F: Documentation/misc-devices/eeprom | |
4600 | F: drivers/misc/eeprom/eeprom.c | |
4601 | ||
1da177e4 | 4602 | LEGO USB Tower driver |
8b58be88 | 4603 | M: Juergen Stuber <starblue@users.sourceforge.net> |
1da177e4 LT |
4604 | L: legousb-devel@lists.sourceforge.net |
4605 | W: http://legousb.sourceforge.net/ | |
4606 | S: Maintained | |
679655da | 4607 | F: drivers/usb/misc/legousbtower.c |
1da177e4 | 4608 | |
055616a8 MK |
4609 | LG2160 MEDIA DRIVER |
4610 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4611 | L: linux-media@vger.kernel.org | |
4612 | W: http://linuxtv.org/ | |
4613 | W: http://github.com/mkrufky | |
4614 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4615 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4616 | S: Maintained | |
4617 | F: drivers/media/dvb-frontends/lg2160.* | |
4618 | ||
6f0e7725 MK |
4619 | LGDT3305 MEDIA DRIVER |
4620 | M: Michael Krufky <mkrufky@linuxtv.org> | |
4621 | L: linux-media@vger.kernel.org | |
4622 | W: http://linuxtv.org/ | |
4623 | W: http://github.com/mkrufky | |
4624 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4625 | T: git git://linuxtv.org/mkrufky/tuners.git | |
4626 | S: Maintained | |
4627 | F: drivers/media/dvb-frontends/lgdt3305.* | |
4628 | ||
568a17ff | 4629 | LGUEST |
8b58be88 | 4630 | M: Rusty Russell <rusty@rustcorp.com.au> |
a4724ed6 | 4631 | L: lguest@lists.ozlabs.org |
568a17ff | 4632 | W: http://lguest.ozlabs.org/ |
72e91863 | 4633 | S: Odd Fixes |
070f420b | 4634 | F: arch/x86/include/asm/lguest*.h |
679655da JP |
4635 | F: arch/x86/lguest/ |
4636 | F: drivers/lguest/ | |
4637 | F: include/linux/lguest*.h | |
070f420b | 4638 | F: tools/lguest/ |
568a17ff | 4639 | |
1da177e4 | 4640 | LINUX FOR IBM pSERIES (RS/6000) |
8b58be88 | 4641 | M: Paul Mackerras <paulus@au.ibm.com> |
1da177e4 LT |
4642 | W: http://www.ibm.com/linux/ltc/projects/ppc |
4643 | S: Supported | |
11c34c7d | 4644 | F: arch/powerpc/boot/rs6000.h |
1da177e4 | 4645 | |
852bb9f5 | 4646 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
8b58be88 JP |
4647 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
4648 | M: Paul Mackerras <paulus@samba.org> | |
1da177e4 | 4649 | W: http://www.penguinppc.org/ |
a4724ed6 | 4650 | L: linuxppc-dev@lists.ozlabs.org |
8a6e2535 | 4651 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
54e5881d | 4652 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git |
1da177e4 | 4653 | S: Supported |
11c34c7d JP |
4654 | F: Documentation/powerpc/ |
4655 | F: arch/powerpc/ | |
1da177e4 LT |
4656 | |
4657 | LINUX FOR POWER MACINTOSH | |
8b58be88 | 4658 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
1da177e4 | 4659 | W: http://www.penguinppc.org/ |
a4724ed6 | 4660 | L: linuxppc-dev@lists.ozlabs.org |
1da177e4 | 4661 | S: Maintained |
11c34c7d JP |
4662 | F: arch/powerpc/platforms/powermac/ |
4663 | F: drivers/macintosh/ | |
1da177e4 | 4664 | |
77a76369 | 4665 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
a149507b | 4666 | M: Anatolij Gustschin <agust@denx.de> |
a4724ed6 | 4667 | L: linuxppc-dev@lists.ozlabs.org |
a149507b | 4668 | T: git git://git.denx.de/linux-2.6-agust.git |
1da177e4 | 4669 | S: Maintained |
11c34c7d JP |
4670 | F: arch/powerpc/platforms/512x/ |
4671 | F: arch/powerpc/platforms/52xx/ | |
1da177e4 LT |
4672 | |
4673 | LINUX FOR POWERPC EMBEDDED PPC4XX | |
3052091c | 4674 | M: Josh Boyer <jwboyer@gmail.com> |
8b58be88 | 4675 | M: Matt Porter <mporter@kernel.crashing.org> |
1da177e4 | 4676 | W: http://www.penguinppc.org/ |
a4724ed6 | 4677 | L: linuxppc-dev@lists.ozlabs.org |
645609c0 | 4678 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git |
1da177e4 | 4679 | S: Maintained |
11c34c7d JP |
4680 | F: arch/powerpc/platforms/40x/ |
4681 | F: arch/powerpc/platforms/44x/ | |
1da177e4 | 4682 | |
260c02a9 | 4683 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
8b58be88 | 4684 | M: Grant Likely <grant.likely@secretlab.ca> |
f210d43c | 4685 | W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex |
a4724ed6 | 4686 | L: linuxppc-dev@lists.ozlabs.org |
9d37a90f | 4687 | T: git git://git.secretlab.ca/git/linux-2.6.git |
1da177e4 | 4688 | S: Maintained |
11c34c7d JP |
4689 | F: arch/powerpc/*/*virtex* |
4690 | F: arch/powerpc/*/*/*virtex* | |
1da177e4 | 4691 | |
e93adf1e | 4692 | LINUX FOR POWERPC EMBEDDED PPC8XX |
8b58be88 JP |
4693 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
4694 | M: Marcelo Tosatti <marcelo@kvack.org> | |
e93adf1e | 4695 | W: http://www.penguinppc.org/ |
a4724ed6 | 4696 | L: linuxppc-dev@lists.ozlabs.org |
e93adf1e | 4697 | S: Maintained |
a2b1f7c8 | 4698 | F: arch/powerpc/platforms/8xx/ |
e93adf1e | 4699 | |
1da177e4 | 4700 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
8b58be88 | 4701 | M: Kumar Gala <galak@kernel.crashing.org> |
ce00f85c | 4702 | W: http://www.penguinppc.org/ |
a4724ed6 | 4703 | L: linuxppc-dev@lists.ozlabs.org |
ce00f85c | 4704 | S: Maintained |
11c34c7d | 4705 | F: arch/powerpc/platforms/83xx/ |
4c8f581d | 4706 | F: arch/powerpc/platforms/85xx/ |
1da177e4 | 4707 | |
ab06ff3a | 4708 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
8b58be88 | 4709 | M: Olof Johansson <olof@lixom.net> |
a4724ed6 | 4710 | L: linuxppc-dev@lists.ozlabs.org |
92e19709 | 4711 | S: Maintained |
11c34c7d JP |
4712 | F: arch/powerpc/platforms/pasemi/ |
4713 | F: drivers/*/*pasemi* | |
4714 | F: drivers/*/*/*pasemi* | |
ab06ff3a | 4715 | |
1da177e4 | 4716 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
8b58be88 | 4717 | M: Chris Wright <chrisw@sous-sol.org> |
1a4520be | 4718 | L: linux-security-module@vger.kernel.org |
1da177e4 LT |
4719 | S: Supported |
4720 | ||
a23ce6da HW |
4721 | LIS3LV02D ACCELEROMETER DRIVER |
4722 | M: Eric Piel <eric.piel@tremplin-utc.net> | |
4723 | S: Maintained | |
ff606677 JD |
4724 | F: Documentation/misc-devices/lis3lv02d |
4725 | F: drivers/misc/lis3lv02d/ | |
bd35665f | 4726 | F: drivers/platform/x86/hp_accel.c |
a23ce6da | 4727 | |
e2d1d6c0 | 4728 | LLC (802.2) |
8b58be88 | 4729 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
e2d1d6c0 | 4730 | S: Maintained |
679655da | 4731 | F: include/linux/llc.h |
c117ab84 | 4732 | F: include/uapi/linux/llc.h |
679655da JP |
4733 | F: include/net/llc* |
4734 | F: net/llc/ | |
e2d1d6c0 | 4735 | |
4e233cbe AD |
4736 | LM73 HARDWARE MONITOR DRIVER |
4737 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> | |
4738 | L: lm-sensors@lm-sensors.org | |
4739 | S: Maintained | |
4740 | F: drivers/hwmon/lm73.c | |
4741 | ||
156e2d1a JD |
4742 | LM78 HARDWARE MONITOR DRIVER |
4743 | M: Jean Delvare <khali@linux-fr.org> | |
4744 | L: lm-sensors@lm-sensors.org | |
4745 | S: Maintained | |
4746 | F: Documentation/hwmon/lm78 | |
4747 | F: drivers/hwmon/lm78.c | |
4748 | ||
1da177e4 | 4749 | LM83 HARDWARE MONITOR DRIVER |
8b58be88 | 4750 | M: Jean Delvare <khali@linux-fr.org> |
cc0b07ed | 4751 | L: lm-sensors@lm-sensors.org |
1da177e4 | 4752 | S: Maintained |
679655da JP |
4753 | F: Documentation/hwmon/lm83 |
4754 | F: drivers/hwmon/lm83.c | |
1da177e4 LT |
4755 | |
4756 | LM90 HARDWARE MONITOR DRIVER | |
8b58be88 | 4757 | M: Jean Delvare <khali@linux-fr.org> |
cc0b07ed | 4758 | L: lm-sensors@lm-sensors.org |
1da177e4 | 4759 | S: Maintained |
679655da JP |
4760 | F: Documentation/hwmon/lm90 |
4761 | F: drivers/hwmon/lm90.c | |
1da177e4 | 4762 | |
68620bdd MP |
4763 | LME2510 MEDIA DRIVER |
4764 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4765 | L: linux-media@vger.kernel.org | |
4766 | W: http://linuxtv.org/ | |
4767 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4768 | S: Maintained | |
4769 | F: drivers/media/usb/dvb-usb-v2/lmedm04* | |
4770 | ||
512e67f9 | 4771 | LOCKDEP AND LOCKSTAT |
8b58be88 JP |
4772 | M: Peter Zijlstra <peterz@infradead.org> |
4773 | M: Ingo Molnar <mingo@redhat.com> | |
75fc2d37 | 4774 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
512e67f9 | 4775 | S: Maintained |
679655da JP |
4776 | F: Documentation/lockdep*.txt |
4777 | F: Documentation/lockstat.txt | |
4778 | F: include/linux/lockdep.h | |
4779 | F: kernel/lockdep* | |
512e67f9 | 4780 | |
dde33348 | 4781 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
8b58be88 | 4782 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
dde33348 AA |
4783 | L: linux-ntfs-dev@lists.sourceforge.net |
4784 | W: http://www.linux-ntfs.org/content/view/19/37/ | |
1da177e4 | 4785 | S: Maintained |
679655da | 4786 | F: Documentation/ldm.txt |
20d16fef | 4787 | F: block/partitions/ldm.* |
1da177e4 | 4788 | |
ef6ada3d JE |
4789 | LogFS |
4790 | M: Joern Engel <joern@logfs.org> | |
756ccb3c | 4791 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
ef6ada3d JE |
4792 | L: logfs@logfs.org |
4793 | W: logfs.org | |
4794 | S: Maintained | |
4795 | F: fs/logfs/ | |
4796 | ||
c87e34ef | 4797 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
500c152a | 4798 | M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com> |
4799 | M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com> | |
d8a82d7b | 4800 | M: support@lsi.com |
cec744fb | 4801 | L: DL-MPTFusionLinux@lsi.com |
c87e34ef MED |
4802 | L: linux-scsi@vger.kernel.org |
4803 | W: http://www.lsilogic.com/support | |
4804 | S: Supported | |
679655da | 4805 | F: drivers/message/fusion/ |
500c152a | 4806 | F: drivers/scsi/mpt2sas/ |
4807 | F: drivers/scsi/mpt3sas/ | |
c87e34ef | 4808 | |
1da177e4 | 4809 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
8b58be88 | 4810 | M: Matthew Wilcox <matthew@wil.cx> |
1da177e4 LT |
4811 | L: linux-scsi@vger.kernel.org |
4812 | S: Maintained | |
679655da | 4813 | F: drivers/scsi/sym53c8xx_2/ |
1da177e4 | 4814 | |
e5f5c99a GR |
4815 | LTC4261 HARDWARE MONITOR DRIVER |
4816 | M: Guenter Roeck <linux@roeck-us.net> | |
4817 | L: lm-sensors@lm-sensors.org | |
4818 | S: Maintained | |
4819 | F: Documentation/hwmon/ltc4261 | |
4820 | F: drivers/hwmon/ltc4261.c | |
4821 | ||
81365c31 | 4822 | LTP (Linux Test Project) |
7d1ae8a8 | 4823 | M: Shubham Goyal <shubham@linux.vnet.ibm.com> |
28b8e8d4 | 4824 | M: Mike Frysinger <vapier@gentoo.org> |
7d1ae8a8 WG |
4825 | M: Cyril Hrubis <chrubis@suse.cz> |
4826 | M: Caspar Zhang <caspar@casparzhang.com> | |
4827 | M: Wanlong Gao <gaowanlong@cn.fujitsu.com> | |
81365c31 MF |
4828 | L: ltp-list@lists.sourceforge.net (subscribers-only) |
4829 | W: http://ltp.sourceforge.net/ | |
7d1ae8a8 | 4830 | T: git git://github.com/linux-test-project/ltp.git |
a5fe2475 | 4831 | T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev |
81365c31 MF |
4832 | S: Maintained |
4833 | ||
c12a54b3 | 4834 | M32R ARCHITECTURE |
8b58be88 | 4835 | M: Hirokazu Takata <takata@linux-m32r.org> |
0d89e54c | 4836 | L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) |
c12a54b3 HT |
4837 | L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) |
4838 | W: http://www.linux-m32r.org/ | |
4839 | S: Maintained | |
679655da | 4840 | F: arch/m32r/ |
c12a54b3 | 4841 | |
1da177e4 | 4842 | M68K ARCHITECTURE |
8b58be88 | 4843 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
1da177e4 LT |
4844 | L: linux-m68k@lists.linux-m68k.org |
4845 | W: http://www.linux-m68k.org/ | |
54e5881d | 4846 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
1da177e4 | 4847 | S: Maintained |
679655da | 4848 | F: arch/m68k/ |
9db35182 | 4849 | F: drivers/zorro/ |
1da177e4 LT |
4850 | |
4851 | M68K ON APPLE MACINTOSH | |
8b58be88 | 4852 | M: Joshua Thompson <funaho@jurai.org> |
1da177e4 | 4853 | W: http://www.mac.linux-m68k.org/ |
9bb9f222 | 4854 | L: linux-m68k@lists.linux-m68k.org |
1da177e4 | 4855 | S: Maintained |
9db35182 | 4856 | F: arch/m68k/mac/ |
1da177e4 LT |
4857 | |
4858 | M68K ON HP9000/300 | |
8b58be88 | 4859 | M: Philip Blundell <philb@gnu.org> |
1da177e4 LT |
4860 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
4861 | S: Maintained | |
679655da | 4862 | F: arch/m68k/hp300/ |
1da177e4 | 4863 | |
68620bdd MP |
4864 | M88RS2000 MEDIA DRIVER |
4865 | M: Malcolm Priestley <tvboxspy@gmail.com> | |
4866 | L: linux-media@vger.kernel.org | |
4867 | W: http://linuxtv.org/ | |
4868 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
4869 | S: Maintained | |
4870 | F: drivers/media/dvb-frontends/m88rs2000* | |
4871 | ||
64a327a7 | 4872 | MAC80211 |
8b58be88 | 4873 | M: Johannes Berg <johannes@sipsolutions.net> |
64a327a7 | 4874 | L: linux-wireless@vger.kernel.org |
491b26b4 | 4875 | W: http://wireless.kernel.org/ |
ce466579 JB |
4876 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
4877 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
64a327a7 | 4878 | S: Maintained |
679655da JP |
4879 | F: Documentation/networking/mac80211-injection.txt |
4880 | F: include/net/mac80211.h | |
4881 | F: net/mac80211/ | |
64a327a7 | 4882 | |
1036d864 | 4883 | MAC80211 PID RATE CONTROL |
8b58be88 JP |
4884 | M: Stefano Brivio <stefano.brivio@polimi.it> |
4885 | M: Mattias Nissler <mattias.nissler@gmx.de> | |
1036d864 | 4886 | L: linux-wireless@vger.kernel.org |
491b26b4 | 4887 | W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID |
ce466579 JB |
4888 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
4889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
1036d864 | 4890 | S: Maintained |
679655da | 4891 | F: net/mac80211/rc80211_pid* |
1036d864 | 4892 | |
b863ceb7 | 4893 | MACVLAN DRIVER |
8b58be88 | 4894 | M: Patrick McHardy <kaber@trash.net> |
b863ceb7 PM |
4895 | L: netdev@vger.kernel.org |
4896 | S: Maintained | |
679655da JP |
4897 | F: drivers/net/macvlan.c |
4898 | F: include/linux/if_macvlan.h | |
b863ceb7 | 4899 | |
faf1668c | 4900 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
8b58be88 | 4901 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
795fb7e7 | 4902 | W: http://www.kernel.org/doc/man-pages |
bd7ebec6 | 4903 | L: linux-man@vger.kernel.org |
1b53dc74 | 4904 | S: Maintained |
faf1668c | 4905 | |
44c14c1d | 4906 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
4907 | M: Mirko Lindner <mlindner@marvell.com> | |
adbbf69d | 4908 | M: Stephen Hemminger <stephen@networkplumber.org> |
44c14c1d | 4909 | L: netdev@vger.kernel.org |
4910 | S: Maintained | |
4911 | F: drivers/net/ethernet/marvell/sk* | |
4912 | ||
74cda169 | 4913 | MARVELL LIBERTAS WIRELESS DRIVER |
8b58be88 | 4914 | M: Dan Williams <dcbw@redhat.com> |
74cda169 SB |
4915 | L: libertas-dev@lists.infradead.org |
4916 | S: Maintained | |
679655da | 4917 | F: drivers/net/wireless/libertas/ |
74cda169 | 4918 | |
b60d6975 | 4919 | MARVELL MV643XX ETHERNET DRIVER |
f5ca8502 | 4920 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
979b6c13 | 4921 | L: netdev@vger.kernel.org |
f5ca8502 | 4922 | S: Maintained |
527a6266 | 4923 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
679655da | 4924 | F: include/linux/mv643xx.h |
1da177e4 | 4925 | |
370b8ed9 TP |
4926 | MARVELL MVNETA ETHERNET DRIVER |
4927 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | |
4928 | L: netdev@vger.kernel.org | |
4929 | S: Maintained | |
4930 | F: drivers/net/ethernet/marvell/mvneta.* | |
4931 | ||
fcad584d BZ |
4932 | MARVELL MWIFIEX WIRELESS DRIVER |
4933 | M: Bing Zhao <bzhao@marvell.com> | |
4934 | L: linux-wireless@vger.kernel.org | |
4935 | S: Maintained | |
4936 | F: drivers/net/wireless/mwifiex/ | |
4937 | ||
a2c3f656 | 4938 | MARVELL MWL8K WIRELESS DRIVER |
a040d532 | 4939 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
a2c3f656 | 4940 | L: linux-wireless@vger.kernel.org |
16345910 | 4941 | S: Odd Fixes |
a2c3f656 LB |
4942 | F: drivers/net/wireless/mwl8k.c |
4943 | ||
2a69567b | 4944 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
2f82af08 | 4945 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 4946 | S: Odd Fixes |
1fa7e547 | 4947 | F: drivers/mmc/host/mvsdio.* |
2a69567b | 4948 | |
1da177e4 | 4949 | MATROX FRAMEBUFFER DRIVER |
c69f677c | 4950 | L: linux-fbdev@vger.kernel.org |
52653199 | 4951 | S: Orphan |
679655da | 4952 | F: drivers/video/matrox/matroxfb_* |
c117ab84 | 4953 | F: include/uapi/linux/matroxfb.h |
1da177e4 | 4954 | |
ca462085 GR |
4955 | MAX16065 HARDWARE MONITOR DRIVER |
4956 | M: Guenter Roeck <linux@roeck-us.net> | |
4957 | L: lm-sensors@lm-sensors.org | |
4958 | S: Maintained | |
4959 | F: Documentation/hwmon/max16065 | |
4960 | F: drivers/hwmon/max16065.c | |
4961 | ||
d20620de | 4962 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
6a534c9d | 4963 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
d20620de HJK |
4964 | L: lm-sensors@lm-sensors.org |
4965 | S: Maintained | |
679655da JP |
4966 | F: Documentation/hwmon/max6650 |
4967 | F: drivers/hwmon/max6650.c | |
d20620de | 4968 | |
127c49ae | 4969 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
275ffde4 | 4970 | M: Mauro Carvalho Chehab <mchehab@redhat.com> |
127c49ae JP |
4971 | P: LinuxTV.org Project |
4972 | L: linux-media@vger.kernel.org | |
4973 | W: http://linuxtv.org | |
8a6e2535 | 4974 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
275ffde4 | 4975 | T: git git://linuxtv.org/media_tree.git |
127c49ae JP |
4976 | S: Maintained |
4977 | F: Documentation/dvb/ | |
4978 | F: Documentation/video4linux/ | |
ffe06198 | 4979 | F: Documentation/DocBook/media/ |
127c49ae | 4980 | F: drivers/media/ |
ffe06198 | 4981 | F: drivers/staging/media/ |
127c49ae | 4982 | F: include/media/ |
6c0f0359 MCC |
4983 | F: include/uapi/linux/dvb/ |
4984 | F: include/uapi/linux/videodev2.h | |
4985 | F: include/uapi/linux/media.h | |
4986 | F: include/uapi/linux/v4l2-* | |
4987 | F: include/uapi/linux/meye.h | |
4988 | F: include/uapi/linux/ivtv* | |
4989 | F: include/uapi/linux/uvcvideo.h | |
d20620de | 4990 | |
757e0108 | 4991 | MEGARAID SCSI DRIVERS |
8b58be88 | 4992 | M: Neela Syam Kolli <megaraidlinux@lsi.com> |
baaea1dc | 4993 | L: linux-scsi@vger.kernel.org |
ce00f85c JC |
4994 | W: http://megaraid.lsilogic.com |
4995 | S: Maintained | |
679655da JP |
4996 | F: Documentation/scsi/megaraid.txt |
4997 | F: drivers/scsi/megaraid.* | |
4998 | F: drivers/scsi/megaraid/ | |
757e0108 | 4999 | |
2c46c9d5 AV |
5000 | MELLANOX ETHERNET DRIVER (mlx4_en) |
5001 | M: Amir Vadai <amirv@mellanox.com> | |
5002 | L: netdev@vger.kernel.org | |
5003 | S: Supported | |
5004 | W: http://www.mellanox.com | |
5005 | Q: http://patchwork.ozlabs.org/project/netdev/list/ | |
5006 | F: drivers/net/ethernet/mellanox/mlx4/en_* | |
5007 | ||
70ea91f1 SR |
5008 | MEMORY MANAGEMENT |
5009 | L: linux-mm@kvack.org | |
70ea91f1 SR |
5010 | W: http://www.linux-mm.org |
5011 | S: Maintained | |
679655da JP |
5012 | F: include/linux/mm.h |
5013 | F: mm/ | |
70ea91f1 | 5014 | |
938a9204 | 5015 | MEMORY RESOURCE CONTROLLER |
c193c82f KH |
5016 | M: Johannes Weiner <hannes@cmpxchg.org> |
5017 | M: Michal Hocko <mhocko@suse.cz> | |
185e595f | 5018 | M: Balbir Singh <bsingharora@gmail.com> |
8b58be88 | 5019 | M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> |
12340313 | 5020 | L: cgroups@vger.kernel.org |
938a9204 | 5021 | L: linux-mm@kvack.org |
938a9204 | 5022 | S: Maintained |
679655da | 5023 | F: mm/memcontrol.c |
4e4c941c | 5024 | F: mm/page_cgroup.c |
938a9204 | 5025 | |
f4e9ce66 | 5026 | MEMORY TECHNOLOGY DEVICES (MTD) |
8b58be88 | 5027 | M: David Woodhouse <dwmw2@infradead.org> |
1da177e4 | 5028 | L: linux-mtd@lists.infradead.org |
8a6e2535 JP |
5029 | W: http://www.linux-mtd.infradead.org/ |
5030 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ | |
f4e9ce66 | 5031 | T: git git://git.infradead.org/mtd-2.6.git |
1da177e4 | 5032 | S: Maintained |
679655da JP |
5033 | F: drivers/mtd/ |
5034 | F: include/linux/mtd/ | |
c117ab84 | 5035 | F: include/uapi/mtd/ |
1da177e4 | 5036 | |
c6375b0a | 5037 | MICROBLAZE ARCHITECTURE |
8b58be88 | 5038 | M: Michal Simek <monstr@monstr.eu> |
f3cb0e31 | 5039 | L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers) |
c6375b0a MS |
5040 | W: http://www.monstr.eu/fdt/ |
5041 | T: git git://git.monstr.eu/linux-2.6-microblaze.git | |
5042 | S: Supported | |
0a8c7914 | 5043 | F: arch/microblaze/ |
1da177e4 LT |
5044 | |
5045 | MICROTEK X6 SCANNER | |
61eee9a7 | 5046 | M: Oliver Neukum <oliver@neukum.org> |
1da177e4 | 5047 | S: Maintained |
679655da | 5048 | F: drivers/usb/image/microtek.* |
1da177e4 LT |
5049 | |
5050 | MIPS | |
8b58be88 | 5051 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 5052 | L: linux-mips@linux-mips.org |
6097050d | 5053 | W: http://www.linux-mips.org/ |
b05e988e | 5054 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
6097050d | 5055 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
7425b340 | 5056 | S: Supported |
679655da JP |
5057 | F: Documentation/mips/ |
5058 | F: arch/mips/ | |
1da177e4 | 5059 | |
1da177e4 | 5060 | MODULE SUPPORT |
8b58be88 | 5061 | M: Rusty Russell <rusty@rustcorp.com.au> |
1da177e4 | 5062 | S: Maintained |
679655da JP |
5063 | F: include/linux/module.h |
5064 | F: kernel/module.c | |
1da177e4 LT |
5065 | |
5066 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER | |
1da177e4 | 5067 | W: http://popies.net/meye/ |
b7788e13 | 5068 | S: Orphan |
679655da | 5069 | F: Documentation/video4linux/meye.txt |
90d72ac6 | 5070 | F: drivers/media/pci/meye/ |
6c0f0359 | 5071 | F: include/uapi/linux/meye.h |
1da177e4 | 5072 | |
b9705b60 | 5073 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
8b58be88 | 5074 | M: Jiri Slaby <jirislaby@gmail.com> |
d735410a | 5075 | S: Maintained |
679655da | 5076 | F: Documentation/serial/moxa-smartio |
c897401b | 5077 | F: drivers/tty/mxser.* |
d735410a | 5078 | |
889b2f87 AK |
5079 | MR800 AVERMEDIA USB FM RADIO DRIVER |
5080 | M: Alexey Klimov <klimov.linux@gmail.com> | |
5081 | L: linux-media@vger.kernel.org | |
5082 | T: git git://linuxtv.org/media_tree.git | |
5083 | S: Maintained | |
5084 | F: drivers/media/radio/radio-mr800.c | |
5085 | ||
8c4c731a | 5086 | MSI LAPTOP SUPPORT |
182ae55c | 5087 | M: "Lee, Chun-Yi" <jlee@suse.com> |
d0944853 | 5088 | L: platform-driver-x86@vger.kernel.org |
8c4c731a | 5089 | S: Maintained |
679655da | 5090 | F: drivers/platform/x86/msi-laptop.c |
8c4c731a | 5091 | |
0f1006b1 AA |
5092 | MSI WMI SUPPORT |
5093 | M: Anisse Astier <anisse@astier.eu> | |
d0944853 | 5094 | L: platform-driver-x86@vger.kernel.org |
0f1006b1 AA |
5095 | S: Supported |
5096 | F: drivers/platform/x86/msi-wmi.c | |
5097 | ||
4e0d13cb | 5098 | MULTIFUNCTION DEVICES (MFD) |
8b58be88 | 5099 | M: Samuel Ortiz <sameo@linux.intel.com> |
54e5881d | 5100 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git |
4e0d13cb | 5101 | S: Supported |
679655da | 5102 | F: drivers/mfd/ |
4e0d13cb | 5103 | |
5c4e6f13 | 5104 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
245feaa6 | 5105 | M: Chris Ball <cjb@laptop.org> |
b2503a94 | 5106 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
5107 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
5108 | S: Maintained | |
679655da JP |
5109 | F: drivers/mmc/ |
5110 | F: include/linux/mmc/ | |
c117ab84 | 5111 | F: include/uapi/linux/mmc/ |
baca2da4 | 5112 | |
15a0580c | 5113 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
22b174f8 | 5114 | S: Orphan |
679655da JP |
5115 | F: drivers/mmc/host/mmc_spi.c |
5116 | F: include/linux/spi/mmc_spi.h | |
15a0580c | 5117 | |
1da177e4 | 5118 | MULTISOUND SOUND DRIVER |
8b58be88 | 5119 | M: Andrew Veliath <andrewtv@usa.net> |
1da177e4 | 5120 | S: Maintained |
679655da JP |
5121 | F: Documentation/sound/oss/MultiSound |
5122 | F: sound/oss/msnd* | |
1da177e4 | 5123 | |
d735410a | 5124 | MULTITECH MULTIPORT CARD (ISICOM) |
d86b3001 | 5125 | S: Orphan |
c897401b | 5126 | F: drivers/tty/isicom.c |
679655da | 5127 | F: include/linux/isicom.h |
d735410a | 5128 | |
550a7375 | 5129 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
f299470a | 5130 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 5131 | L: linux-usb@vger.kernel.org |
43b416e5 | 5132 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
795fb7e7 | 5133 | S: Maintained |
679655da | 5134 | F: drivers/usb/musb/ |
550a7375 | 5135 | |
ea0af5f6 MK |
5136 | MXL5007T MEDIA DRIVER |
5137 | M: Michael Krufky <mkrufky@linuxtv.org> | |
5138 | L: linux-media@vger.kernel.org | |
5139 | W: http://linuxtv.org/ | |
5140 | W: http://github.com/mkrufky | |
5141 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
5142 | T: git git://linuxtv.org/mkrufky/tuners.git | |
5143 | S: Maintained | |
5144 | F: drivers/media/tuners/mxl5007t.* | |
5145 | ||
2d3cf588 | 5146 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
8b58be88 | 5147 | M: Andrew Gallatin <gallatin@myri.com> |
2d3cf588 BG |
5148 | L: netdev@vger.kernel.org |
5149 | W: http://www.myri.com/scs/download-Myri10GE.html | |
5150 | S: Supported | |
93f7848b | 5151 | F: drivers/net/ethernet/myricom/myri10ge/ |
2d3cf588 | 5152 | |
1da177e4 | 5153 | NATSEMI ETHERNET DRIVER (DP8381x) |
09d208ec | 5154 | S: Orphan |
d9fb9f38 | 5155 | F: drivers/net/ethernet/natsemi/natsemi.c |
1da177e4 | 5156 | |
23dc05a3 DM |
5157 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
5158 | M: Daniel Mack <zonque@gmail.com> | |
5159 | S: Maintained | |
5160 | L: alsa-devel@alsa-project.org | |
5161 | W: http://www.native-instruments.com | |
5162 | F: sound/usb/caiaq/ | |
5163 | ||
1da177e4 | 5164 | NCP FILESYSTEM |
52653199 PV |
5165 | M: Petr Vandrovec <petr@vandrovec.name> |
5166 | S: Odd Fixes | |
679655da | 5167 | F: fs/ncpfs/ |
1da177e4 LT |
5168 | |
5169 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) | |
8b58be88 | 5170 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
1da177e4 LT |
5171 | L: linux-scsi@vger.kernel.org |
5172 | S: Maintained | |
679655da | 5173 | F: drivers/scsi/NCR_D700.* |
1da177e4 | 5174 | |
3c2d774c | 5175 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
8b58be88 | 5176 | M: Faisal Latif <faisal.latif@intel.com> |
e6cc0fd1 | 5177 | L: linux-rdma@vger.kernel.org |
e3d33cb1 | 5178 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
3c2d774c GS |
5179 | S: Supported |
5180 | F: drivers/infiniband/hw/nes/ | |
5181 | ||
be2f2e84 | 5182 | NETEM NETWORK EMULATOR |
adbbf69d | 5183 | M: Stephen Hemminger <stephen@networkplumber.org> |
f318a63b | 5184 | L: netem@lists.linux-foundation.org |
be2f2e84 | 5185 | S: Maintained |
679655da | 5186 | F: net/sched/sch_netem.c |
be2f2e84 | 5187 | |
b2f5a051 | 5188 | NETERION 10GbE DRIVERS (s2io/vxge) |
e3806882 | 5189 | M: Jon Mason <jdmason@kudzu.us> |
4a58448b | 5190 | L: netdev@vger.kernel.org |
4a58448b | 5191 | S: Supported |
679655da | 5192 | F: Documentation/networking/s2io.txt |
b2f5a051 | 5193 | F: Documentation/networking/vxge.txt |
86387e1a | 5194 | F: drivers/net/ethernet/neterion/ |
4a58448b | 5195 | |
1da177e4 | 5196 | NETFILTER/IPTABLES/IPCHAINS |
1da177e4 LT |
5197 | P: Harald Welte |
5198 | P: Jozsef Kadlecsik | |
0e05e192 | 5199 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
8b58be88 | 5200 | M: Patrick McHardy <kaber@trash.net> |
1a03b81d PM |
5201 | L: netfilter-devel@vger.kernel.org |
5202 | L: netfilter@vger.kernel.org | |
82b98543 | 5203 | L: coreteam@netfilter.org |
1da177e4 LT |
5204 | W: http://www.netfilter.org/ |
5205 | W: http://www.iptables.org/ | |
a2da3998 PNA |
5206 | T: git git://1984.lsi.us.es/nf |
5207 | T: git git://1984.lsi.us.es/nf-next | |
1da177e4 | 5208 | S: Supported |
679655da JP |
5209 | F: include/linux/netfilter* |
5210 | F: include/linux/netfilter/ | |
5211 | F: include/net/netfilter/ | |
c117ab84 CEB |
5212 | F: include/uapi/linux/netfilter* |
5213 | F: include/uapi/linux/netfilter/ | |
679655da JP |
5214 | F: net/*/netfilter.c |
5215 | F: net/*/netfilter/ | |
5216 | F: net/netfilter/ | |
1da177e4 | 5217 | |
4cc67735 | 5218 | NETLABEL |
87a0874c | 5219 | M: Paul Moore <paul@paul-moore.com> |
4cc67735 PM |
5220 | W: http://netlabel.sf.net |
5221 | L: netdev@vger.kernel.org | |
87a0874c | 5222 | S: Maintained |
80811493 | 5223 | F: Documentation/netlabel/ |
679655da JP |
5224 | F: include/net/netlabel.h |
5225 | F: net/netlabel/ | |
4cc67735 | 5226 | |
1da177e4 | 5227 | NETROM NETWORK LAYER |
8b58be88 | 5228 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 5229 | L: linux-hams@vger.kernel.org |
d34cb28a | 5230 | W: http://www.linux-ax25.org/ |
1da177e4 | 5231 | S: Maintained |
679655da | 5232 | F: include/net/netrom.h |
c117ab84 | 5233 | F: include/uapi/linux/netrom.h |
679655da | 5234 | F: net/netrom/ |
1da177e4 | 5235 | |
5ddb88c0 | 5236 | NETWORK BLOCK DEVICE (NBD) |
8b58be88 | 5237 | M: Paul Clements <Paul.Clements@steeleye.com> |
1da177e4 | 5238 | S: Maintained |
679655da JP |
5239 | F: Documentation/blockdev/nbd.txt |
5240 | F: drivers/block/nbd.c | |
5241 | F: include/linux/nbd.h | |
c117ab84 | 5242 | F: include/uapi/linux/nbd.h |
1da177e4 | 5243 | |
6e43650c NH |
5244 | NETWORK DROP MONITOR |
5245 | M: Neil Horman <nhorman@tuxdriver.com> | |
5246 | L: netdev@vger.kernel.org | |
5247 | S: Maintained | |
5248 | W: https://fedorahosted.org/dropwatch/ | |
5249 | F: net/core/drop_monitor.c | |
5250 | ||
1da177e4 | 5251 | NETWORKING [GENERAL] |
8b58be88 | 5252 | M: "David S. Miller" <davem@davemloft.net> |
979b6c13 | 5253 | L: netdev@vger.kernel.org |
b1e8fd54 | 5254 | W: http://www.linuxfoundation.org/en/Net |
11e98029 | 5255 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
814fd609 NP |
5256 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5257 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
1da177e4 | 5258 | S: Maintained |
679655da JP |
5259 | F: net/ |
5260 | F: include/net/ | |
018d21ed JP |
5261 | F: include/linux/in.h |
5262 | F: include/linux/net.h | |
5263 | F: include/linux/netdevice.h | |
c117ab84 CEB |
5264 | F: include/uapi/linux/in.h |
5265 | F: include/uapi/linux/net.h | |
5266 | F: include/uapi/linux/netdevice.h | |
1da177e4 LT |
5267 | |
5268 | NETWORKING [IPv4/IPv6] | |
8b58be88 JP |
5269 | M: "David S. Miller" <davem@davemloft.net> |
5270 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> | |
8b58be88 JP |
5271 | M: James Morris <jmorris@namei.org> |
5272 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> | |
5273 | M: Patrick McHardy <kaber@trash.net> | |
979b6c13 | 5274 | L: netdev@vger.kernel.org |
08deed1e | 5275 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
1da177e4 | 5276 | S: Maintained |
679655da JP |
5277 | F: net/ipv4/ |
5278 | F: net/ipv6/ | |
5279 | F: include/net/ip* | |
0a14842f | 5280 | F: arch/x86/net/* |
1da177e4 | 5281 | |
73b7656c DM |
5282 | NETWORKING [IPSEC] |
5283 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
5284 | M: Herbert Xu <herbert@gondor.apana.org.au> | |
5285 | M: "David S. Miller" <davem@davemloft.net> | |
5286 | L: netdev@vger.kernel.org | |
5287 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git | |
5288 | S: Maintained | |
5289 | F: net/xfrm/ | |
5290 | F: net/key/ | |
5291 | F: net/ipv4/xfrm* | |
5292 | F: net/ipv6/xfrm* | |
5293 | F: include/uapi/linux/xfrm.h | |
5294 | F: include/net/xfrm.h | |
5295 | ||
10e2ff1c | 5296 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
87a0874c | 5297 | M: Paul Moore <paul@paul-moore.com> |
10e2ff1c JM |
5298 | L: netdev@vger.kernel.org |
5299 | S: Maintained | |
5300 | ||
29f8f632 | 5301 | NETWORKING [WIRELESS] |
8b58be88 | 5302 | M: "John W. Linville" <linville@tuxdriver.com> |
2cb4abd1 | 5303 | L: linux-wireless@vger.kernel.org |
8a6e2535 | 5304 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
08deed1e | 5305 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git |
29f8f632 | 5306 | S: Maintained |
34b921cf JP |
5307 | F: net/mac80211/ |
5308 | F: net/rfkill/ | |
679655da JP |
5309 | F: net/wireless/ |
5310 | F: include/net/ieee80211* | |
cc8b4a2b | 5311 | F: include/linux/wireless.h |
c117ab84 | 5312 | F: include/uapi/linux/wireless.h |
c984e24d | 5313 | F: include/net/iw_handler.h |
34b921cf | 5314 | F: drivers/net/wireless/ |
29f8f632 | 5315 | |
788873ac JP |
5316 | NETWORKING DRIVERS |
5317 | L: netdev@vger.kernel.org | |
5318 | W: http://www.linuxfoundation.org/en/Net | |
11e98029 | 5319 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
08deed1e JP |
5320 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
5321 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git | |
788873ac JP |
5322 | S: Odd Fixes |
5323 | F: drivers/net/ | |
018d21ed | 5324 | F: include/linux/if_* |
0b63bf1f JD |
5325 | F: include/linux/netdevice.h |
5326 | F: include/linux/arcdevice.h | |
5327 | F: include/linux/etherdevice.h | |
5328 | F: include/linux/fcdevice.h | |
5329 | F: include/linux/fddidevice.h | |
5330 | F: include/linux/hippidevice.h | |
5331 | F: include/linux/inetdevice.h | |
c117ab84 CEB |
5332 | F: include/uapi/linux/if_* |
5333 | F: include/uapi/linux/netdevice.h | |
788873ac | 5334 | |
3d396eb1 | 5335 | NETXEN (1/10) GbE SUPPORT |
83c07dde AKS |
5336 | M: Sony Chacko <sony.chacko@qlogic.com> |
5337 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> | |
3d396eb1 | 5338 | L: netdev@vger.kernel.org |
9c2b5bde | 5339 | W: http://www.qlogic.com |
3d396eb1 | 5340 | S: Supported |
aa43c215 | 5341 | F: drivers/net/ethernet/qlogic/netxen/ |
3d396eb1 | 5342 | |
6423d30f AAJ |
5343 | NFC SUBSYSTEM |
5344 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> | |
5345 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> | |
5346 | M: Samuel Ortiz <sameo@linux.intel.com> | |
5347 | L: linux-wireless@vger.kernel.org | |
5adf54de | 5348 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
6423d30f AAJ |
5349 | S: Maintained |
5350 | F: net/nfc/ | |
55eb94f9 | 5351 | F: include/net/nfc/ |
c117ab84 | 5352 | F: include/uapi/linux/nfc.h |
6423d30f | 5353 | F: drivers/nfc/ |
08eaa1e0 | 5354 | F: include/linux/platform_data/pn544.h |
3d396eb1 | 5355 | |
e8b43555 | 5356 | NFS, SUNRPC, AND LOCKD CLIENTS |
8b58be88 | 5357 | M: Trond Myklebust <Trond.Myklebust@netapp.com> |
78f58153 TM |
5358 | L: linux-nfs@vger.kernel.org |
5359 | W: http://client.linux-nfs.org | |
5360 | T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git | |
1da177e4 | 5361 | S: Maintained |
679655da JP |
5362 | F: fs/lockd/ |
5363 | F: fs/nfs/ | |
5364 | F: fs/nfs_common/ | |
5365 | F: net/sunrpc/ | |
5366 | F: include/linux/lockd/ | |
5367 | F: include/linux/nfs* | |
5368 | F: include/linux/sunrpc/ | |
c117ab84 CEB |
5369 | F: include/uapi/linux/nfs* |
5370 | F: include/uapi/linux/sunrpc/ | |
1da177e4 LT |
5371 | |
5372 | NI5010 NETWORK DRIVER | |
8b58be88 JP |
5373 | M: Jan-Pascal van Best <janpascal@vanbest.org> |
5374 | M: Andreas Mohr <andi@lisas.de> | |
979b6c13 | 5375 | L: netdev@vger.kernel.org |
1da177e4 | 5376 | S: Maintained |
8efc9125 | 5377 | F: drivers/net/ethernet/racal/ni5010.* |
1da177e4 | 5378 | |
85ef9cea | 5379 | NILFS2 FILESYSTEM |
8b58be88 | 5380 | M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp> |
6aff43f8 | 5381 | L: linux-nilfs@vger.kernel.org |
85ef9cea | 5382 | W: http://www.nilfs.org/en/ |
af1761f2 | 5383 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git |
85ef9cea | 5384 | S: Supported |
679655da JP |
5385 | F: Documentation/filesystems/nilfs2.txt |
5386 | F: fs/nilfs2/ | |
5387 | F: include/linux/nilfs2_fs.h | |
85ef9cea | 5388 | |
1da177e4 | 5389 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
8b58be88 | 5390 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
1da177e4 LT |
5391 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5392 | S: Maintained | |
679655da JP |
5393 | F: Documentation/scsi/NinjaSCSI.txt |
5394 | F: drivers/scsi/pcmcia/nsp_* | |
1da177e4 LT |
5395 | |
5396 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER | |
8b58be88 JP |
5397 | M: GOTO Masanori <gotom@debian.or.jp> |
5398 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> | |
1da177e4 LT |
5399 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
5400 | S: Maintained | |
679655da JP |
5401 | F: Documentation/scsi/NinjaSCSI.txt |
5402 | F: drivers/scsi/nsp32* | |
1da177e4 | 5403 | |
1da177e4 | 5404 | NTFS FILESYSTEM |
2818ef50 | 5405 | M: Anton Altaparmakov <anton@tuxera.com> |
1da177e4 | 5406 | L: linux-ntfs-dev@lists.sourceforge.net |
2818ef50 | 5407 | W: http://www.tuxera.com/ |
e6f4dee7 | 5408 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
2818ef50 | 5409 | S: Supported |
679655da JP |
5410 | F: Documentation/filesystems/ntfs.txt |
5411 | F: fs/ntfs/ | |
1da177e4 | 5412 | |
9eb8ef74 | 5413 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
8b58be88 | 5414 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 5415 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 5416 | S: Maintained |
679655da JP |
5417 | F: drivers/video/riva/ |
5418 | F: drivers/video/nvidia/ | |
1da177e4 | 5419 | |
f5525786 | 5420 | OMAP SUPPORT |
0e24bdd4 | 5421 | M: Tony Lindgren <tony@atomide.com> |
f5525786 TL |
5422 | L: linux-omap@vger.kernel.org |
5423 | W: http://www.muru.com/linux/omap/ | |
5424 | W: http://linux.omap.com/ | |
8a6e2535 | 5425 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
30bd0129 | 5426 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
f5525786 | 5427 | S: Maintained |
4e04d5a3 | 5428 | F: arch/arm/*omap*/ |
046d0a37 JD |
5429 | F: drivers/i2c/busses/i2c-omap.c |
5430 | F: include/linux/i2c-omap.h | |
f5525786 | 5431 | |
50f29fbd TL |
5432 | OMAP DEVICE TREE SUPPORT |
5433 | M: Benoît Cousson <b-cousson@ti.com> | |
5434 | M: Tony Lindgren <tony@atomide.com> | |
5435 | L: linux-omap@vger.kernel.org | |
5436 | L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers) | |
5437 | S: Maintained | |
5438 | F: arch/arm/boot/dts/*omap* | |
5439 | F: arch/arm/boot/dts/*am3* | |
5440 | ||
f5525786 | 5441 | OMAP CLOCK FRAMEWORK SUPPORT |
8b58be88 | 5442 | M: Paul Walmsley <paul@pwsan.com> |
f5525786 TL |
5443 | L: linux-omap@vger.kernel.org |
5444 | S: Maintained | |
5445 | F: arch/arm/*omap*/*clock* | |
5446 | ||
5447 | OMAP POWER MANAGEMENT SUPPORT | |
126f7e29 | 5448 | M: Kevin Hilman <khilman@ti.com> |
f5525786 TL |
5449 | L: linux-omap@vger.kernel.org |
5450 | S: Maintained | |
5451 | F: arch/arm/*omap*/*pm* | |
c46938d4 | 5452 | F: drivers/cpufreq/omap-cpufreq.c |
f5525786 | 5453 | |
692ab1f3 PW |
5454 | OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT |
5455 | M: Rajendra Nayak <rnayak@ti.com> | |
5456 | M: Paul Walmsley <paul@pwsan.com> | |
5457 | L: linux-omap@vger.kernel.org | |
5458 | S: Maintained | |
5459 | F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c | |
5460 | F: arch/arm/mach-omap2/powerdomain44xx.c | |
5461 | F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c | |
5462 | F: arch/arm/mach-omap2/clockdomain44xx.c | |
5463 | ||
f5525786 | 5464 | OMAP AUDIO SUPPORT |
6c284903 | 5465 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
7ec41ee5 | 5466 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
f5525786 TL |
5467 | L: alsa-devel@alsa-project.org (subscribers-only) |
5468 | L: linux-omap@vger.kernel.org | |
5469 | S: Maintained | |
5470 | F: sound/soc/omap/ | |
5471 | ||
5472 | OMAP FRAMEBUFFER SUPPORT | |
830e6384 | 5473 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
c69f677c | 5474 | L: linux-fbdev@vger.kernel.org |
f5525786 TL |
5475 | L: linux-omap@vger.kernel.org |
5476 | S: Maintained | |
5477 | F: drivers/video/omap/ | |
5478 | ||
676eec0d | 5479 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
830e6384 | 5480 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
178ff4c9 | 5481 | L: linux-omap@vger.kernel.org |
676eec0d | 5482 | L: linux-fbdev@vger.kernel.org |
178ff4c9 | 5483 | S: Maintained |
676eec0d | 5484 | F: drivers/video/omap2/ |
178ff4c9 TV |
5485 | F: Documentation/arm/OMAP/DSS |
5486 | ||
8b37fcfc OBC |
5487 | OMAP HARDWARE SPINLOCK SUPPORT |
5488 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
5489 | L: linux-omap@vger.kernel.org | |
5490 | S: Maintained | |
5491 | F: drivers/hwspinlock/omap_hwspinlock.c | |
5492 | F: arch/arm/mach-omap2/hwspinlock.c | |
5493 | ||
f5525786 | 5494 | OMAP MMC SUPPORT |
8b58be88 | 5495 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
f5525786 TL |
5496 | L: linux-omap@vger.kernel.org |
5497 | S: Maintained | |
653f41b5 MC |
5498 | F: drivers/mmc/host/omap.c |
5499 | ||
5500 | OMAP HS MMC SUPPORT | |
0a4585c6 V |
5501 | M: Venkatraman S <svenkatr@ti.com> |
5502 | L: linux-mmc@vger.kernel.org | |
653f41b5 | 5503 | L: linux-omap@vger.kernel.org |
0a4585c6 | 5504 | S: Maintained |
653f41b5 | 5505 | F: drivers/mmc/host/omap_hsmmc.c |
f5525786 TL |
5506 | |
5507 | OMAP RANDOM NUMBER GENERATOR SUPPORT | |
8b58be88 | 5508 | M: Deepak Saxena <dsaxena@plexity.net> |
f5525786 TL |
5509 | S: Maintained |
5510 | F: drivers/char/hw_random/omap-rng.c | |
5511 | ||
f400c82e PW |
5512 | OMAP HWMOD SUPPORT |
5513 | M: Benoît Cousson <b-cousson@ti.com> | |
5514 | M: Paul Walmsley <paul@pwsan.com> | |
5515 | L: linux-omap@vger.kernel.org | |
5516 | S: Maintained | |
8fc8b12b | 5517 | F: arch/arm/mach-omap2/omap_hwmod.* |
f400c82e PW |
5518 | |
5519 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES | |
5520 | M: Benoît Cousson <b-cousson@ti.com> | |
5521 | L: linux-omap@vger.kernel.org | |
5522 | S: Maintained | |
5523 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |
5524 | ||
7e8970e1 LP |
5525 | OMAP IMAGE SIGNAL PROCESSOR (ISP) |
5526 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
5527 | L: linux-media@vger.kernel.org | |
5528 | S: Maintained | |
90d72ac6 | 5529 | F: drivers/media/platform/omap3isp/ |
7e8970e1 | 5530 | |
f5525786 | 5531 | OMAP USB SUPPORT |
f299470a | 5532 | M: Felipe Balbi <balbi@ti.com> |
f5525786 TL |
5533 | L: linux-usb@vger.kernel.org |
5534 | L: linux-omap@vger.kernel.org | |
43b416e5 | 5535 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
f5525786 | 5536 | S: Maintained |
a16fbd65 JP |
5537 | F: drivers/usb/*/*omap* |
5538 | F: arch/arm/*omap*/usb* | |
f5525786 | 5539 | |
6d994710 KH |
5540 | OMAP GPIO DRIVER |
5541 | M: Santosh Shilimkar <santosh.shilimkar@ti.com> | |
5542 | M: Kevin Hilman <khilman@ti.com> | |
5543 | L: linux-omap@vger.kernel.org | |
5544 | S: Maintained | |
5545 | F: drivers/gpio/gpio-omap.c | |
5546 | ||
0ad122d9 | 5547 | OMFS FILESYSTEM |
8b58be88 | 5548 | M: Bob Copeland <me@bobcopeland.com> |
0ad122d9 BC |
5549 | L: linux-karma-devel@lists.sourceforge.net |
5550 | S: Maintained | |
679655da JP |
5551 | F: Documentation/filesystems/omfs.txt |
5552 | F: fs/omfs/ | |
0ad122d9 | 5553 | |
c1986ee9 | 5554 | OMNIKEY CARDMAN 4000 DRIVER |
8b58be88 | 5555 | M: Harald Welte <laforge@gnumonks.org> |
c1986ee9 | 5556 | S: Maintained |
679655da JP |
5557 | F: drivers/char/pcmcia/cm4000_cs.c |
5558 | F: include/linux/cm4000_cs.h | |
c117ab84 | 5559 | F: include/uapi/linux/cm4000_cs.h |
c1986ee9 | 5560 | |
77c44ab1 | 5561 | OMNIKEY CARDMAN 4040 DRIVER |
8b58be88 | 5562 | M: Harald Welte <laforge@gnumonks.org> |
77c44ab1 | 5563 | S: Maintained |
679655da | 5564 | F: drivers/char/pcmcia/cm4040_cs.* |
77c44ab1 | 5565 | |
77d5140f | 5566 | OMNIVISION OV7670 SENSOR DRIVER |
8b58be88 | 5567 | M: Jonathan Corbet <corbet@lwn.net> |
661263b5 | 5568 | L: linux-media@vger.kernel.org |
275ffde4 | 5569 | T: git git://linuxtv.org/media_tree.git |
77d5140f | 5570 | S: Maintained |
90d72ac6 | 5571 | F: drivers/media/i2c/ov7670.c |
77d5140f | 5572 | |
431bca73 | 5573 | ONENAND FLASH DRIVER |
8b58be88 | 5574 | M: Kyungmin Park <kyungmin.park@samsung.com> |
431bca73 TG |
5575 | L: linux-mtd@lists.infradead.org |
5576 | S: Maintained | |
679655da JP |
5577 | F: drivers/mtd/onenand/ |
5578 | F: include/linux/mtd/onenand*.h | |
431bca73 | 5579 | |
1da177e4 | 5580 | ONSTREAM SCSI TAPE DRIVER |
8b58be88 | 5581 | M: Willem Riede <osst@riede.org> |
1da177e4 LT |
5582 | L: osst-users@lists.sourceforge.net |
5583 | L: linux-scsi@vger.kernel.org | |
5584 | S: Maintained | |
679655da JP |
5585 | F: drivers/scsi/osst* |
5586 | F: drivers/scsi/st* | |
1da177e4 | 5587 | |
e2d1d6c0 | 5588 | OPENCORES I2C BUS DRIVER |
8b58be88 | 5589 | M: Peter Korsgaard <jacmet@sunsite.dk> |
846557d3 | 5590 | L: linux-i2c@vger.kernel.org |
e2d1d6c0 | 5591 | S: Maintained |
679655da JP |
5592 | F: Documentation/i2c/busses/i2c-ocores |
5593 | F: drivers/i2c/busses/i2c-ocores.c | |
e2d1d6c0 | 5594 | |
860c44c1 GL |
5595 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
5596 | M: Grant Likely <grant.likely@secretlab.ca> | |
f910b831 | 5597 | M: Rob Herring <rob.herring@calxeda.com> |
78bba987 | 5598 | L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers) |
860c44c1 | 5599 | W: http://fdt.secretlab.ca |
3bbf9b9b | 5600 | T: git git://git.secretlab.ca/git/linux-2.6.git |
860c44c1 | 5601 | S: Maintained |
f910b831 | 5602 | F: Documentation/devicetree |
860c44c1 GL |
5603 | F: drivers/of |
5604 | F: include/linux/of*.h | |
36165f55 | 5605 | F: scripts/dtc |
860c44c1 | 5606 | K: of_get_property |
d945fa0d | 5607 | K: of_match_table |
860c44c1 | 5608 | |
19f9d392 JB |
5609 | OPENRISC ARCHITECTURE |
5610 | M: Jonas Bonn <jonas@southpole.se> | |
5611 | W: http://openrisc.net | |
eab7c1c0 | 5612 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
19f9d392 JB |
5613 | S: Maintained |
5614 | T: git git://openrisc.net/~jonas/linux | |
5615 | F: arch/openrisc | |
5616 | ||
ccb1352e JG |
5617 | OPENVSWITCH |
5618 | M: Jesse Gross <jesse@nicira.com> | |
5619 | L: dev@openvswitch.org | |
5620 | W: http://openvswitch.org | |
5621 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git | |
5622 | S: Maintained | |
5623 | F: net/openvswitch/ | |
5624 | ||
af39917d CL |
5625 | OPL4 DRIVER |
5626 | M: Clemens Ladisch <clemens@ladisch.de> | |
5627 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
5628 | T: git git://git.alsa-project.org/alsa-kernel.git | |
5629 | S: Maintained | |
5630 | F: sound/drivers/opl4/ | |
5631 | ||
1da177e4 | 5632 | OPROFILE |
4cf7e718 | 5633 | M: Robert Richter <rric@kernel.org> |
1da177e4 LT |
5634 | L: oprofile-list@lists.sf.net |
5635 | S: Maintained | |
81c4a8a6 | 5636 | F: arch/*/include/asm/oprofile*.h |
679655da JP |
5637 | F: arch/*/oprofile/ |
5638 | F: drivers/oprofile/ | |
5639 | F: include/linux/oprofile.h | |
1da177e4 | 5640 | |
e2d1d6c0 | 5641 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
8b58be88 | 5642 | M: Mark Fasheh <mfasheh@suse.com> |
d6351db2 | 5643 | M: Joel Becker <jlbec@evilplan.org> |
e2d1d6c0 RD |
5644 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
5645 | W: http://oss.oracle.com/projects/ocfs2/ | |
2191aeba | 5646 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git |
e2d1d6c0 | 5647 | S: Supported |
679655da JP |
5648 | F: Documentation/filesystems/ocfs2.txt |
5649 | F: Documentation/filesystems/dlmfs.txt | |
5650 | F: fs/ocfs2/ | |
e2d1d6c0 | 5651 | |
1da177e4 | 5652 | ORINOCO DRIVER |
724c6b35 | 5653 | L: linux-wireless@vger.kernel.org |
491b26b4 | 5654 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
ecffdde6 | 5655 | W: http://www.nongnu.org/orinoco/ |
3a59babb | 5656 | S: Orphan |
679655da | 5657 | F: drivers/net/wireless/orinoco/ |
1da177e4 | 5658 | |
42c55aa8 | 5659 | OSD LIBRARY and FILESYSTEM |
8b58be88 | 5660 | M: Boaz Harrosh <bharrosh@panasas.com> |
df4e33ad | 5661 | M: Benny Halevy <bhalevy@tonian.com> |
68274794 BH |
5662 | L: osd-dev@open-osd.org |
5663 | W: http://open-osd.org | |
54e5881d | 5664 | T: git git://git.open-osd.org/open-osd.git |
68274794 | 5665 | S: Maintained |
42c55aa8 | 5666 | F: drivers/scsi/osd/ |
6b6f0b6c | 5667 | F: include/scsi/osd_* |
42c55aa8 | 5668 | F: fs/exofs/ |
68274794 | 5669 | |
e2d1d6c0 | 5670 | P54 WIRELESS DRIVER |
084cb0fe | 5671 | M: Christian Lamparter <chunkeey@googlemail.com> |
e2d1d6c0 | 5672 | L: linux-wireless@vger.kernel.org |
084cb0fe | 5673 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
e2d1d6c0 | 5674 | S: Maintained |
679655da | 5675 | F: drivers/net/wireless/p54/ |
e2d1d6c0 | 5676 | |
f5cd7872 | 5677 | PA SEMI ETHERNET DRIVER |
8b58be88 | 5678 | M: Olof Johansson <olof@lixom.net> |
f5cd7872 OJ |
5679 | L: netdev@vger.kernel.org |
5680 | S: Maintained | |
ded19add | 5681 | F: drivers/net/ethernet/pasemi/* |
f5cd7872 | 5682 | |
beb58aa3 | 5683 | PA SEMI SMBUS DRIVER |
8b58be88 | 5684 | M: Olof Johansson <olof@lixom.net> |
846557d3 | 5685 | L: linux-i2c@vger.kernel.org |
beb58aa3 | 5686 | S: Maintained |
679655da | 5687 | F: drivers/i2c/busses/i2c-pasemi.c |
beb58aa3 | 5688 | |
48fc267e SK |
5689 | PADATA PARALLEL EXECUTION MECHANISM |
5690 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
48fc267e SK |
5691 | L: linux-crypto@vger.kernel.org |
5692 | S: Maintained | |
5693 | F: kernel/padata.c | |
5694 | F: include/linux/padata.h | |
5695 | F: Documentation/padata.txt | |
5696 | ||
709ee531 | 5697 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
8b58be88 | 5698 | M: Harald Welte <laforge@gnumonks.org> |
d0944853 | 5699 | L: platform-driver-x86@vger.kernel.org |
709ee531 | 5700 | S: Maintained |
679655da | 5701 | F: drivers/platform/x86/panasonic-laptop.c |
709ee531 | 5702 | |
368dd5ac | 5703 | PANASONIC MN10300/AM33/AM34 PORT |
8b58be88 JP |
5704 | M: David Howells <dhowells@redhat.com> |
5705 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> | |
4fa97181 DH |
5706 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
5707 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ | |
5708 | S: Maintained | |
679655da JP |
5709 | F: Documentation/mn10300/ |
5710 | F: arch/mn10300/ | |
4fa97181 | 5711 | |
1da177e4 | 5712 | PARALLEL PORT SUPPORT |
3dd1a329 | 5713 | L: linux-parport@lists.infradead.org (subscribers-only) |
5fdc2abe | 5714 | S: Orphan |
679655da JP |
5715 | F: drivers/parport/ |
5716 | F: include/linux/parport*.h | |
5717 | F: drivers/char/ppdev.c | |
c117ab84 | 5718 | F: include/uapi/linux/ppdev.h |
1da177e4 | 5719 | |
4cdf6bc2 | 5720 | PARAVIRT_OPS INTERFACE |
d633180c | 5721 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
8b58be88 JP |
5722 | M: Chris Wright <chrisw@sous-sol.org> |
5723 | M: Alok Kataria <akataria@vmware.com> | |
5724 | M: Rusty Russell <rusty@rustcorp.com.au> | |
c996d8b9 | 5725 | L: virtualization@lists.linux-foundation.org |
4cdf6bc2 | 5726 | S: Supported |
679655da JP |
5727 | F: Documentation/ia64/paravirt_ops.txt |
5728 | F: arch/*/kernel/paravirt* | |
5729 | F: arch/*/include/asm/paravirt.h | |
4cdf6bc2 | 5730 | |
e2d1d6c0 | 5731 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
8b58be88 | 5732 | M: Tim Waugh <tim@cyberelk.net> |
e2d1d6c0 RD |
5733 | L: linux-parport@lists.infradead.org (subscribers-only) |
5734 | W: http://www.torque.net/linux-pp.html | |
5735 | S: Maintained | |
679655da JP |
5736 | F: Documentation/blockdev/paride.txt |
5737 | F: drivers/block/paride/ | |
e2d1d6c0 RD |
5738 | |
5739 | PARISC ARCHITECTURE | |
b8828770 | 5740 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
b38a03b8 | 5741 | M: Helge Deller <deller@gmx.de> |
e2d1d6c0 RD |
5742 | L: linux-parisc@vger.kernel.org |
5743 | W: http://www.parisc-linux.org/ | |
8a6e2535 | 5744 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
08deed1e | 5745 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
e2d1d6c0 | 5746 | S: Maintained |
679655da JP |
5747 | F: arch/parisc/ |
5748 | F: drivers/parisc/ | |
e2d1d6c0 | 5749 | |
1662d32c | 5750 | PC87360 HARDWARE MONITORING DRIVER |
8b58be88 | 5751 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c JC |
5752 | L: lm-sensors@lm-sensors.org |
5753 | S: Maintained | |
679655da JP |
5754 | F: Documentation/hwmon/pc87360 |
5755 | F: drivers/hwmon/pc87360.c | |
1662d32c JC |
5756 | |
5757 | PC8736x GPIO DRIVER | |
8b58be88 | 5758 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 5759 | S: Maintained |
679655da | 5760 | F: drivers/char/pc8736x_gpio.c |
1662d32c | 5761 | |
1ad107fd JD |
5762 | PC87427 HARDWARE MONITORING DRIVER |
5763 | M: Jean Delvare <khali@linux-fr.org> | |
5764 | L: lm-sensors@lm-sensors.org | |
5765 | S: Maintained | |
5766 | F: Documentation/hwmon/pc87427 | |
5767 | F: drivers/hwmon/pc87427.c | |
5768 | ||
b26e0ed4 | 5769 | PCA9532 LED DRIVER |
8b58be88 | 5770 | M: Riku Voipio <riku.voipio@iki.fi> |
b26e0ed4 | 5771 | S: Maintained |
d5ca6918 JP |
5772 | F: drivers/leds/leds-pca9532.c |
5773 | F: include/linux/leds-pca9532.h | |
b26e0ed4 | 5774 | |
5ce914a8 | 5775 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
ca462085 | 5776 | M: Guenter Roeck <linux@roeck-us.net> |
5ce914a8 GR |
5777 | L: linux-i2c@vger.kernel.org |
5778 | S: Maintained | |
b4f0b74e | 5779 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
5ce914a8 | 5780 | |
a1867d36 WS |
5781 | PCA9564/PCA9665 I2C BUS DRIVER |
5782 | M: Wolfram Sang <w.sang@pengutronix.de> | |
5783 | L: linux-i2c@vger.kernel.org | |
5784 | S: Maintained | |
5785 | F: drivers/i2c/algos/i2c-algo-pca.c | |
5786 | F: drivers/i2c/busses/i2c-pca-* | |
5787 | F: include/linux/i2c-algo-pca.h | |
5788 | F: include/linux/i2c-pca-platform.h | |
5789 | ||
3971dae5 | 5790 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
055e72fe | 5791 | M: Khalid Aziz <khalid@gonehiking.org> |
3971dae5 KA |
5792 | S: Maintained |
5793 | F: drivers/firmware/pcdp.* | |
5794 | ||
065c6359 | 5795 | PCI ERROR RECOVERY |
6305902c | 5796 | M: Linas Vepstas <linasvepstas@gmail.com> |
c1f69db7 | 5797 | L: linux-pci@vger.kernel.org |
065c6359 | 5798 | S: Supported |
679655da JP |
5799 | F: Documentation/PCI/pci-error-recovery.txt |
5800 | F: Documentation/powerpc/eeh-pci-error-recovery.txt | |
065c6359 | 5801 | |
1da177e4 | 5802 | PCI SUBSYSTEM |
5ac3a6d2 | 5803 | M: Bjorn Helgaas <bhelgaas@google.com> |
2905474d | 5804 | L: linux-pci@vger.kernel.org |
99662dd1 | 5805 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
c0233ed4 | 5806 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
1da177e4 | 5807 | S: Supported |
679655da JP |
5808 | F: Documentation/PCI/ |
5809 | F: drivers/pci/ | |
5810 | F: include/linux/pci* | |
1da177e4 | 5811 | |
1da177e4 | 5812 | PCMCIA SUBSYSTEM |
4230dfc9 | 5813 | P: Linux PCMCIA Team |
f5df5881 | 5814 | L: linux-pcmcia@lists.infradead.org |
6650e0a5 | 5815 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
54e5881d | 5816 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
4230dfc9 | 5817 | S: Maintained |
679655da JP |
5818 | F: Documentation/pcmcia/ |
5819 | F: drivers/pcmcia/ | |
5820 | F: include/pcmcia/ | |
1da177e4 LT |
5821 | |
5822 | PCNET32 NETWORK DRIVER | |
227fb925 | 5823 | M: Don Fry <pcnet32@frontier.com> |
979b6c13 | 5824 | L: netdev@vger.kernel.org |
1da177e4 | 5825 | S: Maintained |
b955f6ca | 5826 | F: drivers/net/ethernet/amd/pcnet32.c |
1da177e4 | 5827 | |
48fc267e SK |
5828 | PCRYPT PARALLEL CRYPTO ENGINE |
5829 | M: Steffen Klassert <steffen.klassert@secunet.com> | |
5830 | L: linux-crypto@vger.kernel.org | |
5831 | S: Maintained | |
5832 | F: crypto/pcrypt.c | |
5833 | F: include/crypto/pcrypt.h | |
5834 | ||
e72df0b8 TH |
5835 | PER-CPU MEMORY ALLOCATOR |
5836 | M: Tejun Heo <tj@kernel.org> | |
5837 | M: Christoph Lameter <cl@linux-foundation.org> | |
e72df0b8 TH |
5838 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
5839 | S: Maintained | |
5840 | F: include/linux/percpu*.h | |
5841 | F: mm/percpu*.c | |
5842 | F: arch/*/include/asm/percpu.h | |
5843 | ||
ad4ecbcb | 5844 | PER-TASK DELAY ACCOUNTING |
185e595f | 5845 | M: Balbir Singh <bsingharora@gmail.com> |
ad4ecbcb | 5846 | S: Maintained |
679655da JP |
5847 | F: include/linux/delayacct.h |
5848 | F: kernel/delayacct.c | |
ad4ecbcb | 5849 | |
57c0c15b | 5850 | PERFORMANCE EVENTS SUBSYSTEM |
8b58be88 JP |
5851 | M: Peter Zijlstra <a.p.zijlstra@chello.nl> |
5852 | M: Paul Mackerras <paulus@samba.org> | |
dd9b238c | 5853 | M: Ingo Molnar <mingo@redhat.com> |
4aafd3f7 | 5854 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
75fc2d37 | 5855 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
6c0b3244 | 5856 | S: Supported |
d53e8365 | 5857 | F: kernel/events/* |
a003236c | 5858 | F: include/linux/perf_event.h |
c117ab84 | 5859 | F: include/uapi/linux/perf_event.h |
141c4296 RR |
5860 | F: arch/*/kernel/perf_event*.c |
5861 | F: arch/*/kernel/*/perf_event*.c | |
5862 | F: arch/*/kernel/*/*/perf_event*.c | |
a003236c | 5863 | F: arch/*/include/asm/perf_event.h |
a003236c VL |
5864 | F: arch/*/kernel/perf_callchain.c |
5865 | F: tools/perf/ | |
6c0b3244 | 5866 | |
dd49d0f5 | 5867 | PERSONALITY HANDLING |
8b58be88 | 5868 | M: Christoph Hellwig <hch@infradead.org> |
dd49d0f5 JC |
5869 | L: linux-abi-devel@lists.sourceforge.net |
5870 | S: Maintained | |
679655da | 5871 | F: include/linux/personality.h |
c117ab84 | 5872 | F: include/uapi/linux/personality.h |
dd49d0f5 | 5873 | |
838e7a03 | 5874 | PHONET PROTOCOL |
2a06b40f | 5875 | M: Remi Denis-Courmont <courmisch@gmail.com> |
838e7a03 RDC |
5876 | S: Supported |
5877 | F: Documentation/networking/phonet.txt | |
5878 | F: include/linux/phonet.h | |
5879 | F: include/net/phonet/ | |
c117ab84 | 5880 | F: include/uapi/linux/phonet.h |
838e7a03 RDC |
5881 | F: net/phonet/ |
5882 | ||
1da177e4 | 5883 | PHRAM MTD DRIVER |
8b58be88 | 5884 | M: Joern Engel <joern@lazybastard.org> |
1da177e4 LT |
5885 | L: linux-mtd@lists.infradead.org |
5886 | S: Maintained | |
679655da | 5887 | F: drivers/mtd/devices/phram.c |
1da177e4 | 5888 | |
efdbb10e BP |
5889 | PICOLCD HID DRIVER |
5890 | M: Bruno Prémont <bonbons@linux-vserver.org> | |
5891 | L: linux-input@vger.kernel.org | |
5892 | S: Maintained | |
5893 | F: drivers/hid/hid-picolcd* | |
5894 | ||
a53bfa07 JI |
5895 | PICOXCELL SUPPORT |
5896 | M: Jamie Iles <jamie@jamieiles.com> | |
5897 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5898 | T: git git://github.com/jamieiles/linux-2.6-ji.git | |
5899 | S: Supported | |
5900 | F: arch/arm/mach-picoxcell | |
5901 | F: drivers/*/picoxcell* | |
5902 | F: drivers/*/*/picoxcell* | |
5903 | ||
2744e8af LW |
5904 | PIN CONTROL SUBSYSTEM |
5905 | M: Linus Walleij <linus.walleij@linaro.org> | |
5906 | S: Maintained | |
07f29ba6 | 5907 | F: drivers/pinctrl/ |
8e406fe4 | 5908 | F: include/linux/pinctrl/ |
2744e8af | 5909 | |
2201bbb8 JCPV |
5910 | PIN CONTROLLER - ATMEL AT91 |
5911 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> | |
5912 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5913 | S: Maintained | |
5914 | F: drivers/pinctrl/pinctrl-at91.c | |
5915 | ||
deda8287 | 5916 | PIN CONTROLLER - ST SPEAR |
8e406fe4 | 5917 | M: Viresh Kumar <viresh.linux@gmail.com> |
deda8287 VK |
5918 | L: spear-devel@list.st.com |
5919 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
5920 | W: http://www.st.com/spear | |
5921 | S: Maintained | |
8e406fe4 | 5922 | F: drivers/pinctrl/spear/ |
deda8287 | 5923 | |
249a6771 | 5924 | PKTCDVD DRIVER |
dbd47133 | 5925 | M: Jiri Kosina <jkosina@suse.cz> |
249a6771 | 5926 | S: Maintained |
679655da JP |
5927 | F: drivers/block/pktcdvd.c |
5928 | F: include/linux/pktcdvd.h | |
c117ab84 | 5929 | F: include/uapi/linux/pktcdvd.h |
249a6771 | 5930 | |
b31d8273 G |
5931 | PKUNITY SOC DRIVERS |
5932 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
5933 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
5934 | S: Maintained | |
5935 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
5936 | F: drivers/input/serio/i8042-unicore32io.h | |
d10e4a66 | 5937 | F: drivers/i2c/busses/i2c-puv3.c |
ce443ab5 | 5938 | F: drivers/video/fb-puv3.c |
2809e80b | 5939 | F: drivers/rtc/rtc-puv3.c |
b31d8273 | 5940 | |
9d2ecfb7 | 5941 | PMBUS HARDWARE MONITORING DRIVERS |
ca462085 | 5942 | M: Guenter Roeck <linux@roeck-us.net> |
9d2ecfb7 GR |
5943 | L: lm-sensors@lm-sensors.org |
5944 | W: http://www.lm-sensors.org/ | |
5945 | W: http://www.roeck-us.net/linux/drivers/ | |
5946 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git | |
5947 | S: Maintained | |
5948 | F: Documentation/hwmon/pmbus | |
5949 | F: drivers/hwmon/pmbus/ | |
5950 | F: include/linux/i2c/pmbus.h | |
5951 | ||
89a36810 | 5952 | PMC SIERRA MaxRAID DRIVER |
076cfaae | 5953 | M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> |
89a36810 AR |
5954 | L: linux-scsi@vger.kernel.org |
5955 | W: http://www.pmc-sierra.com/ | |
5956 | S: Supported | |
5957 | F: drivers/scsi/pmcraid.* | |
5958 | ||
dbf9bfe6 | 5959 | PMC SIERRA PM8001 DRIVER |
5960 | M: jack_wang@usish.com | |
5961 | M: lindar_liu@usish.com | |
5962 | L: linux-scsi@vger.kernel.org | |
5963 | S: Supported | |
5964 | F: drivers/scsi/pm8001/ | |
5965 | ||
1da177e4 | 5966 | POSIX CLOCKS and TIMERS |
8b58be88 | 5967 | M: Thomas Gleixner <tglx@linutronix.de> |
75fc2d37 | 5968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
1da177e4 | 5969 | S: Supported |
679655da JP |
5970 | F: fs/timerfd.c |
5971 | F: include/linux/timer* | |
5972 | F: kernel/*timer* | |
1da177e4 | 5973 | |
3be86148 | 5974 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
8b58be88 JP |
5975 | M: Anton Vorontsov <cbou@mail.ru> |
5976 | M: David Woodhouse <dwmw2@infradead.org> | |
54e5881d | 5977 | T: git git://git.infradead.org/battery-2.6.git |
3be86148 | 5978 | S: Maintained |
679655da | 5979 | F: include/linux/power_supply.h |
8cd725a1 | 5980 | F: drivers/power/ |
3be86148 | 5981 | |
1da177e4 | 5982 | PNP SUPPORT |
8b58be88 | 5983 | M: Adam Belay <abelay@mit.edu> |
c2d197e8 | 5984 | M: Bjorn Helgaas <bhelgaas@google.com> |
1da177e4 | 5985 | S: Maintained |
679655da | 5986 | F: drivers/pnp/ |
1da177e4 | 5987 | |
999445d4 | 5988 | PNXxxxx I2C DRIVER |
8b58be88 | 5989 | M: Vitaly Wool <vitalywool@gmail.com> |
846557d3 | 5990 | L: linux-i2c@vger.kernel.org |
999445d4 | 5991 | S: Maintained |
679655da | 5992 | F: drivers/i2c/busses/i2c-pnx.c |
999445d4 | 5993 | |
1da177e4 | 5994 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
8b58be88 | 5995 | M: Paul Mackerras <paulus@samba.org> |
1da177e4 LT |
5996 | L: linux-ppp@vger.kernel.org |
5997 | S: Maintained | |
224cf5ad | 5998 | F: drivers/net/ppp/ppp_* |
1da177e4 LT |
5999 | |
6000 | PPP OVER ATM (RFC 2364) | |
8b58be88 | 6001 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
1da177e4 | 6002 | S: Maintained |
679655da | 6003 | F: net/atm/pppoatm.c |
c117ab84 | 6004 | F: include/uapi/linux/atmppp.h |
1da177e4 LT |
6005 | |
6006 | PPP OVER ETHERNET | |
8b58be88 | 6007 | M: Michal Ostrowski <mostrows@earthlink.net> |
1da177e4 | 6008 | S: Maintained |
224cf5ad JK |
6009 | F: drivers/net/ppp/pppoe.c |
6010 | F: drivers/net/ppp/pppox.c | |
1da177e4 | 6011 | |
a6d2370b | 6012 | PPP OVER L2TP |
8b58be88 | 6013 | M: James Chapman <jchapman@katalix.com> |
a6d2370b | 6014 | S: Maintained |
90ca28d1 | 6015 | F: net/l2tp/l2tp_ppp.c |
679655da | 6016 | F: include/linux/if_pppol2tp.h |
c117ab84 | 6017 | F: include/uapi/linux/if_pppol2tp.h |
a6d2370b | 6018 | |
eae9d2ba | 6019 | PPS SUPPORT |
8b58be88 | 6020 | M: Rodolfo Giometti <giometti@enneenne.com> |
eae9d2ba RG |
6021 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
6022 | L: linuxpps@ml.enneenne.com (subscribers-only) | |
6023 | S: Maintained | |
cabaaf41 JP |
6024 | F: Documentation/pps/ |
6025 | F: drivers/pps/ | |
6026 | F: include/linux/pps*.h | |
eae9d2ba | 6027 | |
71a6d0af HW |
6028 | PPTP DRIVER |
6029 | M: Dmitry Kozlov <xeb@mail.ru> | |
6030 | L: netdev@vger.kernel.org | |
6031 | S: Maintained | |
224cf5ad | 6032 | F: drivers/net/ppp/pptp.c |
71a6d0af HW |
6033 | W: http://sourceforge.net/projects/accel-pptp |
6034 | ||
1da177e4 | 6035 | PREEMPTIBLE KERNEL |
8b58be88 | 6036 | M: Robert Love <rml@tech9.net> |
1da177e4 LT |
6037 | L: kpreempt-tech@lists.sourceforge.net |
6038 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel | |
6039 | S: Supported | |
679655da JP |
6040 | F: Documentation/preempt-locking.txt |
6041 | F: include/linux/preempt.h | |
1da177e4 LT |
6042 | |
6043 | PRISM54 WIRELESS DRIVER | |
8b58be88 | 6044 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
724c6b35 | 6045 | L: linux-wireless@vger.kernel.org |
9ef80804 | 6046 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
1d89cae1 | 6047 | S: Obsolete |
679655da | 6048 | F: drivers/net/wireless/prism54/ |
1da177e4 | 6049 | |
b3277dfa | 6050 | PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER |
8b58be88 | 6051 | M: Mikael Pettersson <mikpe@it.uu.se> |
b3277dfa MP |
6052 | L: linux-ide@vger.kernel.org |
6053 | S: Maintained | |
679655da | 6054 | F: drivers/ata/sata_promise.* |
b3277dfa | 6055 | |
02c18891 | 6056 | PS3 NETWORK SUPPORT |
b809b9ca | 6057 | M: Geoff Levand <geoff@infradead.org> |
02c18891 | 6058 | L: netdev@vger.kernel.org |
a4724ed6 | 6059 | L: cbe-oss-dev@lists.ozlabs.org |
b809b9ca | 6060 | S: Maintained |
8df158ac | 6061 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
02c18891 | 6062 | |
f58a9d17 | 6063 | PS3 PLATFORM SUPPORT |
b809b9ca | 6064 | M: Geoff Levand <geoff@infradead.org> |
a4724ed6 SR |
6065 | L: linuxppc-dev@lists.ozlabs.org |
6066 | L: cbe-oss-dev@lists.ozlabs.org | |
b809b9ca | 6067 | S: Maintained |
679655da JP |
6068 | F: arch/powerpc/boot/ps3* |
6069 | F: arch/powerpc/include/asm/lv1call.h | |
6070 | F: arch/powerpc/include/asm/ps3*.h | |
6071 | F: arch/powerpc/platforms/ps3/ | |
6072 | F: drivers/*/ps3* | |
6073 | F: drivers/ps3/ | |
fec629b8 | 6074 | F: drivers/rtc/rtc-ps3.c |
679655da | 6075 | F: drivers/usb/host/*ps3.c |
fec629b8 | 6076 | F: sound/ppc/snd_ps3* |
f58a9d17 | 6077 | |
cffb4add | 6078 | PS3VRAM DRIVER |
8b58be88 | 6079 | M: Jim Paris <jim@jtan.com> |
a4724ed6 | 6080 | L: cbe-oss-dev@lists.ozlabs.org |
cffb4add | 6081 | S: Maintained |
8a3977cb | 6082 | F: drivers/block/ps3vram.c |
cffb4add | 6083 | |
8defe599 AV |
6084 | PSTORE FILESYSTEM |
6085 | M: Anton Vorontsov <cbouatmailru@gmail.com> | |
6086 | M: Colin Cross <ccross@android.com> | |
6087 | M: Kees Cook <keescook@chromium.org> | |
6088 | M: Tony Luck <tony.luck@intel.com> | |
6089 | S: Maintained | |
6090 | T: git git://git.infradead.org/users/cbou/linux-pstore.git | |
6091 | F: fs/pstore/ | |
6092 | F: include/linux/pstore* | |
6093 | F: drivers/firmware/efivars.c | |
6094 | F: drivers/acpi/apei/erst.c | |
6095 | ||
7fbc415d RC |
6096 | PTP HARDWARE CLOCK SUPPORT |
6097 | M: Richard Cochran <richardcochran@gmail.com> | |
6098 | S: Maintained | |
6099 | W: http://linuxptp.sourceforge.net/ | |
6100 | F: Documentation/ABI/testing/sysfs-ptp | |
6101 | F: Documentation/ptp/* | |
0ecb3cdd | 6102 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
7fbc415d RC |
6103 | F: drivers/net/phy/dp83640* |
6104 | F: drivers/ptp/* | |
6105 | F: include/linux/ptp_cl* | |
6106 | ||
cf94a4d1 | 6107 | PTRACE SUPPORT |
8b58be88 JP |
6108 | M: Roland McGrath <roland@redhat.com> |
6109 | M: Oleg Nesterov <oleg@redhat.com> | |
cf94a4d1 CH |
6110 | S: Maintained |
6111 | F: include/asm-generic/syscall.h | |
6112 | F: include/linux/ptrace.h | |
6113 | F: include/linux/regset.h | |
6114 | F: include/linux/tracehook.h | |
c117ab84 | 6115 | F: include/uapi/linux/ptrace.h |
cf94a4d1 CH |
6116 | F: kernel/ptrace.c |
6117 | ||
8320204a | 6118 | PVRUSB2 VIDEO4LINUX DRIVER |
8b58be88 | 6119 | M: Mike Isely <isely@pobox.com> |
16e9495d | 6120 | L: pvrusb2@isely.net (subscribers-only) |
661263b5 | 6121 | L: linux-media@vger.kernel.org |
8320204a | 6122 | W: http://www.isely.net/pvrusb2/ |
275ffde4 | 6123 | T: git git://linuxtv.org/media_tree.git |
8320204a | 6124 | S: Maintained |
679655da | 6125 | F: Documentation/video4linux/README.pvrusb2 |
0c0d06ca | 6126 | F: drivers/media/usb/pvrusb2/ |
8320204a | 6127 | |
39532e6c HG |
6128 | PWC WEBCAM DRIVER |
6129 | M: Hans de Goede <hdegoede@redhat.com> | |
6130 | L: linux-media@vger.kernel.org | |
6131 | T: git git://linuxtv.org/media_tree.git | |
6132 | S: Maintained | |
6133 | F: drivers/media/usb/pwc/* | |
6134 | ||
200efedd TR |
6135 | PWM SUBSYSTEM |
6136 | M: Thierry Reding <thierry.reding@avionic-design.de> | |
0c2498f1 SH |
6137 | L: linux-kernel@vger.kernel.org |
6138 | S: Maintained | |
200efedd TR |
6139 | W: http://gitorious.org/linux-pwm |
6140 | T: git git://gitorious.org/linux-pwm/linux-pwm.git | |
6141 | F: Documentation/pwm.txt | |
6142 | F: Documentation/devicetree/bindings/pwm/ | |
6143 | F: include/linux/pwm.h | |
0c2498f1 | 6144 | F: drivers/pwm/ |
a140b98d TR |
6145 | F: drivers/video/backlight/pwm_bl.c |
6146 | F: include/linux/pwm_backlight.h | |
0c2498f1 | 6147 | |
30ec261e | 6148 | PXA2xx/PXA3xx SUPPORT |
8b58be88 JP |
6149 | M: Eric Miao <eric.y.miao@gmail.com> |
6150 | M: Russell King <linux@arm.linux.org.uk> | |
a323f664 | 6151 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
efc03ecb | 6152 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
6153 | T: git git://github.com/hzhuang1/linux.git |
6154 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
1da177e4 | 6155 | S: Maintained |
679655da JP |
6156 | F: arch/arm/mach-pxa/ |
6157 | F: drivers/pcmcia/pxa2xx* | |
9df92e6c | 6158 | F: drivers/spi/spi-pxa2xx* |
679655da JP |
6159 | F: drivers/usb/gadget/pxa2* |
6160 | F: include/sound/pxa2xx-lib.h | |
bec4c99e MB |
6161 | F: sound/arm/pxa* |
6162 | F: sound/soc/pxa | |
1da177e4 | 6163 | |
3f640c61 | 6164 | MMP SUPPORT |
8b58be88 | 6165 | M: Eric Miao <eric.y.miao@gmail.com> |
a323f664 | 6166 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
e8e6cb32 | 6167 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
3f640c61 HZ |
6168 | T: git git://github.com/hzhuang1/linux.git |
6169 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git | |
e8e6cb32 | 6170 | S: Maintained |
3f640c61 | 6171 | F: arch/arm/mach-mmp/ |
e8e6cb32 | 6172 | |
272f133a PO |
6173 | PXA MMCI DRIVER |
6174 | S: Orphan | |
6175 | ||
57f63bc8 | 6176 | PXA RTC DRIVER |
8b58be88 | 6177 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
57f63bc8 RJ |
6178 | L: rtc-linux@googlegroups.com |
6179 | S: Maintained | |
6180 | ||
52a09a04 | 6181 | QIB DRIVER |
8473c603 | 6182 | M: Mike Marciniszyn <infinipath@intel.com> |
52a09a04 MM |
6183 | L: linux-rdma@vger.kernel.org |
6184 | S: Supported | |
6185 | F: drivers/infiniband/hw/qib/ | |
6186 | ||
5e9772b9 JS |
6187 | QLOGIC QLA1280 SCSI DRIVER |
6188 | M: Michael Reed <mdr@sgi.com> | |
6189 | L: linux-scsi@vger.kernel.org | |
6190 | S: Maintained | |
6191 | F: drivers/scsi/qla1280.[ch] | |
6192 | ||
1da177e4 | 6193 | QLOGIC QLA2XXX FC-SCSI DRIVER |
8b58be88 | 6194 | M: Andrew Vasquez <andrew.vasquez@qlogic.com> |
95e6a856 | 6195 | M: linux-driver@qlogic.com |
1da177e4 LT |
6196 | L: linux-scsi@vger.kernel.org |
6197 | S: Supported | |
679655da JP |
6198 | F: Documentation/scsi/LICENSE.qla2xxx |
6199 | F: drivers/scsi/qla2xxx/ | |
1da177e4 | 6200 | |
883c98fe RA |
6201 | QLOGIC QLA4XXX iSCSI DRIVER |
6202 | M: Ravi Anand <ravi.anand@qlogic.com> | |
6203 | M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> | |
6204 | M: iscsi-driver@qlogic.com | |
6205 | L: linux-scsi@vger.kernel.org | |
6206 | S: Supported | |
6207 | F: drivers/scsi/qla4xxx/ | |
6208 | ||
5a4faa87 | 6209 | QLOGIC QLA3XXX NETWORK DRIVER |
0a955c3a | 6210 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 6211 | M: Ron Mercer <ron.mercer@qlogic.com> |
5a4faa87 RM |
6212 | M: linux-driver@qlogic.com |
6213 | L: netdev@vger.kernel.org | |
6214 | S: Supported | |
679655da | 6215 | F: Documentation/networking/LICENSE.qla3xxx |
aa43c215 | 6216 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
5a4faa87 | 6217 | |
0ec00f03 | 6218 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
2ab1c24b | 6219 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
e987716b | 6220 | M: Sony Chacko <sony.chacko@qlogic.com> |
0ec00f03 AKS |
6221 | M: linux-driver@qlogic.com |
6222 | L: netdev@vger.kernel.org | |
6223 | S: Supported | |
aa43c215 | 6224 | F: drivers/net/ethernet/qlogic/qlcnic/ |
0ec00f03 | 6225 | |
c4e84bde | 6226 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
b997d79a | 6227 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
8b58be88 | 6228 | M: Ron Mercer <ron.mercer@qlogic.com> |
4cbfbe25 | 6229 | M: linux-driver@qlogic.com |
c4e84bde RM |
6230 | L: netdev@vger.kernel.org |
6231 | S: Supported | |
aa43c215 | 6232 | F: drivers/net/ethernet/qlogic/qlge/ |
c4e84bde | 6233 | |
1da177e4 | 6234 | QNX4 FILESYSTEM |
8b58be88 | 6235 | M: Anders Larsen <al@alarsen.net> |
1da177e4 LT |
6236 | W: http://www.alarsen.net/linux/qnx4fs/ |
6237 | S: Maintained | |
80811493 | 6238 | F: fs/qnx4/ |
c117ab84 CEB |
6239 | F: include/uapi/linux/qnx4_fs.h |
6240 | F: include/uapi/linux/qnxtypes.h | |
1da177e4 | 6241 | |
91952bc0 AP |
6242 | QT1010 MEDIA DRIVER |
6243 | M: Antti Palosaari <crope@iki.fi> | |
6244 | L: linux-media@vger.kernel.org | |
6245 | W: http://linuxtv.org/ | |
6246 | W: http://palosaari.fi/linux/ | |
6247 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6248 | T: git git://linuxtv.org/anttip/media_tree.git | |
6249 | S: Maintained | |
6250 | F: drivers/media/tuners/qt1010* | |
6251 | ||
4f4567cf RK |
6252 | QUALCOMM HEXAGON ARCHITECTURE |
6253 | M: Richard Kuo <rkuo@codeaurora.org> | |
6254 | L: linux-hexagon@vger.kernel.org | |
6255 | S: Supported | |
6256 | F: arch/hexagon/ | |
6257 | ||
602adf40 | 6258 | RADOS BLOCK DEVICE (RBD) |
09d90327 SW |
6259 | M: Yehuda Sadeh <yehuda@inktank.com> |
6260 | M: Sage Weil <sage@inktank.com> | |
6261 | M: Alex Elder <elder@inktank.com> | |
602adf40 | 6262 | M: ceph-devel@vger.kernel.org |
09d90327 SW |
6263 | W: http://ceph.com/ |
6264 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git | |
602adf40 YS |
6265 | S: Supported |
6266 | F: drivers/block/rbd.c | |
6267 | F: drivers/block/rbd_types.h | |
6268 | ||
1da177e4 | 6269 | RADEON FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6270 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
c69f677c | 6271 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 6272 | S: Maintained |
679655da | 6273 | F: drivers/video/aty/radeon* |
c117ab84 | 6274 | F: include/uapi/linux/radeonfb.h |
1da177e4 | 6275 | |
c6c9b34c HG |
6276 | RADIOSHARK RADIO DRIVER |
6277 | M: Hans de Goede <hdegoede@redhat.com> | |
6278 | L: linux-media@vger.kernel.org | |
6279 | T: git git://linuxtv.org/media_tree.git | |
6280 | S: Maintained | |
6281 | F: drivers/media/radio/radio-shark.c | |
6282 | ||
6283 | RADIOSHARK2 RADIO DRIVER | |
6284 | M: Hans de Goede <hdegoede@redhat.com> | |
6285 | L: linux-media@vger.kernel.org | |
6286 | T: git git://linuxtv.org/media_tree.git | |
6287 | S: Maintained | |
6288 | F: drivers/media/radio/radio-shark2.c | |
6289 | F: drivers/media/radio/radio-tea5777.c | |
6290 | ||
1da177e4 | 6291 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
8b58be88 | 6292 | M: Paul Mackerras <paulus@samba.org> |
c69f677c | 6293 | L: linux-fbdev@vger.kernel.org |
1da177e4 | 6294 | S: Maintained |
679655da | 6295 | F: drivers/video/aty/aty128fb.c |
1da177e4 | 6296 | |
e7839f25 | 6297 | RALINK RT2X00 WIRELESS LAN DRIVER |
95ea3627 | 6298 | P: rt2x00 project |
e1a6542f | 6299 | M: Ivo van Doorn <IvDoorn@gmail.com> |
4a7bd3ec | 6300 | M: Gertjan van Wingerde <gwingerde@gmail.com> |
f198f98e | 6301 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
95ea3627 | 6302 | L: linux-wireless@vger.kernel.org |
83fc9c89 | 6303 | L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) |
95ea3627 ID |
6304 | W: http://rt2x00.serialmonkey.com/ |
6305 | S: Maintained | |
54e5881d | 6306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git |
95ea3627 ID |
6307 | F: drivers/net/wireless/rt2x00/ |
6308 | ||
9db5579b | 6309 | RAMDISK RAM BLOCK DEVICE DRIVER |
6e575590 | 6310 | M: Nick Piggin <npiggin@kernel.dk> |
9db5579b | 6311 | S: Maintained |
679655da JP |
6312 | F: Documentation/blockdev/ramdisk.txt |
6313 | F: drivers/block/brd.c | |
9db5579b | 6314 | |
9e95ce27 | 6315 | RANDOM NUMBER DRIVER |
330e0a01 | 6316 | M: Theodore Ts'o" <tytso@mit.edu> |
9e95ce27 | 6317 | S: Maintained |
679655da | 6318 | F: drivers/char/random.c |
9e95ce27 | 6319 | |
394b701c | 6320 | RAPIDIO SUBSYSTEM |
8b58be88 | 6321 | M: Matt Porter <mporter@kernel.crashing.org> |
b8bc1dd3 | 6322 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
394b701c | 6323 | S: Maintained |
679655da | 6324 | F: drivers/rapidio/ |
394b701c | 6325 | |
e2d1d6c0 | 6326 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
e2d1d6c0 | 6327 | L: linux-wireless@vger.kernel.org |
f52a5490 | 6328 | S: Orphan |
679655da | 6329 | F: drivers/net/wireless/ray* |
e2d1d6c0 RD |
6330 | |
6331 | RCUTORTURE MODULE | |
8b58be88 JP |
6332 | M: Josh Triplett <josh@freedesktop.org> |
6333 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
f9094d8e | 6334 | S: Supported |
08deed1e | 6335 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
679655da JP |
6336 | F: Documentation/RCU/torture.txt |
6337 | F: kernel/rcutorture.c | |
e2d1d6c0 | 6338 | |
c1f766b5 | 6339 | RDC R-321X SoC |
8b58be88 | 6340 | M: Florian Fainelli <florian@openwrt.org> |
c1f766b5 FF |
6341 | S: Maintained |
6342 | ||
db17f395 | 6343 | RDC R6040 FAST ETHERNET DRIVER |
8b58be88 | 6344 | M: Florian Fainelli <florian@openwrt.org> |
db17f395 FF |
6345 | L: netdev@vger.kernel.org |
6346 | S: Maintained | |
58565a35 | 6347 | F: drivers/net/ethernet/rdc/r6040.c |
db17f395 | 6348 | |
a09ed661 | 6349 | RDS - RELIABLE DATAGRAM SOCKETS |
dd1294c4 | 6350 | M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com> |
fbb5a558 | 6351 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
a09ed661 | 6352 | S: Supported |
679655da | 6353 | F: net/rds/ |
a09ed661 | 6354 | |
595182bc | 6355 | READ-COPY UPDATE (RCU) |
8b58be88 JP |
6356 | M: Dipankar Sarma <dipankar@in.ibm.com> |
6357 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
9fab9787 | 6358 | W: http://www.rdrop.com/users/paulmck/RCU/ |
595182bc | 6359 | S: Supported |
08deed1e | 6360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
f9094d8e | 6361 | F: Documentation/RCU/ |
9fab9787 | 6362 | X: Documentation/RCU/torture.txt |
f9094d8e | 6363 | F: include/linux/rcu* |
f9094d8e | 6364 | F: kernel/rcu* |
f9094d8e | 6365 | X: kernel/rcutorture.c |
595182bc | 6366 | |
0c86edc0 | 6367 | REAL TIME CLOCK (RTC) SUBSYSTEM |
8b58be88 | 6368 | M: Alessandro Zummo <a.zummo@towertech.it> |
76465493 | 6369 | L: rtc-linux@googlegroups.com |
8a6e2535 | 6370 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
0c86edc0 | 6371 | S: Maintained |
679655da JP |
6372 | F: Documentation/rtc.txt |
6373 | F: drivers/rtc/ | |
6374 | F: include/linux/rtc.h | |
c117ab84 | 6375 | F: include/uapi/linux/rtc.h |
0c86edc0 | 6376 | |
1da177e4 | 6377 | REISERFS FILE SYSTEM |
76c4e5ea | 6378 | L: reiserfs-devel@vger.kernel.org |
1da177e4 | 6379 | S: Supported |
679655da | 6380 | F: fs/reiserfs/ |
1da177e4 | 6381 | |
b83a313b MB |
6382 | REGISTER MAP ABSTRACTION |
6383 | M: Mark Brown <broonie@opensource.wolfsonmicro.com> | |
6384 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git | |
6385 | S: Supported | |
6386 | F: drivers/base/regmap/ | |
6387 | F: include/linux/regmap.h | |
6388 | ||
400e64df OBC |
6389 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
6390 | M: Ohad Ben-Cohen <ohad@wizery.com> | |
6bb697b6 | 6391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
400e64df OBC |
6392 | S: Maintained |
6393 | F: drivers/remoteproc/ | |
6394 | F: Documentation/remoteproc.txt | |
6fc26488 | 6395 | F: include/linux/remoteproc.h |
400e64df | 6396 | |
e0897645 | 6397 | RFKILL |
8b58be88 | 6398 | M: Johannes Berg <johannes@sipsolutions.net> |
19d337df | 6399 | L: linux-wireless@vger.kernel.org |
ce466579 JB |
6400 | W: http://wireless.kernel.org/ |
6401 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git | |
6402 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git | |
e0897645 | 6403 | S: Maintained |
505c9247 | 6404 | F: Documentation/rfkill.txt |
80811493 | 6405 | F: net/rfkill/ |
e0897645 | 6406 | |
67e054e9 ML |
6407 | RICOH SMARTMEDIA/XD DRIVER |
6408 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
6409 | S: Maintained | |
21c26f50 JP |
6410 | F: drivers/mtd/nand/r852.c |
6411 | F: drivers/mtd/nand/r852.h | |
67e054e9 | 6412 | |
92634125 ML |
6413 | RICOH R5C592 MEMORYSTICK DRIVER |
6414 | M: Maxim Levitsky <maximlevitsky@gmail.com> | |
6415 | S: Maintained | |
6416 | F: drivers/memstick/host/r592.* | |
6417 | ||
1da177e4 LT |
6418 | ROCKETPORT DRIVER |
6419 | P: Comtrol Corp. | |
1da177e4 LT |
6420 | W: http://www.comtrol.com |
6421 | S: Maintained | |
679655da | 6422 | F: Documentation/serial/rocket.txt |
c897401b | 6423 | F: drivers/tty/rocket* |
1da177e4 LT |
6424 | |
6425 | ROSE NETWORK LAYER | |
8b58be88 | 6426 | M: Ralf Baechle <ralf@linux-mips.org> |
1da177e4 | 6427 | L: linux-hams@vger.kernel.org |
d34cb28a | 6428 | W: http://www.linux-ax25.org/ |
1da177e4 | 6429 | S: Maintained |
679655da | 6430 | F: include/net/rose.h |
c117ab84 | 6431 | F: include/uapi/linux/rose.h |
679655da | 6432 | F: net/rose/ |
1da177e4 | 6433 | |
91952bc0 AP |
6434 | RTL2830 MEDIA DRIVER |
6435 | M: Antti Palosaari <crope@iki.fi> | |
6436 | L: linux-media@vger.kernel.org | |
6437 | W: http://linuxtv.org/ | |
6438 | W: http://palosaari.fi/linux/ | |
6439 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6440 | T: git git://linuxtv.org/anttip/media_tree.git | |
6441 | S: Maintained | |
6442 | F: drivers/media/dvb-frontends/rtl2830* | |
6443 | ||
59840488 | 6444 | RTL8180 WIRELESS DRIVER |
8b58be88 | 6445 | M: "John W. Linville" <linville@tuxdriver.com> |
605bebe2 | 6446 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6447 | W: http://wireless.kernel.org/ |
54e5881d | 6448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
605bebe2 | 6449 | S: Maintained |
3cfeb0c3 | 6450 | F: drivers/net/wireless/rtl818x/rtl8180/ |
605bebe2 | 6451 | |
59840488 | 6452 | RTL8187 WIRELESS DRIVER |
9f0939bf | 6453 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
8b58be88 JP |
6454 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
6455 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7d2c86b5 | 6456 | L: linux-wireless@vger.kernel.org |
491b26b4 | 6457 | W: http://wireless.kernel.org/ |
54e5881d | 6458 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
7d2c86b5 | 6459 | S: Maintained |
3cfeb0c3 | 6460 | F: drivers/net/wireless/rtl818x/rtl8187/ |
59840488 | 6461 | |
3cf0c8ad LF |
6462 | RTL8192CE WIRELESS DRIVER |
6463 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
6464 | M: Chaoming Li <chaoming_li@realsil.com.cn> | |
6465 | L: linux-wireless@vger.kernel.org | |
491b26b4 | 6466 | W: http://wireless.kernel.org/ |
3cf0c8ad LF |
6467 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
6468 | S: Maintained | |
6469 | F: drivers/net/wireless/rtlwifi/ | |
f0b3e4b7 | 6470 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
59840488 | 6471 | |
9eb8ef74 | 6472 | S3 SAVAGE FRAMEBUFFER DRIVER |
8b58be88 | 6473 | M: Antonino Daplas <adaplas@gmail.com> |
c69f677c | 6474 | L: linux-fbdev@vger.kernel.org |
ce00f85c | 6475 | S: Maintained |
679655da | 6476 | F: drivers/video/savage/ |
9eb8ef74 | 6477 | |
1da177e4 | 6478 | S390 |
8b58be88 JP |
6479 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
6480 | M: Heiko Carstens <heiko.carstens@de.ibm.com> | |
1da177e4 | 6481 | M: linux390@de.ibm.com |
d58140cc | 6482 | L: linux-s390@vger.kernel.org |
5238da45 HC |
6483 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6484 | S: Supported | |
679655da | 6485 | F: arch/s390/ |
a968cd3e | 6486 | F: drivers/s390/ |
20d16fef | 6487 | F: block/partitions/ibm.c |
3bfe6858 JN |
6488 | F: Documentation/s390/ |
6489 | F: Documentation/DocBook/s390* | |
5238da45 HC |
6490 | |
6491 | S390 NETWORK DRIVERS | |
8b58be88 JP |
6492 | M: Ursula Braun <ursula.braun@de.ibm.com> |
6493 | M: Frank Blaschka <blaschka@linux.vnet.ibm.com> | |
5238da45 | 6494 | M: linux390@de.ibm.com |
d58140cc | 6495 | L: linux-s390@vger.kernel.org |
5238da45 HC |
6496 | W: http://www.ibm.com/developerworks/linux/linux390/ |
6497 | S: Supported | |
679655da | 6498 | F: drivers/s390/net/ |
5238da45 | 6499 | |
feed9b62 | 6500 | S390 ZCRYPT DRIVER |
51120c2c | 6501 | M: Holger Dengler <hd@linux.vnet.ibm.com> |
feed9b62 FB |
6502 | M: linux390@de.ibm.com |
6503 | L: linux-s390@vger.kernel.org | |
a968cd3e | 6504 | W: http://www.ibm.com/developerworks/linux/linux390/ |
feed9b62 | 6505 | S: Supported |
d5ca6918 | 6506 | F: drivers/s390/crypto/ |
feed9b62 | 6507 | |
5238da45 | 6508 | S390 ZFCP DRIVER |
d38e19d0 | 6509 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
5238da45 | 6510 | M: linux390@de.ibm.com |
d58140cc | 6511 | L: linux-s390@vger.kernel.org |
5238da45 | 6512 | W: http://www.ibm.com/developerworks/linux/linux390/ |
1da177e4 | 6513 | S: Supported |
679655da | 6514 | F: drivers/s390/scsi/zfcp_* |
1da177e4 | 6515 | |
dd96df2c | 6516 | S390 IUCV NETWORK LAYER |
8b58be88 | 6517 | M: Ursula Braun <ursula.braun@de.ibm.com> |
dd96df2c UB |
6518 | M: linux390@de.ibm.com |
6519 | L: linux-s390@vger.kernel.org | |
6520 | W: http://www.ibm.com/developerworks/linux/linux390/ | |
6521 | S: Supported | |
679655da JP |
6522 | F: drivers/s390/net/*iucv* |
6523 | F: include/net/iucv/ | |
6524 | F: net/iucv/ | |
dd96df2c | 6525 | |
4dde7f75 | 6526 | S3C24XX SD/MMC Driver |
8b58be88 | 6527 | M: Ben Dooks <ben-linux@fluff.org> |
efc03ecb | 6528 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
4dde7f75 | 6529 | S: Supported |
679655da | 6530 | F: drivers/mmc/host/s3cmci.* |
4dde7f75 | 6531 | |
98ed12e6 MCC |
6532 | SAA7134 VIDEO4LINUX DRIVER |
6533 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
6534 | L: linux-media@vger.kernel.org | |
6535 | W: http://linuxtv.org | |
6536 | T: git git://linuxtv.org/media_tree.git | |
6537 | S: Odd fixes | |
6538 | F: Documentation/video4linux/saa7134/ | |
6539 | F: drivers/media/pci/saa7134/ | |
6540 | ||
1da177e4 | 6541 | SAA7146 VIDEO4LINUX-2 DRIVER |
8b58be88 | 6542 | M: Michael Hunold <michael@mihu.de> |
661263b5 | 6543 | L: linux-media@vger.kernel.org |
275ffde4 | 6544 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
6545 | W: http://www.mihu.de/linux/saa7146 |
6546 | S: Maintained | |
90d72ac6 MCC |
6547 | F: drivers/media/common/saa7146/ |
6548 | F: drivers/media/pci/saa7146/ | |
6549 | F: include/media/saa7146* | |
1da177e4 | 6550 | |
92304a40 | 6551 | SAMSUNG LAPTOP DRIVER |
5909c654 | 6552 | M: Corentin Chary <corentin.chary@gmail.com> |
92304a40 CC |
6553 | L: platform-driver-x86@vger.kernel.org |
6554 | S: Maintained | |
6555 | F: drivers/platform/x86/samsung-laptop.c | |
6556 | ||
4a109cc0 | 6557 | SAMSUNG AUDIO (ASoC) DRIVERS |
250b6851 | 6558 | M: Sangbeom Kim <sbkim73@samsung.com> |
4a109cc0 MB |
6559 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
6560 | S: Supported | |
7a939419 | 6561 | F: sound/soc/samsung |
4a109cc0 | 6562 | |
0d89a28b JH |
6563 | SAMSUNG FRAMEBUFFER DRIVER |
6564 | M: Jingoo Han <jg1.han@samsung.com> | |
6565 | L: linux-fbdev@vger.kernel.org | |
6566 | S: Maintained | |
6567 | F: drivers/video/s3c-fb.c | |
6568 | ||
f69d3a17 SK |
6569 | SAMSUNG MULTIFUNCTION DEVICE DRIVERS |
6570 | M: Sangbeom Kim <sbkim73@samsung.com> | |
6571 | L: linux-kernel@vger.kernel.org | |
6572 | S: Supported | |
6573 | F: drivers/mfd/sec*.c | |
6574 | F: drivers/regulator/s2m*.c | |
6575 | F: drivers/regulator/s5m*.c | |
6576 | F: drivers/rtc/rtc-sec.c | |
6577 | F: include/linux/mfd/samsung/ | |
6578 | ||
6fd86ab2 SN |
6579 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
6580 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> | |
6581 | L: linux-media@vger.kernel.org | |
6582 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) | |
6583 | S: Maintained | |
6584 | F: drivers/media/platform/s3c-camif/ | |
6585 | F: include/media/s3c_camif.h | |
6586 | ||
ca749e2a | 6587 | SERIAL DRIVERS |
5e30bbb7 | 6588 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
ca749e2a | 6589 | L: linux-serial@vger.kernel.org |
5e30bbb7 | 6590 | S: Maintained |
ca749e2a AC |
6591 | F: drivers/tty/serial |
6592 | ||
aecb7b64 | 6593 | SYNOPSYS DESIGNWARE DMAC DRIVER |
2d8a3b3d | 6594 | M: Viresh Kumar <viresh.linux@gmail.com> |
aecb7b64 VK |
6595 | S: Maintained |
6596 | F: include/linux/dw_dmac.h | |
6597 | F: drivers/dma/dw_dmac_regs.h | |
6598 | F: drivers/dma/dw_dmac.c | |
6599 | ||
88606e80 TG |
6600 | TIMEKEEPING, NTP |
6601 | M: John Stultz <johnstul@us.ibm.com> | |
6602 | M: Thomas Gleixner <tglx@linutronix.de> | |
75fc2d37 | 6603 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
88606e80 TG |
6604 | S: Supported |
6605 | F: include/linux/clocksource.h | |
6606 | F: include/linux/time.h | |
6607 | F: include/linux/timex.h | |
c117ab84 CEB |
6608 | F: include/uapi/linux/time.h |
6609 | F: include/uapi/linux/timex.h | |
88606e80 TG |
6610 | F: kernel/time/clocksource.c |
6611 | F: kernel/time/time*.c | |
6612 | F: kernel/time/ntp.c | |
bbe7b8be | 6613 | F: drivers/clocksource |
88606e80 | 6614 | |
5b3f03f0 | 6615 | TLG2300 VIDEO4LINUX-2 DRIVER |
d2fa2187 JP |
6616 | M: Huang Shijie <shijie8@gmail.com> |
6617 | M: Kang Yong <kangyong@telegent.com> | |
6618 | M: Zhang Xiaobing <xbzhang@telegent.com> | |
5b3f03f0 | 6619 | S: Supported |
0c0d06ca | 6620 | F: drivers/media/usb/tlg2300 |
5b3f03f0 | 6621 | |
1da177e4 | 6622 | SC1200 WDT DRIVER |
8b58be88 | 6623 | M: Zwane Mwaikambo <zwane@arm.linux.org.uk> |
1da177e4 | 6624 | S: Maintained |
679655da | 6625 | F: drivers/watchdog/sc1200wdt.c |
1da177e4 LT |
6626 | |
6627 | SCHEDULER | |
dd9b238c | 6628 | M: Ingo Molnar <mingo@redhat.com> |
8b58be88 | 6629 | M: Peter Zijlstra <peterz@infradead.org> |
75fc2d37 | 6630 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
1da177e4 | 6631 | S: Maintained |
95c0d71d | 6632 | F: kernel/sched/ |
679655da | 6633 | F: include/linux/sched.h |
c117ab84 | 6634 | F: include/uapi/linux/sched.h |
1da177e4 | 6635 | |
6bcf6737 | 6636 | SCORE ARCHITECTURE |
a2681a75 JP |
6637 | M: Chen Liqin <liqin.chen@sunplusct.com> |
6638 | M: Lennox Wu <lennox.wu@gmail.com> | |
6bcf6737 CL |
6639 | W: http://www.sunplusct.com |
6640 | S: Supported | |
a2681a75 | 6641 | F: arch/score/ |
6bcf6737 | 6642 | |
1da177e4 | 6643 | SCSI CDROM DRIVER |
8b58be88 | 6644 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
6645 | L: linux-scsi@vger.kernel.org |
6646 | W: http://www.kernel.dk | |
6647 | S: Maintained | |
679655da | 6648 | F: drivers/scsi/sr* |
1da177e4 | 6649 | |
fb50a83d RD |
6650 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
6651 | M: David Dillow <dillowda@ornl.gov> | |
6652 | L: linux-rdma@vger.kernel.org | |
6653 | S: Supported | |
6654 | W: http://www.openfabrics.org | |
6655 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ | |
6656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git | |
6657 | F: drivers/infiniband/ulp/srp/ | |
6658 | F: include/scsi/srp.h | |
6659 | ||
1da177e4 | 6660 | SCSI SG DRIVER |
8b58be88 | 6661 | M: Doug Gilbert <dgilbert@interlog.com> |
1da177e4 LT |
6662 | L: linux-scsi@vger.kernel.org |
6663 | W: http://www.torque.net/sg | |
6664 | S: Maintained | |
679655da JP |
6665 | F: drivers/scsi/sg.c |
6666 | F: include/scsi/sg.h | |
1da177e4 LT |
6667 | |
6668 | SCSI SUBSYSTEM | |
c95286d8 | 6669 | M: "James E.J. Bottomley" <JBottomley@parallels.com> |
1da177e4 | 6670 | L: linux-scsi@vger.kernel.org |
54e5881d JP |
6671 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git |
6672 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git | |
6673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git | |
1da177e4 | 6674 | S: Maintained |
679655da JP |
6675 | F: drivers/scsi/ |
6676 | F: include/scsi/ | |
1da177e4 LT |
6677 | |
6678 | SCSI TAPE DRIVER | |
8b58be88 | 6679 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
1da177e4 LT |
6680 | L: linux-scsi@vger.kernel.org |
6681 | S: Maintained | |
679655da JP |
6682 | F: Documentation/scsi/st.txt |
6683 | F: drivers/scsi/st* | |
1da177e4 LT |
6684 | |
6685 | SCTP PROTOCOL | |
8b6efb75 | 6686 | M: Vlad Yasevich <vyasevich@gmail.com> |
8b58be88 | 6687 | M: Sridhar Samudrala <sri@us.ibm.com> |
02c38d0a | 6688 | M: Neil Horman <nhorman@tuxdriver.com> |
1a418796 | 6689 | L: linux-sctp@vger.kernel.org |
5f85813c | 6690 | W: http://lksctp.sourceforge.net |
8b6efb75 | 6691 | S: Maintained |
679655da JP |
6692 | F: Documentation/networking/sctp.txt |
6693 | F: include/linux/sctp.h | |
6694 | F: include/net/sctp/ | |
6695 | F: net/sctp/ | |
1da177e4 LT |
6696 | |
6697 | SCx200 CPU SUPPORT | |
8b58be88 | 6698 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6699 | S: Odd Fixes |
679655da | 6700 | F: Documentation/i2c/busses/scx200_acb |
390889b6 | 6701 | F: arch/x86/platform/scx200/ |
679655da JP |
6702 | F: drivers/watchdog/scx200_wdt.c |
6703 | F: drivers/i2c/busses/scx200* | |
6704 | F: drivers/mtd/maps/scx200_docflash.c | |
6705 | F: include/linux/scx200.h | |
1662d32c JC |
6706 | |
6707 | SCx200 GPIO DRIVER | |
8b58be88 | 6708 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6709 | S: Maintained |
679655da JP |
6710 | F: drivers/char/scx200_gpio.c |
6711 | F: include/linux/scx200_gpio.h | |
1662d32c JC |
6712 | |
6713 | SCx200 HRT CLOCKSOURCE DRIVER | |
8b58be88 | 6714 | M: Jim Cromie <jim.cromie@gmail.com> |
1662d32c | 6715 | S: Maintained |
679655da | 6716 | F: drivers/clocksource/scx200_hrt.c |
1da177e4 | 6717 | |
6a36913a | 6718 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
8b58be88 | 6719 | M: Sascha Sommer <saschasommer@freenet.de> |
6a36913a SS |
6720 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
6721 | S: Maintained | |
679655da | 6722 | F: drivers/mmc/host/sdricoh_cs.c |
6a36913a | 6723 | |
e7839f25 | 6724 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
245feaa6 | 6725 | M: Chris Ball <cjb@laptop.org> |
7a241d6e | 6726 | L: linux-mmc@vger.kernel.org |
245feaa6 CB |
6727 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git |
6728 | S: Maintained | |
7a241d6e | 6729 | F: drivers/mmc/host/sdhci.* |
d4a45787 | 6730 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 6731 | |
3085e9c1 | 6732 | SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) |
8b58be88 | 6733 | M: Anton Vorontsov <avorontsov@ru.mvista.com> |
a4724ed6 | 6734 | L: linuxppc-dev@lists.ozlabs.org |
7a241d6e | 6735 | L: linux-mmc@vger.kernel.org |
e2d1d6c0 | 6736 | S: Maintained |
d4a45787 | 6737 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
e2d1d6c0 | 6738 | |
0d1bb41a | 6739 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
8b58be88 | 6740 | M: Ben Dooks <ben-linux@fluff.org> |
7a241d6e | 6741 | L: linux-mmc@vger.kernel.org |
0d1bb41a BD |
6742 | S: Maintained |
6743 | F: drivers/mmc/host/sdhci-s3c.c | |
6744 | ||
c63b3cba | 6745 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
2d8a3b3d | 6746 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 | 6747 | L: spear-devel@list.st.com |
c63b3cba VK |
6748 | L: linux-mmc@vger.kernel.org |
6749 | S: Maintained | |
6750 | F: drivers/mmc/host/sdhci-spear.c | |
6751 | ||
8711cca2 | 6752 | SECURITY SUBSYSTEM |
9b45c0d2 | 6753 | M: James Morris <james.l.morris@oracle.com> |
8711cca2 | 6754 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
89879a7e | 6755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
9ccf010f | 6756 | W: http://kernsec.org/ |
8711cca2 | 6757 | S: Supported |
7d2c86b5 | 6758 | F: security/ |
8711cca2 | 6759 | |
1da177e4 | 6760 | SECURITY CONTACT |
8b58be88 | 6761 | M: Security Officers <security@kernel.org> |
1da177e4 LT |
6762 | S: Supported |
6763 | ||
6764 | SELINUX SECURITY MODULE | |
8b58be88 | 6765 | M: Stephen Smalley <sds@tycho.nsa.gov> |
9b45c0d2 | 6766 | M: James Morris <james.l.morris@oracle.com> |
8b58be88 | 6767 | M: Eric Paris <eparis@parisplace.org> |
7d2c86b5 | 6768 | L: selinux@tycho.nsa.gov (subscribers-only, general discussion) |
f058925b | 6769 | W: http://selinuxproject.org |
6bde95ce | 6770 | T: git git://git.infradead.org/users/eparis/selinux.git |
1da177e4 | 6771 | S: Supported |
679655da JP |
6772 | F: include/linux/selinux* |
6773 | F: security/selinux/ | |
6bde95ce | 6774 | F: scripts/selinux/ |
1da177e4 | 6775 | |
c1c124e9 JJ |
6776 | APPARMOR SECURITY MODULE |
6777 | M: John Johansen <john.johansen@canonical.com> | |
6778 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) | |
6779 | W: apparmor.wiki.kernel.org | |
6780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git | |
6781 | S: Supported | |
6782 | F: security/apparmor/ | |
6783 | ||
cef2cf07 | 6784 | SENSABLE PHANTOM |
8b58be88 | 6785 | M: Jiri Slaby <jirislaby@gmail.com> |
cef2cf07 | 6786 | S: Maintained |
679655da | 6787 | F: drivers/misc/phantom.c |
c117ab84 | 6788 | F: include/uapi/linux/phantom.h |
cef2cf07 | 6789 | |
4480f15b | 6790 | SERIAL ATA (SATA) SUBSYSTEM |
8b58be88 | 6791 | M: Jeff Garzik <jgarzik@pobox.com> |
1da177e4 | 6792 | L: linux-ide@vger.kernel.org |
54e5881d | 6793 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git |
1da177e4 | 6794 | S: Supported |
d5ca6918 JP |
6795 | F: drivers/ata/ |
6796 | F: include/linux/ata.h | |
6797 | F: include/linux/libata.h | |
1da177e4 | 6798 | |
6733b39a | 6799 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
0ca43cc0 | 6800 | M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> |
3387f656 | 6801 | L: linux-scsi@vger.kernel.org |
0ca43cc0 | 6802 | W: http://www.emulex.com |
3387f656 JP |
6803 | S: Supported |
6804 | F: drivers/scsi/be2iscsi/ | |
6733b39a | 6805 | |
6b7c5b94 | 6806 | SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER |
fea3af67 AK |
6807 | M: Sathya Perla <sathya.perla@emulex.com> |
6808 | M: Subbu Seetharaman <subbu.seetharaman@emulex.com> | |
6809 | M: Ajit Khaparde <ajit.khaparde@emulex.com> | |
7d2c86b5 | 6810 | L: netdev@vger.kernel.org |
fea3af67 | 6811 | W: http://www.emulex.com |
7d2c86b5 | 6812 | S: Supported |
9aebddd1 | 6813 | F: drivers/net/ethernet/emulex/benet/ |
6b7c5b94 | 6814 | |
8ceee660 | 6815 | SFC NETWORK DRIVER |
c06f51ea | 6816 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
c06f51ea JP |
6817 | M: Ben Hutchings <bhutchings@solarflare.com> |
6818 | L: netdev@vger.kernel.org | |
8ceee660 | 6819 | S: Supported |
874aeea5 | 6820 | F: drivers/net/ethernet/sfc/ |
8ceee660 | 6821 | |
e2d1d6c0 | 6822 | SGI GRU DRIVER |
8b58be88 | 6823 | M: Jack Steiner <steiner@sgi.com> |
e2d1d6c0 | 6824 | S: Maintained |
679655da | 6825 | F: drivers/misc/sgi-gru/ |
e2d1d6c0 RD |
6826 | |
6827 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER | |
8b58be88 | 6828 | M: Pat Gefre <pfg@sgi.com> |
e2d1d6c0 RD |
6829 | L: linux-ia64@vger.kernel.org |
6830 | S: Supported | |
679655da | 6831 | F: Documentation/ia64/serial.txt |
df621252 | 6832 | F: drivers/tty/serial/ioc?_serial.c |
679655da | 6833 | F: include/linux/ioc?.h |
e2d1d6c0 | 6834 | |
1da177e4 | 6835 | SGI VISUAL WORKSTATION 320 AND 540 |
8b58be88 | 6836 | M: Andrey Panin <pazke@donpac.ru> |
1da177e4 LT |
6837 | L: linux-visws-devel@lists.sf.net |
6838 | W: http://linux-visws.sf.net | |
6839 | S: Maintained for 2.6. | |
679655da | 6840 | F: Documentation/sgi-visws.txt |
1da177e4 | 6841 | |
75312619 | 6842 | SGI XP/XPC/XPNET DRIVER |
8b58be88 | 6843 | M: Robin Holt <holt@sgi.com> |
75312619 | 6844 | S: Maintained |
679655da | 6845 | F: drivers/misc/sgi-xp/ |
75312619 | 6846 | |
6349d997 | 6847 | SIMPLE FIRMWARE INTERFACE (SFI) |
2bf822d7 | 6848 | M: Len Brown <lenb@kernel.org> |
6349d997 LB |
6849 | L: sfi-devel@simplefirmware.org |
6850 | W: http://simplefirmware.org/ | |
6851 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git | |
e2d1d6c0 | 6852 | S: Supported |
943fc810 | 6853 | F: arch/x86/platform/sfi/ |
6349d997 LB |
6854 | F: drivers/sfi/ |
6855 | F: include/linux/sfi*.h | |
e2d1d6c0 | 6856 | |
1da177e4 LT |
6857 | SIMTEC EB110ATX (Chalice CATS) |
6858 | P: Ben Dooks | |
b16957c6 BD |
6859 | P: Vincent Sanders <vince@simtec.co.uk> |
6860 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
6861 | W: http://www.simtec.co.uk/products/EB110ATX/ |
6862 | S: Supported | |
6863 | ||
6864 | SIMTEC EB2410ITX (BAST) | |
6865 | P: Ben Dooks | |
b16957c6 BD |
6866 | P: Vincent Sanders <vince@simtec.co.uk> |
6867 | M: Simtec Linux Team <linux@simtec.co.uk> | |
1da177e4 LT |
6868 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
6869 | S: Supported | |
58322038 BD |
6870 | F: arch/arm/mach-s3c2410/mach-bast.c |
6871 | F: arch/arm/mach-s3c2410/bast-ide.c | |
6872 | F: arch/arm/mach-s3c2410/bast-irq.c | |
1da177e4 | 6873 | |
4c5adde7 | 6874 | TI DAVINCI MACHINE SUPPORT |
3ba789c0 KH |
6875 | M: Sekhar Nori <nsekhar@ti.com> |
6876 | M: Kevin Hilman <khilman@ti.com> | |
f296ed78 | 6877 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) |
c9f46a85 | 6878 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
8a6e2535 | 6879 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
4c5adde7 KH |
6880 | S: Supported |
6881 | F: arch/arm/mach-davinci | |
046d0a37 | 6882 | F: drivers/i2c/busses/i2c-davinci.c |
4c5adde7 | 6883 | |
8d4b3f08 LP |
6884 | TI DAVINCI SERIES MEDIA DRIVER |
6885 | M: Manjunath Hadli <manjunath.hadli@ti.com> | |
6886 | M: Prabhakar Lad <prabhakar.lad@ti.com> | |
6887 | L: linux-media@vger.kernel.org | |
6888 | L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) | |
6889 | W: http://linuxtv.org/ | |
6890 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
6891 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git | |
6892 | S: Supported | |
6893 | F: drivers/media/platform/davinci/ | |
6894 | F: include/media/davinci/ | |
6895 | ||
92aab3c0 | 6896 | SIS 190 ETHERNET DRIVER |
8b58be88 | 6897 | M: Francois Romieu <romieu@fr.zoreil.com> |
92aab3c0 FR |
6898 | L: netdev@vger.kernel.org |
6899 | S: Maintained | |
8c7de408 | 6900 | F: drivers/net/ethernet/sis/sis190.c |
92aab3c0 | 6901 | |
1da177e4 | 6902 | SIS 900/7016 FAST ETHERNET DRIVER |
8b58be88 | 6903 | M: Daniele Venzano <venza@brownhat.org> |
1da177e4 | 6904 | W: http://www.brownhat.org/sis900.html |
979b6c13 | 6905 | L: netdev@vger.kernel.org |
1da177e4 | 6906 | S: Maintained |
8c7de408 | 6907 | F: drivers/net/ethernet/sis/sis900.* |
1da177e4 | 6908 | |
6ea884db | 6909 | SIS 96X I2C/SMBUS DRIVER |
8b58be88 | 6910 | M: "Mark M. Hoffman" <mhoffman@lightlink.com> |
846557d3 | 6911 | L: linux-i2c@vger.kernel.org |
6ea884db | 6912 | S: Maintained |
679655da JP |
6913 | F: Documentation/i2c/busses/i2c-sis96x |
6914 | F: drivers/i2c/busses/i2c-sis96x.c | |
6ea884db | 6915 | |
1da177e4 | 6916 | SIS FRAMEBUFFER DRIVER |
8b58be88 | 6917 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 | 6918 | W: http://www.winischhofer.net/linuxsisvga.shtml |
b7eee616 | 6919 | S: Maintained |
679655da JP |
6920 | F: Documentation/fb/sisfb.txt |
6921 | F: drivers/video/sis/ | |
6922 | F: include/video/sisfb.h | |
1da177e4 LT |
6923 | |
6924 | SIS USB2VGA DRIVER | |
8b58be88 | 6925 | M: Thomas Winischhofer <thomas@winischhofer.net> |
1da177e4 LT |
6926 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
6927 | S: Maintained | |
679655da | 6928 | F: drivers/usb/misc/sisusbvga/ |
1da177e4 | 6929 | |
415ad26d | 6930 | SLAB ALLOCATOR |
8b58be88 | 6931 | M: Christoph Lameter <cl@linux-foundation.org> |
2ed1c525 | 6932 | M: Pekka Enberg <penberg@kernel.org> |
8b58be88 | 6933 | M: Matt Mackall <mpm@selenic.com> |
415ad26d CL |
6934 | L: linux-mm@kvack.org |
6935 | S: Maintained | |
679655da JP |
6936 | F: include/linux/sl?b*.h |
6937 | F: mm/sl?b.c | |
415ad26d | 6938 | |
9fab9787 PM |
6939 | SLEEPABLE READ-COPY UPDATE (SRCU) |
6940 | M: Lai Jiangshan <laijs@cn.fujitsu.com> | |
6941 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> | |
6942 | W: http://www.rdrop.com/users/paulmck/RCU/ | |
6943 | S: Supported | |
6944 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git | |
6945 | F: include/linux/srcu* | |
6946 | F: kernel/srcu* | |
6947 | ||
66372841 CS |
6948 | SMACK SECURITY MODULE |
6949 | M: Casey Schaufler <casey@schaufler-ca.com> | |
6950 | L: linux-security-module@vger.kernel.org | |
6951 | W: http://schaufler-ca.com | |
6952 | T: git git://git.gitorious.org/smack-next/kernel.git | |
6953 | S: Maintained | |
6954 | F: Documentation/security/Smack.txt | |
6955 | F: security/smack/ | |
6956 | ||
1da177e4 | 6957 | SMC91x ETHERNET DRIVER |
2f82af08 | 6958 | M: Nicolas Pitre <nico@fluxnic.net> |
18e2842b | 6959 | S: Odd Fixes |
ae150435 | 6960 | F: drivers/net/ethernet/smsc/smc91x.* |
1da177e4 | 6961 | |
e8e31622 SA |
6962 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
6963 | M: Sakari Ailus <sakari.ailus@iki.fi> | |
6964 | L: linux-media@vger.kernel.org | |
6965 | S: Maintained | |
6966 | F: drivers/media/i2c/smiapp | |
6967 | F: include/media/smiapp.h | |
6968 | F: drivers/media/i2c/smiapp-pll.c | |
6969 | F: drivers/media/i2c/smiapp-pll.h | |
6970 | ||
920fa1ff GR |
6971 | SMM665 HARDWARE MONITOR DRIVER |
6972 | M: Guenter Roeck <linux@roeck-us.net> | |
6973 | L: lm-sensors@lm-sensors.org | |
6974 | S: Maintained | |
6975 | F: Documentation/hwmon/smm665 | |
6976 | F: drivers/hwmon/smm665.c | |
6977 | ||
9df7305b | 6978 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
90b24cfb | 6979 | M: Steve Glendinning <steve.glendinning@shawell.net> |
9df7305b | 6980 | L: lm-sensors@lm-sensors.org |
90b24cfb | 6981 | S: Maintained |
9df7305b SG |
6982 | F: Documentation/hwmon/emc2103 |
6983 | F: drivers/hwmon/emc2103.c | |
6984 | ||
a98d506c HG |
6985 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
6986 | M: Hans de Goede <hdegoede@redhat.com> | |
6987 | L: lm-sensors@lm-sensors.org | |
6988 | S: Supported | |
6989 | F: Documentation/hwmon/sch5627 | |
6990 | F: drivers/hwmon/sch5627.c | |
6991 | ||
6ea884db | 6992 | SMSC47B397 HARDWARE MONITOR DRIVER |
8b58be88 | 6993 | M: "Mark M. Hoffman" <mhoffman@lightlink.com> |
6ea884db MH |
6994 | L: lm-sensors@lm-sensors.org |
6995 | S: Maintained | |
679655da JP |
6996 | F: Documentation/hwmon/smsc47b397 |
6997 | F: drivers/hwmon/smsc47b397.c | |
6ea884db | 6998 | |
fd9abb3d | 6999 | SMSC911x ETHERNET DRIVER |
90b24cfb | 7000 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2cb37728 | 7001 | L: netdev@vger.kernel.org |
90b24cfb | 7002 | S: Maintained |
679655da | 7003 | F: include/linux/smsc911x.h |
ae150435 | 7004 | F: drivers/net/ethernet/smsc/smsc911x.* |
2cb37728 SG |
7005 | |
7006 | SMSC9420 PCI ETHERNET DRIVER | |
90b24cfb | 7007 | M: Steve Glendinning <steve.glendinning@shawell.net> |
fd9abb3d | 7008 | L: netdev@vger.kernel.org |
90b24cfb | 7009 | S: Maintained |
ae150435 | 7010 | F: drivers/net/ethernet/smsc/smsc9420.* |
fd9abb3d | 7011 | |
3c8a63e2 | 7012 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
90b24cfb | 7013 | M: Steve Glendinning <steve.glendinning@shawell.net> |
3c8a63e2 | 7014 | L: linux-fbdev@vger.kernel.org |
90b24cfb | 7015 | S: Maintained |
3c8a63e2 SG |
7016 | F: drivers/video/smscufx.c |
7017 | ||
e2d1d6c0 | 7018 | SN-IA64 (Itanium) SUB-PLATFORM |
8b58be88 | 7019 | M: Jes Sorensen <jes@sgi.com> |
e2d1d6c0 RD |
7020 | L: linux-altix@sgi.com |
7021 | L: linux-ia64@vger.kernel.org | |
7022 | W: http://www.sgi.com/altix | |
7023 | S: Maintained | |
679655da | 7024 | F: arch/ia64/sn/ |
e2d1d6c0 | 7025 | |
668acf32 | 7026 | SOC-CAMERA V4L2 SUBSYSTEM |
8b58be88 | 7027 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
661263b5 | 7028 | L: linux-media@vger.kernel.org |
275ffde4 | 7029 | T: git git://linuxtv.org/media_tree.git |
795fb7e7 | 7030 | S: Maintained |
90d72ac6 MCC |
7031 | F: include/media/soc* |
7032 | F: drivers/media/i2c/soc_camera/ | |
7033 | F: drivers/media/platform/soc_camera/ | |
668acf32 | 7034 | |
e2d1d6c0 | 7035 | SOEKRIS NET48XX LED SUPPORT |
8b58be88 | 7036 | M: Chris Boot <bootc@bootc.net> |
e2d1d6c0 | 7037 | S: Maintained |
679655da | 7038 | F: drivers/leds/leds-net48xx.c |
e2d1d6c0 | 7039 | |
1da177e4 | 7040 | SOFTWARE RAID (Multiple Disks) SUPPORT |
8b58be88 | 7041 | M: Neil Brown <neilb@suse.de> |
1da177e4 | 7042 | L: linux-raid@vger.kernel.org |
524418bb | 7043 | S: Supported |
679655da JP |
7044 | F: drivers/md/ |
7045 | F: include/linux/raid/ | |
c117ab84 | 7046 | F: include/uapi/linux/raid/ |
1da177e4 | 7047 | |
1da177e4 | 7048 | SONIC NETWORK DRIVER |
8b58be88 | 7049 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
979b6c13 | 7050 | L: netdev@vger.kernel.org |
1da177e4 | 7051 | S: Maintained |
d9fb9f38 | 7052 | F: drivers/net/ethernet/natsemi/sonic.* |
1da177e4 | 7053 | |
61e115a5 | 7054 | SONICS SILICON BACKPLANE DRIVER (SSB) |
eb032b98 | 7055 | M: Michael Buesch <m@bues.ch> |
61e115a5 MB |
7056 | L: netdev@vger.kernel.org |
7057 | S: Maintained | |
679655da JP |
7058 | F: drivers/ssb/ |
7059 | F: include/linux/ssb/ | |
61e115a5 | 7060 | |
1da177e4 | 7061 | SONY VAIO CONTROL DEVICE DRIVER |
8b58be88 | 7062 | M: Mattia Dongili <malattia@linux.it> |
d0944853 | 7063 | L: platform-driver-x86@vger.kernel.org |
5b18167d | 7064 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
1da177e4 | 7065 | S: Maintained |
679655da JP |
7066 | F: Documentation/laptops/sony-laptop.txt |
7067 | F: drivers/char/sonypi.c | |
7068 | F: drivers/platform/x86/sony-laptop.c | |
7069 | F: include/linux/sony-laptop.h | |
1da177e4 | 7070 | |
baf8532a | 7071 | SONY MEMORYSTICK CARD SUPPORT |
8b58be88 | 7072 | M: Alex Dubov <oakad@yahoo.com> |
baf8532a AD |
7073 | W: http://tifmxx.berlios.de/ |
7074 | S: Maintained | |
679655da | 7075 | F: drivers/memstick/host/tifm_ms.c |
baf8532a | 7076 | |
1da177e4 | 7077 | SOUND |
8b58be88 JP |
7078 | M: Jaroslav Kysela <perex@perex.cz> |
7079 | M: Takashi Iwai <tiwai@suse.de> | |
93711660 | 7080 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
3126a179 | 7081 | W: http://www.alsa-project.org/ |
dde7ad8d | 7082 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
3126a179 | 7083 | T: git git://git.alsa-project.org/alsa-kernel.git |
1da177e4 | 7084 | S: Maintained |
3126a179 JP |
7085 | F: Documentation/sound/ |
7086 | F: include/sound/ | |
c117ab84 | 7087 | F: include/uapi/sound/ |
679655da | 7088 | F: sound/ |
1da177e4 | 7089 | |
bd903bde | 7090 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
63405ce8 | 7091 | M: Liam Girdwood <lrg@ti.com> |
8b58be88 | 7092 | M: Mark Brown <broonie@opensource.wolfsonmicro.com> |
86f14df8 | 7093 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
93711660 | 7094 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
b0b8daf7 | 7095 | W: http://alsa-project.org/main/index.php/ASoC |
eb1a6af3 | 7096 | S: Supported |
679655da | 7097 | F: sound/soc/ |
e6e55122 | 7098 | F: include/sound/soc* |
eb1a6af3 | 7099 | |
473321fc | 7100 | SPARC + UltraSPARC (sparc/sparc64) |
8b58be88 | 7101 | M: "David S. Miller" <davem@davemloft.net> |
1da177e4 | 7102 | L: sparclinux@vger.kernel.org |
8a6e2535 | 7103 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
08deed1e JP |
7104 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7105 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
1da177e4 | 7106 | S: Maintained |
679655da | 7107 | F: arch/sparc/ |
7765b8bb | 7108 | F: drivers/sbus/ |
1da177e4 | 7109 | |
6404fcca DM |
7110 | SPARC SERIAL DRIVERS |
7111 | M: "David S. Miller" <davem@davemloft.net> | |
7112 | L: sparclinux@vger.kernel.org | |
08deed1e JP |
7113 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
7114 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git | |
6404fcca | 7115 | S: Maintained |
6816383a | 7116 | F: include/linux/sunserialcore.h |
df621252 | 7117 | F: drivers/tty/serial/suncore.c |
df621252 GKH |
7118 | F: drivers/tty/serial/sunhv.c |
7119 | F: drivers/tty/serial/sunsab.c | |
7120 | F: drivers/tty/serial/sunsab.h | |
7121 | F: drivers/tty/serial/sunsu.c | |
7122 | F: drivers/tty/serial/sunzilog.c | |
7123 | F: drivers/tty/serial/sunzilog.h | |
6404fcca | 7124 | |
389325b4 CL |
7125 | SPARSE CHECKER |
7126 | M: "Christopher Li" <sparse@chrisli.org> | |
7127 | L: linux-sparse@vger.kernel.org | |
7128 | W: https://sparse.wiki.kernel.org/ | |
7129 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git | |
7130 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git | |
7131 | S: Maintained | |
7132 | F: include/linux/compiler.h | |
7133 | ||
fc0c195a | 7134 | SPEAR PLATFORM SUPPORT |
2d8a3b3d | 7135 | M: Viresh Kumar <viresh.linux@gmail.com> |
71e09a9e | 7136 | M: Shiraz Hashim <shiraz.hashim@st.com> |
fbfa0748 VK |
7137 | L: spear-devel@list.st.com |
7138 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7139 | W: http://www.st.com/spear |
7140 | S: Maintained | |
7141 | F: arch/arm/plat-spear/ | |
7142 | ||
71e09a9e | 7143 | SPEAR13XX MACHINE SUPPORT |
2d8a3b3d | 7144 | M: Viresh Kumar <viresh.linux@gmail.com> |
71e09a9e | 7145 | M: Shiraz Hashim <shiraz.hashim@st.com> |
fbfa0748 VK |
7146 | L: spear-devel@list.st.com |
7147 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7148 | W: http://www.st.com/spear |
7149 | S: Maintained | |
71e09a9e | 7150 | F: arch/arm/mach-spear13xx/ |
fc0c195a | 7151 | |
fc0c195a | 7152 | SPEAR3XX MACHINE SUPPORT |
2d8a3b3d | 7153 | M: Viresh Kumar <viresh.linux@gmail.com> |
71e09a9e | 7154 | M: Shiraz Hashim <shiraz.hashim@st.com> |
fbfa0748 VK |
7155 | L: spear-devel@list.st.com |
7156 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7157 | W: http://www.st.com/spear |
7158 | S: Maintained | |
7159 | F: arch/arm/mach-spear3xx/ | |
7160 | ||
7161 | SPEAR6XX MACHINE SUPPORT | |
7162 | M: Rajeev Kumar <rajeev-dlh.kumar@st.com> | |
71e09a9e | 7163 | M: Shiraz Hashim <shiraz.hashim@st.com> |
2d8a3b3d | 7164 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 VK |
7165 | L: spear-devel@list.st.com |
7166 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7167 | W: http://www.st.com/spear |
7168 | S: Maintained | |
7169 | F: arch/arm/mach-spear6xx/ | |
7170 | ||
7171 | SPEAR CLOCK FRAMEWORK SUPPORT | |
2d8a3b3d | 7172 | M: Viresh Kumar <viresh.linux@gmail.com> |
fbfa0748 VK |
7173 | L: spear-devel@list.st.com |
7174 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) | |
fc0c195a | 7175 | W: http://www.st.com/spear |
7176 | S: Maintained | |
5df33a62 | 7177 | F: drivers/clk/spear/ |
fc0c195a | 7178 | |
e2d1d6c0 | 7179 | SPI SUBSYSTEM |
d33c861e | 7180 | M: Grant Likely <grant.likely@secretlab.ca> |
e2d1d6c0 | 7181 | L: spi-devel-general@lists.sourceforge.net |
8a6e2535 | 7182 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
3bbf9b9b | 7183 | T: git git://git.secretlab.ca/git/linux-2.6.git |
e2d1d6c0 | 7184 | S: Maintained |
679655da JP |
7185 | F: Documentation/spi/ |
7186 | F: drivers/spi/ | |
7187 | F: include/linux/spi/ | |
c117ab84 | 7188 | F: include/uapi/linux/spi/ |
e2d1d6c0 | 7189 | |
2752e401 | 7190 | SPIDERNET NETWORK DRIVER for CELL |
8b58be88 JP |
7191 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
7192 | M: Jens Osterkamp <jens@de.ibm.com> | |
2752e401 JL |
7193 | L: netdev@vger.kernel.org |
7194 | S: Supported | |
679655da | 7195 | F: Documentation/networking/spider_net.txt |
8df158ac | 7196 | F: drivers/net/ethernet/toshiba/spider_net* |
2752e401 | 7197 | |
e2d1d6c0 | 7198 | SPU FILE SYSTEM |
8b58be88 | 7199 | M: Jeremy Kerr <jk@ozlabs.org> |
a4724ed6 SR |
7200 | L: linuxppc-dev@lists.ozlabs.org |
7201 | L: cbe-oss-dev@lists.ozlabs.org | |
e2d1d6c0 RD |
7202 | W: http://www.ibm.com/developerworks/power/cell/ |
7203 | S: Supported | |
679655da JP |
7204 | F: Documentation/filesystems/spufs.txt |
7205 | F: arch/powerpc/platforms/cell/spufs/ | |
e2d1d6c0 | 7206 | |
fc555841 | 7207 | SQUASHFS FILE SYSTEM |
d7f2ff67 | 7208 | M: Phillip Lougher <phillip@squashfs.org.uk> |
fc555841 PL |
7209 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
7210 | W: http://squashfs.org.uk | |
7211 | S: Maintained | |
679655da JP |
7212 | F: Documentation/filesystems/squashfs.txt |
7213 | F: fs/squashfs/ | |
fc555841 | 7214 | |
1da177e4 | 7215 | SRM (Alpha) environment access |
8b58be88 | 7216 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
1da177e4 | 7217 | S: Maintained |
679655da | 7218 | F: arch/alpha/kernel/srm_env.c |
1da177e4 | 7219 | |
26e9a397 | 7220 | STABLE BRANCH |
879a5a00 | 7221 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
bc7a2f3a | 7222 | L: stable@vger.kernel.org |
879a5a00 | 7223 | S: Supported |
e2d1d6c0 | 7224 | |
26e9a397 | 7225 | STAGING SUBSYSTEM |
879a5a00 | 7226 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
630081fd | 7227 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
1c6ccf62 | 7228 | L: devel@driverdev.osuosl.org |
879a5a00 | 7229 | S: Supported |
679655da | 7230 | F: drivers/staging/ |
dbc6c2cc | 7231 | |
c8c8b105 JP |
7232 | STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS |
7233 | M: Henk de Groot <pe1dnn@amsat.org> | |
7234 | S: Odd Fixes | |
7235 | F: drivers/staging/wlags49_h2/ | |
7236 | F: drivers/staging/wlags49_h25/ | |
7237 | ||
c9555159 JP |
7238 | STAGING - ASUS OLED |
7239 | M: Jakub Schmidtke <sjakub@gmail.com> | |
7240 | S: Odd Fixes | |
7241 | F: drivers/staging/asus_oled/ | |
7242 | ||
ebd3d010 JP |
7243 | STAGING - COMEDI |
7244 | M: Ian Abbott <abbotti@mev.co.uk> | |
7245 | M: Mori Hess <fmhess@users.sourceforge.net> | |
7246 | S: Odd Fixes | |
7247 | F: drivers/staging/comedi/ | |
7248 | ||
8ca572c9 JP |
7249 | STAGING - CRYSTAL HD VIDEO DECODER |
7250 | M: Naren Sankar <nsankar@broadcom.com> | |
7251 | M: Jarod Wilson <jarod@wilsonet.com> | |
7252 | M: Scott Davilla <davilla@4pi.com> | |
7253 | M: Manu Abraham <abraham.manu@gmail.com> | |
7254 | S: Odd Fixes | |
7255 | F: drivers/staging/crystalhd/ | |
7256 | ||
0f16ffc4 JP |
7257 | STAGING - ECHO CANCELLER |
7258 | M: Steve Underwood <steveu@coppice.org> | |
7259 | M: David Rowe <david@rowetel.com> | |
7260 | S: Odd Fixes | |
7261 | F: drivers/staging/echo/ | |
7262 | ||
8dc2bbe7 ME |
7263 | STAGING - ET131X NETWORK DRIVER |
7264 | M: Mark Einon <mark.einon@gmail.com> | |
7265 | S: Odd Fixes | |
7266 | F: drivers/staging/et131x/ | |
7267 | ||
a0138163 JP |
7268 | STAGING - FLARION FT1000 DRIVERS |
7269 | M: Marek Belisko <marek.belisko@gmail.com> | |
7270 | S: Odd Fixes | |
7271 | F: drivers/staging/ft1000/ | |
7272 | ||
ec3fab92 JP |
7273 | STAGING - FRONTIER TRANZPORT AND ALPHATRACK |
7274 | M: David Täht <d@teklibre.com> | |
7275 | S: Odd Fixes | |
7276 | F: drivers/staging/frontier/ | |
7277 | ||
6c1bb424 JP |
7278 | STAGING - INDUSTRIAL IO |
7279 | M: Jonathan Cameron <jic23@cam.ac.uk> | |
a0138163 | 7280 | L: linux-iio@vger.kernel.org |
6c1bb424 JP |
7281 | S: Odd Fixes |
7282 | F: drivers/staging/iio/ | |
7283 | ||
a0138163 JP |
7284 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
7285 | M: Jarod Wilson <jarod@wilsonet.com> | |
7286 | W: http://www.lirc.org/ | |
7287 | S: Odd Fixes | |
b2b0186d | 7288 | F: drivers/staging/media/lirc/ |
a0138163 | 7289 | |
7c6b6c71 | 7290 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
b8125382 | 7291 | M: Julian Andres Klode <jak@jak-linux.org> |
7c6b6c71 MD |
7292 | M: Marc Dietrich <marvin24@gmx.de> |
7293 | L: ac100@lists.launchpad.net (moderated for non-subscribers) | |
7294 | S: Maintained | |
7295 | F: drivers/staging/nvec/ | |
7296 | ||
a0138163 JP |
7297 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
7298 | M: Andres Salomon <dilinger@queued.net> | |
7299 | M: Chris Ball <cjb@laptop.org> | |
7300 | M: Jon Nettleton <jon.nettleton@gmail.com> | |
7301 | W: http://wiki.laptop.org/go/DCON | |
7302 | S: Odd Fixes | |
7303 | F: drivers/staging/olpc_dcon/ | |
7304 | ||
94cfdd15 | 7305 | STAGING - OZMO DEVICES USB OVER WIFI DRIVER |
678b7c17 | 7306 | M: Rupesh Gujare <rgujare@ozmodevices.com> |
94cfdd15 CK |
7307 | M: Chris Kelly <ckelly@ozmodevices.com> |
7308 | S: Maintained | |
7309 | F: drivers/staging/ozwpan/ | |
7310 | ||
a0138163 | 7311 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
29e7017b JP |
7312 | M: Willy Tarreau <willy@meta-x.org> |
7313 | S: Odd Fixes | |
7314 | F: drivers/staging/panel/ | |
7315 | ||
a0138163 JP |
7316 | STAGING - REALTEK RTL8712U DRIVERS |
7317 | M: Larry Finger <Larry.Finger@lwfinger.net> | |
7318 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. | |
7319 | S: Odd Fixes | |
7320 | F: drivers/staging/rtl8712/ | |
7321 | ||
9629fa86 JP |
7322 | STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER |
7323 | M: Teddy Wang <teddy.wang@siliconmotion.com.cn> | |
7324 | S: Odd Fixes | |
9df0a245 | 7325 | F: drivers/staging/sm7xxfb/ |
9629fa86 | 7326 | |
a0138163 JP |
7327 | STAGING - SOFTLOGIC 6x10 MPEG CODEC |
7328 | M: Ben Collins <bcollins@bluecherry.net> | |
7329 | S: Odd Fixes | |
b2b0186d | 7330 | F: drivers/staging/media/solo6x10/ |
a0138163 JP |
7331 | |
7332 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER | |
7333 | M: William Hubbs <w.d.hubbs@gmail.com> | |
7334 | M: Chris Brannon <chris@the-brannons.com> | |
7335 | M: Kirk Reiser <kirk@braille.uwo.ca> | |
7336 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> | |
7337 | L: speakup@braille.uwo.ca | |
7338 | W: http://www.linux-speakup.org/ | |
7339 | S: Odd Fixes | |
7340 | F: drivers/staging/speakup/ | |
7341 | ||
7342 | STAGING - TI DSP BRIDGE DRIVERS | |
a8906b0b | 7343 | M: Omar Ramirez Luna <omar.ramirez@copitl.com> |
a0138163 JP |
7344 | S: Odd Fixes |
7345 | F: drivers/staging/tidspbridge/ | |
7346 | ||
a0138163 JP |
7347 | STAGING - USB ENE SM/MS CARD READER DRIVER |
7348 | M: Al Cho <acho@novell.com> | |
7349 | S: Odd Fixes | |
7350 | F: drivers/staging/keucr/ | |
7351 | ||
b3e871ce JP |
7352 | STAGING - VIA VT665X DRIVERS |
7353 | M: Forest Bond <forest@alittletooquiet.net> | |
7354 | S: Odd Fixes | |
7355 | F: drivers/staging/vt665?/ | |
7356 | ||
81a9a526 JP |
7357 | STAGING - WINBOND IS89C35 WLAN USB DRIVER |
7358 | M: Pavel Machek <pavel@ucw.cz> | |
7359 | S: Odd Fixes | |
7360 | F: drivers/staging/winbond/ | |
7361 | ||
709bcb07 | 7362 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
3e39e66e | 7363 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
709bcb07 JP |
7364 | S: Odd Fixes |
7365 | F: drivers/staging/xgifb/ | |
7366 | ||
1da177e4 | 7367 | STARFIRE/DURALAN NETWORK DRIVER |
8b58be88 | 7368 | M: Ion Badulescu <ionut@badula.org> |
b4f90189 | 7369 | S: Odd Fixes |
9bba23b0 | 7370 | F: drivers/net/ethernet/adaptec/starfire* |
1da177e4 | 7371 | |
e2d1d6c0 | 7372 | SUN3/3X |
8b58be88 | 7373 | M: Sam Creasey <sammy@sammy.net> |
e2d1d6c0 RD |
7374 | W: http://sammy.net/sun3/ |
7375 | S: Maintained | |
679655da JP |
7376 | F: arch/m68k/kernel/*sun3* |
7377 | F: arch/m68k/sun3*/ | |
7378 | F: arch/m68k/include/asm/sun3* | |
e689cf4a | 7379 | F: drivers/net/ethernet/i825xx/sun3* |
e2d1d6c0 | 7380 | |
2cbb12a4 | 7381 | SUPERH |
8b58be88 | 7382 | M: Paul Mundt <lethal@linux-sh.org> |
2cbb12a4 | 7383 | L: linux-sh@vger.kernel.org |
1da177e4 | 7384 | W: http://www.linux-sh.org |
8a6e2535 | 7385 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
ee565105 | 7386 | T: git git://github.com/pmundt/linux-sh.git sh-latest |
5c806b20 | 7387 | S: Supported |
066069e1 | 7388 | F: Documentation/sh/ |
679655da | 7389 | F: arch/sh/ |
066069e1 | 7390 | F: drivers/sh/ |
1da177e4 | 7391 | |
4480f15b | 7392 | SUSPEND TO RAM |
8b58be88 JP |
7393 | M: Len Brown <len.brown@intel.com> |
7394 | M: Pavel Machek <pavel@ucw.cz> | |
7395 | M: "Rafael J. Wysocki" <rjw@sisk.pl> | |
bf1c138e | 7396 | L: linux-pm@vger.kernel.org |
e2d1d6c0 | 7397 | S: Supported |
679655da JP |
7398 | F: Documentation/power/ |
7399 | F: arch/x86/kernel/acpi/ | |
7400 | F: drivers/base/power/ | |
7401 | F: kernel/power/ | |
7402 | F: include/linux/suspend.h | |
7403 | F: include/linux/freezer.h | |
7404 | F: include/linux/pm.h | |
1da177e4 LT |
7405 | |
7406 | SVGA HANDLING | |
8b58be88 | 7407 | M: Martin Mares <mj@ucw.cz> |
1da177e4 LT |
7408 | L: linux-video@atrey.karlin.mff.cuni.cz |
7409 | S: Maintained | |
679655da JP |
7410 | F: Documentation/svga.txt |
7411 | F: arch/x86/boot/video* | |
1da177e4 | 7412 | |
6e28b761 KRW |
7413 | SWIOTLB SUBSYSTEM |
7414 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
7415 | L: linux-kernel@vger.kernel.org | |
7416 | S: Supported | |
7417 | F: lib/swiotlb.c | |
7418 | F: arch/*/kernel/pci-swiotlb.c | |
7419 | F: include/linux/swiotlb.h | |
7420 | ||
1da177e4 | 7421 | SYSV FILESYSTEM |
8b58be88 | 7422 | M: Christoph Hellwig <hch@infradead.org> |
1da177e4 | 7423 | S: Maintained |
679655da JP |
7424 | F: Documentation/filesystems/sysv-fs.txt |
7425 | F: fs/sysv/ | |
7426 | F: include/linux/sysv_fs.h | |
1da177e4 | 7427 | |
86cfa7fc NB |
7428 | TARGET SUBSYSTEM |
7429 | M: Nicholas A. Bellinger <nab@linux-iscsi.org> | |
7430 | L: linux-scsi@vger.kernel.org | |
b9f5edc2 | 7431 | L: target-devel@vger.kernel.org |
86cfa7fc NB |
7432 | L: http://groups.google.com/group/linux-iscsi-target-dev |
7433 | W: http://www.linux-iscsi.org | |
08deed1e | 7434 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master |
86cfa7fc NB |
7435 | S: Supported |
7436 | F: drivers/target/ | |
7437 | F: include/target/ | |
7438 | F: Documentation/target/ | |
7439 | ||
4e68852d | 7440 | TASKSTATS STATISTICS INTERFACE |
185e595f | 7441 | M: Balbir Singh <bsingharora@gmail.com> |
4e68852d | 7442 | S: Maintained |
679655da JP |
7443 | F: Documentation/accounting/taskstats* |
7444 | F: include/linux/taskstats* | |
7445 | F: kernel/taskstats.c | |
4e68852d | 7446 | |
781b456a | 7447 | TC CLASSIFIER |
f935f3f8 | 7448 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
781b456a SH |
7449 | L: netdev@vger.kernel.org |
7450 | S: Maintained | |
679655da | 7451 | F: include/net/pkt_cls.h |
c117ab84 | 7452 | F: include/uapi/linux/pkt_cls.h |
679655da | 7453 | F: net/sched/ |
781b456a | 7454 | |
5067f08a | 7455 | TCP LOW PRIORITY MODULE |
8b58be88 JP |
7456 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
7457 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> | |
5067f08a WHSE |
7458 | W: http://tcp-lp-mod.sourceforge.net/ |
7459 | S: Maintained | |
679655da | 7460 | F: net/ipv4/tcp_lp.c |
5067f08a | 7461 | |
91952bc0 AP |
7462 | TDA10071 MEDIA DRIVER |
7463 | M: Antti Palosaari <crope@iki.fi> | |
7464 | L: linux-media@vger.kernel.org | |
7465 | W: http://linuxtv.org/ | |
7466 | W: http://palosaari.fi/linux/ | |
7467 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7468 | T: git git://linuxtv.org/anttip/media_tree.git | |
7469 | S: Maintained | |
7470 | F: drivers/media/dvb-frontends/tda10071* | |
7471 | ||
7472 | TDA18212 MEDIA DRIVER | |
7473 | M: Antti Palosaari <crope@iki.fi> | |
7474 | L: linux-media@vger.kernel.org | |
7475 | W: http://linuxtv.org/ | |
7476 | W: http://palosaari.fi/linux/ | |
7477 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7478 | T: git git://linuxtv.org/anttip/media_tree.git | |
7479 | S: Maintained | |
7480 | F: drivers/media/tuners/tda18212* | |
7481 | ||
7482 | TDA18218 MEDIA DRIVER | |
7483 | M: Antti Palosaari <crope@iki.fi> | |
7484 | L: linux-media@vger.kernel.org | |
7485 | W: http://linuxtv.org/ | |
7486 | W: http://palosaari.fi/linux/ | |
7487 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7488 | T: git git://linuxtv.org/anttip/media_tree.git | |
7489 | S: Maintained | |
7490 | F: drivers/media/tuners/tda18218* | |
7491 | ||
3b2f6aba MK |
7492 | TDA18271 MEDIA DRIVER |
7493 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7494 | L: linux-media@vger.kernel.org | |
7495 | W: http://linuxtv.org/ | |
7496 | W: http://github.com/mkrufky | |
7497 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7498 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7499 | S: Maintained | |
7500 | F: drivers/media/tuners/tda18271* | |
7501 | ||
e48307a9 MK |
7502 | TDA827x MEDIA DRIVER |
7503 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7504 | L: linux-media@vger.kernel.org | |
7505 | W: http://linuxtv.org/ | |
7506 | W: http://github.com/mkrufky | |
7507 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7508 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7509 | S: Maintained | |
7510 | F: drivers/media/tuners/tda8290.* | |
7511 | ||
66cf9212 MK |
7512 | TDA8290 MEDIA DRIVER |
7513 | M: Michael Krufky <mkrufky@linuxtv.org> | |
7514 | L: linux-media@vger.kernel.org | |
7515 | W: http://linuxtv.org/ | |
7516 | W: http://github.com/mkrufky | |
7517 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7518 | T: git git://linuxtv.org/mkrufky/tuners.git | |
7519 | S: Maintained | |
7520 | F: drivers/media/tuners/tda8290.* | |
7521 | ||
2cb654fd MCC |
7522 | TEA5761 TUNER DRIVER |
7523 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
7524 | L: linux-media@vger.kernel.org | |
7525 | W: http://linuxtv.org | |
7526 | T: git git://linuxtv.org/media_tree.git | |
7527 | S: Odd fixes | |
7528 | F: drivers/media/tuners/tea5761.* | |
7529 | ||
7530 | TEA5767 TUNER DRIVER | |
7531 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
7532 | L: linux-media@vger.kernel.org | |
7533 | W: http://linuxtv.org | |
7534 | T: git git://linuxtv.org/media_tree.git | |
7535 | S: Maintained | |
7536 | F: drivers/media/tuners/tea5767.* | |
7537 | ||
3d249d4c JP |
7538 | TEAM DRIVER |
7539 | M: Jiri Pirko <jpirko@redhat.com> | |
7540 | L: netdev@vger.kernel.org | |
7541 | S: Supported | |
7542 | F: drivers/net/team/ | |
7543 | F: include/linux/if_team.h | |
c117ab84 | 7544 | F: include/uapi/linux/if_team.h |
3d249d4c | 7545 | |
40ad4a30 SY |
7546 | TECHNOTREND USB IR RECEIVER |
7547 | M: Sean Young <sean@mess.org> | |
7548 | L: linux-media@vger.kernel.org | |
7549 | S: Maintained | |
7550 | F: drivers/media/rc/ttusbir.c | |
7551 | ||
84b9414b | 7552 | TEGRA SUPPORT |
243d58ec | 7553 | M: Stephen Warren <swarren@wwwdotorg.org> |
84b9414b | 7554 | L: linux-tegra@vger.kernel.org |
fd117cd1 OJ |
7555 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
7556 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git | |
84b9414b EG |
7557 | S: Supported |
7558 | F: arch/arm/mach-tegra | |
d5703bd3 | 7559 | F: arch/arm/boot/dts/tegra* |
3d75861f | 7560 | F: arch/arm/configs/tegra_defconfig |
84b9414b | 7561 | |
1a348ccc | 7562 | TEHUTI ETHERNET DRIVER |
8b58be88 | 7563 | M: Andy Gospodarek <andy@greyhouse.net> |
1a348ccc AG |
7564 | L: netdev@vger.kernel.org |
7565 | S: Supported | |
ef7f5429 | 7566 | F: drivers/net/ethernet/tehuti/* |
1a348ccc | 7567 | |
4e68852d | 7568 | Telecom Clock Driver for MCPL0010 |
8b58be88 | 7569 | M: Mark Gross <mark.gross@intel.com> |
4e68852d | 7570 | S: Supported |
679655da | 7571 | F: drivers/char/tlclk.c |
4e68852d | 7572 | |
4480f15b | 7573 | TENSILICA XTENSA PORT (xtensa) |
8b58be88 | 7574 | M: Chris Zankel <chris@zankel.net> |
f959ed2f CZ |
7575 | M: Max Filippov <jcmvbkbc@gmail.com> |
7576 | L: linux-xtensa@linux-xtensa.org | |
4e68852d | 7577 | S: Maintained |
679655da | 7578 | F: arch/xtensa/ |
4e68852d | 7579 | |
d3fb6955 ZR |
7580 | THERMAL |
7581 | M: Zhang Rui <rui.zhang@intel.com> | |
7582 | L: linux-pm@vger.kernel.org | |
7583 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git | |
7584 | S: Supported | |
7585 | F: drivers/thermal/ | |
7586 | F: include/linux/thermal.h | |
7587 | ||
4e68852d | 7588 | THINKPAD ACPI EXTRAS DRIVER |
8b58be88 | 7589 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
4e68852d | 7590 | L: ibm-acpi-devel@lists.sourceforge.net |
d0944853 | 7591 | L: platform-driver-x86@vger.kernel.org |
4e68852d AC |
7592 | W: http://ibm-acpi.sourceforge.net |
7593 | W: http://thinkwiki.org/wiki/Ibm-acpi | |
54e5881d | 7594 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
4e68852d | 7595 | S: Maintained |
679655da | 7596 | F: drivers/platform/x86/thinkpad_acpi.c |
4e68852d | 7597 | |
4020f2d7 | 7598 | TI FLASH MEDIA INTERFACE DRIVER |
8b58be88 | 7599 | M: Alex Dubov <oakad@yahoo.com> |
795fb7e7 | 7600 | S: Maintained |
679655da JP |
7601 | F: drivers/misc/tifm* |
7602 | F: drivers/mmc/host/tifm_sd.c | |
7603 | F: include/linux/tifm.h | |
4020f2d7 | 7604 | |
152ad442 SR |
7605 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
7606 | M: M R Swami Reddy <mr.swami.reddy@ti.com> | |
d392dead | 7607 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
152ad442 SR |
7608 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
7609 | S: Maintained | |
7610 | F: sound/soc/codecs/lm49453* | |
d392dead | 7611 | F: sound/soc/codecs/isabelle* |
152ad442 | 7612 | |
0edd807d KM |
7613 | TI LP855x BACKLIGHT DRIVER |
7614 | M: Milo Kim <milo.kim@ti.com> | |
7615 | S: Maintained | |
7616 | F: Documentation/backlight/lp855x-driver.txt | |
7617 | F: drivers/video/backlight/lp855x_bl.c | |
7618 | F: include/linux/platform_data/lp855x.h | |
7619 | ||
dd5e8e6b | 7620 | TI TWL4030 SERIES SOC CODEC DRIVER |
3be79d13 | 7621 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
dd5e8e6b PU |
7622 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
7623 | S: Maintained | |
7624 | F: sound/soc/codecs/twl4030* | |
7625 | ||
90921014 LC |
7626 | TI WILINK WIRELESS DRIVERS |
7627 | M: Luciano Coelho <coelho@ti.com> | |
7628 | L: linux-wireless@vger.kernel.org | |
7629 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx | |
7630 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 | |
7631 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git | |
7632 | S: Maintained | |
7633 | F: drivers/net/wireless/ti/ | |
7634 | F: include/linux/wl12xx.h | |
7635 | ||
e86eaa3a | 7636 | TIPC NETWORK LAYER |
8b58be88 JP |
7637 | M: Jon Maloy <jon.maloy@ericsson.com> |
7638 | M: Allan Stephens <allan.stephens@windriver.com> | |
633d2bde AS |
7639 | L: netdev@vger.kernel.org (core kernel code) |
7640 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) | |
e86eaa3a | 7641 | W: http://tipc.sourceforge.net/ |
e86eaa3a | 7642 | S: Maintained |
c117ab84 | 7643 | F: include/uapi/linux/tipc*.h |
679655da | 7644 | F: net/tipc/ |
e86eaa3a | 7645 | |
867e359b CM |
7646 | TILE ARCHITECTURE |
7647 | M: Chris Metcalf <cmetcalf@tilera.com> | |
7648 | W: http://www.tilera.com/scm/ | |
7649 | S: Supported | |
7650 | F: arch/tile/ | |
a2e6093c | 7651 | F: drivers/tty/hvc/hvc_tile.c |
cdd80bd4 | 7652 | F: drivers/net/ethernet/tile/ |
5c770755 | 7653 | F: drivers/edac/tile_edac.c |
867e359b | 7654 | |
1da177e4 | 7655 | TLAN NETWORK DRIVER |
8b58be88 | 7656 | M: Samuel Chessman <chessman@tux.org> |
88c07dde | 7657 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
1da177e4 LT |
7658 | W: http://sourceforge.net/projects/tlan/ |
7659 | S: Maintained | |
679655da | 7660 | F: Documentation/networking/tlan.txt |
b544dbac | 7661 | F: drivers/net/ethernet/ti/tlan.* |
1da177e4 | 7662 | |
d74db3b2 | 7663 | TOMOYO SECURITY MODULE |
8b58be88 JP |
7664 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
7665 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> | |
d03a5d88 TH |
7666 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
7667 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) | |
d74db3b2 KT |
7668 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
7669 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) | |
7670 | W: http://tomoyo.sourceforge.jp/ | |
843d183c | 7671 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
d74db3b2 | 7672 | S: Maintained |
679655da | 7673 | F: security/tomoyo/ |
d74db3b2 | 7674 | |
9caeb532 | 7675 | TOPSTAR LAPTOP EXTRAS DRIVER |
9f0939bf | 7676 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
d0944853 | 7677 | L: platform-driver-x86@vger.kernel.org |
9caeb532 HRK |
7678 | S: Maintained |
7679 | F: drivers/platform/x86/topstar-laptop.c | |
7680 | ||
1da177e4 | 7681 | TOSHIBA ACPI EXTRAS DRIVER |
d0944853 | 7682 | L: platform-driver-x86@vger.kernel.org |
15065531 | 7683 | S: Orphan |
679655da | 7684 | F: drivers/platform/x86/toshiba_acpi.c |
1da177e4 LT |
7685 | |
7686 | TOSHIBA SMM DRIVER | |
8b58be88 | 7687 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
1da177e4 LT |
7688 | L: tlinux-users@tce.toshiba-dme.co.jp |
7689 | W: http://www.buzzard.org.uk/toshiba/ | |
7690 | S: Maintained | |
679655da JP |
7691 | F: drivers/char/toshiba.c |
7692 | F: include/linux/toshiba.h | |
c117ab84 | 7693 | F: include/uapi/linux/toshiba.h |
1da177e4 | 7694 | |
d719f900 | 7695 | TMIO MMC DRIVER |
d1057c40 | 7696 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
8b58be88 | 7697 | M: Ian Molton <ian@mnementh.co.uk> |
d1057c40 | 7698 | L: linux-mmc@vger.kernel.org |
d719f900 | 7699 | S: Maintained |
d1057c40 GL |
7700 | F: drivers/mmc/host/tmio_mmc* |
7701 | F: drivers/mmc/host/sh_mobile_sdhi.c | |
7702 | F: include/linux/mmc/tmio.h | |
7703 | F: include/linux/mmc/sh_mobile_sdhi.h | |
d719f900 | 7704 | |
98f32602 | 7705 | TMPFS (SHMEM FILESYSTEM) |
bfcc6e2e | 7706 | M: Hugh Dickins <hughd@google.com> |
98f32602 HD |
7707 | L: linux-mm@kvack.org |
7708 | S: Maintained | |
7709 | F: include/linux/shmem_fs.h | |
7710 | F: mm/shmem.c | |
7711 | ||
45f95b53 MCC |
7712 | TM6000 VIDEO4LINUX DRIVER |
7713 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
7714 | L: linux-media@vger.kernel.org | |
7715 | W: http://linuxtv.org | |
7716 | T: git git://linuxtv.org/media_tree.git | |
7717 | S: Odd fixes | |
7718 | F: drivers/media/usb/tm6000/ | |
7719 | ||
4e68852d | 7720 | TPM DEVICE DRIVER |
cbb2d5e4 RA |
7721 | M: Kent Yoder <key@linux.vnet.ibm.com> |
7722 | M: Rajiv Andrade <mail@srajiv.net> | |
4e68852d | 7723 | W: http://tpmdd.sourceforge.net |
cbb2d5e4 RA |
7724 | M: Marcel Selhorst <tpmdd@selhorst.net> |
7725 | M: Sirrix AG <tpmdd@sirrix.com> | |
7dcce133 | 7726 | W: http://www.sirrix.com |
63a10dfd | 7727 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
4e68852d | 7728 | S: Maintained |
679655da | 7729 | F: drivers/char/tpm/ |
4e68852d | 7730 | |
d6f005a1 JP |
7731 | TRACING |
7732 | M: Steven Rostedt <rostedt@goodmis.org> | |
7733 | M: Frederic Weisbecker <fweisbec@gmail.com> | |
7734 | M: Ingo Molnar <mingo@redhat.com> | |
75fc2d37 | 7735 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
d6f005a1 JP |
7736 | S: Maintained |
7737 | F: Documentation/trace/ftrace.txt | |
7738 | F: arch/*/*/*/ftrace.h | |
7739 | F: arch/*/kernel/ftrace.c | |
7740 | F: include/*/ftrace.h | |
7741 | F: include/linux/trace*.h | |
7742 | F: include/trace/ | |
7743 | F: kernel/trace/ | |
7744 | ||
1da177e4 | 7745 | TRIVIAL PATCHES |
8b58be88 | 7746 | M: Jiri Kosina <trivial@kernel.org> |
54e5881d | 7747 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
1da177e4 | 7748 | S: Maintained |
86ef925f | 7749 | K: ^Subject:.*(?i)trivial |
1da177e4 | 7750 | |
4e68852d | 7751 | TTY LAYER |
879a5a00 | 7752 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
25e6c11f | 7753 | M: Jiri Slaby <jslaby@suse.cz> |
879a5a00 | 7754 | S: Supported |
08deed1e | 7755 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
8dd5d2f1 | 7756 | F: drivers/tty/ |
df621252 | 7757 | F: drivers/tty/serial/serial_core.c |
e3288775 AC |
7758 | F: include/linux/serial_core.h |
7759 | F: include/linux/serial.h | |
7760 | F: include/linux/tty.h | |
c117ab84 CEB |
7761 | F: include/uapi/linux/serial_core.h |
7762 | F: include/uapi/linux/serial.h | |
7763 | F: include/uapi/linux/tty.h | |
4e68852d | 7764 | |
91952bc0 AP |
7765 | TUA9001 MEDIA DRIVER |
7766 | M: Antti Palosaari <crope@iki.fi> | |
7767 | L: linux-media@vger.kernel.org | |
7768 | W: http://linuxtv.org/ | |
7769 | W: http://palosaari.fi/linux/ | |
7770 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ | |
7771 | T: git git://linuxtv.org/anttip/media_tree.git | |
7772 | S: Maintained | |
7773 | F: drivers/media/tuners/tua9001* | |
7774 | ||
740db6d7 | 7775 | TULIP NETWORK DRIVERS |
8b58be88 | 7776 | M: Grant Grundler <grundler@parisc-linux.org> |
740db6d7 GG |
7777 | L: netdev@vger.kernel.org |
7778 | S: Maintained | |
0f04e2aa | 7779 | F: drivers/net/ethernet/dec/tulip/ |
1da177e4 LT |
7780 | |
7781 | TUN/TAP driver | |
ba57b6f2 | 7782 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
1da177e4 LT |
7783 | W: http://vtun.sourceforge.net/tun |
7784 | S: Maintained | |
679655da JP |
7785 | F: Documentation/networking/tuntap.txt |
7786 | F: arch/um/os-Linux/drivers/ | |
1da177e4 | 7787 | |
b454cc66 | 7788 | TURBOCHANNEL SUBSYSTEM |
8b58be88 | 7789 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
b454cc66 | 7790 | S: Maintained |
679655da JP |
7791 | F: drivers/tc/ |
7792 | F: include/linux/tc.h | |
b454cc66 | 7793 | |
1da177e4 | 7794 | U14-34F SCSI DRIVER |
8b58be88 | 7795 | M: Dario Ballabio <ballabio_dario@emc.com> |
1da177e4 LT |
7796 | L: linux-scsi@vger.kernel.org |
7797 | S: Maintained | |
679655da | 7798 | F: drivers/scsi/u14-34f.c |
1da177e4 | 7799 | |
e2d1d6c0 | 7800 | UBI FILE SYSTEM (UBIFS) |
949cb623 | 7801 | M: Artem Bityutskiy <dedekind1@gmail.com> |
cc8f9b99 | 7802 | M: Adrian Hunter <adrian.hunter@intel.com> |
e2d1d6c0 | 7803 | L: linux-mtd@lists.infradead.org |
e2966cbe | 7804 | T: git git://git.infradead.org/ubifs-2.6.git |
e2d1d6c0 RD |
7805 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
7806 | S: Maintained | |
679655da JP |
7807 | F: Documentation/filesystems/ubifs.txt |
7808 | F: fs/ubifs/ | |
e2d1d6c0 | 7809 | |
cc2020e6 | 7810 | UCLINUX (AND M68KNOMMU) |
8b58be88 | 7811 | M: Greg Ungerer <gerg@uclinux.org> |
cc2020e6 AC |
7812 | W: http://www.uclinux.org/ |
7813 | L: uclinux-dev@uclinux.org (subscribers-only) | |
7814 | S: Maintained | |
61bc02bb JP |
7815 | F: arch/m68k/*/*_no.* |
7816 | F: arch/m68k/include/asm/*_no.* | |
cc2020e6 | 7817 | |
14fadca7 | 7818 | UCLINUX FOR RENESAS H8/300 (H8300) |
8b58be88 | 7819 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
cc2020e6 AC |
7820 | W: http://uclinux-h8.sourceforge.jp/ |
7821 | S: Supported | |
a7e4fd93 JP |
7822 | F: arch/h8300/ |
7823 | F: drivers/ide/ide-h8300.c | |
644570b8 | 7824 | F: drivers/net/ethernet/8390/ne-h8300.c |
cc2020e6 | 7825 | |
1da177e4 | 7826 | UDF FILESYSTEM |
8b58be88 | 7827 | M: Jan Kara <jack@suse.cz> |
1da177e4 | 7828 | S: Maintained |
679655da JP |
7829 | F: Documentation/filesystems/udf.txt |
7830 | F: fs/udf/ | |
1da177e4 | 7831 | |
cc2020e6 | 7832 | UFS FILESYSTEM |
8b58be88 | 7833 | M: Evgeniy Dushistov <dushistov@mail.ru> |
cc2020e6 | 7834 | S: Maintained |
679655da JP |
7835 | F: Documentation/filesystems/ufs.txt |
7836 | F: fs/ufs/ | |
cc2020e6 | 7837 | |
0a09d3ab DH |
7838 | UHID USERSPACE HID IO DRIVER: |
7839 | M: David Herrmann <dh.herrmann@googlemail.com> | |
7840 | L: linux-input@vger.kernel.org | |
7841 | S: Maintained | |
7842 | F: drivers/hid/uhid.c | |
c117ab84 | 7843 | F: include/uapi/linux/uhid.h |
0a09d3ab | 7844 | |
18332a80 | 7845 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
18332a80 | 7846 | L: linux-usb@vger.kernel.org |
10c6c9c9 | 7847 | S: Orphan |
355ffe69 | 7848 | F: drivers/uwb/ |
679655da JP |
7849 | F: include/linux/uwb.h |
7850 | F: include/linux/uwb/ | |
18332a80 | 7851 | |
b31d8273 G |
7852 | UNICORE32 ARCHITECTURE: |
7853 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
7854 | W: http://mprc.pku.edu.cn/~guanxuetao/linux | |
7855 | S: Maintained | |
7856 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git | |
7857 | F: arch/unicore32/ | |
7858 | ||
d8379ab1 TF |
7859 | UNIFDEF |
7860 | M: Tony Finch <dot@dotat.at> | |
7861 | W: http://dotat.at/prog/unifdef | |
7862 | S: Maintained | |
7863 | F: scripts/unifdef.c | |
7864 | ||
1da177e4 | 7865 | UNIFORM CDROM DRIVER |
8b58be88 | 7866 | M: Jens Axboe <axboe@kernel.dk> |
1da177e4 LT |
7867 | W: http://www.kernel.dk |
7868 | S: Maintained | |
679655da JP |
7869 | F: Documentation/cdrom/ |
7870 | F: drivers/cdrom/cdrom.c | |
7871 | F: include/linux/cdrom.h | |
c117ab84 | 7872 | F: include/uapi/linux/cdrom.h |
1da177e4 | 7873 | |
9941fa6e VH |
7874 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
7875 | M: Vinayak Holikatti <vinholikatti@gmail.com> | |
7876 | M: Santosh Y <santoshsy@gmail.com> | |
7877 | L: linux-scsi@vger.kernel.org | |
7878 | S: Supported | |
7879 | F: Documentation/scsi/ufs.txt | |
7880 | F: drivers/scsi/ufs/ | |
7881 | ||
e2d1d6c0 | 7882 | UNSORTED BLOCK IMAGES (UBI) |
949cb623 | 7883 | M: Artem Bityutskiy <dedekind1@gmail.com> |
e2d1d6c0 RD |
7884 | W: http://www.linux-mtd.infradead.org/ |
7885 | L: linux-mtd@lists.infradead.org | |
e2966cbe | 7886 | T: git git://git.infradead.org/ubi-2.6.git |
e2d1d6c0 | 7887 | S: Maintained |
80811493 | 7888 | F: drivers/mtd/ubi/ |
679655da | 7889 | F: include/linux/mtd/ubi.h |
c117ab84 | 7890 | F: include/uapi/mtd/ubi-user.h |
e2d1d6c0 | 7891 | |
76ac66e4 RW |
7892 | UNSORTED BLOCK IMAGES (UBI) Fastmap |
7893 | M: Richard Weinberger <richard@nod.at> | |
7894 | L: linux-mtd@lists.infradead.org | |
7895 | S: Maintained | |
7896 | F: drivers/mtd/ubi/fastmap.c | |
7897 | ||
1da177e4 | 7898 | USB ACM DRIVER |
61eee9a7 | 7899 | M: Oliver Neukum <oliver@neukum.org> |
6372594a | 7900 | L: linux-usb@vger.kernel.org |
1da177e4 | 7901 | S: Maintained |
679655da JP |
7902 | F: Documentation/usb/acm.txt |
7903 | F: drivers/usb/class/cdc-acm.* | |
1da177e4 | 7904 | |
b7d572e1 PF |
7905 | USB AR5523 WIRELESS DRIVER |
7906 | M: Pontus Fuchs <pontus.fuchs@gmail.com> | |
7907 | L: linux-wireless@vger.kernel.org | |
7908 | S: Maintained | |
7909 | F: drivers/net/wireless/ath/ar5523/ | |
7910 | ||
115bb1ff MW |
7911 | USB ATTACHED SCSI |
7912 | M: Matthew Wilcox <willy@linux.intel.com> | |
7913 | M: Sarah Sharp <sarah.a.sharp@linux.intel.com> | |
7914 | L: linux-usb@vger.kernel.org | |
7915 | L: linux-scsi@vger.kernel.org | |
7916 | S: Supported | |
7917 | F: drivers/usb/storage/uas.c | |
7918 | ||
1da177e4 | 7919 | USB CDC ETHERNET DRIVER |
61eee9a7 | 7920 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 7921 | L: linux-usb@vger.kernel.org |
1da177e4 | 7922 | S: Maintained |
679655da | 7923 | F: drivers/net/usb/cdc_*.c |
c117ab84 | 7924 | F: include/uapi/linux/usb/cdc.h |
1da177e4 | 7925 | |
b02b371e | 7926 | USB CYPRESS C67X00 DRIVER |
8b58be88 | 7927 | M: Peter Korsgaard <jacmet@sunsite.dk> |
b02b371e PK |
7928 | L: linux-usb@vger.kernel.org |
7929 | S: Maintained | |
679655da | 7930 | F: drivers/usb/c67x00/ |
b02b371e | 7931 | |
d0374f4f | 7932 | USB DAVICOM DM9601 DRIVER |
8b58be88 | 7933 | M: Peter Korsgaard <jacmet@sunsite.dk> |
043600a6 | 7934 | L: netdev@vger.kernel.org |
d0374f4f PK |
7935 | W: http://www.linux-usb.org/usbnet |
7936 | S: Maintained | |
679655da | 7937 | F: drivers/net/usb/dm9601.c |
d0374f4f | 7938 | |
cc2020e6 | 7939 | USB DIAMOND RIO500 DRIVER |
8b58be88 | 7940 | M: Cesar Miquel <miquel@df.uba.ar> |
cc2020e6 AC |
7941 | L: rio500-users@lists.sourceforge.net |
7942 | W: http://rio500.sourceforge.net | |
7943 | S: Maintained | |
679655da | 7944 | F: drivers/usb/misc/rio500* |
cc2020e6 | 7945 | |
1da177e4 | 7946 | USB EHCI DRIVER |
578333ab | 7947 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 7948 | L: linux-usb@vger.kernel.org |
578333ab | 7949 | S: Maintained |
679655da JP |
7950 | F: Documentation/usb/ehci.txt |
7951 | F: drivers/usb/host/ehci* | |
1da177e4 | 7952 | |
69ae9e3e | 7953 | USB GADGET/PERIPHERAL SUBSYSTEM |
d6d0f665 | 7954 | M: Felipe Balbi <balbi@ti.com> |
795fb7e7 | 7955 | L: linux-usb@vger.kernel.org |
69ae9e3e | 7956 | W: http://www.linux-usb.org/gadget |
d6d0f665 FB |
7957 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
7958 | S: Maintained | |
679655da JP |
7959 | F: drivers/usb/gadget/ |
7960 | F: include/linux/usb/gadget* | |
69ae9e3e | 7961 | |
2dea64b4 | 7962 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
8b58be88 | 7963 | M: Jiri Kosina <jkosina@suse.cz> |
795fb7e7 | 7964 | L: linux-usb@vger.kernel.org |
54e5881d | 7965 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
1da177e4 | 7966 | S: Maintained |
c2f01971 | 7967 | F: Documentation/hid/hiddev.txt |
679655da | 7968 | F: drivers/hid/usbhid/ |
1da177e4 | 7969 | |
857aab34 | 7970 | USB/IP DRIVERS |
7971 | M: Matt Mooney <mfm@muteddisk.com> | |
7972 | L: linux-usb@vger.kernel.org | |
7973 | S: Maintained | |
7974 | F: drivers/staging/usbip/ | |
7975 | ||
959eea21 | 7976 | USB ISP116X DRIVER |
8b58be88 | 7977 | M: Olav Kongas <ok@artecdesign.ee> |
795fb7e7 | 7978 | L: linux-usb@vger.kernel.org |
959eea21 | 7979 | S: Maintained |
679655da JP |
7980 | F: drivers/usb/host/isp116x* |
7981 | F: include/linux/usb/isp116x.h | |
959eea21 | 7982 | |
1da177e4 | 7983 | USB KAWASAKI LSI DRIVER |
61eee9a7 | 7984 | M: Oliver Neukum <oliver@neukum.org> |
795fb7e7 | 7985 | L: linux-usb@vger.kernel.org |
1da177e4 | 7986 | S: Maintained |
679655da | 7987 | F: drivers/usb/serial/kl5kusb105.* |
1da177e4 LT |
7988 | |
7989 | USB MASS STORAGE DRIVER | |
8b58be88 | 7990 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
795fb7e7 | 7991 | L: linux-usb@vger.kernel.org |
8836aeb8 | 7992 | L: usb-storage@lists.one-eyed-alien.net |
1da177e4 LT |
7993 | S: Maintained |
7994 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ | |
679655da | 7995 | F: drivers/usb/storage/ |
1da177e4 | 7996 | |
af39917d CL |
7997 | USB MIDI DRIVER |
7998 | M: Clemens Ladisch <clemens@ladisch.de> | |
7999 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) | |
8000 | T: git git://git.alsa-project.org/alsa-kernel.git | |
8001 | S: Maintained | |
8002 | F: sound/usb/midi.* | |
8003 | ||
1da177e4 | 8004 | USB OHCI DRIVER |
578333ab | 8005 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 8006 | L: linux-usb@vger.kernel.org |
578333ab | 8007 | S: Maintained |
679655da JP |
8008 | F: Documentation/usb/ohci.txt |
8009 | F: drivers/usb/host/ohci* | |
1da177e4 | 8010 | |
ba460e48 | 8011 | USB OPTION-CARD DRIVER |
8b58be88 | 8012 | M: Matthias Urlichs <smurf@smurf.noris.de> |
795fb7e7 | 8013 | L: linux-usb@vger.kernel.org |
ba460e48 | 8014 | S: Maintained |
679655da | 8015 | F: drivers/usb/serial/option.c |
ba460e48 | 8016 | |
1da177e4 | 8017 | USB PEGASUS DRIVER |
8b58be88 | 8018 | M: Petko Manolov <petkan@users.sourceforge.net> |
795fb7e7 | 8019 | L: linux-usb@vger.kernel.org |
043600a6 | 8020 | L: netdev@vger.kernel.org |
1da177e4 LT |
8021 | W: http://pegasus2.sourceforge.net/ |
8022 | S: Maintained | |
679655da | 8023 | F: drivers/net/usb/pegasus.* |
1da177e4 | 8024 | |
d3ad558f FB |
8025 | USB PHY LAYER |
8026 | M: Felipe Balbi <balbi@ti.com> | |
8027 | L: linux-usb@vger.kernel.org | |
8028 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git | |
8029 | S: Maintained | |
8030 | F: drivers/usb/phy/ | |
8031 | F: drivers/usb/otg/ | |
8032 | ||
73e4fb3f | 8033 | USB PRINTER DRIVER (usblp) |
8b58be88 | 8034 | M: Pete Zaitcev <zaitcev@redhat.com> |
795fb7e7 | 8035 | L: linux-usb@vger.kernel.org |
73e4fb3f | 8036 | S: Supported |
679655da | 8037 | F: drivers/usb/class/usblp.c |
1da177e4 LT |
8038 | |
8039 | USB RTL8150 DRIVER | |
8b58be88 | 8040 | M: Petko Manolov <petkan@users.sourceforge.net> |
795fb7e7 | 8041 | L: linux-usb@vger.kernel.org |
043600a6 | 8042 | L: netdev@vger.kernel.org |
1da177e4 LT |
8043 | W: http://pegasus2.sourceforge.net/ |
8044 | S: Maintained | |
679655da | 8045 | F: drivers/net/usb/rtl8150.c |
1da177e4 | 8046 | |
4e68852d | 8047 | USB SERIAL BELKIN F5U103 DRIVER |
8b58be88 | 8048 | M: William Greathouse <wgreathouse@smva.com> |
795fb7e7 | 8049 | L: linux-usb@vger.kernel.org |
4e68852d | 8050 | S: Maintained |
679655da | 8051 | F: drivers/usb/serial/belkin_sa.* |
4e68852d AC |
8052 | |
8053 | USB SERIAL CYPRESS M8 DRIVER | |
8b58be88 | 8054 | M: Lonnie Mendez <dignome@gmail.com> |
795fb7e7 | 8055 | L: linux-usb@vger.kernel.org |
4e68852d AC |
8056 | S: Maintained |
8057 | W: http://geocities.com/i0xox0i | |
8058 | W: http://firstlight.net/cvs | |
679655da | 8059 | F: drivers/usb/serial/cypress_m8.* |
4e68852d | 8060 | |
1da177e4 | 8061 | USB SERIAL CYBERJACK DRIVER |
8b58be88 | 8062 | M: Matthias Bruestle and Harald Welte <support@reiner-sct.com> |
1da177e4 LT |
8063 | W: http://www.reiner-sct.de/support/treiber_cyberjack.php |
8064 | S: Maintained | |
679655da | 8065 | F: drivers/usb/serial/cyberjack.c |
1da177e4 LT |
8066 | |
8067 | USB SERIAL DIGI ACCELEPORT DRIVER | |
8b58be88 JP |
8068 | M: Peter Berger <pberger@brimson.com> |
8069 | M: Al Borchers <alborchers@steinerpoint.com> | |
795fb7e7 | 8070 | L: linux-usb@vger.kernel.org |
1da177e4 | 8071 | S: Maintained |
679655da | 8072 | F: drivers/usb/serial/digi_acceleport.c |
1da177e4 LT |
8073 | |
8074 | USB SERIAL DRIVER | |
879a5a00 | 8075 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 8076 | L: linux-usb@vger.kernel.org |
1da177e4 | 8077 | S: Supported |
679655da JP |
8078 | F: Documentation/usb/usb-serial.txt |
8079 | F: drivers/usb/serial/generic.c | |
8080 | F: drivers/usb/serial/usb-serial.c | |
8081 | F: include/linux/usb/serial.h | |
1da177e4 | 8082 | |
1da177e4 | 8083 | USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER |
8b58be88 | 8084 | M: Gary Brubaker <xavyer@ix.netcom.com> |
795fb7e7 | 8085 | L: linux-usb@vger.kernel.org |
1da177e4 | 8086 | S: Maintained |
679655da | 8087 | F: drivers/usb/serial/empeg.c |
1da177e4 LT |
8088 | |
8089 | USB SERIAL KEYSPAN DRIVER | |
879a5a00 | 8090 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 8091 | L: linux-usb@vger.kernel.org |
1da177e4 | 8092 | S: Maintained |
679655da | 8093 | F: drivers/usb/serial/*keyspan* |
1da177e4 LT |
8094 | |
8095 | USB SERIAL WHITEHEAT DRIVER | |
8b58be88 | 8096 | M: Support Department <support@connecttech.com> |
795fb7e7 | 8097 | L: linux-usb@vger.kernel.org |
1da177e4 LT |
8098 | W: http://www.connecttech.com |
8099 | S: Supported | |
679655da | 8100 | F: drivers/usb/serial/whiteheat* |
1da177e4 | 8101 | |
b3f0db1c SG |
8102 | USB SMSC75XX ETHERNET DRIVER |
8103 | M: Steve Glendinning <steve.glendinning@shawell.net> | |
8104 | L: netdev@vger.kernel.org | |
8105 | S: Maintained | |
8106 | F: drivers/net/usb/smsc75xx.* | |
8107 | ||
2f7ca802 | 8108 | USB SMSC95XX ETHERNET DRIVER |
90b24cfb | 8109 | M: Steve Glendinning <steve.glendinning@shawell.net> |
2f7ca802 | 8110 | L: netdev@vger.kernel.org |
90b24cfb | 8111 | S: Maintained |
679655da | 8112 | F: drivers/net/usb/smsc95xx.* |
2f7ca802 | 8113 | |
f423b9a8 | 8114 | USB SN9C1xx DRIVER |
8b58be88 | 8115 | M: Luca Risolia <luca.risolia@studio.unibo.it> |
795fb7e7 | 8116 | L: linux-usb@vger.kernel.org |
661263b5 | 8117 | L: linux-media@vger.kernel.org |
275ffde4 | 8118 | T: git git://linuxtv.org/media_tree.git |
1da177e4 LT |
8119 | W: http://www.linux-projects.org |
8120 | S: Maintained | |
679655da | 8121 | F: Documentation/video4linux/sn9c102.txt |
0c0d06ca | 8122 | F: drivers/media/usb/sn9c102/ |
1da177e4 LT |
8123 | |
8124 | USB SUBSYSTEM | |
879a5a00 | 8125 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
795fb7e7 | 8126 | L: linux-usb@vger.kernel.org |
1da177e4 | 8127 | W: http://www.linux-usb.org |
08deed1e | 8128 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
1da177e4 | 8129 | S: Supported |
679655da JP |
8130 | F: Documentation/usb/ |
8131 | F: drivers/net/usb/ | |
8132 | F: drivers/usb/ | |
8133 | F: include/linux/usb.h | |
8134 | F: include/linux/usb/ | |
1da177e4 LT |
8135 | |
8136 | USB UHCI DRIVER | |
8b58be88 | 8137 | M: Alan Stern <stern@rowland.harvard.edu> |
795fb7e7 | 8138 | L: linux-usb@vger.kernel.org |
1da177e4 | 8139 | S: Maintained |
679655da | 8140 | F: drivers/usb/host/uhci* |
1da177e4 | 8141 | |
69ae9e3e | 8142 | USB "USBNET" DRIVER FRAMEWORK |
686f13bb | 8143 | M: Oliver Neukum <oneukum@suse.de> |
043600a6 | 8144 | L: netdev@vger.kernel.org |
69ae9e3e | 8145 | W: http://www.linux-usb.org/usbnet |
1da177e4 | 8146 | S: Maintained |
679655da JP |
8147 | F: drivers/net/usb/usbnet.c |
8148 | F: include/linux/usb/usbnet.h | |
1da177e4 | 8149 | |
c0efd232 | 8150 | USB VIDEO CLASS |
c53ac071 | 8151 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
616bd4e2 | 8152 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
661263b5 | 8153 | L: linux-media@vger.kernel.org |
275ffde4 | 8154 | T: git git://linuxtv.org/media_tree.git |
57c6d2e9 | 8155 | W: http://www.ideasonboard.org/uvc/ |
c0efd232 | 8156 | S: Maintained |
0c0d06ca | 8157 | F: drivers/media/usb/uvc/ |
6c0f0359 | 8158 | F: include/uapi/linux/uvcvideo.h |
1da177e4 | 8159 | |
8282da47 LP |
8160 | USB WEBCAM GADGET |
8161 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |
8162 | L: linux-usb@vger.kernel.org | |
8163 | S: Maintained | |
8164 | F: drivers/usb/gadget/*uvc*.c | |
8165 | F: drivers/usb/gadget/webcam.c | |
8166 | ||
bf164cc0 | 8167 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
8b58be88 | 8168 | M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> |
bf164cc0 JK |
8169 | L: linux-wireless@vger.kernel.org |
8170 | S: Maintained | |
679655da | 8171 | F: drivers/net/wireless/rndis_wlan.c |
bf164cc0 | 8172 | |
eb6bab13 | 8173 | USB XHCI DRIVER |
36d0344c | 8174 | M: Sarah Sharp <sarah.a.sharp@linux.intel.com> |
eb6bab13 SS |
8175 | L: linux-usb@vger.kernel.org |
8176 | S: Supported | |
36d0344c SS |
8177 | F: drivers/usb/host/xhci* |
8178 | F: drivers/usb/host/pci-quirks* | |
eb6bab13 | 8179 | |
1da177e4 | 8180 | USB ZD1201 DRIVER |
4086b9ca | 8181 | L: linux-wireless@vger.kernel.org |
1da177e4 | 8182 | W: http://linux-lc100020.sourceforge.net |
4086b9ca | 8183 | S: Orphan |
679655da | 8184 | F: drivers/net/wireless/zd1201.* |
1da177e4 | 8185 | |
b7eee616 | 8186 | USB ZR364XX DRIVER |
8b58be88 | 8187 | M: Antoine Jacquet <royale@zerezo.com> |
795fb7e7 | 8188 | L: linux-usb@vger.kernel.org |
661263b5 | 8189 | L: linux-media@vger.kernel.org |
275ffde4 | 8190 | T: git git://linuxtv.org/media_tree.git |
b7eee616 AJ |
8191 | W: http://royale.zerezo.com/zr364xx/ |
8192 | S: Maintained | |
679655da | 8193 | F: Documentation/video4linux/zr364xx.txt |
90d72ac6 | 8194 | F: drivers/media/usb/zr364xx/ |
b7eee616 | 8195 | |
e7839f25 | 8196 | USER-MODE LINUX (UML) |
8b58be88 | 8197 | M: Jeff Dike <jdike@addtoit.com> |
b15194b7 | 8198 | M: Richard Weinberger <richard@nod.at> |
1da177e4 LT |
8199 | L: user-mode-linux-devel@lists.sourceforge.net |
8200 | L: user-mode-linux-user@lists.sourceforge.net | |
8201 | W: http://user-mode-linux.sourceforge.net | |
8202 | S: Maintained | |
61516587 | 8203 | F: Documentation/virtual/uml/ |
679655da | 8204 | F: arch/um/ |
b070989a | 8205 | F: arch/x86/um/ |
679655da JP |
8206 | F: fs/hostfs/ |
8207 | F: fs/hppfs/ | |
b7eee616 | 8208 | |
e5f114e9 | 8209 | USERSPACE I/O (UIO) |
6a534c9d | 8210 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
879a5a00 | 8211 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
e5f114e9 | 8212 | S: Maintained |
679655da JP |
8213 | F: Documentation/DocBook/uio-howto.tmpl |
8214 | F: drivers/uio/ | |
8215 | F: include/linux/uio*.h | |
e5f114e9 | 8216 | |
256cccbe | 8217 | UTIL-LINUX PACKAGE |
8b58be88 | 8218 | M: Karel Zak <kzak@redhat.com> |
256cccbe KZ |
8219 | L: util-linux@vger.kernel.org |
8220 | W: http://en.wikipedia.org/wiki/Util-linux | |
8221 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git | |
f899b0ad KZ |
8222 | S: Maintained |
8223 | ||
c1fd1c07 | 8224 | UVESAFB DRIVER |
8b58be88 | 8225 | M: Michal Januszewski <spock@gentoo.org> |
c69f677c | 8226 | L: linux-fbdev@vger.kernel.org |
c1fd1c07 MJ |
8227 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
8228 | S: Maintained | |
679655da JP |
8229 | F: Documentation/fb/uvesafb.txt |
8230 | F: drivers/video/uvesafb.* | |
c1fd1c07 | 8231 | |
4480f15b | 8232 | VFAT/FAT/MSDOS FILESYSTEM |
8b58be88 | 8233 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
1da177e4 | 8234 | S: Maintained |
679655da JP |
8235 | F: Documentation/filesystems/vfat.txt |
8236 | F: fs/fat/ | |
1da177e4 | 8237 | |
cba3345c AW |
8238 | VFIO DRIVER |
8239 | M: Alex Williamson <alex.williamson@redhat.com> | |
8240 | L: kvm@vger.kernel.org | |
8241 | S: Maintained | |
8242 | F: Documentation/vfio.txt | |
8243 | F: drivers/vfio/ | |
8244 | F: include/linux/vfio.h | |
c117ab84 | 8245 | F: include/uapi/linux/vfio.h |
cba3345c | 8246 | |
9e6f3438 PO |
8247 | VIDEOBUF2 FRAMEWORK |
8248 | M: Pawel Osciak <pawel@osciak.com> | |
8249 | M: Marek Szyprowski <m.szyprowski@samsung.com> | |
e76e4706 | 8250 | M: Kyungmin Park <kyungmin.park@samsung.com> |
9e6f3438 PO |
8251 | L: linux-media@vger.kernel.org |
8252 | S: Maintained | |
90d72ac6 | 8253 | F: drivers/media/v4l2-core/videobuf2-* |
9e6f3438 PO |
8254 | F: include/media/videobuf2-* |
8255 | ||
9a82446b AS |
8256 | VIRTIO CONSOLE DRIVER |
8257 | M: Amit Shah <amit.shah@redhat.com> | |
8258 | L: virtualization@lists.linux-foundation.org | |
8259 | S: Maintained | |
8260 | F: drivers/char/virtio_console.c | |
8261 | F: include/linux/virtio_console.h | |
c117ab84 | 8262 | F: include/uapi/linux/virtio_console.h |
9a82446b | 8263 | |
2426ec8f MT |
8264 | VIRTIO CORE, NET AND BLOCK DRIVERS |
8265 | M: Rusty Russell <rusty@rustcorp.com.au> | |
8266 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
8267 | L: virtualization@lists.linux-foundation.org | |
8268 | S: Maintained | |
8269 | F: drivers/virtio/ | |
8270 | F: drivers/net/virtio_net.c | |
8271 | F: drivers/block/virtio_blk.c | |
8272 | F: include/linux/virtio_*.h | |
8273 | ||
3a4d5c94 MT |
8274 | VIRTIO HOST (VHOST) |
8275 | M: "Michael S. Tsirkin" <mst@redhat.com> | |
8276 | L: kvm@vger.kernel.org | |
c996d8b9 | 8277 | L: virtualization@lists.linux-foundation.org |
3a4d5c94 MT |
8278 | L: netdev@vger.kernel.org |
8279 | S: Maintained | |
8280 | F: drivers/vhost/ | |
c117ab84 | 8281 | F: include/uapi/linux/vhost.h |
3a4d5c94 | 8282 | |
1da177e4 | 8283 | VIA RHINE NETWORK DRIVER |
8b58be88 | 8284 | M: Roger Luethi <rl@hellgate.ch> |
1da177e4 | 8285 | S: Maintained |
f2148a47 | 8286 | F: drivers/net/ethernet/via/via-rhine.c |
1da177e4 | 8287 | |
f0bf7f61 | 8288 | VIA SD/MMC CARD CONTROLLER DRIVER |
558bbb2f | 8289 | M: Bruce Chang <brucechang@via.com.tw> |
8b58be88 | 8290 | M: Harald Welte <HaraldWelte@viatech.com> |
f0bf7f61 HW |
8291 | S: Maintained |
8292 | F: drivers/mmc/host/via-sdmmc.c | |
8293 | ||
69e4a7c2 | 8294 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
c7babebd | 8295 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
c69f677c | 8296 | L: linux-fbdev@vger.kernel.org |
69e4a7c2 | 8297 | S: Maintained |
c7babebd FTS |
8298 | F: include/linux/via-core.h |
8299 | F: include/linux/via-gpio.h | |
8300 | F: include/linux/via_i2c.h | |
679655da | 8301 | F: drivers/video/via/ |
69e4a7c2 | 8302 | |
01f20734 | 8303 | VIA VELOCITY NETWORK DRIVER |
8b58be88 | 8304 | M: Francois Romieu <romieu@fr.zoreil.com> |
01f20734 FR |
8305 | L: netdev@vger.kernel.org |
8306 | S: Maintained | |
f2148a47 | 8307 | F: drivers/net/ethernet/via/via-velocity.* |
1da177e4 | 8308 | |
be7f8273 | 8309 | VLAN (802.1Q) |
8b58be88 | 8310 | M: Patrick McHardy <kaber@trash.net> |
be7f8273 PM |
8311 | L: netdev@vger.kernel.org |
8312 | S: Maintained | |
679655da JP |
8313 | F: drivers/net/macvlan.c |
8314 | F: include/linux/if_*vlan.h | |
8315 | F: net/8021q/ | |
be7f8273 | 8316 | |
55e331cf | 8317 | VLYNQ BUS |
8b58be88 | 8318 | M: Florian Fainelli <florian@openwrt.org> |
8578d7af | 8319 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
55e331cf FF |
8320 | S: Maintained |
8321 | F: drivers/vlynq/vlynq.c | |
8322 | F: include/linux/vlynq.h | |
8323 | ||
390beae4 MW |
8324 | VME SUBSYSTEM |
8325 | M: Martyn Welch <martyn.welch@ge.com> | |
1bd289d1 | 8326 | M: Manohar Vanga <manohar.vanga@gmail.com> |
390beae4 MW |
8327 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
8328 | L: devel@driverdev.osuosl.org | |
8329 | S: Maintained | |
8330 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git | |
8331 | F: Documentation/vme_api.txt | |
8332 | F: drivers/staging/vme/ | |
8333 | F: drivers/vme/ | |
8334 | F: include/linux/vme* | |
8335 | ||
d1a890fa | 8336 | VMWARE VMXNET3 ETHERNET DRIVER |
65c8bb5b JP |
8337 | M: Shreyas Bhatewara <sbhatewara@vmware.com> |
8338 | M: "VMware, Inc." <pv-drivers@vmware.com> | |
8339 | L: netdev@vger.kernel.org | |
8340 | S: Maintained | |
8341 | F: drivers/net/vmxnet3/ | |
d1a890fa | 8342 | |
851b1642 | 8343 | VMware PVSCSI driver |
f2d7e40e | 8344 | M: Arvind Kumar <arvindkumar@vmware.com> |
851b1642 AK |
8345 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
8346 | L: linux-scsi@vger.kernel.org | |
8347 | S: Maintained | |
8348 | F: drivers/scsi/vmw_pvscsi.c | |
8349 | F: drivers/scsi/vmw_pvscsi.h | |
8350 | ||
e53e86c7 | 8351 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
63405ce8 | 8352 | M: Liam Girdwood <lrg@ti.com> |
8b58be88 | 8353 | M: Mark Brown <broonie@opensource.wolfsonmicro.com> |
e53e86c7 | 8354 | W: http://opensource.wolfsonmicro.com/node/15 |
1dd68f01 | 8355 | W: http://www.slimlogic.co.uk/?p=48 |
08deed1e | 8356 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git |
e53e86c7 | 8357 | S: Supported |
679655da JP |
8358 | F: drivers/regulator/ |
8359 | F: include/linux/regulator/ | |
e53e86c7 | 8360 | |
ab41319e | 8361 | VT1211 HARDWARE MONITOR DRIVER |
8b58be88 | 8362 | M: Juerg Haefliger <juergh@gmail.com> |
ab41319e JH |
8363 | L: lm-sensors@lm-sensors.org |
8364 | S: Maintained | |
679655da JP |
8365 | F: Documentation/hwmon/vt1211 |
8366 | F: drivers/hwmon/vt1211.c | |
ab41319e | 8367 | |
1de9e371 | 8368 | VT8231 HARDWARE MONITOR DRIVER |
8b58be88 | 8369 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
1de9e371 RL |
8370 | L: lm-sensors@lm-sensors.org |
8371 | S: Maintained | |
679655da | 8372 | F: drivers/hwmon/vt8231.c |
1de9e371 | 8373 | |
88095e7b TO |
8374 | VUB300 USB to SDIO/SD/MMC bridge chip |
8375 | M: Tony Olech <tony.olech@elandigitalsystems.com> | |
8376 | L: linux-mmc@vger.kernel.org | |
8377 | L: linux-usb@vger.kernel.org | |
8378 | S: Supported | |
8379 | F: drivers/mmc/host/vub300.c | |
8380 | ||
1da177e4 | 8381 | W1 DALLAS'S 1-WIRE BUS |
a8018766 | 8382 | M: Evgeniy Polyakov <zbr@ioremap.net> |
1da177e4 | 8383 | S: Maintained |
679655da JP |
8384 | F: Documentation/w1/ |
8385 | F: drivers/w1/ | |
1da177e4 | 8386 | |
13927079 | 8387 | W83791D HARDWARE MONITORING DRIVER |
8b58be88 | 8388 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
13927079 | 8389 | L: lm-sensors@lm-sensors.org |
25845c22 | 8390 | S: Maintained |
679655da JP |
8391 | F: Documentation/hwmon/w83791d |
8392 | F: drivers/hwmon/w83791d.c | |
13927079 | 8393 | |
61db011d | 8394 | W83793 HARDWARE MONITORING DRIVER |
8b58be88 | 8395 | M: Rudolf Marek <r.marek@assembler.cz> |
61db011d RM |
8396 | L: lm-sensors@lm-sensors.org |
8397 | S: Maintained | |
679655da JP |
8398 | F: Documentation/hwmon/w83793 |
8399 | F: drivers/hwmon/w83793.c | |
61db011d | 8400 | |
e3760b43 JD |
8401 | W83795 HARDWARE MONITORING DRIVER |
8402 | M: Jean Delvare <khali@linux-fr.org> | |
8403 | L: lm-sensors@lm-sensors.org | |
8404 | S: Maintained | |
8405 | F: drivers/hwmon/w83795.c | |
8406 | ||
1da177e4 | 8407 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
8b58be88 | 8408 | M: Pierre Ossman <pierre@ossman.eu> |
1da177e4 | 8409 | S: Maintained |
679655da | 8410 | F: drivers/mmc/host/wbsd.* |
1da177e4 | 8411 | |
3527761c | 8412 | WATCHDOG DEVICE DRIVERS |
8b58be88 | 8413 | M: Wim Van Sebroeck <wim@iguana.be> |
230a5cef WVS |
8414 | L: linux-watchdog@vger.kernel.org |
8415 | W: http://www.linux-watchdog.org/ | |
f599aaf0 | 8416 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
3527761c | 8417 | S: Maintained |
679655da JP |
8418 | F: Documentation/watchdog/ |
8419 | F: drivers/watchdog/ | |
8420 | F: include/linux/watchdog.h | |
c117ab84 | 8421 | F: include/uapi/linux/watchdog.h |
3527761c | 8422 | |
1da177e4 | 8423 | WD7000 SCSI DRIVER |
8b58be88 | 8424 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
1da177e4 LT |
8425 | L: linux-scsi@vger.kernel.org |
8426 | S: Maintained | |
679655da | 8427 | F: drivers/scsi/wd7000.c |
1da177e4 | 8428 | |
b22e00f3 DH |
8429 | WIIMOTE HID DRIVER |
8430 | M: David Herrmann <dh.herrmann@googlemail.com> | |
8431 | L: linux-input@vger.kernel.org | |
8432 | S: Maintained | |
8433 | F: drivers/hid/hid-wiimote* | |
8434 | ||
e258b80e | 8435 | WINBOND CIR DRIVER |
364e9e18 | 8436 | M: David Härdeman <david@hardeman.nu> |
e258b80e | 8437 | S: Maintained |
116ab806 | 8438 | F: drivers/media/rc/winbond-cir.c |
e258b80e | 8439 | |
8a70da82 | 8440 | WIMAX STACK |
8b58be88 | 8441 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
8a70da82 IPG |
8442 | M: linux-wimax@intel.com |
8443 | L: wimax@linuxwimax.org | |
8444 | S: Supported | |
8445 | W: http://linuxwimax.org | |
315987dc | 8446 | F: Documentation/wimax/README.wimax |
315987dc JP |
8447 | F: include/linux/wimax/debug.h |
8448 | F: include/net/wimax.h | |
c117ab84 | 8449 | F: include/uapi/linux/wimax.h |
315987dc | 8450 | F: net/wimax/ |
8a70da82 | 8451 | |
5fc14680 | 8452 | WISTRON LAPTOP BUTTON DRIVER |
8b58be88 | 8453 | M: Miloslav Trmac <mitr@volny.cz> |
5fc14680 | 8454 | S: Maintained |
679655da | 8455 | F: drivers/input/misc/wistron_btns.c |
5fc14680 | 8456 | |
1da177e4 | 8457 | WL3501 WIRELESS PCMCIA CARD DRIVER |
8b58be88 | 8458 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
724c6b35 | 8459 | L: linux-wireless@vger.kernel.org |
926554c4 | 8460 | W: http://oops.ghostprotocols.net:81/blog |
1da177e4 | 8461 | S: Maintained |
679655da | 8462 | F: drivers/net/wireless/wl3501* |
1da177e4 | 8463 | |
febf1dff | 8464 | WM97XX TOUCHSCREEN DRIVERS |
8b58be88 JP |
8465 | M: Mark Brown <broonie@opensource.wolfsonmicro.com> |
8466 | M: Liam Girdwood <lrg@slimlogic.co.uk> | |
febf1dff MB |
8467 | L: linux-input@vger.kernel.org |
8468 | T: git git://opensource.wolfsonmicro.com/linux-2.6-touch | |
8469 | W: http://opensource.wolfsonmicro.com/node/7 | |
8470 | S: Supported | |
679655da JP |
8471 | F: drivers/input/touchscreen/*wm97* |
8472 | F: include/linux/wm97xx.h | |
febf1dff | 8473 | |
055bcbcb | 8474 | WOLFSON MICROELECTRONICS DRIVERS |
27480ccc | 8475 | M: Mark Brown <broonie@opensource.wolfsonmicro.com> |
fef95164 | 8476 | L: patches@opensource.wolfsonmicro.com |
cf8eda3e | 8477 | T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc |
b75ea16a | 8478 | T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus |
cf8eda3e | 8479 | W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices |
b75ea16a | 8480 | S: Supported |
3768f0b1 | 8481 | F: Documentation/hwmon/wm83?? |
af1c5386 | 8482 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
f05259a6 | 8483 | F: drivers/clk/clk-wm83*.c |
9c309598 | 8484 | F: drivers/extcon/extcon-arizona.c |
b75ea16a | 8485 | F: drivers/leds/leds-wm83*.c |
25b273ba | 8486 | F: drivers/gpio/gpio-*wm*.c |
9c309598 | 8487 | F: drivers/gpio/gpio-arizona.c |
d22b0869 | 8488 | F: drivers/hwmon/wm83??-hwmon.c |
59ec6da2 MB |
8489 | F: drivers/input/misc/wm831x-on.c |
8490 | F: drivers/input/touchscreen/wm831x-ts.c | |
8491 | F: drivers/input/touchscreen/wm97*.c | |
9c309598 MB |
8492 | F: drivers/mfd/arizona* |
8493 | F: drivers/mfd/wm*.c | |
b75ea16a MB |
8494 | F: drivers/power/wm83*.c |
8495 | F: drivers/rtc/rtc-wm83*.c | |
8496 | F: drivers/regulator/wm8*.c | |
3860e6c4 | 8497 | F: drivers/video/backlight/wm83*_bl.c |
b75ea16a | 8498 | F: drivers/watchdog/wm83*_wdt.c |
9c309598 | 8499 | F: include/linux/mfd/arizona/ |
3860e6c4 | 8500 | F: include/linux/mfd/wm831x/ |
b75ea16a | 8501 | F: include/linux/mfd/wm8350/ |
3768f0b1 | 8502 | F: include/linux/mfd/wm8400* |
59ec6da2 | 8503 | F: include/linux/wm97xx.h |
055bcbcb | 8504 | F: include/sound/wm????.h |
9c309598 | 8505 | F: sound/soc/codecs/arizona.? |
055bcbcb | 8506 | F: sound/soc/codecs/wm* |
b75ea16a | 8507 | |
3e6cd7a4 TH |
8508 | WORKQUEUE |
8509 | M: Tejun Heo <tj@kernel.org> | |
3e6cd7a4 TH |
8510 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
8511 | S: Maintained | |
8512 | F: include/linux/workqueue.h | |
8513 | F: kernel/workqueue.c | |
8514 | F: Documentation/workqueue.txt | |
8515 | ||
1da177e4 | 8516 | X.25 NETWORK LAYER |
8bf28059 | 8517 | M: Andrew Hendry <andrew.hendry@gmail.com> |
1da177e4 | 8518 | L: linux-x25@vger.kernel.org |
8bf28059 | 8519 | S: Odd Fixes |
679655da JP |
8520 | F: Documentation/networking/x25* |
8521 | F: include/net/x25* | |
8522 | F: net/x25/ | |
1da177e4 | 8523 | |
e2d1d6c0 | 8524 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
8b58be88 JP |
8525 | M: Thomas Gleixner <tglx@linutronix.de> |
8526 | M: Ingo Molnar <mingo@redhat.com> | |
8527 | M: "H. Peter Anvin" <hpa@zytor.com> | |
bcde563c | 8528 | M: x86@kernel.org |
75fc2d37 | 8529 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
e2d1d6c0 | 8530 | S: Maintained |
679655da JP |
8531 | F: Documentation/x86/ |
8532 | F: arch/x86/ | |
e2d1d6c0 | 8533 | |
d0944853 | 8534 | X86 PLATFORM DRIVERS |
f7cb13b3 | 8535 | M: Matthew Garrett <matthew.garrett@nebula.com> |
d0944853 | 8536 | L: platform-driver-x86@vger.kernel.org |
28b8e8d4 | 8537 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git |
d0944853 MG |
8538 | S: Maintained |
8539 | F: drivers/platform/x86 | |
8540 | ||
c1f5c54b IM |
8541 | X86 MCE INFRASTRUCTURE |
8542 | M: Tony Luck <tony.luck@intel.com> | |
487ba8e8 | 8543 | M: Borislav Petkov <bp@alien8.de> |
c1f5c54b IM |
8544 | L: linux-edac@vger.kernel.org |
8545 | S: Maintained | |
8546 | F: arch/x86/kernel/cpu/mcheck/* | |
8547 | ||
d6fad502 MCC |
8548 | XC2028/3028 TUNER DRIVER |
8549 | M: Mauro Carvalho Chehab <mchehab@redhat.com> | |
8550 | L: linux-media@vger.kernel.org | |
8551 | W: http://linuxtv.org | |
8552 | T: git git://linuxtv.org/media_tree.git | |
8553 | S: Maintained | |
8554 | F: drivers/media/tuners/tuner-xc2028.* | |
8555 | ||
c4468085 | 8556 | XEN HYPERVISOR INTERFACE |
c4468085 | 8557 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
d633180c | 8558 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
c4468085 IC |
8559 | L: xen-devel@lists.xensource.com (moderated for non-subscribers) |
8560 | L: virtualization@lists.linux-foundation.org | |
8561 | S: Supported | |
8562 | F: arch/x86/xen/ | |
8563 | F: drivers/*/xen-*front.c | |
8564 | F: drivers/xen/ | |
8565 | F: arch/x86/include/asm/xen/ | |
8566 | F: include/xen/ | |
c117ab84 | 8567 | F: include/uapi/xen/ |
c4468085 | 8568 | |
77bfb479 SS |
8569 | XEN HYPERVISOR ARM |
8570 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> | |
8571 | L: xen-devel@lists.xensource.com (moderated for non-subscribers) | |
8572 | S: Supported | |
8573 | F: arch/arm/xen/ | |
8574 | F: arch/arm/include/asm/xen/ | |
8575 | ||
9b57e1a7 IC |
8576 | XEN NETWORK BACKEND DRIVER |
8577 | M: Ian Campbell <ian.campbell@citrix.com> | |
8578 | L: xen-devel@lists.xensource.com (moderated for non-subscribers) | |
8579 | L: netdev@vger.kernel.org | |
8580 | S: Supported | |
8581 | F: drivers/net/xen-netback/* | |
8582 | ||
c5f8e29d KRW |
8583 | XEN PCI SUBSYSTEM |
8584 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
b74831e6 | 8585 | L: xen-devel@lists.xensource.com (moderated for non-subscribers) |
c5f8e29d KRW |
8586 | S: Supported |
8587 | F: arch/x86/pci/*xen* | |
8588 | F: drivers/pci/*xen* | |
8589 | ||
8590 | XEN SWIOTLB SUBSYSTEM | |
8591 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | |
b74831e6 | 8592 | L: xen-devel@lists.xensource.com (moderated for non-subscribers) |
c5f8e29d KRW |
8593 | S: Supported |
8594 | F: arch/x86/xen/*swiotlb* | |
8595 | F: drivers/xen/*swiotlb* | |
8596 | ||
1da177e4 LT |
8597 | XFS FILESYSTEM |
8598 | P: Silicon Graphics Inc | |
c8891329 AE |
8599 | M: Ben Myers <bpm@sgi.com> |
8600 | M: Alex Elder <elder@kernel.org> | |
18caa67a | 8601 | M: xfs@oss.sgi.com |
d7ede1aa | 8602 | L: xfs@oss.sgi.com |
1da177e4 | 8603 | W: http://oss.sgi.com/projects/xfs |
54e5881d | 8604 | T: git git://oss.sgi.com/xfs/xfs.git |
1da177e4 | 8605 | S: Supported |
679655da JP |
8606 | F: Documentation/filesystems/xfs.txt |
8607 | F: fs/xfs/ | |
1da177e4 | 8608 | |
8a3b7a25 | 8609 | XILINX AXI ETHERNET DRIVER |
59a54f30 MS |
8610 | M: Anirudha Sarangi <anirudh@xilinx.com> |
8611 | M: John Linn <John.Linn@xilinx.com> | |
8a3b7a25 | 8612 | S: Maintained |
8613 | F: drivers/net/ethernet/xilinx/xilinx_axienet* | |
8614 | ||
c9d3d8ec | 8615 | XILINX SYSTEMACE DRIVER |
8b58be88 | 8616 | M: Grant Likely <grant.likely@secretlab.ca> |
c9d3d8ec | 8617 | W: http://www.secretlab.ca/ |
c9d3d8ec | 8618 | S: Maintained |
679655da | 8619 | F: drivers/block/xsysace.c |
c9d3d8ec | 8620 | |
238b8721 | 8621 | XILINX UARTLITE SERIAL DRIVER |
8b58be88 | 8622 | M: Peter Korsgaard <jacmet@sunsite.dk> |
238b8721 PK |
8623 | L: linux-serial@vger.kernel.org |
8624 | S: Maintained | |
df621252 | 8625 | F: drivers/tty/serial/uartlite.c |
238b8721 | 8626 | |
1da177e4 | 8627 | YAM DRIVER FOR AX.25 |
8b58be88 | 8628 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
1da177e4 LT |
8629 | L: linux-hams@vger.kernel.org |
8630 | S: Maintained | |
679655da JP |
8631 | F: drivers/net/hamradio/yam* |
8632 | F: include/linux/yam.h | |
1da177e4 | 8633 | |
af64a5eb | 8634 | YEALINK PHONE DRIVER |
8b58be88 | 8635 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
af64a5eb H |
8636 | L: usbb2k-api-dev@nongnu.org |
8637 | S: Maintained | |
679655da JP |
8638 | F: Documentation/input/yealink.txt |
8639 | F: drivers/input/misc/yealink.* | |
af64a5eb | 8640 | |
1da177e4 | 8641 | Z8530 DRIVER FOR AX.25 |
8b58be88 | 8642 | M: Joerg Reuter <jreuter@yaina.de> |
1da177e4 LT |
8643 | W: http://yaina.de/jreuter/ |
8644 | W: http://www.qsl.net/dl1bke/ | |
8645 | L: linux-hams@vger.kernel.org | |
8646 | S: Maintained | |
679655da JP |
8647 | F: Documentation/networking/z8530drv.txt |
8648 | F: drivers/net/hamradio/*scc.c | |
8649 | F: drivers/net/hamradio/z8530.h | |
1da177e4 | 8650 | |
7c0c3afb | 8651 | ZD1211RW WIRELESS DRIVER |
8b58be88 JP |
8652 | M: Daniel Drake <dsd@gentoo.org> |
8653 | M: Ulrich Kunitz <kune@deine-taler.de> | |
7c0c3afb | 8654 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
724c6b35 | 8655 | L: linux-wireless@vger.kernel.org |
7c0c3afb DD |
8656 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
8657 | S: Maintained | |
679655da | 8658 | F: drivers/net/wireless/zd1211rw/ |
7c0c3afb | 8659 | |
1da177e4 | 8660 | ZR36067 VIDEO FOR LINUX DRIVER |
1da177e4 | 8661 | L: mjpeg-users@lists.sourceforge.net |
f63145e2 | 8662 | L: linux-media@vger.kernel.org |
1da177e4 | 8663 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
f63145e2 TP |
8664 | T: Mercurial http://linuxtv.org/hg/v4l-dvb |
8665 | S: Odd Fixes | |
90d72ac6 | 8666 | F: drivers/media/pci/zoran/ |
1da177e4 | 8667 | |
8b4a4080 | 8668 | ZS DECSTATION Z85C30 SERIAL DRIVER |
8b58be88 | 8669 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
8b4a4080 | 8670 | S: Maintained |
df621252 | 8671 | F: drivers/tty/serial/zs.* |
8b4a4080 | 8672 | |
1da177e4 | 8673 | THE REST |
8b58be88 | 8674 | M: Linus Torvalds <torvalds@linux-foundation.org> |
34d03cc1 | 8675 | L: linux-kernel@vger.kernel.org |
8a6e2535 | 8676 | Q: http://patchwork.kernel.org/project/LKML/list/ |
d16adea3 | 8677 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
1da177e4 | 8678 | S: Buried alive in reporters |
34d03cc1 JP |
8679 | F: * |
8680 | F: */ |