Kyle Swenson | 8d8f654 | 2021-03-15 11:02:55 -0600 | [diff] [blame] | 1 | |
| 2 | |
| 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 |
| 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 trivial style violations. |
| 38 | See Documentation/CodingStyle for guidance here. |
| 39 | |
| 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 | |
| 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 | |
| 53 | PLEASE remember that submissions must be made under the terms |
| 54 | of the Linux Foundation certificate of contribution and should |
| 55 | include a Signed-off-by: line. The current version of this |
| 56 | "Developer's Certificate of Origin" (DCO) is listed in the file |
| 57 | Documentation/SubmittingPatches. |
| 58 | |
| 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 | |
| 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. |
| 68 | |
| 69 | Descriptions of section entries: |
| 70 | |
| 71 | P: Person (obsolete) |
| 72 | M: Mail patches to: FullName <address@domain> |
| 73 | R: Designated reviewer: FullName <address@domain> |
| 74 | These reviewers should be CCed on patches. |
| 75 | L: Mailing list that is relevant to this area |
| 76 | W: Web-page with status/info |
| 77 | Q: Patchwork web based patch tracking system site |
| 78 | T: SCM tree type and location. |
| 79 | Type is one of: git, hg, quilt, stgit, topgit |
| 80 | S: Status, one of the following: |
| 81 | Supported: Someone is actually paid to look after this. |
| 82 | Maintained: Someone actually looks after it. |
| 83 | Odd Fixes: It has a maintainer but they don't have time to do |
| 84 | much other than throw the odd patch in. See below.. |
| 85 | Orphan: No current maintainer [but maybe you could take the |
| 86 | role as you write your new code]. |
| 87 | Obsolete: Old code. Something tagged obsolete generally means |
| 88 | it has been replaced by a better system and you |
| 89 | should be using that. |
| 90 | F: Files and directories with wildcard patterns. |
| 91 | A trailing slash includes all files and subdirectory files. |
| 92 | F: drivers/net/ all files in and below drivers/net |
| 93 | F: drivers/net/* all files in drivers/net, but not below |
| 94 | F: */net/* all files in "any top level directory"/net |
| 95 | One pattern per line. Multiple F: lines acceptable. |
| 96 | N: Files and directories with regex patterns. |
| 97 | N: [^a-z]tegra all files whose path contains the word tegra |
| 98 | One pattern per line. Multiple N: lines acceptable. |
| 99 | scripts/get_maintainer.pl has different behavior for files that |
| 100 | match F: pattern and matches of N: patterns. By default, |
| 101 | get_maintainer will not look at git log history when an F: pattern |
| 102 | match occurs. When an N: match occurs, git log history is used |
| 103 | to also notify the people that have git commit signatures. |
| 104 | X: Files and directories that are NOT maintained, same rules as F: |
| 105 | Files exclusions are tested before file matches. |
| 106 | Can be useful for excluding a specific subdirectory, for instance: |
| 107 | F: net/ |
| 108 | X: net/ipv6/ |
| 109 | matches all files in and below net excluding net/ipv6/ |
| 110 | K: Keyword perl extended regex pattern to match content in a |
| 111 | patch or file. For instance: |
| 112 | K: of_get_profile |
| 113 | matches patches or files that contain "of_get_profile" |
| 114 | K: \b(printk|pr_(info|err))\b |
| 115 | matches patches or files that contain one or more of the words |
| 116 | printk, pr_info or pr_err |
| 117 | One regex pattern per line. Multiple K: lines acceptable. |
| 118 | |
| 119 | Note: For the hard of thinking, this list is meant to remain in alphabetical |
| 120 | order. If you could add yourselves to it in alphabetical order that would be |
| 121 | so much easier [Ed] |
| 122 | |
| 123 | Maintainers List (try to look for most precise areas first) |
| 124 | |
| 125 | ----------------------------------- |
| 126 | |
| 127 | 3C59X NETWORK DRIVER |
| 128 | M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> |
| 129 | L: netdev@vger.kernel.org |
| 130 | S: Maintained |
| 131 | F: Documentation/networking/vortex.txt |
| 132 | F: drivers/net/ethernet/3com/3c59x.c |
| 133 | |
| 134 | 3CR990 NETWORK DRIVER |
| 135 | M: David Dillow <dave@thedillows.org> |
| 136 | L: netdev@vger.kernel.org |
| 137 | S: Maintained |
| 138 | F: drivers/net/ethernet/3com/typhoon* |
| 139 | |
| 140 | 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) |
| 141 | M: Adam Radford <linuxraid@lsi.com> |
| 142 | L: linux-scsi@vger.kernel.org |
| 143 | W: http://www.lsi.com |
| 144 | S: Supported |
| 145 | F: drivers/scsi/3w-* |
| 146 | |
| 147 | 53C700 AND 53C700-66 SCSI DRIVER |
| 148 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
| 149 | L: linux-scsi@vger.kernel.org |
| 150 | S: Maintained |
| 151 | F: drivers/scsi/53c700* |
| 152 | |
| 153 | 6LOWPAN GENERIC (BTLE/IEEE 802.15.4) |
| 154 | M: Alexander Aring <alex.aring@gmail.com> |
| 155 | M: Jukka Rissanen <jukka.rissanen@linux.intel.com> |
| 156 | L: linux-bluetooth@vger.kernel.org |
| 157 | L: linux-wpan@vger.kernel.org |
| 158 | S: Maintained |
| 159 | F: net/6lowpan/ |
| 160 | F: include/net/6lowpan.h |
| 161 | F: Documentation/networking/6lowpan.txt |
| 162 | |
| 163 | 6PACK NETWORK DRIVER FOR AX.25 |
| 164 | M: Andreas Koensgen <ajk@comnets.uni-bremen.de> |
| 165 | L: linux-hams@vger.kernel.org |
| 166 | S: Maintained |
| 167 | F: drivers/net/hamradio/6pack.c |
| 168 | |
| 169 | 8169 10/100/1000 GIGABIT ETHERNET DRIVER |
| 170 | M: Realtek linux nic maintainers <nic_swsd@realtek.com> |
| 171 | L: netdev@vger.kernel.org |
| 172 | S: Maintained |
| 173 | F: drivers/net/ethernet/realtek/r8169.c |
| 174 | |
| 175 | 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER |
| 176 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 177 | L: linux-serial@vger.kernel.org |
| 178 | W: http://serial.sourceforge.net |
| 179 | S: Maintained |
| 180 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
| 181 | F: drivers/tty/serial/8250* |
| 182 | F: include/linux/serial_8250.h |
| 183 | |
| 184 | 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] |
| 185 | L: netdev@vger.kernel.org |
| 186 | S: Orphan / Obsolete |
| 187 | F: drivers/net/ethernet/8390/ |
| 188 | |
| 189 | 9P FILE SYSTEM |
| 190 | M: Eric Van Hensbergen <ericvh@gmail.com> |
| 191 | M: Ron Minnich <rminnich@sandia.gov> |
| 192 | M: Latchesar Ionkov <lucho@ionkov.net> |
| 193 | L: v9fs-developer@lists.sourceforge.net |
| 194 | W: http://swik.net/v9fs |
| 195 | Q: http://patchwork.kernel.org/project/v9fs-devel/list/ |
| 196 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git |
| 197 | S: Maintained |
| 198 | F: Documentation/filesystems/9p.txt |
| 199 | F: fs/9p/ |
| 200 | F: net/9p/ |
| 201 | F: include/net/9p/ |
| 202 | F: include/uapi/linux/virtio_9p.h |
| 203 | F: include/trace/events/9p.h |
| 204 | |
| 205 | |
| 206 | A8293 MEDIA DRIVER |
| 207 | M: Antti Palosaari <crope@iki.fi> |
| 208 | L: linux-media@vger.kernel.org |
| 209 | W: http://linuxtv.org/ |
| 210 | W: http://palosaari.fi/linux/ |
| 211 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 212 | T: git git://linuxtv.org/anttip/media_tree.git |
| 213 | S: Maintained |
| 214 | F: drivers/media/dvb-frontends/a8293* |
| 215 | |
| 216 | AACRAID SCSI RAID DRIVER |
| 217 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
| 218 | L: linux-scsi@vger.kernel.org |
| 219 | W: http://www.adaptec.com/ |
| 220 | S: Supported |
| 221 | F: Documentation/scsi/aacraid.txt |
| 222 | F: drivers/scsi/aacraid/ |
| 223 | |
| 224 | ABI/API |
| 225 | L: linux-api@vger.kernel.org |
| 226 | F: Documentation/ABI/ |
| 227 | F: include/linux/syscalls.h |
| 228 | F: include/uapi/ |
| 229 | F: kernel/sys_ni.c |
| 230 | |
| 231 | ABIT UGURU 1,2 HARDWARE MONITOR DRIVER |
| 232 | M: Hans de Goede <hdegoede@redhat.com> |
| 233 | L: linux-hwmon@vger.kernel.org |
| 234 | S: Maintained |
| 235 | F: drivers/hwmon/abituguru.c |
| 236 | |
| 237 | ABIT UGURU 3 HARDWARE MONITOR DRIVER |
| 238 | M: Alistair John Strachan <alistair@devzero.co.uk> |
| 239 | L: linux-hwmon@vger.kernel.org |
| 240 | S: Maintained |
| 241 | F: drivers/hwmon/abituguru3.c |
| 242 | |
| 243 | ACCES 104-IDIO-16 GPIO DRIVER |
| 244 | M: "William Breathitt Gray" <vilhelm.gray@gmail.com> |
| 245 | L: linux-gpio@vger.kernel.org |
| 246 | S: Maintained |
| 247 | F: drivers/gpio/gpio-104-idio-16.c |
| 248 | |
| 249 | ACENIC DRIVER |
| 250 | M: Jes Sorensen <jes@trained-monkey.org> |
| 251 | L: linux-acenic@sunsite.dk |
| 252 | S: Maintained |
| 253 | F: drivers/net/ethernet/alteon/acenic* |
| 254 | |
| 255 | ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER |
| 256 | M: Peter Feuerer <peter@piie.net> |
| 257 | L: platform-driver-x86@vger.kernel.org |
| 258 | W: http://piie.net/?section=acerhdf |
| 259 | S: Maintained |
| 260 | F: drivers/platform/x86/acerhdf.c |
| 261 | |
| 262 | ACER WMI LAPTOP EXTRAS |
| 263 | M: "Lee, Chun-Yi" <jlee@suse.com> |
| 264 | L: platform-driver-x86@vger.kernel.org |
| 265 | S: Maintained |
| 266 | F: drivers/platform/x86/acer-wmi.c |
| 267 | |
| 268 | ACPI |
| 269 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 270 | M: Len Brown <lenb@kernel.org> |
| 271 | L: linux-acpi@vger.kernel.org |
| 272 | W: https://01.org/linux-acpi |
| 273 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
| 274 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
| 275 | S: Supported |
| 276 | F: drivers/acpi/ |
| 277 | F: drivers/pnp/pnpacpi/ |
| 278 | F: include/linux/acpi.h |
| 279 | F: include/acpi/ |
| 280 | F: Documentation/acpi/ |
| 281 | F: Documentation/ABI/testing/sysfs-bus-acpi |
| 282 | F: drivers/pci/*acpi* |
| 283 | F: drivers/pci/*/*acpi* |
| 284 | F: drivers/pci/*/*/*acpi* |
| 285 | F: tools/power/acpi/ |
| 286 | |
| 287 | ACPI COMPONENT ARCHITECTURE (ACPICA) |
| 288 | M: Robert Moore <robert.moore@intel.com> |
| 289 | M: Lv Zheng <lv.zheng@intel.com> |
| 290 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
| 291 | L: linux-acpi@vger.kernel.org |
| 292 | L: devel@acpica.org |
| 293 | W: https://acpica.org/ |
| 294 | W: https://github.com/acpica/acpica/ |
| 295 | Q: https://patchwork.kernel.org/project/linux-acpi/list/ |
| 296 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm |
| 297 | S: Supported |
| 298 | F: drivers/acpi/acpica/ |
| 299 | F: include/acpi/ |
| 300 | F: tools/power/acpi/ |
| 301 | |
| 302 | ACPI FAN DRIVER |
| 303 | M: Zhang Rui <rui.zhang@intel.com> |
| 304 | L: linux-acpi@vger.kernel.org |
| 305 | W: https://01.org/linux-acpi |
| 306 | S: Supported |
| 307 | F: drivers/acpi/fan.c |
| 308 | |
| 309 | ACPI THERMAL DRIVER |
| 310 | M: Zhang Rui <rui.zhang@intel.com> |
| 311 | L: linux-acpi@vger.kernel.org |
| 312 | W: https://01.org/linux-acpi |
| 313 | S: Supported |
| 314 | F: drivers/acpi/*thermal* |
| 315 | |
| 316 | ACPI VIDEO DRIVER |
| 317 | M: Zhang Rui <rui.zhang@intel.com> |
| 318 | L: linux-acpi@vger.kernel.org |
| 319 | W: https://01.org/linux-acpi |
| 320 | S: Supported |
| 321 | F: drivers/acpi/acpi_video.c |
| 322 | |
| 323 | ACPI WMI DRIVER |
| 324 | L: platform-driver-x86@vger.kernel.org |
| 325 | S: Orphan |
| 326 | F: drivers/platform/x86/wmi.c |
| 327 | |
| 328 | AD1889 ALSA SOUND DRIVER |
| 329 | M: Thibaut Varene <T-Bone@parisc-linux.org> |
| 330 | W: http://wiki.parisc-linux.org/AD1889 |
| 331 | L: linux-parisc@vger.kernel.org |
| 332 | S: Maintained |
| 333 | F: sound/pci/ad1889.* |
| 334 | |
| 335 | AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER |
| 336 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 337 | W: http://wiki.analog.com/AD5254 |
| 338 | W: http://ez.analog.com/community/linux-device-drivers |
| 339 | S: Supported |
| 340 | F: drivers/misc/ad525x_dpot.c |
| 341 | |
| 342 | AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) |
| 343 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 344 | W: http://wiki.analog.com/AD5398 |
| 345 | W: http://ez.analog.com/community/linux-device-drivers |
| 346 | S: Supported |
| 347 | F: drivers/regulator/ad5398.c |
| 348 | |
| 349 | AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) |
| 350 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 351 | W: http://wiki.analog.com/AD7142 |
| 352 | W: http://ez.analog.com/community/linux-device-drivers |
| 353 | S: Supported |
| 354 | F: drivers/input/misc/ad714x.c |
| 355 | |
| 356 | AD7877 TOUCHSCREEN DRIVER |
| 357 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 358 | W: http://wiki.analog.com/AD7877 |
| 359 | W: http://ez.analog.com/community/linux-device-drivers |
| 360 | S: Supported |
| 361 | F: drivers/input/touchscreen/ad7877.c |
| 362 | |
| 363 | AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) |
| 364 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 365 | W: http://wiki.analog.com/AD7879 |
| 366 | W: http://ez.analog.com/community/linux-device-drivers |
| 367 | S: Supported |
| 368 | F: drivers/input/touchscreen/ad7879.c |
| 369 | |
| 370 | ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) |
| 371 | M: Jiri Kosina <jikos@kernel.org> |
| 372 | S: Maintained |
| 373 | |
| 374 | ADM1025 HARDWARE MONITOR DRIVER |
| 375 | M: Jean Delvare <jdelvare@suse.com> |
| 376 | L: linux-hwmon@vger.kernel.org |
| 377 | S: Maintained |
| 378 | F: Documentation/hwmon/adm1025 |
| 379 | F: drivers/hwmon/adm1025.c |
| 380 | |
| 381 | ADM1029 HARDWARE MONITOR DRIVER |
| 382 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
| 383 | L: linux-hwmon@vger.kernel.org |
| 384 | S: Maintained |
| 385 | F: drivers/hwmon/adm1029.c |
| 386 | |
| 387 | ADM8211 WIRELESS DRIVER |
| 388 | L: linux-wireless@vger.kernel.org |
| 389 | W: http://wireless.kernel.org/ |
| 390 | S: Orphan |
| 391 | F: drivers/net/wireless/adm8211.* |
| 392 | |
| 393 | ADP1653 FLASH CONTROLLER DRIVER |
| 394 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 395 | L: linux-media@vger.kernel.org |
| 396 | S: Maintained |
| 397 | F: drivers/media/i2c/adp1653.c |
| 398 | F: include/media/adp1653.h |
| 399 | |
| 400 | ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) |
| 401 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 402 | W: http://wiki.analog.com/ADP5520 |
| 403 | W: http://ez.analog.com/community/linux-device-drivers |
| 404 | S: Supported |
| 405 | F: drivers/mfd/adp5520.c |
| 406 | F: drivers/video/backlight/adp5520_bl.c |
| 407 | F: drivers/leds/leds-adp5520.c |
| 408 | F: drivers/gpio/gpio-adp5520.c |
| 409 | F: drivers/input/keyboard/adp5520-keys.c |
| 410 | |
| 411 | ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) |
| 412 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 413 | W: http://wiki.analog.com/ADP5588 |
| 414 | W: http://ez.analog.com/community/linux-device-drivers |
| 415 | S: Supported |
| 416 | F: drivers/input/keyboard/adp5588-keys.c |
| 417 | F: drivers/gpio/gpio-adp5588.c |
| 418 | |
| 419 | ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) |
| 420 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 421 | W: http://wiki.analog.com/ADP8860 |
| 422 | W: http://ez.analog.com/community/linux-device-drivers |
| 423 | S: Supported |
| 424 | F: drivers/video/backlight/adp8860_bl.c |
| 425 | |
| 426 | ADS1015 HARDWARE MONITOR DRIVER |
| 427 | M: Dirk Eibach <eibach@gdsys.de> |
| 428 | L: linux-hwmon@vger.kernel.org |
| 429 | S: Maintained |
| 430 | F: Documentation/hwmon/ads1015 |
| 431 | F: drivers/hwmon/ads1015.c |
| 432 | F: include/linux/i2c/ads1015.h |
| 433 | |
| 434 | ADT746X FAN DRIVER |
| 435 | M: Colin Leroy <colin@colino.net> |
| 436 | S: Maintained |
| 437 | F: drivers/macintosh/therm_adt746x.c |
| 438 | |
| 439 | ADT7475 HARDWARE MONITOR DRIVER |
| 440 | M: Jean Delvare <jdelvare@suse.com> |
| 441 | L: linux-hwmon@vger.kernel.org |
| 442 | S: Maintained |
| 443 | F: Documentation/hwmon/adt7475 |
| 444 | F: drivers/hwmon/adt7475.c |
| 445 | |
| 446 | ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) |
| 447 | M: Michael Hennerich <michael.hennerich@analog.com> |
| 448 | W: http://wiki.analog.com/ADXL345 |
| 449 | W: http://ez.analog.com/community/linux-device-drivers |
| 450 | S: Supported |
| 451 | F: drivers/input/misc/adxl34x.c |
| 452 | |
| 453 | ADVANSYS SCSI DRIVER |
| 454 | M: Matthew Wilcox <matthew@wil.cx> |
| 455 | M: Hannes Reinecke <hare@suse.com> |
| 456 | L: linux-scsi@vger.kernel.org |
| 457 | S: Maintained |
| 458 | F: Documentation/scsi/advansys.txt |
| 459 | F: drivers/scsi/advansys.c |
| 460 | |
| 461 | AEDSP16 DRIVER |
| 462 | M: Riccardo Facchetti <fizban@tin.it> |
| 463 | S: Maintained |
| 464 | F: sound/oss/aedsp16.c |
| 465 | |
| 466 | AF9013 MEDIA DRIVER |
| 467 | M: Antti Palosaari <crope@iki.fi> |
| 468 | L: linux-media@vger.kernel.org |
| 469 | W: http://linuxtv.org/ |
| 470 | W: http://palosaari.fi/linux/ |
| 471 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 472 | T: git git://linuxtv.org/anttip/media_tree.git |
| 473 | S: Maintained |
| 474 | F: drivers/media/dvb-frontends/af9013* |
| 475 | |
| 476 | AF9033 MEDIA DRIVER |
| 477 | M: Antti Palosaari <crope@iki.fi> |
| 478 | L: linux-media@vger.kernel.org |
| 479 | W: http://linuxtv.org/ |
| 480 | W: http://palosaari.fi/linux/ |
| 481 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 482 | T: git git://linuxtv.org/anttip/media_tree.git |
| 483 | S: Maintained |
| 484 | F: drivers/media/dvb-frontends/af9033* |
| 485 | |
| 486 | AFFS FILE SYSTEM |
| 487 | L: linux-fsdevel@vger.kernel.org |
| 488 | S: Orphan |
| 489 | F: Documentation/filesystems/affs.txt |
| 490 | F: fs/affs/ |
| 491 | |
| 492 | AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN |
| 493 | M: David Howells <dhowells@redhat.com> |
| 494 | L: linux-afs@lists.infradead.org |
| 495 | S: Supported |
| 496 | F: fs/afs/ |
| 497 | F: include/net/af_rxrpc.h |
| 498 | F: net/rxrpc/af_rxrpc.c |
| 499 | |
| 500 | AGPGART DRIVER |
| 501 | M: David Airlie <airlied@linux.ie> |
| 502 | T: git git://people.freedesktop.org/~airlied/linux (part of drm maint) |
| 503 | S: Maintained |
| 504 | F: drivers/char/agp/ |
| 505 | F: include/linux/agp* |
| 506 | F: include/uapi/linux/agp* |
| 507 | |
| 508 | AHA152X SCSI DRIVER |
| 509 | M: "Juergen E. Fischer" <fischer@norbit.de> |
| 510 | L: linux-scsi@vger.kernel.org |
| 511 | S: Maintained |
| 512 | F: drivers/scsi/aha152x* |
| 513 | F: drivers/scsi/pcmcia/aha152x* |
| 514 | |
| 515 | AIC7XXX / AIC79XX SCSI DRIVER |
| 516 | M: Hannes Reinecke <hare@suse.com> |
| 517 | L: linux-scsi@vger.kernel.org |
| 518 | S: Maintained |
| 519 | F: drivers/scsi/aic7xxx/ |
| 520 | |
| 521 | AIMSLAB FM RADIO RECEIVER DRIVER |
| 522 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 523 | L: linux-media@vger.kernel.org |
| 524 | T: git git://linuxtv.org/media_tree.git |
| 525 | W: http://linuxtv.org |
| 526 | S: Maintained |
| 527 | F: drivers/media/radio/radio-aimslab* |
| 528 | |
| 529 | AIO |
| 530 | M: Benjamin LaHaise <bcrl@kvack.org> |
| 531 | L: linux-aio@kvack.org |
| 532 | S: Supported |
| 533 | F: fs/aio.c |
| 534 | F: include/linux/*aio*.h |
| 535 | |
| 536 | AIRSPY MEDIA DRIVER |
| 537 | M: Antti Palosaari <crope@iki.fi> |
| 538 | L: linux-media@vger.kernel.org |
| 539 | W: http://linuxtv.org/ |
| 540 | W: http://palosaari.fi/linux/ |
| 541 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 542 | T: git git://linuxtv.org/anttip/media_tree.git |
| 543 | S: Maintained |
| 544 | F: drivers/media/usb/airspy/ |
| 545 | |
| 546 | ALCATEL SPEEDTOUCH USB DRIVER |
| 547 | M: Duncan Sands <duncan.sands@free.fr> |
| 548 | L: linux-usb@vger.kernel.org |
| 549 | W: http://www.linux-usb.org/SpeedTouch/ |
| 550 | S: Maintained |
| 551 | F: drivers/usb/atm/speedtch.c |
| 552 | F: drivers/usb/atm/usbatm.c |
| 553 | |
| 554 | ALCHEMY AU1XX0 MMC DRIVER |
| 555 | M: Manuel Lauss <manuel.lauss@gmail.com> |
| 556 | S: Maintained |
| 557 | F: drivers/mmc/host/au1xmmc.c |
| 558 | |
| 559 | ALI1563 I2C DRIVER |
| 560 | M: Rudolf Marek <r.marek@assembler.cz> |
| 561 | L: linux-i2c@vger.kernel.org |
| 562 | S: Maintained |
| 563 | F: Documentation/i2c/busses/i2c-ali1563 |
| 564 | F: drivers/i2c/busses/i2c-ali1563.c |
| 565 | |
| 566 | ALLWINNER SECURITY SYSTEM |
| 567 | M: Corentin Labbe <clabbe.montjoie@gmail.com> |
| 568 | L: linux-crypto@vger.kernel.org |
| 569 | S: Maintained |
| 570 | F: drivers/crypto/sunxi-ss/ |
| 571 | |
| 572 | ALPHA PORT |
| 573 | M: Richard Henderson <rth@twiddle.net> |
| 574 | M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
| 575 | M: Matt Turner <mattst88@gmail.com> |
| 576 | S: Odd Fixes |
| 577 | L: linux-alpha@vger.kernel.org |
| 578 | F: arch/alpha/ |
| 579 | |
| 580 | ALTERA MAILBOX DRIVER |
| 581 | M: Ley Foon Tan <lftan@altera.com> |
| 582 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 583 | S: Maintained |
| 584 | F: drivers/mailbox/mailbox-altera.c |
| 585 | |
| 586 | ALTERA PIO DRIVER |
| 587 | M: Tien Hock Loh <thloh@altera.com> |
| 588 | L: linux-gpio@vger.kernel.org |
| 589 | S: Maintained |
| 590 | F: drivers/gpio/gpio-altera.c |
| 591 | |
| 592 | ALTERA TRIPLE SPEED ETHERNET DRIVER |
| 593 | M: Vince Bridgers <vbridger@opensource.altera.com> |
| 594 | L: netdev@vger.kernel.org |
| 595 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 596 | S: Maintained |
| 597 | F: drivers/net/ethernet/altera/ |
| 598 | |
| 599 | ALTERA UART/JTAG UART SERIAL DRIVERS |
| 600 | M: Tobias Klauser <tklauser@distanz.ch> |
| 601 | L: linux-serial@vger.kernel.org |
| 602 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 603 | S: Maintained |
| 604 | F: drivers/tty/serial/altera_uart.c |
| 605 | F: drivers/tty/serial/altera_jtaguart.c |
| 606 | F: include/linux/altera_uart.h |
| 607 | F: include/linux/altera_jtaguart.h |
| 608 | |
| 609 | AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER |
| 610 | M: Tom Lendacky <thomas.lendacky@amd.com> |
| 611 | L: linux-crypto@vger.kernel.org |
| 612 | S: Supported |
| 613 | F: drivers/crypto/ccp/ |
| 614 | F: include/linux/ccp.h |
| 615 | |
| 616 | AMD FAM15H PROCESSOR POWER MONITORING DRIVER |
| 617 | M: Andreas Herrmann <herrmann.der.user@googlemail.com> |
| 618 | L: linux-hwmon@vger.kernel.org |
| 619 | S: Maintained |
| 620 | F: Documentation/hwmon/fam15h_power |
| 621 | F: drivers/hwmon/fam15h_power.c |
| 622 | |
| 623 | AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER |
| 624 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
| 625 | S: Orphan |
| 626 | F: drivers/usb/gadget/udc/amd5536udc.* |
| 627 | |
| 628 | AMD GEODE PROCESSOR/CHIPSET SUPPORT |
| 629 | P: Andres Salomon <dilinger@queued.net> |
| 630 | L: linux-geode@lists.infradead.org (moderated for non-subscribers) |
| 631 | W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html |
| 632 | S: Supported |
| 633 | F: drivers/char/hw_random/geode-rng.c |
| 634 | F: drivers/crypto/geode* |
| 635 | F: drivers/video/fbdev/geode/ |
| 636 | F: arch/x86/include/asm/geode.h |
| 637 | |
| 638 | AMD IOMMU (AMD-VI) |
| 639 | M: Joerg Roedel <joro@8bytes.org> |
| 640 | L: iommu@lists.linux-foundation.org |
| 641 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
| 642 | S: Maintained |
| 643 | F: drivers/iommu/amd_iommu*.[ch] |
| 644 | F: include/linux/amd-iommu.h |
| 645 | |
| 646 | AMD KFD |
| 647 | M: Oded Gabbay <oded.gabbay@gmail.com> |
| 648 | L: dri-devel@lists.freedesktop.org |
| 649 | T: git git://people.freedesktop.org/~gabbayo/linux.git |
| 650 | S: Supported |
| 651 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c |
| 652 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h |
| 653 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c |
| 654 | F: drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c |
| 655 | F: drivers/gpu/drm/amd/amdkfd/ |
| 656 | F: drivers/gpu/drm/amd/include/cik_structs.h |
| 657 | F: drivers/gpu/drm/amd/include/kgd_kfd_interface.h |
| 658 | F: drivers/gpu/drm/amd/include/vi_structs.h |
| 659 | F: drivers/gpu/drm/radeon/radeon_kfd.c |
| 660 | F: drivers/gpu/drm/radeon/radeon_kfd.h |
| 661 | F: include/uapi/linux/kfd_ioctl.h |
| 662 | |
| 663 | AMD XGBE DRIVER |
| 664 | M: Tom Lendacky <thomas.lendacky@amd.com> |
| 665 | L: netdev@vger.kernel.org |
| 666 | S: Supported |
| 667 | F: drivers/net/ethernet/amd/xgbe/ |
| 668 | |
| 669 | AMS (Apple Motion Sensor) DRIVER |
| 670 | M: Michael Hanselmann <linux-kernel@hansmi.ch> |
| 671 | S: Supported |
| 672 | F: drivers/macintosh/ams/ |
| 673 | |
| 674 | AMSO1100 RNIC DRIVER |
| 675 | M: Tom Tucker <tom@opengridcomputing.com> |
| 676 | M: Steve Wise <swise@opengridcomputing.com> |
| 677 | L: linux-rdma@vger.kernel.org |
| 678 | S: Maintained |
| 679 | F: drivers/infiniband/hw/amso1100/ |
| 680 | |
| 681 | ANALOG DEVICES INC AD9389B DRIVER |
| 682 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 683 | L: linux-media@vger.kernel.org |
| 684 | S: Maintained |
| 685 | F: drivers/media/i2c/ad9389b* |
| 686 | |
| 687 | ANALOG DEVICES INC ADV7180 DRIVER |
| 688 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 689 | L: linux-media@vger.kernel.org |
| 690 | W: http://ez.analog.com/community/linux-device-drivers |
| 691 | S: Supported |
| 692 | F: drivers/media/i2c/adv7180.c |
| 693 | |
| 694 | ANALOG DEVICES INC ADV7511 DRIVER |
| 695 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 696 | L: linux-media@vger.kernel.org |
| 697 | S: Maintained |
| 698 | F: drivers/media/i2c/adv7511* |
| 699 | |
| 700 | ANALOG DEVICES INC ADV7604 DRIVER |
| 701 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 702 | L: linux-media@vger.kernel.org |
| 703 | S: Maintained |
| 704 | F: drivers/media/i2c/adv7604* |
| 705 | |
| 706 | ANALOG DEVICES INC ADV7842 DRIVER |
| 707 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 708 | L: linux-media@vger.kernel.org |
| 709 | S: Maintained |
| 710 | F: drivers/media/i2c/adv7842* |
| 711 | |
| 712 | ANALOG DEVICES INC ASOC CODEC DRIVERS |
| 713 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 714 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 715 | W: http://wiki.analog.com/ |
| 716 | W: http://ez.analog.com/community/linux-device-drivers |
| 717 | S: Supported |
| 718 | F: sound/soc/codecs/adau* |
| 719 | F: sound/soc/codecs/adav* |
| 720 | F: sound/soc/codecs/ad1* |
| 721 | F: sound/soc/codecs/ad7* |
| 722 | F: sound/soc/codecs/ssm* |
| 723 | F: sound/soc/codecs/sigmadsp.* |
| 724 | |
| 725 | ANALOG DEVICES INC ASOC DRIVERS |
| 726 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 727 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 728 | W: http://blackfin.uclinux.org/ |
| 729 | S: Supported |
| 730 | F: sound/soc/blackfin/* |
| 731 | |
| 732 | ANALOG DEVICES INC IIO DRIVERS |
| 733 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 734 | M: Michael Hennerich <Michael.Hennerich@analog.com> |
| 735 | W: http://wiki.analog.com/ |
| 736 | W: http://ez.analog.com/community/linux-device-drivers |
| 737 | S: Supported |
| 738 | F: drivers/iio/*/ad* |
| 739 | X: drivers/iio/*/adjd* |
| 740 | F: drivers/staging/iio/*/ad* |
| 741 | F: staging/iio/trigger/iio-trig-bfin-timer.c |
| 742 | |
| 743 | ANALOG DEVICES INC DMA DRIVERS |
| 744 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 745 | W: http://ez.analog.com/community/linux-device-drivers |
| 746 | S: Supported |
| 747 | F: drivers/dma/dma-axi-dmac.c |
| 748 | |
| 749 | ANDROID DRIVERS |
| 750 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 751 | M: Arve HjønnevĂ¥g <arve@android.com> |
| 752 | M: Riley Andrews <riandrews@android.com> |
| 753 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
| 754 | L: devel@driverdev.osuosl.org |
| 755 | S: Supported |
| 756 | F: drivers/android/ |
| 757 | F: drivers/staging/android/ |
| 758 | |
| 759 | AOA (Apple Onboard Audio) ALSA DRIVER |
| 760 | M: Johannes Berg <johannes@sipsolutions.net> |
| 761 | L: linuxppc-dev@lists.ozlabs.org |
| 762 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 763 | S: Maintained |
| 764 | F: sound/aoa/ |
| 765 | |
| 766 | APM DRIVER |
| 767 | M: Jiri Kosina <jikos@kernel.org> |
| 768 | S: Odd fixes |
| 769 | F: arch/x86/kernel/apm_32.c |
| 770 | F: include/linux/apm_bios.h |
| 771 | F: include/uapi/linux/apm_bios.h |
| 772 | F: drivers/char/apm-emulation.c |
| 773 | |
| 774 | APPLE BCM5974 MULTITOUCH DRIVER |
| 775 | M: Henrik Rydberg <rydberg@bitmath.org> |
| 776 | L: linux-input@vger.kernel.org |
| 777 | S: Odd fixes |
| 778 | F: drivers/input/mouse/bcm5974.c |
| 779 | |
| 780 | APPLE SMC DRIVER |
| 781 | M: Henrik Rydberg <rydberg@bitmath.org> |
| 782 | L: linux-hwmon@vger.kernel.org |
| 783 | S: Odd fixes |
| 784 | F: drivers/hwmon/applesmc.c |
| 785 | |
| 786 | APPLETALK NETWORK LAYER |
| 787 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
| 788 | S: Maintained |
| 789 | F: drivers/net/appletalk/ |
| 790 | F: net/appletalk/ |
| 791 | |
| 792 | APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT |
| 793 | M: Duc Dang <dhdang@apm.com> |
| 794 | S: Supported |
| 795 | F: arch/arm64/boot/dts/apm/ |
| 796 | |
| 797 | APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER |
| 798 | M: Iyappan Subramanian <isubramanian@apm.com> |
| 799 | M: Keyur Chudgar <kchudgar@apm.com> |
| 800 | S: Supported |
| 801 | F: drivers/net/ethernet/apm/xgene/ |
| 802 | F: Documentation/devicetree/bindings/net/apm-xgene-enet.txt |
| 803 | |
| 804 | APTINA CAMERA SENSOR PLL |
| 805 | M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com> |
| 806 | L: linux-media@vger.kernel.org |
| 807 | S: Maintained |
| 808 | F: drivers/media/i2c/aptina-pll.* |
| 809 | |
| 810 | ARC FRAMEBUFFER DRIVER |
| 811 | M: Jaya Kumar <jayalk@intworks.biz> |
| 812 | S: Maintained |
| 813 | F: drivers/video/fbdev/arcfb.c |
| 814 | F: drivers/video/fbdev/core/fb_defio.c |
| 815 | |
| 816 | ARCNET NETWORK LAYER |
| 817 | M: Michael Grzeschik <m.grzeschik@pengutronix.de> |
| 818 | L: netdev@vger.kernel.org |
| 819 | S: Maintained |
| 820 | F: drivers/net/arcnet/ |
| 821 | F: include/uapi/linux/if_arcnet.h |
| 822 | |
| 823 | ARM MFM AND FLOPPY DRIVERS |
| 824 | M: Ian Molton <spyro@f2s.com> |
| 825 | S: Maintained |
| 826 | F: arch/arm/lib/floppydma.S |
| 827 | F: arch/arm/include/asm/floppy.h |
| 828 | |
| 829 | ARM PMU PROFILING AND DEBUGGING |
| 830 | M: Will Deacon <will.deacon@arm.com> |
| 831 | R: Mark Rutland <mark.rutland@arm.com> |
| 832 | S: Maintained |
| 833 | F: arch/arm*/kernel/perf_* |
| 834 | F: arch/arm/oprofile/common.c |
| 835 | F: arch/arm*/kernel/hw_breakpoint.c |
| 836 | F: arch/arm*/include/asm/hw_breakpoint.h |
| 837 | F: arch/arm*/include/asm/perf_event.h |
| 838 | F: drivers/perf/arm_pmu.c |
| 839 | F: include/linux/perf/arm_pmu.h |
| 840 | |
| 841 | ARM PORT |
| 842 | M: Russell King <linux@arm.linux.org.uk> |
| 843 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 844 | W: http://www.arm.linux.org.uk/ |
| 845 | S: Maintained |
| 846 | F: arch/arm/ |
| 847 | |
| 848 | ARM SUB-ARCHITECTURES |
| 849 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 850 | S: Maintained |
| 851 | F: arch/arm/mach-*/ |
| 852 | F: arch/arm/plat-*/ |
| 853 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git |
| 854 | |
| 855 | ARM PRIMECELL AACI PL041 DRIVER |
| 856 | M: Russell King <linux@arm.linux.org.uk> |
| 857 | S: Maintained |
| 858 | F: sound/arm/aaci.* |
| 859 | |
| 860 | ARM PRIMECELL CLCD PL110 DRIVER |
| 861 | M: Russell King <linux@arm.linux.org.uk> |
| 862 | S: Maintained |
| 863 | F: drivers/video/fbdev/amba-clcd.* |
| 864 | |
| 865 | ARM PRIMECELL KMI PL050 DRIVER |
| 866 | M: Russell King <linux@arm.linux.org.uk> |
| 867 | S: Maintained |
| 868 | F: drivers/input/serio/ambakmi.* |
| 869 | F: include/linux/amba/kmi.h |
| 870 | |
| 871 | ARM PRIMECELL MMCI PL180/1 DRIVER |
| 872 | M: Russell King <linux@arm.linux.org.uk> |
| 873 | S: Maintained |
| 874 | F: drivers/mmc/host/mmci.* |
| 875 | F: include/linux/amba/mmci.h |
| 876 | |
| 877 | ARM PRIMECELL UART PL010 AND PL011 DRIVERS |
| 878 | M: Russell King <linux@arm.linux.org.uk> |
| 879 | S: Maintained |
| 880 | F: drivers/tty/serial/amba-pl01*.c |
| 881 | F: include/linux/amba/serial.h |
| 882 | |
| 883 | ARM PRIMECELL BUS SUPPORT |
| 884 | M: Russell King <linux@arm.linux.org.uk> |
| 885 | S: Maintained |
| 886 | F: drivers/amba/ |
| 887 | F: include/linux/amba/bus.h |
| 888 | |
| 889 | ARM/ADS SPHERE MACHINE SUPPORT |
| 890 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 891 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 892 | S: Maintained |
| 893 | |
| 894 | ARM/AFEB9260 MACHINE SUPPORT |
| 895 | M: Sergey Lapin <slapin@ossfans.org> |
| 896 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 897 | S: Maintained |
| 898 | |
| 899 | ARM/AJECO 1ARM MACHINE SUPPORT |
| 900 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 901 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 902 | S: Maintained |
| 903 | |
| 904 | ARM/Allwinner sunXi SoC support |
| 905 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
| 906 | M: Chen-Yu Tsai <wens@csie.org> |
| 907 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 908 | S: Maintained |
| 909 | N: sun[x456789]i |
| 910 | |
| 911 | ARM/Allwinner SoC Clock Support |
| 912 | M: Emilio LĂ³pez <emilio@elopez.com.ar> |
| 913 | S: Maintained |
| 914 | F: drivers/clk/sunxi/ |
| 915 | |
| 916 | ARM/Amlogic MesonX SoC support |
| 917 | M: Carlo Caione <carlo@caione.org> |
| 918 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 919 | S: Maintained |
| 920 | F: drivers/media/rc/meson-ir.c |
| 921 | N: meson[x68] |
| 922 | |
| 923 | ARM/Annapurna Labs ALPINE ARCHITECTURE |
| 924 | M: Tsahee Zidenberg <tsahee@annapurnalabs.com> |
| 925 | S: Maintained |
| 926 | F: arch/arm/mach-alpine/ |
| 927 | |
| 928 | ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT |
| 929 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 930 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
| 931 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
| 932 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 933 | W: http://www.linux4sam.org |
| 934 | S: Supported |
| 935 | F: arch/arm/mach-at91/ |
| 936 | F: include/soc/at91/ |
| 937 | F: arch/arm/boot/dts/at91*.dts |
| 938 | F: arch/arm/boot/dts/at91*.dtsi |
| 939 | F: arch/arm/boot/dts/sama*.dts |
| 940 | F: arch/arm/boot/dts/sama*.dtsi |
| 941 | F: arch/arm/include/debug/at91.S |
| 942 | |
| 943 | ARM/ATMEL AT91 Clock Support |
| 944 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 945 | S: Maintained |
| 946 | F: drivers/clk/at91 |
| 947 | |
| 948 | ARM/CALXEDA HIGHBANK ARCHITECTURE |
| 949 | M: Rob Herring <robh@kernel.org> |
| 950 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 951 | S: Maintained |
| 952 | F: arch/arm/mach-highbank/ |
| 953 | |
| 954 | ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT |
| 955 | M: Krzysztof Halasa <khalasa@piap.pl> |
| 956 | S: Maintained |
| 957 | F: arch/arm/mach-cns3xxx/ |
| 958 | |
| 959 | ARM/CAVIUM THUNDER NETWORK DRIVER |
| 960 | M: Sunil Goutham <sgoutham@cavium.com> |
| 961 | M: Robert Richter <rric@kernel.org> |
| 962 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 963 | S: Supported |
| 964 | F: drivers/net/ethernet/cavium/thunder/ |
| 965 | |
| 966 | ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE |
| 967 | M: Alexander Shiyan <shc_work@mail.ru> |
| 968 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 969 | S: Odd Fixes |
| 970 | N: clps711x |
| 971 | |
| 972 | ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE |
| 973 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
| 974 | M: Ryan Mallon <rmallon@gmail.com> |
| 975 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 976 | S: Maintained |
| 977 | F: arch/arm/mach-ep93xx/ |
| 978 | F: arch/arm/mach-ep93xx/include/mach/ |
| 979 | |
| 980 | ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT |
| 981 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 982 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 983 | S: Maintained |
| 984 | |
| 985 | ARM/CLKDEV SUPPORT |
| 986 | M: Russell King <linux@arm.linux.org.uk> |
| 987 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 988 | S: Maintained |
| 989 | F: arch/arm/include/asm/clkdev.h |
| 990 | F: drivers/clk/clkdev.c |
| 991 | |
| 992 | ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT |
| 993 | M: Mike Rapoport <mike@compulab.co.il> |
| 994 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 995 | S: Maintained |
| 996 | |
| 997 | ARM/CONTEC MICRO9 MACHINE SUPPORT |
| 998 | M: Hubert Feurstein <hubert.feurstein@contec.at> |
| 999 | S: Maintained |
| 1000 | F: arch/arm/mach-ep93xx/micro9.c |
| 1001 | |
| 1002 | ARM/CORESIGHT FRAMEWORK AND DRIVERS |
| 1003 | M: Mathieu Poirier <mathieu.poirier@linaro.org> |
| 1004 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1005 | S: Maintained |
| 1006 | F: drivers/hwtracing/coresight/* |
| 1007 | F: Documentation/trace/coresight.txt |
| 1008 | F: Documentation/devicetree/bindings/arm/coresight.txt |
| 1009 | F: Documentation/ABI/testing/sysfs-bus-coresight-devices-* |
| 1010 | |
| 1011 | ARM/CORGI MACHINE SUPPORT |
| 1012 | M: Richard Purdie <rpurdie@rpsys.net> |
| 1013 | S: Maintained |
| 1014 | |
| 1015 | ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE |
| 1016 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
| 1017 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1018 | T: git git://github.com/ulli-kroll/linux.git |
| 1019 | S: Maintained |
| 1020 | F: arch/arm/mach-gemini/ |
| 1021 | F: drivers/rtc/rtc-gemini.c |
| 1022 | |
| 1023 | ARM/CSR SIRFPRIMA2 MACHINE SUPPORT |
| 1024 | M: Barry Song <baohua@kernel.org> |
| 1025 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1026 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git |
| 1027 | S: Maintained |
| 1028 | F: arch/arm/mach-prima2/ |
| 1029 | F: drivers/clk/sirf/ |
| 1030 | F: drivers/clocksource/timer-prima2.c |
| 1031 | F: drivers/clocksource/timer-atlas7.c |
| 1032 | N: [^a-z]sirf |
| 1033 | |
| 1034 | ARM/CONEXANT DIGICOLOR MACHINE SUPPORT |
| 1035 | M: Baruch Siach <baruch@tkos.co.il> |
| 1036 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1037 | S: Maintained |
| 1038 | F: arch/arm/boot/dts/cx92755* |
| 1039 | N: digicolor |
| 1040 | |
| 1041 | ARM/EBSA110 MACHINE SUPPORT |
| 1042 | M: Russell King <linux@arm.linux.org.uk> |
| 1043 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1044 | W: http://www.arm.linux.org.uk/ |
| 1045 | S: Maintained |
| 1046 | F: arch/arm/mach-ebsa110/ |
| 1047 | F: drivers/net/ethernet/amd/am79c961a.* |
| 1048 | |
| 1049 | ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT |
| 1050 | M: Uwe Kleine-König <kernel@pengutronix.de> |
| 1051 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1052 | S: Maintained |
| 1053 | N: efm32 |
| 1054 | |
| 1055 | ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) |
| 1056 | M: Daniel Ribeiro <drwyrm@gmail.com> |
| 1057 | M: Stefan Schmidt <stefan@openezx.org> |
| 1058 | M: Harald Welte <laforge@openezx.org> |
| 1059 | L: openezx-devel@lists.openezx.org (moderated for non-subscribers) |
| 1060 | W: http://www.openezx.org/ |
| 1061 | S: Maintained |
| 1062 | T: topgit git://git.openezx.org/openezx.git |
| 1063 | F: arch/arm/mach-pxa/ezx.c |
| 1064 | |
| 1065 | ARM/FARADAY FA526 PORT |
| 1066 | M: Hans Ulli Kroll <ulli.kroll@googlemail.com> |
| 1067 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1068 | S: Maintained |
| 1069 | T: git git://git.berlios.de/gemini-board |
| 1070 | F: arch/arm/mm/*-fa* |
| 1071 | |
| 1072 | ARM/FOOTBRIDGE ARCHITECTURE |
| 1073 | M: Russell King <linux@arm.linux.org.uk> |
| 1074 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1075 | W: http://www.arm.linux.org.uk/ |
| 1076 | S: Maintained |
| 1077 | F: arch/arm/include/asm/hardware/dec21285.h |
| 1078 | F: arch/arm/mach-footbridge/ |
| 1079 | |
| 1080 | ARM/FREESCALE IMX / MXC ARM ARCHITECTURE |
| 1081 | M: Shawn Guo <shawnguo@kernel.org> |
| 1082 | M: Sascha Hauer <kernel@pengutronix.de> |
| 1083 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1084 | S: Maintained |
| 1085 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
| 1086 | F: arch/arm/mach-imx/ |
| 1087 | F: arch/arm/mach-mxs/ |
| 1088 | F: arch/arm/boot/dts/imx* |
| 1089 | F: arch/arm/configs/imx*_defconfig |
| 1090 | F: drivers/clk/imx/ |
| 1091 | F: include/soc/imx/ |
| 1092 | |
| 1093 | ARM/FREESCALE VYBRID ARM ARCHITECTURE |
| 1094 | M: Shawn Guo <shawnguo@kernel.org> |
| 1095 | M: Sascha Hauer <kernel@pengutronix.de> |
| 1096 | R: Stefan Agner <stefan@agner.ch> |
| 1097 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1098 | S: Maintained |
| 1099 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git |
| 1100 | F: arch/arm/mach-imx/*vf610* |
| 1101 | F: arch/arm/boot/dts/vf* |
| 1102 | |
| 1103 | ARM/GLOMATION GESBC9312SX MACHINE SUPPORT |
| 1104 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1105 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1106 | S: Maintained |
| 1107 | |
| 1108 | ARM/GUMSTIX MACHINE SUPPORT |
| 1109 | M: Steve Sakoman <sakoman@gmail.com> |
| 1110 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1111 | S: Maintained |
| 1112 | |
| 1113 | ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT |
| 1114 | M: Philipp Zabel <philipp.zabel@gmail.com> |
| 1115 | M: Paul Parsons <lost.distance@yahoo.com> |
| 1116 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1117 | S: Maintained |
| 1118 | F: arch/arm/mach-pxa/hx4700.c |
| 1119 | F: arch/arm/mach-pxa/include/mach/hx4700.h |
| 1120 | F: sound/soc/pxa/hx4700.c |
| 1121 | |
| 1122 | ARM/HISILICON SOC SUPPORT |
| 1123 | M: Wei Xu <xuwei5@hisilicon.com> |
| 1124 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1125 | W: http://www.hisilicon.com |
| 1126 | S: Supported |
| 1127 | T: git git://github.com/hisilicon/linux-hisi.git |
| 1128 | F: arch/arm/mach-hisi/ |
| 1129 | |
| 1130 | ARM/HP JORNADA 7XX MACHINE SUPPORT |
| 1131 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
| 1132 | W: www.jlime.com |
| 1133 | S: Maintained |
| 1134 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
| 1135 | F: arch/arm/mach-sa1100/jornada720.c |
| 1136 | F: arch/arm/mach-sa1100/include/mach/jornada720.h |
| 1137 | |
| 1138 | ARM/IGEP MACHINE SUPPORT |
| 1139 | M: Enric Balletbo i Serra <eballetbo@gmail.com> |
| 1140 | M: Javier Martinez Canillas <javier@dowhile0.org> |
| 1141 | L: linux-omap@vger.kernel.org |
| 1142 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1143 | S: Maintained |
| 1144 | F: arch/arm/boot/dts/omap3-igep* |
| 1145 | |
| 1146 | ARM/INCOME PXA270 SUPPORT |
| 1147 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1148 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1149 | S: Maintained |
| 1150 | F: arch/arm/mach-pxa/colibri-pxa270-income.c |
| 1151 | |
| 1152 | ARM/INTEL IOP32X ARM ARCHITECTURE |
| 1153 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1154 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1155 | S: Maintained |
| 1156 | |
| 1157 | ARM/INTEL IOP33X ARM ARCHITECTURE |
| 1158 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1159 | S: Orphan |
| 1160 | |
| 1161 | ARM/INTEL IOP13XX ARM ARCHITECTURE |
| 1162 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1163 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1164 | S: Maintained |
| 1165 | |
| 1166 | ARM/INTEL IQ81342EX MACHINE SUPPORT |
| 1167 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1168 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1169 | S: Maintained |
| 1170 | |
| 1171 | ARM/INTEL IXDP2850 MACHINE SUPPORT |
| 1172 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1173 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1174 | S: Maintained |
| 1175 | |
| 1176 | ARM/INTEL IXP4XX ARM ARCHITECTURE |
| 1177 | M: Imre Kaloz <kaloz@openwrt.org> |
| 1178 | M: Krzysztof Halasa <khalasa@piap.pl> |
| 1179 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1180 | S: Maintained |
| 1181 | F: arch/arm/mach-ixp4xx/ |
| 1182 | |
| 1183 | ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT |
| 1184 | M: Jonathan Cameron <jic23@cam.ac.uk> |
| 1185 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1186 | S: Maintained |
| 1187 | F: arch/arm/mach-pxa/stargate2.c |
| 1188 | F: drivers/pcmcia/pxa2xx_stargate2.c |
| 1189 | |
| 1190 | ARM/INTEL XSC3 (MANZANO) ARM CORE |
| 1191 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1192 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1193 | S: Maintained |
| 1194 | |
| 1195 | ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT |
| 1196 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1197 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1198 | S: Maintained |
| 1199 | |
| 1200 | ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE |
| 1201 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 1202 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1203 | S: Maintained |
| 1204 | F: arch/arm/mach-keystone/ |
| 1205 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
| 1206 | |
| 1207 | ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK |
| 1208 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 1209 | L: linux-kernel@vger.kernel.org |
| 1210 | S: Maintained |
| 1211 | F: drivers/clk/keystone/ |
| 1212 | |
| 1213 | ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE |
| 1214 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 1215 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1216 | L: linux-kernel@vger.kernel.org |
| 1217 | S: Maintained |
| 1218 | F: drivers/clocksource/timer-keystone.c |
| 1219 | |
| 1220 | ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER |
| 1221 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 1222 | L: linux-kernel@vger.kernel.org |
| 1223 | S: Maintained |
| 1224 | F: drivers/power/reset/keystone-reset.c |
| 1225 | |
| 1226 | ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS |
| 1227 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 1228 | L: linux-kernel@vger.kernel.org |
| 1229 | S: Maintained |
| 1230 | F: drivers/memory/*emif* |
| 1231 | |
| 1232 | ARM/LOGICPD PXA270 MACHINE SUPPORT |
| 1233 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1234 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1235 | S: Maintained |
| 1236 | |
| 1237 | ARM/LPC18XX ARCHITECTURE |
| 1238 | M: Joachim Eastwood <manabian@gmail.com> |
| 1239 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1240 | S: Maintained |
| 1241 | F: arch/arm/boot/dts/lpc43* |
| 1242 | F: drivers/clk/nxp/clk-lpc18xx* |
| 1243 | F: drivers/clocksource/time-lpc32xx.c |
| 1244 | F: drivers/i2c/busses/i2c-lpc2k.c |
| 1245 | F: drivers/memory/pl172.c |
| 1246 | F: drivers/mtd/spi-nor/nxp-spifi.c |
| 1247 | F: drivers/rtc/rtc-lpc24xx.c |
| 1248 | N: lpc18xx |
| 1249 | |
| 1250 | ARM/MAGICIAN MACHINE SUPPORT |
| 1251 | M: Philipp Zabel <philipp.zabel@gmail.com> |
| 1252 | S: Maintained |
| 1253 | |
| 1254 | ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support |
| 1255 | M: Jason Cooper <jason@lakedaemon.net> |
| 1256 | M: Andrew Lunn <andrew@lunn.ch> |
| 1257 | M: Gregory Clement <gregory.clement@free-electrons.com> |
| 1258 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
| 1259 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1260 | S: Maintained |
| 1261 | F: arch/arm/mach-mvebu/ |
| 1262 | F: drivers/rtc/rtc-armada38x.c |
| 1263 | F: arch/arm/boot/dts/armada* |
| 1264 | F: arch/arm/boot/dts/kirkwood* |
| 1265 | |
| 1266 | |
| 1267 | ARM/Marvell Berlin SoC support |
| 1268 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
| 1269 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1270 | S: Maintained |
| 1271 | F: arch/arm/mach-berlin/ |
| 1272 | F: arch/arm/boot/dts/berlin* |
| 1273 | |
| 1274 | |
| 1275 | ARM/Marvell Dove/MV78xx0/Orion SOC support |
| 1276 | M: Jason Cooper <jason@lakedaemon.net> |
| 1277 | M: Andrew Lunn <andrew@lunn.ch> |
| 1278 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
| 1279 | M: Gregory Clement <gregory.clement@free-electrons.com> |
| 1280 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1281 | S: Maintained |
| 1282 | F: arch/arm/mach-dove/ |
| 1283 | F: arch/arm/mach-mv78xx0/ |
| 1284 | F: arch/arm/mach-orion5x/ |
| 1285 | F: arch/arm/plat-orion/ |
| 1286 | F: arch/arm/boot/dts/dove* |
| 1287 | F: arch/arm/boot/dts/orion5x* |
| 1288 | |
| 1289 | |
| 1290 | ARM/Orion SoC/Technologic Systems TS-78xx platform support |
| 1291 | M: Alexander Clouter <alex@digriz.org.uk> |
| 1292 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1293 | W: http://www.digriz.org.uk/ts78xx/kernel |
| 1294 | S: Maintained |
| 1295 | F: arch/arm/mach-orion5x/ts78xx-* |
| 1296 | |
| 1297 | ARM/Mediatek RTC DRIVER |
| 1298 | M: Eddie Huang <eddie.huang@mediatek.com> |
| 1299 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1300 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
| 1301 | S: Maintained |
| 1302 | F: drivers/rtc/rtc-mt6397.c |
| 1303 | |
| 1304 | ARM/Mediatek SoC support |
| 1305 | M: Matthias Brugger <matthias.bgg@gmail.com> |
| 1306 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1307 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
| 1308 | S: Maintained |
| 1309 | F: arch/arm/boot/dts/mt6* |
| 1310 | F: arch/arm/boot/dts/mt8* |
| 1311 | F: arch/arm/mach-mediatek/ |
| 1312 | N: mtk |
| 1313 | K: mediatek |
| 1314 | |
| 1315 | ARM/Mediatek USB3 PHY DRIVER |
| 1316 | M: Chunfeng Yun <chunfeng.yun@mediatek.com> |
| 1317 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1318 | L: linux-mediatek@lists.infradead.org (moderated for non-subscribers) |
| 1319 | S: Maintained |
| 1320 | F: drivers/phy/phy-mt65xx-usb3.c |
| 1321 | |
| 1322 | ARM/MICREL KS8695 ARCHITECTURE |
| 1323 | M: Greg Ungerer <gerg@uclinux.org> |
| 1324 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1325 | F: arch/arm/mach-ks8695/ |
| 1326 | S: Odd Fixes |
| 1327 | |
| 1328 | ARM/MIOA701 MACHINE SUPPORT |
| 1329 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 1330 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1331 | F: arch/arm/mach-pxa/mioa701.c |
| 1332 | S: Maintained |
| 1333 | |
| 1334 | ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT |
| 1335 | M: Michael Petchkovsky <mkpetch@internode.on.net> |
| 1336 | S: Maintained |
| 1337 | |
| 1338 | ARM/NOMADIK ARCHITECTURE |
| 1339 | M: Alessandro Rubini <rubini@unipv.it> |
| 1340 | M: Linus Walleij <linus.walleij@linaro.org> |
| 1341 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1342 | S: Maintained |
| 1343 | F: arch/arm/mach-nomadik/ |
| 1344 | F: drivers/pinctrl/nomadik/ |
| 1345 | F: drivers/i2c/busses/i2c-nomadik.c |
| 1346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git |
| 1347 | |
| 1348 | ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT |
| 1349 | M: Nelson Castillo <arhuaco@freaks-unidos.net> |
| 1350 | L: openmoko-kernel@lists.openmoko.org (subscribers-only) |
| 1351 | W: http://wiki.openmoko.org/wiki/Neo_FreeRunner |
| 1352 | S: Supported |
| 1353 | |
| 1354 | ARM/TOSA MACHINE SUPPORT |
| 1355 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
| 1356 | M: Dirk Opfer <dirk@opfer-online.de> |
| 1357 | S: Maintained |
| 1358 | |
| 1359 | ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT |
| 1360 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1361 | L: linux-arm-kernel@lists.infradead.org |
| 1362 | W: http://hackndev.com |
| 1363 | S: Maintained |
| 1364 | F: arch/arm/mach-pxa/include/mach/palmtx.h |
| 1365 | F: arch/arm/mach-pxa/palmtx.c |
| 1366 | F: arch/arm/mach-pxa/include/mach/palmt5.h |
| 1367 | F: arch/arm/mach-pxa/palmt5.c |
| 1368 | F: arch/arm/mach-pxa/include/mach/palmld.h |
| 1369 | F: arch/arm/mach-pxa/palmld.c |
| 1370 | F: arch/arm/mach-pxa/include/mach/palmte2.h |
| 1371 | F: arch/arm/mach-pxa/palmte2.c |
| 1372 | F: arch/arm/mach-pxa/include/mach/palmtc.h |
| 1373 | F: arch/arm/mach-pxa/palmtc.c |
| 1374 | |
| 1375 | ARM/PALM TREO SUPPORT |
| 1376 | M: Tomas Cech <sleep_walker@suse.com> |
| 1377 | L: linux-arm-kernel@lists.infradead.org |
| 1378 | W: http://hackndev.com |
| 1379 | S: Maintained |
| 1380 | F: arch/arm/mach-pxa/include/mach/palmtreo.h |
| 1381 | F: arch/arm/mach-pxa/palmtreo.c |
| 1382 | |
| 1383 | ARM/PALMZ72 SUPPORT |
| 1384 | M: Sergey Lapin <slapin@ossfans.org> |
| 1385 | L: linux-arm-kernel@lists.infradead.org |
| 1386 | W: http://hackndev.com |
| 1387 | S: Maintained |
| 1388 | F: arch/arm/mach-pxa/include/mach/palmz72.h |
| 1389 | F: arch/arm/mach-pxa/palmz72.c |
| 1390 | |
| 1391 | ARM/PLEB SUPPORT |
| 1392 | M: Peter Chubb <pleb@gelato.unsw.edu.au> |
| 1393 | W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB |
| 1394 | S: Maintained |
| 1395 | |
| 1396 | ARM/PT DIGITAL BOARD PORT |
| 1397 | M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> |
| 1398 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1399 | W: http://www.arm.linux.org.uk/ |
| 1400 | S: Maintained |
| 1401 | |
| 1402 | ARM/QUALCOMM SUPPORT |
| 1403 | M: Kumar Gala <galak@codeaurora.org> |
| 1404 | M: Andy Gross <agross@codeaurora.org> |
| 1405 | M: David Brown <davidb@codeaurora.org> |
| 1406 | L: linux-arm-msm@vger.kernel.org |
| 1407 | L: linux-soc@vger.kernel.org |
| 1408 | S: Maintained |
| 1409 | F: arch/arm/mach-qcom/ |
| 1410 | F: drivers/soc/qcom/ |
| 1411 | F: drivers/tty/serial/msm_serial.h |
| 1412 | F: drivers/tty/serial/msm_serial.c |
| 1413 | F: drivers/*/pm8???-* |
| 1414 | F: drivers/mfd/ssbi.c |
| 1415 | F: drivers/firmware/qcom_scm.c |
| 1416 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git |
| 1417 | |
| 1418 | ARM/RADISYS ENP2611 MACHINE SUPPORT |
| 1419 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1420 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1421 | S: Maintained |
| 1422 | |
| 1423 | ARM/RISCPC ARCHITECTURE |
| 1424 | M: Russell King <linux@arm.linux.org.uk> |
| 1425 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1426 | W: http://www.arm.linux.org.uk/ |
| 1427 | S: Maintained |
| 1428 | F: arch/arm/include/asm/hardware/entry-macro-iomd.S |
| 1429 | F: arch/arm/include/asm/hardware/ioc.h |
| 1430 | F: arch/arm/include/asm/hardware/iomd.h |
| 1431 | F: arch/arm/include/asm/hardware/memc.h |
| 1432 | F: arch/arm/mach-rpc/ |
| 1433 | F: drivers/net/ethernet/8390/etherh.c |
| 1434 | F: drivers/net/ethernet/i825xx/ether1* |
| 1435 | F: drivers/net/ethernet/seeq/ether3* |
| 1436 | F: drivers/scsi/arm/ |
| 1437 | |
| 1438 | ARM/Rockchip SoC support |
| 1439 | M: Heiko Stuebner <heiko@sntech.de> |
| 1440 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1441 | L: linux-rockchip@lists.infradead.org |
| 1442 | S: Maintained |
| 1443 | F: arch/arm/boot/dts/rk3* |
| 1444 | F: arch/arm/mach-rockchip/ |
| 1445 | F: drivers/clk/rockchip/ |
| 1446 | F: drivers/i2c/busses/i2c-rk3x.c |
| 1447 | F: drivers/*/*rockchip* |
| 1448 | F: drivers/*/*/*rockchip* |
| 1449 | F: sound/soc/rockchip/ |
| 1450 | N: rockchip |
| 1451 | |
| 1452 | ARM/SAMSUNG EXYNOS ARM ARCHITECTURES |
| 1453 | M: Kukjin Kim <kgene@kernel.org> |
| 1454 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
| 1455 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1456 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 1457 | S: Maintained |
| 1458 | F: arch/arm/boot/dts/s3c* |
| 1459 | F: arch/arm/boot/dts/exynos* |
| 1460 | F: arch/arm64/boot/dts/exynos/ |
| 1461 | F: arch/arm/plat-samsung/ |
| 1462 | F: arch/arm/mach-s3c24*/ |
| 1463 | F: arch/arm/mach-s3c64xx/ |
| 1464 | F: arch/arm/mach-s5p*/ |
| 1465 | F: arch/arm/mach-exynos*/ |
| 1466 | F: drivers/*/*s3c2410* |
| 1467 | F: drivers/*/*/*s3c2410* |
| 1468 | F: drivers/spi/spi-s3c* |
| 1469 | F: sound/soc/samsung/* |
| 1470 | F: Documentation/arm/Samsung/ |
| 1471 | F: Documentation/devicetree/bindings/arm/samsung/ |
| 1472 | F: Documentation/devicetree/bindings/sram/samsung-sram.txt |
| 1473 | F: Documentation/devicetree/bindings/power/pd-samsung.txt |
| 1474 | N: exynos |
| 1475 | |
| 1476 | ARM/SAMSUNG MOBILE MACHINE SUPPORT |
| 1477 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1478 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1479 | S: Maintained |
| 1480 | F: arch/arm/mach-s5pv210/ |
| 1481 | |
| 1482 | ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT |
| 1483 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1484 | M: Kamil Debski <k.debski@samsung.com> |
| 1485 | L: linux-arm-kernel@lists.infradead.org |
| 1486 | L: linux-media@vger.kernel.org |
| 1487 | S: Maintained |
| 1488 | F: drivers/media/platform/s5p-g2d/ |
| 1489 | |
| 1490 | ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT |
| 1491 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1492 | M: Kamil Debski <k.debski@samsung.com> |
| 1493 | M: Jeongtae Park <jtp.park@samsung.com> |
| 1494 | L: linux-arm-kernel@lists.infradead.org |
| 1495 | L: linux-media@vger.kernel.org |
| 1496 | S: Maintained |
| 1497 | F: arch/arm/plat-samsung/s5p-dev-mfc.c |
| 1498 | F: drivers/media/platform/s5p-mfc/ |
| 1499 | |
| 1500 | ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT |
| 1501 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 1502 | M: Tomasz Stanislawski <t.stanislaws@samsung.com> |
| 1503 | L: linux-arm-kernel@lists.infradead.org |
| 1504 | L: linux-media@vger.kernel.org |
| 1505 | S: Maintained |
| 1506 | F: drivers/media/platform/s5p-tv/ |
| 1507 | |
| 1508 | ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT |
| 1509 | M: Andrzej Pietrasiewicz <andrzej.p@samsung.com> |
| 1510 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
| 1511 | L: linux-arm-kernel@lists.infradead.org |
| 1512 | L: linux-media@vger.kernel.org |
| 1513 | S: Maintained |
| 1514 | F: drivers/media/platform/s5p-jpeg/ |
| 1515 | |
| 1516 | ARM/SHMOBILE ARM ARCHITECTURE |
| 1517 | M: Simon Horman <horms@verge.net.au> |
| 1518 | M: Magnus Damm <magnus.damm@gmail.com> |
| 1519 | L: linux-sh@vger.kernel.org |
| 1520 | W: http://oss.renesas.com |
| 1521 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
| 1522 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next |
| 1523 | S: Supported |
| 1524 | F: arch/arm/boot/dts/emev2* |
| 1525 | F: arch/arm/boot/dts/r7s* |
| 1526 | F: arch/arm/boot/dts/r8a* |
| 1527 | F: arch/arm/boot/dts/sh* |
| 1528 | F: arch/arm/configs/shmobile_defconfig |
| 1529 | F: arch/arm/include/debug/renesas-scif.S |
| 1530 | F: arch/arm/mach-shmobile/ |
| 1531 | F: drivers/sh/ |
| 1532 | |
| 1533 | ARM/SOCFPGA ARCHITECTURE |
| 1534 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
| 1535 | S: Maintained |
| 1536 | F: arch/arm/mach-socfpga/ |
| 1537 | F: arch/arm/boot/dts/socfpga* |
| 1538 | F: arch/arm/configs/socfpga_defconfig |
| 1539 | W: http://www.rocketboards.org |
| 1540 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git |
| 1541 | |
| 1542 | ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT |
| 1543 | M: Dinh Nguyen <dinguyen@opensource.altera.com> |
| 1544 | S: Maintained |
| 1545 | F: drivers/clk/socfpga/ |
| 1546 | |
| 1547 | ARM/SOCFPGA EDAC SUPPORT |
| 1548 | M: Thor Thayer <tthayer@opensource.altera.com> |
| 1549 | S: Maintained |
| 1550 | F: drivers/edac/altera_edac. |
| 1551 | |
| 1552 | ARM/STI ARCHITECTURE |
| 1553 | M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com> |
| 1554 | M: Maxime Coquelin <maxime.coquelin@st.com> |
| 1555 | M: Patrice Chotard <patrice.chotard@st.com> |
| 1556 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1557 | L: kernel@stlinux.com |
| 1558 | W: http://www.stlinux.com |
| 1559 | S: Maintained |
| 1560 | F: arch/arm/mach-sti/ |
| 1561 | F: arch/arm/boot/dts/sti* |
| 1562 | F: drivers/char/hw_random/st-rng.c |
| 1563 | F: drivers/clocksource/arm_global_timer.c |
| 1564 | F: drivers/clocksource/clksrc_st_lpc.c |
| 1565 | F: drivers/i2c/busses/i2c-st.c |
| 1566 | F: drivers/media/rc/st_rc.c |
| 1567 | F: drivers/media/platform/sti/c8sectpfe/ |
| 1568 | F: drivers/mmc/host/sdhci-st.c |
| 1569 | F: drivers/phy/phy-miphy28lp.c |
| 1570 | F: drivers/phy/phy-miphy365x.c |
| 1571 | F: drivers/phy/phy-stih407-usb.c |
| 1572 | F: drivers/phy/phy-stih41x-usb.c |
| 1573 | F: drivers/pinctrl/pinctrl-st.c |
| 1574 | F: drivers/reset/sti/ |
| 1575 | F: drivers/rtc/rtc-st-lpc.c |
| 1576 | F: drivers/tty/serial/st-asc.c |
| 1577 | F: drivers/usb/dwc3/dwc3-st.c |
| 1578 | F: drivers/usb/host/ehci-st.c |
| 1579 | F: drivers/usb/host/ohci-st.c |
| 1580 | F: drivers/watchdog/st_lpc_wdt.c |
| 1581 | F: drivers/ata/ahci_st.c |
| 1582 | |
| 1583 | ARM/STM32 ARCHITECTURE |
| 1584 | M: Maxime Coquelin <mcoquelin.stm32@gmail.com> |
| 1585 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1586 | S: Maintained |
| 1587 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git |
| 1588 | N: stm32 |
| 1589 | F: drivers/clocksource/armv7m_systick.c |
| 1590 | |
| 1591 | ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT |
| 1592 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1593 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1594 | S: Maintained |
| 1595 | |
| 1596 | ARM/TETON BGA MACHINE SUPPORT |
| 1597 | M: "Mark F. Brown" <mark.brown314@gmail.com> |
| 1598 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1599 | S: Maintained |
| 1600 | |
| 1601 | ARM/THECUS N2100 MACHINE SUPPORT |
| 1602 | M: Lennert Buytenhek <kernel@wantstofly.org> |
| 1603 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1604 | S: Maintained |
| 1605 | |
| 1606 | ARM/NUVOTON W90X900 ARM ARCHITECTURE |
| 1607 | M: Wan ZongShun <mcuos.com@gmail.com> |
| 1608 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1609 | W: http://www.mcuos.com |
| 1610 | S: Maintained |
| 1611 | F: arch/arm/mach-w90x900/ |
| 1612 | F: drivers/input/keyboard/w90p910_keypad.c |
| 1613 | F: drivers/input/touchscreen/w90p910_ts.c |
| 1614 | F: drivers/watchdog/nuc900_wdt.c |
| 1615 | F: drivers/net/ethernet/nuvoton/w90p910_ether.c |
| 1616 | F: drivers/mtd/nand/nuc900_nand.c |
| 1617 | F: drivers/rtc/rtc-nuc900.c |
| 1618 | F: drivers/spi/spi-nuc900.c |
| 1619 | F: drivers/usb/host/ehci-w90x900.c |
| 1620 | F: drivers/video/fbdev/nuc900fb.c |
| 1621 | |
| 1622 | ARM/U300 MACHINE SUPPORT |
| 1623 | M: Linus Walleij <linus.walleij@linaro.org> |
| 1624 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1625 | S: Supported |
| 1626 | F: arch/arm/mach-u300/ |
| 1627 | F: drivers/clocksource/timer-u300.c |
| 1628 | F: drivers/i2c/busses/i2c-stu300.c |
| 1629 | F: drivers/rtc/rtc-coh901331.c |
| 1630 | F: drivers/watchdog/coh901327_wdt.c |
| 1631 | F: drivers/dma/coh901318* |
| 1632 | F: drivers/mfd/ab3100* |
| 1633 | F: drivers/rtc/rtc-ab3100.c |
| 1634 | F: drivers/rtc/rtc-coh901331.c |
| 1635 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
| 1636 | |
| 1637 | ARM/UNIPHIER ARCHITECTURE |
| 1638 | M: Masahiro Yamada <yamada.masahiro@socionext.com> |
| 1639 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1640 | S: Maintained |
| 1641 | F: arch/arm/boot/dts/uniphier* |
| 1642 | F: arch/arm/include/asm/hardware/cache-uniphier.h |
| 1643 | F: arch/arm/mach-uniphier/ |
| 1644 | F: arch/arm/mm/cache-uniphier.c |
| 1645 | F: drivers/i2c/busses/i2c-uniphier* |
| 1646 | F: drivers/pinctrl/uniphier/ |
| 1647 | F: drivers/tty/serial/8250/8250_uniphier.c |
| 1648 | N: uniphier |
| 1649 | |
| 1650 | ARM/Ux500 ARM ARCHITECTURE |
| 1651 | M: Linus Walleij <linus.walleij@linaro.org> |
| 1652 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1653 | S: Maintained |
| 1654 | F: arch/arm/mach-ux500/ |
| 1655 | F: drivers/clocksource/clksrc-dbx500-prcmu.c |
| 1656 | F: drivers/dma/ste_dma40* |
| 1657 | F: drivers/hwspinlock/u8500_hsem.c |
| 1658 | F: drivers/mfd/abx500* |
| 1659 | F: drivers/mfd/ab8500* |
| 1660 | F: drivers/mfd/dbx500* |
| 1661 | F: drivers/mfd/db8500* |
| 1662 | F: drivers/pinctrl/nomadik/pinctrl-ab* |
| 1663 | F: drivers/pinctrl/nomadik/pinctrl-nomadik* |
| 1664 | F: drivers/rtc/rtc-ab8500.c |
| 1665 | F: drivers/rtc/rtc-pl031.c |
| 1666 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git |
| 1667 | |
| 1668 | ARM/Ux500 CLOCK FRAMEWORK SUPPORT |
| 1669 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 1670 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1671 | T: git git://git.linaro.org/people/ulfh/clk.git |
| 1672 | S: Maintained |
| 1673 | F: drivers/clk/ux500/ |
| 1674 | F: include/linux/platform_data/clk-ux500.h |
| 1675 | |
| 1676 | ARM/VERSATILE EXPRESS PLATFORM |
| 1677 | M: Liviu Dudau <liviu.dudau@arm.com> |
| 1678 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 1679 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 1680 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1681 | S: Maintained |
| 1682 | F: arch/arm/boot/dts/vexpress* |
| 1683 | F: arch/arm64/boot/dts/arm/vexpress* |
| 1684 | F: arch/arm/mach-vexpress/ |
| 1685 | F: */*/vexpress* |
| 1686 | F: */*/*/vexpress* |
| 1687 | F: drivers/clk/versatile/clk-vexpress-osc.c |
| 1688 | F: drivers/clocksource/versatile.c |
| 1689 | |
| 1690 | ARM/VFP SUPPORT |
| 1691 | M: Russell King <linux@arm.linux.org.uk> |
| 1692 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1693 | W: http://www.arm.linux.org.uk/ |
| 1694 | S: Maintained |
| 1695 | F: arch/arm/vfp/ |
| 1696 | |
| 1697 | ARM/VOIPAC PXA270 SUPPORT |
| 1698 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1699 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1700 | S: Maintained |
| 1701 | F: arch/arm/mach-pxa/vpac270.c |
| 1702 | F: arch/arm/mach-pxa/include/mach/vpac270.h |
| 1703 | |
| 1704 | ARM/VT8500 ARM ARCHITECTURE |
| 1705 | M: Tony Prisk <linux@prisktech.co.nz> |
| 1706 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1707 | S: Maintained |
| 1708 | F: arch/arm/mach-vt8500/ |
| 1709 | F: drivers/clocksource/vt8500_timer.c |
| 1710 | F: drivers/i2c/busses/i2c-wmt.c |
| 1711 | F: drivers/mmc/host/wmt-sdmmc.c |
| 1712 | F: drivers/pwm/pwm-vt8500.c |
| 1713 | F: drivers/rtc/rtc-vt8500.c |
| 1714 | F: drivers/tty/serial/vt8500_serial.c |
| 1715 | F: drivers/usb/host/ehci-platform.c |
| 1716 | F: drivers/usb/host/uhci-platform.c |
| 1717 | F: drivers/video/fbdev/vt8500lcdfb.* |
| 1718 | F: drivers/video/fbdev/wm8505fb* |
| 1719 | F: drivers/video/fbdev/wmt_ge_rops.* |
| 1720 | |
| 1721 | ARM/ZIPIT Z2 SUPPORT |
| 1722 | M: Marek Vasut <marek.vasut@gmail.com> |
| 1723 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1724 | S: Maintained |
| 1725 | F: arch/arm/mach-pxa/z2.c |
| 1726 | F: arch/arm/mach-pxa/include/mach/z2.h |
| 1727 | |
| 1728 | ARM/ZTE ARCHITECTURE |
| 1729 | M: Jun Nie <jun.nie@linaro.org> |
| 1730 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1731 | S: Maintained |
| 1732 | F: arch/arm/mach-zx/ |
| 1733 | F: drivers/clk/zte/ |
| 1734 | F: Documentation/devicetree/bindings/arm/zte.txt |
| 1735 | F: Documentation/devicetree/bindings/clock/zx296702-clk.txt |
| 1736 | |
| 1737 | ARM/ZYNQ ARCHITECTURE |
| 1738 | M: Michal Simek <michal.simek@xilinx.com> |
| 1739 | R: Sören Brinkmann <soren.brinkmann@xilinx.com> |
| 1740 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1741 | W: http://wiki.xilinx.com |
| 1742 | T: git https://github.com/Xilinx/linux-xlnx.git |
| 1743 | S: Supported |
| 1744 | F: arch/arm/mach-zynq/ |
| 1745 | F: drivers/cpuidle/cpuidle-zynq.c |
| 1746 | F: drivers/block/xsysace.c |
| 1747 | N: zynq |
| 1748 | N: xilinx |
| 1749 | F: drivers/clocksource/cadence_ttc_timer.c |
| 1750 | F: drivers/i2c/busses/i2c-cadence.c |
| 1751 | F: drivers/mmc/host/sdhci-of-arasan.c |
| 1752 | F: drivers/edac/synopsys_edac.c |
| 1753 | |
| 1754 | ARM SMMU DRIVERS |
| 1755 | M: Will Deacon <will.deacon@arm.com> |
| 1756 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1757 | S: Maintained |
| 1758 | F: drivers/iommu/arm-smmu.c |
| 1759 | F: drivers/iommu/arm-smmu-v3.c |
| 1760 | F: drivers/iommu/io-pgtable-arm.c |
| 1761 | |
| 1762 | ARM64 PORT (AARCH64 ARCHITECTURE) |
| 1763 | M: Catalin Marinas <catalin.marinas@arm.com> |
| 1764 | M: Will Deacon <will.deacon@arm.com> |
| 1765 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1766 | S: Maintained |
| 1767 | F: arch/arm64/ |
| 1768 | F: Documentation/arm64/ |
| 1769 | |
| 1770 | AS3645A LED FLASH CONTROLLER DRIVER |
| 1771 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 1772 | L: linux-media@vger.kernel.org |
| 1773 | T: git git://linuxtv.org/media_tree.git |
| 1774 | S: Maintained |
| 1775 | F: drivers/media/i2c/as3645a.c |
| 1776 | F: include/media/as3645a.h |
| 1777 | |
| 1778 | ASC7621 HARDWARE MONITOR DRIVER |
| 1779 | M: George Joseph <george.joseph@fairview5.com> |
| 1780 | L: linux-hwmon@vger.kernel.org |
| 1781 | S: Maintained |
| 1782 | F: Documentation/hwmon/asc7621 |
| 1783 | F: drivers/hwmon/asc7621.c |
| 1784 | |
| 1785 | ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS |
| 1786 | M: Corentin Chary <corentin.chary@gmail.com> |
| 1787 | L: acpi4asus-user@lists.sourceforge.net |
| 1788 | L: platform-driver-x86@vger.kernel.org |
| 1789 | W: http://acpi4asus.sf.net |
| 1790 | S: Maintained |
| 1791 | F: drivers/platform/x86/asus*.c |
| 1792 | F: drivers/platform/x86/eeepc*.c |
| 1793 | |
| 1794 | ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API |
| 1795 | R: Dan Williams <dan.j.williams@intel.com> |
| 1796 | W: http://sourceforge.net/projects/xscaleiop |
| 1797 | S: Odd fixes |
| 1798 | F: Documentation/crypto/async-tx-api.txt |
| 1799 | F: crypto/async_tx/ |
| 1800 | F: drivers/dma/ |
| 1801 | F: include/linux/dmaengine.h |
| 1802 | F: include/linux/async_tx.h |
| 1803 | |
| 1804 | AT24 EEPROM DRIVER |
| 1805 | M: Wolfram Sang <wsa@the-dreams.de> |
| 1806 | L: linux-i2c@vger.kernel.org |
| 1807 | S: Maintained |
| 1808 | F: drivers/misc/eeprom/at24.c |
| 1809 | F: include/linux/platform_data/at24.h |
| 1810 | |
| 1811 | ATA OVER ETHERNET (AOE) DRIVER |
| 1812 | M: "Ed L. Cashin" <ed.cashin@acm.org> |
| 1813 | W: http://www.openaoe.org/ |
| 1814 | S: Supported |
| 1815 | F: Documentation/aoe/ |
| 1816 | F: drivers/block/aoe/ |
| 1817 | |
| 1818 | ATHEROS 71XX/9XXX GPIO DRIVER |
| 1819 | M: Alban Bedel <albeu@free.fr> |
| 1820 | W: https://github.com/AlbanBedel/linux |
| 1821 | T: git git://github.com/AlbanBedel/linux |
| 1822 | S: Maintained |
| 1823 | F: drivers/gpio/gpio-ath79.c |
| 1824 | F: Documentation/devicetree/bindings/gpio/gpio-ath79.txt |
| 1825 | |
| 1826 | ATHEROS ATH GENERIC UTILITIES |
| 1827 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
| 1828 | L: linux-wireless@vger.kernel.org |
| 1829 | S: Supported |
| 1830 | F: drivers/net/wireless/ath/* |
| 1831 | |
| 1832 | ATHEROS ATH5K WIRELESS DRIVER |
| 1833 | M: Jiri Slaby <jirislaby@gmail.com> |
| 1834 | M: Nick Kossifidis <mickflemm@gmail.com> |
| 1835 | M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com> |
| 1836 | L: linux-wireless@vger.kernel.org |
| 1837 | W: http://wireless.kernel.org/en/users/Drivers/ath5k |
| 1838 | S: Maintained |
| 1839 | F: drivers/net/wireless/ath/ath5k/ |
| 1840 | |
| 1841 | ATHEROS ATH6KL WIRELESS DRIVER |
| 1842 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
| 1843 | L: linux-wireless@vger.kernel.org |
| 1844 | W: http://wireless.kernel.org/en/users/Drivers/ath6kl |
| 1845 | T: git git://github.com/kvalo/ath.git |
| 1846 | S: Supported |
| 1847 | F: drivers/net/wireless/ath/ath6kl/ |
| 1848 | |
| 1849 | WILOCITY WIL6210 WIRELESS DRIVER |
| 1850 | M: Maya Erez <qca_merez@qca.qualcomm.com> |
| 1851 | L: linux-wireless@vger.kernel.org |
| 1852 | L: wil6210@qca.qualcomm.com |
| 1853 | S: Supported |
| 1854 | W: http://wireless.kernel.org/en/users/Drivers/wil6210 |
| 1855 | F: drivers/net/wireless/ath/wil6210/ |
| 1856 | F: include/uapi/linux/wil6210_uapi.h |
| 1857 | |
| 1858 | CARL9170 LINUX COMMUNITY WIRELESS DRIVER |
| 1859 | M: Christian Lamparter <chunkeey@googlemail.com> |
| 1860 | L: linux-wireless@vger.kernel.org |
| 1861 | W: http://wireless.kernel.org/en/users/Drivers/carl9170 |
| 1862 | S: Maintained |
| 1863 | F: drivers/net/wireless/ath/carl9170/ |
| 1864 | |
| 1865 | ATK0110 HWMON DRIVER |
| 1866 | M: Luca Tettamanti <kronos.it@gmail.com> |
| 1867 | L: linux-hwmon@vger.kernel.org |
| 1868 | S: Maintained |
| 1869 | F: drivers/hwmon/asus_atk0110.c |
| 1870 | |
| 1871 | ATI_REMOTE2 DRIVER |
| 1872 | M: Ville Syrjala <syrjala@sci.fi> |
| 1873 | S: Maintained |
| 1874 | F: drivers/input/misc/ati_remote2.c |
| 1875 | |
| 1876 | ATLX ETHERNET DRIVERS |
| 1877 | M: Jay Cliburn <jcliburn@gmail.com> |
| 1878 | M: Chris Snook <chris.snook@gmail.com> |
| 1879 | L: netdev@vger.kernel.org |
| 1880 | W: http://sourceforge.net/projects/atl1 |
| 1881 | W: http://atl1.sourceforge.net |
| 1882 | S: Maintained |
| 1883 | F: drivers/net/ethernet/atheros/ |
| 1884 | |
| 1885 | ATM |
| 1886 | M: Chas Williams <3chas3@gmail.com> |
| 1887 | L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) |
| 1888 | L: netdev@vger.kernel.org |
| 1889 | W: http://linux-atm.sourceforge.net |
| 1890 | S: Maintained |
| 1891 | F: drivers/atm/ |
| 1892 | F: include/linux/atm* |
| 1893 | F: include/uapi/linux/atm* |
| 1894 | |
| 1895 | ATMEL AT91 / AT32 MCI DRIVER |
| 1896 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1897 | S: Maintained |
| 1898 | F: drivers/mmc/host/atmel-mci.c |
| 1899 | F: drivers/mmc/host/atmel-mci-regs.h |
| 1900 | |
| 1901 | ATMEL AT91 / AT32 SERIAL DRIVER |
| 1902 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1903 | S: Supported |
| 1904 | F: drivers/tty/serial/atmel_serial.c |
| 1905 | |
| 1906 | ATMEL Audio ALSA driver |
| 1907 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1908 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 1909 | S: Supported |
| 1910 | F: sound/soc/atmel |
| 1911 | |
| 1912 | ATMEL DMA DRIVER |
| 1913 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1914 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1915 | S: Supported |
| 1916 | F: drivers/dma/at_hdmac.c |
| 1917 | F: drivers/dma/at_hdmac_regs.h |
| 1918 | F: include/linux/platform_data/dma-atmel.h |
| 1919 | |
| 1920 | ATMEL XDMA DRIVER |
| 1921 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1922 | L: linux-arm-kernel@lists.infradead.org |
| 1923 | L: dmaengine@vger.kernel.org |
| 1924 | S: Supported |
| 1925 | F: drivers/dma/at_xdmac.c |
| 1926 | |
| 1927 | ATMEL I2C DRIVER |
| 1928 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1929 | L: linux-i2c@vger.kernel.org |
| 1930 | S: Supported |
| 1931 | F: drivers/i2c/busses/i2c-at91.c |
| 1932 | |
| 1933 | ATMEL ISI DRIVER |
| 1934 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1935 | L: linux-media@vger.kernel.org |
| 1936 | S: Supported |
| 1937 | F: drivers/media/platform/soc_camera/atmel-isi.c |
| 1938 | F: include/media/atmel-isi.h |
| 1939 | |
| 1940 | ATMEL LCDFB DRIVER |
| 1941 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1942 | L: linux-fbdev@vger.kernel.org |
| 1943 | S: Maintained |
| 1944 | F: drivers/video/fbdev/atmel_lcdfb.c |
| 1945 | F: include/video/atmel_lcdc.h |
| 1946 | |
| 1947 | ATMEL MACB ETHERNET DRIVER |
| 1948 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1949 | S: Supported |
| 1950 | F: drivers/net/ethernet/cadence/ |
| 1951 | |
| 1952 | ATMEL NAND DRIVER |
| 1953 | M: Wenyou Yang <wenyou.yang@atmel.com> |
| 1954 | M: Josh Wu <rainyfeeling@outlook.com> |
| 1955 | L: linux-mtd@lists.infradead.org |
| 1956 | S: Supported |
| 1957 | F: drivers/mtd/nand/atmel_nand* |
| 1958 | |
| 1959 | ATMEL SDMMC DRIVER |
| 1960 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 1961 | L: linux-mmc@vger.kernel.org |
| 1962 | S: Supported |
| 1963 | F: drivers/mmc/host/sdhci-of-at91.c |
| 1964 | |
| 1965 | ATMEL SPI DRIVER |
| 1966 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1967 | S: Supported |
| 1968 | F: drivers/spi/spi-atmel.* |
| 1969 | |
| 1970 | ATMEL SSC DRIVER |
| 1971 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1972 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1973 | S: Supported |
| 1974 | F: drivers/misc/atmel-ssc.c |
| 1975 | F: include/linux/atmel-ssc.h |
| 1976 | |
| 1977 | ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS |
| 1978 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1979 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1980 | S: Supported |
| 1981 | F: drivers/misc/atmel_tclib.c |
| 1982 | F: drivers/clocksource/tcb_clksrc.c |
| 1983 | |
| 1984 | ATMEL USBA UDC DRIVER |
| 1985 | M: Nicolas Ferre <nicolas.ferre@atmel.com> |
| 1986 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 1987 | S: Supported |
| 1988 | F: drivers/usb/gadget/udc/atmel_usba_udc.* |
| 1989 | |
| 1990 | ATMEL WIRELESS DRIVER |
| 1991 | M: Simon Kelley <simon@thekelleys.org.uk> |
| 1992 | L: linux-wireless@vger.kernel.org |
| 1993 | W: http://www.thekelleys.org.uk/atmel |
| 1994 | W: http://atmelwlandriver.sourceforge.net/ |
| 1995 | S: Maintained |
| 1996 | F: drivers/net/wireless/atmel* |
| 1997 | |
| 1998 | ATMEL MAXTOUCH DRIVER |
| 1999 | M: Nick Dyer <nick.dyer@itdev.co.uk> |
| 2000 | T: git git://github.com/atmel-maxtouch/linux.git |
| 2001 | S: Supported |
| 2002 | F: Documentation/devicetree/bindings/input/atmel,maxtouch.txt |
| 2003 | F: drivers/input/touchscreen/atmel_mxt_ts.c |
| 2004 | F: include/linux/platform_data/atmel_mxt_ts.h |
| 2005 | |
| 2006 | ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER |
| 2007 | M: Bradley Grove <linuxdrivers@attotech.com> |
| 2008 | L: linux-scsi@vger.kernel.org |
| 2009 | W: http://www.attotech.com |
| 2010 | S: Supported |
| 2011 | F: drivers/scsi/esas2r |
| 2012 | |
| 2013 | ATUSB IEEE 802.15.4 RADIO DRIVER |
| 2014 | M: Stefan Schmidt <stefan@osg.samsung.com> |
| 2015 | L: linux-wpan@vger.kernel.org |
| 2016 | S: Maintained |
| 2017 | F: drivers/net/ieee802154/atusb.c |
| 2018 | F: drivers/net/ieee802154/atusb.h |
| 2019 | F: drivers/net/ieee802154/at86rf230.h |
| 2020 | |
| 2021 | AUDIT SUBSYSTEM |
| 2022 | M: Paul Moore <paul@paul-moore.com> |
| 2023 | M: Eric Paris <eparis@redhat.com> |
| 2024 | L: linux-audit@redhat.com (moderated for non-subscribers) |
| 2025 | W: http://people.redhat.com/sgrubb/audit/ |
| 2026 | T: git git://git.infradead.org/users/pcmoore/audit |
| 2027 | S: Maintained |
| 2028 | F: include/linux/audit.h |
| 2029 | F: include/uapi/linux/audit.h |
| 2030 | F: kernel/audit* |
| 2031 | |
| 2032 | AUXILIARY DISPLAY DRIVERS |
| 2033 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
| 2034 | W: http://miguelojeda.es/auxdisplay.htm |
| 2035 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
| 2036 | S: Maintained |
| 2037 | F: drivers/auxdisplay/ |
| 2038 | F: include/linux/cfag12864b.h |
| 2039 | |
| 2040 | AVR32 ARCHITECTURE |
| 2041 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
| 2042 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> |
| 2043 | W: http://www.atmel.com/products/AVR32/ |
| 2044 | W: http://mirror.egtvedt.no/avr32linux.org/ |
| 2045 | W: http://avrfreaks.net/ |
| 2046 | S: Maintained |
| 2047 | F: arch/avr32/ |
| 2048 | |
| 2049 | AVR32/AT32AP MACHINE SUPPORT |
| 2050 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
| 2051 | M: Hans-Christian Egtvedt <egtvedt@samfundet.no> |
| 2052 | S: Maintained |
| 2053 | F: arch/avr32/mach-at32ap/ |
| 2054 | |
| 2055 | AX.25 NETWORK LAYER |
| 2056 | M: Ralf Baechle <ralf@linux-mips.org> |
| 2057 | L: linux-hams@vger.kernel.org |
| 2058 | W: http://www.linux-ax25.org/ |
| 2059 | S: Maintained |
| 2060 | F: include/uapi/linux/ax25.h |
| 2061 | F: include/net/ax25.h |
| 2062 | F: net/ax25/ |
| 2063 | |
| 2064 | AZ6007 DVB DRIVER |
| 2065 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 2066 | L: linux-media@vger.kernel.org |
| 2067 | W: http://linuxtv.org |
| 2068 | T: git git://linuxtv.org/media_tree.git |
| 2069 | S: Maintained |
| 2070 | F: drivers/media/usb/dvb-usb-v2/az6007.c |
| 2071 | |
| 2072 | AZTECH FM RADIO RECEIVER DRIVER |
| 2073 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 2074 | L: linux-media@vger.kernel.org |
| 2075 | T: git git://linuxtv.org/media_tree.git |
| 2076 | W: http://linuxtv.org |
| 2077 | S: Maintained |
| 2078 | F: drivers/media/radio/radio-aztech* |
| 2079 | |
| 2080 | B43 WIRELESS DRIVER |
| 2081 | L: linux-wireless@vger.kernel.org |
| 2082 | L: b43-dev@lists.infradead.org |
| 2083 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
| 2084 | S: Odd Fixes |
| 2085 | F: drivers/net/wireless/b43/ |
| 2086 | |
| 2087 | B43LEGACY WIRELESS DRIVER |
| 2088 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 2089 | L: linux-wireless@vger.kernel.org |
| 2090 | L: b43-dev@lists.infradead.org |
| 2091 | W: http://wireless.kernel.org/en/users/Drivers/b43 |
| 2092 | S: Maintained |
| 2093 | F: drivers/net/wireless/b43legacy/ |
| 2094 | |
| 2095 | BACKLIGHT CLASS/SUBSYSTEM |
| 2096 | M: Jingoo Han <jingoohan1@gmail.com> |
| 2097 | M: Lee Jones <lee.jones@linaro.org> |
| 2098 | S: Maintained |
| 2099 | F: drivers/video/backlight/ |
| 2100 | F: include/linux/backlight.h |
| 2101 | |
| 2102 | BATMAN ADVANCED |
| 2103 | M: Marek Lindner <mareklindner@neomailbox.ch> |
| 2104 | M: Simon Wunderlich <sw@simonwunderlich.de> |
| 2105 | M: Antonio Quartulli <antonio@meshcoding.com> |
| 2106 | L: b.a.t.m.a.n@lists.open-mesh.org |
| 2107 | W: http://www.open-mesh.org/ |
| 2108 | S: Maintained |
| 2109 | F: net/batman-adv/ |
| 2110 | |
| 2111 | BAYCOM/HDLCDRV DRIVERS FOR AX.25 |
| 2112 | M: Thomas Sailer <t.sailer@alumni.ethz.ch> |
| 2113 | L: linux-hams@vger.kernel.org |
| 2114 | W: http://www.baycom.org/~tom/ham/ham.html |
| 2115 | S: Maintained |
| 2116 | F: drivers/net/hamradio/baycom* |
| 2117 | |
| 2118 | BCACHE (BLOCK LAYER CACHE) |
| 2119 | M: Kent Overstreet <kent.overstreet@gmail.com> |
| 2120 | L: linux-bcache@vger.kernel.org |
| 2121 | W: http://bcache.evilpiepirate.org |
| 2122 | S: Maintained |
| 2123 | F: drivers/md/bcache/ |
| 2124 | |
| 2125 | BDISP ST MEDIA DRIVER |
| 2126 | M: Fabien Dessenne <fabien.dessenne@st.com> |
| 2127 | L: linux-media@vger.kernel.org |
| 2128 | T: git git://linuxtv.org/media_tree.git |
| 2129 | W: http://linuxtv.org |
| 2130 | S: Supported |
| 2131 | F: drivers/media/platform/sti/bdisp |
| 2132 | |
| 2133 | BEFS FILE SYSTEM |
| 2134 | S: Orphan |
| 2135 | F: Documentation/filesystems/befs.txt |
| 2136 | F: fs/befs/ |
| 2137 | |
| 2138 | BECKHOFF CX5020 ETHERCAT MASTER DRIVER |
| 2139 | M: Dariusz Marcinkiewicz <reksio@newterm.pl> |
| 2140 | L: netdev@vger.kernel.org |
| 2141 | S: Maintained |
| 2142 | F: drivers/net/ethernet/ec_bhf.c |
| 2143 | |
| 2144 | BFS FILE SYSTEM |
| 2145 | M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> |
| 2146 | S: Maintained |
| 2147 | F: Documentation/filesystems/bfs.txt |
| 2148 | F: fs/bfs/ |
| 2149 | F: include/uapi/linux/bfs_fs.h |
| 2150 | |
| 2151 | BLACKFIN ARCHITECTURE |
| 2152 | M: Steven Miao <realmz6@gmail.com> |
| 2153 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2154 | T: git git://git.code.sf.net/p/adi-linux/code |
| 2155 | W: http://blackfin.uclinux.org |
| 2156 | S: Supported |
| 2157 | F: arch/blackfin/ |
| 2158 | |
| 2159 | BLACKFIN EMAC DRIVER |
| 2160 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2161 | W: http://blackfin.uclinux.org |
| 2162 | S: Supported |
| 2163 | F: drivers/net/ethernet/adi/ |
| 2164 | |
| 2165 | BLACKFIN RTC DRIVER |
| 2166 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2167 | W: http://blackfin.uclinux.org |
| 2168 | S: Supported |
| 2169 | F: drivers/rtc/rtc-bfin.c |
| 2170 | |
| 2171 | BLACKFIN SDH DRIVER |
| 2172 | M: Sonic Zhang <sonic.zhang@analog.com> |
| 2173 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2174 | W: http://blackfin.uclinux.org |
| 2175 | S: Supported |
| 2176 | F: drivers/mmc/host/bfin_sdh.c |
| 2177 | |
| 2178 | BLACKFIN SERIAL DRIVER |
| 2179 | M: Sonic Zhang <sonic.zhang@analog.com> |
| 2180 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2181 | W: http://blackfin.uclinux.org |
| 2182 | S: Supported |
| 2183 | F: drivers/tty/serial/bfin_uart.c |
| 2184 | |
| 2185 | BLACKFIN WATCHDOG DRIVER |
| 2186 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2187 | W: http://blackfin.uclinux.org |
| 2188 | S: Supported |
| 2189 | F: drivers/watchdog/bfin_wdt.c |
| 2190 | |
| 2191 | BLACKFIN I2C TWI DRIVER |
| 2192 | M: Sonic Zhang <sonic.zhang@analog.com> |
| 2193 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2194 | W: http://blackfin.uclinux.org/ |
| 2195 | S: Supported |
| 2196 | F: drivers/i2c/busses/i2c-bfin-twi.c |
| 2197 | |
| 2198 | BLACKFIN MEDIA DRIVER |
| 2199 | M: Scott Jiang <scott.jiang.linux@gmail.com> |
| 2200 | L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 2201 | W: http://blackfin.uclinux.org/ |
| 2202 | S: Supported |
| 2203 | F: drivers/media/platform/blackfin/ |
| 2204 | F: drivers/media/i2c/adv7183* |
| 2205 | F: drivers/media/i2c/vs6624* |
| 2206 | |
| 2207 | BLINKM RGB LED DRIVER |
| 2208 | M: Jan-Simon Moeller <jansimon.moeller@gmx.de> |
| 2209 | S: Maintained |
| 2210 | F: drivers/leds/leds-blinkm.c |
| 2211 | |
| 2212 | BLOCK LAYER |
| 2213 | M: Jens Axboe <axboe@kernel.dk> |
| 2214 | L: linux-block@vger.kernel.org |
| 2215 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
| 2216 | S: Maintained |
| 2217 | F: block/ |
| 2218 | F: kernel/trace/blktrace.c |
| 2219 | |
| 2220 | BLOCK2MTD DRIVER |
| 2221 | M: Joern Engel <joern@lazybastard.org> |
| 2222 | L: linux-mtd@lists.infradead.org |
| 2223 | S: Maintained |
| 2224 | F: drivers/mtd/devices/block2mtd.c |
| 2225 | |
| 2226 | BLUETOOTH DRIVERS |
| 2227 | M: Marcel Holtmann <marcel@holtmann.org> |
| 2228 | M: Gustavo Padovan <gustavo@padovan.org> |
| 2229 | M: Johan Hedberg <johan.hedberg@gmail.com> |
| 2230 | L: linux-bluetooth@vger.kernel.org |
| 2231 | W: http://www.bluez.org/ |
| 2232 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 2233 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
| 2234 | S: Maintained |
| 2235 | F: drivers/bluetooth/ |
| 2236 | |
| 2237 | BLUETOOTH SUBSYSTEM |
| 2238 | M: Marcel Holtmann <marcel@holtmann.org> |
| 2239 | M: Gustavo Padovan <gustavo@padovan.org> |
| 2240 | M: Johan Hedberg <johan.hedberg@gmail.com> |
| 2241 | L: linux-bluetooth@vger.kernel.org |
| 2242 | W: http://www.bluez.org/ |
| 2243 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git |
| 2244 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git |
| 2245 | S: Maintained |
| 2246 | F: net/bluetooth/ |
| 2247 | F: include/net/bluetooth/ |
| 2248 | |
| 2249 | BONDING DRIVER |
| 2250 | M: Jay Vosburgh <j.vosburgh@gmail.com> |
| 2251 | M: Veaceslav Falico <vfalico@gmail.com> |
| 2252 | M: Andy Gospodarek <gospo@cumulusnetworks.com> |
| 2253 | L: netdev@vger.kernel.org |
| 2254 | W: http://sourceforge.net/projects/bonding/ |
| 2255 | S: Supported |
| 2256 | F: drivers/net/bonding/ |
| 2257 | F: include/uapi/linux/if_bonding.h |
| 2258 | |
| 2259 | BPF (Safe dynamic programs and tools) |
| 2260 | M: Alexei Starovoitov <ast@kernel.org> |
| 2261 | L: netdev@vger.kernel.org |
| 2262 | L: linux-kernel@vger.kernel.org |
| 2263 | S: Supported |
| 2264 | F: kernel/bpf/ |
| 2265 | |
| 2266 | BROADCOM B44 10/100 ETHERNET DRIVER |
| 2267 | M: Gary Zambrano <zambrano@broadcom.com> |
| 2268 | L: netdev@vger.kernel.org |
| 2269 | S: Supported |
| 2270 | F: drivers/net/ethernet/broadcom/b44.* |
| 2271 | |
| 2272 | BROADCOM GENET ETHERNET DRIVER |
| 2273 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2274 | L: netdev@vger.kernel.org |
| 2275 | S: Supported |
| 2276 | F: drivers/net/ethernet/broadcom/genet/ |
| 2277 | |
| 2278 | BROADCOM BNX2 GIGABIT ETHERNET DRIVER |
| 2279 | M: Sony Chacko <sony.chacko@qlogic.com> |
| 2280 | M: Dept-HSGLinuxNICDev@qlogic.com |
| 2281 | L: netdev@vger.kernel.org |
| 2282 | S: Supported |
| 2283 | F: drivers/net/ethernet/broadcom/bnx2.* |
| 2284 | F: drivers/net/ethernet/broadcom/bnx2_* |
| 2285 | |
| 2286 | BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER |
| 2287 | M: Ariel Elior <ariel.elior@qlogic.com> |
| 2288 | L: netdev@vger.kernel.org |
| 2289 | S: Supported |
| 2290 | F: drivers/net/ethernet/broadcom/bnx2x/ |
| 2291 | |
| 2292 | BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE |
| 2293 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2294 | M: Ray Jui <rjui@broadcom.com> |
| 2295 | M: Scott Branden <sbranden@broadcom.com> |
| 2296 | L: bcm-kernel-feedback-list@broadcom.com |
| 2297 | T: git git://github.com/broadcom/mach-bcm |
| 2298 | S: Maintained |
| 2299 | F: arch/arm/mach-bcm/ |
| 2300 | F: arch/arm/boot/dts/bcm113* |
| 2301 | F: arch/arm/boot/dts/bcm216* |
| 2302 | F: arch/arm/boot/dts/bcm281* |
| 2303 | F: arch/arm/configs/bcm_defconfig |
| 2304 | F: drivers/mmc/host/sdhci-bcm-kona.c |
| 2305 | F: drivers/clocksource/bcm_kona_timer.c |
| 2306 | |
| 2307 | BROADCOM BCM2835 ARM ARCHITECTURE |
| 2308 | M: Stephen Warren <swarren@wwwdotorg.org> |
| 2309 | M: Lee Jones <lee@kernel.org> |
| 2310 | M: Eric Anholt <eric@anholt.net> |
| 2311 | L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2312 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2313 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git |
| 2314 | S: Maintained |
| 2315 | N: bcm2835 |
| 2316 | |
| 2317 | BROADCOM BCM33XX MIPS ARCHITECTURE |
| 2318 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2319 | L: linux-mips@linux-mips.org |
| 2320 | S: Maintained |
| 2321 | F: arch/mips/bcm3384/* |
| 2322 | F: arch/mips/include/asm/mach-bcm3384/* |
| 2323 | F: arch/mips/kernel/*bmips* |
| 2324 | |
| 2325 | BROADCOM BCM47XX MIPS ARCHITECTURE |
| 2326 | M: Hauke Mehrtens <hauke@hauke-m.de> |
| 2327 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2328 | L: linux-mips@linux-mips.org |
| 2329 | S: Maintained |
| 2330 | F: arch/mips/bcm47xx/* |
| 2331 | F: arch/mips/include/asm/mach-bcm47xx/* |
| 2332 | |
| 2333 | BROADCOM BCM5301X ARM ARCHITECTURE |
| 2334 | M: Hauke Mehrtens <hauke@hauke-m.de> |
| 2335 | L: linux-arm-kernel@lists.infradead.org |
| 2336 | S: Maintained |
| 2337 | F: arch/arm/mach-bcm/bcm_5301x.c |
| 2338 | F: arch/arm/boot/dts/bcm5301x.dtsi |
| 2339 | F: arch/arm/boot/dts/bcm470* |
| 2340 | |
| 2341 | BROADCOM BCM63XX ARM ARCHITECTURE |
| 2342 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2343 | L: linux-arm-kernel@lists.infradead.org |
| 2344 | T: git git://github.com/broadcom/arm-bcm63xx.git |
| 2345 | S: Maintained |
| 2346 | F: arch/arm/mach-bcm/bcm63xx.c |
| 2347 | F: arch/arm/include/debug/bcm63xx.S |
| 2348 | |
| 2349 | BROADCOM BCM63XX/BCM33XX UDC DRIVER |
| 2350 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2351 | L: linux-usb@vger.kernel.org |
| 2352 | S: Maintained |
| 2353 | F: drivers/usb/gadget/udc/bcm63xx_udc.* |
| 2354 | |
| 2355 | BROADCOM BCM7XXX ARM ARCHITECTURE |
| 2356 | M: Brian Norris <computersforpeace@gmail.com> |
| 2357 | M: Gregory Fong <gregory.0xf0@gmail.com> |
| 2358 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2359 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2360 | T: git git://github.com/broadcom/stblinux.git |
| 2361 | S: Maintained |
| 2362 | F: arch/arm/mach-bcm/*brcmstb* |
| 2363 | F: arch/arm/boot/dts/bcm7*.dts* |
| 2364 | F: drivers/bus/brcmstb_gisb.c |
| 2365 | N: brcmstb |
| 2366 | |
| 2367 | BROADCOM BMIPS MIPS ARCHITECTURE |
| 2368 | M: Kevin Cernekee <cernekee@gmail.com> |
| 2369 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2370 | L: linux-mips@linux-mips.org |
| 2371 | T: git git://github.com/broadcom/stblinux.git |
| 2372 | S: Maintained |
| 2373 | F: arch/mips/bmips/* |
| 2374 | F: arch/mips/include/asm/mach-bmips/* |
| 2375 | F: arch/mips/kernel/*bmips* |
| 2376 | F: arch/mips/boot/dts/brcm/bcm*.dts* |
| 2377 | F: drivers/irqchip/irq-bcm7* |
| 2378 | F: drivers/irqchip/irq-brcmstb* |
| 2379 | |
| 2380 | BROADCOM TG3 GIGABIT ETHERNET DRIVER |
| 2381 | M: Prashant Sreedharan <prashant@broadcom.com> |
| 2382 | M: Michael Chan <mchan@broadcom.com> |
| 2383 | L: netdev@vger.kernel.org |
| 2384 | S: Supported |
| 2385 | F: drivers/net/ethernet/broadcom/tg3.* |
| 2386 | |
| 2387 | BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER |
| 2388 | M: Brett Rudley <brudley@broadcom.com> |
| 2389 | M: Arend van Spriel <arend@broadcom.com> |
| 2390 | M: Franky (Zhenhui) Lin <frankyl@broadcom.com> |
| 2391 | M: Hante Meuleman <meuleman@broadcom.com> |
| 2392 | L: linux-wireless@vger.kernel.org |
| 2393 | L: brcm80211-dev-list@broadcom.com |
| 2394 | S: Supported |
| 2395 | F: drivers/net/wireless/brcm80211/ |
| 2396 | |
| 2397 | BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER |
| 2398 | M: QLogic-Storage-Upstream@qlogic.com |
| 2399 | L: linux-scsi@vger.kernel.org |
| 2400 | S: Supported |
| 2401 | F: drivers/scsi/bnx2fc/ |
| 2402 | |
| 2403 | BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER |
| 2404 | M: QLogic-Storage-Upstream@qlogic.com |
| 2405 | L: linux-scsi@vger.kernel.org |
| 2406 | S: Supported |
| 2407 | F: drivers/scsi/bnx2i/ |
| 2408 | |
| 2409 | BROADCOM IPROC ARM ARCHITECTURE |
| 2410 | M: Ray Jui <rjui@broadcom.com> |
| 2411 | M: Scott Branden <sbranden@broadcom.com> |
| 2412 | M: Jon Mason <jonmason@broadcom.com> |
| 2413 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 2414 | L: bcm-kernel-feedback-list@broadcom.com |
| 2415 | T: git git://github.com/broadcom/cygnus-linux.git |
| 2416 | S: Maintained |
| 2417 | N: iproc |
| 2418 | N: cygnus |
| 2419 | N: nsp |
| 2420 | N: bcm9113* |
| 2421 | N: bcm9583* |
| 2422 | N: bcm9585* |
| 2423 | N: bcm9586* |
| 2424 | N: bcm988312 |
| 2425 | N: bcm113* |
| 2426 | N: bcm583* |
| 2427 | N: bcm585* |
| 2428 | N: bcm586* |
| 2429 | N: bcm88312 |
| 2430 | |
| 2431 | BROADCOM BRCMSTB GPIO DRIVER |
| 2432 | M: Gregory Fong <gregory.0xf0@gmail.com> |
| 2433 | L: bcm-kernel-feedback-list@broadcom.com> |
| 2434 | S: Supported |
| 2435 | F: drivers/gpio/gpio-brcmstb.c |
| 2436 | F: Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt |
| 2437 | |
| 2438 | BROADCOM KONA GPIO DRIVER |
| 2439 | M: Ray Jui <rjui@broadcom.com> |
| 2440 | L: bcm-kernel-feedback-list@broadcom.com |
| 2441 | S: Supported |
| 2442 | F: drivers/gpio/gpio-bcm-kona.c |
| 2443 | F: Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt |
| 2444 | |
| 2445 | BROADCOM NVRAM DRIVER |
| 2446 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2447 | L: linux-mips@linux-mips.org |
| 2448 | S: Maintained |
| 2449 | F: drivers/firmware/broadcom/* |
| 2450 | |
| 2451 | BROADCOM STB NAND FLASH DRIVER |
| 2452 | M: Brian Norris <computersforpeace@gmail.com> |
| 2453 | M: Kamal Dasu <kdasu.kdev@gmail.com> |
| 2454 | L: linux-mtd@lists.infradead.org |
| 2455 | L: bcm-kernel-feedback-list@broadcom.com |
| 2456 | S: Maintained |
| 2457 | F: drivers/mtd/nand/brcmnand/ |
| 2458 | |
| 2459 | BROADCOM SPECIFIC AMBA DRIVER (BCMA) |
| 2460 | M: Rafał Miłecki <zajec5@gmail.com> |
| 2461 | L: linux-wireless@vger.kernel.org |
| 2462 | S: Maintained |
| 2463 | F: drivers/bcma/ |
| 2464 | F: include/linux/bcma/ |
| 2465 | |
| 2466 | BROADCOM SYSTEMPORT ETHERNET DRIVER |
| 2467 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 2468 | L: netdev@vger.kernel.org |
| 2469 | S: Supported |
| 2470 | F: drivers/net/ethernet/broadcom/bcmsysport.* |
| 2471 | |
| 2472 | BROCADE BFA FC SCSI DRIVER |
| 2473 | M: Anil Gurumurthy <anil.gurumurthy@qlogic.com> |
| 2474 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> |
| 2475 | L: linux-scsi@vger.kernel.org |
| 2476 | S: Supported |
| 2477 | F: drivers/scsi/bfa/ |
| 2478 | |
| 2479 | BROCADE BNA 10 GIGABIT ETHERNET DRIVER |
| 2480 | M: Rasesh Mody <rasesh.mody@qlogic.com> |
| 2481 | L: netdev@vger.kernel.org |
| 2482 | S: Supported |
| 2483 | F: drivers/net/ethernet/brocade/bna/ |
| 2484 | |
| 2485 | BSG (block layer generic sg v4 driver) |
| 2486 | M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> |
| 2487 | L: linux-scsi@vger.kernel.org |
| 2488 | S: Supported |
| 2489 | F: block/bsg.c |
| 2490 | F: include/linux/bsg.h |
| 2491 | F: include/uapi/linux/bsg.h |
| 2492 | |
| 2493 | BT87X AUDIO DRIVER |
| 2494 | M: Clemens Ladisch <clemens@ladisch.de> |
| 2495 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2496 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 2497 | S: Maintained |
| 2498 | F: Documentation/sound/alsa/Bt87x.txt |
| 2499 | F: sound/pci/bt87x.c |
| 2500 | |
| 2501 | BT8XXGPIO DRIVER |
| 2502 | M: Michael Buesch <m@bues.ch> |
| 2503 | W: http://bu3sch.de/btgpio.php |
| 2504 | S: Maintained |
| 2505 | F: drivers/gpio/gpio-bt8xx.c |
| 2506 | |
| 2507 | BTRFS FILE SYSTEM |
| 2508 | M: Chris Mason <clm@fb.com> |
| 2509 | M: Josef Bacik <jbacik@fb.com> |
| 2510 | M: David Sterba <dsterba@suse.com> |
| 2511 | L: linux-btrfs@vger.kernel.org |
| 2512 | W: http://btrfs.wiki.kernel.org/ |
| 2513 | Q: http://patchwork.kernel.org/project/linux-btrfs/list/ |
| 2514 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git |
| 2515 | S: Maintained |
| 2516 | F: Documentation/filesystems/btrfs.txt |
| 2517 | F: fs/btrfs/ |
| 2518 | |
| 2519 | BTTV VIDEO4LINUX DRIVER |
| 2520 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 2521 | L: linux-media@vger.kernel.org |
| 2522 | W: http://linuxtv.org |
| 2523 | T: git git://linuxtv.org/media_tree.git |
| 2524 | S: Odd fixes |
| 2525 | F: Documentation/video4linux/bttv/ |
| 2526 | F: drivers/media/pci/bt8xx/bttv* |
| 2527 | |
| 2528 | BUSLOGIC SCSI DRIVER |
| 2529 | M: Khalid Aziz <khalid@gonehiking.org> |
| 2530 | L: linux-scsi@vger.kernel.org |
| 2531 | S: Maintained |
| 2532 | F: drivers/scsi/BusLogic.* |
| 2533 | F: drivers/scsi/FlashPoint.* |
| 2534 | |
| 2535 | C-MEDIA CMI8788 DRIVER |
| 2536 | M: Clemens Ladisch <clemens@ladisch.de> |
| 2537 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2538 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 2539 | S: Maintained |
| 2540 | F: sound/pci/oxygen/ |
| 2541 | |
| 2542 | C6X ARCHITECTURE |
| 2543 | M: Mark Salter <msalter@redhat.com> |
| 2544 | M: Aurelien Jacquiot <a-jacquiot@ti.com> |
| 2545 | L: linux-c6x-dev@linux-c6x.org |
| 2546 | W: http://www.linux-c6x.org/wiki/index.php/Main_Page |
| 2547 | S: Maintained |
| 2548 | F: arch/c6x/ |
| 2549 | |
| 2550 | CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS |
| 2551 | M: David Howells <dhowells@redhat.com> |
| 2552 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
| 2553 | S: Supported |
| 2554 | F: Documentation/filesystems/caching/cachefiles.txt |
| 2555 | F: fs/cachefiles/ |
| 2556 | |
| 2557 | CADET FM/AM RADIO RECEIVER DRIVER |
| 2558 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 2559 | L: linux-media@vger.kernel.org |
| 2560 | T: git git://linuxtv.org/media_tree.git |
| 2561 | W: http://linuxtv.org |
| 2562 | S: Maintained |
| 2563 | F: drivers/media/radio/radio-cadet* |
| 2564 | |
| 2565 | CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER |
| 2566 | M: Jonathan Corbet <corbet@lwn.net> |
| 2567 | L: linux-media@vger.kernel.org |
| 2568 | T: git git://linuxtv.org/media_tree.git |
| 2569 | S: Maintained |
| 2570 | F: Documentation/video4linux/cafe_ccic |
| 2571 | F: drivers/media/platform/marvell-ccic/ |
| 2572 | |
| 2573 | CAIF NETWORK LAYER |
| 2574 | M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
| 2575 | L: netdev@vger.kernel.org |
| 2576 | S: Supported |
| 2577 | F: Documentation/networking/caif/ |
| 2578 | F: drivers/net/caif/ |
| 2579 | F: include/uapi/linux/caif/ |
| 2580 | F: include/net/caif/ |
| 2581 | F: net/caif/ |
| 2582 | |
| 2583 | CALGARY x86-64 IOMMU |
| 2584 | M: Muli Ben-Yehuda <muli@il.ibm.com> |
| 2585 | M: "Jon D. Mason" <jdmason@kudzu.us> |
| 2586 | L: discuss@x86-64.org |
| 2587 | S: Maintained |
| 2588 | F: arch/x86/kernel/pci-calgary_64.c |
| 2589 | F: arch/x86/kernel/tce_64.c |
| 2590 | F: arch/x86/include/asm/calgary.h |
| 2591 | F: arch/x86/include/asm/tce.h |
| 2592 | |
| 2593 | CAN NETWORK LAYER |
| 2594 | M: Oliver Hartkopp <socketcan@hartkopp.net> |
| 2595 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
| 2596 | L: linux-can@vger.kernel.org |
| 2597 | W: https://github.com/linux-can |
| 2598 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
| 2599 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git |
| 2600 | S: Maintained |
| 2601 | F: Documentation/networking/can.txt |
| 2602 | F: net/can/ |
| 2603 | F: include/linux/can/core.h |
| 2604 | F: include/uapi/linux/can.h |
| 2605 | F: include/uapi/linux/can/bcm.h |
| 2606 | F: include/uapi/linux/can/raw.h |
| 2607 | F: include/uapi/linux/can/gw.h |
| 2608 | |
| 2609 | CAN NETWORK DRIVERS |
| 2610 | M: Wolfgang Grandegger <wg@grandegger.com> |
| 2611 | M: Marc Kleine-Budde <mkl@pengutronix.de> |
| 2612 | L: linux-can@vger.kernel.org |
| 2613 | W: https://github.com/linux-can |
| 2614 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git |
| 2615 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git |
| 2616 | S: Maintained |
| 2617 | F: drivers/net/can/ |
| 2618 | F: include/linux/can/dev.h |
| 2619 | F: include/linux/can/platform/ |
| 2620 | F: include/uapi/linux/can/error.h |
| 2621 | F: include/uapi/linux/can/netlink.h |
| 2622 | |
| 2623 | CAPABILITIES |
| 2624 | M: Serge Hallyn <serge.hallyn@canonical.com> |
| 2625 | L: linux-security-module@vger.kernel.org |
| 2626 | S: Supported |
| 2627 | F: include/linux/capability.h |
| 2628 | F: include/uapi/linux/capability.h |
| 2629 | F: security/commoncap.c |
| 2630 | F: kernel/capability.c |
| 2631 | |
| 2632 | CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER |
| 2633 | M: Kevin Tsai <ktsai@capellamicro.com> |
| 2634 | S: Maintained |
| 2635 | F: drivers/iio/light/cm* |
| 2636 | F: Documentation/devicetree/bindings/i2c/trivial-devices.txt |
| 2637 | |
| 2638 | CAVIUM LIQUIDIO NETWORK DRIVER |
| 2639 | M: Derek Chickles <derek.chickles@caviumnetworks.com> |
| 2640 | M: Satanand Burla <satananda.burla@caviumnetworks.com> |
| 2641 | M: Felix Manlunas <felix.manlunas@caviumnetworks.com> |
| 2642 | M: Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com> |
| 2643 | L: netdev@vger.kernel.org |
| 2644 | W: http://www.cavium.com |
| 2645 | S: Supported |
| 2646 | F: drivers/net/ethernet/cavium/liquidio/ |
| 2647 | |
| 2648 | CC2520 IEEE-802.15.4 RADIO DRIVER |
| 2649 | M: Varka Bhadram <varkabhadram@gmail.com> |
| 2650 | L: linux-wpan@vger.kernel.org |
| 2651 | S: Maintained |
| 2652 | F: drivers/net/ieee802154/cc2520.c |
| 2653 | F: include/linux/spi/cc2520.h |
| 2654 | F: Documentation/devicetree/bindings/net/ieee802154/cc2520.txt |
| 2655 | |
| 2656 | CELL BROADBAND ENGINE ARCHITECTURE |
| 2657 | M: Arnd Bergmann <arnd@arndb.de> |
| 2658 | L: linuxppc-dev@lists.ozlabs.org |
| 2659 | W: http://www.ibm.com/developerworks/power/cell/ |
| 2660 | S: Supported |
| 2661 | F: arch/powerpc/include/asm/cell*.h |
| 2662 | F: arch/powerpc/include/asm/spu*.h |
| 2663 | F: arch/powerpc/include/uapi/asm/spu*.h |
| 2664 | F: arch/powerpc/oprofile/*cell* |
| 2665 | F: arch/powerpc/platforms/cell/ |
| 2666 | |
| 2667 | CEPH COMMON CODE (LIBCEPH) |
| 2668 | M: Ilya Dryomov <idryomov@gmail.com> |
| 2669 | M: "Yan, Zheng" <zyan@redhat.com> |
| 2670 | M: Sage Weil <sage@redhat.com> |
| 2671 | L: ceph-devel@vger.kernel.org |
| 2672 | W: http://ceph.com/ |
| 2673 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
| 2674 | T: git git://github.com/ceph/ceph-client.git |
| 2675 | S: Supported |
| 2676 | F: net/ceph/ |
| 2677 | F: include/linux/ceph/ |
| 2678 | F: include/linux/crush/ |
| 2679 | |
| 2680 | CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH) |
| 2681 | M: "Yan, Zheng" <zyan@redhat.com> |
| 2682 | M: Sage Weil <sage@redhat.com> |
| 2683 | M: Ilya Dryomov <idryomov@gmail.com> |
| 2684 | L: ceph-devel@vger.kernel.org |
| 2685 | W: http://ceph.com/ |
| 2686 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
| 2687 | T: git git://github.com/ceph/ceph-client.git |
| 2688 | S: Supported |
| 2689 | F: Documentation/filesystems/ceph.txt |
| 2690 | F: fs/ceph/ |
| 2691 | |
| 2692 | CERTIFICATE HANDLING: |
| 2693 | M: David Howells <dhowells@redhat.com> |
| 2694 | M: David Woodhouse <dwmw2@infradead.org> |
| 2695 | L: keyrings@linux-nfs.org |
| 2696 | S: Maintained |
| 2697 | F: Documentation/module-signing.txt |
| 2698 | F: certs/ |
| 2699 | F: scripts/extract-cert.c |
| 2700 | |
| 2701 | CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: |
| 2702 | L: linux-usb@vger.kernel.org |
| 2703 | S: Orphan |
| 2704 | F: Documentation/usb/WUSB-Design-overview.txt |
| 2705 | F: Documentation/usb/wusb-cbaf |
| 2706 | F: drivers/usb/host/hwa-hc.c |
| 2707 | F: drivers/usb/host/whci/ |
| 2708 | F: drivers/usb/wusbcore/ |
| 2709 | F: include/linux/usb/wusb* |
| 2710 | |
| 2711 | CFAG12864B LCD DRIVER |
| 2712 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
| 2713 | W: http://miguelojeda.es/auxdisplay.htm |
| 2714 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
| 2715 | S: Maintained |
| 2716 | F: drivers/auxdisplay/cfag12864b.c |
| 2717 | F: include/linux/cfag12864b.h |
| 2718 | |
| 2719 | CFAG12864BFB LCD FRAMEBUFFER DRIVER |
| 2720 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
| 2721 | W: http://miguelojeda.es/auxdisplay.htm |
| 2722 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
| 2723 | S: Maintained |
| 2724 | F: drivers/auxdisplay/cfag12864bfb.c |
| 2725 | F: include/linux/cfag12864b.h |
| 2726 | |
| 2727 | CFG80211 and NL80211 |
| 2728 | M: Johannes Berg <johannes@sipsolutions.net> |
| 2729 | L: linux-wireless@vger.kernel.org |
| 2730 | W: http://wireless.kernel.org/ |
| 2731 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 2732 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
| 2733 | S: Maintained |
| 2734 | F: include/uapi/linux/nl80211.h |
| 2735 | F: include/net/cfg80211.h |
| 2736 | F: net/wireless/* |
| 2737 | X: net/wireless/wext* |
| 2738 | |
| 2739 | CHAR and MISC DRIVERS |
| 2740 | M: Arnd Bergmann <arnd@arndb.de> |
| 2741 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 2742 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
| 2743 | S: Supported |
| 2744 | F: drivers/char/* |
| 2745 | F: drivers/misc/* |
| 2746 | F: include/linux/miscdevice.h |
| 2747 | |
| 2748 | CHECKPATCH |
| 2749 | M: Andy Whitcroft <apw@canonical.com> |
| 2750 | M: Joe Perches <joe@perches.com> |
| 2751 | S: Maintained |
| 2752 | F: scripts/checkpatch.pl |
| 2753 | |
| 2754 | CHINESE DOCUMENTATION |
| 2755 | M: Harry Wei <harryxiyou@gmail.com> |
| 2756 | L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) |
| 2757 | L: linux-kernel@zh-kernel.org (moderated for non-subscribers) |
| 2758 | S: Maintained |
| 2759 | F: Documentation/zh_CN/ |
| 2760 | |
| 2761 | CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER |
| 2762 | M: Peter Chen <Peter.Chen@freescale.com> |
| 2763 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
| 2764 | L: linux-usb@vger.kernel.org |
| 2765 | S: Maintained |
| 2766 | F: drivers/usb/chipidea/ |
| 2767 | |
| 2768 | CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER |
| 2769 | M: Hans de Goede <hdegoede@redhat.com> |
| 2770 | L: linux-input@vger.kernel.org |
| 2771 | S: Maintained |
| 2772 | F: Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt |
| 2773 | F: drivers/input/touchscreen/chipone_icn8318.c |
| 2774 | |
| 2775 | CHROME HARDWARE PLATFORM SUPPORT |
| 2776 | M: Olof Johansson <olof@lixom.net> |
| 2777 | S: Maintained |
| 2778 | F: drivers/platform/chrome/ |
| 2779 | |
| 2780 | CISCO VIC ETHERNET NIC DRIVER |
| 2781 | M: Christian Benvenuti <benve@cisco.com> |
| 2782 | M: Sujith Sankar <ssujith@cisco.com> |
| 2783 | M: Govindarajulu Varadarajan <_govind@gmx.com> |
| 2784 | M: Neel Patel <neepatel@cisco.com> |
| 2785 | S: Supported |
| 2786 | F: drivers/net/ethernet/cisco/enic/ |
| 2787 | |
| 2788 | CISCO VIC LOW LATENCY NIC DRIVER |
| 2789 | M: Christian Benvenuti <benve@cisco.com> |
| 2790 | M: Dave Goodell <dgoodell@cisco.com> |
| 2791 | S: Supported |
| 2792 | F: drivers/infiniband/hw/usnic/ |
| 2793 | |
| 2794 | CIRRUS LOGIC EP93XX ETHERNET DRIVER |
| 2795 | M: Hartley Sweeten <hsweeten@visionengravers.com> |
| 2796 | L: netdev@vger.kernel.org |
| 2797 | S: Maintained |
| 2798 | F: drivers/net/ethernet/cirrus/ep93xx_eth.c |
| 2799 | |
| 2800 | CIRRUS LOGIC AUDIO CODEC DRIVERS |
| 2801 | M: Brian Austin <brian.austin@cirrus.com> |
| 2802 | M: Paul Handrigan <Paul.Handrigan@cirrus.com> |
| 2803 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 2804 | S: Maintained |
| 2805 | F: sound/soc/codecs/cs* |
| 2806 | |
| 2807 | CLEANCACHE API |
| 2808 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 2809 | L: linux-kernel@vger.kernel.org |
| 2810 | S: Maintained |
| 2811 | F: mm/cleancache.c |
| 2812 | F: include/linux/cleancache.h |
| 2813 | |
| 2814 | CLK API |
| 2815 | M: Russell King <linux@arm.linux.org.uk> |
| 2816 | L: linux-clk@vger.kernel.org |
| 2817 | S: Maintained |
| 2818 | F: include/linux/clk.h |
| 2819 | |
| 2820 | CLOCKSOURCE, CLOCKEVENT DRIVERS |
| 2821 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 2822 | M: Thomas Gleixner <tglx@linutronix.de> |
| 2823 | L: linux-kernel@vger.kernel.org |
| 2824 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
| 2825 | S: Supported |
| 2826 | F: drivers/clocksource |
| 2827 | |
| 2828 | CISCO FCOE HBA DRIVER |
| 2829 | M: Hiral Patel <hiralpat@cisco.com> |
| 2830 | M: Suma Ramars <sramars@cisco.com> |
| 2831 | M: Brian Uchino <buchino@cisco.com> |
| 2832 | L: linux-scsi@vger.kernel.org |
| 2833 | S: Supported |
| 2834 | F: drivers/scsi/fnic/ |
| 2835 | |
| 2836 | CISCO SCSI HBA DRIVER |
| 2837 | M: Narsimhulu Musini <nmusini@cisco.com> |
| 2838 | M: Sesidhar Baddela <sebaddel@cisco.com> |
| 2839 | L: linux-scsi@vger.kernel.org |
| 2840 | S: Supported |
| 2841 | F: drivers/scsi/snic/ |
| 2842 | |
| 2843 | CMPC ACPI DRIVER |
| 2844 | M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> |
| 2845 | M: Daniel Oliveira Nascimento <don@syst.com.br> |
| 2846 | L: platform-driver-x86@vger.kernel.org |
| 2847 | S: Supported |
| 2848 | F: drivers/platform/x86/classmate-laptop.c |
| 2849 | |
| 2850 | COBALT MEDIA DRIVER |
| 2851 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 2852 | L: linux-media@vger.kernel.org |
| 2853 | T: git git://linuxtv.org/media_tree.git |
| 2854 | W: http://linuxtv.org |
| 2855 | S: Supported |
| 2856 | F: drivers/media/pci/cobalt/ |
| 2857 | |
| 2858 | COCCINELLE/Semantic Patches (SmPL) |
| 2859 | M: Julia Lawall <Julia.Lawall@lip6.fr> |
| 2860 | M: Gilles Muller <Gilles.Muller@lip6.fr> |
| 2861 | M: Nicolas Palix <nicolas.palix@imag.fr> |
| 2862 | M: Michal Marek <mmarek@suse.com> |
| 2863 | L: cocci@systeme.lip6.fr (moderated for non-subscribers) |
| 2864 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc |
| 2865 | W: http://coccinelle.lip6.fr/ |
| 2866 | S: Supported |
| 2867 | F: Documentation/coccinelle.txt |
| 2868 | F: scripts/coccinelle/ |
| 2869 | F: scripts/coccicheck |
| 2870 | |
| 2871 | CODA FILE SYSTEM |
| 2872 | M: Jan Harkes <jaharkes@cs.cmu.edu> |
| 2873 | M: coda@cs.cmu.edu |
| 2874 | L: codalist@coda.cs.cmu.edu |
| 2875 | W: http://www.coda.cs.cmu.edu/ |
| 2876 | S: Maintained |
| 2877 | F: Documentation/filesystems/coda.txt |
| 2878 | F: fs/coda/ |
| 2879 | F: include/linux/coda*.h |
| 2880 | F: include/uapi/linux/coda*.h |
| 2881 | |
| 2882 | CODA V4L2 MEM2MEM DRIVER |
| 2883 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 2884 | L: linux-media@vger.kernel.org |
| 2885 | S: Maintained |
| 2886 | F: Documentation/devicetree/bindings/media/coda.txt |
| 2887 | F: drivers/media/platform/coda/ |
| 2888 | |
| 2889 | COMMON CLK FRAMEWORK |
| 2890 | M: Michael Turquette <mturquette@baylibre.com> |
| 2891 | M: Stephen Boyd <sboyd@codeaurora.org> |
| 2892 | L: linux-clk@vger.kernel.org |
| 2893 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git |
| 2894 | S: Maintained |
| 2895 | F: drivers/clk/ |
| 2896 | X: drivers/clk/clkdev.c |
| 2897 | F: include/linux/clk-pr* |
| 2898 | F: include/linux/clk/ |
| 2899 | |
| 2900 | COMMON INTERNET FILE SYSTEM (CIFS) |
| 2901 | M: Steve French <sfrench@samba.org> |
| 2902 | L: linux-cifs@vger.kernel.org |
| 2903 | L: samba-technical@lists.samba.org (moderated for non-subscribers) |
| 2904 | W: http://linux-cifs.samba.org/ |
| 2905 | T: git git://git.samba.org/sfrench/cifs-2.6.git |
| 2906 | S: Supported |
| 2907 | F: Documentation/filesystems/cifs/ |
| 2908 | F: fs/cifs/ |
| 2909 | |
| 2910 | COMPACTPCI HOTPLUG CORE |
| 2911 | M: Scott Murray <scott@spiteful.org> |
| 2912 | L: linux-pci@vger.kernel.org |
| 2913 | S: Maintained |
| 2914 | F: drivers/pci/hotplug/cpci_hotplug* |
| 2915 | |
| 2916 | COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER |
| 2917 | M: Scott Murray <scott@spiteful.org> |
| 2918 | L: linux-pci@vger.kernel.org |
| 2919 | S: Maintained |
| 2920 | F: drivers/pci/hotplug/cpcihp_zt5550.* |
| 2921 | |
| 2922 | COMPACTPCI HOTPLUG GENERIC DRIVER |
| 2923 | M: Scott Murray <scott@spiteful.org> |
| 2924 | L: linux-pci@vger.kernel.org |
| 2925 | S: Maintained |
| 2926 | F: drivers/pci/hotplug/cpcihp_generic.c |
| 2927 | |
| 2928 | COMPAL LAPTOP SUPPORT |
| 2929 | M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> |
| 2930 | L: platform-driver-x86@vger.kernel.org |
| 2931 | S: Maintained |
| 2932 | F: drivers/platform/x86/compal-laptop.c |
| 2933 | |
| 2934 | CONEXANT ACCESSRUNNER USB DRIVER |
| 2935 | L: accessrunner-general@lists.sourceforge.net |
| 2936 | W: http://accessrunner.sourceforge.net/ |
| 2937 | S: Orphan |
| 2938 | F: drivers/usb/atm/cxacru.c |
| 2939 | |
| 2940 | CONFIGFS |
| 2941 | M: Joel Becker <jlbec@evilplan.org> |
| 2942 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git |
| 2943 | S: Supported |
| 2944 | F: fs/configfs/ |
| 2945 | F: include/linux/configfs.h |
| 2946 | |
| 2947 | CONNECTOR |
| 2948 | M: Evgeniy Polyakov <zbr@ioremap.net> |
| 2949 | L: netdev@vger.kernel.org |
| 2950 | S: Maintained |
| 2951 | F: drivers/connector/ |
| 2952 | |
| 2953 | CONTROL GROUP (CGROUP) |
| 2954 | M: Tejun Heo <tj@kernel.org> |
| 2955 | M: Li Zefan <lizefan@huawei.com> |
| 2956 | M: Johannes Weiner <hannes@cmpxchg.org> |
| 2957 | L: cgroups@vger.kernel.org |
| 2958 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
| 2959 | S: Maintained |
| 2960 | F: Documentation/cgroups/ |
| 2961 | F: include/linux/cgroup* |
| 2962 | F: kernel/cgroup* |
| 2963 | |
| 2964 | CONTROL GROUP - CPUSET |
| 2965 | M: Li Zefan <lizefan@huawei.com> |
| 2966 | L: cgroups@vger.kernel.org |
| 2967 | W: http://www.bullopensource.org/cpuset/ |
| 2968 | W: http://oss.sgi.com/projects/cpusets/ |
| 2969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git |
| 2970 | S: Maintained |
| 2971 | F: Documentation/cgroups/cpusets.txt |
| 2972 | F: include/linux/cpuset.h |
| 2973 | F: kernel/cpuset.c |
| 2974 | |
| 2975 | CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG) |
| 2976 | M: Johannes Weiner <hannes@cmpxchg.org> |
| 2977 | M: Michal Hocko <mhocko@kernel.org> |
| 2978 | M: Vladimir Davydov <vdavydov@virtuozzo.com> |
| 2979 | L: cgroups@vger.kernel.org |
| 2980 | L: linux-mm@kvack.org |
| 2981 | S: Maintained |
| 2982 | F: mm/memcontrol.c |
| 2983 | F: mm/swap_cgroup.c |
| 2984 | |
| 2985 | CORETEMP HARDWARE MONITORING DRIVER |
| 2986 | M: Fenghua Yu <fenghua.yu@intel.com> |
| 2987 | L: linux-hwmon@vger.kernel.org |
| 2988 | S: Maintained |
| 2989 | F: Documentation/hwmon/coretemp |
| 2990 | F: drivers/hwmon/coretemp.c |
| 2991 | |
| 2992 | COSA/SRP SYNC SERIAL DRIVER |
| 2993 | M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> |
| 2994 | W: http://www.fi.muni.cz/~kas/cosa/ |
| 2995 | S: Maintained |
| 2996 | F: drivers/net/wan/cosa* |
| 2997 | |
| 2998 | CPMAC ETHERNET DRIVER |
| 2999 | M: Florian Fainelli <florian@openwrt.org> |
| 3000 | L: netdev@vger.kernel.org |
| 3001 | S: Maintained |
| 3002 | F: drivers/net/ethernet/ti/cpmac.c |
| 3003 | |
| 3004 | CPU FREQUENCY DRIVERS |
| 3005 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 3006 | M: Viresh Kumar <viresh.kumar@linaro.org> |
| 3007 | L: linux-pm@vger.kernel.org |
| 3008 | S: Maintained |
| 3009 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
| 3010 | T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates) |
| 3011 | F: drivers/cpufreq/ |
| 3012 | F: include/linux/cpufreq.h |
| 3013 | |
| 3014 | CPU FREQUENCY DRIVERS - ARM BIG LITTLE |
| 3015 | M: Viresh Kumar <viresh.kumar@linaro.org> |
| 3016 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 3017 | L: linux-pm@vger.kernel.org |
| 3018 | W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php |
| 3019 | S: Maintained |
| 3020 | F: drivers/cpufreq/arm_big_little.h |
| 3021 | F: drivers/cpufreq/arm_big_little.c |
| 3022 | F: drivers/cpufreq/arm_big_little_dt.c |
| 3023 | |
| 3024 | CPUIDLE DRIVER - ARM BIG LITTLE |
| 3025 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 3026 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3027 | L: linux-pm@vger.kernel.org |
| 3028 | L: linux-arm-kernel@lists.infradead.org |
| 3029 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
| 3030 | S: Maintained |
| 3031 | F: drivers/cpuidle/cpuidle-big_little.c |
| 3032 | |
| 3033 | CPUIDLE DRIVER - ARM EXYNOS |
| 3034 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
| 3035 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3036 | M: Kukjin Kim <kgene@kernel.org> |
| 3037 | L: linux-pm@vger.kernel.org |
| 3038 | L: linux-samsung-soc@vger.kernel.org |
| 3039 | S: Supported |
| 3040 | F: drivers/cpuidle/cpuidle-exynos.c |
| 3041 | F: arch/arm/mach-exynos/pm.c |
| 3042 | |
| 3043 | CPUIDLE DRIVERS |
| 3044 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 3045 | M: Daniel Lezcano <daniel.lezcano@linaro.org> |
| 3046 | L: linux-pm@vger.kernel.org |
| 3047 | S: Maintained |
| 3048 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git |
| 3049 | F: drivers/cpuidle/* |
| 3050 | F: include/linux/cpuidle.h |
| 3051 | |
| 3052 | CPUID/MSR DRIVER |
| 3053 | M: "H. Peter Anvin" <hpa@zytor.com> |
| 3054 | S: Maintained |
| 3055 | F: arch/x86/kernel/cpuid.c |
| 3056 | F: arch/x86/kernel/msr.c |
| 3057 | |
| 3058 | CPU POWER MONITORING SUBSYSTEM |
| 3059 | M: Thomas Renninger <trenn@suse.com> |
| 3060 | L: linux-pm@vger.kernel.org |
| 3061 | S: Maintained |
| 3062 | F: tools/power/cpupower/ |
| 3063 | |
| 3064 | CRAMFS FILESYSTEM |
| 3065 | W: http://sourceforge.net/projects/cramfs/ |
| 3066 | S: Orphan / Obsolete |
| 3067 | F: Documentation/filesystems/cramfs.txt |
| 3068 | F: fs/cramfs/ |
| 3069 | |
| 3070 | CRIS PORT |
| 3071 | M: Mikael Starvik <starvik@axis.com> |
| 3072 | M: Jesper Nilsson <jesper.nilsson@axis.com> |
| 3073 | L: linux-cris-kernel@axis.com |
| 3074 | W: http://developer.axis.com |
| 3075 | S: Maintained |
| 3076 | F: arch/cris/ |
| 3077 | F: drivers/tty/serial/crisv10.* |
| 3078 | |
| 3079 | CRYPTO API |
| 3080 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 3081 | M: "David S. Miller" <davem@davemloft.net> |
| 3082 | L: linux-crypto@vger.kernel.org |
| 3083 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git |
| 3084 | S: Maintained |
| 3085 | F: Documentation/crypto/ |
| 3086 | F: Documentation/DocBook/crypto-API.tmpl |
| 3087 | F: arch/*/crypto/ |
| 3088 | F: crypto/ |
| 3089 | F: drivers/crypto/ |
| 3090 | F: include/crypto/ |
| 3091 | |
| 3092 | CRYPTOGRAPHIC RANDOM NUMBER GENERATOR |
| 3093 | M: Neil Horman <nhorman@tuxdriver.com> |
| 3094 | L: linux-crypto@vger.kernel.org |
| 3095 | S: Maintained |
| 3096 | F: crypto/ansi_cprng.c |
| 3097 | F: crypto/rng.c |
| 3098 | |
| 3099 | CS5535 Audio ALSA driver |
| 3100 | M: Jaya Kumar <jayakumar.alsa@gmail.com> |
| 3101 | S: Maintained |
| 3102 | F: sound/pci/cs5535audio/ |
| 3103 | |
| 3104 | CW1200 WLAN driver |
| 3105 | M: Solomon Peachy <pizza@shaftnet.org> |
| 3106 | S: Maintained |
| 3107 | F: drivers/net/wireless/cw1200/ |
| 3108 | |
| 3109 | CX18 VIDEO4LINUX DRIVER |
| 3110 | M: Andy Walls <awalls@md.metrocast.net> |
| 3111 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
| 3112 | L: linux-media@vger.kernel.org |
| 3113 | T: git git://linuxtv.org/media_tree.git |
| 3114 | W: http://linuxtv.org |
| 3115 | W: http://www.ivtvdriver.org/index.php/Cx18 |
| 3116 | S: Maintained |
| 3117 | F: Documentation/video4linux/cx18.txt |
| 3118 | F: drivers/media/pci/cx18/ |
| 3119 | F: include/uapi/linux/ivtv* |
| 3120 | |
| 3121 | CX2341X MPEG ENCODER HELPER MODULE |
| 3122 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 3123 | L: linux-media@vger.kernel.org |
| 3124 | T: git git://linuxtv.org/media_tree.git |
| 3125 | W: http://linuxtv.org |
| 3126 | S: Maintained |
| 3127 | F: drivers/media/common/cx2341x* |
| 3128 | F: include/media/cx2341x* |
| 3129 | |
| 3130 | CX24120 MEDIA DRIVER |
| 3131 | M: Jemma Denson <jdenson@gmail.com> |
| 3132 | M: Patrick Boettcher <patrick.boettcher@posteo.de> |
| 3133 | L: linux-media@vger.kernel.org |
| 3134 | W: http://linuxtv.org/ |
| 3135 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3136 | S: Maintained |
| 3137 | F: drivers/media/dvb-frontends/cx24120* |
| 3138 | |
| 3139 | CX88 VIDEO4LINUX DRIVER |
| 3140 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 3141 | L: linux-media@vger.kernel.org |
| 3142 | W: http://linuxtv.org |
| 3143 | T: git git://linuxtv.org/media_tree.git |
| 3144 | S: Odd fixes |
| 3145 | F: Documentation/video4linux/cx88/ |
| 3146 | F: drivers/media/pci/cx88/ |
| 3147 | |
| 3148 | CXD2820R MEDIA DRIVER |
| 3149 | M: Antti Palosaari <crope@iki.fi> |
| 3150 | L: linux-media@vger.kernel.org |
| 3151 | W: http://linuxtv.org/ |
| 3152 | W: http://palosaari.fi/linux/ |
| 3153 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3154 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3155 | S: Maintained |
| 3156 | F: drivers/media/dvb-frontends/cxd2820r* |
| 3157 | |
| 3158 | CXGB3 ETHERNET DRIVER (CXGB3) |
| 3159 | M: Santosh Raspatur <santosh@chelsio.com> |
| 3160 | L: netdev@vger.kernel.org |
| 3161 | W: http://www.chelsio.com |
| 3162 | S: Supported |
| 3163 | F: drivers/net/ethernet/chelsio/cxgb3/ |
| 3164 | |
| 3165 | CXGB3 ISCSI DRIVER (CXGB3I) |
| 3166 | M: Karen Xie <kxie@chelsio.com> |
| 3167 | L: linux-scsi@vger.kernel.org |
| 3168 | W: http://www.chelsio.com |
| 3169 | S: Supported |
| 3170 | F: drivers/scsi/cxgbi/cxgb3i |
| 3171 | |
| 3172 | CXGB3 IWARP RNIC DRIVER (IW_CXGB3) |
| 3173 | M: Steve Wise <swise@chelsio.com> |
| 3174 | L: linux-rdma@vger.kernel.org |
| 3175 | W: http://www.openfabrics.org |
| 3176 | S: Supported |
| 3177 | F: drivers/infiniband/hw/cxgb3/ |
| 3178 | |
| 3179 | CXGB4 ETHERNET DRIVER (CXGB4) |
| 3180 | M: Hariprasad S <hariprasad@chelsio.com> |
| 3181 | L: netdev@vger.kernel.org |
| 3182 | W: http://www.chelsio.com |
| 3183 | S: Supported |
| 3184 | F: drivers/net/ethernet/chelsio/cxgb4/ |
| 3185 | |
| 3186 | CXGB4 ISCSI DRIVER (CXGB4I) |
| 3187 | M: Karen Xie <kxie@chelsio.com> |
| 3188 | L: linux-scsi@vger.kernel.org |
| 3189 | W: http://www.chelsio.com |
| 3190 | S: Supported |
| 3191 | F: drivers/scsi/cxgbi/cxgb4i |
| 3192 | |
| 3193 | CXGB4 IWARP RNIC DRIVER (IW_CXGB4) |
| 3194 | M: Steve Wise <swise@chelsio.com> |
| 3195 | L: linux-rdma@vger.kernel.org |
| 3196 | W: http://www.openfabrics.org |
| 3197 | S: Supported |
| 3198 | F: drivers/infiniband/hw/cxgb4/ |
| 3199 | |
| 3200 | CXGB4VF ETHERNET DRIVER (CXGB4VF) |
| 3201 | M: Casey Leedom <leedom@chelsio.com> |
| 3202 | L: netdev@vger.kernel.org |
| 3203 | W: http://www.chelsio.com |
| 3204 | S: Supported |
| 3205 | F: drivers/net/ethernet/chelsio/cxgb4vf/ |
| 3206 | |
| 3207 | CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER |
| 3208 | M: Ian Munsie <imunsie@au1.ibm.com> |
| 3209 | M: Michael Neuling <mikey@neuling.org> |
| 3210 | L: linuxppc-dev@lists.ozlabs.org |
| 3211 | S: Supported |
| 3212 | F: drivers/misc/cxl/ |
| 3213 | F: include/misc/cxl* |
| 3214 | F: include/uapi/misc/cxl.h |
| 3215 | F: Documentation/powerpc/cxl.txt |
| 3216 | F: Documentation/powerpc/cxl.txt |
| 3217 | F: Documentation/ABI/testing/sysfs-class-cxl |
| 3218 | |
| 3219 | CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER |
| 3220 | M: Manoj N. Kumar <manoj@linux.vnet.ibm.com> |
| 3221 | M: Matthew R. Ochs <mrochs@linux.vnet.ibm.com> |
| 3222 | L: linux-scsi@vger.kernel.org |
| 3223 | S: Supported |
| 3224 | F: drivers/scsi/cxlflash/ |
| 3225 | F: include/uapi/scsi/cxlflash_ioctls.h |
| 3226 | F: Documentation/powerpc/cxlflash.txt |
| 3227 | |
| 3228 | STMMAC ETHERNET DRIVER |
| 3229 | M: Giuseppe Cavallaro <peppe.cavallaro@st.com> |
| 3230 | L: netdev@vger.kernel.org |
| 3231 | W: http://www.stlinux.com |
| 3232 | S: Supported |
| 3233 | F: drivers/net/ethernet/stmicro/stmmac/ |
| 3234 | |
| 3235 | CYBERPRO FB DRIVER |
| 3236 | M: Russell King <linux@arm.linux.org.uk> |
| 3237 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 3238 | W: http://www.arm.linux.org.uk/ |
| 3239 | S: Maintained |
| 3240 | F: drivers/video/fbdev/cyber2000fb.* |
| 3241 | |
| 3242 | CYCLADES ASYNC MUX DRIVER |
| 3243 | W: http://www.cyclades.com/ |
| 3244 | S: Orphan |
| 3245 | F: drivers/tty/cyclades.c |
| 3246 | F: include/linux/cyclades.h |
| 3247 | F: include/uapi/linux/cyclades.h |
| 3248 | |
| 3249 | CYCLADES PC300 DRIVER |
| 3250 | W: http://www.cyclades.com/ |
| 3251 | S: Orphan |
| 3252 | F: drivers/net/wan/pc300* |
| 3253 | |
| 3254 | CYPRESS_FIRMWARE MEDIA DRIVER |
| 3255 | M: Antti Palosaari <crope@iki.fi> |
| 3256 | L: linux-media@vger.kernel.org |
| 3257 | W: http://linuxtv.org/ |
| 3258 | W: http://palosaari.fi/linux/ |
| 3259 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3260 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3261 | S: Maintained |
| 3262 | F: drivers/media/common/cypress_firmware* |
| 3263 | |
| 3264 | CYTTSP TOUCHSCREEN DRIVER |
| 3265 | M: Ferruh Yigit <fery@cypress.com> |
| 3266 | L: linux-input@vger.kernel.org |
| 3267 | S: Supported |
| 3268 | F: drivers/input/touchscreen/cyttsp* |
| 3269 | F: include/linux/input/cyttsp.h |
| 3270 | |
| 3271 | DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK |
| 3272 | M: Joshua Kinard <kumba@gentoo.org> |
| 3273 | S: Maintained |
| 3274 | F: drivers/rtc/rtc-ds1685.c |
| 3275 | F: include/linux/rtc/ds1685.h |
| 3276 | |
| 3277 | DAMA SLAVE for AX.25 |
| 3278 | M: Joerg Reuter <jreuter@yaina.de> |
| 3279 | W: http://yaina.de/jreuter/ |
| 3280 | W: http://www.qsl.net/dl1bke/ |
| 3281 | L: linux-hams@vger.kernel.org |
| 3282 | S: Maintained |
| 3283 | F: net/ax25/af_ax25.c |
| 3284 | F: net/ax25/ax25_dev.c |
| 3285 | F: net/ax25/ax25_ds_* |
| 3286 | F: net/ax25/ax25_in.c |
| 3287 | F: net/ax25/ax25_out.c |
| 3288 | F: net/ax25/ax25_timer.c |
| 3289 | F: net/ax25/sysctl_net_ax25.c |
| 3290 | |
| 3291 | DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER |
| 3292 | L: netdev@vger.kernel.org |
| 3293 | S: Orphan |
| 3294 | F: Documentation/networking/dmfe.txt |
| 3295 | F: drivers/net/ethernet/dec/tulip/dmfe.c |
| 3296 | |
| 3297 | DC390/AM53C974 SCSI driver |
| 3298 | M: Hannes Reinecke <hare@suse.com> |
| 3299 | L: linux-scsi@vger.kernel.org |
| 3300 | S: Maintained |
| 3301 | F: drivers/scsi/am53c974.c |
| 3302 | |
| 3303 | DC395x SCSI driver |
| 3304 | M: Oliver Neukum <oliver@neukum.org> |
| 3305 | M: Ali Akcaagac <aliakc@web.de> |
| 3306 | M: Jamie Lenehan <lenehan@twibble.org> |
| 3307 | L: dc395x@twibble.org |
| 3308 | W: http://twibble.org/dist/dc395x/ |
| 3309 | W: http://lists.twibble.org/mailman/listinfo/dc395x/ |
| 3310 | S: Maintained |
| 3311 | F: Documentation/scsi/dc395x.txt |
| 3312 | F: drivers/scsi/dc395x.* |
| 3313 | |
| 3314 | DCCP PROTOCOL |
| 3315 | M: Gerrit Renker <gerrit@erg.abdn.ac.uk> |
| 3316 | L: dccp@vger.kernel.org |
| 3317 | W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp |
| 3318 | S: Maintained |
| 3319 | F: include/linux/dccp.h |
| 3320 | F: include/uapi/linux/dccp.h |
| 3321 | F: include/linux/tfrc.h |
| 3322 | F: net/dccp/ |
| 3323 | |
| 3324 | DECnet NETWORK LAYER |
| 3325 | W: http://linux-decnet.sourceforge.net |
| 3326 | L: linux-decnet-user@lists.sourceforge.net |
| 3327 | S: Orphan |
| 3328 | F: Documentation/networking/decnet.txt |
| 3329 | F: net/decnet/ |
| 3330 | |
| 3331 | DECSTATION PLATFORM SUPPORT |
| 3332 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 3333 | L: linux-mips@linux-mips.org |
| 3334 | W: http://www.linux-mips.org/wiki/DECstation |
| 3335 | S: Maintained |
| 3336 | F: arch/mips/dec/ |
| 3337 | F: arch/mips/include/asm/dec/ |
| 3338 | F: arch/mips/include/asm/mach-dec/ |
| 3339 | |
| 3340 | DEFXX FDDI NETWORK DRIVER |
| 3341 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 3342 | S: Maintained |
| 3343 | F: drivers/net/fddi/defxx.* |
| 3344 | |
| 3345 | DELL LAPTOP DRIVER |
| 3346 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
| 3347 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
| 3348 | L: platform-driver-x86@vger.kernel.org |
| 3349 | S: Maintained |
| 3350 | F: drivers/platform/x86/dell-laptop.c |
| 3351 | |
| 3352 | DELL LAPTOP RBTN DRIVER |
| 3353 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
| 3354 | S: Maintained |
| 3355 | F: drivers/platform/x86/dell-rbtn.* |
| 3356 | |
| 3357 | DELL LAPTOP FREEFALL DRIVER |
| 3358 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
| 3359 | S: Maintained |
| 3360 | F: drivers/platform/x86/dell-smo8800.c |
| 3361 | |
| 3362 | DELL LAPTOP SMM DRIVER |
| 3363 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
| 3364 | S: Maintained |
| 3365 | F: drivers/hwmon/dell-smm-hwmon.c |
| 3366 | F: include/uapi/linux/i8k.h |
| 3367 | |
| 3368 | DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) |
| 3369 | M: Doug Warzecha <Douglas_Warzecha@dell.com> |
| 3370 | S: Maintained |
| 3371 | F: Documentation/dcdbas.txt |
| 3372 | F: drivers/firmware/dcdbas.* |
| 3373 | |
| 3374 | DELL WMI EXTRAS DRIVER |
| 3375 | M: Matthew Garrett <mjg59@srcf.ucam.org> |
| 3376 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
| 3377 | S: Maintained |
| 3378 | F: drivers/platform/x86/dell-wmi.c |
| 3379 | |
| 3380 | DESIGNWARE USB2 DRD IP DRIVER |
| 3381 | M: John Youn <johnyoun@synopsys.com> |
| 3382 | L: linux-usb@vger.kernel.org |
| 3383 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 3384 | S: Maintained |
| 3385 | F: drivers/usb/dwc2/ |
| 3386 | |
| 3387 | DESIGNWARE USB3 DRD IP DRIVER |
| 3388 | M: Felipe Balbi <balbi@ti.com> |
| 3389 | L: linux-usb@vger.kernel.org |
| 3390 | L: linux-omap@vger.kernel.org |
| 3391 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 3392 | S: Maintained |
| 3393 | F: drivers/usb/dwc3/ |
| 3394 | |
| 3395 | DEVICE COREDUMP (DEV_COREDUMP) |
| 3396 | M: Johannes Berg <johannes@sipsolutions.net> |
| 3397 | L: linux-kernel@vger.kernel.org |
| 3398 | S: Maintained |
| 3399 | F: drivers/base/devcoredump.c |
| 3400 | F: include/linux/devcoredump.h |
| 3401 | |
| 3402 | DEVICE FREQUENCY (DEVFREQ) |
| 3403 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 3404 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 3405 | L: linux-pm@vger.kernel.org |
| 3406 | S: Maintained |
| 3407 | F: drivers/devfreq/ |
| 3408 | |
| 3409 | DEVICE NUMBER REGISTRY |
| 3410 | M: Torben Mathiasen <device@lanana.org> |
| 3411 | W: http://lanana.org/docs/device-list/index.html |
| 3412 | S: Maintained |
| 3413 | |
| 3414 | DEVICE-MAPPER (LVM) |
| 3415 | M: Alasdair Kergon <agk@redhat.com> |
| 3416 | M: Mike Snitzer <snitzer@redhat.com> |
| 3417 | M: dm-devel@redhat.com |
| 3418 | L: dm-devel@redhat.com |
| 3419 | W: http://sources.redhat.com/dm |
| 3420 | Q: http://patchwork.kernel.org/project/dm-devel/list/ |
| 3421 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git |
| 3422 | T: quilt http://people.redhat.com/agk/patches/linux/editing/ |
| 3423 | S: Maintained |
| 3424 | F: Documentation/device-mapper/ |
| 3425 | F: drivers/md/dm* |
| 3426 | F: drivers/md/persistent-data/ |
| 3427 | F: include/linux/device-mapper.h |
| 3428 | F: include/linux/dm-*.h |
| 3429 | F: include/uapi/linux/dm-*.h |
| 3430 | |
| 3431 | DIALOG SEMICONDUCTOR DRIVERS |
| 3432 | M: Support Opensource <support.opensource@diasemi.com> |
| 3433 | W: http://www.dialog-semiconductor.com/products |
| 3434 | S: Supported |
| 3435 | F: Documentation/hwmon/da90?? |
| 3436 | F: Documentation/devicetree/bindings/sound/da[79]*.txt |
| 3437 | F: drivers/gpio/gpio-da90??.c |
| 3438 | F: drivers/hwmon/da90??-hwmon.c |
| 3439 | F: drivers/iio/adc/da91??-*.c |
| 3440 | F: drivers/input/misc/da90??_onkey.c |
| 3441 | F: drivers/input/touchscreen/da9052_tsi.c |
| 3442 | F: drivers/leds/leds-da90??.c |
| 3443 | F: drivers/mfd/da903x.c |
| 3444 | F: drivers/mfd/da90??-*.c |
| 3445 | F: drivers/mfd/da91??-*.c |
| 3446 | F: drivers/power/da9052-battery.c |
| 3447 | F: drivers/power/da91??-*.c |
| 3448 | F: drivers/regulator/da903x.c |
| 3449 | F: drivers/regulator/da9???-regulator.[ch] |
| 3450 | F: drivers/rtc/rtc-da90??.c |
| 3451 | F: drivers/video/backlight/da90??_bl.c |
| 3452 | F: drivers/watchdog/da90??_wdt.c |
| 3453 | F: include/linux/mfd/da903x.h |
| 3454 | F: include/linux/mfd/da9052/ |
| 3455 | F: include/linux/mfd/da9055/ |
| 3456 | F: include/linux/mfd/da9063/ |
| 3457 | F: include/linux/mfd/da9150/ |
| 3458 | F: include/sound/da[79]*.h |
| 3459 | F: sound/soc/codecs/da[79]*.[ch] |
| 3460 | |
| 3461 | DIGI NEO AND CLASSIC PCI PRODUCTS |
| 3462 | M: Lidza Louina <lidza.louina@gmail.com> |
| 3463 | M: Mark Hounschell <markh@compro.net> |
| 3464 | L: driverdev-devel@linuxdriverproject.org |
| 3465 | S: Maintained |
| 3466 | F: drivers/staging/dgnc/ |
| 3467 | |
| 3468 | DIGI EPCA PCI PRODUCTS |
| 3469 | M: Lidza Louina <lidza.louina@gmail.com> |
| 3470 | M: Daeseok Youn <daeseok.youn@gmail.com> |
| 3471 | L: driverdev-devel@linuxdriverproject.org |
| 3472 | S: Maintained |
| 3473 | F: drivers/staging/dgap/ |
| 3474 | |
| 3475 | DIOLAN U2C-12 I2C DRIVER |
| 3476 | M: Guenter Roeck <linux@roeck-us.net> |
| 3477 | L: linux-i2c@vger.kernel.org |
| 3478 | S: Maintained |
| 3479 | F: drivers/i2c/busses/i2c-diolan-u2c.c |
| 3480 | |
| 3481 | DIRECT ACCESS (DAX) |
| 3482 | M: Matthew Wilcox <willy@linux.intel.com> |
| 3483 | L: linux-fsdevel@vger.kernel.org |
| 3484 | S: Supported |
| 3485 | F: fs/dax.c |
| 3486 | |
| 3487 | DIRECTORY NOTIFICATION (DNOTIFY) |
| 3488 | M: Eric Paris <eparis@parisplace.org> |
| 3489 | S: Maintained |
| 3490 | F: Documentation/filesystems/dnotify.txt |
| 3491 | F: fs/notify/dnotify/ |
| 3492 | F: include/linux/dnotify.h |
| 3493 | |
| 3494 | DISK GEOMETRY AND PARTITION HANDLING |
| 3495 | M: Andries Brouwer <aeb@cwi.nl> |
| 3496 | W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html |
| 3497 | W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html |
| 3498 | W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html |
| 3499 | S: Maintained |
| 3500 | |
| 3501 | DISKQUOTA |
| 3502 | M: Jan Kara <jack@suse.com> |
| 3503 | S: Maintained |
| 3504 | F: Documentation/filesystems/quota.txt |
| 3505 | F: fs/quota/ |
| 3506 | F: include/linux/quota*.h |
| 3507 | F: include/uapi/linux/quota*.h |
| 3508 | |
| 3509 | DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) |
| 3510 | M: Bernie Thompson <bernie@plugable.com> |
| 3511 | L: linux-fbdev@vger.kernel.org |
| 3512 | S: Maintained |
| 3513 | W: http://plugable.com/category/projects/udlfb/ |
| 3514 | F: drivers/video/fbdev/udlfb.c |
| 3515 | F: include/video/udlfb.h |
| 3516 | F: Documentation/fb/udlfb.txt |
| 3517 | |
| 3518 | DISTRIBUTED LOCK MANAGER (DLM) |
| 3519 | M: Christine Caulfield <ccaulfie@redhat.com> |
| 3520 | M: David Teigland <teigland@redhat.com> |
| 3521 | L: cluster-devel@redhat.com |
| 3522 | W: http://sources.redhat.com/cluster/ |
| 3523 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git |
| 3524 | S: Supported |
| 3525 | F: fs/dlm/ |
| 3526 | |
| 3527 | DMA BUFFER SHARING FRAMEWORK |
| 3528 | M: Sumit Semwal <sumit.semwal@linaro.org> |
| 3529 | S: Maintained |
| 3530 | L: linux-media@vger.kernel.org |
| 3531 | L: dri-devel@lists.freedesktop.org |
| 3532 | L: linaro-mm-sig@lists.linaro.org (moderated for non-subscribers) |
| 3533 | F: drivers/dma-buf/ |
| 3534 | F: include/linux/dma-buf* |
| 3535 | F: include/linux/reservation.h |
| 3536 | F: include/linux/*fence.h |
| 3537 | F: Documentation/dma-buf-sharing.txt |
| 3538 | T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git |
| 3539 | |
| 3540 | DMA GENERIC OFFLOAD ENGINE SUBSYSTEM |
| 3541 | M: Vinod Koul <vinod.koul@intel.com> |
| 3542 | L: dmaengine@vger.kernel.org |
| 3543 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
| 3544 | S: Maintained |
| 3545 | F: drivers/dma/ |
| 3546 | F: include/linux/dmaengine.h |
| 3547 | F: Documentation/dmaengine/ |
| 3548 | T: git git://git.infradead.org/users/vkoul/slave-dma.git |
| 3549 | |
| 3550 | DME1737 HARDWARE MONITOR DRIVER |
| 3551 | M: Juerg Haefliger <juergh@gmail.com> |
| 3552 | L: linux-hwmon@vger.kernel.org |
| 3553 | S: Maintained |
| 3554 | F: Documentation/hwmon/dme1737 |
| 3555 | F: drivers/hwmon/dme1737.c |
| 3556 | |
| 3557 | DMI/SMBIOS SUPPORT |
| 3558 | M: Jean Delvare <jdelvare@suse.com> |
| 3559 | S: Maintained |
| 3560 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/ |
| 3561 | F: Documentation/ABI/testing/sysfs-firmware-dmi-tables |
| 3562 | F: drivers/firmware/dmi-id.c |
| 3563 | F: drivers/firmware/dmi_scan.c |
| 3564 | F: include/linux/dmi.h |
| 3565 | |
| 3566 | DOCUMENTATION |
| 3567 | M: Jonathan Corbet <corbet@lwn.net> |
| 3568 | L: linux-doc@vger.kernel.org |
| 3569 | S: Maintained |
| 3570 | F: Documentation/ |
| 3571 | F: scripts/docproc.c |
| 3572 | F: scripts/kernel-doc* |
| 3573 | X: Documentation/ABI/ |
| 3574 | X: Documentation/devicetree/ |
| 3575 | X: Documentation/acpi |
| 3576 | X: Documentation/power |
| 3577 | X: Documentation/spi |
| 3578 | X: Documentation/DocBook/media |
| 3579 | T: git git://git.lwn.net/linux.git docs-next |
| 3580 | |
| 3581 | DOUBLETALK DRIVER |
| 3582 | M: "James R. Van Zandt" <jrv@vanzandt.mv.com> |
| 3583 | L: blinux-list@redhat.com |
| 3584 | S: Maintained |
| 3585 | F: drivers/char/dtlk.c |
| 3586 | F: include/linux/dtlk.h |
| 3587 | |
| 3588 | DPT_I2O SCSI RAID DRIVER |
| 3589 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
| 3590 | L: linux-scsi@vger.kernel.org |
| 3591 | W: http://www.adaptec.com/ |
| 3592 | S: Maintained |
| 3593 | F: drivers/scsi/dpt* |
| 3594 | F: drivers/scsi/dpt/ |
| 3595 | |
| 3596 | DRBD DRIVER |
| 3597 | P: Philipp Reisner |
| 3598 | P: Lars Ellenberg |
| 3599 | M: drbd-dev@lists.linbit.com |
| 3600 | L: drbd-user@lists.linbit.com |
| 3601 | W: http://www.drbd.org |
| 3602 | T: git git://git.drbd.org/linux-2.6-drbd.git drbd |
| 3603 | T: git git://git.drbd.org/drbd-8.3.git |
| 3604 | S: Supported |
| 3605 | F: drivers/block/drbd/ |
| 3606 | F: lib/lru_cache.c |
| 3607 | F: Documentation/blockdev/drbd/ |
| 3608 | |
| 3609 | DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS |
| 3610 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 3611 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
| 3612 | S: Supported |
| 3613 | F: Documentation/kobject.txt |
| 3614 | F: drivers/base/ |
| 3615 | F: fs/debugfs/ |
| 3616 | F: fs/kernfs/ |
| 3617 | F: fs/sysfs/ |
| 3618 | F: include/linux/debugfs.h |
| 3619 | F: include/linux/kobj* |
| 3620 | F: lib/kobj* |
| 3621 | |
| 3622 | DRM DRIVERS |
| 3623 | M: David Airlie <airlied@linux.ie> |
| 3624 | L: dri-devel@lists.freedesktop.org |
| 3625 | T: git git://people.freedesktop.org/~airlied/linux |
| 3626 | S: Maintained |
| 3627 | F: drivers/gpu/drm/ |
| 3628 | F: drivers/gpu/vga/ |
| 3629 | F: include/drm/ |
| 3630 | F: include/uapi/drm/ |
| 3631 | |
| 3632 | RADEON DRM DRIVERS |
| 3633 | M: Alex Deucher <alexander.deucher@amd.com> |
| 3634 | M: Christian König <christian.koenig@amd.com> |
| 3635 | L: dri-devel@lists.freedesktop.org |
| 3636 | T: git git://people.freedesktop.org/~agd5f/linux |
| 3637 | S: Supported |
| 3638 | F: drivers/gpu/drm/radeon/ |
| 3639 | F: include/uapi/drm/radeon* |
| 3640 | |
| 3641 | DRM PANEL DRIVERS |
| 3642 | M: Thierry Reding <thierry.reding@gmail.com> |
| 3643 | L: dri-devel@lists.freedesktop.org |
| 3644 | T: git git://anongit.freedesktop.org/tegra/linux.git |
| 3645 | S: Maintained |
| 3646 | F: drivers/gpu/drm/drm_panel.c |
| 3647 | F: drivers/gpu/drm/panel/ |
| 3648 | F: include/drm/drm_panel.h |
| 3649 | F: Documentation/devicetree/bindings/display/panel/ |
| 3650 | |
| 3651 | INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) |
| 3652 | M: Daniel Vetter <daniel.vetter@intel.com> |
| 3653 | M: Jani Nikula <jani.nikula@linux.intel.com> |
| 3654 | L: intel-gfx@lists.freedesktop.org |
| 3655 | L: dri-devel@lists.freedesktop.org |
| 3656 | W: https://01.org/linuxgraphics/ |
| 3657 | Q: http://patchwork.freedesktop.org/project/intel-gfx/ |
| 3658 | T: git git://anongit.freedesktop.org/drm-intel |
| 3659 | S: Supported |
| 3660 | F: drivers/gpu/drm/i915/ |
| 3661 | F: include/drm/i915* |
| 3662 | F: include/uapi/drm/i915* |
| 3663 | |
| 3664 | DRM DRIVERS FOR ATMEL HLCDC |
| 3665 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 3666 | L: dri-devel@lists.freedesktop.org |
| 3667 | S: Supported |
| 3668 | F: drivers/gpu/drm/atmel-hlcdc/ |
| 3669 | F: Documentation/devicetree/bindings/drm/atmel/ |
| 3670 | |
| 3671 | DRM DRIVERS FOR EXYNOS |
| 3672 | M: Inki Dae <inki.dae@samsung.com> |
| 3673 | M: Joonyoung Shim <jy0922.shim@samsung.com> |
| 3674 | M: Seung-Woo Kim <sw0312.kim@samsung.com> |
| 3675 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 3676 | L: dri-devel@lists.freedesktop.org |
| 3677 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git |
| 3678 | S: Supported |
| 3679 | F: drivers/gpu/drm/exynos/ |
| 3680 | F: include/drm/exynos* |
| 3681 | F: include/uapi/drm/exynos* |
| 3682 | |
| 3683 | DRM DRIVERS FOR FREESCALE DCU |
| 3684 | M: Jianwei Wang <jianwei.wang.chn@gmail.com> |
| 3685 | M: Alison Wang <alison.wang@freescale.com> |
| 3686 | L: dri-devel@lists.freedesktop.org |
| 3687 | S: Supported |
| 3688 | F: drivers/gpu/drm/fsl-dcu/ |
| 3689 | F: Documentation/devicetree/bindings/display/fsl,dcu.txt |
| 3690 | F: Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt |
| 3691 | |
| 3692 | DRM DRIVERS FOR FREESCALE IMX |
| 3693 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 3694 | L: dri-devel@lists.freedesktop.org |
| 3695 | S: Maintained |
| 3696 | F: drivers/gpu/drm/imx/ |
| 3697 | F: drivers/gpu/ipu-v3/ |
| 3698 | F: Documentation/devicetree/bindings/display/imx/ |
| 3699 | |
| 3700 | DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets) |
| 3701 | M: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> |
| 3702 | L: dri-devel@lists.freedesktop.org |
| 3703 | T: git git://github.com/patjak/drm-gma500 |
| 3704 | S: Maintained |
| 3705 | F: drivers/gpu/drm/gma500 |
| 3706 | F: include/drm/gma500* |
| 3707 | |
| 3708 | DRM DRIVERS FOR NVIDIA TEGRA |
| 3709 | M: Thierry Reding <thierry.reding@gmail.com> |
| 3710 | M: Terje Bergström <tbergstrom@nvidia.com> |
| 3711 | L: dri-devel@lists.freedesktop.org |
| 3712 | L: linux-tegra@vger.kernel.org |
| 3713 | T: git git://anongit.freedesktop.org/tegra/linux.git |
| 3714 | S: Supported |
| 3715 | F: drivers/gpu/drm/tegra/ |
| 3716 | F: drivers/gpu/host1x/ |
| 3717 | F: include/linux/host1x.h |
| 3718 | F: include/uapi/drm/tegra_drm.h |
| 3719 | F: Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt |
| 3720 | |
| 3721 | DRM DRIVERS FOR RENESAS |
| 3722 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 3723 | L: dri-devel@lists.freedesktop.org |
| 3724 | L: linux-sh@vger.kernel.org |
| 3725 | T: git git://people.freedesktop.org/~airlied/linux |
| 3726 | S: Supported |
| 3727 | F: drivers/gpu/drm/rcar-du/ |
| 3728 | F: drivers/gpu/drm/shmobile/ |
| 3729 | F: include/linux/platform_data/shmob_drm.h |
| 3730 | |
| 3731 | DRM DRIVERS FOR ROCKCHIP |
| 3732 | M: Mark Yao <mark.yao@rock-chips.com> |
| 3733 | L: dri-devel@lists.freedesktop.org |
| 3734 | S: Maintained |
| 3735 | F: drivers/gpu/drm/rockchip/ |
| 3736 | F: Documentation/devicetree/bindings/display/rockchip* |
| 3737 | |
| 3738 | DRM DRIVERS FOR STI |
| 3739 | M: Benjamin Gaignard <benjamin.gaignard@linaro.org> |
| 3740 | M: Vincent Abriou <vincent.abriou@st.com> |
| 3741 | L: dri-devel@lists.freedesktop.org |
| 3742 | T: git http://git.linaro.org/people/benjamin.gaignard/kernel.git |
| 3743 | S: Maintained |
| 3744 | F: drivers/gpu/drm/sti |
| 3745 | F: Documentation/devicetree/bindings/display/st,stih4xx.txt |
| 3746 | |
| 3747 | DSBR100 USB FM RADIO DRIVER |
| 3748 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 3749 | L: linux-media@vger.kernel.org |
| 3750 | T: git git://linuxtv.org/media_tree.git |
| 3751 | S: Maintained |
| 3752 | F: drivers/media/radio/dsbr100.c |
| 3753 | |
| 3754 | DSCC4 DRIVER |
| 3755 | M: Francois Romieu <romieu@fr.zoreil.com> |
| 3756 | L: netdev@vger.kernel.org |
| 3757 | S: Maintained |
| 3758 | F: drivers/net/wan/dscc4.c |
| 3759 | |
| 3760 | DT3155 MEDIA DRIVER |
| 3761 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 3762 | L: linux-media@vger.kernel.org |
| 3763 | T: git git://linuxtv.org/media_tree.git |
| 3764 | W: http://linuxtv.org |
| 3765 | S: Odd Fixes |
| 3766 | F: drivers/media/pci/dt3155/ |
| 3767 | |
| 3768 | DVB_USB_AF9015 MEDIA DRIVER |
| 3769 | M: Antti Palosaari <crope@iki.fi> |
| 3770 | L: linux-media@vger.kernel.org |
| 3771 | W: http://linuxtv.org/ |
| 3772 | W: http://palosaari.fi/linux/ |
| 3773 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3774 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3775 | S: Maintained |
| 3776 | F: drivers/media/usb/dvb-usb-v2/af9015* |
| 3777 | |
| 3778 | DVB_USB_AF9035 MEDIA DRIVER |
| 3779 | M: Antti Palosaari <crope@iki.fi> |
| 3780 | L: linux-media@vger.kernel.org |
| 3781 | W: http://linuxtv.org/ |
| 3782 | W: http://palosaari.fi/linux/ |
| 3783 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3784 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3785 | S: Maintained |
| 3786 | F: drivers/media/usb/dvb-usb-v2/af9035* |
| 3787 | |
| 3788 | DVB_USB_ANYSEE MEDIA DRIVER |
| 3789 | M: Antti Palosaari <crope@iki.fi> |
| 3790 | L: linux-media@vger.kernel.org |
| 3791 | W: http://linuxtv.org/ |
| 3792 | W: http://palosaari.fi/linux/ |
| 3793 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3794 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3795 | S: Maintained |
| 3796 | F: drivers/media/usb/dvb-usb-v2/anysee* |
| 3797 | |
| 3798 | DVB_USB_AU6610 MEDIA DRIVER |
| 3799 | M: Antti Palosaari <crope@iki.fi> |
| 3800 | L: linux-media@vger.kernel.org |
| 3801 | W: http://linuxtv.org/ |
| 3802 | W: http://palosaari.fi/linux/ |
| 3803 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3804 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3805 | S: Maintained |
| 3806 | F: drivers/media/usb/dvb-usb-v2/au6610* |
| 3807 | |
| 3808 | DVB_USB_CE6230 MEDIA DRIVER |
| 3809 | M: Antti Palosaari <crope@iki.fi> |
| 3810 | L: linux-media@vger.kernel.org |
| 3811 | W: http://linuxtv.org/ |
| 3812 | W: http://palosaari.fi/linux/ |
| 3813 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3814 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3815 | S: Maintained |
| 3816 | F: drivers/media/usb/dvb-usb-v2/ce6230* |
| 3817 | |
| 3818 | DVB_USB_CXUSB MEDIA DRIVER |
| 3819 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 3820 | L: linux-media@vger.kernel.org |
| 3821 | W: http://linuxtv.org/ |
| 3822 | W: http://github.com/mkrufky |
| 3823 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3824 | T: git git://linuxtv.org/media_tree.git |
| 3825 | S: Maintained |
| 3826 | F: drivers/media/usb/dvb-usb/cxusb* |
| 3827 | |
| 3828 | DVB_USB_EC168 MEDIA DRIVER |
| 3829 | M: Antti Palosaari <crope@iki.fi> |
| 3830 | L: linux-media@vger.kernel.org |
| 3831 | W: http://linuxtv.org/ |
| 3832 | W: http://palosaari.fi/linux/ |
| 3833 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3834 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3835 | S: Maintained |
| 3836 | F: drivers/media/usb/dvb-usb-v2/ec168* |
| 3837 | |
| 3838 | DVB_USB_GL861 MEDIA DRIVER |
| 3839 | M: Antti Palosaari <crope@iki.fi> |
| 3840 | L: linux-media@vger.kernel.org |
| 3841 | W: http://linuxtv.org/ |
| 3842 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3843 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3844 | S: Maintained |
| 3845 | F: drivers/media/usb/dvb-usb-v2/gl861* |
| 3846 | |
| 3847 | DVB_USB_MXL111SF MEDIA DRIVER |
| 3848 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 3849 | L: linux-media@vger.kernel.org |
| 3850 | W: http://linuxtv.org/ |
| 3851 | W: http://github.com/mkrufky |
| 3852 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3853 | T: git git://linuxtv.org/mkrufky/mxl111sf.git |
| 3854 | S: Maintained |
| 3855 | F: drivers/media/usb/dvb-usb-v2/mxl111sf* |
| 3856 | |
| 3857 | DVB_USB_RTL28XXU MEDIA DRIVER |
| 3858 | M: Antti Palosaari <crope@iki.fi> |
| 3859 | L: linux-media@vger.kernel.org |
| 3860 | W: http://linuxtv.org/ |
| 3861 | W: http://palosaari.fi/linux/ |
| 3862 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3863 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3864 | S: Maintained |
| 3865 | F: drivers/media/usb/dvb-usb-v2/rtl28xxu* |
| 3866 | |
| 3867 | DVB_USB_V2 MEDIA DRIVER |
| 3868 | M: Antti Palosaari <crope@iki.fi> |
| 3869 | L: linux-media@vger.kernel.org |
| 3870 | W: http://linuxtv.org/ |
| 3871 | W: http://palosaari.fi/linux/ |
| 3872 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3873 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3874 | S: Maintained |
| 3875 | F: drivers/media/usb/dvb-usb-v2/dvb_usb* |
| 3876 | F: drivers/media/usb/dvb-usb-v2/usb_urb.c |
| 3877 | |
| 3878 | DYNAMIC DEBUG |
| 3879 | M: Jason Baron <jbaron@akamai.com> |
| 3880 | S: Maintained |
| 3881 | F: lib/dynamic_debug.c |
| 3882 | F: include/linux/dynamic_debug.h |
| 3883 | |
| 3884 | DZ DECSTATION DZ11 SERIAL DRIVER |
| 3885 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 3886 | S: Maintained |
| 3887 | F: drivers/tty/serial/dz.* |
| 3888 | |
| 3889 | E3X0 POWER BUTTON DRIVER |
| 3890 | M: Moritz Fischer <moritz.fischer@ettus.com> |
| 3891 | L: usrp-users@lists.ettus.com |
| 3892 | W: http://www.ettus.com |
| 3893 | S: Supported |
| 3894 | F: drivers/input/misc/e3x0-button.c |
| 3895 | F: Documentation/devicetree/bindings/input/e3x0-button.txt |
| 3896 | |
| 3897 | E4000 MEDIA DRIVER |
| 3898 | M: Antti Palosaari <crope@iki.fi> |
| 3899 | L: linux-media@vger.kernel.org |
| 3900 | W: http://linuxtv.org/ |
| 3901 | W: http://palosaari.fi/linux/ |
| 3902 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3903 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3904 | S: Maintained |
| 3905 | F: drivers/media/tuners/e4000* |
| 3906 | |
| 3907 | EATA ISA/EISA/PCI SCSI DRIVER |
| 3908 | M: Dario Ballabio <ballabio_dario@emc.com> |
| 3909 | L: linux-scsi@vger.kernel.org |
| 3910 | S: Maintained |
| 3911 | F: drivers/scsi/eata.c |
| 3912 | |
| 3913 | EC100 MEDIA DRIVER |
| 3914 | M: Antti Palosaari <crope@iki.fi> |
| 3915 | L: linux-media@vger.kernel.org |
| 3916 | W: http://linuxtv.org/ |
| 3917 | W: http://palosaari.fi/linux/ |
| 3918 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 3919 | T: git git://linuxtv.org/anttip/media_tree.git |
| 3920 | S: Maintained |
| 3921 | F: drivers/media/dvb-frontends/ec100* |
| 3922 | |
| 3923 | ECRYPT FILE SYSTEM |
| 3924 | M: Tyler Hicks <tyhicks@canonical.com> |
| 3925 | L: ecryptfs@vger.kernel.org |
| 3926 | W: http://ecryptfs.org |
| 3927 | W: https://launchpad.net/ecryptfs |
| 3928 | S: Supported |
| 3929 | F: Documentation/filesystems/ecryptfs.txt |
| 3930 | F: fs/ecryptfs/ |
| 3931 | |
| 3932 | EDAC-CORE |
| 3933 | M: Doug Thompson <dougthompson@xmission.com> |
| 3934 | M: Borislav Petkov <bp@alien8.de> |
| 3935 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 3936 | L: linux-edac@vger.kernel.org |
| 3937 | W: bluesmoke.sourceforge.net |
| 3938 | T: git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git#for-next |
| 3939 | T: git://git.kernel.org/pub/linux/kernel/git/mchehab/linux-edac.git#linux_next |
| 3940 | S: Supported |
| 3941 | F: Documentation/edac.txt |
| 3942 | F: drivers/edac/ |
| 3943 | F: include/linux/edac.h |
| 3944 | |
| 3945 | EDAC-AMD64 |
| 3946 | M: Doug Thompson <dougthompson@xmission.com> |
| 3947 | M: Borislav Petkov <bp@alien8.de> |
| 3948 | L: linux-edac@vger.kernel.org |
| 3949 | W: bluesmoke.sourceforge.net |
| 3950 | S: Maintained |
| 3951 | F: drivers/edac/amd64_edac* |
| 3952 | |
| 3953 | EDAC-CALXEDA |
| 3954 | M: Doug Thompson <dougthompson@xmission.com> |
| 3955 | M: Robert Richter <rric@kernel.org> |
| 3956 | L: linux-edac@vger.kernel.org |
| 3957 | W: bluesmoke.sourceforge.net |
| 3958 | S: Maintained |
| 3959 | F: drivers/edac/highbank* |
| 3960 | |
| 3961 | EDAC-CAVIUM |
| 3962 | M: Ralf Baechle <ralf@linux-mips.org> |
| 3963 | M: David Daney <david.daney@cavium.com> |
| 3964 | L: linux-edac@vger.kernel.org |
| 3965 | L: linux-mips@linux-mips.org |
| 3966 | W: bluesmoke.sourceforge.net |
| 3967 | S: Supported |
| 3968 | F: drivers/edac/octeon_edac* |
| 3969 | |
| 3970 | EDAC-E752X |
| 3971 | M: Mark Gross <mark.gross@intel.com> |
| 3972 | M: Doug Thompson <dougthompson@xmission.com> |
| 3973 | L: linux-edac@vger.kernel.org |
| 3974 | W: bluesmoke.sourceforge.net |
| 3975 | S: Maintained |
| 3976 | F: drivers/edac/e752x_edac.c |
| 3977 | |
| 3978 | EDAC-E7XXX |
| 3979 | M: Doug Thompson <dougthompson@xmission.com> |
| 3980 | L: linux-edac@vger.kernel.org |
| 3981 | W: bluesmoke.sourceforge.net |
| 3982 | S: Maintained |
| 3983 | F: drivers/edac/e7xxx_edac.c |
| 3984 | |
| 3985 | EDAC-GHES |
| 3986 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 3987 | L: linux-edac@vger.kernel.org |
| 3988 | W: bluesmoke.sourceforge.net |
| 3989 | S: Maintained |
| 3990 | F: drivers/edac/ghes_edac.c |
| 3991 | |
| 3992 | EDAC-I82443BXGX |
| 3993 | M: Tim Small <tim@buttersideup.com> |
| 3994 | L: linux-edac@vger.kernel.org |
| 3995 | W: bluesmoke.sourceforge.net |
| 3996 | S: Maintained |
| 3997 | F: drivers/edac/i82443bxgx_edac.c |
| 3998 | |
| 3999 | EDAC-I3000 |
| 4000 | M: Jason Uhlenkott <juhlenko@akamai.com> |
| 4001 | L: linux-edac@vger.kernel.org |
| 4002 | W: bluesmoke.sourceforge.net |
| 4003 | S: Maintained |
| 4004 | F: drivers/edac/i3000_edac.c |
| 4005 | |
| 4006 | EDAC-I5000 |
| 4007 | M: Doug Thompson <dougthompson@xmission.com> |
| 4008 | L: linux-edac@vger.kernel.org |
| 4009 | W: bluesmoke.sourceforge.net |
| 4010 | S: Maintained |
| 4011 | F: drivers/edac/i5000_edac.c |
| 4012 | |
| 4013 | EDAC-I5400 |
| 4014 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 4015 | L: linux-edac@vger.kernel.org |
| 4016 | W: bluesmoke.sourceforge.net |
| 4017 | S: Maintained |
| 4018 | F: drivers/edac/i5400_edac.c |
| 4019 | |
| 4020 | EDAC-I7300 |
| 4021 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 4022 | L: linux-edac@vger.kernel.org |
| 4023 | W: bluesmoke.sourceforge.net |
| 4024 | S: Maintained |
| 4025 | F: drivers/edac/i7300_edac.c |
| 4026 | |
| 4027 | EDAC-I7CORE |
| 4028 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 4029 | L: linux-edac@vger.kernel.org |
| 4030 | W: bluesmoke.sourceforge.net |
| 4031 | S: Maintained |
| 4032 | F: drivers/edac/i7core_edac.c |
| 4033 | |
| 4034 | EDAC-I82975X |
| 4035 | M: Ranganathan Desikan <ravi@jetztechnologies.com> |
| 4036 | M: "Arvind R." <arvino55@gmail.com> |
| 4037 | L: linux-edac@vger.kernel.org |
| 4038 | W: bluesmoke.sourceforge.net |
| 4039 | S: Maintained |
| 4040 | F: drivers/edac/i82975x_edac.c |
| 4041 | |
| 4042 | EDAC-IE31200 |
| 4043 | M: Jason Baron <jbaron@akamai.com> |
| 4044 | L: linux-edac@vger.kernel.org |
| 4045 | W: bluesmoke.sourceforge.net |
| 4046 | S: Maintained |
| 4047 | F: drivers/edac/ie31200_edac.c |
| 4048 | |
| 4049 | EDAC-MPC85XX |
| 4050 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
| 4051 | L: linux-edac@vger.kernel.org |
| 4052 | W: bluesmoke.sourceforge.net |
| 4053 | S: Maintained |
| 4054 | F: drivers/edac/mpc85xx_edac.[ch] |
| 4055 | |
| 4056 | EDAC-PASEMI |
| 4057 | M: Egor Martovetsky <egor@pasemi.com> |
| 4058 | L: linux-edac@vger.kernel.org |
| 4059 | W: bluesmoke.sourceforge.net |
| 4060 | S: Maintained |
| 4061 | F: drivers/edac/pasemi_edac.c |
| 4062 | |
| 4063 | EDAC-R82600 |
| 4064 | M: Tim Small <tim@buttersideup.com> |
| 4065 | L: linux-edac@vger.kernel.org |
| 4066 | W: bluesmoke.sourceforge.net |
| 4067 | S: Maintained |
| 4068 | F: drivers/edac/r82600_edac.c |
| 4069 | |
| 4070 | EDAC-SBRIDGE |
| 4071 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 4072 | L: linux-edac@vger.kernel.org |
| 4073 | W: bluesmoke.sourceforge.net |
| 4074 | S: Maintained |
| 4075 | F: drivers/edac/sb_edac.c |
| 4076 | |
| 4077 | EDAC-XGENE |
| 4078 | APPLIED MICRO (APM) X-GENE SOC EDAC |
| 4079 | M: Loc Ho <lho@apm.com> |
| 4080 | S: Supported |
| 4081 | F: drivers/edac/xgene_edac.c |
| 4082 | F: Documentation/devicetree/bindings/edac/apm-xgene-edac.txt |
| 4083 | |
| 4084 | EDIROL UA-101/UA-1000 DRIVER |
| 4085 | M: Clemens Ladisch <clemens@ladisch.de> |
| 4086 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 4087 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 4088 | S: Maintained |
| 4089 | F: sound/usb/misc/ua101.c |
| 4090 | |
| 4091 | EXTENSIBLE FIRMWARE INTERFACE (EFI) |
| 4092 | M: Matt Fleming <matt@codeblueprint.co.uk> |
| 4093 | L: linux-efi@vger.kernel.org |
| 4094 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
| 4095 | S: Maintained |
| 4096 | F: Documentation/efi-stub.txt |
| 4097 | F: arch/ia64/kernel/efi.c |
| 4098 | F: arch/x86/boot/compressed/eboot.[ch] |
| 4099 | F: arch/x86/include/asm/efi.h |
| 4100 | F: arch/x86/platform/efi/ |
| 4101 | F: drivers/firmware/efi/ |
| 4102 | F: include/linux/efi*.h |
| 4103 | |
| 4104 | EFI VARIABLE FILESYSTEM |
| 4105 | M: Matthew Garrett <matthew.garrett@nebula.com> |
| 4106 | M: Jeremy Kerr <jk@ozlabs.org> |
| 4107 | M: Matt Fleming <matt@codeblueprint.co.uk> |
| 4108 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git |
| 4109 | L: linux-efi@vger.kernel.org |
| 4110 | S: Maintained |
| 4111 | F: fs/efivarfs/ |
| 4112 | |
| 4113 | EFIFB FRAMEBUFFER DRIVER |
| 4114 | L: linux-fbdev@vger.kernel.org |
| 4115 | M: Peter Jones <pjones@redhat.com> |
| 4116 | S: Maintained |
| 4117 | F: drivers/video/fbdev/efifb.c |
| 4118 | |
| 4119 | EFS FILESYSTEM |
| 4120 | W: http://aeschi.ch.eu.org/efs/ |
| 4121 | S: Orphan |
| 4122 | F: fs/efs/ |
| 4123 | |
| 4124 | EHCA (IBM GX bus InfiniBand adapter) DRIVER |
| 4125 | M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> |
| 4126 | M: Christoph Raisch <raisch@de.ibm.com> |
| 4127 | L: linux-rdma@vger.kernel.org |
| 4128 | S: Supported |
| 4129 | F: drivers/infiniband/hw/ehca/ |
| 4130 | |
| 4131 | EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER |
| 4132 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
| 4133 | L: netdev@vger.kernel.org |
| 4134 | S: Maintained |
| 4135 | F: drivers/net/ethernet/ibm/ehea/ |
| 4136 | |
| 4137 | EM28XX VIDEO4LINUX DRIVER |
| 4138 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 4139 | L: linux-media@vger.kernel.org |
| 4140 | W: http://linuxtv.org |
| 4141 | T: git git://linuxtv.org/media_tree.git |
| 4142 | S: Maintained |
| 4143 | F: drivers/media/usb/em28xx/ |
| 4144 | |
| 4145 | EMBEDDED LINUX |
| 4146 | M: Paul Gortmaker <paul.gortmaker@windriver.com> |
| 4147 | M: Matt Mackall <mpm@selenic.com> |
| 4148 | M: David Woodhouse <dwmw2@infradead.org> |
| 4149 | L: linux-embedded@vger.kernel.org |
| 4150 | S: Maintained |
| 4151 | |
| 4152 | EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER |
| 4153 | M: James Smart <james.smart@avagotech.com> |
| 4154 | M: Dick Kennedy <dick.kennedy@avagotech.com> |
| 4155 | L: linux-scsi@vger.kernel.org |
| 4156 | W: http://www.avagotech.com |
| 4157 | S: Supported |
| 4158 | F: drivers/scsi/lpfc/ |
| 4159 | |
| 4160 | ENE CB710 FLASH CARD READER DRIVER |
| 4161 | M: Michał Mirosław <mirq-linux@rere.qmqm.pl> |
| 4162 | S: Maintained |
| 4163 | F: drivers/misc/cb710/ |
| 4164 | F: drivers/mmc/host/cb710-mmc.* |
| 4165 | F: include/linux/cb710.h |
| 4166 | |
| 4167 | ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER |
| 4168 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 4169 | S: Maintained |
| 4170 | F: drivers/media/rc/ene_ir.* |
| 4171 | |
| 4172 | ENHANCED ERROR HANDLING (EEH) |
| 4173 | M: Gavin Shan <shangw@linux.vnet.ibm.com> |
| 4174 | L: linuxppc-dev@lists.ozlabs.org |
| 4175 | S: Supported |
| 4176 | F: Documentation/powerpc/eeh-pci-error-recovery.txt |
| 4177 | F: arch/powerpc/kernel/eeh*.c |
| 4178 | |
| 4179 | EPSON S1D13XXX FRAMEBUFFER DRIVER |
| 4180 | M: Kristoffer Ericson <kristoffer.ericson@gmail.com> |
| 4181 | S: Maintained |
| 4182 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git |
| 4183 | F: drivers/video/fbdev/s1d13xxxfb.c |
| 4184 | F: include/video/s1d13xxxfb.h |
| 4185 | |
| 4186 | ET131X NETWORK DRIVER |
| 4187 | M: Mark Einon <mark.einon@gmail.com> |
| 4188 | S: Odd Fixes |
| 4189 | F: drivers/net/ethernet/agere/ |
| 4190 | |
| 4191 | ETHERNET BRIDGE |
| 4192 | M: Stephen Hemminger <stephen@networkplumber.org> |
| 4193 | L: bridge@lists.linux-foundation.org |
| 4194 | L: netdev@vger.kernel.org |
| 4195 | W: http://www.linuxfoundation.org/en/Net:Bridge |
| 4196 | S: Maintained |
| 4197 | F: include/linux/netfilter_bridge/ |
| 4198 | F: net/bridge/ |
| 4199 | |
| 4200 | ETHERNET PHY LIBRARY |
| 4201 | M: Florian Fainelli <f.fainelli@gmail.com> |
| 4202 | L: netdev@vger.kernel.org |
| 4203 | S: Maintained |
| 4204 | F: include/linux/phy.h |
| 4205 | F: include/linux/phy_fixed.h |
| 4206 | F: drivers/net/phy/ |
| 4207 | F: Documentation/networking/phy.txt |
| 4208 | F: drivers/of/of_mdio.c |
| 4209 | F: drivers/of/of_net.c |
| 4210 | |
| 4211 | EXT2 FILE SYSTEM |
| 4212 | M: Jan Kara <jack@suse.com> |
| 4213 | L: linux-ext4@vger.kernel.org |
| 4214 | S: Maintained |
| 4215 | F: Documentation/filesystems/ext2.txt |
| 4216 | F: fs/ext2/ |
| 4217 | F: include/linux/ext2* |
| 4218 | |
| 4219 | EXT4 FILE SYSTEM |
| 4220 | M: "Theodore Ts'o" <tytso@mit.edu> |
| 4221 | M: Andreas Dilger <adilger.kernel@dilger.ca> |
| 4222 | L: linux-ext4@vger.kernel.org |
| 4223 | W: http://ext4.wiki.kernel.org |
| 4224 | Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ |
| 4225 | S: Maintained |
| 4226 | F: Documentation/filesystems/ext4.txt |
| 4227 | F: fs/ext4/ |
| 4228 | |
| 4229 | Extended Verification Module (EVM) |
| 4230 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 4231 | L: linux-ima-devel@lists.sourceforge.net |
| 4232 | L: linux-security-module@vger.kernel.org |
| 4233 | S: Supported |
| 4234 | F: security/integrity/evm/ |
| 4235 | |
| 4236 | EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) |
| 4237 | M: MyungJoo Ham <myungjoo.ham@samsung.com> |
| 4238 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 4239 | L: linux-kernel@vger.kernel.org |
| 4240 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git |
| 4241 | S: Maintained |
| 4242 | F: drivers/extcon/ |
| 4243 | F: include/linux/extcon/ |
| 4244 | F: include/linux/extcon.h |
| 4245 | F: Documentation/extcon/ |
| 4246 | F: Documentation/devicetree/bindings/extcon/ |
| 4247 | |
| 4248 | EXYNOS DP DRIVER |
| 4249 | M: Jingoo Han <jingoohan1@gmail.com> |
| 4250 | L: dri-devel@lists.freedesktop.org |
| 4251 | S: Maintained |
| 4252 | F: drivers/gpu/drm/exynos/exynos_dp* |
| 4253 | |
| 4254 | EXYNOS MIPI DISPLAY DRIVERS |
| 4255 | M: Inki Dae <inki.dae@samsung.com> |
| 4256 | M: Donghwa Lee <dh09.lee@samsung.com> |
| 4257 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 4258 | L: linux-fbdev@vger.kernel.org |
| 4259 | S: Maintained |
| 4260 | F: drivers/video/fbdev/exynos/exynos_mipi* |
| 4261 | F: include/video/exynos_mipi* |
| 4262 | |
| 4263 | F71805F HARDWARE MONITORING DRIVER |
| 4264 | M: Jean Delvare <jdelvare@suse.com> |
| 4265 | L: linux-hwmon@vger.kernel.org |
| 4266 | S: Maintained |
| 4267 | F: Documentation/hwmon/f71805f |
| 4268 | F: drivers/hwmon/f71805f.c |
| 4269 | |
| 4270 | FC0011 TUNER DRIVER |
| 4271 | M: Michael Buesch <m@bues.ch> |
| 4272 | L: linux-media@vger.kernel.org |
| 4273 | S: Maintained |
| 4274 | F: drivers/media/tuners/fc0011.h |
| 4275 | F: drivers/media/tuners/fc0011.c |
| 4276 | |
| 4277 | FC2580 MEDIA DRIVER |
| 4278 | M: Antti Palosaari <crope@iki.fi> |
| 4279 | L: linux-media@vger.kernel.org |
| 4280 | W: http://linuxtv.org/ |
| 4281 | W: http://palosaari.fi/linux/ |
| 4282 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4283 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4284 | S: Maintained |
| 4285 | F: drivers/media/tuners/fc2580* |
| 4286 | |
| 4287 | FANOTIFY |
| 4288 | M: Eric Paris <eparis@redhat.com> |
| 4289 | S: Maintained |
| 4290 | F: fs/notify/fanotify/ |
| 4291 | F: include/linux/fanotify.h |
| 4292 | F: include/uapi/linux/fanotify.h |
| 4293 | |
| 4294 | FARSYNC SYNCHRONOUS DRIVER |
| 4295 | M: Kevin Curtis <kevin.curtis@farsite.co.uk> |
| 4296 | W: http://www.farsite.co.uk/ |
| 4297 | S: Supported |
| 4298 | F: drivers/net/wan/farsync.* |
| 4299 | |
| 4300 | FAULT INJECTION SUPPORT |
| 4301 | M: Akinobu Mita <akinobu.mita@gmail.com> |
| 4302 | S: Supported |
| 4303 | F: Documentation/fault-injection/ |
| 4304 | F: lib/fault-inject.c |
| 4305 | |
| 4306 | FBTFT Framebuffer drivers |
| 4307 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 4308 | M: Noralf Trønnes <noralf@tronnes.org> |
| 4309 | S: Maintained |
| 4310 | F: drivers/staging/fbtft/ |
| 4311 | |
| 4312 | FCOE SUBSYSTEM (libfc, libfcoe, fcoe) |
| 4313 | M: Vasu Dev <vasu.dev@intel.com> |
| 4314 | L: fcoe-devel@open-fcoe.org |
| 4315 | W: www.Open-FCoE.org |
| 4316 | S: Supported |
| 4317 | F: drivers/scsi/libfc/ |
| 4318 | F: drivers/scsi/fcoe/ |
| 4319 | F: include/scsi/fc/ |
| 4320 | F: include/scsi/libfc.h |
| 4321 | F: include/scsi/libfcoe.h |
| 4322 | F: include/uapi/scsi/fc/ |
| 4323 | |
| 4324 | FILE LOCKING (flock() and fcntl()/lockf()) |
| 4325 | M: Jeff Layton <jlayton@poochiereds.net> |
| 4326 | M: "J. Bruce Fields" <bfields@fieldses.org> |
| 4327 | L: linux-fsdevel@vger.kernel.org |
| 4328 | S: Maintained |
| 4329 | F: include/linux/fcntl.h |
| 4330 | F: include/linux/fs.h |
| 4331 | F: include/uapi/linux/fcntl.h |
| 4332 | F: include/uapi/linux/fs.h |
| 4333 | F: fs/fcntl.c |
| 4334 | F: fs/locks.c |
| 4335 | |
| 4336 | FILESYSTEMS (VFS and infrastructure) |
| 4337 | M: Alexander Viro <viro@zeniv.linux.org.uk> |
| 4338 | L: linux-fsdevel@vger.kernel.org |
| 4339 | S: Maintained |
| 4340 | F: fs/* |
| 4341 | |
| 4342 | FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 4343 | M: Riku Voipio <riku.voipio@iki.fi> |
| 4344 | L: linux-hwmon@vger.kernel.org |
| 4345 | S: Maintained |
| 4346 | F: drivers/hwmon/f75375s.c |
| 4347 | F: include/linux/f75375s.h |
| 4348 | |
| 4349 | FIREWIRE AUDIO DRIVERS |
| 4350 | M: Clemens Ladisch <clemens@ladisch.de> |
| 4351 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 4352 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 4353 | S: Maintained |
| 4354 | F: sound/firewire/ |
| 4355 | |
| 4356 | FIREWIRE MEDIA DRIVERS (firedtv) |
| 4357 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
| 4358 | L: linux-media@vger.kernel.org |
| 4359 | L: linux1394-devel@lists.sourceforge.net |
| 4360 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git |
| 4361 | S: Maintained |
| 4362 | F: drivers/media/firewire/ |
| 4363 | |
| 4364 | FIREWIRE SBP-2 TARGET |
| 4365 | M: Chris Boot <bootc@bootc.net> |
| 4366 | L: linux-scsi@vger.kernel.org |
| 4367 | L: target-devel@vger.kernel.org |
| 4368 | L: linux1394-devel@lists.sourceforge.net |
| 4369 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master |
| 4370 | S: Maintained |
| 4371 | F: drivers/target/sbp/ |
| 4372 | |
| 4373 | FIREWIRE SUBSYSTEM |
| 4374 | M: Stefan Richter <stefanr@s5r6.in-berlin.de> |
| 4375 | L: linux1394-devel@lists.sourceforge.net |
| 4376 | W: http://ieee1394.wiki.kernel.org/ |
| 4377 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git |
| 4378 | S: Maintained |
| 4379 | F: drivers/firewire/ |
| 4380 | F: include/linux/firewire.h |
| 4381 | F: include/uapi/linux/firewire*.h |
| 4382 | F: tools/firewire/ |
| 4383 | |
| 4384 | FIRMWARE LOADER (request_firmware) |
| 4385 | M: Ming Lei <ming.lei@canonical.com> |
| 4386 | L: linux-kernel@vger.kernel.org |
| 4387 | S: Maintained |
| 4388 | F: Documentation/firmware_class/ |
| 4389 | F: drivers/base/firmware*.c |
| 4390 | F: include/linux/firmware.h |
| 4391 | |
| 4392 | FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card) |
| 4393 | M: Joshua Morris <josh.h.morris@us.ibm.com> |
| 4394 | M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> |
| 4395 | S: Maintained |
| 4396 | F: drivers/block/rsxx/ |
| 4397 | |
| 4398 | FLOPPY DRIVER |
| 4399 | M: Jiri Kosina <jikos@kernel.org> |
| 4400 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git |
| 4401 | S: Odd fixes |
| 4402 | F: drivers/block/floppy.c |
| 4403 | |
| 4404 | FMC SUBSYSTEM |
| 4405 | M: Alessandro Rubini <rubini@gnudd.com> |
| 4406 | W: http://www.ohwr.org/projects/fmc-bus |
| 4407 | S: Supported |
| 4408 | F: drivers/fmc/ |
| 4409 | F: include/linux/fmc*.h |
| 4410 | F: include/linux/ipmi-fru.h |
| 4411 | K: fmc_d.*register |
| 4412 | |
| 4413 | FPGA MANAGER FRAMEWORK |
| 4414 | M: Alan Tull <atull@opensource.altera.com> |
| 4415 | R: Moritz Fischer <moritz.fischer@ettus.com> |
| 4416 | S: Maintained |
| 4417 | F: drivers/fpga/ |
| 4418 | F: include/linux/fpga/fpga-mgr.h |
| 4419 | W: http://www.rocketboards.org |
| 4420 | |
| 4421 | FPU EMULATOR |
| 4422 | M: Bill Metzenthen <billm@melbpc.org.au> |
| 4423 | W: http://floatingpoint.sourceforge.net/emulator/index.html |
| 4424 | S: Maintained |
| 4425 | F: arch/x86/math-emu/ |
| 4426 | |
| 4427 | FRAME RELAY DLCI/FRAD (Sangoma drivers too) |
| 4428 | L: netdev@vger.kernel.org |
| 4429 | S: Orphan |
| 4430 | F: drivers/net/wan/dlci.c |
| 4431 | F: drivers/net/wan/sdla.c |
| 4432 | |
| 4433 | FRAMEBUFFER LAYER |
| 4434 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
| 4435 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
| 4436 | L: linux-fbdev@vger.kernel.org |
| 4437 | W: http://linux-fbdev.sourceforge.net/ |
| 4438 | Q: http://patchwork.kernel.org/project/linux-fbdev/list/ |
| 4439 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git |
| 4440 | S: Maintained |
| 4441 | F: Documentation/fb/ |
| 4442 | F: drivers/video/ |
| 4443 | F: include/video/ |
| 4444 | F: include/linux/fb.h |
| 4445 | F: include/uapi/video/ |
| 4446 | F: include/uapi/linux/fb.h |
| 4447 | |
| 4448 | FREESCALE DIU FRAMEBUFFER DRIVER |
| 4449 | M: Timur Tabi <timur@tabi.org> |
| 4450 | L: linux-fbdev@vger.kernel.org |
| 4451 | S: Maintained |
| 4452 | F: drivers/video/fbdev/fsl-diu-fb.* |
| 4453 | |
| 4454 | FREESCALE DMA DRIVER |
| 4455 | M: Li Yang <leoli@freescale.com> |
| 4456 | M: Zhang Wei <zw@zh-kernel.org> |
| 4457 | L: linuxppc-dev@lists.ozlabs.org |
| 4458 | S: Maintained |
| 4459 | F: drivers/dma/fsldma.* |
| 4460 | |
| 4461 | FREESCALE I2C CPM DRIVER |
| 4462 | M: Jochen Friedrich <jochen@scram.de> |
| 4463 | L: linuxppc-dev@lists.ozlabs.org |
| 4464 | L: linux-i2c@vger.kernel.org |
| 4465 | S: Maintained |
| 4466 | F: drivers/i2c/busses/i2c-cpm.c |
| 4467 | |
| 4468 | FREESCALE IMX / MXC FRAMEBUFFER DRIVER |
| 4469 | M: Sascha Hauer <kernel@pengutronix.de> |
| 4470 | L: linux-fbdev@vger.kernel.org |
| 4471 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 4472 | S: Maintained |
| 4473 | F: include/linux/platform_data/video-imxfb.h |
| 4474 | F: drivers/video/fbdev/imxfb.c |
| 4475 | |
| 4476 | FREESCALE QUAD SPI DRIVER |
| 4477 | M: Han Xu <han.xu@freescale.com> |
| 4478 | L: linux-mtd@lists.infradead.org |
| 4479 | S: Maintained |
| 4480 | F: drivers/mtd/spi-nor/fsl-quadspi.c |
| 4481 | |
| 4482 | FREESCALE SOC FS_ENET DRIVER |
| 4483 | M: Pantelis Antoniou <pantelis.antoniou@gmail.com> |
| 4484 | M: Vitaly Bordug <vbordug@ru.mvista.com> |
| 4485 | L: linuxppc-dev@lists.ozlabs.org |
| 4486 | L: netdev@vger.kernel.org |
| 4487 | S: Maintained |
| 4488 | F: drivers/net/ethernet/freescale/fs_enet/ |
| 4489 | F: include/linux/fs_enet_pd.h |
| 4490 | |
| 4491 | FREESCALE QUICC ENGINE LIBRARY |
| 4492 | L: linuxppc-dev@lists.ozlabs.org |
| 4493 | S: Orphan |
| 4494 | F: arch/powerpc/sysdev/qe_lib/ |
| 4495 | F: arch/powerpc/include/asm/*qe.h |
| 4496 | |
| 4497 | FREESCALE USB PERIPHERAL DRIVERS |
| 4498 | M: Li Yang <leoli@freescale.com> |
| 4499 | L: linux-usb@vger.kernel.org |
| 4500 | L: linuxppc-dev@lists.ozlabs.org |
| 4501 | S: Maintained |
| 4502 | F: drivers/usb/gadget/udc/fsl* |
| 4503 | |
| 4504 | FREESCALE QUICC ENGINE UCC ETHERNET DRIVER |
| 4505 | M: Li Yang <leoli@freescale.com> |
| 4506 | L: netdev@vger.kernel.org |
| 4507 | L: linuxppc-dev@lists.ozlabs.org |
| 4508 | S: Maintained |
| 4509 | F: drivers/net/ethernet/freescale/ucc_geth* |
| 4510 | |
| 4511 | FREESCALE eTSEC ETHERNET DRIVER (GIANFAR) |
| 4512 | M: Claudiu Manoil <claudiu.manoil@freescale.com> |
| 4513 | L: netdev@vger.kernel.org |
| 4514 | S: Maintained |
| 4515 | F: drivers/net/ethernet/freescale/gianfar* |
| 4516 | X: drivers/net/ethernet/freescale/gianfar_ptp.c |
| 4517 | F: Documentation/devicetree/bindings/net/fsl-tsec-phy.txt |
| 4518 | |
| 4519 | FREESCALE QUICC ENGINE UCC UART DRIVER |
| 4520 | M: Timur Tabi <timur@tabi.org> |
| 4521 | L: linuxppc-dev@lists.ozlabs.org |
| 4522 | S: Maintained |
| 4523 | F: drivers/tty/serial/ucc_uart.c |
| 4524 | |
| 4525 | FREESCALE SOC SOUND DRIVERS |
| 4526 | M: Timur Tabi <timur@tabi.org> |
| 4527 | M: Nicolin Chen <nicoleotsuka@gmail.com> |
| 4528 | M: Xiubo Li <Xiubo.Lee@gmail.com> |
| 4529 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 4530 | L: linuxppc-dev@lists.ozlabs.org |
| 4531 | S: Maintained |
| 4532 | F: sound/soc/fsl/fsl* |
| 4533 | F: sound/soc/fsl/imx* |
| 4534 | F: sound/soc/fsl/mpc8610_hpcd.c |
| 4535 | |
| 4536 | FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER |
| 4537 | M: "J. German Rivera" <German.Rivera@freescale.com> |
| 4538 | L: linux-kernel@vger.kernel.org |
| 4539 | S: Maintained |
| 4540 | F: drivers/staging/fsl-mc/ |
| 4541 | |
| 4542 | FREEVXFS FILESYSTEM |
| 4543 | M: Christoph Hellwig <hch@infradead.org> |
| 4544 | W: ftp://ftp.openlinux.org/pub/people/hch/vxfs |
| 4545 | S: Maintained |
| 4546 | F: fs/freevxfs/ |
| 4547 | |
| 4548 | FREEZER |
| 4549 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 4550 | M: Pavel Machek <pavel@ucw.cz> |
| 4551 | L: linux-pm@vger.kernel.org |
| 4552 | S: Supported |
| 4553 | F: Documentation/power/freezing-of-tasks.txt |
| 4554 | F: include/linux/freezer.h |
| 4555 | F: kernel/freezer.c |
| 4556 | |
| 4557 | FRONTSWAP API |
| 4558 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 4559 | L: linux-kernel@vger.kernel.org |
| 4560 | S: Maintained |
| 4561 | F: mm/frontswap.c |
| 4562 | F: include/linux/frontswap.h |
| 4563 | |
| 4564 | FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS |
| 4565 | M: David Howells <dhowells@redhat.com> |
| 4566 | L: linux-cachefs@redhat.com (moderated for non-subscribers) |
| 4567 | S: Supported |
| 4568 | F: Documentation/filesystems/caching/ |
| 4569 | F: fs/fscache/ |
| 4570 | F: include/linux/fscache*.h |
| 4571 | |
| 4572 | F2FS FILE SYSTEM |
| 4573 | M: Jaegeuk Kim <jaegeuk@kernel.org> |
| 4574 | M: Changman Lee <cm224.lee@samsung.com> |
| 4575 | R: Chao Yu <chao2.yu@samsung.com> |
| 4576 | L: linux-f2fs-devel@lists.sourceforge.net |
| 4577 | W: http://en.wikipedia.org/wiki/F2FS |
| 4578 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git |
| 4579 | S: Maintained |
| 4580 | F: Documentation/filesystems/f2fs.txt |
| 4581 | F: Documentation/ABI/testing/sysfs-fs-f2fs |
| 4582 | F: fs/f2fs/ |
| 4583 | F: include/linux/f2fs_fs.h |
| 4584 | F: include/trace/events/f2fs.h |
| 4585 | |
| 4586 | FUJITSU FR-V (FRV) PORT |
| 4587 | M: David Howells <dhowells@redhat.com> |
| 4588 | S: Maintained |
| 4589 | F: arch/frv/ |
| 4590 | |
| 4591 | FUJITSU LAPTOP EXTRAS |
| 4592 | M: Jonathan Woithe <jwoithe@just42.net> |
| 4593 | L: platform-driver-x86@vger.kernel.org |
| 4594 | S: Maintained |
| 4595 | F: drivers/platform/x86/fujitsu-laptop.c |
| 4596 | |
| 4597 | FUJITSU M-5MO LS CAMERA ISP DRIVER |
| 4598 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 4599 | M: Heungjun Kim <riverful.kim@samsung.com> |
| 4600 | L: linux-media@vger.kernel.org |
| 4601 | S: Maintained |
| 4602 | F: drivers/media/i2c/m5mols/ |
| 4603 | F: include/media/m5mols.h |
| 4604 | |
| 4605 | FUJITSU TABLET EXTRAS |
| 4606 | M: Robert Gerlach <khnz@gmx.de> |
| 4607 | L: platform-driver-x86@vger.kernel.org |
| 4608 | S: Maintained |
| 4609 | F: drivers/platform/x86/fujitsu-tablet.c |
| 4610 | |
| 4611 | FUSE: FILESYSTEM IN USERSPACE |
| 4612 | M: Miklos Szeredi <miklos@szeredi.hu> |
| 4613 | L: fuse-devel@lists.sourceforge.net |
| 4614 | W: http://fuse.sourceforge.net/ |
| 4615 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git |
| 4616 | S: Maintained |
| 4617 | F: fs/fuse/ |
| 4618 | F: include/uapi/linux/fuse.h |
| 4619 | F: Documentation/filesystems/fuse.txt |
| 4620 | |
| 4621 | FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) |
| 4622 | M: Rik Faith <faith@cs.unc.edu> |
| 4623 | L: linux-scsi@vger.kernel.org |
| 4624 | S: Odd Fixes (e.g., new signatures) |
| 4625 | F: drivers/scsi/fdomain.* |
| 4626 | |
| 4627 | GCOV BASED KERNEL PROFILING |
| 4628 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
| 4629 | S: Maintained |
| 4630 | F: kernel/gcov/ |
| 4631 | F: Documentation/gcov.txt |
| 4632 | |
| 4633 | GDT SCSI DISK ARRAY CONTROLLER DRIVER |
| 4634 | M: Achim Leubner <achim_leubner@adaptec.com> |
| 4635 | L: linux-scsi@vger.kernel.org |
| 4636 | W: http://www.icp-vortex.com/ |
| 4637 | S: Supported |
| 4638 | F: drivers/scsi/gdt* |
| 4639 | |
| 4640 | GDB KERNEL DEBUGGING HELPER SCRIPTS |
| 4641 | M: Jan Kiszka <jan.kiszka@siemens.com> |
| 4642 | S: Supported |
| 4643 | F: scripts/gdb/ |
| 4644 | |
| 4645 | GEMTEK FM RADIO RECEIVER DRIVER |
| 4646 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 4647 | L: linux-media@vger.kernel.org |
| 4648 | T: git git://linuxtv.org/media_tree.git |
| 4649 | W: http://linuxtv.org |
| 4650 | S: Maintained |
| 4651 | F: drivers/media/radio/radio-gemtek* |
| 4652 | |
| 4653 | GENERIC GPIO I2C DRIVER |
| 4654 | M: Haavard Skinnemoen <hskinnemoen@gmail.com> |
| 4655 | S: Supported |
| 4656 | F: drivers/i2c/busses/i2c-gpio.c |
| 4657 | F: include/linux/i2c-gpio.h |
| 4658 | |
| 4659 | GENERIC GPIO I2C MULTIPLEXER DRIVER |
| 4660 | M: Peter Korsgaard <peter.korsgaard@barco.com> |
| 4661 | L: linux-i2c@vger.kernel.org |
| 4662 | S: Supported |
| 4663 | F: drivers/i2c/muxes/i2c-mux-gpio.c |
| 4664 | F: include/linux/i2c-mux-gpio.h |
| 4665 | F: Documentation/i2c/muxes/i2c-mux-gpio |
| 4666 | |
| 4667 | GENERIC HDLC (WAN) DRIVERS |
| 4668 | M: Krzysztof Halasa <khc@pm.waw.pl> |
| 4669 | W: http://www.kernel.org/pub/linux/utils/net/hdlc/ |
| 4670 | S: Maintained |
| 4671 | F: drivers/net/wan/c101.c |
| 4672 | F: drivers/net/wan/hd6457* |
| 4673 | F: drivers/net/wan/hdlc* |
| 4674 | F: drivers/net/wan/n2.c |
| 4675 | F: drivers/net/wan/pc300too.c |
| 4676 | F: drivers/net/wan/pci200syn.c |
| 4677 | F: drivers/net/wan/wanxl* |
| 4678 | |
| 4679 | GENERIC INCLUDE/ASM HEADER FILES |
| 4680 | M: Arnd Bergmann <arnd@arndb.de> |
| 4681 | L: linux-arch@vger.kernel.org |
| 4682 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git |
| 4683 | S: Maintained |
| 4684 | F: include/asm-generic/ |
| 4685 | F: include/uapi/asm-generic/ |
| 4686 | |
| 4687 | GENERIC PHY FRAMEWORK |
| 4688 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 4689 | L: linux-kernel@vger.kernel.org |
| 4690 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git |
| 4691 | S: Supported |
| 4692 | F: drivers/phy/ |
| 4693 | F: include/linux/phy/ |
| 4694 | |
| 4695 | GENERIC PM DOMAINS |
| 4696 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 4697 | M: Kevin Hilman <khilman@kernel.org> |
| 4698 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 4699 | L: linux-pm@vger.kernel.org |
| 4700 | S: Supported |
| 4701 | F: drivers/base/power/domain*.c |
| 4702 | F: include/linux/pm_domain.h |
| 4703 | |
| 4704 | GENERIC UIO DRIVER FOR PCI DEVICES |
| 4705 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 4706 | L: kvm@vger.kernel.org |
| 4707 | S: Supported |
| 4708 | F: drivers/uio/uio_pci_generic.c |
| 4709 | |
| 4710 | GET_MAINTAINER SCRIPT |
| 4711 | M: Joe Perches <joe@perches.com> |
| 4712 | S: Maintained |
| 4713 | F: scripts/get_maintainer.pl |
| 4714 | |
| 4715 | GFS2 FILE SYSTEM |
| 4716 | M: Steven Whitehouse <swhiteho@redhat.com> |
| 4717 | M: Bob Peterson <rpeterso@redhat.com> |
| 4718 | L: cluster-devel@redhat.com |
| 4719 | W: http://sources.redhat.com/cluster/ |
| 4720 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git |
| 4721 | S: Supported |
| 4722 | F: Documentation/filesystems/gfs2*.txt |
| 4723 | F: fs/gfs2/ |
| 4724 | F: include/uapi/linux/gfs2_ondisk.h |
| 4725 | |
| 4726 | GIGASET ISDN DRIVERS |
| 4727 | M: Paul Bolle <pebolle@tiscali.nl> |
| 4728 | L: gigaset307x-common@lists.sourceforge.net |
| 4729 | W: http://gigaset307x.sourceforge.net/ |
| 4730 | S: Odd Fixes |
| 4731 | F: Documentation/isdn/README.gigaset |
| 4732 | F: drivers/isdn/gigaset/ |
| 4733 | F: include/uapi/linux/gigaset_dev.h |
| 4734 | |
| 4735 | GO7007 MPEG CODEC |
| 4736 | M: Hans Verkuil <hans.verkuil@cisco.com> |
| 4737 | L: linux-media@vger.kernel.org |
| 4738 | S: Maintained |
| 4739 | F: drivers/media/usb/go7007/ |
| 4740 | |
| 4741 | GOODIX TOUCHSCREEN |
| 4742 | M: Bastien Nocera <hadess@hadess.net> |
| 4743 | L: linux-input@vger.kernel.org |
| 4744 | S: Maintained |
| 4745 | F: drivers/input/touchscreen/goodix.c |
| 4746 | |
| 4747 | GPIO SUBSYSTEM |
| 4748 | M: Linus Walleij <linus.walleij@linaro.org> |
| 4749 | M: Alexandre Courbot <gnurou@gmail.com> |
| 4750 | L: linux-gpio@vger.kernel.org |
| 4751 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git |
| 4752 | S: Maintained |
| 4753 | F: Documentation/gpio/ |
| 4754 | F: drivers/gpio/ |
| 4755 | F: include/linux/gpio/ |
| 4756 | F: include/linux/gpio.h |
| 4757 | F: include/asm-generic/gpio.h |
| 4758 | |
| 4759 | GRE DEMULTIPLEXER DRIVER |
| 4760 | M: Dmitry Kozlov <xeb@mail.ru> |
| 4761 | L: netdev@vger.kernel.org |
| 4762 | S: Maintained |
| 4763 | F: net/ipv4/gre_demux.c |
| 4764 | F: net/ipv4/gre_offload.c |
| 4765 | F: include/net/gre.h |
| 4766 | |
| 4767 | GRETH 10/100/1G Ethernet MAC device driver |
| 4768 | M: Kristoffer Glembo <kristoffer@gaisler.com> |
| 4769 | L: netdev@vger.kernel.org |
| 4770 | S: Maintained |
| 4771 | F: drivers/net/ethernet/aeroflex/ |
| 4772 | |
| 4773 | GSPCA FINEPIX SUBDRIVER |
| 4774 | M: Frank Zago <frank@zago.net> |
| 4775 | L: linux-media@vger.kernel.org |
| 4776 | T: git git://linuxtv.org/media_tree.git |
| 4777 | S: Maintained |
| 4778 | F: drivers/media/usb/gspca/finepix.c |
| 4779 | |
| 4780 | GSPCA GL860 SUBDRIVER |
| 4781 | M: Olivier Lorin <o.lorin@laposte.net> |
| 4782 | L: linux-media@vger.kernel.org |
| 4783 | T: git git://linuxtv.org/media_tree.git |
| 4784 | S: Maintained |
| 4785 | F: drivers/media/usb/gspca/gl860/ |
| 4786 | |
| 4787 | GSPCA M5602 SUBDRIVER |
| 4788 | M: Erik Andren <erik.andren@gmail.com> |
| 4789 | L: linux-media@vger.kernel.org |
| 4790 | T: git git://linuxtv.org/media_tree.git |
| 4791 | S: Maintained |
| 4792 | F: drivers/media/usb/gspca/m5602/ |
| 4793 | |
| 4794 | GSPCA PAC207 SONIXB SUBDRIVER |
| 4795 | M: Hans de Goede <hdegoede@redhat.com> |
| 4796 | L: linux-media@vger.kernel.org |
| 4797 | T: git git://linuxtv.org/media_tree.git |
| 4798 | S: Maintained |
| 4799 | F: drivers/media/usb/gspca/pac207.c |
| 4800 | |
| 4801 | GSPCA SN9C20X SUBDRIVER |
| 4802 | M: Brian Johnson <brijohn@gmail.com> |
| 4803 | L: linux-media@vger.kernel.org |
| 4804 | T: git git://linuxtv.org/media_tree.git |
| 4805 | S: Maintained |
| 4806 | F: drivers/media/usb/gspca/sn9c20x.c |
| 4807 | |
| 4808 | GSPCA T613 SUBDRIVER |
| 4809 | M: Leandro Costantino <lcostantino@gmail.com> |
| 4810 | L: linux-media@vger.kernel.org |
| 4811 | T: git git://linuxtv.org/media_tree.git |
| 4812 | S: Maintained |
| 4813 | F: drivers/media/usb/gspca/t613.c |
| 4814 | |
| 4815 | GSPCA USB WEBCAM DRIVER |
| 4816 | M: Hans de Goede <hdegoede@redhat.com> |
| 4817 | L: linux-media@vger.kernel.org |
| 4818 | T: git git://linuxtv.org/media_tree.git |
| 4819 | S: Maintained |
| 4820 | F: drivers/media/usb/gspca/ |
| 4821 | |
| 4822 | GUID PARTITION TABLE (GPT) |
| 4823 | M: Davidlohr Bueso <dave@stgolabs.net> |
| 4824 | L: linux-efi@vger.kernel.org |
| 4825 | S: Maintained |
| 4826 | F: block/partitions/efi.* |
| 4827 | |
| 4828 | STK1160 USB VIDEO CAPTURE DRIVER |
| 4829 | M: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> |
| 4830 | L: linux-media@vger.kernel.org |
| 4831 | T: git git://linuxtv.org/media_tree.git |
| 4832 | S: Maintained |
| 4833 | F: drivers/media/usb/stk1160/ |
| 4834 | |
| 4835 | H8/300 ARCHITECTURE |
| 4836 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
| 4837 | L: uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers) |
| 4838 | W: http://uclinux-h8.sourceforge.jp |
| 4839 | T: git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git |
| 4840 | S: Maintained |
| 4841 | F: arch/h8300/ |
| 4842 | F: drivers/clocksource/h8300_*.c |
| 4843 | F: drivers/clk/h8300/ |
| 4844 | F: drivers/irqchip/irq-renesas-h8*.c |
| 4845 | |
| 4846 | HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER |
| 4847 | M: Frank Seidel <frank@f-seidel.de> |
| 4848 | L: platform-driver-x86@vger.kernel.org |
| 4849 | W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ |
| 4850 | S: Maintained |
| 4851 | F: drivers/platform/x86/hdaps.c |
| 4852 | |
| 4853 | HDPVR USB VIDEO ENCODER DRIVER |
| 4854 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 4855 | L: linux-media@vger.kernel.org |
| 4856 | T: git git://linuxtv.org/media_tree.git |
| 4857 | W: http://linuxtv.org |
| 4858 | S: Odd Fixes |
| 4859 | F: drivers/media/usb/hdpvr/ |
| 4860 | |
| 4861 | HWPOISON MEMORY FAILURE HANDLING |
| 4862 | M: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com> |
| 4863 | L: linux-mm@kvack.org |
| 4864 | S: Maintained |
| 4865 | F: mm/memory-failure.c |
| 4866 | F: mm/hwpoison-inject.c |
| 4867 | |
| 4868 | HYPERVISOR VIRTUAL CONSOLE DRIVER |
| 4869 | L: linuxppc-dev@lists.ozlabs.org |
| 4870 | S: Odd Fixes |
| 4871 | F: drivers/tty/hvc/ |
| 4872 | |
| 4873 | HACKRF MEDIA DRIVER |
| 4874 | M: Antti Palosaari <crope@iki.fi> |
| 4875 | L: linux-media@vger.kernel.org |
| 4876 | W: http://linuxtv.org/ |
| 4877 | W: http://palosaari.fi/linux/ |
| 4878 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4879 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4880 | S: Maintained |
| 4881 | F: drivers/media/usb/hackrf/ |
| 4882 | |
| 4883 | HARDWARE MONITORING |
| 4884 | M: Jean Delvare <jdelvare@suse.com> |
| 4885 | M: Guenter Roeck <linux@roeck-us.net> |
| 4886 | L: linux-hwmon@vger.kernel.org |
| 4887 | W: http://hwmon.wiki.kernel.org/ |
| 4888 | T: quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/ |
| 4889 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
| 4890 | S: Maintained |
| 4891 | F: Documentation/hwmon/ |
| 4892 | F: drivers/hwmon/ |
| 4893 | F: include/linux/hwmon*.h |
| 4894 | |
| 4895 | HARDWARE RANDOM NUMBER GENERATOR CORE |
| 4896 | M: Matt Mackall <mpm@selenic.com> |
| 4897 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 4898 | L: linux-crypto@vger.kernel.org |
| 4899 | S: Odd fixes |
| 4900 | F: Documentation/hw_random.txt |
| 4901 | F: drivers/char/hw_random/ |
| 4902 | F: include/linux/hw_random.h |
| 4903 | |
| 4904 | HARDWARE SPINLOCK CORE |
| 4905 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 4906 | S: Maintained |
| 4907 | F: Documentation/hwspinlock.txt |
| 4908 | F: drivers/hwspinlock/hwspinlock_* |
| 4909 | F: include/linux/hwspinlock.h |
| 4910 | |
| 4911 | HARMONY SOUND DRIVER |
| 4912 | L: linux-parisc@vger.kernel.org |
| 4913 | S: Maintained |
| 4914 | F: sound/parisc/harmony.* |
| 4915 | |
| 4916 | HD29L2 MEDIA DRIVER |
| 4917 | M: Antti Palosaari <crope@iki.fi> |
| 4918 | L: linux-media@vger.kernel.org |
| 4919 | W: http://linuxtv.org/ |
| 4920 | W: http://palosaari.fi/linux/ |
| 4921 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 4922 | T: git git://linuxtv.org/anttip/media_tree.git |
| 4923 | S: Maintained |
| 4924 | F: drivers/media/dvb-frontends/hd29l2* |
| 4925 | |
| 4926 | HEWLETT-PACKARD SMART2 RAID DRIVER |
| 4927 | L: iss_storagedev@hp.com |
| 4928 | S: Orphan |
| 4929 | F: Documentation/blockdev/cpqarray.txt |
| 4930 | F: drivers/block/cpqarray.* |
| 4931 | |
| 4932 | HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) |
| 4933 | M: Don Brace <don.brace@pmcs.com> |
| 4934 | L: iss_storagedev@hp.com |
| 4935 | L: storagedev@pmcs.com |
| 4936 | L: linux-scsi@vger.kernel.org |
| 4937 | S: Supported |
| 4938 | F: Documentation/scsi/hpsa.txt |
| 4939 | F: drivers/scsi/hpsa*.[ch] |
| 4940 | F: include/linux/cciss*.h |
| 4941 | F: include/uapi/linux/cciss*.h |
| 4942 | |
| 4943 | HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) |
| 4944 | M: Don Brace <don.brace@pmcs.com> |
| 4945 | L: iss_storagedev@hp.com |
| 4946 | L: storagedev@pmcs.com |
| 4947 | L: linux-scsi@vger.kernel.org |
| 4948 | S: Supported |
| 4949 | F: Documentation/blockdev/cciss.txt |
| 4950 | F: drivers/block/cciss* |
| 4951 | F: include/linux/cciss_ioctl.h |
| 4952 | F: include/uapi/linux/cciss_ioctl.h |
| 4953 | |
| 4954 | HFS FILESYSTEM |
| 4955 | L: linux-fsdevel@vger.kernel.org |
| 4956 | S: Orphan |
| 4957 | F: Documentation/filesystems/hfs.txt |
| 4958 | F: fs/hfs/ |
| 4959 | |
| 4960 | HFSPLUS FILESYSTEM |
| 4961 | L: linux-fsdevel@vger.kernel.org |
| 4962 | S: Orphan |
| 4963 | F: Documentation/filesystems/hfsplus.txt |
| 4964 | F: fs/hfsplus/ |
| 4965 | |
| 4966 | HGA FRAMEBUFFER DRIVER |
| 4967 | M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> |
| 4968 | L: linux-nvidia@lists.surfsouth.com |
| 4969 | W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml |
| 4970 | S: Maintained |
| 4971 | F: drivers/video/fbdev/hgafb.c |
| 4972 | |
| 4973 | HIBERNATION (aka Software Suspend, aka swsusp) |
| 4974 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 4975 | M: Pavel Machek <pavel@ucw.cz> |
| 4976 | L: linux-pm@vger.kernel.org |
| 4977 | S: Supported |
| 4978 | F: arch/x86/power/ |
| 4979 | F: drivers/base/power/ |
| 4980 | F: kernel/power/ |
| 4981 | F: include/linux/suspend.h |
| 4982 | F: include/linux/freezer.h |
| 4983 | F: include/linux/pm.h |
| 4984 | F: arch/*/include/asm/suspend*.h |
| 4985 | |
| 4986 | HID CORE LAYER |
| 4987 | M: Jiri Kosina <jikos@kernel.org> |
| 4988 | L: linux-input@vger.kernel.org |
| 4989 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
| 4990 | S: Maintained |
| 4991 | F: drivers/hid/ |
| 4992 | F: include/linux/hid* |
| 4993 | F: include/uapi/linux/hid* |
| 4994 | |
| 4995 | HID SENSOR HUB DRIVERS |
| 4996 | M: Jiri Kosina <jikos@kernel.org> |
| 4997 | M: Jonathan Cameron <jic23@kernel.org> |
| 4998 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
| 4999 | L: linux-input@vger.kernel.org |
| 5000 | L: linux-iio@vger.kernel.org |
| 5001 | S: Maintained |
| 5002 | F: Documentation/hid/hid-sensor* |
| 5003 | F: drivers/hid/hid-sensor-* |
| 5004 | F: drivers/iio/*/hid-* |
| 5005 | F: include/linux/hid-sensor-* |
| 5006 | |
| 5007 | HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS |
| 5008 | M: Thomas Gleixner <tglx@linutronix.de> |
| 5009 | L: linux-kernel@vger.kernel.org |
| 5010 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
| 5011 | S: Maintained |
| 5012 | F: Documentation/timers/ |
| 5013 | F: kernel/time/hrtimer.c |
| 5014 | F: kernel/time/clockevents.c |
| 5015 | F: kernel/time/tick*.* |
| 5016 | F: kernel/time/timer_*.c |
| 5017 | F: include/linux/clockchips.h |
| 5018 | F: include/linux/hrtimer.h |
| 5019 | |
| 5020 | HIGH-SPEED SCC DRIVER FOR AX.25 |
| 5021 | L: linux-hams@vger.kernel.org |
| 5022 | S: Orphan |
| 5023 | F: drivers/net/hamradio/dmascc.c |
| 5024 | F: drivers/net/hamradio/scc.c |
| 5025 | |
| 5026 | HIGHPOINT ROCKETRAID 3xxx RAID DRIVER |
| 5027 | M: HighPoint Linux Team <linux@highpoint-tech.com> |
| 5028 | W: http://www.highpoint-tech.com |
| 5029 | S: Supported |
| 5030 | F: Documentation/scsi/hptiop.txt |
| 5031 | F: drivers/scsi/hptiop.c |
| 5032 | |
| 5033 | HIPPI |
| 5034 | M: Jes Sorensen <jes@trained-monkey.org> |
| 5035 | L: linux-hippi@sunsite.dk |
| 5036 | S: Maintained |
| 5037 | F: include/linux/hippidevice.h |
| 5038 | F: include/uapi/linux/if_hippi.h |
| 5039 | F: net/802/hippi.c |
| 5040 | F: drivers/net/hippi/ |
| 5041 | |
| 5042 | HOST AP DRIVER |
| 5043 | M: Jouni Malinen <j@w1.fi> |
| 5044 | L: hostap@shmoo.com (subscribers-only) |
| 5045 | L: linux-wireless@vger.kernel.org |
| 5046 | W: http://hostap.epitest.fi/ |
| 5047 | S: Maintained |
| 5048 | F: drivers/net/wireless/hostap/ |
| 5049 | |
| 5050 | HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER |
| 5051 | L: platform-driver-x86@vger.kernel.org |
| 5052 | S: Orphan |
| 5053 | F: drivers/platform/x86/tc1100-wmi.c |
| 5054 | |
| 5055 | HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series |
| 5056 | M: Jaroslav Kysela <perex@perex.cz> |
| 5057 | S: Maintained |
| 5058 | F: drivers/net/ethernet/hp/hp100.* |
| 5059 | |
| 5060 | HPET: High Precision Event Timers driver |
| 5061 | M: Clemens Ladisch <clemens@ladisch.de> |
| 5062 | S: Maintained |
| 5063 | F: Documentation/timers/hpet.txt |
| 5064 | F: drivers/char/hpet.c |
| 5065 | F: include/linux/hpet.h |
| 5066 | F: include/uapi/linux/hpet.h |
| 5067 | |
| 5068 | HPET: x86 |
| 5069 | S: Orphan |
| 5070 | F: arch/x86/kernel/hpet.c |
| 5071 | F: arch/x86/include/asm/hpet.h |
| 5072 | |
| 5073 | HPFS FILESYSTEM |
| 5074 | M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> |
| 5075 | W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi |
| 5076 | S: Maintained |
| 5077 | F: fs/hpfs/ |
| 5078 | |
| 5079 | HSI SUBSYSTEM |
| 5080 | M: Sebastian Reichel <sre@kernel.org> |
| 5081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git |
| 5082 | S: Maintained |
| 5083 | F: Documentation/ABI/testing/sysfs-bus-hsi |
| 5084 | F: Documentation/hsi.txt |
| 5085 | F: drivers/hsi/ |
| 5086 | F: include/linux/hsi/ |
| 5087 | F: include/uapi/linux/hsi/ |
| 5088 | |
| 5089 | HSO 3G MODEM DRIVER |
| 5090 | M: Jan Dumon <j.dumon@option.com> |
| 5091 | W: http://www.pharscape.org |
| 5092 | S: Maintained |
| 5093 | F: drivers/net/usb/hso.c |
| 5094 | |
| 5095 | HSR NETWORK PROTOCOL |
| 5096 | M: Arvid Brodin <arvid.brodin@alten.se> |
| 5097 | L: netdev@vger.kernel.org |
| 5098 | S: Maintained |
| 5099 | F: net/hsr/ |
| 5100 | |
| 5101 | HTCPEN TOUCHSCREEN DRIVER |
| 5102 | M: Pau Oliva Fora <pof@eslack.org> |
| 5103 | L: linux-input@vger.kernel.org |
| 5104 | S: Maintained |
| 5105 | F: drivers/input/touchscreen/htcpen.c |
| 5106 | |
| 5107 | HUGETLB FILESYSTEM |
| 5108 | M: Nadia Yvette Chambers <nyc@holomorphy.com> |
| 5109 | S: Maintained |
| 5110 | F: fs/hugetlbfs/ |
| 5111 | |
| 5112 | Hyper-V CORE AND DRIVERS |
| 5113 | M: "K. Y. Srinivasan" <kys@microsoft.com> |
| 5114 | M: Haiyang Zhang <haiyangz@microsoft.com> |
| 5115 | L: devel@linuxdriverproject.org |
| 5116 | S: Maintained |
| 5117 | F: arch/x86/include/asm/mshyperv.h |
| 5118 | F: arch/x86/include/uapi/asm/hyperv.h |
| 5119 | F: arch/x86/kernel/cpu/mshyperv.c |
| 5120 | F: drivers/hid/hid-hyperv.c |
| 5121 | F: drivers/hv/ |
| 5122 | F: drivers/input/serio/hyperv-keyboard.c |
| 5123 | F: drivers/net/hyperv/ |
| 5124 | F: drivers/scsi/storvsc_drv.c |
| 5125 | F: drivers/video/fbdev/hyperv_fb.c |
| 5126 | F: include/linux/hyperv.h |
| 5127 | F: tools/hv/ |
| 5128 | F: Documentation/ABI/stable/sysfs-bus-vmbus |
| 5129 | |
| 5130 | I2C OVER PARALLEL PORT |
| 5131 | M: Jean Delvare <jdelvare@suse.com> |
| 5132 | L: linux-i2c@vger.kernel.org |
| 5133 | S: Maintained |
| 5134 | F: Documentation/i2c/busses/i2c-parport |
| 5135 | F: Documentation/i2c/busses/i2c-parport-light |
| 5136 | F: drivers/i2c/busses/i2c-parport.c |
| 5137 | F: drivers/i2c/busses/i2c-parport-light.c |
| 5138 | |
| 5139 | I2C/SMBUS CONTROLLER DRIVERS FOR PC |
| 5140 | M: Jean Delvare <jdelvare@suse.com> |
| 5141 | L: linux-i2c@vger.kernel.org |
| 5142 | S: Maintained |
| 5143 | F: Documentation/i2c/busses/i2c-ali1535 |
| 5144 | F: Documentation/i2c/busses/i2c-ali1563 |
| 5145 | F: Documentation/i2c/busses/i2c-ali15x3 |
| 5146 | F: Documentation/i2c/busses/i2c-amd756 |
| 5147 | F: Documentation/i2c/busses/i2c-amd8111 |
| 5148 | F: Documentation/i2c/busses/i2c-i801 |
| 5149 | F: Documentation/i2c/busses/i2c-nforce2 |
| 5150 | F: Documentation/i2c/busses/i2c-piix4 |
| 5151 | F: Documentation/i2c/busses/i2c-sis5595 |
| 5152 | F: Documentation/i2c/busses/i2c-sis630 |
| 5153 | F: Documentation/i2c/busses/i2c-sis96x |
| 5154 | F: Documentation/i2c/busses/i2c-via |
| 5155 | F: Documentation/i2c/busses/i2c-viapro |
| 5156 | F: drivers/i2c/busses/i2c-ali1535.c |
| 5157 | F: drivers/i2c/busses/i2c-ali1563.c |
| 5158 | F: drivers/i2c/busses/i2c-ali15x3.c |
| 5159 | F: drivers/i2c/busses/i2c-amd756.c |
| 5160 | F: drivers/i2c/busses/i2c-amd756-s4882.c |
| 5161 | F: drivers/i2c/busses/i2c-amd8111.c |
| 5162 | F: drivers/i2c/busses/i2c-i801.c |
| 5163 | F: drivers/i2c/busses/i2c-isch.c |
| 5164 | F: drivers/i2c/busses/i2c-nforce2.c |
| 5165 | F: drivers/i2c/busses/i2c-nforce2-s4985.c |
| 5166 | F: drivers/i2c/busses/i2c-piix4.c |
| 5167 | F: drivers/i2c/busses/i2c-sis5595.c |
| 5168 | F: drivers/i2c/busses/i2c-sis630.c |
| 5169 | F: drivers/i2c/busses/i2c-sis96x.c |
| 5170 | F: drivers/i2c/busses/i2c-via.c |
| 5171 | F: drivers/i2c/busses/i2c-viapro.c |
| 5172 | |
| 5173 | I2C/SMBUS ISMT DRIVER |
| 5174 | M: Seth Heasley <seth.heasley@intel.com> |
| 5175 | M: Neil Horman <nhorman@tuxdriver.com> |
| 5176 | L: linux-i2c@vger.kernel.org |
| 5177 | F: drivers/i2c/busses/i2c-ismt.c |
| 5178 | F: Documentation/i2c/busses/i2c-ismt |
| 5179 | |
| 5180 | I2C/SMBUS STUB DRIVER |
| 5181 | M: Jean Delvare <jdelvare@suse.com> |
| 5182 | L: linux-i2c@vger.kernel.org |
| 5183 | S: Maintained |
| 5184 | F: drivers/i2c/i2c-stub.c |
| 5185 | |
| 5186 | I2C SUBSYSTEM |
| 5187 | M: Wolfram Sang <wsa@the-dreams.de> |
| 5188 | L: linux-i2c@vger.kernel.org |
| 5189 | W: https://i2c.wiki.kernel.org/ |
| 5190 | Q: https://patchwork.ozlabs.org/project/linux-i2c/list/ |
| 5191 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git |
| 5192 | S: Maintained |
| 5193 | F: Documentation/devicetree/bindings/i2c/ |
| 5194 | F: Documentation/i2c/ |
| 5195 | F: drivers/i2c/ |
| 5196 | F: drivers/i2c/*/ |
| 5197 | F: include/linux/i2c.h |
| 5198 | F: include/linux/i2c-*.h |
| 5199 | F: include/uapi/linux/i2c.h |
| 5200 | F: include/uapi/linux/i2c-*.h |
| 5201 | |
| 5202 | I2C ACPI SUPPORT |
| 5203 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 5204 | L: linux-i2c@vger.kernel.org |
| 5205 | L: linux-acpi@vger.kernel.org |
| 5206 | S: Maintained |
| 5207 | |
| 5208 | I2C-TAOS-EVM DRIVER |
| 5209 | M: Jean Delvare <jdelvare@suse.com> |
| 5210 | L: linux-i2c@vger.kernel.org |
| 5211 | S: Maintained |
| 5212 | F: Documentation/i2c/busses/i2c-taos-evm |
| 5213 | F: drivers/i2c/busses/i2c-taos-evm.c |
| 5214 | |
| 5215 | I2C-TINY-USB DRIVER |
| 5216 | M: Till Harbaum <till@harbaum.org> |
| 5217 | L: linux-i2c@vger.kernel.org |
| 5218 | W: http://www.harbaum.org/till/i2c_tiny_usb |
| 5219 | S: Maintained |
| 5220 | F: drivers/i2c/busses/i2c-tiny-usb.c |
| 5221 | |
| 5222 | i386 BOOT CODE |
| 5223 | M: "H. Peter Anvin" <hpa@zytor.com> |
| 5224 | S: Maintained |
| 5225 | F: arch/x86/boot/ |
| 5226 | |
| 5227 | i386 SETUP CODE / CPU ERRATA WORKAROUNDS |
| 5228 | M: "H. Peter Anvin" <hpa@zytor.com> |
| 5229 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git |
| 5230 | S: Maintained |
| 5231 | |
| 5232 | IA64 (Itanium) PLATFORM |
| 5233 | M: Tony Luck <tony.luck@intel.com> |
| 5234 | M: Fenghua Yu <fenghua.yu@intel.com> |
| 5235 | L: linux-ia64@vger.kernel.org |
| 5236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git |
| 5237 | S: Maintained |
| 5238 | F: arch/ia64/ |
| 5239 | |
| 5240 | IBM Power VMX Cryptographic instructions |
| 5241 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
| 5242 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
| 5243 | L: linux-crypto@vger.kernel.org |
| 5244 | S: Supported |
| 5245 | F: drivers/crypto/vmx/Makefile |
| 5246 | F: drivers/crypto/vmx/Kconfig |
| 5247 | F: drivers/crypto/vmx/vmx.c |
| 5248 | F: drivers/crypto/vmx/aes* |
| 5249 | F: drivers/crypto/vmx/ghash* |
| 5250 | F: drivers/crypto/vmx/ppc-xlate.pl |
| 5251 | |
| 5252 | IBM Power in-Nest Crypto Acceleration |
| 5253 | M: Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com> |
| 5254 | M: Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com> |
| 5255 | L: linux-crypto@vger.kernel.org |
| 5256 | S: Supported |
| 5257 | F: drivers/crypto/nx/Makefile |
| 5258 | F: drivers/crypto/nx/Kconfig |
| 5259 | F: drivers/crypto/nx/nx-aes* |
| 5260 | F: drivers/crypto/nx/nx-sha* |
| 5261 | F: drivers/crypto/nx/nx.* |
| 5262 | F: drivers/crypto/nx/nx_csbcpb.h |
| 5263 | F: drivers/crypto/nx/nx_debugfs.h |
| 5264 | |
| 5265 | IBM Power 842 compression accelerator |
| 5266 | M: Dan Streetman <ddstreet@ieee.org> |
| 5267 | S: Supported |
| 5268 | F: drivers/crypto/nx/Makefile |
| 5269 | F: drivers/crypto/nx/Kconfig |
| 5270 | F: drivers/crypto/nx/nx-842* |
| 5271 | F: include/linux/sw842.h |
| 5272 | F: crypto/842.c |
| 5273 | F: lib/842/ |
| 5274 | |
| 5275 | IBM Power Linux RAID adapter |
| 5276 | M: Brian King <brking@us.ibm.com> |
| 5277 | S: Supported |
| 5278 | F: drivers/scsi/ipr.* |
| 5279 | |
| 5280 | IBM Power Virtual Ethernet Device Driver |
| 5281 | M: Thomas Falcon <tlfalcon@linux.vnet.ibm.com> |
| 5282 | L: netdev@vger.kernel.org |
| 5283 | S: Supported |
| 5284 | F: drivers/net/ethernet/ibm/ibmveth.* |
| 5285 | |
| 5286 | IBM Power Virtual SCSI Device Drivers |
| 5287 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
| 5288 | L: linux-scsi@vger.kernel.org |
| 5289 | S: Supported |
| 5290 | F: drivers/scsi/ibmvscsi/ibmvscsi* |
| 5291 | F: drivers/scsi/ibmvscsi/viosrp.h |
| 5292 | |
| 5293 | IBM Power Virtual FC Device Drivers |
| 5294 | M: Tyrel Datwyler <tyreld@linux.vnet.ibm.com> |
| 5295 | L: linux-scsi@vger.kernel.org |
| 5296 | S: Supported |
| 5297 | F: drivers/scsi/ibmvscsi/ibmvfc* |
| 5298 | |
| 5299 | IBM ServeRAID RAID DRIVER |
| 5300 | S: Orphan |
| 5301 | F: drivers/scsi/ips.* |
| 5302 | |
| 5303 | ICH LPC AND GPIO DRIVER |
| 5304 | M: Peter Tyser <ptyser@xes-inc.com> |
| 5305 | S: Maintained |
| 5306 | F: drivers/mfd/lpc_ich.c |
| 5307 | F: drivers/gpio/gpio-ich.c |
| 5308 | |
| 5309 | IDE SUBSYSTEM |
| 5310 | M: "David S. Miller" <davem@davemloft.net> |
| 5311 | L: linux-ide@vger.kernel.org |
| 5312 | Q: http://patchwork.ozlabs.org/project/linux-ide/list/ |
| 5313 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git |
| 5314 | S: Maintained |
| 5315 | F: Documentation/ide/ |
| 5316 | F: drivers/ide/ |
| 5317 | F: include/linux/ide.h |
| 5318 | |
| 5319 | IDEAPAD LAPTOP EXTRAS DRIVER |
| 5320 | M: Ike Panhc <ike.pan@canonical.com> |
| 5321 | L: platform-driver-x86@vger.kernel.org |
| 5322 | W: http://launchpad.net/ideapad-laptop |
| 5323 | S: Maintained |
| 5324 | F: drivers/platform/x86/ideapad-laptop.c |
| 5325 | |
| 5326 | IDEAPAD LAPTOP SLIDEBAR DRIVER |
| 5327 | M: Andrey Moiseev <o2g.org.ru@gmail.com> |
| 5328 | L: linux-input@vger.kernel.org |
| 5329 | W: https://github.com/o2genum/ideapad-slidebar |
| 5330 | S: Maintained |
| 5331 | F: drivers/input/misc/ideapad_slidebar.c |
| 5332 | |
| 5333 | IDE/ATAPI DRIVERS |
| 5334 | M: Borislav Petkov <bp@alien8.de> |
| 5335 | L: linux-ide@vger.kernel.org |
| 5336 | S: Maintained |
| 5337 | F: Documentation/cdrom/ide-cd |
| 5338 | F: drivers/ide/ide-cd* |
| 5339 | |
| 5340 | IDLE-I7300 |
| 5341 | M: Andy Henroid <andrew.d.henroid@intel.com> |
| 5342 | L: linux-pm@vger.kernel.org |
| 5343 | S: Supported |
| 5344 | F: drivers/idle/i7300_idle.c |
| 5345 | |
| 5346 | IEEE 802.15.4 SUBSYSTEM |
| 5347 | M: Alexander Aring <alex.aring@gmail.com> |
| 5348 | L: linux-wpan@vger.kernel.org |
| 5349 | W: https://github.com/linux-wpan |
| 5350 | T: git git://github.com/linux-wpan/linux-wpan-next.git |
| 5351 | S: Maintained |
| 5352 | F: net/ieee802154/ |
| 5353 | F: net/mac802154/ |
| 5354 | F: drivers/net/ieee802154/ |
| 5355 | F: include/linux/nl802154.h |
| 5356 | F: include/linux/ieee802154.h |
| 5357 | F: include/net/nl802154.h |
| 5358 | F: include/net/mac802154.h |
| 5359 | F: include/net/af_ieee802154.h |
| 5360 | F: include/net/cfg802154.h |
| 5361 | F: include/net/ieee802154_netdev.h |
| 5362 | F: Documentation/networking/ieee802154.txt |
| 5363 | |
| 5364 | IGORPLUG-USB IR RECEIVER |
| 5365 | M: Sean Young <sean@mess.org> |
| 5366 | L: linux-media@vger.kernel.org |
| 5367 | S: Maintained |
| 5368 | F: drivers/media/rc/igorplugusb.c |
| 5369 | |
| 5370 | IGUANAWORKS USB IR TRANSCEIVER |
| 5371 | M: Sean Young <sean@mess.org> |
| 5372 | L: linux-media@vger.kernel.org |
| 5373 | S: Maintained |
| 5374 | F: drivers/media/rc/iguanair.c |
| 5375 | |
| 5376 | IIO SUBSYSTEM AND DRIVERS |
| 5377 | M: Jonathan Cameron <jic23@kernel.org> |
| 5378 | R: Hartmut Knaack <knaack.h@gmx.de> |
| 5379 | R: Lars-Peter Clausen <lars@metafoo.de> |
| 5380 | R: Peter Meerwald <pmeerw@pmeerw.net> |
| 5381 | L: linux-iio@vger.kernel.org |
| 5382 | S: Maintained |
| 5383 | F: drivers/iio/ |
| 5384 | F: drivers/staging/iio/ |
| 5385 | F: include/linux/iio/ |
| 5386 | F: tools/iio/ |
| 5387 | |
| 5388 | IKANOS/ADI EAGLE ADSL USB DRIVER |
| 5389 | M: Matthieu Castet <castet.matthieu@free.fr> |
| 5390 | M: Stanislaw Gruszka <stf_xl@wp.pl> |
| 5391 | S: Maintained |
| 5392 | F: drivers/usb/atm/ueagle-atm.c |
| 5393 | |
| 5394 | INA209 HARDWARE MONITOR DRIVER |
| 5395 | M: Guenter Roeck <linux@roeck-us.net> |
| 5396 | L: linux-hwmon@vger.kernel.org |
| 5397 | S: Maintained |
| 5398 | F: Documentation/hwmon/ina209 |
| 5399 | F: Documentation/devicetree/bindings/i2c/ina209.txt |
| 5400 | F: drivers/hwmon/ina209.c |
| 5401 | |
| 5402 | INA2XX HARDWARE MONITOR DRIVER |
| 5403 | M: Guenter Roeck <linux@roeck-us.net> |
| 5404 | L: linux-hwmon@vger.kernel.org |
| 5405 | S: Maintained |
| 5406 | F: Documentation/hwmon/ina2xx |
| 5407 | F: drivers/hwmon/ina2xx.c |
| 5408 | F: include/linux/platform_data/ina2xx.h |
| 5409 | |
| 5410 | INDUSTRY PACK SUBSYSTEM (IPACK) |
| 5411 | M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> |
| 5412 | M: Jens Taprogge <jens.taprogge@taprogge.org> |
| 5413 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 5414 | L: industrypack-devel@lists.sourceforge.net |
| 5415 | W: http://industrypack.sourceforge.net |
| 5416 | S: Maintained |
| 5417 | F: drivers/ipack/ |
| 5418 | |
| 5419 | INGENIC JZ4780 DMA Driver |
| 5420 | M: Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com> |
| 5421 | S: Maintained |
| 5422 | F: drivers/dma/dma-jz4780.c |
| 5423 | |
| 5424 | INTEGRITY MEASUREMENT ARCHITECTURE (IMA) |
| 5425 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 5426 | M: Dmitry Kasatkin <dmitry.kasatkin@gmail.com> |
| 5427 | L: linux-ima-devel@lists.sourceforge.net |
| 5428 | L: linux-ima-user@lists.sourceforge.net |
| 5429 | L: linux-security-module@vger.kernel.org |
| 5430 | S: Supported |
| 5431 | F: security/integrity/ima/ |
| 5432 | |
| 5433 | IMGTEC IR DECODER DRIVER |
| 5434 | M: James Hogan <james.hogan@imgtec.com> |
| 5435 | S: Maintained |
| 5436 | F: drivers/media/rc/img-ir/ |
| 5437 | |
| 5438 | IMS TWINTURBO FRAMEBUFFER DRIVER |
| 5439 | L: linux-fbdev@vger.kernel.org |
| 5440 | S: Orphan |
| 5441 | F: drivers/video/fbdev/imsttfb.c |
| 5442 | |
| 5443 | INFINIBAND SUBSYSTEM |
| 5444 | M: Doug Ledford <dledford@redhat.com> |
| 5445 | M: Sean Hefty <sean.hefty@intel.com> |
| 5446 | M: Hal Rosenstock <hal.rosenstock@gmail.com> |
| 5447 | L: linux-rdma@vger.kernel.org |
| 5448 | W: http://www.openfabrics.org/ |
| 5449 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 5450 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git |
| 5451 | S: Supported |
| 5452 | F: Documentation/infiniband/ |
| 5453 | F: drivers/infiniband/ |
| 5454 | F: drivers/staging/rdma/ |
| 5455 | F: include/uapi/linux/if_infiniband.h |
| 5456 | F: include/uapi/rdma/ |
| 5457 | F: include/rdma/ |
| 5458 | |
| 5459 | INOTIFY |
| 5460 | M: John McCutchan <john@johnmccutchan.com> |
| 5461 | M: Robert Love <rlove@rlove.org> |
| 5462 | M: Eric Paris <eparis@parisplace.org> |
| 5463 | S: Maintained |
| 5464 | F: Documentation/filesystems/inotify.txt |
| 5465 | F: fs/notify/inotify/ |
| 5466 | F: include/linux/inotify.h |
| 5467 | F: include/uapi/linux/inotify.h |
| 5468 | |
| 5469 | INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS |
| 5470 | M: Dmitry Torokhov <dmitry.torokhov@gmail.com> |
| 5471 | L: linux-input@vger.kernel.org |
| 5472 | Q: http://patchwork.kernel.org/project/linux-input/list/ |
| 5473 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git |
| 5474 | S: Maintained |
| 5475 | F: drivers/input/ |
| 5476 | F: include/linux/input.h |
| 5477 | F: include/uapi/linux/input.h |
| 5478 | F: include/linux/input/ |
| 5479 | |
| 5480 | INPUT MULTITOUCH (MT) PROTOCOL |
| 5481 | M: Henrik Rydberg <rydberg@bitmath.org> |
| 5482 | L: linux-input@vger.kernel.org |
| 5483 | S: Odd fixes |
| 5484 | F: Documentation/input/multi-touch-protocol.txt |
| 5485 | F: drivers/input/input-mt.c |
| 5486 | K: \b(ABS|SYN)_MT_ |
| 5487 | |
| 5488 | INTEL ASoC BDW/HSW DRIVERS |
| 5489 | M: Jie Yang <yang.jie@linux.intel.com> |
| 5490 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 5491 | S: Supported |
| 5492 | F: sound/soc/intel/common/sst-dsp* |
| 5493 | F: sound/soc/intel/common/sst-firmware.c |
| 5494 | F: sound/soc/intel/boards/broadwell.c |
| 5495 | F: sound/soc/intel/haswell/ |
| 5496 | |
| 5497 | INTEL C600 SERIES SAS CONTROLLER DRIVER |
| 5498 | M: Intel SCU Linux support <intel-linux-scu@intel.com> |
| 5499 | M: Artur Paszkiewicz <artur.paszkiewicz@intel.com> |
| 5500 | L: linux-scsi@vger.kernel.org |
| 5501 | T: git git://git.code.sf.net/p/intel-sas/isci |
| 5502 | S: Supported |
| 5503 | F: drivers/scsi/isci/ |
| 5504 | |
| 5505 | INTEL IDLE DRIVER |
| 5506 | M: Len Brown <lenb@kernel.org> |
| 5507 | L: linux-pm@vger.kernel.org |
| 5508 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git |
| 5509 | S: Supported |
| 5510 | F: drivers/idle/intel_idle.c |
| 5511 | |
| 5512 | INTEL PSTATE DRIVER |
| 5513 | M: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
| 5514 | M: Len Brown <lenb@kernel.org> |
| 5515 | L: linux-pm@vger.kernel.org |
| 5516 | S: Supported |
| 5517 | F: drivers/cpufreq/intel_pstate.c |
| 5518 | |
| 5519 | INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) |
| 5520 | M: Maik Broemme <mbroemme@plusserver.de> |
| 5521 | L: linux-fbdev@vger.kernel.org |
| 5522 | S: Maintained |
| 5523 | F: Documentation/fb/intelfb.txt |
| 5524 | F: drivers/video/fbdev/intelfb/ |
| 5525 | |
| 5526 | INTEL 810/815 FRAMEBUFFER DRIVER |
| 5527 | M: Antonino Daplas <adaplas@gmail.com> |
| 5528 | L: linux-fbdev@vger.kernel.org |
| 5529 | S: Maintained |
| 5530 | F: drivers/video/fbdev/i810/ |
| 5531 | |
| 5532 | INTEL MENLOW THERMAL DRIVER |
| 5533 | M: Sujith Thomas <sujith.thomas@intel.com> |
| 5534 | L: platform-driver-x86@vger.kernel.org |
| 5535 | W: https://01.org/linux-acpi |
| 5536 | S: Supported |
| 5537 | F: drivers/platform/x86/intel_menlow.c |
| 5538 | |
| 5539 | INTEL I/OAT DMA DRIVER |
| 5540 | M: Dave Jiang <dave.jiang@intel.com> |
| 5541 | R: Dan Williams <dan.j.williams@intel.com> |
| 5542 | L: dmaengine@vger.kernel.org |
| 5543 | Q: https://patchwork.kernel.org/project/linux-dmaengine/list/ |
| 5544 | S: Supported |
| 5545 | F: drivers/dma/ioat* |
| 5546 | |
| 5547 | INTEL IOMMU (VT-d) |
| 5548 | M: David Woodhouse <dwmw2@infradead.org> |
| 5549 | L: iommu@lists.linux-foundation.org |
| 5550 | T: git git://git.infradead.org/iommu-2.6.git |
| 5551 | S: Supported |
| 5552 | F: drivers/iommu/intel-iommu.c |
| 5553 | F: include/linux/intel-iommu.h |
| 5554 | |
| 5555 | INTEL IOP-ADMA DMA DRIVER |
| 5556 | R: Dan Williams <dan.j.williams@intel.com> |
| 5557 | S: Odd fixes |
| 5558 | F: drivers/dma/iop-adma.c |
| 5559 | |
| 5560 | INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT |
| 5561 | M: Krzysztof Halasa <khalasa@piap.pl> |
| 5562 | S: Maintained |
| 5563 | F: arch/arm/mach-ixp4xx/include/mach/qmgr.h |
| 5564 | F: arch/arm/mach-ixp4xx/include/mach/npe.h |
| 5565 | F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c |
| 5566 | F: arch/arm/mach-ixp4xx/ixp4xx_npe.c |
| 5567 | F: drivers/net/ethernet/xscale/ixp4xx_eth.c |
| 5568 | F: drivers/net/wan/ixp4xx_hss.c |
| 5569 | |
| 5570 | INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT |
| 5571 | M: Deepak Saxena <dsaxena@plexity.net> |
| 5572 | S: Maintained |
| 5573 | F: drivers/char/hw_random/ixp4xx-rng.c |
| 5574 | |
| 5575 | INTEL ETHERNET DRIVERS |
| 5576 | M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> |
| 5577 | R: Jesse Brandeburg <jesse.brandeburg@intel.com> |
| 5578 | R: Shannon Nelson <shannon.nelson@intel.com> |
| 5579 | R: Carolyn Wyborny <carolyn.wyborny@intel.com> |
| 5580 | R: Don Skidmore <donald.c.skidmore@intel.com> |
| 5581 | R: Bruce Allan <bruce.w.allan@intel.com> |
| 5582 | R: John Ronciak <john.ronciak@intel.com> |
| 5583 | R: Mitch Williams <mitch.a.williams@intel.com> |
| 5584 | L: intel-wired-lan@lists.osuosl.org |
| 5585 | W: http://www.intel.com/support/feedback.htm |
| 5586 | W: http://e1000.sourceforge.net/ |
| 5587 | Q: http://patchwork.ozlabs.org/project/intel-wired-lan/list/ |
| 5588 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git |
| 5589 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git |
| 5590 | S: Supported |
| 5591 | F: Documentation/networking/e100.txt |
| 5592 | F: Documentation/networking/e1000.txt |
| 5593 | F: Documentation/networking/e1000e.txt |
| 5594 | F: Documentation/networking/igb.txt |
| 5595 | F: Documentation/networking/igbvf.txt |
| 5596 | F: Documentation/networking/ixgb.txt |
| 5597 | F: Documentation/networking/ixgbe.txt |
| 5598 | F: Documentation/networking/ixgbevf.txt |
| 5599 | F: Documentation/networking/i40e.txt |
| 5600 | F: Documentation/networking/i40evf.txt |
| 5601 | F: drivers/net/ethernet/intel/ |
| 5602 | F: drivers/net/ethernet/intel/*/ |
| 5603 | |
| 5604 | INTEL-MID GPIO DRIVER |
| 5605 | M: David Cohen <david.a.cohen@linux.intel.com> |
| 5606 | L: linux-gpio@vger.kernel.org |
| 5607 | S: Maintained |
| 5608 | F: drivers/gpio/gpio-intel-mid.c |
| 5609 | |
| 5610 | INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT |
| 5611 | M: Stanislav Yakovlev <stas.yakovlev@gmail.com> |
| 5612 | L: linux-wireless@vger.kernel.org |
| 5613 | S: Maintained |
| 5614 | F: Documentation/networking/README.ipw2100 |
| 5615 | F: Documentation/networking/README.ipw2200 |
| 5616 | F: drivers/net/wireless/ipw2x00/ |
| 5617 | |
| 5618 | INTEL(R) TRACE HUB |
| 5619 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
| 5620 | S: Supported |
| 5621 | F: Documentation/trace/intel_th.txt |
| 5622 | F: drivers/hwtracing/intel_th/ |
| 5623 | |
| 5624 | INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) |
| 5625 | M: Richard L Maliszewski <richard.l.maliszewski@intel.com> |
| 5626 | M: Gang Wei <gang.wei@intel.com> |
| 5627 | M: Shane Wang <shane.wang@intel.com> |
| 5628 | L: tboot-devel@lists.sourceforge.net |
| 5629 | W: http://tboot.sourceforge.net |
| 5630 | T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot |
| 5631 | S: Supported |
| 5632 | F: Documentation/intel_txt.txt |
| 5633 | F: include/linux/tboot.h |
| 5634 | F: arch/x86/kernel/tboot.c |
| 5635 | |
| 5636 | INTEL WIRELESS WIMAX CONNECTION 2400 |
| 5637 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
| 5638 | M: linux-wimax@intel.com |
| 5639 | L: wimax@linuxwimax.org (subscribers-only) |
| 5640 | S: Supported |
| 5641 | W: http://linuxwimax.org |
| 5642 | F: Documentation/wimax/README.i2400m |
| 5643 | F: drivers/net/wimax/i2400m/ |
| 5644 | F: include/uapi/linux/wimax/i2400m.h |
| 5645 | |
| 5646 | INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) |
| 5647 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
| 5648 | L: linux-wireless@vger.kernel.org |
| 5649 | S: Supported |
| 5650 | F: drivers/net/wireless/iwlegacy/ |
| 5651 | |
| 5652 | INTEL WIRELESS WIFI LINK (iwlwifi) |
| 5653 | M: Johannes Berg <johannes.berg@intel.com> |
| 5654 | M: Emmanuel Grumbach <emmanuel.grumbach@intel.com> |
| 5655 | M: Intel Linux Wireless <linuxwifi@intel.com> |
| 5656 | L: linux-wireless@vger.kernel.org |
| 5657 | W: http://intellinuxwireless.org |
| 5658 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git |
| 5659 | S: Supported |
| 5660 | F: drivers/net/wireless/iwlwifi/ |
| 5661 | |
| 5662 | INTEL MANAGEMENT ENGINE (mei) |
| 5663 | M: Tomas Winkler <tomas.winkler@intel.com> |
| 5664 | L: linux-kernel@vger.kernel.org |
| 5665 | S: Supported |
| 5666 | F: include/uapi/linux/mei.h |
| 5667 | F: include/linux/mei_cl_bus.h |
| 5668 | F: drivers/misc/mei/* |
| 5669 | F: Documentation/misc-devices/mei/* |
| 5670 | |
| 5671 | INTEL MIC DRIVERS (mic) |
| 5672 | M: Sudeep Dutt <sudeep.dutt@intel.com> |
| 5673 | M: Ashutosh Dixit <ashutosh.dixit@intel.com> |
| 5674 | S: Supported |
| 5675 | W: https://github.com/sudeepdutt/mic |
| 5676 | W: http://software.intel.com/en-us/mic-developer |
| 5677 | F: include/linux/mic_bus.h |
| 5678 | F: include/linux/scif.h |
| 5679 | F: include/uapi/linux/mic_common.h |
| 5680 | F: include/uapi/linux/mic_ioctl.h |
| 5681 | F include/uapi/linux/scif_ioctl.h |
| 5682 | F: drivers/misc/mic/ |
| 5683 | F: drivers/dma/mic_x100_dma.c |
| 5684 | F: drivers/dma/mic_x100_dma.h |
| 5685 | F Documentation/mic/ |
| 5686 | |
| 5687 | INTEL PMC IPC DRIVER |
| 5688 | M: Zha Qipeng<qipeng.zha@intel.com> |
| 5689 | L: platform-driver-x86@vger.kernel.org |
| 5690 | S: Maintained |
| 5691 | F: drivers/platform/x86/intel_pmc_ipc.c |
| 5692 | F: arch/x86/include/asm/intel_pmc_ipc.h |
| 5693 | |
| 5694 | IOC3 ETHERNET DRIVER |
| 5695 | M: Ralf Baechle <ralf@linux-mips.org> |
| 5696 | L: linux-mips@linux-mips.org |
| 5697 | S: Maintained |
| 5698 | F: drivers/net/ethernet/sgi/ioc3-eth.c |
| 5699 | |
| 5700 | IOC3 SERIAL DRIVER |
| 5701 | M: Pat Gefre <pfg@sgi.com> |
| 5702 | L: linux-serial@vger.kernel.org |
| 5703 | S: Maintained |
| 5704 | F: drivers/tty/serial/ioc3_serial.c |
| 5705 | |
| 5706 | IOMMU DRIVERS |
| 5707 | M: Joerg Roedel <joro@8bytes.org> |
| 5708 | L: iommu@lists.linux-foundation.org |
| 5709 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git |
| 5710 | S: Maintained |
| 5711 | F: drivers/iommu/ |
| 5712 | |
| 5713 | IP MASQUERADING |
| 5714 | M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> |
| 5715 | S: Maintained |
| 5716 | F: net/ipv4/netfilter/ipt_MASQUERADE.c |
| 5717 | |
| 5718 | IPATH DRIVER |
| 5719 | M: Mike Marciniszyn <infinipath@intel.com> |
| 5720 | L: linux-rdma@vger.kernel.org |
| 5721 | S: Maintained |
| 5722 | F: drivers/staging/rdma/ipath/ |
| 5723 | |
| 5724 | IPMI SUBSYSTEM |
| 5725 | M: Corey Minyard <minyard@acm.org> |
| 5726 | L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) |
| 5727 | W: http://openipmi.sourceforge.net/ |
| 5728 | S: Supported |
| 5729 | F: Documentation/IPMI.txt |
| 5730 | F: drivers/char/ipmi/ |
| 5731 | F: include/linux/ipmi* |
| 5732 | F: include/uapi/linux/ipmi* |
| 5733 | |
| 5734 | QCOM AUDIO (ASoC) DRIVERS |
| 5735 | M: Patrick Lai <plai@codeaurora.org> |
| 5736 | M: Banajit Goswami <bgoswami@codeaurora.org> |
| 5737 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 5738 | S: Supported |
| 5739 | F: sound/soc/qcom/ |
| 5740 | |
| 5741 | IPS SCSI RAID DRIVER |
| 5742 | M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> |
| 5743 | L: linux-scsi@vger.kernel.org |
| 5744 | W: http://www.adaptec.com/ |
| 5745 | S: Maintained |
| 5746 | F: drivers/scsi/ips* |
| 5747 | |
| 5748 | IPVS |
| 5749 | M: Wensong Zhang <wensong@linux-vs.org> |
| 5750 | M: Simon Horman <horms@verge.net.au> |
| 5751 | M: Julian Anastasov <ja@ssi.bg> |
| 5752 | L: netdev@vger.kernel.org |
| 5753 | L: lvs-devel@vger.kernel.org |
| 5754 | S: Maintained |
| 5755 | F: Documentation/networking/ipvs-sysctl.txt |
| 5756 | F: include/net/ip_vs.h |
| 5757 | F: include/uapi/linux/ip_vs.h |
| 5758 | F: net/netfilter/ipvs/ |
| 5759 | |
| 5760 | IPWIRELESS DRIVER |
| 5761 | M: Jiri Kosina <jikos@kernel.org> |
| 5762 | M: David Sterba <dsterba@suse.com> |
| 5763 | S: Odd Fixes |
| 5764 | F: drivers/tty/ipwireless/ |
| 5765 | |
| 5766 | IPX NETWORK LAYER |
| 5767 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
| 5768 | L: netdev@vger.kernel.org |
| 5769 | S: Maintained |
| 5770 | F: include/net/ipx.h |
| 5771 | F: include/uapi/linux/ipx.h |
| 5772 | F: net/ipx/ |
| 5773 | |
| 5774 | IRDA SUBSYSTEM |
| 5775 | M: Samuel Ortiz <samuel@sortiz.org> |
| 5776 | L: irda-users@lists.sourceforge.net (subscribers-only) |
| 5777 | L: netdev@vger.kernel.org |
| 5778 | W: http://irda.sourceforge.net/ |
| 5779 | S: Maintained |
| 5780 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git |
| 5781 | F: Documentation/networking/irda.txt |
| 5782 | F: drivers/net/irda/ |
| 5783 | F: include/net/irda/ |
| 5784 | F: net/irda/ |
| 5785 | |
| 5786 | IRQ SUBSYSTEM |
| 5787 | M: Thomas Gleixner <tglx@linutronix.de> |
| 5788 | L: linux-kernel@vger.kernel.org |
| 5789 | S: Maintained |
| 5790 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
| 5791 | F: kernel/irq/ |
| 5792 | |
| 5793 | IRQCHIP DRIVERS |
| 5794 | M: Thomas Gleixner <tglx@linutronix.de> |
| 5795 | M: Jason Cooper <jason@lakedaemon.net> |
| 5796 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 5797 | L: linux-kernel@vger.kernel.org |
| 5798 | S: Maintained |
| 5799 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
| 5800 | T: git git://git.infradead.org/users/jcooper/linux.git irqchip/core |
| 5801 | F: Documentation/devicetree/bindings/interrupt-controller/ |
| 5802 | F: drivers/irqchip/ |
| 5803 | |
| 5804 | IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) |
| 5805 | M: Jiang Liu <jiang.liu@linux.intel.com> |
| 5806 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 5807 | S: Maintained |
| 5808 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core |
| 5809 | F: Documentation/IRQ-domain.txt |
| 5810 | F: include/linux/irqdomain.h |
| 5811 | F: kernel/irq/irqdomain.c |
| 5812 | F: kernel/irq/msi.c |
| 5813 | |
| 5814 | ISAPNP |
| 5815 | M: Jaroslav Kysela <perex@perex.cz> |
| 5816 | S: Maintained |
| 5817 | F: Documentation/isapnp.txt |
| 5818 | F: drivers/pnp/isapnp/ |
| 5819 | F: include/linux/isapnp.h |
| 5820 | |
| 5821 | ISA RADIO MODULE |
| 5822 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 5823 | L: linux-media@vger.kernel.org |
| 5824 | T: git git://linuxtv.org/media_tree.git |
| 5825 | W: http://linuxtv.org |
| 5826 | S: Maintained |
| 5827 | F: drivers/media/radio/radio-isa* |
| 5828 | |
| 5829 | iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER |
| 5830 | M: Peter Jones <pjones@redhat.com> |
| 5831 | M: Konrad Rzeszutek Wilk <konrad@kernel.org> |
| 5832 | S: Maintained |
| 5833 | F: drivers/firmware/iscsi_ibft* |
| 5834 | |
| 5835 | ISCSI |
| 5836 | M: Mike Christie <michaelc@cs.wisc.edu> |
| 5837 | L: open-iscsi@googlegroups.com |
| 5838 | W: www.open-iscsi.org |
| 5839 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git |
| 5840 | S: Maintained |
| 5841 | F: drivers/scsi/*iscsi* |
| 5842 | F: include/scsi/*iscsi* |
| 5843 | |
| 5844 | ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR |
| 5845 | M: Or Gerlitz <ogerlitz@mellanox.com> |
| 5846 | M: Sagi Grimberg <sagig@mellanox.com> |
| 5847 | M: Roi Dayan <roid@mellanox.com> |
| 5848 | L: linux-rdma@vger.kernel.org |
| 5849 | S: Supported |
| 5850 | W: http://www.openfabrics.org |
| 5851 | W: www.open-iscsi.org |
| 5852 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 5853 | F: drivers/infiniband/ulp/iser/ |
| 5854 | |
| 5855 | ISCSI EXTENSIONS FOR RDMA (ISER) TARGET |
| 5856 | M: Sagi Grimberg <sagig@mellanox.com> |
| 5857 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
| 5858 | L: linux-rdma@vger.kernel.org |
| 5859 | L: target-devel@vger.kernel.org |
| 5860 | S: Supported |
| 5861 | W: http://www.linux-iscsi.org |
| 5862 | F: drivers/infiniband/ulp/isert |
| 5863 | |
| 5864 | ISDN SUBSYSTEM |
| 5865 | M: Karsten Keil <isdn@linux-pingi.de> |
| 5866 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
| 5867 | L: netdev@vger.kernel.org |
| 5868 | W: http://www.isdn4linux.de |
| 5869 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git |
| 5870 | S: Maintained |
| 5871 | F: Documentation/isdn/ |
| 5872 | F: drivers/isdn/ |
| 5873 | F: include/linux/isdn.h |
| 5874 | F: include/linux/isdn/ |
| 5875 | F: include/uapi/linux/isdn.h |
| 5876 | F: include/uapi/linux/isdn/ |
| 5877 | |
| 5878 | ISDN SUBSYSTEM (Eicon active card driver) |
| 5879 | M: Armin Schindler <mac@melware.de> |
| 5880 | L: isdn4linux@listserv.isdn4linux.de (subscribers-only) |
| 5881 | W: http://www.melware.de |
| 5882 | S: Maintained |
| 5883 | F: drivers/isdn/hardware/eicon/ |
| 5884 | |
| 5885 | IT87 HARDWARE MONITORING DRIVER |
| 5886 | M: Jean Delvare <jdelvare@suse.com> |
| 5887 | L: linux-hwmon@vger.kernel.org |
| 5888 | S: Maintained |
| 5889 | F: Documentation/hwmon/it87 |
| 5890 | F: drivers/hwmon/it87.c |
| 5891 | |
| 5892 | IT913X MEDIA DRIVER |
| 5893 | M: Antti Palosaari <crope@iki.fi> |
| 5894 | L: linux-media@vger.kernel.org |
| 5895 | W: http://linuxtv.org/ |
| 5896 | W: http://palosaari.fi/linux/ |
| 5897 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5898 | T: git git://linuxtv.org/anttip/media_tree.git |
| 5899 | S: Maintained |
| 5900 | F: drivers/media/tuners/it913x* |
| 5901 | |
| 5902 | IVTV VIDEO4LINUX DRIVER |
| 5903 | M: Andy Walls <awalls@md.metrocast.net> |
| 5904 | L: ivtv-devel@ivtvdriver.org (subscribers-only) |
| 5905 | L: linux-media@vger.kernel.org |
| 5906 | T: git git://linuxtv.org/media_tree.git |
| 5907 | W: http://www.ivtvdriver.org |
| 5908 | S: Maintained |
| 5909 | F: Documentation/video4linux/*.ivtv |
| 5910 | F: drivers/media/pci/ivtv/ |
| 5911 | F: include/uapi/linux/ivtv* |
| 5912 | |
| 5913 | IX2505V MEDIA DRIVER |
| 5914 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 5915 | L: linux-media@vger.kernel.org |
| 5916 | W: http://linuxtv.org/ |
| 5917 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 5918 | S: Maintained |
| 5919 | F: drivers/media/dvb-frontends/ix2505v* |
| 5920 | |
| 5921 | JC42.4 TEMPERATURE SENSOR DRIVER |
| 5922 | M: Guenter Roeck <linux@roeck-us.net> |
| 5923 | L: linux-hwmon@vger.kernel.org |
| 5924 | S: Maintained |
| 5925 | F: drivers/hwmon/jc42.c |
| 5926 | F: Documentation/hwmon/jc42 |
| 5927 | |
| 5928 | JFS FILESYSTEM |
| 5929 | M: Dave Kleikamp <shaggy@kernel.org> |
| 5930 | L: jfs-discussion@lists.sourceforge.net |
| 5931 | W: http://jfs.sourceforge.net/ |
| 5932 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git |
| 5933 | S: Maintained |
| 5934 | F: Documentation/filesystems/jfs.txt |
| 5935 | F: fs/jfs/ |
| 5936 | |
| 5937 | JME NETWORK DRIVER |
| 5938 | M: Guo-Fu Tseng <cooldavid@cooldavid.org> |
| 5939 | L: netdev@vger.kernel.org |
| 5940 | S: Maintained |
| 5941 | F: drivers/net/ethernet/jme.* |
| 5942 | |
| 5943 | JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) |
| 5944 | M: David Woodhouse <dwmw2@infradead.org> |
| 5945 | L: linux-mtd@lists.infradead.org |
| 5946 | W: http://www.linux-mtd.infradead.org/doc/jffs2.html |
| 5947 | S: Maintained |
| 5948 | F: fs/jffs2/ |
| 5949 | F: include/uapi/linux/jffs2.h |
| 5950 | |
| 5951 | JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) |
| 5952 | M: "Theodore Ts'o" <tytso@mit.edu> |
| 5953 | M: Jan Kara <jack@suse.com> |
| 5954 | L: linux-ext4@vger.kernel.org |
| 5955 | S: Maintained |
| 5956 | F: fs/jbd2/ |
| 5957 | F: include/linux/jbd2.h |
| 5958 | |
| 5959 | JPU V4L2 MEM2MEM DRIVER FOR RENESAS |
| 5960 | M: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com> |
| 5961 | L: linux-media@vger.kernel.org |
| 5962 | S: Maintained |
| 5963 | F: drivers/media/platform/rcar_jpu.c |
| 5964 | |
| 5965 | JSM Neo PCI based serial card |
| 5966 | M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> |
| 5967 | L: linux-serial@vger.kernel.org |
| 5968 | S: Maintained |
| 5969 | F: drivers/tty/serial/jsm/ |
| 5970 | |
| 5971 | K10TEMP HARDWARE MONITORING DRIVER |
| 5972 | M: Clemens Ladisch <clemens@ladisch.de> |
| 5973 | L: linux-hwmon@vger.kernel.org |
| 5974 | S: Maintained |
| 5975 | F: Documentation/hwmon/k10temp |
| 5976 | F: drivers/hwmon/k10temp.c |
| 5977 | |
| 5978 | K8TEMP HARDWARE MONITORING DRIVER |
| 5979 | M: Rudolf Marek <r.marek@assembler.cz> |
| 5980 | L: linux-hwmon@vger.kernel.org |
| 5981 | S: Maintained |
| 5982 | F: Documentation/hwmon/k8temp |
| 5983 | F: drivers/hwmon/k8temp.c |
| 5984 | |
| 5985 | KCONFIG |
| 5986 | M: "Yann E. MORIN" <yann.morin.1998@free.fr> |
| 5987 | L: linux-kbuild@vger.kernel.org |
| 5988 | T: git git://gitorious.org/linux-kconfig/linux-kconfig |
| 5989 | S: Maintained |
| 5990 | F: Documentation/kbuild/kconfig-language.txt |
| 5991 | F: scripts/kconfig/ |
| 5992 | |
| 5993 | KDUMP |
| 5994 | M: Vivek Goyal <vgoyal@redhat.com> |
| 5995 | M: Haren Myneni <hbabu@us.ibm.com> |
| 5996 | L: kexec@lists.infradead.org |
| 5997 | W: http://lse.sourceforge.net/kdump/ |
| 5998 | S: Maintained |
| 5999 | F: Documentation/kdump/ |
| 6000 | |
| 6001 | KEENE FM RADIO TRANSMITTER DRIVER |
| 6002 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 6003 | L: linux-media@vger.kernel.org |
| 6004 | T: git git://linuxtv.org/media_tree.git |
| 6005 | W: http://linuxtv.org |
| 6006 | S: Maintained |
| 6007 | F: drivers/media/radio/radio-keene* |
| 6008 | |
| 6009 | KERNEL AUTOMOUNTER v4 (AUTOFS4) |
| 6010 | M: Ian Kent <raven@themaw.net> |
| 6011 | L: autofs@vger.kernel.org |
| 6012 | S: Maintained |
| 6013 | F: fs/autofs4/ |
| 6014 | |
| 6015 | KERNEL BUILD + files below scripts/ (unless maintained elsewhere) |
| 6016 | M: Michal Marek <mmarek@suse.com> |
| 6017 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next |
| 6018 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes |
| 6019 | L: linux-kbuild@vger.kernel.org |
| 6020 | S: Maintained |
| 6021 | F: Documentation/kbuild/ |
| 6022 | F: Makefile |
| 6023 | F: scripts/Makefile.* |
| 6024 | F: scripts/basic/ |
| 6025 | F: scripts/mk* |
| 6026 | F: scripts/package/ |
| 6027 | |
| 6028 | KERNEL JANITORS |
| 6029 | L: kernel-janitors@vger.kernel.org |
| 6030 | W: http://kernelnewbies.org/KernelJanitors |
| 6031 | S: Odd Fixes |
| 6032 | |
| 6033 | KERNEL NFSD, SUNRPC, AND LOCKD SERVERS |
| 6034 | M: "J. Bruce Fields" <bfields@fieldses.org> |
| 6035 | M: Jeff Layton <jlayton@poochiereds.net> |
| 6036 | L: linux-nfs@vger.kernel.org |
| 6037 | W: http://nfs.sourceforge.net/ |
| 6038 | S: Supported |
| 6039 | F: fs/nfsd/ |
| 6040 | F: include/uapi/linux/nfsd/ |
| 6041 | F: fs/lockd/ |
| 6042 | F: fs/nfs_common/ |
| 6043 | F: net/sunrpc/ |
| 6044 | F: include/linux/lockd/ |
| 6045 | F: include/linux/sunrpc/ |
| 6046 | F: include/uapi/linux/sunrpc/ |
| 6047 | |
| 6048 | KERNEL SELFTEST FRAMEWORK |
| 6049 | M: Shuah Khan <shuahkh@osg.samsung.com> |
| 6050 | L: linux-api@vger.kernel.org |
| 6051 | T: git git://git.kernel.org/pub/scm/shuah/linux-kselftest |
| 6052 | S: Maintained |
| 6053 | F: tools/testing/selftests |
| 6054 | |
| 6055 | KERNEL VIRTUAL MACHINE (KVM) |
| 6056 | M: Gleb Natapov <gleb@kernel.org> |
| 6057 | M: Paolo Bonzini <pbonzini@redhat.com> |
| 6058 | L: kvm@vger.kernel.org |
| 6059 | W: http://www.linux-kvm.org |
| 6060 | T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git |
| 6061 | S: Supported |
| 6062 | F: Documentation/*/kvm*.txt |
| 6063 | F: Documentation/virtual/kvm/ |
| 6064 | F: arch/*/kvm/ |
| 6065 | F: arch/x86/kernel/kvm.c |
| 6066 | F: arch/x86/kernel/kvmclock.c |
| 6067 | F: arch/*/include/asm/kvm* |
| 6068 | F: include/linux/kvm* |
| 6069 | F: include/uapi/linux/kvm* |
| 6070 | F: virt/kvm/ |
| 6071 | |
| 6072 | KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V |
| 6073 | M: Joerg Roedel <joro@8bytes.org> |
| 6074 | L: kvm@vger.kernel.org |
| 6075 | W: http://www.linux-kvm.org/ |
| 6076 | S: Maintained |
| 6077 | F: arch/x86/include/asm/svm.h |
| 6078 | F: arch/x86/kvm/svm.c |
| 6079 | |
| 6080 | KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC |
| 6081 | M: Alexander Graf <agraf@suse.com> |
| 6082 | L: kvm-ppc@vger.kernel.org |
| 6083 | W: http://www.linux-kvm.org/ |
| 6084 | T: git git://github.com/agraf/linux-2.6.git |
| 6085 | S: Supported |
| 6086 | F: arch/powerpc/include/asm/kvm* |
| 6087 | F: arch/powerpc/kvm/ |
| 6088 | |
| 6089 | KERNEL VIRTUAL MACHINE for s390 (KVM/s390) |
| 6090 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
| 6091 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
| 6092 | L: linux-s390@vger.kernel.org |
| 6093 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 6094 | S: Supported |
| 6095 | F: Documentation/s390/kvm.txt |
| 6096 | F: arch/s390/include/asm/kvm* |
| 6097 | F: arch/s390/kvm/ |
| 6098 | |
| 6099 | KERNEL VIRTUAL MACHINE (KVM) FOR ARM |
| 6100 | M: Christoffer Dall <christoffer.dall@linaro.org> |
| 6101 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 6102 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 6103 | L: kvmarm@lists.cs.columbia.edu |
| 6104 | W: http://systems.cs.columbia.edu/projects/kvm-arm |
| 6105 | S: Supported |
| 6106 | F: arch/arm/include/uapi/asm/kvm* |
| 6107 | F: arch/arm/include/asm/kvm* |
| 6108 | F: arch/arm/kvm/ |
| 6109 | F: virt/kvm/arm/ |
| 6110 | F: include/kvm/arm_* |
| 6111 | |
| 6112 | KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64) |
| 6113 | M: Christoffer Dall <christoffer.dall@linaro.org> |
| 6114 | M: Marc Zyngier <marc.zyngier@arm.com> |
| 6115 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 6116 | L: kvmarm@lists.cs.columbia.edu |
| 6117 | S: Maintained |
| 6118 | F: arch/arm64/include/uapi/asm/kvm* |
| 6119 | F: arch/arm64/include/asm/kvm* |
| 6120 | F: arch/arm64/kvm/ |
| 6121 | |
| 6122 | KEXEC |
| 6123 | M: Eric Biederman <ebiederm@xmission.com> |
| 6124 | W: http://kernel.org/pub/linux/utils/kernel/kexec/ |
| 6125 | L: kexec@lists.infradead.org |
| 6126 | S: Maintained |
| 6127 | F: include/linux/kexec.h |
| 6128 | F: include/uapi/linux/kexec.h |
| 6129 | F: kernel/kexec.c |
| 6130 | |
| 6131 | KEYS/KEYRINGS: |
| 6132 | M: David Howells <dhowells@redhat.com> |
| 6133 | L: keyrings@vger.kernel.org |
| 6134 | S: Maintained |
| 6135 | F: Documentation/security/keys.txt |
| 6136 | F: include/linux/key.h |
| 6137 | F: include/linux/key-type.h |
| 6138 | F: include/keys/ |
| 6139 | F: security/keys/ |
| 6140 | |
| 6141 | KEYS-TRUSTED |
| 6142 | M: David Safford <safford@us.ibm.com> |
| 6143 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 6144 | L: linux-security-module@vger.kernel.org |
| 6145 | L: keyrings@vger.kernel.org |
| 6146 | S: Supported |
| 6147 | F: Documentation/security/keys-trusted-encrypted.txt |
| 6148 | F: include/keys/trusted-type.h |
| 6149 | F: security/keys/trusted.c |
| 6150 | F: security/keys/trusted.h |
| 6151 | |
| 6152 | KEYS-ENCRYPTED |
| 6153 | M: Mimi Zohar <zohar@linux.vnet.ibm.com> |
| 6154 | M: David Safford <safford@us.ibm.com> |
| 6155 | L: linux-security-module@vger.kernel.org |
| 6156 | L: keyrings@vger.kernel.org |
| 6157 | S: Supported |
| 6158 | F: Documentation/security/keys-trusted-encrypted.txt |
| 6159 | F: include/keys/encrypted-type.h |
| 6160 | F: security/keys/encrypted-keys/ |
| 6161 | |
| 6162 | KGDB / KDB /debug_core |
| 6163 | M: Jason Wessel <jason.wessel@windriver.com> |
| 6164 | W: http://kgdb.wiki.kernel.org/ |
| 6165 | L: kgdb-bugreport@lists.sourceforge.net |
| 6166 | S: Maintained |
| 6167 | F: Documentation/DocBook/kgdb.tmpl |
| 6168 | F: drivers/misc/kgdbts.c |
| 6169 | F: drivers/tty/serial/kgdboc.c |
| 6170 | F: include/linux/kdb.h |
| 6171 | F: include/linux/kgdb.h |
| 6172 | F: kernel/debug/ |
| 6173 | |
| 6174 | KMEMCHECK |
| 6175 | M: Vegard Nossum <vegardno@ifi.uio.no> |
| 6176 | M: Pekka Enberg <penberg@kernel.org> |
| 6177 | S: Maintained |
| 6178 | F: Documentation/kmemcheck.txt |
| 6179 | F: arch/x86/include/asm/kmemcheck.h |
| 6180 | F: arch/x86/mm/kmemcheck/ |
| 6181 | F: include/linux/kmemcheck.h |
| 6182 | F: mm/kmemcheck.c |
| 6183 | |
| 6184 | KMEMLEAK |
| 6185 | M: Catalin Marinas <catalin.marinas@arm.com> |
| 6186 | S: Maintained |
| 6187 | F: Documentation/kmemleak.txt |
| 6188 | F: include/linux/kmemleak.h |
| 6189 | F: mm/kmemleak.c |
| 6190 | F: mm/kmemleak-test.c |
| 6191 | |
| 6192 | KPROBES |
| 6193 | M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> |
| 6194 | M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> |
| 6195 | M: "David S. Miller" <davem@davemloft.net> |
| 6196 | M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> |
| 6197 | S: Maintained |
| 6198 | F: Documentation/kprobes.txt |
| 6199 | F: include/linux/kprobes.h |
| 6200 | F: kernel/kprobes.c |
| 6201 | |
| 6202 | KS0108 LCD CONTROLLER DRIVER |
| 6203 | M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> |
| 6204 | W: http://miguelojeda.es/auxdisplay.htm |
| 6205 | W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm |
| 6206 | S: Maintained |
| 6207 | F: Documentation/auxdisplay/ks0108 |
| 6208 | F: drivers/auxdisplay/ks0108.c |
| 6209 | F: include/linux/ks0108.h |
| 6210 | |
| 6211 | L3MDEV |
| 6212 | M: David Ahern <dsa@cumulusnetworks.com> |
| 6213 | L: netdev@vger.kernel.org |
| 6214 | S: Maintained |
| 6215 | F: net/l3mdev |
| 6216 | F: include/net/l3mdev.h |
| 6217 | |
| 6218 | LAPB module |
| 6219 | L: linux-x25@vger.kernel.org |
| 6220 | S: Orphan |
| 6221 | F: Documentation/networking/lapb-module.txt |
| 6222 | F: include/*/lapb.h |
| 6223 | F: net/lapb/ |
| 6224 | |
| 6225 | LASI 53c700 driver for PARISC |
| 6226 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
| 6227 | L: linux-scsi@vger.kernel.org |
| 6228 | S: Maintained |
| 6229 | F: Documentation/scsi/53c700.txt |
| 6230 | F: drivers/scsi/53c700* |
| 6231 | |
| 6232 | LED SUBSYSTEM |
| 6233 | M: Richard Purdie <rpurdie@rpsys.net> |
| 6234 | M: Jacek Anaszewski <j.anaszewski@samsung.com> |
| 6235 | L: linux-leds@vger.kernel.org |
| 6236 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git |
| 6237 | S: Maintained |
| 6238 | F: drivers/leds/ |
| 6239 | F: include/linux/leds.h |
| 6240 | |
| 6241 | LEGACY EEPROM DRIVER |
| 6242 | M: Jean Delvare <jdelvare@suse.com> |
| 6243 | S: Maintained |
| 6244 | F: Documentation/misc-devices/eeprom |
| 6245 | F: drivers/misc/eeprom/eeprom.c |
| 6246 | |
| 6247 | LEGO USB Tower driver |
| 6248 | M: Juergen Stuber <starblue@users.sourceforge.net> |
| 6249 | L: legousb-devel@lists.sourceforge.net |
| 6250 | W: http://legousb.sourceforge.net/ |
| 6251 | S: Maintained |
| 6252 | F: drivers/usb/misc/legousbtower.c |
| 6253 | |
| 6254 | LG2160 MEDIA DRIVER |
| 6255 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 6256 | L: linux-media@vger.kernel.org |
| 6257 | W: http://linuxtv.org/ |
| 6258 | W: http://github.com/mkrufky |
| 6259 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6260 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 6261 | S: Maintained |
| 6262 | F: drivers/media/dvb-frontends/lg2160.* |
| 6263 | |
| 6264 | LGDT3305 MEDIA DRIVER |
| 6265 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 6266 | L: linux-media@vger.kernel.org |
| 6267 | W: http://linuxtv.org/ |
| 6268 | W: http://github.com/mkrufky |
| 6269 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6270 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 6271 | S: Maintained |
| 6272 | F: drivers/media/dvb-frontends/lgdt3305.* |
| 6273 | |
| 6274 | LGUEST |
| 6275 | M: Rusty Russell <rusty@rustcorp.com.au> |
| 6276 | L: lguest@lists.ozlabs.org |
| 6277 | W: http://lguest.ozlabs.org/ |
| 6278 | S: Odd Fixes |
| 6279 | F: arch/x86/include/asm/lguest*.h |
| 6280 | F: arch/x86/lguest/ |
| 6281 | F: drivers/lguest/ |
| 6282 | F: include/linux/lguest*.h |
| 6283 | F: tools/lguest/ |
| 6284 | |
| 6285 | LIBATA SUBSYSTEM (Serial and Parallel ATA drivers) |
| 6286 | M: Tejun Heo <tj@kernel.org> |
| 6287 | L: linux-ide@vger.kernel.org |
| 6288 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 6289 | S: Maintained |
| 6290 | F: drivers/ata/ |
| 6291 | F: include/linux/ata.h |
| 6292 | F: include/linux/libata.h |
| 6293 | |
| 6294 | LIBATA PATA ARASAN COMPACT FLASH CONTROLLER |
| 6295 | M: Viresh Kumar <vireshk@kernel.org> |
| 6296 | L: linux-ide@vger.kernel.org |
| 6297 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 6298 | S: Maintained |
| 6299 | F: include/linux/pata_arasan_cf_data.h |
| 6300 | F: drivers/ata/pata_arasan_cf.c |
| 6301 | |
| 6302 | LIBATA PATA DRIVERS |
| 6303 | M: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
| 6304 | M: Tejun Heo <tj@kernel.org> |
| 6305 | L: linux-ide@vger.kernel.org |
| 6306 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 6307 | S: Maintained |
| 6308 | F: drivers/ata/pata_*.c |
| 6309 | F: drivers/ata/ata_generic.c |
| 6310 | |
| 6311 | LIBATA SATA AHCI PLATFORM devices support |
| 6312 | M: Hans de Goede <hdegoede@redhat.com> |
| 6313 | M: Tejun Heo <tj@kernel.org> |
| 6314 | L: linux-ide@vger.kernel.org |
| 6315 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 6316 | S: Maintained |
| 6317 | F: drivers/ata/ahci_platform.c |
| 6318 | F: drivers/ata/libahci_platform.c |
| 6319 | F: include/linux/ahci_platform.h |
| 6320 | |
| 6321 | LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER |
| 6322 | M: Mikael Pettersson <mikpelinux@gmail.com> |
| 6323 | L: linux-ide@vger.kernel.org |
| 6324 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git |
| 6325 | S: Maintained |
| 6326 | F: drivers/ata/sata_promise.* |
| 6327 | |
| 6328 | LIBLOCKDEP |
| 6329 | M: Sasha Levin <sasha.levin@oracle.com> |
| 6330 | S: Maintained |
| 6331 | F: tools/lib/lockdep/ |
| 6332 | |
| 6333 | LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM |
| 6334 | M: Dan Williams <dan.j.williams@intel.com> |
| 6335 | L: linux-nvdimm@lists.01.org |
| 6336 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 6337 | S: Supported |
| 6338 | F: drivers/nvdimm/* |
| 6339 | F: include/linux/nd.h |
| 6340 | F: include/linux/libnvdimm.h |
| 6341 | F: include/uapi/linux/ndctl.h |
| 6342 | |
| 6343 | LIBNVDIMM BLK: MMIO-APERTURE DRIVER |
| 6344 | M: Ross Zwisler <ross.zwisler@linux.intel.com> |
| 6345 | L: linux-nvdimm@lists.01.org |
| 6346 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 6347 | S: Supported |
| 6348 | F: drivers/nvdimm/blk.c |
| 6349 | F: drivers/nvdimm/region_devs.c |
| 6350 | F: drivers/acpi/nfit* |
| 6351 | |
| 6352 | LIBNVDIMM BTT: BLOCK TRANSLATION TABLE |
| 6353 | M: Vishal Verma <vishal.l.verma@intel.com> |
| 6354 | L: linux-nvdimm@lists.01.org |
| 6355 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 6356 | S: Supported |
| 6357 | F: drivers/nvdimm/btt* |
| 6358 | |
| 6359 | LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER |
| 6360 | M: Ross Zwisler <ross.zwisler@linux.intel.com> |
| 6361 | L: linux-nvdimm@lists.01.org |
| 6362 | Q: https://patchwork.kernel.org/project/linux-nvdimm/list/ |
| 6363 | S: Supported |
| 6364 | F: drivers/nvdimm/pmem.c |
| 6365 | F: include/linux/pmem.h |
| 6366 | F: arch/*/include/asm/pmem.h |
| 6367 | |
| 6368 | LIGHTNVM PLATFORM SUPPORT |
| 6369 | M: Matias Bjorling <mb@lightnvm.io> |
| 6370 | W: http://github/OpenChannelSSD |
| 6371 | L: linux-block@vger.kernel.org |
| 6372 | S: Maintained |
| 6373 | F: drivers/lightnvm/ |
| 6374 | F: include/linux/lightnvm.h |
| 6375 | F: include/uapi/linux/lightnvm.h |
| 6376 | |
| 6377 | LINUX FOR IBM pSERIES (RS/6000) |
| 6378 | M: Paul Mackerras <paulus@au.ibm.com> |
| 6379 | W: http://www.ibm.com/linux/ltc/projects/ppc |
| 6380 | S: Supported |
| 6381 | F: arch/powerpc/boot/rs6000.h |
| 6382 | |
| 6383 | LINUX FOR POWERPC (32-BIT AND 64-BIT) |
| 6384 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
| 6385 | M: Paul Mackerras <paulus@samba.org> |
| 6386 | M: Michael Ellerman <mpe@ellerman.id.au> |
| 6387 | W: http://www.penguinppc.org/ |
| 6388 | L: linuxppc-dev@lists.ozlabs.org |
| 6389 | Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ |
| 6390 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git |
| 6391 | S: Supported |
| 6392 | F: Documentation/powerpc/ |
| 6393 | F: arch/powerpc/ |
| 6394 | |
| 6395 | LINUX FOR POWER MACINTOSH |
| 6396 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
| 6397 | W: http://www.penguinppc.org/ |
| 6398 | L: linuxppc-dev@lists.ozlabs.org |
| 6399 | S: Maintained |
| 6400 | F: arch/powerpc/platforms/powermac/ |
| 6401 | F: drivers/macintosh/ |
| 6402 | |
| 6403 | LINUX FOR POWERPC EMBEDDED MPC5XXX |
| 6404 | M: Anatolij Gustschin <agust@denx.de> |
| 6405 | L: linuxppc-dev@lists.ozlabs.org |
| 6406 | T: git git://git.denx.de/linux-denx-agust.git |
| 6407 | S: Maintained |
| 6408 | F: arch/powerpc/platforms/512x/ |
| 6409 | F: arch/powerpc/platforms/52xx/ |
| 6410 | |
| 6411 | LINUX FOR POWERPC EMBEDDED PPC4XX |
| 6412 | M: Alistair Popple <alistair@popple.id.au> |
| 6413 | M: Matt Porter <mporter@kernel.crashing.org> |
| 6414 | W: http://www.penguinppc.org/ |
| 6415 | L: linuxppc-dev@lists.ozlabs.org |
| 6416 | S: Maintained |
| 6417 | F: arch/powerpc/platforms/40x/ |
| 6418 | F: arch/powerpc/platforms/44x/ |
| 6419 | |
| 6420 | LINUX FOR POWERPC EMBEDDED XILINX VIRTEX |
| 6421 | L: linuxppc-dev@lists.ozlabs.org |
| 6422 | S: Orphan |
| 6423 | F: arch/powerpc/*/*virtex* |
| 6424 | F: arch/powerpc/*/*/*virtex* |
| 6425 | |
| 6426 | LINUX FOR POWERPC EMBEDDED PPC8XX |
| 6427 | M: Vitaly Bordug <vitb@kernel.crashing.org> |
| 6428 | W: http://www.penguinppc.org/ |
| 6429 | L: linuxppc-dev@lists.ozlabs.org |
| 6430 | S: Maintained |
| 6431 | F: arch/powerpc/platforms/8xx/ |
| 6432 | |
| 6433 | LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX |
| 6434 | M: Scott Wood <scottwood@freescale.com> |
| 6435 | M: Kumar Gala <galak@kernel.crashing.org> |
| 6436 | W: http://www.penguinppc.org/ |
| 6437 | L: linuxppc-dev@lists.ozlabs.org |
| 6438 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git |
| 6439 | S: Maintained |
| 6440 | F: arch/powerpc/platforms/83xx/ |
| 6441 | F: arch/powerpc/platforms/85xx/ |
| 6442 | |
| 6443 | LINUX FOR POWERPC PA SEMI PWRFICIENT |
| 6444 | M: Olof Johansson <olof@lixom.net> |
| 6445 | L: linuxppc-dev@lists.ozlabs.org |
| 6446 | S: Maintained |
| 6447 | F: arch/powerpc/platforms/pasemi/ |
| 6448 | F: drivers/*/*pasemi* |
| 6449 | F: drivers/*/*/*pasemi* |
| 6450 | |
| 6451 | LINUX SECURITY MODULE (LSM) FRAMEWORK |
| 6452 | M: Chris Wright <chrisw@sous-sol.org> |
| 6453 | L: linux-security-module@vger.kernel.org |
| 6454 | S: Supported |
| 6455 | |
| 6456 | LIS3LV02D ACCELEROMETER DRIVER |
| 6457 | M: Eric Piel <eric.piel@tremplin-utc.net> |
| 6458 | S: Maintained |
| 6459 | F: Documentation/misc-devices/lis3lv02d |
| 6460 | F: drivers/misc/lis3lv02d/ |
| 6461 | F: drivers/platform/x86/hp_accel.c |
| 6462 | |
| 6463 | LIVE PATCHING |
| 6464 | M: Josh Poimboeuf <jpoimboe@redhat.com> |
| 6465 | M: Seth Jennings <sjenning@redhat.com> |
| 6466 | M: Jiri Kosina <jikos@kernel.org> |
| 6467 | M: Vojtech Pavlik <vojtech@suse.com> |
| 6468 | S: Maintained |
| 6469 | F: kernel/livepatch/ |
| 6470 | F: include/linux/livepatch.h |
| 6471 | F: arch/x86/include/asm/livepatch.h |
| 6472 | F: arch/x86/kernel/livepatch.c |
| 6473 | F: Documentation/ABI/testing/sysfs-kernel-livepatch |
| 6474 | F: samples/livepatch/ |
| 6475 | L: live-patching@vger.kernel.org |
| 6476 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git |
| 6477 | |
| 6478 | LLC (802.2) |
| 6479 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
| 6480 | S: Maintained |
| 6481 | F: include/linux/llc.h |
| 6482 | F: include/uapi/linux/llc.h |
| 6483 | F: include/net/llc* |
| 6484 | F: net/llc/ |
| 6485 | |
| 6486 | LM73 HARDWARE MONITOR DRIVER |
| 6487 | M: Guillaume Ligneul <guillaume.ligneul@gmail.com> |
| 6488 | L: linux-hwmon@vger.kernel.org |
| 6489 | S: Maintained |
| 6490 | F: drivers/hwmon/lm73.c |
| 6491 | |
| 6492 | LM78 HARDWARE MONITOR DRIVER |
| 6493 | M: Jean Delvare <jdelvare@suse.com> |
| 6494 | L: linux-hwmon@vger.kernel.org |
| 6495 | S: Maintained |
| 6496 | F: Documentation/hwmon/lm78 |
| 6497 | F: drivers/hwmon/lm78.c |
| 6498 | |
| 6499 | LM83 HARDWARE MONITOR DRIVER |
| 6500 | M: Jean Delvare <jdelvare@suse.com> |
| 6501 | L: linux-hwmon@vger.kernel.org |
| 6502 | S: Maintained |
| 6503 | F: Documentation/hwmon/lm83 |
| 6504 | F: drivers/hwmon/lm83.c |
| 6505 | |
| 6506 | LM90 HARDWARE MONITOR DRIVER |
| 6507 | M: Jean Delvare <jdelvare@suse.com> |
| 6508 | L: linux-hwmon@vger.kernel.org |
| 6509 | S: Maintained |
| 6510 | F: Documentation/hwmon/lm90 |
| 6511 | F: Documentation/devicetree/bindings/hwmon/lm90.txt |
| 6512 | F: drivers/hwmon/lm90.c |
| 6513 | |
| 6514 | LM95234 HARDWARE MONITOR DRIVER |
| 6515 | M: Guenter Roeck <linux@roeck-us.net> |
| 6516 | L: linux-hwmon@vger.kernel.org |
| 6517 | S: Maintained |
| 6518 | F: Documentation/hwmon/lm95234 |
| 6519 | F: drivers/hwmon/lm95234.c |
| 6520 | |
| 6521 | LME2510 MEDIA DRIVER |
| 6522 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 6523 | L: linux-media@vger.kernel.org |
| 6524 | W: http://linuxtv.org/ |
| 6525 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6526 | S: Maintained |
| 6527 | F: drivers/media/usb/dvb-usb-v2/lmedm04* |
| 6528 | |
| 6529 | LOCKDEP AND LOCKSTAT |
| 6530 | M: Peter Zijlstra <peterz@infradead.org> |
| 6531 | M: Ingo Molnar <mingo@redhat.com> |
| 6532 | L: linux-kernel@vger.kernel.org |
| 6533 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking |
| 6534 | S: Maintained |
| 6535 | F: Documentation/locking/lockdep*.txt |
| 6536 | F: Documentation/locking/lockstat.txt |
| 6537 | F: include/linux/lockdep.h |
| 6538 | F: kernel/locking/ |
| 6539 | |
| 6540 | LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) |
| 6541 | M: "Richard Russon (FlatCap)" <ldm@flatcap.org> |
| 6542 | L: linux-ntfs-dev@lists.sourceforge.net |
| 6543 | W: http://www.linux-ntfs.org/content/view/19/37/ |
| 6544 | S: Maintained |
| 6545 | F: Documentation/ldm.txt |
| 6546 | F: block/partitions/ldm.* |
| 6547 | |
| 6548 | LogFS |
| 6549 | M: Joern Engel <joern@logfs.org> |
| 6550 | M: Prasad Joshi <prasadjoshi.linux@gmail.com> |
| 6551 | L: logfs@logfs.org |
| 6552 | W: logfs.org |
| 6553 | S: Maintained |
| 6554 | F: fs/logfs/ |
| 6555 | |
| 6556 | LPC32XX MACHINE SUPPORT |
| 6557 | M: Roland Stigge <stigge@antcom.de> |
| 6558 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 6559 | S: Maintained |
| 6560 | F: arch/arm/mach-lpc32xx/ |
| 6561 | |
| 6562 | LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) |
| 6563 | M: Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com> |
| 6564 | M: Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com> |
| 6565 | M: Sreekanth Reddy <sreekanth.reddy@avagotech.com> |
| 6566 | M: Abhijit Mahajan <abhijit.mahajan@avagotech.com> |
| 6567 | L: MPT-FusionLinux.pdl@avagotech.com |
| 6568 | L: linux-scsi@vger.kernel.org |
| 6569 | W: http://www.lsilogic.com/support |
| 6570 | S: Supported |
| 6571 | F: drivers/message/fusion/ |
| 6572 | F: drivers/scsi/mpt2sas/ |
| 6573 | F: drivers/scsi/mpt3sas/ |
| 6574 | |
| 6575 | LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers |
| 6576 | M: Matthew Wilcox <matthew@wil.cx> |
| 6577 | L: linux-scsi@vger.kernel.org |
| 6578 | S: Maintained |
| 6579 | F: drivers/scsi/sym53c8xx_2/ |
| 6580 | |
| 6581 | LTC4261 HARDWARE MONITOR DRIVER |
| 6582 | M: Guenter Roeck <linux@roeck-us.net> |
| 6583 | L: linux-hwmon@vger.kernel.org |
| 6584 | S: Maintained |
| 6585 | F: Documentation/hwmon/ltc4261 |
| 6586 | F: drivers/hwmon/ltc4261.c |
| 6587 | |
| 6588 | LTP (Linux Test Project) |
| 6589 | M: Mike Frysinger <vapier@gentoo.org> |
| 6590 | M: Cyril Hrubis <chrubis@suse.cz> |
| 6591 | M: Wanlong Gao <wanlong.gao@gmail.com> |
| 6592 | M: Jan Stancek <jstancek@redhat.com> |
| 6593 | M: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> |
| 6594 | M: Alexey Kodanev <alexey.kodanev@oracle.com> |
| 6595 | L: ltp@lists.linux.it (subscribers-only) |
| 6596 | W: http://linux-test-project.github.io/ |
| 6597 | T: git git://github.com/linux-test-project/ltp.git |
| 6598 | S: Maintained |
| 6599 | |
| 6600 | M32R ARCHITECTURE |
| 6601 | W: http://www.linux-m32r.org/ |
| 6602 | S: Orphan |
| 6603 | F: arch/m32r/ |
| 6604 | |
| 6605 | M68K ARCHITECTURE |
| 6606 | M: Geert Uytterhoeven <geert@linux-m68k.org> |
| 6607 | L: linux-m68k@lists.linux-m68k.org |
| 6608 | W: http://www.linux-m68k.org/ |
| 6609 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git |
| 6610 | S: Maintained |
| 6611 | F: arch/m68k/ |
| 6612 | F: drivers/zorro/ |
| 6613 | |
| 6614 | M68K ON APPLE MACINTOSH |
| 6615 | M: Joshua Thompson <funaho@jurai.org> |
| 6616 | W: http://www.mac.linux-m68k.org/ |
| 6617 | L: linux-m68k@lists.linux-m68k.org |
| 6618 | S: Maintained |
| 6619 | F: arch/m68k/mac/ |
| 6620 | |
| 6621 | M68K ON HP9000/300 |
| 6622 | M: Philip Blundell <philb@gnu.org> |
| 6623 | W: http://www.tazenda.demon.co.uk/phil/linux-hp |
| 6624 | S: Maintained |
| 6625 | F: arch/m68k/hp300/ |
| 6626 | |
| 6627 | M88DS3103 MEDIA DRIVER |
| 6628 | M: Antti Palosaari <crope@iki.fi> |
| 6629 | L: linux-media@vger.kernel.org |
| 6630 | W: http://linuxtv.org/ |
| 6631 | W: http://palosaari.fi/linux/ |
| 6632 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6633 | T: git git://linuxtv.org/anttip/media_tree.git |
| 6634 | S: Maintained |
| 6635 | F: drivers/media/dvb-frontends/m88ds3103* |
| 6636 | |
| 6637 | M88RS2000 MEDIA DRIVER |
| 6638 | M: Malcolm Priestley <tvboxspy@gmail.com> |
| 6639 | L: linux-media@vger.kernel.org |
| 6640 | W: http://linuxtv.org/ |
| 6641 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 6642 | S: Maintained |
| 6643 | F: drivers/media/dvb-frontends/m88rs2000* |
| 6644 | |
| 6645 | MA901 MASTERKIT USB FM RADIO DRIVER |
| 6646 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 6647 | L: linux-media@vger.kernel.org |
| 6648 | T: git git://linuxtv.org/media_tree.git |
| 6649 | S: Maintained |
| 6650 | F: drivers/media/radio/radio-ma901.c |
| 6651 | |
| 6652 | MAC80211 |
| 6653 | M: Johannes Berg <johannes@sipsolutions.net> |
| 6654 | L: linux-wireless@vger.kernel.org |
| 6655 | W: http://wireless.kernel.org/ |
| 6656 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 6657 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
| 6658 | S: Maintained |
| 6659 | F: Documentation/networking/mac80211-injection.txt |
| 6660 | F: include/net/mac80211.h |
| 6661 | F: net/mac80211/ |
| 6662 | |
| 6663 | MACVLAN DRIVER |
| 6664 | M: Patrick McHardy <kaber@trash.net> |
| 6665 | L: netdev@vger.kernel.org |
| 6666 | S: Maintained |
| 6667 | F: drivers/net/macvlan.c |
| 6668 | F: include/linux/if_macvlan.h |
| 6669 | |
| 6670 | MAILBOX API |
| 6671 | M: Jassi Brar <jassisinghbrar@gmail.com> |
| 6672 | L: linux-kernel@vger.kernel.org |
| 6673 | S: Maintained |
| 6674 | F: drivers/mailbox/ |
| 6675 | F: include/linux/mailbox_client.h |
| 6676 | F: include/linux/mailbox_controller.h |
| 6677 | |
| 6678 | MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 |
| 6679 | M: Michael Kerrisk <mtk.manpages@gmail.com> |
| 6680 | W: http://www.kernel.org/doc/man-pages |
| 6681 | L: linux-man@vger.kernel.org |
| 6682 | S: Maintained |
| 6683 | |
| 6684 | MARVELL ARMADA DRM SUPPORT |
| 6685 | M: Russell King <rmk+kernel@arm.linux.org.uk> |
| 6686 | S: Maintained |
| 6687 | F: drivers/gpu/drm/armada/ |
| 6688 | |
| 6689 | MARVELL 88E6352 DSA support |
| 6690 | M: Guenter Roeck <linux@roeck-us.net> |
| 6691 | S: Maintained |
| 6692 | F: drivers/net/dsa/mv88e6352.c |
| 6693 | |
| 6694 | MARVELL CRYPTO DRIVER |
| 6695 | M: Boris Brezillon <boris.brezillon@free-electrons.com> |
| 6696 | M: Arnaud Ebalard <arno@natisbad.org> |
| 6697 | F: drivers/crypto/marvell/ |
| 6698 | S: Maintained |
| 6699 | L: linux-crypto@vger.kernel.org |
| 6700 | |
| 6701 | MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) |
| 6702 | M: Mirko Lindner <mlindner@marvell.com> |
| 6703 | M: Stephen Hemminger <stephen@networkplumber.org> |
| 6704 | L: netdev@vger.kernel.org |
| 6705 | S: Maintained |
| 6706 | F: drivers/net/ethernet/marvell/sk* |
| 6707 | |
| 6708 | MARVELL LIBERTAS WIRELESS DRIVER |
| 6709 | L: libertas-dev@lists.infradead.org |
| 6710 | S: Orphan |
| 6711 | F: drivers/net/wireless/libertas/ |
| 6712 | |
| 6713 | MARVELL MV643XX ETHERNET DRIVER |
| 6714 | M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
| 6715 | L: netdev@vger.kernel.org |
| 6716 | S: Maintained |
| 6717 | F: drivers/net/ethernet/marvell/mv643xx_eth.* |
| 6718 | F: include/linux/mv643xx.h |
| 6719 | |
| 6720 | MARVELL MVNETA ETHERNET DRIVER |
| 6721 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 6722 | L: netdev@vger.kernel.org |
| 6723 | S: Maintained |
| 6724 | F: drivers/net/ethernet/marvell/mvneta.* |
| 6725 | |
| 6726 | MARVELL MWIFIEX WIRELESS DRIVER |
| 6727 | M: Amitkumar Karwar <akarwar@marvell.com> |
| 6728 | M: Nishant Sarmukadam <nishants@marvell.com> |
| 6729 | L: linux-wireless@vger.kernel.org |
| 6730 | S: Maintained |
| 6731 | F: drivers/net/wireless/mwifiex/ |
| 6732 | |
| 6733 | MARVELL MWL8K WIRELESS DRIVER |
| 6734 | M: Lennert Buytenhek <buytenh@wantstofly.org> |
| 6735 | L: linux-wireless@vger.kernel.org |
| 6736 | S: Odd Fixes |
| 6737 | F: drivers/net/wireless/mwl8k.c |
| 6738 | |
| 6739 | MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER |
| 6740 | M: Nicolas Pitre <nico@fluxnic.net> |
| 6741 | S: Odd Fixes |
| 6742 | F: drivers/mmc/host/mvsdio.* |
| 6743 | |
| 6744 | MATROX FRAMEBUFFER DRIVER |
| 6745 | L: linux-fbdev@vger.kernel.org |
| 6746 | S: Orphan |
| 6747 | F: drivers/video/fbdev/matrox/matroxfb_* |
| 6748 | F: include/uapi/linux/matroxfb.h |
| 6749 | |
| 6750 | MAX16065 HARDWARE MONITOR DRIVER |
| 6751 | M: Guenter Roeck <linux@roeck-us.net> |
| 6752 | L: linux-hwmon@vger.kernel.org |
| 6753 | S: Maintained |
| 6754 | F: Documentation/hwmon/max16065 |
| 6755 | F: drivers/hwmon/max16065.c |
| 6756 | |
| 6757 | MAX20751 HARDWARE MONITOR DRIVER |
| 6758 | M: Guenter Roeck <linux@roeck-us.net> |
| 6759 | L: linux-hwmon@vger.kernel.org |
| 6760 | S: Maintained |
| 6761 | F: Documentation/hwmon/max20751 |
| 6762 | F: drivers/hwmon/max20751.c |
| 6763 | |
| 6764 | MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER |
| 6765 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
| 6766 | L: linux-hwmon@vger.kernel.org |
| 6767 | S: Maintained |
| 6768 | F: Documentation/hwmon/max6650 |
| 6769 | F: drivers/hwmon/max6650.c |
| 6770 | |
| 6771 | MAX6697 HARDWARE MONITOR DRIVER |
| 6772 | M: Guenter Roeck <linux@roeck-us.net> |
| 6773 | L: linux-hwmon@vger.kernel.org |
| 6774 | S: Maintained |
| 6775 | F: Documentation/hwmon/max6697 |
| 6776 | F: Documentation/devicetree/bindings/i2c/max6697.txt |
| 6777 | F: drivers/hwmon/max6697.c |
| 6778 | F: include/linux/platform_data/max6697.h |
| 6779 | |
| 6780 | MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS |
| 6781 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
| 6782 | L: linux-pm@vger.kernel.org |
| 6783 | S: Supported |
| 6784 | F: drivers/power/max14577_charger.c |
| 6785 | F: drivers/power/max77693_charger.c |
| 6786 | |
| 6787 | MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS |
| 6788 | M: Javier Martinez Canillas <javier@osg.samsung.com> |
| 6789 | L: linux-kernel@vger.kernel.org |
| 6790 | S: Supported |
| 6791 | F: drivers/*/*max77802.c |
| 6792 | F: Documentation/devicetree/bindings/*/*max77802.txt |
| 6793 | F: include/dt-bindings/*/*max77802.h |
| 6794 | |
| 6795 | MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS |
| 6796 | M: Chanwoo Choi <cw00.choi@samsung.com> |
| 6797 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
| 6798 | L: linux-kernel@vger.kernel.org |
| 6799 | S: Supported |
| 6800 | F: drivers/*/max14577.c |
| 6801 | F: drivers/*/max77686.c |
| 6802 | F: drivers/*/max77693.c |
| 6803 | F: drivers/extcon/extcon-max14577.c |
| 6804 | F: drivers/extcon/extcon-max77693.c |
| 6805 | F: drivers/rtc/rtc-max77686.c |
| 6806 | F: drivers/clk/clk-max77686.c |
| 6807 | F: Documentation/devicetree/bindings/mfd/max14577.txt |
| 6808 | F: Documentation/devicetree/bindings/*/max77686.txt |
| 6809 | F: Documentation/devicetree/bindings/mfd/max77693.txt |
| 6810 | F: Documentation/devicetree/bindings/clock/maxim,max77686.txt |
| 6811 | F: include/linux/mfd/max14577*.h |
| 6812 | F: include/linux/mfd/max77686*.h |
| 6813 | F: include/linux/mfd/max77693*.h |
| 6814 | |
| 6815 | MAXIRADIO FM RADIO RECEIVER DRIVER |
| 6816 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 6817 | L: linux-media@vger.kernel.org |
| 6818 | T: git git://linuxtv.org/media_tree.git |
| 6819 | W: http://linuxtv.org |
| 6820 | S: Maintained |
| 6821 | F: drivers/media/radio/radio-maxiradio* |
| 6822 | |
| 6823 | MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER |
| 6824 | M: Peter Rosin <peda@axentia.se> |
| 6825 | L: linux-iio@vger.kernel.org |
| 6826 | S: Maintained |
| 6827 | F: drivers/iio/potentiometer/mcp4531.c |
| 6828 | |
| 6829 | MEDIA DRIVERS FOR RENESAS - VSP1 |
| 6830 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 6831 | L: linux-media@vger.kernel.org |
| 6832 | L: linux-sh@vger.kernel.org |
| 6833 | T: git git://linuxtv.org/media_tree.git |
| 6834 | S: Supported |
| 6835 | F: Documentation/devicetree/bindings/media/renesas,vsp1.txt |
| 6836 | F: drivers/media/platform/vsp1/ |
| 6837 | |
| 6838 | MEDIA DRIVERS FOR ASCOT2E |
| 6839 | M: Sergey Kozlov <serjk@netup.ru> |
| 6840 | L: linux-media@vger.kernel.org |
| 6841 | W: http://linuxtv.org |
| 6842 | W: http://netup.tv/ |
| 6843 | T: git git://linuxtv.org/media_tree.git |
| 6844 | S: Supported |
| 6845 | F: drivers/media/dvb-frontends/ascot2e* |
| 6846 | |
| 6847 | MEDIA DRIVERS FOR CXD2841ER |
| 6848 | M: Sergey Kozlov <serjk@netup.ru> |
| 6849 | L: linux-media@vger.kernel.org |
| 6850 | W: http://linuxtv.org/ |
| 6851 | W: http://netup.tv/ |
| 6852 | T: git git://linuxtv.org/media_tree.git |
| 6853 | S: Supported |
| 6854 | F: drivers/media/dvb-frontends/cxd2841er* |
| 6855 | |
| 6856 | MEDIA DRIVERS FOR HORUS3A |
| 6857 | M: Sergey Kozlov <serjk@netup.ru> |
| 6858 | L: linux-media@vger.kernel.org |
| 6859 | W: http://linuxtv.org/ |
| 6860 | W: http://netup.tv/ |
| 6861 | T: git git://linuxtv.org/media_tree.git |
| 6862 | S: Supported |
| 6863 | F: drivers/media/dvb-frontends/horus3a* |
| 6864 | |
| 6865 | MEDIA DRIVERS FOR LNBH25 |
| 6866 | M: Sergey Kozlov <serjk@netup.ru> |
| 6867 | L: linux-media@vger.kernel.org |
| 6868 | W: http://linuxtv.org/ |
| 6869 | W: http://netup.tv/ |
| 6870 | T: git git://linuxtv.org/media_tree.git |
| 6871 | S: Supported |
| 6872 | F: drivers/media/dvb-frontends/lnbh25* |
| 6873 | |
| 6874 | MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices |
| 6875 | M: Sergey Kozlov <serjk@netup.ru> |
| 6876 | L: linux-media@vger.kernel.org |
| 6877 | W: http://linuxtv.org/ |
| 6878 | W: http://netup.tv/ |
| 6879 | T: git git://linuxtv.org/media_tree.git |
| 6880 | S: Supported |
| 6881 | F: drivers/media/pci/netup_unidvb/* |
| 6882 | |
| 6883 | MEDIA INPUT INFRASTRUCTURE (V4L/DVB) |
| 6884 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 6885 | P: LinuxTV.org Project |
| 6886 | L: linux-media@vger.kernel.org |
| 6887 | W: http://linuxtv.org |
| 6888 | Q: http://patchwork.kernel.org/project/linux-media/list/ |
| 6889 | T: git git://linuxtv.org/media_tree.git |
| 6890 | S: Maintained |
| 6891 | F: Documentation/dvb/ |
| 6892 | F: Documentation/video4linux/ |
| 6893 | F: Documentation/DocBook/media/ |
| 6894 | F: drivers/media/ |
| 6895 | F: drivers/staging/media/ |
| 6896 | F: include/media/ |
| 6897 | F: include/uapi/linux/dvb/ |
| 6898 | F: include/uapi/linux/videodev2.h |
| 6899 | F: include/uapi/linux/media.h |
| 6900 | F: include/uapi/linux/v4l2-* |
| 6901 | F: include/uapi/linux/meye.h |
| 6902 | F: include/uapi/linux/ivtv* |
| 6903 | F: include/uapi/linux/uvcvideo.h |
| 6904 | |
| 6905 | MEDIATEK MT7601U WIRELESS LAN DRIVER |
| 6906 | M: Jakub Kicinski <kubakici@wp.pl> |
| 6907 | L: linux-wireless@vger.kernel.org |
| 6908 | S: Maintained |
| 6909 | F: drivers/net/wireless/mediatek/mt7601u/ |
| 6910 | |
| 6911 | MEGARAID SCSI/SAS DRIVERS |
| 6912 | M: Kashyap Desai <kashyap.desai@avagotech.com> |
| 6913 | M: Sumit Saxena <sumit.saxena@avagotech.com> |
| 6914 | M: Uday Lingala <uday.lingala@avagotech.com> |
| 6915 | L: megaraidlinux.pdl@avagotech.com |
| 6916 | L: linux-scsi@vger.kernel.org |
| 6917 | W: http://www.lsi.com |
| 6918 | S: Maintained |
| 6919 | F: Documentation/scsi/megaraid.txt |
| 6920 | F: drivers/scsi/megaraid.* |
| 6921 | F: drivers/scsi/megaraid/ |
| 6922 | |
| 6923 | MELLANOX ETHERNET DRIVER (mlx4_en) |
| 6924 | M: Eugenia Emantayev <eugenia@mellanox.com> |
| 6925 | L: netdev@vger.kernel.org |
| 6926 | S: Supported |
| 6927 | W: http://www.mellanox.com |
| 6928 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 6929 | F: drivers/net/ethernet/mellanox/mlx4/en_* |
| 6930 | |
| 6931 | MELLANOX ETHERNET DRIVER (mlx5e) |
| 6932 | M: Saeed Mahameed <saeedm@mellanox.com> |
| 6933 | L: netdev@vger.kernel.org |
| 6934 | S: Supported |
| 6935 | W: http://www.mellanox.com |
| 6936 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 6937 | F: drivers/net/ethernet/mellanox/mlx5/core/en_* |
| 6938 | |
| 6939 | MELLANOX ETHERNET SWITCH DRIVERS |
| 6940 | M: Jiri Pirko <jiri@mellanox.com> |
| 6941 | M: Ido Schimmel <idosch@mellanox.com> |
| 6942 | L: netdev@vger.kernel.org |
| 6943 | S: Supported |
| 6944 | W: http://www.mellanox.com |
| 6945 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 6946 | F: drivers/net/ethernet/mellanox/mlxsw/ |
| 6947 | |
| 6948 | MEMBARRIER SUPPORT |
| 6949 | M: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 6950 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
| 6951 | L: linux-kernel@vger.kernel.org |
| 6952 | S: Supported |
| 6953 | F: kernel/membarrier.c |
| 6954 | F: include/uapi/linux/membarrier.h |
| 6955 | |
| 6956 | MEMORY MANAGEMENT |
| 6957 | L: linux-mm@kvack.org |
| 6958 | W: http://www.linux-mm.org |
| 6959 | S: Maintained |
| 6960 | F: include/linux/mm.h |
| 6961 | F: include/linux/gfp.h |
| 6962 | F: include/linux/mmzone.h |
| 6963 | F: include/linux/memory_hotplug.h |
| 6964 | F: include/linux/vmalloc.h |
| 6965 | F: mm/ |
| 6966 | |
| 6967 | MEMORY TECHNOLOGY DEVICES (MTD) |
| 6968 | M: David Woodhouse <dwmw2@infradead.org> |
| 6969 | M: Brian Norris <computersforpeace@gmail.com> |
| 6970 | L: linux-mtd@lists.infradead.org |
| 6971 | W: http://www.linux-mtd.infradead.org/ |
| 6972 | Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ |
| 6973 | T: git git://git.infradead.org/linux-mtd.git |
| 6974 | T: git git://git.infradead.org/l2-mtd.git |
| 6975 | S: Maintained |
| 6976 | F: drivers/mtd/ |
| 6977 | F: include/linux/mtd/ |
| 6978 | F: include/uapi/mtd/ |
| 6979 | |
| 6980 | MEN A21 WATCHDOG DRIVER |
| 6981 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
| 6982 | L: linux-watchdog@vger.kernel.org |
| 6983 | S: Maintained |
| 6984 | F: drivers/watchdog/mena21_wdt.c |
| 6985 | |
| 6986 | MEN CHAMELEON BUS (mcb) |
| 6987 | M: Johannes Thumshirn <morbidrsa@gmail.com> |
| 6988 | S: Maintained |
| 6989 | F: drivers/mcb/ |
| 6990 | F: include/linux/mcb.h |
| 6991 | F: Documentation/men-chameleon-bus.txt |
| 6992 | |
| 6993 | MEN F21BMC (Board Management Controller) |
| 6994 | M: Andreas Werner <andreas.werner@men.de> |
| 6995 | S: Supported |
| 6996 | F: drivers/mfd/menf21bmc.c |
| 6997 | F: drivers/watchdog/menf21bmc_wdt.c |
| 6998 | F: drivers/leds/leds-menf21bmc.c |
| 6999 | F: drivers/hwmon/menf21bmc_hwmon.c |
| 7000 | F: Documentation/hwmon/menf21bmc |
| 7001 | |
| 7002 | METAG ARCHITECTURE |
| 7003 | M: James Hogan <james.hogan@imgtec.com> |
| 7004 | L: linux-metag@vger.kernel.org |
| 7005 | S: Odd Fixes |
| 7006 | F: arch/metag/ |
| 7007 | F: Documentation/metag/ |
| 7008 | F: Documentation/devicetree/bindings/metag/ |
| 7009 | F: Documentation/devicetree/bindings/interrupt-controller/img,* |
| 7010 | F: drivers/clocksource/metag_generic.c |
| 7011 | F: drivers/irqchip/irq-metag.c |
| 7012 | F: drivers/irqchip/irq-metag-ext.c |
| 7013 | F: drivers/tty/metag_da.c |
| 7014 | |
| 7015 | MICROBLAZE ARCHITECTURE |
| 7016 | M: Michal Simek <monstr@monstr.eu> |
| 7017 | W: http://www.monstr.eu/fdt/ |
| 7018 | T: git git://git.monstr.eu/linux-2.6-microblaze.git |
| 7019 | S: Supported |
| 7020 | F: arch/microblaze/ |
| 7021 | |
| 7022 | MICROSOFT SURFACE PRO 3 BUTTON DRIVER |
| 7023 | M: Chen Yu <yu.c.chen@intel.com> |
| 7024 | L: platform-driver-x86@vger.kernel.org |
| 7025 | S: Supported |
| 7026 | F: drivers/platform/x86/surfacepro3_button.c |
| 7027 | |
| 7028 | MICROTEK X6 SCANNER |
| 7029 | M: Oliver Neukum <oliver@neukum.org> |
| 7030 | S: Maintained |
| 7031 | F: drivers/usb/image/microtek.* |
| 7032 | |
| 7033 | MIPS |
| 7034 | M: Ralf Baechle <ralf@linux-mips.org> |
| 7035 | L: linux-mips@linux-mips.org |
| 7036 | W: http://www.linux-mips.org/ |
| 7037 | T: git git://git.linux-mips.org/pub/scm/ralf/linux.git |
| 7038 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
| 7039 | S: Supported |
| 7040 | F: Documentation/mips/ |
| 7041 | F: arch/mips/ |
| 7042 | |
| 7043 | MIROSOUND PCM20 FM RADIO RECEIVER DRIVER |
| 7044 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 7045 | L: linux-media@vger.kernel.org |
| 7046 | T: git git://linuxtv.org/media_tree.git |
| 7047 | W: http://linuxtv.org |
| 7048 | S: Odd Fixes |
| 7049 | F: drivers/media/radio/radio-miropcm20* |
| 7050 | |
| 7051 | Mellanox MLX5 core VPI driver |
| 7052 | M: Eli Cohen <eli@mellanox.com> |
| 7053 | L: netdev@vger.kernel.org |
| 7054 | L: linux-rdma@vger.kernel.org |
| 7055 | W: http://www.mellanox.com |
| 7056 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 7057 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 7058 | T: git git://openfabrics.org/~eli/connect-ib.git |
| 7059 | S: Supported |
| 7060 | F: drivers/net/ethernet/mellanox/mlx5/core/ |
| 7061 | F: include/linux/mlx5/ |
| 7062 | |
| 7063 | Mellanox MLX5 IB driver |
| 7064 | M: Eli Cohen <eli@mellanox.com> |
| 7065 | L: linux-rdma@vger.kernel.org |
| 7066 | W: http://www.mellanox.com |
| 7067 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 7068 | T: git git://openfabrics.org/~eli/connect-ib.git |
| 7069 | S: Supported |
| 7070 | F: include/linux/mlx5/ |
| 7071 | F: drivers/infiniband/hw/mlx5/ |
| 7072 | |
| 7073 | MELEXIS MLX90614 DRIVER |
| 7074 | M: Crt Mori <cmo@melexis.com> |
| 7075 | L: linux-iio@vger.kernel.org |
| 7076 | W: http://www.melexis.com |
| 7077 | S: Supported |
| 7078 | F: drivers/iio/temperature/mlx90614.c |
| 7079 | |
| 7080 | MN88472 MEDIA DRIVER |
| 7081 | M: Antti Palosaari <crope@iki.fi> |
| 7082 | L: linux-media@vger.kernel.org |
| 7083 | W: http://linuxtv.org/ |
| 7084 | W: http://palosaari.fi/linux/ |
| 7085 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7086 | T: git git://linuxtv.org/anttip/media_tree.git |
| 7087 | S: Maintained |
| 7088 | F: drivers/staging/media/mn88472/ |
| 7089 | F: drivers/media/dvb-frontends/mn88472.h |
| 7090 | |
| 7091 | MN88473 MEDIA DRIVER |
| 7092 | M: Antti Palosaari <crope@iki.fi> |
| 7093 | L: linux-media@vger.kernel.org |
| 7094 | W: http://linuxtv.org/ |
| 7095 | W: http://palosaari.fi/linux/ |
| 7096 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7097 | T: git git://linuxtv.org/anttip/media_tree.git |
| 7098 | S: Maintained |
| 7099 | F: drivers/staging/media/mn88473/ |
| 7100 | F: drivers/media/dvb-frontends/mn88473.h |
| 7101 | |
| 7102 | MODULE SUPPORT |
| 7103 | M: Rusty Russell <rusty@rustcorp.com.au> |
| 7104 | S: Maintained |
| 7105 | F: include/linux/module.h |
| 7106 | F: kernel/module.c |
| 7107 | |
| 7108 | MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER |
| 7109 | W: http://popies.net/meye/ |
| 7110 | S: Orphan |
| 7111 | F: Documentation/video4linux/meye.txt |
| 7112 | F: drivers/media/pci/meye/ |
| 7113 | F: include/uapi/linux/meye.h |
| 7114 | |
| 7115 | MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD |
| 7116 | M: Jiri Slaby <jirislaby@gmail.com> |
| 7117 | S: Maintained |
| 7118 | F: Documentation/serial/moxa-smartio |
| 7119 | F: drivers/tty/mxser.* |
| 7120 | |
| 7121 | MR800 AVERMEDIA USB FM RADIO DRIVER |
| 7122 | M: Alexey Klimov <klimov.linux@gmail.com> |
| 7123 | L: linux-media@vger.kernel.org |
| 7124 | T: git git://linuxtv.org/media_tree.git |
| 7125 | S: Maintained |
| 7126 | F: drivers/media/radio/radio-mr800.c |
| 7127 | |
| 7128 | MRF24J40 IEEE 802.15.4 RADIO DRIVER |
| 7129 | M: Alan Ott <alan@signal11.us> |
| 7130 | L: linux-wpan@vger.kernel.org |
| 7131 | S: Maintained |
| 7132 | F: drivers/net/ieee802154/mrf24j40.c |
| 7133 | F: Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt |
| 7134 | |
| 7135 | MSI LAPTOP SUPPORT |
| 7136 | M: "Lee, Chun-Yi" <jlee@suse.com> |
| 7137 | L: platform-driver-x86@vger.kernel.org |
| 7138 | S: Maintained |
| 7139 | F: drivers/platform/x86/msi-laptop.c |
| 7140 | |
| 7141 | MSI WMI SUPPORT |
| 7142 | L: platform-driver-x86@vger.kernel.org |
| 7143 | S: Orphan |
| 7144 | F: drivers/platform/x86/msi-wmi.c |
| 7145 | |
| 7146 | MSI001 MEDIA DRIVER |
| 7147 | M: Antti Palosaari <crope@iki.fi> |
| 7148 | L: linux-media@vger.kernel.org |
| 7149 | W: http://linuxtv.org/ |
| 7150 | W: http://palosaari.fi/linux/ |
| 7151 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7152 | T: git git://linuxtv.org/anttip/media_tree.git |
| 7153 | S: Maintained |
| 7154 | F: drivers/media/tuners/msi001* |
| 7155 | |
| 7156 | MSI2500 MEDIA DRIVER |
| 7157 | M: Antti Palosaari <crope@iki.fi> |
| 7158 | L: linux-media@vger.kernel.org |
| 7159 | W: http://linuxtv.org/ |
| 7160 | W: http://palosaari.fi/linux/ |
| 7161 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7162 | T: git git://linuxtv.org/anttip/media_tree.git |
| 7163 | S: Maintained |
| 7164 | F: drivers/media/usb/msi2500/ |
| 7165 | |
| 7166 | MSYSTEMS DISKONCHIP G3 MTD DRIVER |
| 7167 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 7168 | L: linux-mtd@lists.infradead.org |
| 7169 | S: Maintained |
| 7170 | F: drivers/mtd/devices/docg3* |
| 7171 | |
| 7172 | MT9M032 APTINA SENSOR DRIVER |
| 7173 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7174 | L: linux-media@vger.kernel.org |
| 7175 | T: git git://linuxtv.org/media_tree.git |
| 7176 | S: Maintained |
| 7177 | F: drivers/media/i2c/mt9m032.c |
| 7178 | F: include/media/mt9m032.h |
| 7179 | |
| 7180 | MT9P031 APTINA CAMERA SENSOR |
| 7181 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7182 | L: linux-media@vger.kernel.org |
| 7183 | T: git git://linuxtv.org/media_tree.git |
| 7184 | S: Maintained |
| 7185 | F: drivers/media/i2c/mt9p031.c |
| 7186 | F: include/media/mt9p031.h |
| 7187 | |
| 7188 | MT9T001 APTINA CAMERA SENSOR |
| 7189 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7190 | L: linux-media@vger.kernel.org |
| 7191 | T: git git://linuxtv.org/media_tree.git |
| 7192 | S: Maintained |
| 7193 | F: drivers/media/i2c/mt9t001.c |
| 7194 | F: include/media/mt9t001.h |
| 7195 | |
| 7196 | MT9V032 APTINA CAMERA SENSOR |
| 7197 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7198 | L: linux-media@vger.kernel.org |
| 7199 | T: git git://linuxtv.org/media_tree.git |
| 7200 | S: Maintained |
| 7201 | F: Documentation/devicetree/bindings/media/i2c/mt9v032.txt |
| 7202 | F: drivers/media/i2c/mt9v032.c |
| 7203 | F: include/media/mt9v032.h |
| 7204 | |
| 7205 | MULTIFUNCTION DEVICES (MFD) |
| 7206 | M: Lee Jones <lee.jones@linaro.org> |
| 7207 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
| 7208 | S: Supported |
| 7209 | F: drivers/mfd/ |
| 7210 | F: include/linux/mfd/ |
| 7211 | |
| 7212 | MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM |
| 7213 | M: Ulf Hansson <ulf.hansson@linaro.org> |
| 7214 | L: linux-mmc@vger.kernel.org |
| 7215 | T: git git://git.linaro.org/people/ulf.hansson/mmc.git |
| 7216 | S: Maintained |
| 7217 | F: drivers/mmc/ |
| 7218 | F: include/linux/mmc/ |
| 7219 | F: include/uapi/linux/mmc/ |
| 7220 | |
| 7221 | MULTIMEDIA CARD (MMC) ETC. OVER SPI |
| 7222 | S: Orphan |
| 7223 | F: drivers/mmc/host/mmc_spi.c |
| 7224 | F: include/linux/spi/mmc_spi.h |
| 7225 | |
| 7226 | MULTISOUND SOUND DRIVER |
| 7227 | M: Andrew Veliath <andrewtv@usa.net> |
| 7228 | S: Maintained |
| 7229 | F: Documentation/sound/oss/MultiSound |
| 7230 | F: sound/oss/msnd* |
| 7231 | |
| 7232 | MULTITECH MULTIPORT CARD (ISICOM) |
| 7233 | S: Orphan |
| 7234 | F: drivers/tty/isicom.c |
| 7235 | F: include/linux/isicom.h |
| 7236 | |
| 7237 | MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER |
| 7238 | M: Felipe Balbi <balbi@ti.com> |
| 7239 | L: linux-usb@vger.kernel.org |
| 7240 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 7241 | S: Maintained |
| 7242 | F: drivers/usb/musb/ |
| 7243 | |
| 7244 | MXL5007T MEDIA DRIVER |
| 7245 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 7246 | L: linux-media@vger.kernel.org |
| 7247 | W: http://linuxtv.org/ |
| 7248 | W: http://github.com/mkrufky |
| 7249 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 7250 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 7251 | S: Maintained |
| 7252 | F: drivers/media/tuners/mxl5007t.* |
| 7253 | |
| 7254 | MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) |
| 7255 | M: Hyong-Youb Kim <hykim@myri.com> |
| 7256 | L: netdev@vger.kernel.org |
| 7257 | W: https://www.myricom.com/support/downloads/myri10ge.html |
| 7258 | S: Supported |
| 7259 | F: drivers/net/ethernet/myricom/myri10ge/ |
| 7260 | |
| 7261 | NATSEMI ETHERNET DRIVER (DP8381x) |
| 7262 | S: Orphan |
| 7263 | F: drivers/net/ethernet/natsemi/natsemi.c |
| 7264 | |
| 7265 | NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER |
| 7266 | M: Daniel Mack <zonque@gmail.com> |
| 7267 | S: Maintained |
| 7268 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 7269 | W: http://www.native-instruments.com |
| 7270 | F: sound/usb/caiaq/ |
| 7271 | |
| 7272 | NCP FILESYSTEM |
| 7273 | M: Petr Vandrovec <petr@vandrovec.name> |
| 7274 | S: Odd Fixes |
| 7275 | F: fs/ncpfs/ |
| 7276 | |
| 7277 | NCR 5380 SCSI DRIVERS |
| 7278 | M: Finn Thain <fthain@telegraphics.com.au> |
| 7279 | M: Michael Schmitz <schmitzmic@gmail.com> |
| 7280 | L: linux-scsi@vger.kernel.org |
| 7281 | S: Maintained |
| 7282 | F: Documentation/scsi/g_NCR5380.txt |
| 7283 | F: drivers/scsi/NCR5380.* |
| 7284 | F: drivers/scsi/arm/cumana_1.c |
| 7285 | F: drivers/scsi/arm/oak.c |
| 7286 | F: drivers/scsi/atari_NCR5380.c |
| 7287 | F: drivers/scsi/atari_scsi.* |
| 7288 | F: drivers/scsi/dmx3191d.c |
| 7289 | F: drivers/scsi/dtc.* |
| 7290 | F: drivers/scsi/g_NCR5380.* |
| 7291 | F: drivers/scsi/g_NCR5380_mmio.c |
| 7292 | F: drivers/scsi/mac_scsi.* |
| 7293 | F: drivers/scsi/pas16.* |
| 7294 | F: drivers/scsi/sun3_scsi.* |
| 7295 | F: drivers/scsi/sun3_scsi_vme.c |
| 7296 | F: drivers/scsi/t128.* |
| 7297 | |
| 7298 | NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) |
| 7299 | M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> |
| 7300 | L: linux-scsi@vger.kernel.org |
| 7301 | S: Maintained |
| 7302 | F: drivers/scsi/NCR_D700.* |
| 7303 | |
| 7304 | NCT6775 HARDWARE MONITOR DRIVER |
| 7305 | M: Guenter Roeck <linux@roeck-us.net> |
| 7306 | L: linux-hwmon@vger.kernel.org |
| 7307 | S: Maintained |
| 7308 | F: Documentation/hwmon/nct6775 |
| 7309 | F: drivers/hwmon/nct6775.c |
| 7310 | |
| 7311 | NETEFFECT IWARP RNIC DRIVER (IW_NES) |
| 7312 | M: Faisal Latif <faisal.latif@intel.com> |
| 7313 | L: linux-rdma@vger.kernel.org |
| 7314 | W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm |
| 7315 | S: Supported |
| 7316 | F: drivers/infiniband/hw/nes/ |
| 7317 | |
| 7318 | NETEM NETWORK EMULATOR |
| 7319 | M: Stephen Hemminger <stephen@networkplumber.org> |
| 7320 | L: netem@lists.linux-foundation.org |
| 7321 | S: Maintained |
| 7322 | F: net/sched/sch_netem.c |
| 7323 | |
| 7324 | NETERION 10GbE DRIVERS (s2io/vxge) |
| 7325 | M: Jon Mason <jdmason@kudzu.us> |
| 7326 | L: netdev@vger.kernel.org |
| 7327 | S: Supported |
| 7328 | F: Documentation/networking/s2io.txt |
| 7329 | F: Documentation/networking/vxge.txt |
| 7330 | F: drivers/net/ethernet/neterion/ |
| 7331 | |
| 7332 | NETFILTER ({IP,IP6,ARP,EB,NF}TABLES) |
| 7333 | M: Pablo Neira Ayuso <pablo@netfilter.org> |
| 7334 | M: Patrick McHardy <kaber@trash.net> |
| 7335 | M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> |
| 7336 | L: netfilter-devel@vger.kernel.org |
| 7337 | L: coreteam@netfilter.org |
| 7338 | W: http://www.netfilter.org/ |
| 7339 | W: http://www.iptables.org/ |
| 7340 | Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/ |
| 7341 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git |
| 7342 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git |
| 7343 | S: Supported |
| 7344 | F: include/linux/netfilter* |
| 7345 | F: include/linux/netfilter/ |
| 7346 | F: include/net/netfilter/ |
| 7347 | F: include/uapi/linux/netfilter* |
| 7348 | F: include/uapi/linux/netfilter/ |
| 7349 | F: net/*/netfilter.c |
| 7350 | F: net/*/netfilter/ |
| 7351 | F: net/netfilter/ |
| 7352 | F: net/bridge/br_netfilter*.c |
| 7353 | |
| 7354 | NETLABEL |
| 7355 | M: Paul Moore <paul@paul-moore.com> |
| 7356 | W: http://netlabel.sf.net |
| 7357 | L: netdev@vger.kernel.org |
| 7358 | S: Maintained |
| 7359 | F: Documentation/netlabel/ |
| 7360 | F: include/net/netlabel.h |
| 7361 | F: net/netlabel/ |
| 7362 | |
| 7363 | NETROM NETWORK LAYER |
| 7364 | M: Ralf Baechle <ralf@linux-mips.org> |
| 7365 | L: linux-hams@vger.kernel.org |
| 7366 | W: http://www.linux-ax25.org/ |
| 7367 | S: Maintained |
| 7368 | F: include/net/netrom.h |
| 7369 | F: include/uapi/linux/netrom.h |
| 7370 | F: net/netrom/ |
| 7371 | |
| 7372 | NETWORK BLOCK DEVICE (NBD) |
| 7373 | M: Markus Pargmann <mpa@pengutronix.de> |
| 7374 | S: Maintained |
| 7375 | L: nbd-general@lists.sourceforge.net |
| 7376 | T: git git://git.pengutronix.de/git/mpa/linux-nbd.git |
| 7377 | F: Documentation/blockdev/nbd.txt |
| 7378 | F: drivers/block/nbd.c |
| 7379 | F: include/uapi/linux/nbd.h |
| 7380 | |
| 7381 | NETWORK DROP MONITOR |
| 7382 | M: Neil Horman <nhorman@tuxdriver.com> |
| 7383 | L: netdev@vger.kernel.org |
| 7384 | S: Maintained |
| 7385 | W: https://fedorahosted.org/dropwatch/ |
| 7386 | F: net/core/drop_monitor.c |
| 7387 | |
| 7388 | NETWORKING [GENERAL] |
| 7389 | M: "David S. Miller" <davem@davemloft.net> |
| 7390 | L: netdev@vger.kernel.org |
| 7391 | W: http://www.linuxfoundation.org/en/Net |
| 7392 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 7393 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 7394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
| 7395 | S: Maintained |
| 7396 | F: net/ |
| 7397 | F: include/net/ |
| 7398 | F: include/linux/in.h |
| 7399 | F: include/linux/net.h |
| 7400 | F: include/linux/netdevice.h |
| 7401 | F: include/uapi/linux/in.h |
| 7402 | F: include/uapi/linux/net.h |
| 7403 | F: include/uapi/linux/netdevice.h |
| 7404 | F: include/uapi/linux/net_namespace.h |
| 7405 | F: tools/net/ |
| 7406 | F: tools/testing/selftests/net/ |
| 7407 | F: lib/random32.c |
| 7408 | F: lib/test_bpf.c |
| 7409 | |
| 7410 | NETWORKING [IPv4/IPv6] |
| 7411 | M: "David S. Miller" <davem@davemloft.net> |
| 7412 | M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> |
| 7413 | M: James Morris <jmorris@namei.org> |
| 7414 | M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> |
| 7415 | M: Patrick McHardy <kaber@trash.net> |
| 7416 | L: netdev@vger.kernel.org |
| 7417 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 7418 | S: Maintained |
| 7419 | F: net/ipv4/ |
| 7420 | F: net/ipv6/ |
| 7421 | F: include/net/ip* |
| 7422 | F: arch/x86/net/* |
| 7423 | |
| 7424 | NETWORKING [IPSEC] |
| 7425 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 7426 | M: Herbert Xu <herbert@gondor.apana.org.au> |
| 7427 | M: "David S. Miller" <davem@davemloft.net> |
| 7428 | L: netdev@vger.kernel.org |
| 7429 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git |
| 7430 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git |
| 7431 | S: Maintained |
| 7432 | F: net/core/flow.c |
| 7433 | F: net/xfrm/ |
| 7434 | F: net/key/ |
| 7435 | F: net/ipv4/xfrm* |
| 7436 | F: net/ipv4/esp4.c |
| 7437 | F: net/ipv4/ah4.c |
| 7438 | F: net/ipv4/ipcomp.c |
| 7439 | F: net/ipv4/ip_vti.c |
| 7440 | F: net/ipv6/xfrm* |
| 7441 | F: net/ipv6/esp6.c |
| 7442 | F: net/ipv6/ah6.c |
| 7443 | F: net/ipv6/ipcomp6.c |
| 7444 | F: net/ipv6/ip6_vti.c |
| 7445 | F: include/uapi/linux/xfrm.h |
| 7446 | F: include/net/xfrm.h |
| 7447 | |
| 7448 | NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) |
| 7449 | M: Paul Moore <paul@paul-moore.com> |
| 7450 | L: netdev@vger.kernel.org |
| 7451 | S: Maintained |
| 7452 | |
| 7453 | NETWORKING [WIRELESS] |
| 7454 | L: linux-wireless@vger.kernel.org |
| 7455 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
| 7456 | |
| 7457 | NETWORKING DRIVERS |
| 7458 | L: netdev@vger.kernel.org |
| 7459 | W: http://www.linuxfoundation.org/en/Net |
| 7460 | Q: http://patchwork.ozlabs.org/project/netdev/list/ |
| 7461 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git |
| 7462 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git |
| 7463 | S: Odd Fixes |
| 7464 | F: drivers/net/ |
| 7465 | F: include/linux/if_* |
| 7466 | F: include/linux/netdevice.h |
| 7467 | F: include/linux/etherdevice.h |
| 7468 | F: include/linux/fcdevice.h |
| 7469 | F: include/linux/fddidevice.h |
| 7470 | F: include/linux/hippidevice.h |
| 7471 | F: include/linux/inetdevice.h |
| 7472 | F: include/uapi/linux/if_* |
| 7473 | F: include/uapi/linux/netdevice.h |
| 7474 | |
| 7475 | NETWORKING DRIVERS (WIRELESS) |
| 7476 | M: Kalle Valo <kvalo@codeaurora.org> |
| 7477 | L: linux-wireless@vger.kernel.org |
| 7478 | Q: http://patchwork.kernel.org/project/linux-wireless/list/ |
| 7479 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/ |
| 7480 | S: Maintained |
| 7481 | F: drivers/net/wireless/ |
| 7482 | |
| 7483 | NETXEN (1/10) GbE SUPPORT |
| 7484 | M: Manish Chopra <manish.chopra@qlogic.com> |
| 7485 | M: Sony Chacko <sony.chacko@qlogic.com> |
| 7486 | M: Rajesh Borundia <rajesh.borundia@qlogic.com> |
| 7487 | L: netdev@vger.kernel.org |
| 7488 | W: http://www.qlogic.com |
| 7489 | S: Supported |
| 7490 | F: drivers/net/ethernet/qlogic/netxen/ |
| 7491 | |
| 7492 | NFC SUBSYSTEM |
| 7493 | M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> |
| 7494 | M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> |
| 7495 | M: Samuel Ortiz <sameo@linux.intel.com> |
| 7496 | L: linux-wireless@vger.kernel.org |
| 7497 | L: linux-nfc@lists.01.org (subscribers-only) |
| 7498 | S: Supported |
| 7499 | F: net/nfc/ |
| 7500 | F: include/net/nfc/ |
| 7501 | F: include/uapi/linux/nfc.h |
| 7502 | F: drivers/nfc/ |
| 7503 | F: include/linux/platform_data/pn544.h |
| 7504 | F: Documentation/devicetree/bindings/net/nfc/ |
| 7505 | |
| 7506 | NFS, SUNRPC, AND LOCKD CLIENTS |
| 7507 | M: Trond Myklebust <trond.myklebust@primarydata.com> |
| 7508 | M: Anna Schumaker <anna.schumaker@netapp.com> |
| 7509 | L: linux-nfs@vger.kernel.org |
| 7510 | W: http://client.linux-nfs.org |
| 7511 | T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git |
| 7512 | S: Maintained |
| 7513 | F: fs/lockd/ |
| 7514 | F: fs/nfs/ |
| 7515 | F: fs/nfs_common/ |
| 7516 | F: net/sunrpc/ |
| 7517 | F: include/linux/lockd/ |
| 7518 | F: include/linux/nfs* |
| 7519 | F: include/linux/sunrpc/ |
| 7520 | F: include/uapi/linux/nfs* |
| 7521 | F: include/uapi/linux/sunrpc/ |
| 7522 | |
| 7523 | NILFS2 FILESYSTEM |
| 7524 | M: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> |
| 7525 | L: linux-nilfs@vger.kernel.org |
| 7526 | W: http://nilfs.sourceforge.net/ |
| 7527 | T: git git://github.com/konis/nilfs2.git |
| 7528 | S: Supported |
| 7529 | F: Documentation/filesystems/nilfs2.txt |
| 7530 | F: fs/nilfs2/ |
| 7531 | F: include/linux/nilfs2_fs.h |
| 7532 | F: include/trace/events/nilfs2.h |
| 7533 | |
| 7534 | NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER |
| 7535 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
| 7536 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 7537 | S: Maintained |
| 7538 | F: Documentation/scsi/NinjaSCSI.txt |
| 7539 | F: drivers/scsi/pcmcia/nsp_* |
| 7540 | |
| 7541 | NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER |
| 7542 | M: GOTO Masanori <gotom@debian.or.jp> |
| 7543 | M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> |
| 7544 | W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ |
| 7545 | S: Maintained |
| 7546 | F: Documentation/scsi/NinjaSCSI.txt |
| 7547 | F: drivers/scsi/nsp32* |
| 7548 | |
| 7549 | NIOS2 ARCHITECTURE |
| 7550 | M: Ley Foon Tan <lftan@altera.com> |
| 7551 | L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers) |
| 7552 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git |
| 7553 | S: Maintained |
| 7554 | F: arch/nios2/ |
| 7555 | |
| 7556 | NOKIA N900 POWER SUPPLY DRIVERS |
| 7557 | M: Pali RohĂ¡r <pali.rohar@gmail.com> |
| 7558 | S: Maintained |
| 7559 | F: include/linux/power/bq2415x_charger.h |
| 7560 | F: include/linux/power/bq27xxx_battery.h |
| 7561 | F: include/linux/power/isp1704_charger.h |
| 7562 | F: drivers/power/bq2415x_charger.c |
| 7563 | F: drivers/power/bq27xxx_battery.c |
| 7564 | F: drivers/power/isp1704_charger.c |
| 7565 | F: drivers/power/rx51_battery.c |
| 7566 | |
| 7567 | NTB DRIVER CORE |
| 7568 | M: Jon Mason <jdmason@kudzu.us> |
| 7569 | M: Dave Jiang <dave.jiang@intel.com> |
| 7570 | M: Allen Hubbe <Allen.Hubbe@emc.com> |
| 7571 | L: linux-ntb@googlegroups.com |
| 7572 | S: Supported |
| 7573 | W: https://github.com/jonmason/ntb/wiki |
| 7574 | T: git git://github.com/jonmason/ntb.git |
| 7575 | F: drivers/ntb/ |
| 7576 | F: drivers/net/ntb_netdev.c |
| 7577 | F: include/linux/ntb.h |
| 7578 | F: include/linux/ntb_transport.h |
| 7579 | |
| 7580 | NTB INTEL DRIVER |
| 7581 | M: Jon Mason <jdmason@kudzu.us> |
| 7582 | M: Dave Jiang <dave.jiang@intel.com> |
| 7583 | L: linux-ntb@googlegroups.com |
| 7584 | S: Supported |
| 7585 | W: https://github.com/jonmason/ntb/wiki |
| 7586 | T: git git://github.com/jonmason/ntb.git |
| 7587 | F: drivers/ntb/hw/intel/ |
| 7588 | |
| 7589 | NTFS FILESYSTEM |
| 7590 | M: Anton Altaparmakov <anton@tuxera.com> |
| 7591 | L: linux-ntfs-dev@lists.sourceforge.net |
| 7592 | W: http://www.tuxera.com/ |
| 7593 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git |
| 7594 | S: Supported |
| 7595 | F: Documentation/filesystems/ntfs.txt |
| 7596 | F: fs/ntfs/ |
| 7597 | |
| 7598 | NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER |
| 7599 | M: Antonino Daplas <adaplas@gmail.com> |
| 7600 | L: linux-fbdev@vger.kernel.org |
| 7601 | S: Maintained |
| 7602 | F: drivers/video/fbdev/riva/ |
| 7603 | F: drivers/video/fbdev/nvidia/ |
| 7604 | |
| 7605 | NVM EXPRESS DRIVER |
| 7606 | M: Keith Busch <keith.busch@intel.com> |
| 7607 | M: Jens Axboe <axboe@fb.com> |
| 7608 | L: linux-nvme@lists.infradead.org |
| 7609 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git |
| 7610 | W: https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/ |
| 7611 | S: Supported |
| 7612 | F: drivers/nvme/host/ |
| 7613 | F: include/linux/nvme.h |
| 7614 | |
| 7615 | NVMEM FRAMEWORK |
| 7616 | M: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
| 7617 | M: Maxime Ripard <maxime.ripard@free-electrons.com> |
| 7618 | S: Maintained |
| 7619 | F: drivers/nvmem/ |
| 7620 | F: Documentation/devicetree/bindings/nvmem/ |
| 7621 | F: include/linux/nvmem-consumer.h |
| 7622 | F: include/linux/nvmem-provider.h |
| 7623 | |
| 7624 | NXP-NCI NFC DRIVER |
| 7625 | M: Clément Perrochaud <clement.perrochaud@effinnov.com> |
| 7626 | R: Charles Gorand <charles.gorand@effinnov.com> |
| 7627 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
| 7628 | S: Supported |
| 7629 | F: drivers/nfc/nxp-nci |
| 7630 | |
| 7631 | NXP TDA998X DRM DRIVER |
| 7632 | M: Russell King <rmk+kernel@arm.linux.org.uk> |
| 7633 | S: Supported |
| 7634 | F: drivers/gpu/drm/i2c/tda998x_drv.c |
| 7635 | F: include/drm/i2c/tda998x.h |
| 7636 | |
| 7637 | NXP TFA9879 DRIVER |
| 7638 | M: Peter Rosin <peda@axentia.se> |
| 7639 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 7640 | S: Maintained |
| 7641 | F: sound/soc/codecs/tfa9879* |
| 7642 | |
| 7643 | OMAP SUPPORT |
| 7644 | M: Tony Lindgren <tony@atomide.com> |
| 7645 | L: linux-omap@vger.kernel.org |
| 7646 | W: http://www.muru.com/linux/omap/ |
| 7647 | W: http://linux.omap.com/ |
| 7648 | Q: http://patchwork.kernel.org/project/linux-omap/list/ |
| 7649 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git |
| 7650 | S: Maintained |
| 7651 | F: arch/arm/*omap*/ |
| 7652 | F: arch/arm/configs/omap1_defconfig |
| 7653 | F: arch/arm/configs/omap2plus_defconfig |
| 7654 | F: drivers/i2c/busses/i2c-omap.c |
| 7655 | F: drivers/irqchip/irq-omap-intc.c |
| 7656 | F: drivers/mfd/*omap*.c |
| 7657 | F: drivers/mfd/menelaus.c |
| 7658 | F: drivers/mfd/palmas.c |
| 7659 | F: drivers/mfd/tps65217.c |
| 7660 | F: drivers/mfd/tps65218.c |
| 7661 | F: drivers/mfd/tps65910.c |
| 7662 | F: drivers/mfd/twl-core.[ch] |
| 7663 | F: drivers/mfd/twl4030*.c |
| 7664 | F: drivers/mfd/twl6030*.c |
| 7665 | F: drivers/mfd/twl6040*.c |
| 7666 | F: drivers/regulator/palmas-regulator*.c |
| 7667 | F: drivers/regulator/pbias-regulator.c |
| 7668 | F: drivers/regulator/tps65217-regulator.c |
| 7669 | F: drivers/regulator/tps65218-regulator.c |
| 7670 | F: drivers/regulator/tps65910-regulator.c |
| 7671 | F: drivers/regulator/twl-regulator.c |
| 7672 | F: include/linux/i2c-omap.h |
| 7673 | |
| 7674 | OMAP DEVICE TREE SUPPORT |
| 7675 | M: Benoît Cousson <bcousson@baylibre.com> |
| 7676 | M: Tony Lindgren <tony@atomide.com> |
| 7677 | L: linux-omap@vger.kernel.org |
| 7678 | L: devicetree@vger.kernel.org |
| 7679 | S: Maintained |
| 7680 | F: arch/arm/boot/dts/*omap* |
| 7681 | F: arch/arm/boot/dts/*am3* |
| 7682 | F: arch/arm/boot/dts/*am4* |
| 7683 | F: arch/arm/boot/dts/*am5* |
| 7684 | F: arch/arm/boot/dts/*dra7* |
| 7685 | |
| 7686 | OMAP CLOCK FRAMEWORK SUPPORT |
| 7687 | M: Paul Walmsley <paul@pwsan.com> |
| 7688 | L: linux-omap@vger.kernel.org |
| 7689 | S: Maintained |
| 7690 | F: arch/arm/*omap*/*clock* |
| 7691 | |
| 7692 | OMAP POWER MANAGEMENT SUPPORT |
| 7693 | M: Kevin Hilman <khilman@deeprootsystems.com> |
| 7694 | L: linux-omap@vger.kernel.org |
| 7695 | S: Maintained |
| 7696 | F: arch/arm/*omap*/*pm* |
| 7697 | F: drivers/cpufreq/omap-cpufreq.c |
| 7698 | |
| 7699 | OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT |
| 7700 | M: Rajendra Nayak <rnayak@ti.com> |
| 7701 | M: Paul Walmsley <paul@pwsan.com> |
| 7702 | L: linux-omap@vger.kernel.org |
| 7703 | S: Maintained |
| 7704 | F: arch/arm/mach-omap2/prm* |
| 7705 | |
| 7706 | OMAP AUDIO SUPPORT |
| 7707 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
| 7708 | M: Jarkko Nikula <jarkko.nikula@bitmer.com> |
| 7709 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 7710 | L: linux-omap@vger.kernel.org |
| 7711 | S: Maintained |
| 7712 | F: sound/soc/omap/ |
| 7713 | |
| 7714 | OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT |
| 7715 | M: Roger Quadros <rogerq@ti.com> |
| 7716 | M: Tony Lindgren <tony@atomide.com> |
| 7717 | L: linux-omap@vger.kernel.org |
| 7718 | S: Maintained |
| 7719 | F: drivers/memory/omap-gpmc.c |
| 7720 | F: arch/arm/mach-omap2/*gpmc* |
| 7721 | |
| 7722 | OMAP FRAMEBUFFER SUPPORT |
| 7723 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
| 7724 | L: linux-fbdev@vger.kernel.org |
| 7725 | L: linux-omap@vger.kernel.org |
| 7726 | S: Maintained |
| 7727 | F: drivers/video/fbdev/omap/ |
| 7728 | |
| 7729 | OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) |
| 7730 | M: Tomi Valkeinen <tomi.valkeinen@ti.com> |
| 7731 | L: linux-omap@vger.kernel.org |
| 7732 | L: linux-fbdev@vger.kernel.org |
| 7733 | S: Maintained |
| 7734 | F: drivers/video/fbdev/omap2/ |
| 7735 | F: Documentation/arm/OMAP/DSS |
| 7736 | |
| 7737 | OMAP HARDWARE SPINLOCK SUPPORT |
| 7738 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 7739 | L: linux-omap@vger.kernel.org |
| 7740 | S: Maintained |
| 7741 | F: drivers/hwspinlock/omap_hwspinlock.c |
| 7742 | |
| 7743 | OMAP MMC SUPPORT |
| 7744 | M: Jarkko Lavinen <jarkko.lavinen@nokia.com> |
| 7745 | L: linux-omap@vger.kernel.org |
| 7746 | S: Maintained |
| 7747 | F: drivers/mmc/host/omap.c |
| 7748 | |
| 7749 | OMAP HS MMC SUPPORT |
| 7750 | L: linux-mmc@vger.kernel.org |
| 7751 | L: linux-omap@vger.kernel.org |
| 7752 | S: Orphan |
| 7753 | F: drivers/mmc/host/omap_hsmmc.c |
| 7754 | |
| 7755 | OMAP RANDOM NUMBER GENERATOR SUPPORT |
| 7756 | M: Deepak Saxena <dsaxena@plexity.net> |
| 7757 | S: Maintained |
| 7758 | F: drivers/char/hw_random/omap-rng.c |
| 7759 | |
| 7760 | OMAP HWMOD SUPPORT |
| 7761 | M: Benoît Cousson <bcousson@baylibre.com> |
| 7762 | M: Paul Walmsley <paul@pwsan.com> |
| 7763 | L: linux-omap@vger.kernel.org |
| 7764 | S: Maintained |
| 7765 | F: arch/arm/mach-omap2/omap_hwmod.* |
| 7766 | |
| 7767 | OMAP HWMOD DATA |
| 7768 | M: Paul Walmsley <paul@pwsan.com> |
| 7769 | L: linux-omap@vger.kernel.org |
| 7770 | S: Maintained |
| 7771 | F: arch/arm/mach-omap2/omap_hwmod*data* |
| 7772 | |
| 7773 | OMAP HWMOD DATA FOR OMAP4-BASED DEVICES |
| 7774 | M: Benoît Cousson <bcousson@baylibre.com> |
| 7775 | L: linux-omap@vger.kernel.org |
| 7776 | S: Maintained |
| 7777 | F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c |
| 7778 | |
| 7779 | OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS) |
| 7780 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 7781 | L: linux-media@vger.kernel.org |
| 7782 | S: Maintained |
| 7783 | F: Documentation/devicetree/bindings/media/ti,omap3isp.txt |
| 7784 | F: drivers/media/platform/omap3isp/ |
| 7785 | F: drivers/staging/media/omap4iss/ |
| 7786 | |
| 7787 | OMAP USB SUPPORT |
| 7788 | M: Felipe Balbi <balbi@ti.com> |
| 7789 | L: linux-usb@vger.kernel.org |
| 7790 | L: linux-omap@vger.kernel.org |
| 7791 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 7792 | S: Maintained |
| 7793 | F: drivers/usb/*/*omap* |
| 7794 | F: arch/arm/*omap*/usb* |
| 7795 | |
| 7796 | OMAP GPIO DRIVER |
| 7797 | M: Javier Martinez Canillas <javier@dowhile0.org> |
| 7798 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 7799 | M: Kevin Hilman <khilman@deeprootsystems.com> |
| 7800 | L: linux-omap@vger.kernel.org |
| 7801 | S: Maintained |
| 7802 | F: drivers/gpio/gpio-omap.c |
| 7803 | |
| 7804 | OMAP/NEWFLOW NANOBONE MACHINE SUPPORT |
| 7805 | M: Mark Jackson <mpfj@newflow.co.uk> |
| 7806 | L: linux-omap@vger.kernel.org |
| 7807 | S: Maintained |
| 7808 | F: arch/arm/boot/dts/am335x-nano.dts |
| 7809 | |
| 7810 | OMFS FILESYSTEM |
| 7811 | M: Bob Copeland <me@bobcopeland.com> |
| 7812 | L: linux-karma-devel@lists.sourceforge.net |
| 7813 | S: Maintained |
| 7814 | F: Documentation/filesystems/omfs.txt |
| 7815 | F: fs/omfs/ |
| 7816 | |
| 7817 | OMNIKEY CARDMAN 4000 DRIVER |
| 7818 | M: Harald Welte <laforge@gnumonks.org> |
| 7819 | S: Maintained |
| 7820 | F: drivers/char/pcmcia/cm4000_cs.c |
| 7821 | F: include/linux/cm4000_cs.h |
| 7822 | F: include/uapi/linux/cm4000_cs.h |
| 7823 | |
| 7824 | OMNIKEY CARDMAN 4040 DRIVER |
| 7825 | M: Harald Welte <laforge@gnumonks.org> |
| 7826 | S: Maintained |
| 7827 | F: drivers/char/pcmcia/cm4040_cs.* |
| 7828 | |
| 7829 | OMNIVISION OV7670 SENSOR DRIVER |
| 7830 | M: Jonathan Corbet <corbet@lwn.net> |
| 7831 | L: linux-media@vger.kernel.org |
| 7832 | T: git git://linuxtv.org/media_tree.git |
| 7833 | S: Maintained |
| 7834 | F: drivers/media/i2c/ov7670.c |
| 7835 | |
| 7836 | ONENAND FLASH DRIVER |
| 7837 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 7838 | L: linux-mtd@lists.infradead.org |
| 7839 | S: Maintained |
| 7840 | F: drivers/mtd/onenand/ |
| 7841 | F: include/linux/mtd/onenand*.h |
| 7842 | |
| 7843 | ONSTREAM SCSI TAPE DRIVER |
| 7844 | M: Willem Riede <osst@riede.org> |
| 7845 | L: osst-users@lists.sourceforge.net |
| 7846 | L: linux-scsi@vger.kernel.org |
| 7847 | S: Maintained |
| 7848 | F: Documentation/scsi/osst.txt |
| 7849 | F: drivers/scsi/osst.* |
| 7850 | F: drivers/scsi/osst_*.h |
| 7851 | F: drivers/scsi/st.h |
| 7852 | |
| 7853 | OPENCORES I2C BUS DRIVER |
| 7854 | M: Peter Korsgaard <jacmet@sunsite.dk> |
| 7855 | L: linux-i2c@vger.kernel.org |
| 7856 | S: Maintained |
| 7857 | F: Documentation/i2c/busses/i2c-ocores |
| 7858 | F: drivers/i2c/busses/i2c-ocores.c |
| 7859 | |
| 7860 | OPEN FIRMWARE AND FLATTENED DEVICE TREE |
| 7861 | M: Rob Herring <robh+dt@kernel.org> |
| 7862 | M: Frank Rowand <frowand.list@gmail.com> |
| 7863 | M: Grant Likely <grant.likely@linaro.org> |
| 7864 | L: devicetree@vger.kernel.org |
| 7865 | W: http://www.devicetree.org/ |
| 7866 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git |
| 7867 | S: Maintained |
| 7868 | F: drivers/of/ |
| 7869 | F: include/linux/of*.h |
| 7870 | F: scripts/dtc/ |
| 7871 | |
| 7872 | OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS |
| 7873 | M: Rob Herring <robh+dt@kernel.org> |
| 7874 | M: Pawel Moll <pawel.moll@arm.com> |
| 7875 | M: Mark Rutland <mark.rutland@arm.com> |
| 7876 | M: Ian Campbell <ijc+devicetree@hellion.org.uk> |
| 7877 | M: Kumar Gala <galak@codeaurora.org> |
| 7878 | L: devicetree@vger.kernel.org |
| 7879 | S: Maintained |
| 7880 | F: Documentation/devicetree/ |
| 7881 | F: arch/*/boot/dts/ |
| 7882 | F: include/dt-bindings/ |
| 7883 | |
| 7884 | OPEN FIRMWARE AND DEVICE TREE OVERLAYS |
| 7885 | M: Pantelis Antoniou <pantelis.antoniou@konsulko.com> |
| 7886 | L: devicetree@vger.kernel.org |
| 7887 | S: Maintained |
| 7888 | F: Documentation/devicetree/dynamic-resolution-notes.txt |
| 7889 | F: Documentation/devicetree/overlay-notes.txt |
| 7890 | F: drivers/of/overlay.c |
| 7891 | F: drivers/of/resolver.c |
| 7892 | |
| 7893 | OPENRISC ARCHITECTURE |
| 7894 | M: Jonas Bonn <jonas@southpole.se> |
| 7895 | W: http://openrisc.net |
| 7896 | L: linux@lists.openrisc.net (moderated for non-subscribers) |
| 7897 | S: Maintained |
| 7898 | T: git git://openrisc.net/~jonas/linux |
| 7899 | F: arch/openrisc/ |
| 7900 | |
| 7901 | OPENVSWITCH |
| 7902 | M: Pravin Shelar <pshelar@nicira.com> |
| 7903 | L: netdev@vger.kernel.org |
| 7904 | L: dev@openvswitch.org |
| 7905 | W: http://openvswitch.org |
| 7906 | S: Maintained |
| 7907 | F: net/openvswitch/ |
| 7908 | F: include/uapi/linux/openvswitch.h |
| 7909 | |
| 7910 | OPERATING PERFORMANCE POINTS (OPP) |
| 7911 | M: Viresh Kumar <vireshk@kernel.org> |
| 7912 | M: Nishanth Menon <nm@ti.com> |
| 7913 | M: Stephen Boyd <sboyd@codeaurora.org> |
| 7914 | L: linux-pm@vger.kernel.org |
| 7915 | S: Maintained |
| 7916 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git |
| 7917 | F: drivers/base/power/opp/ |
| 7918 | F: include/linux/pm_opp.h |
| 7919 | F: Documentation/power/opp.txt |
| 7920 | F: Documentation/devicetree/bindings/opp/ |
| 7921 | |
| 7922 | OPL4 DRIVER |
| 7923 | M: Clemens Ladisch <clemens@ladisch.de> |
| 7924 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 7925 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 7926 | S: Maintained |
| 7927 | F: sound/drivers/opl4/ |
| 7928 | |
| 7929 | OPROFILE |
| 7930 | M: Robert Richter <rric@kernel.org> |
| 7931 | L: oprofile-list@lists.sf.net |
| 7932 | S: Maintained |
| 7933 | F: arch/*/include/asm/oprofile*.h |
| 7934 | F: arch/*/oprofile/ |
| 7935 | F: drivers/oprofile/ |
| 7936 | F: include/linux/oprofile.h |
| 7937 | |
| 7938 | ORACLE CLUSTER FILESYSTEM 2 (OCFS2) |
| 7939 | M: Mark Fasheh <mfasheh@suse.com> |
| 7940 | M: Joel Becker <jlbec@evilplan.org> |
| 7941 | L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) |
| 7942 | W: http://ocfs2.wiki.kernel.org |
| 7943 | S: Supported |
| 7944 | F: Documentation/filesystems/ocfs2.txt |
| 7945 | F: Documentation/filesystems/dlmfs.txt |
| 7946 | F: fs/ocfs2/ |
| 7947 | |
| 7948 | ORINOCO DRIVER |
| 7949 | L: linux-wireless@vger.kernel.org |
| 7950 | W: http://wireless.kernel.org/en/users/Drivers/orinoco |
| 7951 | W: http://www.nongnu.org/orinoco/ |
| 7952 | S: Orphan |
| 7953 | F: drivers/net/wireless/orinoco/ |
| 7954 | |
| 7955 | OSD LIBRARY and FILESYSTEM |
| 7956 | M: Boaz Harrosh <ooo@electrozaur.com> |
| 7957 | M: Benny Halevy <bhalevy@primarydata.com> |
| 7958 | L: osd-dev@open-osd.org |
| 7959 | W: http://open-osd.org |
| 7960 | T: git git://git.open-osd.org/open-osd.git |
| 7961 | S: Maintained |
| 7962 | F: drivers/scsi/osd/ |
| 7963 | F: include/scsi/osd_* |
| 7964 | F: fs/exofs/ |
| 7965 | |
| 7966 | OVERLAY FILESYSTEM |
| 7967 | M: Miklos Szeredi <miklos@szeredi.hu> |
| 7968 | L: linux-unionfs@vger.kernel.org |
| 7969 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git |
| 7970 | S: Supported |
| 7971 | F: fs/overlayfs/ |
| 7972 | F: Documentation/filesystems/overlayfs.txt |
| 7973 | |
| 7974 | P54 WIRELESS DRIVER |
| 7975 | M: Christian Lamparter <chunkeey@googlemail.com> |
| 7976 | L: linux-wireless@vger.kernel.org |
| 7977 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
| 7978 | S: Maintained |
| 7979 | F: drivers/net/wireless/p54/ |
| 7980 | |
| 7981 | PA SEMI ETHERNET DRIVER |
| 7982 | M: Olof Johansson <olof@lixom.net> |
| 7983 | L: netdev@vger.kernel.org |
| 7984 | S: Maintained |
| 7985 | F: drivers/net/ethernet/pasemi/* |
| 7986 | |
| 7987 | PA SEMI SMBUS DRIVER |
| 7988 | M: Olof Johansson <olof@lixom.net> |
| 7989 | L: linux-i2c@vger.kernel.org |
| 7990 | S: Maintained |
| 7991 | F: drivers/i2c/busses/i2c-pasemi.c |
| 7992 | |
| 7993 | PADATA PARALLEL EXECUTION MECHANISM |
| 7994 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 7995 | L: linux-crypto@vger.kernel.org |
| 7996 | S: Maintained |
| 7997 | F: kernel/padata.c |
| 7998 | F: include/linux/padata.h |
| 7999 | F: Documentation/padata.txt |
| 8000 | |
| 8001 | PANASONIC LAPTOP ACPI EXTRAS DRIVER |
| 8002 | M: Harald Welte <laforge@gnumonks.org> |
| 8003 | L: platform-driver-x86@vger.kernel.org |
| 8004 | S: Maintained |
| 8005 | F: drivers/platform/x86/panasonic-laptop.c |
| 8006 | |
| 8007 | PANASONIC MN10300/AM33/AM34 PORT |
| 8008 | M: David Howells <dhowells@redhat.com> |
| 8009 | M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> |
| 8010 | L: linux-am33-list@redhat.com (moderated for non-subscribers) |
| 8011 | W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ |
| 8012 | S: Maintained |
| 8013 | F: Documentation/mn10300/ |
| 8014 | F: arch/mn10300/ |
| 8015 | |
| 8016 | PARALLEL PORT SUBSYSTEM |
| 8017 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 8018 | M: Sudip Mukherjee <sudip@vectorindia.org> |
| 8019 | L: linux-parport@lists.infradead.org (subscribers-only) |
| 8020 | S: Maintained |
| 8021 | F: drivers/parport/ |
| 8022 | F: include/linux/parport*.h |
| 8023 | F: drivers/char/ppdev.c |
| 8024 | F: include/uapi/linux/ppdev.h |
| 8025 | F: Documentation/parport*.txt |
| 8026 | |
| 8027 | PARAVIRT_OPS INTERFACE |
| 8028 | M: Jeremy Fitzhardinge <jeremy@goop.org> |
| 8029 | M: Chris Wright <chrisw@sous-sol.org> |
| 8030 | M: Alok Kataria <akataria@vmware.com> |
| 8031 | M: Rusty Russell <rusty@rustcorp.com.au> |
| 8032 | L: virtualization@lists.linux-foundation.org |
| 8033 | S: Supported |
| 8034 | F: Documentation/virtual/paravirt_ops.txt |
| 8035 | F: arch/*/kernel/paravirt* |
| 8036 | F: arch/*/include/asm/paravirt.h |
| 8037 | |
| 8038 | PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES |
| 8039 | M: Tim Waugh <tim@cyberelk.net> |
| 8040 | L: linux-parport@lists.infradead.org (subscribers-only) |
| 8041 | S: Maintained |
| 8042 | F: Documentation/blockdev/paride.txt |
| 8043 | F: drivers/block/paride/ |
| 8044 | |
| 8045 | PARISC ARCHITECTURE |
| 8046 | M: "James E.J. Bottomley" <jejb@parisc-linux.org> |
| 8047 | M: Helge Deller <deller@gmx.de> |
| 8048 | L: linux-parisc@vger.kernel.org |
| 8049 | W: http://www.parisc-linux.org/ |
| 8050 | Q: http://patchwork.kernel.org/project/linux-parisc/list/ |
| 8051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git |
| 8052 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git |
| 8053 | S: Maintained |
| 8054 | F: arch/parisc/ |
| 8055 | F: Documentation/parisc/ |
| 8056 | F: drivers/parisc/ |
| 8057 | F: drivers/char/agp/parisc-agp.c |
| 8058 | F: drivers/input/serio/gscps2.c |
| 8059 | F: drivers/parport/parport_gsc.* |
| 8060 | F: drivers/tty/serial/8250/8250_gsc.c |
| 8061 | F: drivers/video/fbdev/sti* |
| 8062 | F: drivers/video/console/sti* |
| 8063 | F: drivers/video/logo/logo_parisc* |
| 8064 | |
| 8065 | PC87360 HARDWARE MONITORING DRIVER |
| 8066 | M: Jim Cromie <jim.cromie@gmail.com> |
| 8067 | L: linux-hwmon@vger.kernel.org |
| 8068 | S: Maintained |
| 8069 | F: Documentation/hwmon/pc87360 |
| 8070 | F: drivers/hwmon/pc87360.c |
| 8071 | |
| 8072 | PC8736x GPIO DRIVER |
| 8073 | M: Jim Cromie <jim.cromie@gmail.com> |
| 8074 | S: Maintained |
| 8075 | F: drivers/char/pc8736x_gpio.c |
| 8076 | |
| 8077 | PC87427 HARDWARE MONITORING DRIVER |
| 8078 | M: Jean Delvare <jdelvare@suse.com> |
| 8079 | L: linux-hwmon@vger.kernel.org |
| 8080 | S: Maintained |
| 8081 | F: Documentation/hwmon/pc87427 |
| 8082 | F: drivers/hwmon/pc87427.c |
| 8083 | |
| 8084 | PCA9532 LED DRIVER |
| 8085 | M: Riku Voipio <riku.voipio@iki.fi> |
| 8086 | S: Maintained |
| 8087 | F: drivers/leds/leds-pca9532.c |
| 8088 | F: include/linux/leds-pca9532.h |
| 8089 | |
| 8090 | PCA9541 I2C BUS MASTER SELECTOR DRIVER |
| 8091 | M: Guenter Roeck <linux@roeck-us.net> |
| 8092 | L: linux-i2c@vger.kernel.org |
| 8093 | S: Maintained |
| 8094 | F: drivers/i2c/muxes/i2c-mux-pca9541.c |
| 8095 | |
| 8096 | PCDP - PRIMARY CONSOLE AND DEBUG PORT |
| 8097 | M: Khalid Aziz <khalid@gonehiking.org> |
| 8098 | S: Maintained |
| 8099 | F: drivers/firmware/pcdp.* |
| 8100 | |
| 8101 | PCI ERROR RECOVERY |
| 8102 | M: Linas Vepstas <linasvepstas@gmail.com> |
| 8103 | L: linux-pci@vger.kernel.org |
| 8104 | S: Supported |
| 8105 | F: Documentation/PCI/pci-error-recovery.txt |
| 8106 | |
| 8107 | PCI SUBSYSTEM |
| 8108 | M: Bjorn Helgaas <bhelgaas@google.com> |
| 8109 | L: linux-pci@vger.kernel.org |
| 8110 | Q: http://patchwork.ozlabs.org/project/linux-pci/list/ |
| 8111 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git |
| 8112 | S: Supported |
| 8113 | F: Documentation/PCI/ |
| 8114 | F: drivers/pci/ |
| 8115 | F: include/linux/pci* |
| 8116 | F: arch/x86/pci/ |
| 8117 | F: arch/x86/kernel/quirks.c |
| 8118 | |
| 8119 | PCI DRIVER FOR ALTERA PCIE IP |
| 8120 | M: Ley Foon Tan <lftan@altera.com> |
| 8121 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) |
| 8122 | L: linux-pci@vger.kernel.org |
| 8123 | S: Supported |
| 8124 | F: Documentation/devicetree/bindings/pci/altera-pcie.txt |
| 8125 | F: drivers/pci/host/pcie-altera.c |
| 8126 | |
| 8127 | PCI DRIVER FOR ARM VERSATILE PLATFORM |
| 8128 | M: Rob Herring <robh@kernel.org> |
| 8129 | L: linux-pci@vger.kernel.org |
| 8130 | L: linux-arm-kernel@lists.infradead.org |
| 8131 | S: Maintained |
| 8132 | F: Documentation/devicetree/bindings/pci/versatile.txt |
| 8133 | F: drivers/pci/host/pci-versatile.c |
| 8134 | |
| 8135 | PCI DRIVER FOR APPLIEDMICRO XGENE |
| 8136 | M: Tanmay Inamdar <tinamdar@apm.com> |
| 8137 | L: linux-pci@vger.kernel.org |
| 8138 | L: linux-arm-kernel@lists.infradead.org |
| 8139 | S: Maintained |
| 8140 | F: Documentation/devicetree/bindings/pci/xgene-pci.txt |
| 8141 | F: drivers/pci/host/pci-xgene.c |
| 8142 | |
| 8143 | PCI DRIVER FOR FREESCALE LAYERSCAPE |
| 8144 | M: Minghuan Lian <minghuan.Lian@freescale.com> |
| 8145 | M: Mingkai Hu <mingkai.hu@freescale.com> |
| 8146 | M: Roy Zang <tie-fei.zang@freescale.com> |
| 8147 | L: linuxppc-dev@lists.ozlabs.org |
| 8148 | L: linux-pci@vger.kernel.org |
| 8149 | L: linux-arm-kernel@lists.infradead.org |
| 8150 | S: Maintained |
| 8151 | F: drivers/pci/host/*layerscape* |
| 8152 | |
| 8153 | PCI DRIVER FOR IMX6 |
| 8154 | M: Richard Zhu <Richard.Zhu@freescale.com> |
| 8155 | M: Lucas Stach <l.stach@pengutronix.de> |
| 8156 | L: linux-pci@vger.kernel.org |
| 8157 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8158 | S: Maintained |
| 8159 | F: drivers/pci/host/*imx6* |
| 8160 | |
| 8161 | PCI DRIVER FOR TI KEYSTONE |
| 8162 | M: Murali Karicheri <m-karicheri2@ti.com> |
| 8163 | L: linux-pci@vger.kernel.org |
| 8164 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8165 | S: Maintained |
| 8166 | F: drivers/pci/host/*keystone* |
| 8167 | |
| 8168 | PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support) |
| 8169 | M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 8170 | M: Jason Cooper <jason@lakedaemon.net> |
| 8171 | L: linux-pci@vger.kernel.org |
| 8172 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8173 | S: Maintained |
| 8174 | F: drivers/pci/host/*mvebu* |
| 8175 | |
| 8176 | PCI DRIVER FOR NVIDIA TEGRA |
| 8177 | M: Thierry Reding <thierry.reding@gmail.com> |
| 8178 | L: linux-tegra@vger.kernel.org |
| 8179 | L: linux-pci@vger.kernel.org |
| 8180 | S: Supported |
| 8181 | F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt |
| 8182 | F: drivers/pci/host/pci-tegra.c |
| 8183 | |
| 8184 | PCI DRIVER FOR TI DRA7XX |
| 8185 | M: Kishon Vijay Abraham I <kishon@ti.com> |
| 8186 | L: linux-omap@vger.kernel.org |
| 8187 | L: linux-pci@vger.kernel.org |
| 8188 | S: Supported |
| 8189 | F: Documentation/devicetree/bindings/pci/ti-pci.txt |
| 8190 | F: drivers/pci/host/pci-dra7xx.c |
| 8191 | |
| 8192 | PCI DRIVER FOR RENESAS R-CAR |
| 8193 | M: Simon Horman <horms@verge.net.au> |
| 8194 | L: linux-pci@vger.kernel.org |
| 8195 | L: linux-sh@vger.kernel.org |
| 8196 | S: Maintained |
| 8197 | F: drivers/pci/host/*rcar* |
| 8198 | |
| 8199 | PCI DRIVER FOR SAMSUNG EXYNOS |
| 8200 | M: Jingoo Han <jingoohan1@gmail.com> |
| 8201 | L: linux-pci@vger.kernel.org |
| 8202 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8203 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 8204 | S: Maintained |
| 8205 | F: drivers/pci/host/pci-exynos.c |
| 8206 | |
| 8207 | PCI DRIVER FOR SYNOPSIS DESIGNWARE |
| 8208 | M: Jingoo Han <jingoohan1@gmail.com> |
| 8209 | M: Pratyush Anand <pratyush.anand@gmail.com> |
| 8210 | L: linux-pci@vger.kernel.org |
| 8211 | S: Maintained |
| 8212 | F: drivers/pci/host/*designware* |
| 8213 | |
| 8214 | PCI DRIVER FOR GENERIC OF HOSTS |
| 8215 | M: Will Deacon <will.deacon@arm.com> |
| 8216 | L: linux-pci@vger.kernel.org |
| 8217 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8218 | S: Maintained |
| 8219 | F: Documentation/devicetree/bindings/pci/host-generic-pci.txt |
| 8220 | F: drivers/pci/host/pci-host-generic.c |
| 8221 | |
| 8222 | PCIE DRIVER FOR ST SPEAR13XX |
| 8223 | M: Pratyush Anand <pratyush.anand@gmail.com> |
| 8224 | L: linux-pci@vger.kernel.org |
| 8225 | S: Maintained |
| 8226 | F: drivers/pci/host/*spear* |
| 8227 | |
| 8228 | PCI MSI DRIVER FOR ALTERA MSI IP |
| 8229 | M: Ley Foon Tan <lftan@altera.com> |
| 8230 | L: rfi@lists.rocketboards.org (moderated for non-subscribers) |
| 8231 | L: linux-pci@vger.kernel.org |
| 8232 | S: Supported |
| 8233 | F: Documentation/devicetree/bindings/pci/altera-pcie-msi.txt |
| 8234 | F: drivers/pci/host/pcie-altera-msi.c |
| 8235 | |
| 8236 | PCI MSI DRIVER FOR APPLIEDMICRO XGENE |
| 8237 | M: Duc Dang <dhdang@apm.com> |
| 8238 | L: linux-pci@vger.kernel.org |
| 8239 | L: linux-arm-kernel@lists.infradead.org |
| 8240 | S: Maintained |
| 8241 | F: Documentation/devicetree/bindings/pci/xgene-pci-msi.txt |
| 8242 | F: drivers/pci/host/pci-xgene-msi.c |
| 8243 | |
| 8244 | PCIE DRIVER FOR HISILICON |
| 8245 | M: Zhou Wang <wangzhou1@hisilicon.com> |
| 8246 | L: linux-pci@vger.kernel.org |
| 8247 | S: Maintained |
| 8248 | F: Documentation/devicetree/bindings/pci/hisilicon-pcie.txt |
| 8249 | F: drivers/pci/host/pcie-hisi.c |
| 8250 | |
| 8251 | PCMCIA SUBSYSTEM |
| 8252 | P: Linux PCMCIA Team |
| 8253 | L: linux-pcmcia@lists.infradead.org |
| 8254 | W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia |
| 8255 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git |
| 8256 | S: Maintained |
| 8257 | F: Documentation/pcmcia/ |
| 8258 | F: drivers/pcmcia/ |
| 8259 | F: include/pcmcia/ |
| 8260 | |
| 8261 | PCNET32 NETWORK DRIVER |
| 8262 | M: Don Fry <pcnet32@frontier.com> |
| 8263 | L: netdev@vger.kernel.org |
| 8264 | S: Maintained |
| 8265 | F: drivers/net/ethernet/amd/pcnet32.c |
| 8266 | |
| 8267 | PCRYPT PARALLEL CRYPTO ENGINE |
| 8268 | M: Steffen Klassert <steffen.klassert@secunet.com> |
| 8269 | L: linux-crypto@vger.kernel.org |
| 8270 | S: Maintained |
| 8271 | F: crypto/pcrypt.c |
| 8272 | F: include/crypto/pcrypt.h |
| 8273 | |
| 8274 | PER-CPU MEMORY ALLOCATOR |
| 8275 | M: Tejun Heo <tj@kernel.org> |
| 8276 | M: Christoph Lameter <cl@linux-foundation.org> |
| 8277 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git |
| 8278 | S: Maintained |
| 8279 | F: include/linux/percpu*.h |
| 8280 | F: mm/percpu*.c |
| 8281 | F: arch/*/include/asm/percpu.h |
| 8282 | |
| 8283 | PER-TASK DELAY ACCOUNTING |
| 8284 | M: Balbir Singh <bsingharora@gmail.com> |
| 8285 | S: Maintained |
| 8286 | F: include/linux/delayacct.h |
| 8287 | F: kernel/delayacct.c |
| 8288 | |
| 8289 | PERFORMANCE EVENTS SUBSYSTEM |
| 8290 | M: Peter Zijlstra <peterz@infradead.org> |
| 8291 | M: Ingo Molnar <mingo@redhat.com> |
| 8292 | M: Arnaldo Carvalho de Melo <acme@kernel.org> |
| 8293 | L: linux-kernel@vger.kernel.org |
| 8294 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
| 8295 | S: Supported |
| 8296 | F: kernel/events/* |
| 8297 | F: include/linux/perf_event.h |
| 8298 | F: include/uapi/linux/perf_event.h |
| 8299 | F: arch/*/kernel/perf_event*.c |
| 8300 | F: arch/*/kernel/*/perf_event*.c |
| 8301 | F: arch/*/kernel/*/*/perf_event*.c |
| 8302 | F: arch/*/include/asm/perf_event.h |
| 8303 | F: arch/*/kernel/perf_callchain.c |
| 8304 | F: tools/perf/ |
| 8305 | |
| 8306 | PERSONALITY HANDLING |
| 8307 | M: Christoph Hellwig <hch@infradead.org> |
| 8308 | L: linux-abi-devel@lists.sourceforge.net |
| 8309 | S: Maintained |
| 8310 | F: include/linux/personality.h |
| 8311 | F: include/uapi/linux/personality.h |
| 8312 | |
| 8313 | PHONET PROTOCOL |
| 8314 | M: Remi Denis-Courmont <courmisch@gmail.com> |
| 8315 | S: Supported |
| 8316 | F: Documentation/networking/phonet.txt |
| 8317 | F: include/linux/phonet.h |
| 8318 | F: include/net/phonet/ |
| 8319 | F: include/uapi/linux/phonet.h |
| 8320 | F: net/phonet/ |
| 8321 | |
| 8322 | PHRAM MTD DRIVER |
| 8323 | M: Joern Engel <joern@lazybastard.org> |
| 8324 | L: linux-mtd@lists.infradead.org |
| 8325 | S: Maintained |
| 8326 | F: drivers/mtd/devices/phram.c |
| 8327 | |
| 8328 | PICOLCD HID DRIVER |
| 8329 | M: Bruno Prémont <bonbons@linux-vserver.org> |
| 8330 | L: linux-input@vger.kernel.org |
| 8331 | S: Maintained |
| 8332 | F: drivers/hid/hid-picolcd* |
| 8333 | |
| 8334 | PICOXCELL SUPPORT |
| 8335 | M: Jamie Iles <jamie@jamieiles.com> |
| 8336 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8337 | T: git git://github.com/jamieiles/linux-2.6-ji.git |
| 8338 | S: Supported |
| 8339 | F: arch/arm/boot/dts/picoxcell* |
| 8340 | F: arch/arm/mach-picoxcell/ |
| 8341 | F: drivers/crypto/picoxcell* |
| 8342 | |
| 8343 | PIN CONTROL SUBSYSTEM |
| 8344 | M: Linus Walleij <linus.walleij@linaro.org> |
| 8345 | L: linux-gpio@vger.kernel.org |
| 8346 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git |
| 8347 | S: Maintained |
| 8348 | F: drivers/pinctrl/ |
| 8349 | F: include/linux/pinctrl/ |
| 8350 | |
| 8351 | PIN CONTROLLER - ATMEL AT91 |
| 8352 | M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> |
| 8353 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8354 | S: Maintained |
| 8355 | F: drivers/pinctrl/pinctrl-at91.* |
| 8356 | |
| 8357 | PIN CONTROLLER - ATMEL AT91 PIO4 |
| 8358 | M: Ludovic Desroches <ludovic.desroches@atmel.com> |
| 8359 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8360 | L: linux-gpio@vger.kernel.org |
| 8361 | S: Supported |
| 8362 | F: drivers/pinctrl/pinctrl-at91-pio4.* |
| 8363 | |
| 8364 | PIN CONTROLLER - INTEL |
| 8365 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 8366 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> |
| 8367 | S: Maintained |
| 8368 | F: drivers/pinctrl/intel/ |
| 8369 | |
| 8370 | PIN CONTROLLER - RENESAS |
| 8371 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 8372 | L: linux-sh@vger.kernel.org |
| 8373 | S: Maintained |
| 8374 | F: drivers/pinctrl/sh-pfc/ |
| 8375 | |
| 8376 | PIN CONTROLLER - SAMSUNG |
| 8377 | M: Tomasz Figa <tomasz.figa@gmail.com> |
| 8378 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8379 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 8380 | S: Maintained |
| 8381 | F: drivers/pinctrl/samsung/ |
| 8382 | |
| 8383 | PIN CONTROLLER - SINGLE |
| 8384 | M: Tony Lindgren <tony@atomide.com> |
| 8385 | M: Haojian Zhuang <haojian.zhuang@linaro.org> |
| 8386 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8387 | L: linux-omap@vger.kernel.org |
| 8388 | S: Maintained |
| 8389 | F: drivers/pinctrl/pinctrl-single.c |
| 8390 | |
| 8391 | PIN CONTROLLER - ST SPEAR |
| 8392 | M: Viresh Kumar <vireshk@kernel.org> |
| 8393 | L: spear-devel@list.st.com |
| 8394 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8395 | W: http://www.st.com/spear |
| 8396 | S: Maintained |
| 8397 | F: drivers/pinctrl/spear/ |
| 8398 | |
| 8399 | PKTCDVD DRIVER |
| 8400 | M: Jiri Kosina <jikos@kernel.org> |
| 8401 | S: Maintained |
| 8402 | F: drivers/block/pktcdvd.c |
| 8403 | F: include/linux/pktcdvd.h |
| 8404 | F: include/uapi/linux/pktcdvd.h |
| 8405 | |
| 8406 | PKUNITY SOC DRIVERS |
| 8407 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
| 8408 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
| 8409 | S: Maintained |
| 8410 | T: git git://github.com/gxt/linux.git |
| 8411 | F: drivers/input/serio/i8042-unicore32io.h |
| 8412 | F: drivers/i2c/busses/i2c-puv3.c |
| 8413 | F: drivers/video/fbdev/fb-puv3.c |
| 8414 | F: drivers/rtc/rtc-puv3.c |
| 8415 | |
| 8416 | PMBUS HARDWARE MONITORING DRIVERS |
| 8417 | M: Guenter Roeck <linux@roeck-us.net> |
| 8418 | L: linux-hwmon@vger.kernel.org |
| 8419 | W: http://hwmon.wiki.kernel.org/ |
| 8420 | W: http://www.roeck-us.net/linux/drivers/ |
| 8421 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git |
| 8422 | S: Maintained |
| 8423 | F: Documentation/hwmon/pmbus |
| 8424 | F: drivers/hwmon/pmbus/ |
| 8425 | F: include/linux/i2c/pmbus.h |
| 8426 | |
| 8427 | PMC SIERRA MaxRAID DRIVER |
| 8428 | L: linux-scsi@vger.kernel.org |
| 8429 | W: http://www.pmc-sierra.com/ |
| 8430 | S: Orphan |
| 8431 | F: drivers/scsi/pmcraid.* |
| 8432 | |
| 8433 | PMC SIERRA PM8001 DRIVER |
| 8434 | M: Jack Wang <jinpu.wang@profitbricks.com> |
| 8435 | M: lindar_liu@usish.com |
| 8436 | L: pmchba@pmcs.com |
| 8437 | L: linux-scsi@vger.kernel.org |
| 8438 | S: Supported |
| 8439 | F: drivers/scsi/pm8001/ |
| 8440 | |
| 8441 | POSIX CLOCKS and TIMERS |
| 8442 | M: Thomas Gleixner <tglx@linutronix.de> |
| 8443 | L: linux-kernel@vger.kernel.org |
| 8444 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
| 8445 | S: Maintained |
| 8446 | F: fs/timerfd.c |
| 8447 | F: include/linux/timer* |
| 8448 | F: kernel/time/*timer* |
| 8449 | |
| 8450 | POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS |
| 8451 | M: Sebastian Reichel <sre@kernel.org> |
| 8452 | M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> |
| 8453 | M: David Woodhouse <dwmw2@infradead.org> |
| 8454 | L: linux-pm@vger.kernel.org |
| 8455 | T: git git://git.infradead.org/battery-2.6.git |
| 8456 | S: Maintained |
| 8457 | F: include/linux/power_supply.h |
| 8458 | F: drivers/power/ |
| 8459 | X: drivers/power/avs/ |
| 8460 | |
| 8461 | POWER STATE COORDINATION INTERFACE (PSCI) |
| 8462 | M: Mark Rutland <mark.rutland@arm.com> |
| 8463 | M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com> |
| 8464 | L: linux-arm-kernel@lists.infradead.org |
| 8465 | S: Maintained |
| 8466 | F: drivers/firmware/psci.c |
| 8467 | F: include/linux/psci.h |
| 8468 | F: include/uapi/linux/psci.h |
| 8469 | |
| 8470 | PNP SUPPORT |
| 8471 | M: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com> |
| 8472 | S: Maintained |
| 8473 | F: drivers/pnp/ |
| 8474 | |
| 8475 | PPP PROTOCOL DRIVERS AND COMPRESSORS |
| 8476 | M: Paul Mackerras <paulus@samba.org> |
| 8477 | L: linux-ppp@vger.kernel.org |
| 8478 | S: Maintained |
| 8479 | F: drivers/net/ppp/ppp_* |
| 8480 | |
| 8481 | PPP OVER ATM (RFC 2364) |
| 8482 | M: Mitchell Blank Jr <mitch@sfgoth.com> |
| 8483 | S: Maintained |
| 8484 | F: net/atm/pppoatm.c |
| 8485 | F: include/uapi/linux/atmppp.h |
| 8486 | |
| 8487 | PPP OVER ETHERNET |
| 8488 | M: Michal Ostrowski <mostrows@earthlink.net> |
| 8489 | S: Maintained |
| 8490 | F: drivers/net/ppp/pppoe.c |
| 8491 | F: drivers/net/ppp/pppox.c |
| 8492 | |
| 8493 | PPP OVER L2TP |
| 8494 | M: James Chapman <jchapman@katalix.com> |
| 8495 | S: Maintained |
| 8496 | F: net/l2tp/l2tp_ppp.c |
| 8497 | F: include/linux/if_pppol2tp.h |
| 8498 | F: include/uapi/linux/if_pppol2tp.h |
| 8499 | |
| 8500 | PPS SUPPORT |
| 8501 | M: Rodolfo Giometti <giometti@enneenne.com> |
| 8502 | W: http://wiki.enneenne.com/index.php/LinuxPPS_support |
| 8503 | L: linuxpps@ml.enneenne.com (subscribers-only) |
| 8504 | S: Maintained |
| 8505 | F: Documentation/pps/ |
| 8506 | F: drivers/pps/ |
| 8507 | F: include/linux/pps*.h |
| 8508 | |
| 8509 | PPTP DRIVER |
| 8510 | M: Dmitry Kozlov <xeb@mail.ru> |
| 8511 | L: netdev@vger.kernel.org |
| 8512 | S: Maintained |
| 8513 | F: drivers/net/ppp/pptp.c |
| 8514 | W: http://sourceforge.net/projects/accel-pptp |
| 8515 | |
| 8516 | PREEMPTIBLE KERNEL |
| 8517 | M: Robert Love <rml@tech9.net> |
| 8518 | L: kpreempt-tech@lists.sourceforge.net |
| 8519 | W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel |
| 8520 | S: Supported |
| 8521 | F: Documentation/preempt-locking.txt |
| 8522 | F: include/linux/preempt.h |
| 8523 | |
| 8524 | PRISM54 WIRELESS DRIVER |
| 8525 | M: "Luis R. Rodriguez" <mcgrof@gmail.com> |
| 8526 | L: linux-wireless@vger.kernel.org |
| 8527 | W: http://wireless.kernel.org/en/users/Drivers/p54 |
| 8528 | S: Obsolete |
| 8529 | F: drivers/net/wireless/prism54/ |
| 8530 | |
| 8531 | PS3 NETWORK SUPPORT |
| 8532 | M: Geoff Levand <geoff@infradead.org> |
| 8533 | L: netdev@vger.kernel.org |
| 8534 | L: linuxppc-dev@lists.ozlabs.org |
| 8535 | S: Maintained |
| 8536 | F: drivers/net/ethernet/toshiba/ps3_gelic_net.* |
| 8537 | |
| 8538 | PS3 PLATFORM SUPPORT |
| 8539 | M: Geoff Levand <geoff@infradead.org> |
| 8540 | L: linuxppc-dev@lists.ozlabs.org |
| 8541 | S: Maintained |
| 8542 | F: arch/powerpc/boot/ps3* |
| 8543 | F: arch/powerpc/include/asm/lv1call.h |
| 8544 | F: arch/powerpc/include/asm/ps3*.h |
| 8545 | F: arch/powerpc/platforms/ps3/ |
| 8546 | F: drivers/*/ps3* |
| 8547 | F: drivers/ps3/ |
| 8548 | F: drivers/rtc/rtc-ps3.c |
| 8549 | F: drivers/usb/host/*ps3.c |
| 8550 | F: sound/ppc/snd_ps3* |
| 8551 | |
| 8552 | PS3VRAM DRIVER |
| 8553 | M: Jim Paris <jim@jtan.com> |
| 8554 | M: Geoff Levand <geoff@infradead.org> |
| 8555 | L: linuxppc-dev@lists.ozlabs.org |
| 8556 | S: Maintained |
| 8557 | F: drivers/block/ps3vram.c |
| 8558 | |
| 8559 | PSTORE FILESYSTEM |
| 8560 | M: Anton Vorontsov <anton@enomsg.org> |
| 8561 | M: Colin Cross <ccross@android.com> |
| 8562 | M: Kees Cook <keescook@chromium.org> |
| 8563 | M: Tony Luck <tony.luck@intel.com> |
| 8564 | S: Maintained |
| 8565 | T: git git://git.infradead.org/users/cbou/linux-pstore.git |
| 8566 | F: fs/pstore/ |
| 8567 | F: include/linux/pstore* |
| 8568 | F: drivers/firmware/efi/efi-pstore.c |
| 8569 | F: drivers/acpi/apei/erst.c |
| 8570 | |
| 8571 | PTP HARDWARE CLOCK SUPPORT |
| 8572 | M: Richard Cochran <richardcochran@gmail.com> |
| 8573 | L: netdev@vger.kernel.org |
| 8574 | S: Maintained |
| 8575 | W: http://linuxptp.sourceforge.net/ |
| 8576 | F: Documentation/ABI/testing/sysfs-ptp |
| 8577 | F: Documentation/ptp/* |
| 8578 | F: drivers/net/ethernet/freescale/gianfar_ptp.c |
| 8579 | F: drivers/net/phy/dp83640* |
| 8580 | F: drivers/ptp/* |
| 8581 | F: include/linux/ptp_cl* |
| 8582 | |
| 8583 | PTRACE SUPPORT |
| 8584 | M: Roland McGrath <roland@hack.frob.com> |
| 8585 | M: Oleg Nesterov <oleg@redhat.com> |
| 8586 | S: Maintained |
| 8587 | F: include/asm-generic/syscall.h |
| 8588 | F: include/linux/ptrace.h |
| 8589 | F: include/linux/regset.h |
| 8590 | F: include/linux/tracehook.h |
| 8591 | F: include/uapi/linux/ptrace.h |
| 8592 | F: kernel/ptrace.c |
| 8593 | |
| 8594 | PVRUSB2 VIDEO4LINUX DRIVER |
| 8595 | M: Mike Isely <isely@pobox.com> |
| 8596 | L: pvrusb2@isely.net (subscribers-only) |
| 8597 | L: linux-media@vger.kernel.org |
| 8598 | W: http://www.isely.net/pvrusb2/ |
| 8599 | T: git git://linuxtv.org/media_tree.git |
| 8600 | S: Maintained |
| 8601 | F: Documentation/video4linux/README.pvrusb2 |
| 8602 | F: drivers/media/usb/pvrusb2/ |
| 8603 | |
| 8604 | PWC WEBCAM DRIVER |
| 8605 | M: Hans de Goede <hdegoede@redhat.com> |
| 8606 | L: linux-media@vger.kernel.org |
| 8607 | T: git git://linuxtv.org/media_tree.git |
| 8608 | S: Maintained |
| 8609 | F: drivers/media/usb/pwc/* |
| 8610 | |
| 8611 | PWM FAN DRIVER |
| 8612 | M: Kamil Debski <k.debski@samsung.com> |
| 8613 | L: linux-hwmon@vger.kernel.org |
| 8614 | S: Supported |
| 8615 | F: Documentation/devicetree/bindings/hwmon/pwm-fan.txt |
| 8616 | F: Documentation/hwmon/pwm-fan |
| 8617 | F: drivers/hwmon/pwm-fan.c |
| 8618 | |
| 8619 | PWM SUBSYSTEM |
| 8620 | M: Thierry Reding <thierry.reding@gmail.com> |
| 8621 | L: linux-pwm@vger.kernel.org |
| 8622 | S: Maintained |
| 8623 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git |
| 8624 | F: Documentation/pwm.txt |
| 8625 | F: Documentation/devicetree/bindings/pwm/ |
| 8626 | F: include/linux/pwm.h |
| 8627 | F: drivers/pwm/ |
| 8628 | F: drivers/video/backlight/pwm_bl.c |
| 8629 | F: include/linux/pwm_backlight.h |
| 8630 | |
| 8631 | PXA2xx/PXA3xx SUPPORT |
| 8632 | M: Daniel Mack <daniel@zonque.org> |
| 8633 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
| 8634 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 8635 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8636 | T: git git://github.com/hzhuang1/linux.git |
| 8637 | T: git git://github.com/rjarzmik/linux.git |
| 8638 | S: Maintained |
| 8639 | F: arch/arm/mach-pxa/ |
| 8640 | F: drivers/dma/pxa* |
| 8641 | F: drivers/pcmcia/pxa2xx* |
| 8642 | F: drivers/spi/spi-pxa2xx* |
| 8643 | F: drivers/usb/gadget/udc/pxa2* |
| 8644 | F: include/sound/pxa2xx-lib.h |
| 8645 | F: sound/arm/pxa* |
| 8646 | F: sound/soc/pxa/ |
| 8647 | |
| 8648 | PXA3xx NAND FLASH DRIVER |
| 8649 | M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com> |
| 8650 | L: linux-mtd@lists.infradead.org |
| 8651 | S: Maintained |
| 8652 | F: drivers/mtd/nand/pxa3xx_nand.c |
| 8653 | |
| 8654 | MMP SUPPORT |
| 8655 | M: Eric Miao <eric.y.miao@gmail.com> |
| 8656 | M: Haojian Zhuang <haojian.zhuang@gmail.com> |
| 8657 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 8658 | T: git git://github.com/hzhuang1/linux.git |
| 8659 | T: git git://git.linaro.org/people/ycmiao/pxa-linux.git |
| 8660 | S: Maintained |
| 8661 | F: arch/arm/mach-mmp/ |
| 8662 | |
| 8663 | PXA MMCI DRIVER |
| 8664 | S: Orphan |
| 8665 | |
| 8666 | PXA RTC DRIVER |
| 8667 | M: Robert Jarzmik <robert.jarzmik@free.fr> |
| 8668 | L: rtc-linux@googlegroups.com |
| 8669 | S: Maintained |
| 8670 | |
| 8671 | QAT DRIVER |
| 8672 | M: Tadeusz Struk <tadeusz.struk@intel.com> |
| 8673 | L: qat-linux@intel.com |
| 8674 | S: Supported |
| 8675 | F: drivers/crypto/qat/ |
| 8676 | |
| 8677 | QIB DRIVER |
| 8678 | M: Mike Marciniszyn <infinipath@intel.com> |
| 8679 | L: linux-rdma@vger.kernel.org |
| 8680 | S: Supported |
| 8681 | F: drivers/infiniband/hw/qib/ |
| 8682 | |
| 8683 | QLOGIC QLA1280 SCSI DRIVER |
| 8684 | M: Michael Reed <mdr@sgi.com> |
| 8685 | L: linux-scsi@vger.kernel.org |
| 8686 | S: Maintained |
| 8687 | F: drivers/scsi/qla1280.[ch] |
| 8688 | |
| 8689 | QLOGIC QLA2XXX FC-SCSI DRIVER |
| 8690 | M: qla2xxx-upstream@qlogic.com |
| 8691 | L: linux-scsi@vger.kernel.org |
| 8692 | S: Supported |
| 8693 | F: Documentation/scsi/LICENSE.qla2xxx |
| 8694 | F: drivers/scsi/qla2xxx/ |
| 8695 | |
| 8696 | QLOGIC QLA4XXX iSCSI DRIVER |
| 8697 | M: QLogic-Storage-Upstream@qlogic.com |
| 8698 | L: linux-scsi@vger.kernel.org |
| 8699 | S: Supported |
| 8700 | F: Documentation/scsi/LICENSE.qla4xxx |
| 8701 | F: drivers/scsi/qla4xxx/ |
| 8702 | |
| 8703 | QLOGIC QLA3XXX NETWORK DRIVER |
| 8704 | M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> |
| 8705 | M: Ron Mercer <ron.mercer@qlogic.com> |
| 8706 | M: linux-driver@qlogic.com |
| 8707 | L: netdev@vger.kernel.org |
| 8708 | S: Supported |
| 8709 | F: Documentation/networking/LICENSE.qla3xxx |
| 8710 | F: drivers/net/ethernet/qlogic/qla3xxx.* |
| 8711 | |
| 8712 | QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER |
| 8713 | M: Dept-GELinuxNICDev@qlogic.com |
| 8714 | L: netdev@vger.kernel.org |
| 8715 | S: Supported |
| 8716 | F: drivers/net/ethernet/qlogic/qlcnic/ |
| 8717 | |
| 8718 | QLOGIC QLGE 10Gb ETHERNET DRIVER |
| 8719 | M: Harish Patil <harish.patil@qlogic.com> |
| 8720 | M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com> |
| 8721 | M: Dept-GELinuxNICDev@qlogic.com |
| 8722 | M: linux-driver@qlogic.com |
| 8723 | L: netdev@vger.kernel.org |
| 8724 | S: Supported |
| 8725 | F: drivers/net/ethernet/qlogic/qlge/ |
| 8726 | |
| 8727 | QLOGIC QL4xxx ETHERNET DRIVER |
| 8728 | M: Yuval Mintz <Yuval.Mintz@qlogic.com> |
| 8729 | M: Ariel Elior <Ariel.Elior@qlogic.com> |
| 8730 | M: everest-linux-l2@qlogic.com |
| 8731 | L: netdev@vger.kernel.org |
| 8732 | S: Supported |
| 8733 | F: drivers/net/ethernet/qlogic/qed/ |
| 8734 | F: include/linux/qed/ |
| 8735 | F: drivers/net/ethernet/qlogic/qede/ |
| 8736 | |
| 8737 | QNX4 FILESYSTEM |
| 8738 | M: Anders Larsen <al@alarsen.net> |
| 8739 | W: http://www.alarsen.net/linux/qnx4fs/ |
| 8740 | S: Maintained |
| 8741 | F: fs/qnx4/ |
| 8742 | F: include/uapi/linux/qnx4_fs.h |
| 8743 | F: include/uapi/linux/qnxtypes.h |
| 8744 | |
| 8745 | QT1010 MEDIA DRIVER |
| 8746 | M: Antti Palosaari <crope@iki.fi> |
| 8747 | L: linux-media@vger.kernel.org |
| 8748 | W: http://linuxtv.org/ |
| 8749 | W: http://palosaari.fi/linux/ |
| 8750 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 8751 | T: git git://linuxtv.org/anttip/media_tree.git |
| 8752 | S: Maintained |
| 8753 | F: drivers/media/tuners/qt1010* |
| 8754 | |
| 8755 | QUALCOMM ATHEROS ATH9K WIRELESS DRIVER |
| 8756 | M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com> |
| 8757 | L: linux-wireless@vger.kernel.org |
| 8758 | L: ath9k-devel@lists.ath9k.org |
| 8759 | W: http://wireless.kernel.org/en/users/Drivers/ath9k |
| 8760 | S: Supported |
| 8761 | F: drivers/net/wireless/ath/ath9k/ |
| 8762 | |
| 8763 | QUALCOMM ATHEROS ATH10K WIRELESS DRIVER |
| 8764 | M: Kalle Valo <kvalo@qca.qualcomm.com> |
| 8765 | L: ath10k@lists.infradead.org |
| 8766 | W: http://wireless.kernel.org/en/users/Drivers/ath10k |
| 8767 | T: git git://github.com/kvalo/ath.git |
| 8768 | S: Supported |
| 8769 | F: drivers/net/wireless/ath/ath10k/ |
| 8770 | |
| 8771 | QUALCOMM HEXAGON ARCHITECTURE |
| 8772 | M: Richard Kuo <rkuo@codeaurora.org> |
| 8773 | L: linux-hexagon@vger.kernel.org |
| 8774 | S: Supported |
| 8775 | F: arch/hexagon/ |
| 8776 | |
| 8777 | QUALCOMM WCN36XX WIRELESS DRIVER |
| 8778 | M: Eugene Krasnikov <k.eugene.e@gmail.com> |
| 8779 | L: wcn36xx@lists.infradead.org |
| 8780 | W: http://wireless.kernel.org/en/users/Drivers/wcn36xx |
| 8781 | T: git git://github.com/KrasnikovEugene/wcn36xx.git |
| 8782 | S: Supported |
| 8783 | F: drivers/net/wireless/ath/wcn36xx/ |
| 8784 | |
| 8785 | RADOS BLOCK DEVICE (RBD) |
| 8786 | M: Ilya Dryomov <idryomov@gmail.com> |
| 8787 | M: Sage Weil <sage@redhat.com> |
| 8788 | M: Alex Elder <elder@kernel.org> |
| 8789 | L: ceph-devel@vger.kernel.org |
| 8790 | W: http://ceph.com/ |
| 8791 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git |
| 8792 | T: git git://github.com/ceph/ceph-client.git |
| 8793 | S: Supported |
| 8794 | F: Documentation/ABI/testing/sysfs-bus-rbd |
| 8795 | F: drivers/block/rbd.c |
| 8796 | F: drivers/block/rbd_types.h |
| 8797 | |
| 8798 | RADEON FRAMEBUFFER DISPLAY DRIVER |
| 8799 | M: Benjamin Herrenschmidt <benh@kernel.crashing.org> |
| 8800 | L: linux-fbdev@vger.kernel.org |
| 8801 | S: Maintained |
| 8802 | F: drivers/video/fbdev/aty/radeon* |
| 8803 | F: include/uapi/linux/radeonfb.h |
| 8804 | |
| 8805 | RADIOSHARK RADIO DRIVER |
| 8806 | M: Hans de Goede <hdegoede@redhat.com> |
| 8807 | L: linux-media@vger.kernel.org |
| 8808 | T: git git://linuxtv.org/media_tree.git |
| 8809 | S: Maintained |
| 8810 | F: drivers/media/radio/radio-shark.c |
| 8811 | |
| 8812 | RADIOSHARK2 RADIO DRIVER |
| 8813 | M: Hans de Goede <hdegoede@redhat.com> |
| 8814 | L: linux-media@vger.kernel.org |
| 8815 | T: git git://linuxtv.org/media_tree.git |
| 8816 | S: Maintained |
| 8817 | F: drivers/media/radio/radio-shark2.c |
| 8818 | F: drivers/media/radio/radio-tea5777.c |
| 8819 | |
| 8820 | RAGE128 FRAMEBUFFER DISPLAY DRIVER |
| 8821 | M: Paul Mackerras <paulus@samba.org> |
| 8822 | L: linux-fbdev@vger.kernel.org |
| 8823 | S: Maintained |
| 8824 | F: drivers/video/fbdev/aty/aty128fb.c |
| 8825 | |
| 8826 | RALINK RT2X00 WIRELESS LAN DRIVER |
| 8827 | P: rt2x00 project |
| 8828 | M: Stanislaw Gruszka <sgruszka@redhat.com> |
| 8829 | M: Helmut Schaa <helmut.schaa@googlemail.com> |
| 8830 | L: linux-wireless@vger.kernel.org |
| 8831 | S: Maintained |
| 8832 | F: drivers/net/wireless/rt2x00/ |
| 8833 | |
| 8834 | RAMDISK RAM BLOCK DEVICE DRIVER |
| 8835 | M: Jens Axboe <axboe@kernel.dk> |
| 8836 | S: Maintained |
| 8837 | F: Documentation/blockdev/ramdisk.txt |
| 8838 | F: drivers/block/brd.c |
| 8839 | |
| 8840 | RANDOM NUMBER DRIVER |
| 8841 | M: "Theodore Ts'o" <tytso@mit.edu> |
| 8842 | S: Maintained |
| 8843 | F: drivers/char/random.c |
| 8844 | |
| 8845 | RAPIDIO SUBSYSTEM |
| 8846 | M: Matt Porter <mporter@kernel.crashing.org> |
| 8847 | M: Alexandre Bounine <alexandre.bounine@idt.com> |
| 8848 | S: Maintained |
| 8849 | F: drivers/rapidio/ |
| 8850 | |
| 8851 | RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER |
| 8852 | L: linux-wireless@vger.kernel.org |
| 8853 | S: Orphan |
| 8854 | F: drivers/net/wireless/ray* |
| 8855 | |
| 8856 | RCUTORTURE MODULE |
| 8857 | M: Josh Triplett <josh@joshtriplett.org> |
| 8858 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
| 8859 | L: linux-kernel@vger.kernel.org |
| 8860 | S: Supported |
| 8861 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
| 8862 | F: Documentation/RCU/torture.txt |
| 8863 | F: kernel/rcu/rcutorture.c |
| 8864 | |
| 8865 | RCUTORTURE TEST FRAMEWORK |
| 8866 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
| 8867 | M: Josh Triplett <josh@joshtriplett.org> |
| 8868 | R: Steven Rostedt <rostedt@goodmis.org> |
| 8869 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 8870 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
| 8871 | L: linux-kernel@vger.kernel.org |
| 8872 | S: Supported |
| 8873 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
| 8874 | F: tools/testing/selftests/rcutorture |
| 8875 | |
| 8876 | RDC R-321X SoC |
| 8877 | M: Florian Fainelli <florian@openwrt.org> |
| 8878 | S: Maintained |
| 8879 | |
| 8880 | RDC R6040 FAST ETHERNET DRIVER |
| 8881 | M: Florian Fainelli <florian@openwrt.org> |
| 8882 | L: netdev@vger.kernel.org |
| 8883 | S: Maintained |
| 8884 | F: drivers/net/ethernet/rdc/r6040.c |
| 8885 | |
| 8886 | RDS - RELIABLE DATAGRAM SOCKETS |
| 8887 | M: Chien Yen <chien.yen@oracle.com> |
| 8888 | L: rds-devel@oss.oracle.com (moderated for non-subscribers) |
| 8889 | S: Supported |
| 8890 | F: net/rds/ |
| 8891 | |
| 8892 | READ-COPY UPDATE (RCU) |
| 8893 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
| 8894 | M: Josh Triplett <josh@joshtriplett.org> |
| 8895 | R: Steven Rostedt <rostedt@goodmis.org> |
| 8896 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 8897 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
| 8898 | L: linux-kernel@vger.kernel.org |
| 8899 | W: http://www.rdrop.com/users/paulmck/RCU/ |
| 8900 | S: Supported |
| 8901 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
| 8902 | F: Documentation/RCU/ |
| 8903 | X: Documentation/RCU/torture.txt |
| 8904 | F: include/linux/rcu* |
| 8905 | X: include/linux/srcu.h |
| 8906 | F: kernel/rcu/ |
| 8907 | X: kernel/torture.c |
| 8908 | |
| 8909 | REAL TIME CLOCK (RTC) SUBSYSTEM |
| 8910 | M: Alessandro Zummo <a.zummo@towertech.it> |
| 8911 | M: Alexandre Belloni <alexandre.belloni@free-electrons.com> |
| 8912 | L: rtc-linux@googlegroups.com |
| 8913 | Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ |
| 8914 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git |
| 8915 | S: Maintained |
| 8916 | F: Documentation/rtc.txt |
| 8917 | F: drivers/rtc/ |
| 8918 | F: include/linux/rtc.h |
| 8919 | F: include/uapi/linux/rtc.h |
| 8920 | |
| 8921 | REALTEK AUDIO CODECS |
| 8922 | M: Bard Liao <bardliao@realtek.com> |
| 8923 | M: Oder Chiou <oder_chiou@realtek.com> |
| 8924 | S: Maintained |
| 8925 | F: sound/soc/codecs/rt* |
| 8926 | F: include/sound/rt*.h |
| 8927 | |
| 8928 | REISERFS FILE SYSTEM |
| 8929 | L: reiserfs-devel@vger.kernel.org |
| 8930 | S: Supported |
| 8931 | F: fs/reiserfs/ |
| 8932 | |
| 8933 | REGISTER MAP ABSTRACTION |
| 8934 | M: Mark Brown <broonie@kernel.org> |
| 8935 | L: linux-kernel@vger.kernel.org |
| 8936 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git |
| 8937 | S: Supported |
| 8938 | F: drivers/base/regmap/ |
| 8939 | F: include/linux/regmap.h |
| 8940 | |
| 8941 | REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM |
| 8942 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 8943 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git |
| 8944 | S: Maintained |
| 8945 | F: drivers/remoteproc/ |
| 8946 | F: Documentation/remoteproc.txt |
| 8947 | F: include/linux/remoteproc.h |
| 8948 | |
| 8949 | REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM |
| 8950 | M: Ohad Ben-Cohen <ohad@wizery.com> |
| 8951 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git |
| 8952 | S: Maintained |
| 8953 | F: drivers/rpmsg/ |
| 8954 | F: Documentation/rpmsg.txt |
| 8955 | F: include/linux/rpmsg.h |
| 8956 | |
| 8957 | RENESAS ETHERNET DRIVERS |
| 8958 | R: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com> |
| 8959 | L: netdev@vger.kernel.org |
| 8960 | L: linux-sh@vger.kernel.org |
| 8961 | F: drivers/net/ethernet/renesas/ |
| 8962 | F: include/linux/sh_eth.h |
| 8963 | |
| 8964 | RESET CONTROLLER FRAMEWORK |
| 8965 | M: Philipp Zabel <p.zabel@pengutronix.de> |
| 8966 | S: Maintained |
| 8967 | F: drivers/reset/ |
| 8968 | F: Documentation/devicetree/bindings/reset/ |
| 8969 | F: include/dt-bindings/reset/ |
| 8970 | F: include/linux/reset.h |
| 8971 | F: include/linux/reset-controller.h |
| 8972 | |
| 8973 | RFKILL |
| 8974 | M: Johannes Berg <johannes@sipsolutions.net> |
| 8975 | L: linux-wireless@vger.kernel.org |
| 8976 | W: http://wireless.kernel.org/ |
| 8977 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git |
| 8978 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git |
| 8979 | S: Maintained |
| 8980 | F: Documentation/rfkill.txt |
| 8981 | F: net/rfkill/ |
| 8982 | |
| 8983 | RHASHTABLE |
| 8984 | M: Thomas Graf <tgraf@suug.ch> |
| 8985 | L: netdev@vger.kernel.org |
| 8986 | S: Maintained |
| 8987 | F: lib/rhashtable.c |
| 8988 | F: include/linux/rhashtable.h |
| 8989 | |
| 8990 | RICOH SMARTMEDIA/XD DRIVER |
| 8991 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 8992 | S: Maintained |
| 8993 | F: drivers/mtd/nand/r852.c |
| 8994 | F: drivers/mtd/nand/r852.h |
| 8995 | |
| 8996 | RICOH R5C592 MEMORYSTICK DRIVER |
| 8997 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 8998 | S: Maintained |
| 8999 | F: drivers/memstick/host/r592.* |
| 9000 | |
| 9001 | ROCCAT DRIVERS |
| 9002 | M: Stefan Achatz <erazor_de@users.sourceforge.net> |
| 9003 | W: http://sourceforge.net/projects/roccat/ |
| 9004 | S: Maintained |
| 9005 | F: drivers/hid/hid-roccat* |
| 9006 | F: include/linux/hid-roccat* |
| 9007 | F: Documentation/ABI/*/sysfs-driver-hid-roccat* |
| 9008 | |
| 9009 | ROCKER DRIVER |
| 9010 | M: Jiri Pirko <jiri@resnulli.us> |
| 9011 | M: Scott Feldman <sfeldma@gmail.com> |
| 9012 | L: netdev@vger.kernel.org |
| 9013 | S: Supported |
| 9014 | F: drivers/net/ethernet/rocker/ |
| 9015 | |
| 9016 | ROCKETPORT DRIVER |
| 9017 | P: Comtrol Corp. |
| 9018 | W: http://www.comtrol.com |
| 9019 | S: Maintained |
| 9020 | F: Documentation/serial/rocket.txt |
| 9021 | F: drivers/tty/rocket* |
| 9022 | |
| 9023 | ROCKETPORT EXPRESS/INFINITY DRIVER |
| 9024 | M: Kevin Cernekee <cernekee@gmail.com> |
| 9025 | L: linux-serial@vger.kernel.org |
| 9026 | S: Odd Fixes |
| 9027 | F: drivers/tty/serial/rp2.* |
| 9028 | |
| 9029 | ROSE NETWORK LAYER |
| 9030 | M: Ralf Baechle <ralf@linux-mips.org> |
| 9031 | L: linux-hams@vger.kernel.org |
| 9032 | W: http://www.linux-ax25.org/ |
| 9033 | S: Maintained |
| 9034 | F: include/net/rose.h |
| 9035 | F: include/uapi/linux/rose.h |
| 9036 | F: net/rose/ |
| 9037 | |
| 9038 | RTL2830 MEDIA DRIVER |
| 9039 | M: Antti Palosaari <crope@iki.fi> |
| 9040 | L: linux-media@vger.kernel.org |
| 9041 | W: http://linuxtv.org/ |
| 9042 | W: http://palosaari.fi/linux/ |
| 9043 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9044 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9045 | S: Maintained |
| 9046 | F: drivers/media/dvb-frontends/rtl2830* |
| 9047 | |
| 9048 | RTL2832 MEDIA DRIVER |
| 9049 | M: Antti Palosaari <crope@iki.fi> |
| 9050 | L: linux-media@vger.kernel.org |
| 9051 | W: http://linuxtv.org/ |
| 9052 | W: http://palosaari.fi/linux/ |
| 9053 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9054 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9055 | S: Maintained |
| 9056 | F: drivers/media/dvb-frontends/rtl2832* |
| 9057 | |
| 9058 | RTL2832_SDR MEDIA DRIVER |
| 9059 | M: Antti Palosaari <crope@iki.fi> |
| 9060 | L: linux-media@vger.kernel.org |
| 9061 | W: http://linuxtv.org/ |
| 9062 | W: http://palosaari.fi/linux/ |
| 9063 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9064 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9065 | S: Maintained |
| 9066 | F: drivers/media/dvb-frontends/rtl2832_sdr* |
| 9067 | |
| 9068 | RTL8180 WIRELESS DRIVER |
| 9069 | L: linux-wireless@vger.kernel.org |
| 9070 | W: http://wireless.kernel.org/ |
| 9071 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
| 9072 | S: Orphan |
| 9073 | F: drivers/net/wireless/rtl818x/rtl8180/ |
| 9074 | |
| 9075 | RTL8187 WIRELESS DRIVER |
| 9076 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
| 9077 | M: Hin-Tak Leung <htl10@users.sourceforge.net> |
| 9078 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 9079 | L: linux-wireless@vger.kernel.org |
| 9080 | W: http://wireless.kernel.org/ |
| 9081 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
| 9082 | S: Maintained |
| 9083 | F: drivers/net/wireless/rtl818x/rtl8187/ |
| 9084 | |
| 9085 | RTL8192CE WIRELESS DRIVER |
| 9086 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 9087 | M: Chaoming Li <chaoming_li@realsil.com.cn> |
| 9088 | L: linux-wireless@vger.kernel.org |
| 9089 | W: http://wireless.kernel.org/ |
| 9090 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git |
| 9091 | S: Maintained |
| 9092 | F: drivers/net/wireless/rtlwifi/ |
| 9093 | F: drivers/net/wireless/rtlwifi/rtl8192ce/ |
| 9094 | |
| 9095 | RTL8XXXU WIRELESS DRIVER (rtl8xxxu) |
| 9096 | M: Jes Sorensen <Jes.Sorensen@redhat.com> |
| 9097 | L: linux-wireless@vger.kernel.org |
| 9098 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211 |
| 9099 | S: Maintained |
| 9100 | F: drivers/net/wireless/realtek/rtl8xxxu/ |
| 9101 | |
| 9102 | S3 SAVAGE FRAMEBUFFER DRIVER |
| 9103 | M: Antonino Daplas <adaplas@gmail.com> |
| 9104 | L: linux-fbdev@vger.kernel.org |
| 9105 | S: Maintained |
| 9106 | F: drivers/video/fbdev/savage/ |
| 9107 | |
| 9108 | S390 |
| 9109 | M: Martin Schwidefsky <schwidefsky@de.ibm.com> |
| 9110 | M: Heiko Carstens <heiko.carstens@de.ibm.com> |
| 9111 | L: linux-s390@vger.kernel.org |
| 9112 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9113 | S: Supported |
| 9114 | F: arch/s390/ |
| 9115 | F: drivers/s390/ |
| 9116 | F: Documentation/s390/ |
| 9117 | F: Documentation/DocBook/s390* |
| 9118 | |
| 9119 | S390 COMMON I/O LAYER |
| 9120 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> |
| 9121 | M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com> |
| 9122 | L: linux-s390@vger.kernel.org |
| 9123 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9124 | S: Supported |
| 9125 | F: drivers/s390/cio/ |
| 9126 | |
| 9127 | S390 DASD DRIVER |
| 9128 | M: Stefan Weinhuber <wein@de.ibm.com> |
| 9129 | M: Stefan Haberland <stefan.haberland@de.ibm.com> |
| 9130 | L: linux-s390@vger.kernel.org |
| 9131 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9132 | S: Supported |
| 9133 | F: drivers/s390/block/dasd* |
| 9134 | F: block/partitions/ibm.c |
| 9135 | |
| 9136 | S390 NETWORK DRIVERS |
| 9137 | M: Ursula Braun <ursula.braun@de.ibm.com> |
| 9138 | L: linux-s390@vger.kernel.org |
| 9139 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9140 | S: Supported |
| 9141 | F: drivers/s390/net/ |
| 9142 | |
| 9143 | S390 PCI SUBSYSTEM |
| 9144 | M: Sebastian Ott <sebott@linux.vnet.ibm.com> |
| 9145 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> |
| 9146 | L: linux-s390@vger.kernel.org |
| 9147 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9148 | S: Supported |
| 9149 | F: arch/s390/pci/ |
| 9150 | F: drivers/pci/hotplug/s390_pci_hpc.c |
| 9151 | |
| 9152 | S390 ZCRYPT DRIVER |
| 9153 | M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> |
| 9154 | L: linux-s390@vger.kernel.org |
| 9155 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9156 | S: Supported |
| 9157 | F: drivers/s390/crypto/ |
| 9158 | |
| 9159 | S390 ZFCP DRIVER |
| 9160 | M: Steffen Maier <maier@linux.vnet.ibm.com> |
| 9161 | L: linux-s390@vger.kernel.org |
| 9162 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9163 | S: Supported |
| 9164 | F: drivers/s390/scsi/zfcp_* |
| 9165 | |
| 9166 | S390 IUCV NETWORK LAYER |
| 9167 | M: Ursula Braun <ursula.braun@de.ibm.com> |
| 9168 | L: linux-s390@vger.kernel.org |
| 9169 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9170 | S: Supported |
| 9171 | F: drivers/s390/net/*iucv* |
| 9172 | F: include/net/iucv/ |
| 9173 | F: net/iucv/ |
| 9174 | |
| 9175 | S390 IOMMU (PCI) |
| 9176 | M: Gerald Schaefer <gerald.schaefer@de.ibm.com> |
| 9177 | L: linux-s390@vger.kernel.org |
| 9178 | W: http://www.ibm.com/developerworks/linux/linux390/ |
| 9179 | S: Supported |
| 9180 | F: drivers/iommu/s390-iommu.c |
| 9181 | |
| 9182 | S3C24XX SD/MMC Driver |
| 9183 | M: Ben Dooks <ben-linux@fluff.org> |
| 9184 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 9185 | S: Supported |
| 9186 | F: drivers/mmc/host/s3cmci.* |
| 9187 | |
| 9188 | SAA6588 RDS RECEIVER DRIVER |
| 9189 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9190 | L: linux-media@vger.kernel.org |
| 9191 | T: git git://linuxtv.org/media_tree.git |
| 9192 | W: http://linuxtv.org |
| 9193 | S: Odd Fixes |
| 9194 | F: drivers/media/i2c/saa6588* |
| 9195 | |
| 9196 | SAA7134 VIDEO4LINUX DRIVER |
| 9197 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 9198 | L: linux-media@vger.kernel.org |
| 9199 | W: http://linuxtv.org |
| 9200 | T: git git://linuxtv.org/media_tree.git |
| 9201 | S: Odd fixes |
| 9202 | F: Documentation/video4linux/*.saa7134 |
| 9203 | F: drivers/media/pci/saa7134/ |
| 9204 | |
| 9205 | SAA7146 VIDEO4LINUX-2 DRIVER |
| 9206 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9207 | L: linux-media@vger.kernel.org |
| 9208 | T: git git://linuxtv.org/media_tree.git |
| 9209 | S: Maintained |
| 9210 | F: drivers/media/common/saa7146/ |
| 9211 | F: drivers/media/pci/saa7146/ |
| 9212 | F: include/media/saa7146* |
| 9213 | |
| 9214 | SAMSUNG LAPTOP DRIVER |
| 9215 | M: Corentin Chary <corentin.chary@gmail.com> |
| 9216 | L: platform-driver-x86@vger.kernel.org |
| 9217 | S: Maintained |
| 9218 | F: drivers/platform/x86/samsung-laptop.c |
| 9219 | |
| 9220 | SAMSUNG AUDIO (ASoC) DRIVERS |
| 9221 | M: Sangbeom Kim <sbkim73@samsung.com> |
| 9222 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9223 | S: Supported |
| 9224 | F: sound/soc/samsung/ |
| 9225 | |
| 9226 | SAMSUNG FRAMEBUFFER DRIVER |
| 9227 | M: Jingoo Han <jingoohan1@gmail.com> |
| 9228 | L: linux-fbdev@vger.kernel.org |
| 9229 | S: Maintained |
| 9230 | F: drivers/video/fbdev/s3c-fb.c |
| 9231 | |
| 9232 | SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS |
| 9233 | M: Sangbeom Kim <sbkim73@samsung.com> |
| 9234 | M: Krzysztof Kozlowski <k.kozlowski@samsung.com> |
| 9235 | L: linux-kernel@vger.kernel.org |
| 9236 | L: linux-samsung-soc@vger.kernel.org |
| 9237 | S: Supported |
| 9238 | F: drivers/mfd/sec*.c |
| 9239 | F: drivers/regulator/s2m*.c |
| 9240 | F: drivers/regulator/s5m*.c |
| 9241 | F: drivers/clk/clk-s2mps11.c |
| 9242 | F: drivers/rtc/rtc-s5m.c |
| 9243 | F: include/linux/mfd/samsung/ |
| 9244 | F: Documentation/devicetree/bindings/regulator/s5m8767-regulator.txt |
| 9245 | F: Documentation/devicetree/bindings/mfd/s2mp*.txt |
| 9246 | |
| 9247 | SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS |
| 9248 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 9249 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
| 9250 | L: linux-media@vger.kernel.org |
| 9251 | Q: https://patchwork.linuxtv.org/project/linux-media/list/ |
| 9252 | S: Supported |
| 9253 | F: drivers/media/platform/exynos4-is/ |
| 9254 | |
| 9255 | SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER |
| 9256 | M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> |
| 9257 | L: linux-media@vger.kernel.org |
| 9258 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 9259 | S: Maintained |
| 9260 | F: drivers/media/platform/s3c-camif/ |
| 9261 | F: include/media/s3c_camif.h |
| 9262 | |
| 9263 | SAMSUNG S5C73M3 CAMERA DRIVER |
| 9264 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 9265 | M: Andrzej Hajda <a.hajda@samsung.com> |
| 9266 | L: linux-media@vger.kernel.org |
| 9267 | S: Supported |
| 9268 | F: drivers/media/i2c/s5c73m3/* |
| 9269 | |
| 9270 | SAMSUNG S5K5BAF CAMERA DRIVER |
| 9271 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 9272 | M: Andrzej Hajda <a.hajda@samsung.com> |
| 9273 | L: linux-media@vger.kernel.org |
| 9274 | S: Supported |
| 9275 | F: drivers/media/i2c/s5k5baf.c |
| 9276 | |
| 9277 | SAMSUNG S3FWRN5 NFC DRIVER |
| 9278 | M: Robert Baldyga <r.baldyga@samsung.com> |
| 9279 | L: linux-nfc@lists.01.org (moderated for non-subscribers) |
| 9280 | S: Supported |
| 9281 | F: drivers/nfc/s3fwrn5 |
| 9282 | |
| 9283 | SAMSUNG SOC CLOCK DRIVERS |
| 9284 | M: Sylwester Nawrocki <s.nawrocki@samsung.com> |
| 9285 | M: Tomasz Figa <tomasz.figa@gmail.com> |
| 9286 | S: Supported |
| 9287 | L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) |
| 9288 | F: drivers/clk/samsung/ |
| 9289 | |
| 9290 | SAMSUNG SXGBE DRIVERS |
| 9291 | M: Byungho An <bh74.an@samsung.com> |
| 9292 | M: Girish K S <ks.giri@samsung.com> |
| 9293 | M: Vipul Pandya <vipul.pandya@samsung.com> |
| 9294 | S: Supported |
| 9295 | L: netdev@vger.kernel.org |
| 9296 | F: drivers/net/ethernet/samsung/sxgbe/ |
| 9297 | |
| 9298 | SAMSUNG THERMAL DRIVER |
| 9299 | M: Lukasz Majewski <l.majewski@samsung.com> |
| 9300 | L: linux-pm@vger.kernel.org |
| 9301 | L: linux-samsung-soc@vger.kernel.org |
| 9302 | S: Supported |
| 9303 | T: https://github.com/lmajewski/linux-samsung-thermal.git |
| 9304 | F: drivers/thermal/samsung/ |
| 9305 | |
| 9306 | SAMSUNG USB2 PHY DRIVER |
| 9307 | M: Kamil Debski <k.debski@samsung.com> |
| 9308 | L: linux-kernel@vger.kernel.org |
| 9309 | S: Supported |
| 9310 | F: Documentation/devicetree/bindings/phy/samsung-phy.txt |
| 9311 | F: Documentation/phy/samsung-usb2.txt |
| 9312 | F: drivers/phy/phy-exynos4210-usb2.c |
| 9313 | F: drivers/phy/phy-exynos4x12-usb2.c |
| 9314 | F: drivers/phy/phy-exynos5250-usb2.c |
| 9315 | F: drivers/phy/phy-s5pv210-usb2.c |
| 9316 | F: drivers/phy/phy-samsung-usb2.c |
| 9317 | F: drivers/phy/phy-samsung-usb2.h |
| 9318 | |
| 9319 | SERIAL DRIVERS |
| 9320 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 9321 | L: linux-serial@vger.kernel.org |
| 9322 | S: Maintained |
| 9323 | F: drivers/tty/serial/ |
| 9324 | |
| 9325 | SYNOPSYS DESIGNWARE DMAC DRIVER |
| 9326 | M: Viresh Kumar <vireshk@kernel.org> |
| 9327 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| 9328 | S: Maintained |
| 9329 | F: include/linux/dma/dw.h |
| 9330 | F: include/linux/platform_data/dma-dw.h |
| 9331 | F: drivers/dma/dw/ |
| 9332 | |
| 9333 | SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver |
| 9334 | M: Lars Persson <lars.persson@axis.com> |
| 9335 | L: netdev@vger.kernel.org |
| 9336 | S: Supported |
| 9337 | F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt |
| 9338 | F: drivers/net/ethernet/synopsys/dwc_eth_qos.c |
| 9339 | |
| 9340 | SYNOPSYS DESIGNWARE I2C DRIVER |
| 9341 | M: Andy Shevchenko <andriy.shevchenko@linux.intel.com> |
| 9342 | M: Jarkko Nikula <jarkko.nikula@linux.intel.com> |
| 9343 | M: Mika Westerberg <mika.westerberg@linux.intel.com> |
| 9344 | L: linux-i2c@vger.kernel.org |
| 9345 | S: Maintained |
| 9346 | F: drivers/i2c/busses/i2c-designware-* |
| 9347 | F: include/linux/platform_data/i2c-designware.h |
| 9348 | |
| 9349 | SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER |
| 9350 | M: Jaehoon Chung <jh80.chung@samsung.com> |
| 9351 | L: linux-mmc@vger.kernel.org |
| 9352 | S: Maintained |
| 9353 | F: include/linux/mmc/dw_mmc.h |
| 9354 | F: drivers/mmc/host/dw_mmc* |
| 9355 | |
| 9356 | SYSTEM TRACE MODULE CLASS |
| 9357 | M: Alexander Shishkin <alexander.shishkin@linux.intel.com> |
| 9358 | S: Maintained |
| 9359 | F: Documentation/trace/stm.txt |
| 9360 | F: drivers/hwtracing/stm/ |
| 9361 | F: include/linux/stm.h |
| 9362 | F: include/uapi/linux/stm.h |
| 9363 | |
| 9364 | THUNDERBOLT DRIVER |
| 9365 | M: Andreas Noever <andreas.noever@gmail.com> |
| 9366 | S: Maintained |
| 9367 | F: drivers/thunderbolt/ |
| 9368 | |
| 9369 | TIMEKEEPING, CLOCKSOURCE CORE, NTP |
| 9370 | M: John Stultz <john.stultz@linaro.org> |
| 9371 | M: Thomas Gleixner <tglx@linutronix.de> |
| 9372 | L: linux-kernel@vger.kernel.org |
| 9373 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core |
| 9374 | S: Supported |
| 9375 | F: include/linux/clocksource.h |
| 9376 | F: include/linux/time.h |
| 9377 | F: include/linux/timex.h |
| 9378 | F: include/uapi/linux/time.h |
| 9379 | F: include/uapi/linux/timex.h |
| 9380 | F: kernel/time/clocksource.c |
| 9381 | F: kernel/time/time*.c |
| 9382 | F: kernel/time/ntp.c |
| 9383 | F: tools/testing/selftests/timers/ |
| 9384 | |
| 9385 | SC1200 WDT DRIVER |
| 9386 | M: Zwane Mwaikambo <zwanem@gmail.com> |
| 9387 | S: Maintained |
| 9388 | F: drivers/watchdog/sc1200wdt.c |
| 9389 | |
| 9390 | SCHEDULER |
| 9391 | M: Ingo Molnar <mingo@redhat.com> |
| 9392 | M: Peter Zijlstra <peterz@infradead.org> |
| 9393 | L: linux-kernel@vger.kernel.org |
| 9394 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core |
| 9395 | S: Maintained |
| 9396 | F: kernel/sched/ |
| 9397 | F: include/linux/sched.h |
| 9398 | F: include/uapi/linux/sched.h |
| 9399 | F: include/linux/wait.h |
| 9400 | |
| 9401 | SCORE ARCHITECTURE |
| 9402 | M: Chen Liqin <liqin.linux@gmail.com> |
| 9403 | M: Lennox Wu <lennox.wu@gmail.com> |
| 9404 | W: http://www.sunplus.com |
| 9405 | S: Supported |
| 9406 | F: arch/score/ |
| 9407 | |
| 9408 | SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers |
| 9409 | M: Sudeep Holla <sudeep.holla@arm.com> |
| 9410 | L: linux-arm-kernel@lists.infradead.org |
| 9411 | S: Maintained |
| 9412 | F: Documentation/devicetree/bindings/arm/arm,scpi.txt |
| 9413 | F: drivers/clk/clk-scpi.c |
| 9414 | F: drivers/cpufreq/scpi-cpufreq.c |
| 9415 | F: drivers/firmware/arm_scpi.c |
| 9416 | F: include/linux/scpi_protocol.h |
| 9417 | |
| 9418 | SCSI CDROM DRIVER |
| 9419 | M: Jens Axboe <axboe@kernel.dk> |
| 9420 | L: linux-scsi@vger.kernel.org |
| 9421 | W: http://www.kernel.dk |
| 9422 | S: Maintained |
| 9423 | F: drivers/scsi/sr* |
| 9424 | |
| 9425 | SCSI RDMA PROTOCOL (SRP) INITIATOR |
| 9426 | M: Bart Van Assche <bart.vanassche@sandisk.com> |
| 9427 | L: linux-rdma@vger.kernel.org |
| 9428 | S: Supported |
| 9429 | W: http://www.openfabrics.org |
| 9430 | Q: http://patchwork.kernel.org/project/linux-rdma/list/ |
| 9431 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git |
| 9432 | F: drivers/infiniband/ulp/srp/ |
| 9433 | F: include/scsi/srp.h |
| 9434 | |
| 9435 | SCSI SG DRIVER |
| 9436 | M: Doug Gilbert <dgilbert@interlog.com> |
| 9437 | L: linux-scsi@vger.kernel.org |
| 9438 | W: http://sg.danny.cz/sg |
| 9439 | S: Maintained |
| 9440 | F: Documentation/scsi/scsi-generic.txt |
| 9441 | F: drivers/scsi/sg.c |
| 9442 | F: include/scsi/sg.h |
| 9443 | |
| 9444 | SCSI SUBSYSTEM |
| 9445 | M: "James E.J. Bottomley" <JBottomley@odin.com> |
| 9446 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git |
| 9447 | M: "Martin K. Petersen" <martin.petersen@oracle.com> |
| 9448 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git |
| 9449 | L: linux-scsi@vger.kernel.org |
| 9450 | S: Maintained |
| 9451 | F: drivers/scsi/ |
| 9452 | F: include/scsi/ |
| 9453 | |
| 9454 | SCSI TAPE DRIVER |
| 9455 | M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> |
| 9456 | L: linux-scsi@vger.kernel.org |
| 9457 | S: Maintained |
| 9458 | F: Documentation/scsi/st.txt |
| 9459 | F: drivers/scsi/st.* |
| 9460 | F: drivers/scsi/st_*.h |
| 9461 | |
| 9462 | SCTP PROTOCOL |
| 9463 | M: Vlad Yasevich <vyasevich@gmail.com> |
| 9464 | M: Neil Horman <nhorman@tuxdriver.com> |
| 9465 | L: linux-sctp@vger.kernel.org |
| 9466 | W: http://lksctp.sourceforge.net |
| 9467 | S: Maintained |
| 9468 | F: Documentation/networking/sctp.txt |
| 9469 | F: include/linux/sctp.h |
| 9470 | F: include/uapi/linux/sctp.h |
| 9471 | F: include/net/sctp/ |
| 9472 | F: net/sctp/ |
| 9473 | |
| 9474 | SCx200 CPU SUPPORT |
| 9475 | M: Jim Cromie <jim.cromie@gmail.com> |
| 9476 | S: Odd Fixes |
| 9477 | F: Documentation/i2c/busses/scx200_acb |
| 9478 | F: arch/x86/platform/scx200/ |
| 9479 | F: drivers/watchdog/scx200_wdt.c |
| 9480 | F: drivers/i2c/busses/scx200* |
| 9481 | F: drivers/mtd/maps/scx200_docflash.c |
| 9482 | F: include/linux/scx200.h |
| 9483 | |
| 9484 | SCx200 GPIO DRIVER |
| 9485 | M: Jim Cromie <jim.cromie@gmail.com> |
| 9486 | S: Maintained |
| 9487 | F: drivers/char/scx200_gpio.c |
| 9488 | F: include/linux/scx200_gpio.h |
| 9489 | |
| 9490 | SCx200 HRT CLOCKSOURCE DRIVER |
| 9491 | M: Jim Cromie <jim.cromie@gmail.com> |
| 9492 | S: Maintained |
| 9493 | F: drivers/clocksource/scx200_hrt.c |
| 9494 | |
| 9495 | SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER |
| 9496 | M: Sascha Sommer <saschasommer@freenet.de> |
| 9497 | L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) |
| 9498 | S: Maintained |
| 9499 | F: drivers/mmc/host/sdricoh_cs.c |
| 9500 | |
| 9501 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER |
| 9502 | L: linux-mmc@vger.kernel.org |
| 9503 | S: Orphan |
| 9504 | F: drivers/mmc/host/sdhci.* |
| 9505 | F: drivers/mmc/host/sdhci-pltfm.[ch] |
| 9506 | |
| 9507 | SECURE COMPUTING |
| 9508 | M: Kees Cook <keescook@chromium.org> |
| 9509 | R: Andy Lutomirski <luto@amacapital.net> |
| 9510 | R: Will Drewry <wad@chromium.org> |
| 9511 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp |
| 9512 | S: Supported |
| 9513 | F: kernel/seccomp.c |
| 9514 | F: include/uapi/linux/seccomp.h |
| 9515 | F: include/linux/seccomp.h |
| 9516 | F: tools/testing/selftests/seccomp/* |
| 9517 | K: \bsecure_computing |
| 9518 | K: \bTIF_SECCOMP\b |
| 9519 | |
| 9520 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER |
| 9521 | M: Ben Dooks <ben-linux@fluff.org> |
| 9522 | M: Jaehoon Chung <jh80.chung@samsung.com> |
| 9523 | L: linux-mmc@vger.kernel.org |
| 9524 | S: Maintained |
| 9525 | F: drivers/mmc/host/sdhci-s3c* |
| 9526 | |
| 9527 | SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER |
| 9528 | M: Viresh Kumar <vireshk@kernel.org> |
| 9529 | L: spear-devel@list.st.com |
| 9530 | L: linux-mmc@vger.kernel.org |
| 9531 | S: Maintained |
| 9532 | F: drivers/mmc/host/sdhci-spear.c |
| 9533 | |
| 9534 | SECURITY SUBSYSTEM |
| 9535 | M: James Morris <james.l.morris@oracle.com> |
| 9536 | M: "Serge E. Hallyn" <serge@hallyn.com> |
| 9537 | L: linux-security-module@vger.kernel.org (suggested Cc:) |
| 9538 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git |
| 9539 | W: http://kernsec.org/ |
| 9540 | S: Supported |
| 9541 | F: security/ |
| 9542 | |
| 9543 | SECURITY CONTACT |
| 9544 | M: Security Officers <security@kernel.org> |
| 9545 | S: Supported |
| 9546 | |
| 9547 | SELINUX SECURITY MODULE |
| 9548 | M: Paul Moore <paul@paul-moore.com> |
| 9549 | M: Stephen Smalley <sds@tycho.nsa.gov> |
| 9550 | M: Eric Paris <eparis@parisplace.org> |
| 9551 | L: selinux@tycho.nsa.gov (moderated for non-subscribers) |
| 9552 | W: http://selinuxproject.org |
| 9553 | T: git git://git.infradead.org/users/pcmoore/selinux |
| 9554 | S: Supported |
| 9555 | F: include/linux/selinux* |
| 9556 | F: security/selinux/ |
| 9557 | F: scripts/selinux/ |
| 9558 | |
| 9559 | APPARMOR SECURITY MODULE |
| 9560 | M: John Johansen <john.johansen@canonical.com> |
| 9561 | L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) |
| 9562 | W: apparmor.wiki.kernel.org |
| 9563 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git |
| 9564 | S: Supported |
| 9565 | F: security/apparmor/ |
| 9566 | |
| 9567 | YAMA SECURITY MODULE |
| 9568 | M: Kees Cook <keescook@chromium.org> |
| 9569 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip |
| 9570 | S: Supported |
| 9571 | F: security/yama/ |
| 9572 | |
| 9573 | SENSABLE PHANTOM |
| 9574 | M: Jiri Slaby <jirislaby@gmail.com> |
| 9575 | S: Maintained |
| 9576 | F: drivers/misc/phantom.c |
| 9577 | F: include/uapi/linux/phantom.h |
| 9578 | |
| 9579 | SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER |
| 9580 | M: Jayamohan Kallickal <jayamohan.kallickal@avagotech.com> |
| 9581 | M: Ketan Mukadam <ketan.mukadam@avagotech.com> |
| 9582 | M: John Soni Jose <sony.john@avagotech.com> |
| 9583 | L: linux-scsi@vger.kernel.org |
| 9584 | W: http://www.avagotech.com |
| 9585 | S: Supported |
| 9586 | F: drivers/scsi/be2iscsi/ |
| 9587 | |
| 9588 | Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER |
| 9589 | M: Sathya Perla <sathya.perla@avagotech.com> |
| 9590 | M: Ajit Khaparde <ajit.khaparde@avagotech.com> |
| 9591 | M: Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com> |
| 9592 | M: Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com> |
| 9593 | L: netdev@vger.kernel.org |
| 9594 | W: http://www.emulex.com |
| 9595 | S: Supported |
| 9596 | F: drivers/net/ethernet/emulex/benet/ |
| 9597 | |
| 9598 | EMULEX ONECONNECT ROCE DRIVER |
| 9599 | M: Selvin Xavier <selvin.xavier@avagotech.com> |
| 9600 | M: Devesh Sharma <devesh.sharma@avagotech.com> |
| 9601 | M: Mitesh Ahuja <mitesh.ahuja@avagotech.com> |
| 9602 | L: linux-rdma@vger.kernel.org |
| 9603 | W: http://www.emulex.com |
| 9604 | S: Supported |
| 9605 | F: drivers/infiniband/hw/ocrdma/ |
| 9606 | |
| 9607 | SFC NETWORK DRIVER |
| 9608 | M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> |
| 9609 | M: Shradha Shah <sshah@solarflare.com> |
| 9610 | L: netdev@vger.kernel.org |
| 9611 | S: Supported |
| 9612 | F: drivers/net/ethernet/sfc/ |
| 9613 | |
| 9614 | SGI GRU DRIVER |
| 9615 | M: Dimitri Sivanich <sivanich@sgi.com> |
| 9616 | S: Maintained |
| 9617 | F: drivers/misc/sgi-gru/ |
| 9618 | |
| 9619 | SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER |
| 9620 | M: Pat Gefre <pfg@sgi.com> |
| 9621 | L: linux-ia64@vger.kernel.org |
| 9622 | S: Supported |
| 9623 | F: Documentation/ia64/serial.txt |
| 9624 | F: drivers/tty/serial/ioc?_serial.c |
| 9625 | F: include/linux/ioc?.h |
| 9626 | |
| 9627 | SGI XP/XPC/XPNET DRIVER |
| 9628 | M: Cliff Whickman <cpw@sgi.com> |
| 9629 | M: Robin Holt <robinmholt@gmail.com> |
| 9630 | S: Maintained |
| 9631 | F: drivers/misc/sgi-xp/ |
| 9632 | |
| 9633 | SI2157 MEDIA DRIVER |
| 9634 | M: Antti Palosaari <crope@iki.fi> |
| 9635 | L: linux-media@vger.kernel.org |
| 9636 | W: http://linuxtv.org/ |
| 9637 | W: http://palosaari.fi/linux/ |
| 9638 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9639 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9640 | S: Maintained |
| 9641 | F: drivers/media/tuners/si2157* |
| 9642 | |
| 9643 | SI2168 MEDIA DRIVER |
| 9644 | M: Antti Palosaari <crope@iki.fi> |
| 9645 | L: linux-media@vger.kernel.org |
| 9646 | W: http://linuxtv.org/ |
| 9647 | W: http://palosaari.fi/linux/ |
| 9648 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9649 | T: git git://linuxtv.org/anttip/media_tree.git |
| 9650 | S: Maintained |
| 9651 | F: drivers/media/dvb-frontends/si2168* |
| 9652 | |
| 9653 | SI470X FM RADIO RECEIVER I2C DRIVER |
| 9654 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9655 | L: linux-media@vger.kernel.org |
| 9656 | T: git git://linuxtv.org/media_tree.git |
| 9657 | W: http://linuxtv.org |
| 9658 | S: Odd Fixes |
| 9659 | F: drivers/media/radio/si470x/radio-si470x-i2c.c |
| 9660 | |
| 9661 | SI470X FM RADIO RECEIVER USB DRIVER |
| 9662 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9663 | L: linux-media@vger.kernel.org |
| 9664 | T: git git://linuxtv.org/media_tree.git |
| 9665 | W: http://linuxtv.org |
| 9666 | S: Maintained |
| 9667 | F: drivers/media/radio/si470x/radio-si470x-common.c |
| 9668 | F: drivers/media/radio/si470x/radio-si470x.h |
| 9669 | F: drivers/media/radio/si470x/radio-si470x-usb.c |
| 9670 | |
| 9671 | SI4713 FM RADIO TRANSMITTER I2C DRIVER |
| 9672 | M: Eduardo Valentin <edubezval@gmail.com> |
| 9673 | L: linux-media@vger.kernel.org |
| 9674 | T: git git://linuxtv.org/media_tree.git |
| 9675 | W: http://linuxtv.org |
| 9676 | S: Odd Fixes |
| 9677 | F: drivers/media/radio/si4713/si4713.? |
| 9678 | |
| 9679 | SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER |
| 9680 | M: Eduardo Valentin <edubezval@gmail.com> |
| 9681 | L: linux-media@vger.kernel.org |
| 9682 | T: git git://linuxtv.org/media_tree.git |
| 9683 | W: http://linuxtv.org |
| 9684 | S: Odd Fixes |
| 9685 | F: drivers/media/radio/si4713/radio-platform-si4713.c |
| 9686 | |
| 9687 | SI4713 FM RADIO TRANSMITTER USB DRIVER |
| 9688 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 9689 | L: linux-media@vger.kernel.org |
| 9690 | T: git git://linuxtv.org/media_tree.git |
| 9691 | W: http://linuxtv.org |
| 9692 | S: Maintained |
| 9693 | F: drivers/media/radio/si4713/radio-usb-si4713.c |
| 9694 | |
| 9695 | SIANO DVB DRIVER |
| 9696 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 9697 | L: linux-media@vger.kernel.org |
| 9698 | W: http://linuxtv.org |
| 9699 | T: git git://linuxtv.org/media_tree.git |
| 9700 | S: Odd fixes |
| 9701 | F: drivers/media/common/siano/ |
| 9702 | F: drivers/media/usb/siano/ |
| 9703 | F: drivers/media/usb/siano/ |
| 9704 | F: drivers/media/mmc/siano/ |
| 9705 | |
| 9706 | SIMPLEFB FB DRIVER |
| 9707 | M: Hans de Goede <hdegoede@redhat.com> |
| 9708 | L: linux-fbdev@vger.kernel.org |
| 9709 | S: Maintained |
| 9710 | F: Documentation/devicetree/bindings/display/simple-framebuffer.txt |
| 9711 | F: drivers/video/fbdev/simplefb.c |
| 9712 | F: include/linux/platform_data/simplefb.h |
| 9713 | |
| 9714 | SH_VEU V4L2 MEM2MEM DRIVER |
| 9715 | L: linux-media@vger.kernel.org |
| 9716 | S: Orphan |
| 9717 | F: drivers/media/platform/sh_veu.c |
| 9718 | |
| 9719 | SH_VOU V4L2 OUTPUT DRIVER |
| 9720 | L: linux-media@vger.kernel.org |
| 9721 | S: Orphan |
| 9722 | F: drivers/media/platform/sh_vou.c |
| 9723 | F: include/media/sh_vou.h |
| 9724 | |
| 9725 | SIMPLE FIRMWARE INTERFACE (SFI) |
| 9726 | M: Len Brown <lenb@kernel.org> |
| 9727 | L: sfi-devel@simplefirmware.org |
| 9728 | W: http://simplefirmware.org/ |
| 9729 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git |
| 9730 | S: Supported |
| 9731 | F: arch/x86/platform/sfi/ |
| 9732 | F: drivers/sfi/ |
| 9733 | F: include/linux/sfi*.h |
| 9734 | |
| 9735 | SIMTEC EB110ATX (Chalice CATS) |
| 9736 | P: Ben Dooks |
| 9737 | P: Vincent Sanders <vince@simtec.co.uk> |
| 9738 | M: Simtec Linux Team <linux@simtec.co.uk> |
| 9739 | W: http://www.simtec.co.uk/products/EB110ATX/ |
| 9740 | S: Supported |
| 9741 | |
| 9742 | SIMTEC EB2410ITX (BAST) |
| 9743 | P: Ben Dooks |
| 9744 | P: Vincent Sanders <vince@simtec.co.uk> |
| 9745 | M: Simtec Linux Team <linux@simtec.co.uk> |
| 9746 | W: http://www.simtec.co.uk/products/EB2410ITX/ |
| 9747 | S: Supported |
| 9748 | F: arch/arm/mach-s3c24xx/mach-bast.c |
| 9749 | F: arch/arm/mach-s3c24xx/bast-ide.c |
| 9750 | F: arch/arm/mach-s3c24xx/bast-irq.c |
| 9751 | |
| 9752 | TI DAVINCI MACHINE SUPPORT |
| 9753 | M: Sekhar Nori <nsekhar@ti.com> |
| 9754 | M: Kevin Hilman <khilman@deeprootsystems.com> |
| 9755 | T: git git://gitorious.org/linux-davinci/linux-davinci.git |
| 9756 | Q: http://patchwork.kernel.org/project/linux-davinci/list/ |
| 9757 | S: Supported |
| 9758 | F: arch/arm/mach-davinci/ |
| 9759 | F: drivers/i2c/busses/i2c-davinci.c |
| 9760 | |
| 9761 | TI DAVINCI SERIES MEDIA DRIVER |
| 9762 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
| 9763 | L: linux-media@vger.kernel.org |
| 9764 | W: http://linuxtv.org/ |
| 9765 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9766 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 9767 | S: Maintained |
| 9768 | F: drivers/media/platform/davinci/ |
| 9769 | F: include/media/davinci/ |
| 9770 | |
| 9771 | TI AM437X VPFE DRIVER |
| 9772 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
| 9773 | L: linux-media@vger.kernel.org |
| 9774 | W: http://linuxtv.org/ |
| 9775 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9776 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 9777 | S: Maintained |
| 9778 | F: drivers/media/platform/am437x/ |
| 9779 | |
| 9780 | OV2659 OMNIVISION SENSOR DRIVER |
| 9781 | M: "Lad, Prabhakar" <prabhakar.csengg@gmail.com> |
| 9782 | L: linux-media@vger.kernel.org |
| 9783 | W: http://linuxtv.org/ |
| 9784 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 9785 | T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git |
| 9786 | S: Maintained |
| 9787 | F: drivers/media/i2c/ov2659.c |
| 9788 | F: include/media/ov2659.h |
| 9789 | |
| 9790 | SILICON MOTION SM712 FRAME BUFFER DRIVER |
| 9791 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 9792 | M: Teddy Wang <teddy.wang@siliconmotion.com> |
| 9793 | M: Sudip Mukherjee <sudip@vectorindia.org> |
| 9794 | L: linux-fbdev@vger.kernel.org |
| 9795 | S: Maintained |
| 9796 | F: drivers/video/fbdev/sm712* |
| 9797 | F: Documentation/fb/sm712fb.txt |
| 9798 | |
| 9799 | SIS 190 ETHERNET DRIVER |
| 9800 | M: Francois Romieu <romieu@fr.zoreil.com> |
| 9801 | L: netdev@vger.kernel.org |
| 9802 | S: Maintained |
| 9803 | F: drivers/net/ethernet/sis/sis190.c |
| 9804 | |
| 9805 | SIS 900/7016 FAST ETHERNET DRIVER |
| 9806 | M: Daniele Venzano <venza@brownhat.org> |
| 9807 | W: http://www.brownhat.org/sis900.html |
| 9808 | L: netdev@vger.kernel.org |
| 9809 | S: Maintained |
| 9810 | F: drivers/net/ethernet/sis/sis900.* |
| 9811 | |
| 9812 | SIS FRAMEBUFFER DRIVER |
| 9813 | M: Thomas Winischhofer <thomas@winischhofer.net> |
| 9814 | W: http://www.winischhofer.net/linuxsisvga.shtml |
| 9815 | S: Maintained |
| 9816 | F: Documentation/fb/sisfb.txt |
| 9817 | F: drivers/video/fbdev/sis/ |
| 9818 | F: include/video/sisfb.h |
| 9819 | |
| 9820 | SIS USB2VGA DRIVER |
| 9821 | M: Thomas Winischhofer <thomas@winischhofer.net> |
| 9822 | W: http://www.winischhofer.at/linuxsisusbvga.shtml |
| 9823 | S: Maintained |
| 9824 | F: drivers/usb/misc/sisusbvga/ |
| 9825 | |
| 9826 | SLAB ALLOCATOR |
| 9827 | M: Christoph Lameter <cl@linux.com> |
| 9828 | M: Pekka Enberg <penberg@kernel.org> |
| 9829 | M: David Rientjes <rientjes@google.com> |
| 9830 | M: Joonsoo Kim <iamjoonsoo.kim@lge.com> |
| 9831 | M: Andrew Morton <akpm@linux-foundation.org> |
| 9832 | L: linux-mm@kvack.org |
| 9833 | S: Maintained |
| 9834 | F: include/linux/sl?b*.h |
| 9835 | F: mm/sl?b* |
| 9836 | |
| 9837 | SLEEPABLE READ-COPY UPDATE (SRCU) |
| 9838 | M: Lai Jiangshan <jiangshanlai@gmail.com> |
| 9839 | M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
| 9840 | M: Josh Triplett <josh@joshtriplett.org> |
| 9841 | R: Steven Rostedt <rostedt@goodmis.org> |
| 9842 | R: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> |
| 9843 | L: linux-kernel@vger.kernel.org |
| 9844 | W: http://www.rdrop.com/users/paulmck/RCU/ |
| 9845 | S: Supported |
| 9846 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git |
| 9847 | F: include/linux/srcu.h |
| 9848 | F: kernel/rcu/srcu.c |
| 9849 | |
| 9850 | SMACK SECURITY MODULE |
| 9851 | M: Casey Schaufler <casey@schaufler-ca.com> |
| 9852 | L: linux-security-module@vger.kernel.org |
| 9853 | W: http://schaufler-ca.com |
| 9854 | T: git git://git.gitorious.org/smack-next/kernel.git |
| 9855 | S: Maintained |
| 9856 | F: Documentation/security/Smack.txt |
| 9857 | F: security/smack/ |
| 9858 | |
| 9859 | DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS) |
| 9860 | M: Kevin Hilman <khilman@kernel.org> |
| 9861 | M: Nishanth Menon <nm@ti.com> |
| 9862 | S: Maintained |
| 9863 | F: drivers/power/avs/ |
| 9864 | F: include/linux/power/smartreflex.h |
| 9865 | L: linux-pm@vger.kernel.org |
| 9866 | |
| 9867 | SMC91x ETHERNET DRIVER |
| 9868 | M: Nicolas Pitre <nico@fluxnic.net> |
| 9869 | S: Odd Fixes |
| 9870 | F: drivers/net/ethernet/smsc/smc91x.* |
| 9871 | |
| 9872 | SMIA AND SMIA++ IMAGE SENSOR DRIVER |
| 9873 | M: Sakari Ailus <sakari.ailus@iki.fi> |
| 9874 | L: linux-media@vger.kernel.org |
| 9875 | S: Maintained |
| 9876 | F: drivers/media/i2c/smiapp/ |
| 9877 | F: include/media/smiapp.h |
| 9878 | F: drivers/media/i2c/smiapp-pll.c |
| 9879 | F: drivers/media/i2c/smiapp-pll.h |
| 9880 | F: include/uapi/linux/smiapp.h |
| 9881 | F: Documentation/devicetree/bindings/media/i2c/nokia,smia.txt |
| 9882 | |
| 9883 | SMM665 HARDWARE MONITOR DRIVER |
| 9884 | M: Guenter Roeck <linux@roeck-us.net> |
| 9885 | L: linux-hwmon@vger.kernel.org |
| 9886 | S: Maintained |
| 9887 | F: Documentation/hwmon/smm665 |
| 9888 | F: drivers/hwmon/smm665.c |
| 9889 | |
| 9890 | SMSC EMC2103 HARDWARE MONITOR DRIVER |
| 9891 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 9892 | L: linux-hwmon@vger.kernel.org |
| 9893 | S: Maintained |
| 9894 | F: Documentation/hwmon/emc2103 |
| 9895 | F: drivers/hwmon/emc2103.c |
| 9896 | |
| 9897 | SMSC SCH5627 HARDWARE MONITOR DRIVER |
| 9898 | M: Hans de Goede <hdegoede@redhat.com> |
| 9899 | L: linux-hwmon@vger.kernel.org |
| 9900 | S: Supported |
| 9901 | F: Documentation/hwmon/sch5627 |
| 9902 | F: drivers/hwmon/sch5627.c |
| 9903 | |
| 9904 | SMSC47B397 HARDWARE MONITOR DRIVER |
| 9905 | M: Jean Delvare <jdelvare@suse.com> |
| 9906 | L: linux-hwmon@vger.kernel.org |
| 9907 | S: Maintained |
| 9908 | F: Documentation/hwmon/smsc47b397 |
| 9909 | F: drivers/hwmon/smsc47b397.c |
| 9910 | |
| 9911 | SMSC911x ETHERNET DRIVER |
| 9912 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 9913 | L: netdev@vger.kernel.org |
| 9914 | S: Maintained |
| 9915 | F: include/linux/smsc911x.h |
| 9916 | F: drivers/net/ethernet/smsc/smsc911x.* |
| 9917 | |
| 9918 | SMSC9420 PCI ETHERNET DRIVER |
| 9919 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 9920 | L: netdev@vger.kernel.org |
| 9921 | S: Maintained |
| 9922 | F: drivers/net/ethernet/smsc/smsc9420.* |
| 9923 | |
| 9924 | SMSC UFX6000 and UFX7000 USB to VGA DRIVER |
| 9925 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 9926 | L: linux-fbdev@vger.kernel.org |
| 9927 | S: Maintained |
| 9928 | F: drivers/video/fbdev/smscufx.c |
| 9929 | |
| 9930 | SOC-CAMERA V4L2 SUBSYSTEM |
| 9931 | M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> |
| 9932 | L: linux-media@vger.kernel.org |
| 9933 | T: git git://linuxtv.org/media_tree.git |
| 9934 | S: Maintained |
| 9935 | F: include/media/soc* |
| 9936 | F: drivers/media/i2c/soc_camera/ |
| 9937 | F: drivers/media/platform/soc_camera/ |
| 9938 | |
| 9939 | SOEKRIS NET48XX LED SUPPORT |
| 9940 | M: Chris Boot <bootc@bootc.net> |
| 9941 | S: Maintained |
| 9942 | F: drivers/leds/leds-net48xx.c |
| 9943 | |
| 9944 | SOFTLOGIC 6x10 MPEG CODEC |
| 9945 | M: Bluecherry Maintainers <maintainers@bluecherrydvr.com> |
| 9946 | M: Andrey Utkin <andrey.utkin@corp.bluecherry.net> |
| 9947 | M: Andrey Utkin <andrey.krieger.utkin@gmail.com> |
| 9948 | M: Ismael Luceno <ismael@iodev.co.uk> |
| 9949 | L: linux-media@vger.kernel.org |
| 9950 | S: Supported |
| 9951 | F: drivers/media/pci/solo6x10/ |
| 9952 | |
| 9953 | SOFTWARE RAID (Multiple Disks) SUPPORT |
| 9954 | M: Neil Brown <neilb@suse.com> |
| 9955 | L: linux-raid@vger.kernel.org |
| 9956 | S: Supported |
| 9957 | F: drivers/md/ |
| 9958 | F: include/linux/raid/ |
| 9959 | F: include/uapi/linux/raid/ |
| 9960 | |
| 9961 | SONIC NETWORK DRIVER |
| 9962 | M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> |
| 9963 | L: netdev@vger.kernel.org |
| 9964 | S: Maintained |
| 9965 | F: drivers/net/ethernet/natsemi/sonic.* |
| 9966 | |
| 9967 | SONICS SILICON BACKPLANE DRIVER (SSB) |
| 9968 | M: Michael Buesch <m@bues.ch> |
| 9969 | L: netdev@vger.kernel.org |
| 9970 | S: Maintained |
| 9971 | F: drivers/ssb/ |
| 9972 | F: include/linux/ssb/ |
| 9973 | |
| 9974 | SONY VAIO CONTROL DEVICE DRIVER |
| 9975 | M: Mattia Dongili <malattia@linux.it> |
| 9976 | L: platform-driver-x86@vger.kernel.org |
| 9977 | W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers |
| 9978 | S: Maintained |
| 9979 | F: Documentation/laptops/sony-laptop.txt |
| 9980 | F: drivers/char/sonypi.c |
| 9981 | F: drivers/platform/x86/sony-laptop.c |
| 9982 | F: include/linux/sony-laptop.h |
| 9983 | |
| 9984 | SONY MEMORYSTICK CARD SUPPORT |
| 9985 | M: Alex Dubov <oakad@yahoo.com> |
| 9986 | W: http://tifmxx.berlios.de/ |
| 9987 | S: Maintained |
| 9988 | F: drivers/memstick/host/tifm_ms.c |
| 9989 | |
| 9990 | SONY MEMORYSTICK STANDARD SUPPORT |
| 9991 | M: Maxim Levitsky <maximlevitsky@gmail.com> |
| 9992 | S: Maintained |
| 9993 | F: drivers/memstick/core/ms_block.* |
| 9994 | |
| 9995 | SOUND |
| 9996 | M: Jaroslav Kysela <perex@perex.cz> |
| 9997 | M: Takashi Iwai <tiwai@suse.com> |
| 9998 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 9999 | W: http://www.alsa-project.org/ |
| 10000 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
| 10001 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 10002 | Q: http://patchwork.kernel.org/project/alsa-devel/list/ |
| 10003 | S: Maintained |
| 10004 | F: Documentation/sound/ |
| 10005 | F: include/sound/ |
| 10006 | F: include/uapi/sound/ |
| 10007 | F: sound/ |
| 10008 | |
| 10009 | SOUND - COMPRESSED AUDIO |
| 10010 | M: Vinod Koul <vinod.koul@intel.com> |
| 10011 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 10012 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git |
| 10013 | S: Supported |
| 10014 | F: Documentation/sound/alsa/compress_offload.txt |
| 10015 | F: include/sound/compress_driver.h |
| 10016 | F: include/uapi/sound/compress_* |
| 10017 | F: sound/core/compress_offload.c |
| 10018 | F: sound/soc/soc-compress.c |
| 10019 | |
| 10020 | SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) |
| 10021 | M: Liam Girdwood <lgirdwood@gmail.com> |
| 10022 | M: Mark Brown <broonie@kernel.org> |
| 10023 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git |
| 10024 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 10025 | W: http://alsa-project.org/main/index.php/ASoC |
| 10026 | S: Supported |
| 10027 | F: Documentation/sound/alsa/soc/ |
| 10028 | F: sound/soc/ |
| 10029 | F: include/sound/soc* |
| 10030 | |
| 10031 | SOUND - DMAENGINE HELPERS |
| 10032 | M: Lars-Peter Clausen <lars@metafoo.de> |
| 10033 | S: Supported |
| 10034 | F: include/sound/dmaengine_pcm.h |
| 10035 | F: sound/core/pcm_dmaengine.c |
| 10036 | F: sound/soc/soc-generic-dmaengine-pcm.c |
| 10037 | |
| 10038 | SP2 MEDIA DRIVER |
| 10039 | M: Olli Salonen <olli.salonen@iki.fi> |
| 10040 | L: linux-media@vger.kernel.org |
| 10041 | W: http://linuxtv.org/ |
| 10042 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10043 | S: Maintained |
| 10044 | F: drivers/media/dvb-frontends/sp2* |
| 10045 | |
| 10046 | SPARC + UltraSPARC (sparc/sparc64) |
| 10047 | M: "David S. Miller" <davem@davemloft.net> |
| 10048 | L: sparclinux@vger.kernel.org |
| 10049 | Q: http://patchwork.ozlabs.org/project/sparclinux/list/ |
| 10050 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
| 10051 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git |
| 10052 | S: Maintained |
| 10053 | F: arch/sparc/ |
| 10054 | F: drivers/sbus/ |
| 10055 | |
| 10056 | SPARC SERIAL DRIVERS |
| 10057 | M: "David S. Miller" <davem@davemloft.net> |
| 10058 | L: sparclinux@vger.kernel.org |
| 10059 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git |
| 10060 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git |
| 10061 | S: Maintained |
| 10062 | F: include/linux/sunserialcore.h |
| 10063 | F: drivers/tty/serial/suncore.c |
| 10064 | F: drivers/tty/serial/sunhv.c |
| 10065 | F: drivers/tty/serial/sunsab.c |
| 10066 | F: drivers/tty/serial/sunsab.h |
| 10067 | F: drivers/tty/serial/sunsu.c |
| 10068 | F: drivers/tty/serial/sunzilog.c |
| 10069 | F: drivers/tty/serial/sunzilog.h |
| 10070 | |
| 10071 | SPARSE CHECKER |
| 10072 | M: "Christopher Li" <sparse@chrisli.org> |
| 10073 | L: linux-sparse@vger.kernel.org |
| 10074 | W: https://sparse.wiki.kernel.org/ |
| 10075 | T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git |
| 10076 | T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git |
| 10077 | S: Maintained |
| 10078 | F: include/linux/compiler.h |
| 10079 | |
| 10080 | SPEAR PLATFORM SUPPORT |
| 10081 | M: Viresh Kumar <vireshk@kernel.org> |
| 10082 | M: Shiraz Hashim <shiraz.linux.kernel@gmail.com> |
| 10083 | L: spear-devel@list.st.com |
| 10084 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10085 | W: http://www.st.com/spear |
| 10086 | S: Maintained |
| 10087 | F: arch/arm/mach-spear/ |
| 10088 | |
| 10089 | SPEAR CLOCK FRAMEWORK SUPPORT |
| 10090 | M: Viresh Kumar <vireshk@kernel.org> |
| 10091 | L: spear-devel@list.st.com |
| 10092 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10093 | W: http://www.st.com/spear |
| 10094 | S: Maintained |
| 10095 | F: drivers/clk/spear/ |
| 10096 | |
| 10097 | SPI SUBSYSTEM |
| 10098 | M: Mark Brown <broonie@kernel.org> |
| 10099 | L: linux-spi@vger.kernel.org |
| 10100 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git |
| 10101 | Q: http://patchwork.kernel.org/project/spi-devel-general/list/ |
| 10102 | S: Maintained |
| 10103 | F: Documentation/spi/ |
| 10104 | F: drivers/spi/ |
| 10105 | F: include/linux/spi/ |
| 10106 | F: include/uapi/linux/spi/ |
| 10107 | |
| 10108 | SPIDERNET NETWORK DRIVER for CELL |
| 10109 | M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> |
| 10110 | L: netdev@vger.kernel.org |
| 10111 | S: Supported |
| 10112 | F: Documentation/networking/spider_net.txt |
| 10113 | F: drivers/net/ethernet/toshiba/spider_net* |
| 10114 | |
| 10115 | SPU FILE SYSTEM |
| 10116 | M: Jeremy Kerr <jk@ozlabs.org> |
| 10117 | L: linuxppc-dev@lists.ozlabs.org |
| 10118 | W: http://www.ibm.com/developerworks/power/cell/ |
| 10119 | S: Supported |
| 10120 | F: Documentation/filesystems/spufs.txt |
| 10121 | F: arch/powerpc/platforms/cell/spufs/ |
| 10122 | |
| 10123 | SQUASHFS FILE SYSTEM |
| 10124 | M: Phillip Lougher <phillip@squashfs.org.uk> |
| 10125 | L: squashfs-devel@lists.sourceforge.net (subscribers-only) |
| 10126 | W: http://squashfs.org.uk |
| 10127 | S: Maintained |
| 10128 | F: Documentation/filesystems/squashfs.txt |
| 10129 | F: fs/squashfs/ |
| 10130 | |
| 10131 | SRM (Alpha) environment access |
| 10132 | M: Jan-Benedict Glaw <jbglaw@lug-owl.de> |
| 10133 | S: Maintained |
| 10134 | F: arch/alpha/kernel/srm_env.c |
| 10135 | |
| 10136 | STABLE BRANCH |
| 10137 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 10138 | L: stable@vger.kernel.org |
| 10139 | S: Supported |
| 10140 | F: Documentation/stable_kernel_rules.txt |
| 10141 | |
| 10142 | STAGING SUBSYSTEM |
| 10143 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 10144 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git |
| 10145 | L: devel@driverdev.osuosl.org |
| 10146 | S: Supported |
| 10147 | F: drivers/staging/ |
| 10148 | |
| 10149 | STAGING - COMEDI |
| 10150 | M: Ian Abbott <abbotti@mev.co.uk> |
| 10151 | M: H Hartley Sweeten <hsweeten@visionengravers.com> |
| 10152 | S: Odd Fixes |
| 10153 | F: drivers/staging/comedi/ |
| 10154 | |
| 10155 | STAGING - FLARION FT1000 DRIVERS |
| 10156 | M: Marek Belisko <marek.belisko@gmail.com> |
| 10157 | S: Odd Fixes |
| 10158 | F: drivers/staging/ft1000/ |
| 10159 | |
| 10160 | STAGING - INDUSTRIAL IO |
| 10161 | M: Jonathan Cameron <jic23@kernel.org> |
| 10162 | L: linux-iio@vger.kernel.org |
| 10163 | S: Odd Fixes |
| 10164 | F: drivers/staging/iio/ |
| 10165 | |
| 10166 | STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS |
| 10167 | M: Jarod Wilson <jarod@wilsonet.com> |
| 10168 | W: http://www.lirc.org/ |
| 10169 | S: Odd Fixes |
| 10170 | F: drivers/staging/media/lirc/ |
| 10171 | |
| 10172 | STAGING - LUSTRE PARALLEL FILESYSTEM |
| 10173 | M: Oleg Drokin <oleg.drokin@intel.com> |
| 10174 | M: Andreas Dilger <andreas.dilger@intel.com> |
| 10175 | L: lustre-devel@lists.lustre.org (moderated for non-subscribers) |
| 10176 | W: http://wiki.lustre.org/ |
| 10177 | S: Maintained |
| 10178 | F: drivers/staging/lustre |
| 10179 | |
| 10180 | STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) |
| 10181 | M: Marc Dietrich <marvin24@gmx.de> |
| 10182 | L: ac100@lists.launchpad.net (moderated for non-subscribers) |
| 10183 | L: linux-tegra@vger.kernel.org |
| 10184 | S: Maintained |
| 10185 | F: drivers/staging/nvec/ |
| 10186 | |
| 10187 | STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) |
| 10188 | M: Jens Frederich <jfrederich@gmail.com> |
| 10189 | M: Daniel Drake <dsd@laptop.org> |
| 10190 | M: Jon Nettleton <jon.nettleton@gmail.com> |
| 10191 | W: http://wiki.laptop.org/go/DCON |
| 10192 | S: Maintained |
| 10193 | F: drivers/staging/olpc_dcon/ |
| 10194 | |
| 10195 | STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER |
| 10196 | M: Willy Tarreau <willy@meta-x.org> |
| 10197 | S: Odd Fixes |
| 10198 | F: drivers/staging/panel/ |
| 10199 | |
| 10200 | STAGING - REALTEK RTL8712U DRIVERS |
| 10201 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 10202 | M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. |
| 10203 | S: Odd Fixes |
| 10204 | F: drivers/staging/rtl8712/ |
| 10205 | |
| 10206 | STAGING - REALTEK RTL8723U WIRELESS DRIVER |
| 10207 | M: Larry Finger <Larry.Finger@lwfinger.net> |
| 10208 | M: Jes Sorensen <Jes.Sorensen@redhat.com> |
| 10209 | L: linux-wireless@vger.kernel.org |
| 10210 | S: Maintained |
| 10211 | F: drivers/staging/rtl8723au/ |
| 10212 | |
| 10213 | STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER |
| 10214 | M: Sudip Mukherjee <sudipm.mukherjee@gmail.com> |
| 10215 | M: Teddy Wang <teddy.wang@siliconmotion.com> |
| 10216 | M: Sudip Mukherjee <sudip@vectorindia.org> |
| 10217 | L: linux-fbdev@vger.kernel.org |
| 10218 | S: Maintained |
| 10219 | F: drivers/staging/sm750fb/ |
| 10220 | |
| 10221 | STAGING - SLICOSS |
| 10222 | M: Lior Dotan <liodot@gmail.com> |
| 10223 | M: Christopher Harrer <charrer@alacritech.com> |
| 10224 | S: Odd Fixes |
| 10225 | F: drivers/staging/slicoss/ |
| 10226 | |
| 10227 | STAGING - SPEAKUP CONSOLE SPEECH DRIVER |
| 10228 | M: William Hubbs <w.d.hubbs@gmail.com> |
| 10229 | M: Chris Brannon <chris@the-brannons.com> |
| 10230 | M: Kirk Reiser <kirk@reisers.ca> |
| 10231 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
| 10232 | L: speakup@linux-speakup.org |
| 10233 | W: http://www.linux-speakup.org/ |
| 10234 | S: Odd Fixes |
| 10235 | F: drivers/staging/speakup/ |
| 10236 | |
| 10237 | STAGING - VIA VT665X DRIVERS |
| 10238 | M: Forest Bond <forest@alittletooquiet.net> |
| 10239 | S: Odd Fixes |
| 10240 | F: drivers/staging/vt665?/ |
| 10241 | |
| 10242 | STAGING - WILC1000 WIFI DRIVER |
| 10243 | M: Johnny Kim <johnny.kim@atmel.com> |
| 10244 | M: Austin Shin <austin.shin@atmel.com> |
| 10245 | M: Chris Park <chris.park@atmel.com> |
| 10246 | M: Tony Cho <tony.cho@atmel.com> |
| 10247 | M: Glen Lee <glen.lee@atmel.com> |
| 10248 | M: Leo Kim <leo.kim@atmel.com> |
| 10249 | L: linux-wireless@vger.kernel.org |
| 10250 | S: Supported |
| 10251 | F: drivers/staging/wilc1000/ |
| 10252 | |
| 10253 | STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER |
| 10254 | M: Arnaud Patard <arnaud.patard@rtp-net.org> |
| 10255 | S: Odd Fixes |
| 10256 | F: drivers/staging/xgifb/ |
| 10257 | |
| 10258 | HFI1 DRIVER |
| 10259 | M: Mike Marciniszyn <infinipath@intel.com> |
| 10260 | L: linux-rdma@vger.kernel.org |
| 10261 | S: Supported |
| 10262 | F: drivers/staging/rdma/hfi1 |
| 10263 | |
| 10264 | STARFIRE/DURALAN NETWORK DRIVER |
| 10265 | M: Ion Badulescu <ionut@badula.org> |
| 10266 | S: Odd Fixes |
| 10267 | F: drivers/net/ethernet/adaptec/starfire* |
| 10268 | |
| 10269 | SUN3/3X |
| 10270 | M: Sam Creasey <sammy@sammy.net> |
| 10271 | W: http://sammy.net/sun3/ |
| 10272 | S: Maintained |
| 10273 | F: arch/m68k/kernel/*sun3* |
| 10274 | F: arch/m68k/sun3*/ |
| 10275 | F: arch/m68k/include/asm/sun3* |
| 10276 | F: drivers/net/ethernet/i825xx/sun3* |
| 10277 | |
| 10278 | SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER |
| 10279 | M: Hans de Goede <hdegoede@redhat.com> |
| 10280 | L: linux-input@vger.kernel.org |
| 10281 | S: Maintained |
| 10282 | F: Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt |
| 10283 | F: drivers/input/keyboard/sun4i-lradc-keys.c |
| 10284 | |
| 10285 | SUNDANCE NETWORK DRIVER |
| 10286 | M: Denis Kirjanov <kda@linux-powerpc.org> |
| 10287 | L: netdev@vger.kernel.org |
| 10288 | S: Maintained |
| 10289 | F: drivers/net/ethernet/dlink/sundance.c |
| 10290 | |
| 10291 | SUPERH |
| 10292 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
| 10293 | M: Rich Felker <dalias@libc.org> |
| 10294 | L: linux-sh@vger.kernel.org |
| 10295 | Q: http://patchwork.kernel.org/project/linux-sh/list/ |
| 10296 | S: Maintained |
| 10297 | F: Documentation/sh/ |
| 10298 | F: arch/sh/ |
| 10299 | F: drivers/sh/ |
| 10300 | |
| 10301 | SUSPEND TO RAM |
| 10302 | M: "Rafael J. Wysocki" <rjw@rjwysocki.net> |
| 10303 | M: Len Brown <len.brown@intel.com> |
| 10304 | M: Pavel Machek <pavel@ucw.cz> |
| 10305 | L: linux-pm@vger.kernel.org |
| 10306 | S: Supported |
| 10307 | F: Documentation/power/ |
| 10308 | F: arch/x86/kernel/acpi/ |
| 10309 | F: drivers/base/power/ |
| 10310 | F: kernel/power/ |
| 10311 | F: include/linux/suspend.h |
| 10312 | F: include/linux/freezer.h |
| 10313 | F: include/linux/pm.h |
| 10314 | |
| 10315 | SVGA HANDLING |
| 10316 | M: Martin Mares <mj@ucw.cz> |
| 10317 | L: linux-video@atrey.karlin.mff.cuni.cz |
| 10318 | S: Maintained |
| 10319 | F: Documentation/svga.txt |
| 10320 | F: arch/x86/boot/video* |
| 10321 | |
| 10322 | SWIOTLB SUBSYSTEM |
| 10323 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 10324 | L: linux-kernel@vger.kernel.org |
| 10325 | S: Supported |
| 10326 | F: lib/swiotlb.c |
| 10327 | F: arch/*/kernel/pci-swiotlb.c |
| 10328 | F: include/linux/swiotlb.h |
| 10329 | |
| 10330 | SWITCHDEV |
| 10331 | M: Jiri Pirko <jiri@resnulli.us> |
| 10332 | L: netdev@vger.kernel.org |
| 10333 | S: Supported |
| 10334 | F: net/switchdev/ |
| 10335 | F: include/net/switchdev.h |
| 10336 | |
| 10337 | SYNOPSYS ARC ARCHITECTURE |
| 10338 | M: Vineet Gupta <vgupta@synopsys.com> |
| 10339 | L: linux-snps-arc@lists.infradead.org |
| 10340 | S: Supported |
| 10341 | F: arch/arc/ |
| 10342 | F: Documentation/devicetree/bindings/arc/* |
| 10343 | F: Documentation/devicetree/bindings/interrupt-controller/snps,arc* |
| 10344 | F: drivers/tty/serial/arc_uart.c |
| 10345 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git |
| 10346 | |
| 10347 | SYNOPSYS ARC SDP platform support |
| 10348 | M: Alexey Brodkin <abrodkin@synopsys.com> |
| 10349 | S: Supported |
| 10350 | F: arch/arc/plat-axs10x |
| 10351 | F: arch/arc/boot/dts/ax* |
| 10352 | F: Documentation/devicetree/bindings/arc/axs10* |
| 10353 | |
| 10354 | SYSTEM CONFIGURATION (SYSCON) |
| 10355 | M: Lee Jones <lee.jones@linaro.org> |
| 10356 | M: Arnd Bergmann <arnd@arndb.de> |
| 10357 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git |
| 10358 | S: Supported |
| 10359 | F: drivers/mfd/syscon.c |
| 10360 | |
| 10361 | SYSV FILESYSTEM |
| 10362 | M: Christoph Hellwig <hch@infradead.org> |
| 10363 | S: Maintained |
| 10364 | F: Documentation/filesystems/sysv-fs.txt |
| 10365 | F: fs/sysv/ |
| 10366 | F: include/linux/sysv_fs.h |
| 10367 | |
| 10368 | TARGET SUBSYSTEM |
| 10369 | M: "Nicholas A. Bellinger" <nab@linux-iscsi.org> |
| 10370 | L: linux-scsi@vger.kernel.org |
| 10371 | L: target-devel@vger.kernel.org |
| 10372 | W: http://www.linux-iscsi.org |
| 10373 | W: http://groups.google.com/group/linux-iscsi-target-dev |
| 10374 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master |
| 10375 | S: Supported |
| 10376 | F: drivers/target/ |
| 10377 | F: include/target/ |
| 10378 | F: Documentation/target/ |
| 10379 | |
| 10380 | TASKSTATS STATISTICS INTERFACE |
| 10381 | M: Balbir Singh <bsingharora@gmail.com> |
| 10382 | S: Maintained |
| 10383 | F: Documentation/accounting/taskstats* |
| 10384 | F: include/linux/taskstats* |
| 10385 | F: kernel/taskstats.c |
| 10386 | |
| 10387 | TC CLASSIFIER |
| 10388 | M: Jamal Hadi Salim <jhs@mojatatu.com> |
| 10389 | L: netdev@vger.kernel.org |
| 10390 | S: Maintained |
| 10391 | F: include/net/pkt_cls.h |
| 10392 | F: include/uapi/linux/pkt_cls.h |
| 10393 | F: net/sched/ |
| 10394 | |
| 10395 | TCP LOW PRIORITY MODULE |
| 10396 | M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> |
| 10397 | M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> |
| 10398 | W: http://tcp-lp-mod.sourceforge.net/ |
| 10399 | S: Maintained |
| 10400 | F: net/ipv4/tcp_lp.c |
| 10401 | |
| 10402 | TDA10071 MEDIA DRIVER |
| 10403 | M: Antti Palosaari <crope@iki.fi> |
| 10404 | L: linux-media@vger.kernel.org |
| 10405 | W: http://linuxtv.org/ |
| 10406 | W: http://palosaari.fi/linux/ |
| 10407 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10408 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10409 | S: Maintained |
| 10410 | F: drivers/media/dvb-frontends/tda10071* |
| 10411 | |
| 10412 | TDA18212 MEDIA DRIVER |
| 10413 | M: Antti Palosaari <crope@iki.fi> |
| 10414 | L: linux-media@vger.kernel.org |
| 10415 | W: http://linuxtv.org/ |
| 10416 | W: http://palosaari.fi/linux/ |
| 10417 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10418 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10419 | S: Maintained |
| 10420 | F: drivers/media/tuners/tda18212* |
| 10421 | |
| 10422 | TDA18218 MEDIA DRIVER |
| 10423 | M: Antti Palosaari <crope@iki.fi> |
| 10424 | L: linux-media@vger.kernel.org |
| 10425 | W: http://linuxtv.org/ |
| 10426 | W: http://palosaari.fi/linux/ |
| 10427 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10428 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10429 | S: Maintained |
| 10430 | F: drivers/media/tuners/tda18218* |
| 10431 | |
| 10432 | TDA18271 MEDIA DRIVER |
| 10433 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 10434 | L: linux-media@vger.kernel.org |
| 10435 | W: http://linuxtv.org/ |
| 10436 | W: http://github.com/mkrufky |
| 10437 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10438 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 10439 | S: Maintained |
| 10440 | F: drivers/media/tuners/tda18271* |
| 10441 | |
| 10442 | TDA827x MEDIA DRIVER |
| 10443 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 10444 | L: linux-media@vger.kernel.org |
| 10445 | W: http://linuxtv.org/ |
| 10446 | W: http://github.com/mkrufky |
| 10447 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10448 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 10449 | S: Maintained |
| 10450 | F: drivers/media/tuners/tda8290.* |
| 10451 | |
| 10452 | TDA8290 MEDIA DRIVER |
| 10453 | M: Michael Krufky <mkrufky@linuxtv.org> |
| 10454 | L: linux-media@vger.kernel.org |
| 10455 | W: http://linuxtv.org/ |
| 10456 | W: http://github.com/mkrufky |
| 10457 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10458 | T: git git://linuxtv.org/mkrufky/tuners.git |
| 10459 | S: Maintained |
| 10460 | F: drivers/media/tuners/tda8290.* |
| 10461 | |
| 10462 | TDA9840 MEDIA DRIVER |
| 10463 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10464 | L: linux-media@vger.kernel.org |
| 10465 | T: git git://linuxtv.org/media_tree.git |
| 10466 | W: http://linuxtv.org |
| 10467 | S: Maintained |
| 10468 | F: drivers/media/i2c/tda9840* |
| 10469 | |
| 10470 | TEA5761 TUNER DRIVER |
| 10471 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 10472 | L: linux-media@vger.kernel.org |
| 10473 | W: http://linuxtv.org |
| 10474 | T: git git://linuxtv.org/media_tree.git |
| 10475 | S: Odd fixes |
| 10476 | F: drivers/media/tuners/tea5761.* |
| 10477 | |
| 10478 | TEA5767 TUNER DRIVER |
| 10479 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 10480 | L: linux-media@vger.kernel.org |
| 10481 | W: http://linuxtv.org |
| 10482 | T: git git://linuxtv.org/media_tree.git |
| 10483 | S: Maintained |
| 10484 | F: drivers/media/tuners/tea5767.* |
| 10485 | |
| 10486 | TEA6415C MEDIA DRIVER |
| 10487 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10488 | L: linux-media@vger.kernel.org |
| 10489 | T: git git://linuxtv.org/media_tree.git |
| 10490 | W: http://linuxtv.org |
| 10491 | S: Maintained |
| 10492 | F: drivers/media/i2c/tea6415c* |
| 10493 | |
| 10494 | TEA6420 MEDIA DRIVER |
| 10495 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10496 | L: linux-media@vger.kernel.org |
| 10497 | T: git git://linuxtv.org/media_tree.git |
| 10498 | W: http://linuxtv.org |
| 10499 | S: Maintained |
| 10500 | F: drivers/media/i2c/tea6420* |
| 10501 | |
| 10502 | TEAM DRIVER |
| 10503 | M: Jiri Pirko <jiri@resnulli.us> |
| 10504 | L: netdev@vger.kernel.org |
| 10505 | S: Supported |
| 10506 | F: drivers/net/team/ |
| 10507 | F: include/linux/if_team.h |
| 10508 | F: include/uapi/linux/if_team.h |
| 10509 | |
| 10510 | TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT |
| 10511 | M: "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com> |
| 10512 | S: Maintained |
| 10513 | F: arch/x86/platform/ts5500/ |
| 10514 | |
| 10515 | TECHNOTREND USB IR RECEIVER |
| 10516 | M: Sean Young <sean@mess.org> |
| 10517 | L: linux-media@vger.kernel.org |
| 10518 | S: Maintained |
| 10519 | F: drivers/media/rc/ttusbir.c |
| 10520 | |
| 10521 | TEGRA ARCHITECTURE SUPPORT |
| 10522 | M: Stephen Warren <swarren@wwwdotorg.org> |
| 10523 | M: Thierry Reding <thierry.reding@gmail.com> |
| 10524 | M: Alexandre Courbot <gnurou@gmail.com> |
| 10525 | L: linux-tegra@vger.kernel.org |
| 10526 | Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ |
| 10527 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git |
| 10528 | S: Supported |
| 10529 | N: [^a-z]tegra |
| 10530 | |
| 10531 | TEGRA CLOCK DRIVER |
| 10532 | M: Peter De Schrijver <pdeschrijver@nvidia.com> |
| 10533 | M: Prashant Gaikwad <pgaikwad@nvidia.com> |
| 10534 | S: Supported |
| 10535 | F: drivers/clk/tegra/ |
| 10536 | |
| 10537 | TEGRA DMA DRIVER |
| 10538 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 10539 | S: Supported |
| 10540 | F: drivers/dma/tegra20-apb-dma.c |
| 10541 | |
| 10542 | TEGRA I2C DRIVER |
| 10543 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 10544 | S: Supported |
| 10545 | F: drivers/i2c/busses/i2c-tegra.c |
| 10546 | |
| 10547 | TEGRA IOMMU DRIVERS |
| 10548 | M: Hiroshi Doyu <hdoyu@nvidia.com> |
| 10549 | S: Supported |
| 10550 | F: drivers/iommu/tegra* |
| 10551 | |
| 10552 | TEGRA KBC DRIVER |
| 10553 | M: Rakesh Iyer <riyer@nvidia.com> |
| 10554 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 10555 | S: Supported |
| 10556 | F: drivers/input/keyboard/tegra-kbc.c |
| 10557 | |
| 10558 | TEGRA PWM DRIVER |
| 10559 | M: Thierry Reding <thierry.reding@gmail.com> |
| 10560 | S: Supported |
| 10561 | F: drivers/pwm/pwm-tegra.c |
| 10562 | |
| 10563 | TEGRA SERIAL DRIVER |
| 10564 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 10565 | S: Supported |
| 10566 | F: drivers/tty/serial/serial-tegra.c |
| 10567 | |
| 10568 | TEGRA SPI DRIVER |
| 10569 | M: Laxman Dewangan <ldewangan@nvidia.com> |
| 10570 | S: Supported |
| 10571 | F: drivers/spi/spi-tegra* |
| 10572 | |
| 10573 | TEHUTI ETHERNET DRIVER |
| 10574 | M: Andy Gospodarek <andy@greyhouse.net> |
| 10575 | L: netdev@vger.kernel.org |
| 10576 | S: Supported |
| 10577 | F: drivers/net/ethernet/tehuti/* |
| 10578 | |
| 10579 | Telecom Clock Driver for MCPL0010 |
| 10580 | M: Mark Gross <mark.gross@intel.com> |
| 10581 | S: Supported |
| 10582 | F: drivers/char/tlclk.c |
| 10583 | |
| 10584 | TENSILICA XTENSA PORT (xtensa) |
| 10585 | M: Chris Zankel <chris@zankel.net> |
| 10586 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 10587 | L: linux-xtensa@linux-xtensa.org |
| 10588 | S: Maintained |
| 10589 | F: arch/xtensa/ |
| 10590 | F: drivers/irqchip/irq-xtensa-* |
| 10591 | |
| 10592 | THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER |
| 10593 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10594 | L: linux-media@vger.kernel.org |
| 10595 | T: git git://linuxtv.org/media_tree.git |
| 10596 | W: http://linuxtv.org |
| 10597 | S: Maintained |
| 10598 | F: drivers/media/radio/radio-raremono.c |
| 10599 | |
| 10600 | THERMAL |
| 10601 | M: Zhang Rui <rui.zhang@intel.com> |
| 10602 | M: Eduardo Valentin <edubezval@gmail.com> |
| 10603 | L: linux-pm@vger.kernel.org |
| 10604 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git |
| 10605 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git |
| 10606 | Q: https://patchwork.kernel.org/project/linux-pm/list/ |
| 10607 | S: Supported |
| 10608 | F: drivers/thermal/ |
| 10609 | F: include/linux/thermal.h |
| 10610 | F: include/uapi/linux/thermal.h |
| 10611 | F: include/linux/cpu_cooling.h |
| 10612 | F: Documentation/devicetree/bindings/thermal/ |
| 10613 | |
| 10614 | THERMAL/CPU_COOLING |
| 10615 | M: Amit Daniel Kachhap <amit.kachhap@gmail.com> |
| 10616 | M: Viresh Kumar <viresh.kumar@linaro.org> |
| 10617 | M: Javi Merino <javi.merino@arm.com> |
| 10618 | L: linux-pm@vger.kernel.org |
| 10619 | S: Supported |
| 10620 | F: Documentation/thermal/cpu-cooling-api.txt |
| 10621 | F: drivers/thermal/cpu_cooling.c |
| 10622 | F: include/linux/cpu_cooling.h |
| 10623 | |
| 10624 | THINGM BLINK(1) USB RGB LED DRIVER |
| 10625 | M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> |
| 10626 | S: Maintained |
| 10627 | F: drivers/hid/hid-thingm.c |
| 10628 | |
| 10629 | THINKPAD ACPI EXTRAS DRIVER |
| 10630 | M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> |
| 10631 | L: ibm-acpi-devel@lists.sourceforge.net |
| 10632 | L: platform-driver-x86@vger.kernel.org |
| 10633 | W: http://ibm-acpi.sourceforge.net |
| 10634 | W: http://thinkwiki.org/wiki/Ibm-acpi |
| 10635 | T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git |
| 10636 | S: Maintained |
| 10637 | F: drivers/platform/x86/thinkpad_acpi.c |
| 10638 | |
| 10639 | TI BANDGAP AND THERMAL DRIVER |
| 10640 | M: Eduardo Valentin <edubezval@gmail.com> |
| 10641 | L: linux-pm@vger.kernel.org |
| 10642 | L: linux-omap@vger.kernel.org |
| 10643 | S: Maintained |
| 10644 | F: drivers/thermal/ti-soc-thermal/ |
| 10645 | |
| 10646 | TI CDCE706 CLOCK DRIVER |
| 10647 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 10648 | S: Maintained |
| 10649 | F: drivers/clk/clk-cdce706.c |
| 10650 | |
| 10651 | TI CLOCK DRIVER |
| 10652 | M: Tero Kristo <t-kristo@ti.com> |
| 10653 | L: linux-omap@vger.kernel.org |
| 10654 | S: Maintained |
| 10655 | F: drivers/clk/ti/ |
| 10656 | F: include/linux/clk/ti.h |
| 10657 | |
| 10658 | TI FLASH MEDIA INTERFACE DRIVER |
| 10659 | M: Alex Dubov <oakad@yahoo.com> |
| 10660 | S: Maintained |
| 10661 | F: drivers/misc/tifm* |
| 10662 | F: drivers/mmc/host/tifm_sd.c |
| 10663 | F: include/linux/tifm.h |
| 10664 | |
| 10665 | TI KEYSTONE MULTICORE NAVIGATOR DRIVERS |
| 10666 | M: Santosh Shilimkar <ssantosh@kernel.org> |
| 10667 | L: linux-kernel@vger.kernel.org |
| 10668 | L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) |
| 10669 | S: Maintained |
| 10670 | F: drivers/soc/ti/* |
| 10671 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git |
| 10672 | |
| 10673 | |
| 10674 | TI LM49xxx FAMILY ASoC CODEC DRIVERS |
| 10675 | M: M R Swami Reddy <mr.swami.reddy@ti.com> |
| 10676 | M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> |
| 10677 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 10678 | S: Maintained |
| 10679 | F: sound/soc/codecs/lm49453* |
| 10680 | F: sound/soc/codecs/isabelle* |
| 10681 | |
| 10682 | TI LP855x BACKLIGHT DRIVER |
| 10683 | M: Milo Kim <milo.kim@ti.com> |
| 10684 | S: Maintained |
| 10685 | F: Documentation/backlight/lp855x-driver.txt |
| 10686 | F: drivers/video/backlight/lp855x_bl.c |
| 10687 | F: include/linux/platform_data/lp855x.h |
| 10688 | |
| 10689 | TI LP8727 CHARGER DRIVER |
| 10690 | M: Milo Kim <milo.kim@ti.com> |
| 10691 | S: Maintained |
| 10692 | F: drivers/power/lp8727_charger.c |
| 10693 | F: include/linux/platform_data/lp8727.h |
| 10694 | |
| 10695 | TI LP8788 MFD DRIVER |
| 10696 | M: Milo Kim <milo.kim@ti.com> |
| 10697 | S: Maintained |
| 10698 | F: drivers/iio/adc/lp8788_adc.c |
| 10699 | F: drivers/leds/leds-lp8788.c |
| 10700 | F: drivers/mfd/lp8788*.c |
| 10701 | F: drivers/power/lp8788-charger.c |
| 10702 | F: drivers/regulator/lp8788-*.c |
| 10703 | F: include/linux/mfd/lp8788*.h |
| 10704 | |
| 10705 | TI NETCP ETHERNET DRIVER |
| 10706 | M: Wingman Kwok <w-kwok2@ti.com> |
| 10707 | M: Murali Karicheri <m-karicheri2@ti.com> |
| 10708 | L: netdev@vger.kernel.org |
| 10709 | S: Maintained |
| 10710 | F: drivers/net/ethernet/ti/netcp* |
| 10711 | |
| 10712 | TI TAS571X FAMILY ASoC CODEC DRIVER |
| 10713 | M: Kevin Cernekee <cernekee@chromium.org> |
| 10714 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 10715 | S: Odd Fixes |
| 10716 | F: sound/soc/codecs/tas571x* |
| 10717 | |
| 10718 | TI TWL4030 SERIES SOC CODEC DRIVER |
| 10719 | M: Peter Ujfalusi <peter.ujfalusi@ti.com> |
| 10720 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 10721 | S: Maintained |
| 10722 | F: sound/soc/codecs/twl4030* |
| 10723 | |
| 10724 | TI WILINK WIRELESS DRIVERS |
| 10725 | L: linux-wireless@vger.kernel.org |
| 10726 | W: http://wireless.kernel.org/en/users/Drivers/wl12xx |
| 10727 | W: http://wireless.kernel.org/en/users/Drivers/wl1251 |
| 10728 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git |
| 10729 | S: Orphan |
| 10730 | F: drivers/net/wireless/ti/ |
| 10731 | F: include/linux/wl12xx.h |
| 10732 | |
| 10733 | TIPC NETWORK LAYER |
| 10734 | M: Jon Maloy <jon.maloy@ericsson.com> |
| 10735 | M: Ying Xue <ying.xue@windriver.com> |
| 10736 | L: netdev@vger.kernel.org (core kernel code) |
| 10737 | L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) |
| 10738 | W: http://tipc.sourceforge.net/ |
| 10739 | S: Maintained |
| 10740 | F: include/uapi/linux/tipc*.h |
| 10741 | F: net/tipc/ |
| 10742 | |
| 10743 | TILE ARCHITECTURE |
| 10744 | M: Chris Metcalf <cmetcalf@ezchip.com> |
| 10745 | W: http://www.ezchip.com/scm/ |
| 10746 | S: Supported |
| 10747 | F: arch/tile/ |
| 10748 | F: drivers/char/tile-srom.c |
| 10749 | F: drivers/edac/tile_edac.c |
| 10750 | F: drivers/net/ethernet/tile/ |
| 10751 | F: drivers/rtc/rtc-tile.c |
| 10752 | F: drivers/tty/hvc/hvc_tile.c |
| 10753 | F: drivers/tty/serial/tilegx.c |
| 10754 | F: drivers/usb/host/*-tilegx.c |
| 10755 | F: include/linux/usb/tilegx.h |
| 10756 | |
| 10757 | TLAN NETWORK DRIVER |
| 10758 | M: Samuel Chessman <chessman@tux.org> |
| 10759 | L: tlan-devel@lists.sourceforge.net (subscribers-only) |
| 10760 | W: http://sourceforge.net/projects/tlan/ |
| 10761 | S: Maintained |
| 10762 | F: Documentation/networking/tlan.txt |
| 10763 | F: drivers/net/ethernet/ti/tlan.* |
| 10764 | |
| 10765 | TOMOYO SECURITY MODULE |
| 10766 | M: Kentaro Takeda <takedakn@nttdata.co.jp> |
| 10767 | M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> |
| 10768 | L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) |
| 10769 | L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) |
| 10770 | L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) |
| 10771 | L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) |
| 10772 | W: http://tomoyo.sourceforge.jp/ |
| 10773 | T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ |
| 10774 | S: Maintained |
| 10775 | F: security/tomoyo/ |
| 10776 | |
| 10777 | TOPSTAR LAPTOP EXTRAS DRIVER |
| 10778 | M: Herton Ronaldo Krzesinski <herton@canonical.com> |
| 10779 | L: platform-driver-x86@vger.kernel.org |
| 10780 | S: Maintained |
| 10781 | F: drivers/platform/x86/topstar-laptop.c |
| 10782 | |
| 10783 | TOSHIBA ACPI EXTRAS DRIVER |
| 10784 | M: Azael Avalos <coproscefalo@gmail.com> |
| 10785 | L: platform-driver-x86@vger.kernel.org |
| 10786 | S: Maintained |
| 10787 | F: drivers/platform/x86/toshiba_acpi.c |
| 10788 | |
| 10789 | TOSHIBA BLUETOOTH DRIVER |
| 10790 | M: Azael Avalos <coproscefalo@gmail.com> |
| 10791 | L: platform-driver-x86@vger.kernel.org |
| 10792 | S: Maintained |
| 10793 | F: drivers/platform/x86/toshiba_bluetooth.c |
| 10794 | |
| 10795 | TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER |
| 10796 | M: Azael Avalos <coproscefalo@gmail.com> |
| 10797 | L: platform-driver-x86@vger.kernel.org |
| 10798 | S: Maintained |
| 10799 | F: drivers/platform/x86/toshiba_haps.c |
| 10800 | |
| 10801 | TOSHIBA WMI HOTKEYS DRIVER |
| 10802 | M: Azael Avalos <coproscefalo@gmail.com> |
| 10803 | L: platform-driver-x86@vger.kernel.org |
| 10804 | S: Maintained |
| 10805 | F: drivers/platform/x86/toshiba-wmi.c |
| 10806 | |
| 10807 | TOSHIBA SMM DRIVER |
| 10808 | M: Jonathan Buzzard <jonathan@buzzard.org.uk> |
| 10809 | W: http://www.buzzard.org.uk/toshiba/ |
| 10810 | S: Maintained |
| 10811 | F: drivers/char/toshiba.c |
| 10812 | F: include/linux/toshiba.h |
| 10813 | F: include/uapi/linux/toshiba.h |
| 10814 | |
| 10815 | TOSHIBA TC358743 DRIVER |
| 10816 | M: Mats Randgaard <matrandg@cisco.com> |
| 10817 | L: linux-media@vger.kernel.org |
| 10818 | S: Maintained |
| 10819 | F: drivers/media/i2c/tc358743* |
| 10820 | F: include/media/tc358743.h |
| 10821 | |
| 10822 | TMIO MMC DRIVER |
| 10823 | M: Ian Molton <ian@mnementh.co.uk> |
| 10824 | L: linux-mmc@vger.kernel.org |
| 10825 | S: Maintained |
| 10826 | F: drivers/mmc/host/tmio_mmc* |
| 10827 | F: drivers/mmc/host/sh_mobile_sdhi.c |
| 10828 | F: include/linux/mmc/tmio.h |
| 10829 | F: include/linux/mmc/sh_mobile_sdhi.h |
| 10830 | |
| 10831 | TMP401 HARDWARE MONITOR DRIVER |
| 10832 | M: Guenter Roeck <linux@roeck-us.net> |
| 10833 | L: linux-hwmon@vger.kernel.org |
| 10834 | S: Maintained |
| 10835 | F: Documentation/hwmon/tmp401 |
| 10836 | F: drivers/hwmon/tmp401.c |
| 10837 | |
| 10838 | TMPFS (SHMEM FILESYSTEM) |
| 10839 | M: Hugh Dickins <hughd@google.com> |
| 10840 | L: linux-mm@kvack.org |
| 10841 | S: Maintained |
| 10842 | F: include/linux/shmem_fs.h |
| 10843 | F: mm/shmem.c |
| 10844 | |
| 10845 | TM6000 VIDEO4LINUX DRIVER |
| 10846 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 10847 | L: linux-media@vger.kernel.org |
| 10848 | W: http://linuxtv.org |
| 10849 | T: git git://linuxtv.org/media_tree.git |
| 10850 | S: Odd fixes |
| 10851 | F: drivers/media/usb/tm6000/ |
| 10852 | |
| 10853 | TW68 VIDEO4LINUX DRIVER |
| 10854 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 10855 | L: linux-media@vger.kernel.org |
| 10856 | T: git git://linuxtv.org/media_tree.git |
| 10857 | W: http://linuxtv.org |
| 10858 | S: Odd Fixes |
| 10859 | F: drivers/media/pci/tw68/ |
| 10860 | |
| 10861 | TPM DEVICE DRIVER |
| 10862 | M: Peter Huewe <peterhuewe@gmx.de> |
| 10863 | M: Marcel Selhorst <tpmdd@selhorst.net> |
| 10864 | M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com> |
| 10865 | R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com> |
| 10866 | W: http://tpmdd.sourceforge.net |
| 10867 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 10868 | Q: git git://github.com/PeterHuewe/linux-tpmdd.git |
| 10869 | T: https://github.com/PeterHuewe/linux-tpmdd |
| 10870 | S: Maintained |
| 10871 | F: drivers/char/tpm/ |
| 10872 | |
| 10873 | TPM IBM_VTPM DEVICE DRIVER |
| 10874 | M: Ashley Lai <ashleydlai@gmail.com> |
| 10875 | W: http://tpmdd.sourceforge.net |
| 10876 | L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) |
| 10877 | S: Maintained |
| 10878 | F: drivers/char/tpm/tpm_ibmvtpm* |
| 10879 | |
| 10880 | TRACING |
| 10881 | M: Steven Rostedt <rostedt@goodmis.org> |
| 10882 | M: Ingo Molnar <mingo@redhat.com> |
| 10883 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core |
| 10884 | S: Maintained |
| 10885 | F: Documentation/trace/ftrace.txt |
| 10886 | F: arch/*/*/*/ftrace.h |
| 10887 | F: arch/*/kernel/ftrace.c |
| 10888 | F: include/*/ftrace.h |
| 10889 | F: include/linux/trace*.h |
| 10890 | F: include/trace/ |
| 10891 | F: kernel/trace/ |
| 10892 | F: tools/testing/selftests/ftrace/ |
| 10893 | |
| 10894 | TRIVIAL PATCHES |
| 10895 | M: Jiri Kosina <trivial@kernel.org> |
| 10896 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git |
| 10897 | S: Maintained |
| 10898 | K: ^Subject:.*(?i)trivial |
| 10899 | |
| 10900 | TTY LAYER |
| 10901 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 10902 | M: Jiri Slaby <jslaby@suse.com> |
| 10903 | S: Supported |
| 10904 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git |
| 10905 | F: Documentation/serial/ |
| 10906 | F: drivers/tty/ |
| 10907 | F: drivers/tty/serial/serial_core.c |
| 10908 | F: include/linux/serial_core.h |
| 10909 | F: include/linux/serial.h |
| 10910 | F: include/linux/tty.h |
| 10911 | F: include/uapi/linux/serial_core.h |
| 10912 | F: include/uapi/linux/serial.h |
| 10913 | F: include/uapi/linux/tty.h |
| 10914 | |
| 10915 | TUA9001 MEDIA DRIVER |
| 10916 | M: Antti Palosaari <crope@iki.fi> |
| 10917 | L: linux-media@vger.kernel.org |
| 10918 | W: http://linuxtv.org/ |
| 10919 | W: http://palosaari.fi/linux/ |
| 10920 | Q: http://patchwork.linuxtv.org/project/linux-media/list/ |
| 10921 | T: git git://linuxtv.org/anttip/media_tree.git |
| 10922 | S: Maintained |
| 10923 | F: drivers/media/tuners/tua9001* |
| 10924 | |
| 10925 | TULIP NETWORK DRIVERS |
| 10926 | L: netdev@vger.kernel.org |
| 10927 | L: linux-parisc@vger.kernel.org |
| 10928 | S: Orphan |
| 10929 | F: drivers/net/ethernet/dec/tulip/ |
| 10930 | |
| 10931 | TUN/TAP driver |
| 10932 | M: Maxim Krasnyansky <maxk@qti.qualcomm.com> |
| 10933 | W: http://vtun.sourceforge.net/tun |
| 10934 | S: Maintained |
| 10935 | F: Documentation/networking/tuntap.txt |
| 10936 | F: arch/um/os-Linux/drivers/ |
| 10937 | |
| 10938 | TURBOCHANNEL SUBSYSTEM |
| 10939 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 10940 | M: Ralf Baechle <ralf@linux-mips.org> |
| 10941 | L: linux-mips@linux-mips.org |
| 10942 | Q: http://patchwork.linux-mips.org/project/linux-mips/list/ |
| 10943 | S: Maintained |
| 10944 | F: drivers/tc/ |
| 10945 | F: include/linux/tc.h |
| 10946 | |
| 10947 | U14-34F SCSI DRIVER |
| 10948 | M: Dario Ballabio <ballabio_dario@emc.com> |
| 10949 | L: linux-scsi@vger.kernel.org |
| 10950 | S: Maintained |
| 10951 | F: drivers/scsi/u14-34f.c |
| 10952 | |
| 10953 | UBI FILE SYSTEM (UBIFS) |
| 10954 | M: Artem Bityutskiy <dedekind1@gmail.com> |
| 10955 | M: Adrian Hunter <adrian.hunter@intel.com> |
| 10956 | L: linux-mtd@lists.infradead.org |
| 10957 | T: git git://git.infradead.org/ubifs-2.6.git |
| 10958 | W: http://www.linux-mtd.infradead.org/doc/ubifs.html |
| 10959 | S: Maintained |
| 10960 | F: Documentation/filesystems/ubifs.txt |
| 10961 | F: fs/ubifs/ |
| 10962 | |
| 10963 | UCLINUX (M68KNOMMU AND COLDFIRE) |
| 10964 | M: Greg Ungerer <gerg@uclinux.org> |
| 10965 | W: http://www.uclinux.org/ |
| 10966 | L: linux-m68k@lists.linux-m68k.org |
| 10967 | L: uclinux-dev@uclinux.org (subscribers-only) |
| 10968 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git |
| 10969 | S: Maintained |
| 10970 | F: arch/m68k/coldfire/ |
| 10971 | F: arch/m68k/68*/ |
| 10972 | F: arch/m68k/*/*_no.* |
| 10973 | F: arch/m68k/include/asm/*_no.* |
| 10974 | |
| 10975 | UDF FILESYSTEM |
| 10976 | M: Jan Kara <jack@suse.com> |
| 10977 | S: Maintained |
| 10978 | F: Documentation/filesystems/udf.txt |
| 10979 | F: fs/udf/ |
| 10980 | |
| 10981 | UFS FILESYSTEM |
| 10982 | M: Evgeniy Dushistov <dushistov@mail.ru> |
| 10983 | S: Maintained |
| 10984 | F: Documentation/filesystems/ufs.txt |
| 10985 | F: fs/ufs/ |
| 10986 | |
| 10987 | UHID USERSPACE HID IO DRIVER: |
| 10988 | M: David Herrmann <dh.herrmann@googlemail.com> |
| 10989 | L: linux-input@vger.kernel.org |
| 10990 | S: Maintained |
| 10991 | F: drivers/hid/uhid.c |
| 10992 | F: include/uapi/linux/uhid.h |
| 10993 | |
| 10994 | ULTRA-WIDEBAND (UWB) SUBSYSTEM: |
| 10995 | L: linux-usb@vger.kernel.org |
| 10996 | S: Orphan |
| 10997 | F: drivers/uwb/ |
| 10998 | F: include/linux/uwb.h |
| 10999 | F: include/linux/uwb/ |
| 11000 | |
| 11001 | UNICORE32 ARCHITECTURE: |
| 11002 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
| 11003 | W: http://mprc.pku.edu.cn/~guanxuetao/linux |
| 11004 | S: Maintained |
| 11005 | T: git git://github.com/gxt/linux.git |
| 11006 | F: arch/unicore32/ |
| 11007 | |
| 11008 | UNIFDEF |
| 11009 | M: Tony Finch <dot@dotat.at> |
| 11010 | W: http://dotat.at/prog/unifdef |
| 11011 | S: Maintained |
| 11012 | F: scripts/unifdef.c |
| 11013 | |
| 11014 | UNIFORM CDROM DRIVER |
| 11015 | M: Jens Axboe <axboe@kernel.dk> |
| 11016 | W: http://www.kernel.dk |
| 11017 | S: Maintained |
| 11018 | F: Documentation/cdrom/ |
| 11019 | F: drivers/cdrom/cdrom.c |
| 11020 | F: include/linux/cdrom.h |
| 11021 | F: include/uapi/linux/cdrom.h |
| 11022 | |
| 11023 | UNISYS S-PAR DRIVERS |
| 11024 | M: Benjamin Romer <benjamin.romer@unisys.com> |
| 11025 | M: David Kershner <david.kershner@unisys.com> |
| 11026 | L: sparmaintainer@unisys.com (Unisys internal) |
| 11027 | S: Supported |
| 11028 | F: drivers/staging/unisys/ |
| 11029 | |
| 11030 | UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER |
| 11031 | M: Vinayak Holikatti <vinholikatti@gmail.com> |
| 11032 | L: linux-scsi@vger.kernel.org |
| 11033 | S: Supported |
| 11034 | F: Documentation/scsi/ufs.txt |
| 11035 | F: drivers/scsi/ufs/ |
| 11036 | |
| 11037 | UNSORTED BLOCK IMAGES (UBI) |
| 11038 | M: Artem Bityutskiy <dedekind1@gmail.com> |
| 11039 | M: Richard Weinberger <richard@nod.at> |
| 11040 | W: http://www.linux-mtd.infradead.org/ |
| 11041 | L: linux-mtd@lists.infradead.org |
| 11042 | T: git git://git.infradead.org/ubifs-2.6.git |
| 11043 | S: Supported |
| 11044 | F: drivers/mtd/ubi/ |
| 11045 | F: include/linux/mtd/ubi.h |
| 11046 | F: include/uapi/mtd/ubi-user.h |
| 11047 | |
| 11048 | USB ACM DRIVER |
| 11049 | M: Oliver Neukum <oliver@neukum.org> |
| 11050 | L: linux-usb@vger.kernel.org |
| 11051 | S: Maintained |
| 11052 | F: Documentation/usb/acm.txt |
| 11053 | F: drivers/usb/class/cdc-acm.* |
| 11054 | |
| 11055 | USB AR5523 WIRELESS DRIVER |
| 11056 | M: Pontus Fuchs <pontus.fuchs@gmail.com> |
| 11057 | L: linux-wireless@vger.kernel.org |
| 11058 | S: Maintained |
| 11059 | F: drivers/net/wireless/ath/ar5523/ |
| 11060 | |
| 11061 | USB ATTACHED SCSI |
| 11062 | M: Hans de Goede <hdegoede@redhat.com> |
| 11063 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 11064 | L: linux-usb@vger.kernel.org |
| 11065 | L: linux-scsi@vger.kernel.org |
| 11066 | S: Maintained |
| 11067 | F: drivers/usb/storage/uas.c |
| 11068 | |
| 11069 | USB CDC ETHERNET DRIVER |
| 11070 | M: Oliver Neukum <oliver@neukum.org> |
| 11071 | L: linux-usb@vger.kernel.org |
| 11072 | S: Maintained |
| 11073 | F: drivers/net/usb/cdc_*.c |
| 11074 | F: include/uapi/linux/usb/cdc.h |
| 11075 | |
| 11076 | USB CHAOSKEY DRIVER |
| 11077 | M: Keith Packard <keithp@keithp.com> |
| 11078 | L: linux-usb@vger.kernel.org |
| 11079 | S: Maintained |
| 11080 | F: drivers/usb/misc/chaoskey.c |
| 11081 | |
| 11082 | USB CYPRESS C67X00 DRIVER |
| 11083 | M: Peter Korsgaard <jacmet@sunsite.dk> |
| 11084 | L: linux-usb@vger.kernel.org |
| 11085 | S: Maintained |
| 11086 | F: drivers/usb/c67x00/ |
| 11087 | |
| 11088 | USB DAVICOM DM9601 DRIVER |
| 11089 | M: Peter Korsgaard <jacmet@sunsite.dk> |
| 11090 | L: netdev@vger.kernel.org |
| 11091 | W: http://www.linux-usb.org/usbnet |
| 11092 | S: Maintained |
| 11093 | F: drivers/net/usb/dm9601.c |
| 11094 | |
| 11095 | USB DIAMOND RIO500 DRIVER |
| 11096 | M: Cesar Miquel <miquel@df.uba.ar> |
| 11097 | L: rio500-users@lists.sourceforge.net |
| 11098 | W: http://rio500.sourceforge.net |
| 11099 | S: Maintained |
| 11100 | F: drivers/usb/misc/rio500* |
| 11101 | |
| 11102 | USB EHCI DRIVER |
| 11103 | M: Alan Stern <stern@rowland.harvard.edu> |
| 11104 | L: linux-usb@vger.kernel.org |
| 11105 | S: Maintained |
| 11106 | F: Documentation/usb/ehci.txt |
| 11107 | F: drivers/usb/host/ehci* |
| 11108 | |
| 11109 | USB GADGET/PERIPHERAL SUBSYSTEM |
| 11110 | M: Felipe Balbi <balbi@ti.com> |
| 11111 | L: linux-usb@vger.kernel.org |
| 11112 | W: http://www.linux-usb.org/gadget |
| 11113 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 11114 | S: Maintained |
| 11115 | F: drivers/usb/gadget/ |
| 11116 | F: include/linux/usb/gadget* |
| 11117 | |
| 11118 | USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) |
| 11119 | M: Jiri Kosina <jikos@kernel.org> |
| 11120 | L: linux-usb@vger.kernel.org |
| 11121 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git |
| 11122 | S: Maintained |
| 11123 | F: Documentation/hid/hiddev.txt |
| 11124 | F: drivers/hid/usbhid/ |
| 11125 | |
| 11126 | USB ISP116X DRIVER |
| 11127 | M: Olav Kongas <ok@artecdesign.ee> |
| 11128 | L: linux-usb@vger.kernel.org |
| 11129 | S: Maintained |
| 11130 | F: drivers/usb/host/isp116x* |
| 11131 | F: include/linux/usb/isp116x.h |
| 11132 | |
| 11133 | USB MASS STORAGE DRIVER |
| 11134 | M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> |
| 11135 | L: linux-usb@vger.kernel.org |
| 11136 | L: usb-storage@lists.one-eyed-alien.net |
| 11137 | S: Maintained |
| 11138 | W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ |
| 11139 | F: drivers/usb/storage/ |
| 11140 | |
| 11141 | USB MIDI DRIVER |
| 11142 | M: Clemens Ladisch <clemens@ladisch.de> |
| 11143 | L: alsa-devel@alsa-project.org (moderated for non-subscribers) |
| 11144 | T: git git://git.alsa-project.org/alsa-kernel.git |
| 11145 | S: Maintained |
| 11146 | F: sound/usb/midi.* |
| 11147 | |
| 11148 | USB NETWORKING DRIVERS |
| 11149 | L: linux-usb@vger.kernel.org |
| 11150 | S: Odd Fixes |
| 11151 | F: drivers/net/usb/ |
| 11152 | |
| 11153 | USB OHCI DRIVER |
| 11154 | M: Alan Stern <stern@rowland.harvard.edu> |
| 11155 | L: linux-usb@vger.kernel.org |
| 11156 | S: Maintained |
| 11157 | F: Documentation/usb/ohci.txt |
| 11158 | F: drivers/usb/host/ohci* |
| 11159 | |
| 11160 | USB OTG FSM (Finite State Machine) |
| 11161 | M: Peter Chen <Peter.Chen@freescale.com> |
| 11162 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git |
| 11163 | L: linux-usb@vger.kernel.org |
| 11164 | S: Maintained |
| 11165 | F: drivers/usb/common/usb-otg-fsm.c |
| 11166 | |
| 11167 | USB OVER IP DRIVER |
| 11168 | M: Valentina Manea <valentina.manea.m@gmail.com> |
| 11169 | M: Shuah Khan <shuah.kh@samsung.com> |
| 11170 | L: linux-usb@vger.kernel.org |
| 11171 | S: Maintained |
| 11172 | F: drivers/usb/usbip/ |
| 11173 | F: tools/usb/usbip/ |
| 11174 | |
| 11175 | USB PEGASUS DRIVER |
| 11176 | M: Petko Manolov <petkan@nucleusys.com> |
| 11177 | L: linux-usb@vger.kernel.org |
| 11178 | L: netdev@vger.kernel.org |
| 11179 | T: git git://github.com/petkan/pegasus.git |
| 11180 | W: https://github.com/petkan/pegasus |
| 11181 | S: Maintained |
| 11182 | F: drivers/net/usb/pegasus.* |
| 11183 | |
| 11184 | USB PHY LAYER |
| 11185 | M: Felipe Balbi <balbi@ti.com> |
| 11186 | L: linux-usb@vger.kernel.org |
| 11187 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git |
| 11188 | S: Maintained |
| 11189 | F: drivers/usb/phy/ |
| 11190 | |
| 11191 | USB PRINTER DRIVER (usblp) |
| 11192 | M: Pete Zaitcev <zaitcev@redhat.com> |
| 11193 | L: linux-usb@vger.kernel.org |
| 11194 | S: Supported |
| 11195 | F: drivers/usb/class/usblp.c |
| 11196 | |
| 11197 | USB RTL8150 DRIVER |
| 11198 | M: Petko Manolov <petkan@nucleusys.com> |
| 11199 | L: linux-usb@vger.kernel.org |
| 11200 | L: netdev@vger.kernel.org |
| 11201 | T: git git://github.com/petkan/rtl8150.git |
| 11202 | W: https://github.com/petkan/rtl8150 |
| 11203 | S: Maintained |
| 11204 | F: drivers/net/usb/rtl8150.c |
| 11205 | |
| 11206 | USB SERIAL SUBSYSTEM |
| 11207 | M: Johan Hovold <johan@kernel.org> |
| 11208 | L: linux-usb@vger.kernel.org |
| 11209 | S: Maintained |
| 11210 | F: Documentation/usb/usb-serial.txt |
| 11211 | F: drivers/usb/serial/ |
| 11212 | F: include/linux/usb/serial.h |
| 11213 | |
| 11214 | USB SMSC75XX ETHERNET DRIVER |
| 11215 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 11216 | L: netdev@vger.kernel.org |
| 11217 | S: Maintained |
| 11218 | F: drivers/net/usb/smsc75xx.* |
| 11219 | |
| 11220 | USB SMSC95XX ETHERNET DRIVER |
| 11221 | M: Steve Glendinning <steve.glendinning@shawell.net> |
| 11222 | L: netdev@vger.kernel.org |
| 11223 | S: Maintained |
| 11224 | F: drivers/net/usb/smsc95xx.* |
| 11225 | |
| 11226 | USB SUBSYSTEM |
| 11227 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 11228 | L: linux-usb@vger.kernel.org |
| 11229 | W: http://www.linux-usb.org |
| 11230 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git |
| 11231 | S: Supported |
| 11232 | F: Documentation/usb/ |
| 11233 | F: drivers/usb/ |
| 11234 | F: include/linux/usb.h |
| 11235 | F: include/linux/usb/ |
| 11236 | |
| 11237 | USB UHCI DRIVER |
| 11238 | M: Alan Stern <stern@rowland.harvard.edu> |
| 11239 | L: linux-usb@vger.kernel.org |
| 11240 | S: Maintained |
| 11241 | F: drivers/usb/host/uhci* |
| 11242 | |
| 11243 | USB "USBNET" DRIVER FRAMEWORK |
| 11244 | M: Oliver Neukum <oneukum@suse.com> |
| 11245 | L: netdev@vger.kernel.org |
| 11246 | W: http://www.linux-usb.org/usbnet |
| 11247 | S: Maintained |
| 11248 | F: drivers/net/usb/usbnet.c |
| 11249 | F: include/linux/usb/usbnet.h |
| 11250 | |
| 11251 | USB VIDEO CLASS |
| 11252 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 11253 | L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) |
| 11254 | L: linux-media@vger.kernel.org |
| 11255 | T: git git://linuxtv.org/media_tree.git |
| 11256 | W: http://www.ideasonboard.org/uvc/ |
| 11257 | S: Maintained |
| 11258 | F: drivers/media/usb/uvc/ |
| 11259 | F: include/uapi/linux/uvcvideo.h |
| 11260 | |
| 11261 | USB VISION DRIVER |
| 11262 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 11263 | L: linux-media@vger.kernel.org |
| 11264 | T: git git://linuxtv.org/media_tree.git |
| 11265 | W: http://linuxtv.org |
| 11266 | S: Odd Fixes |
| 11267 | F: drivers/media/usb/usbvision/ |
| 11268 | |
| 11269 | USB WEBCAM GADGET |
| 11270 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 11271 | L: linux-usb@vger.kernel.org |
| 11272 | S: Maintained |
| 11273 | F: drivers/usb/gadget/function/*uvc* |
| 11274 | F: drivers/usb/gadget/legacy/webcam.c |
| 11275 | |
| 11276 | USB WIRELESS RNDIS DRIVER (rndis_wlan) |
| 11277 | M: Jussi Kivilinna <jussi.kivilinna@iki.fi> |
| 11278 | L: linux-wireless@vger.kernel.org |
| 11279 | S: Maintained |
| 11280 | F: drivers/net/wireless/rndis_wlan.c |
| 11281 | |
| 11282 | USB XHCI DRIVER |
| 11283 | M: Mathias Nyman <mathias.nyman@intel.com> |
| 11284 | L: linux-usb@vger.kernel.org |
| 11285 | S: Supported |
| 11286 | F: drivers/usb/host/xhci* |
| 11287 | F: drivers/usb/host/pci-quirks* |
| 11288 | |
| 11289 | USB ZD1201 DRIVER |
| 11290 | L: linux-wireless@vger.kernel.org |
| 11291 | W: http://linux-lc100020.sourceforge.net |
| 11292 | S: Orphan |
| 11293 | F: drivers/net/wireless/zd1201.* |
| 11294 | |
| 11295 | USB ZR364XX DRIVER |
| 11296 | M: Antoine Jacquet <royale@zerezo.com> |
| 11297 | L: linux-usb@vger.kernel.org |
| 11298 | L: linux-media@vger.kernel.org |
| 11299 | T: git git://linuxtv.org/media_tree.git |
| 11300 | W: http://royale.zerezo.com/zr364xx/ |
| 11301 | S: Maintained |
| 11302 | F: Documentation/video4linux/zr364xx.txt |
| 11303 | F: drivers/media/usb/zr364xx/ |
| 11304 | |
| 11305 | ULPI BUS |
| 11306 | M: Heikki Krogerus <heikki.krogerus@linux.intel.com> |
| 11307 | L: linux-usb@vger.kernel.org |
| 11308 | S: Maintained |
| 11309 | F: drivers/usb/common/ulpi.c |
| 11310 | F: include/linux/ulpi/ |
| 11311 | |
| 11312 | USER-MODE LINUX (UML) |
| 11313 | M: Jeff Dike <jdike@addtoit.com> |
| 11314 | M: Richard Weinberger <richard@nod.at> |
| 11315 | L: user-mode-linux-devel@lists.sourceforge.net |
| 11316 | L: user-mode-linux-user@lists.sourceforge.net |
| 11317 | W: http://user-mode-linux.sourceforge.net |
| 11318 | S: Maintained |
| 11319 | F: Documentation/virtual/uml/ |
| 11320 | F: arch/um/ |
| 11321 | F: arch/x86/um/ |
| 11322 | F: fs/hostfs/ |
| 11323 | F: fs/hppfs/ |
| 11324 | |
| 11325 | USERSPACE I/O (UIO) |
| 11326 | M: "Hans J. Koch" <hjk@hansjkoch.de> |
| 11327 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 11328 | S: Maintained |
| 11329 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git |
| 11330 | F: Documentation/DocBook/uio-howto.tmpl |
| 11331 | F: drivers/uio/ |
| 11332 | F: include/linux/uio*.h |
| 11333 | |
| 11334 | UTIL-LINUX PACKAGE |
| 11335 | M: Karel Zak <kzak@redhat.com> |
| 11336 | L: util-linux@vger.kernel.org |
| 11337 | W: http://en.wikipedia.org/wiki/Util-linux |
| 11338 | T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git |
| 11339 | S: Maintained |
| 11340 | |
| 11341 | UVESAFB DRIVER |
| 11342 | M: Michal Januszewski <spock@gentoo.org> |
| 11343 | L: linux-fbdev@vger.kernel.org |
| 11344 | W: http://dev.gentoo.org/~spock/projects/uvesafb/ |
| 11345 | S: Maintained |
| 11346 | F: Documentation/fb/uvesafb.txt |
| 11347 | F: drivers/video/fbdev/uvesafb.* |
| 11348 | |
| 11349 | VF610 NAND DRIVER |
| 11350 | M: Stefan Agner <stefan@agner.ch> |
| 11351 | L: linux-mtd@lists.infradead.org |
| 11352 | S: Supported |
| 11353 | F: drivers/mtd/nand/vf610_nfc.c |
| 11354 | |
| 11355 | VFAT/FAT/MSDOS FILESYSTEM |
| 11356 | M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> |
| 11357 | S: Maintained |
| 11358 | F: Documentation/filesystems/vfat.txt |
| 11359 | F: fs/fat/ |
| 11360 | |
| 11361 | VFIO DRIVER |
| 11362 | M: Alex Williamson <alex.williamson@redhat.com> |
| 11363 | L: kvm@vger.kernel.org |
| 11364 | S: Maintained |
| 11365 | F: Documentation/vfio.txt |
| 11366 | F: drivers/vfio/ |
| 11367 | F: include/linux/vfio.h |
| 11368 | F: include/uapi/linux/vfio.h |
| 11369 | |
| 11370 | VFIO PLATFORM DRIVER |
| 11371 | M: Baptiste Reynal <b.reynal@virtualopensystems.com> |
| 11372 | L: kvm@vger.kernel.org |
| 11373 | S: Maintained |
| 11374 | F: drivers/vfio/platform/ |
| 11375 | |
| 11376 | VIDEOBUF2 FRAMEWORK |
| 11377 | M: Pawel Osciak <pawel@osciak.com> |
| 11378 | M: Marek Szyprowski <m.szyprowski@samsung.com> |
| 11379 | M: Kyungmin Park <kyungmin.park@samsung.com> |
| 11380 | L: linux-media@vger.kernel.org |
| 11381 | S: Maintained |
| 11382 | F: drivers/media/v4l2-core/videobuf2-* |
| 11383 | F: include/media/videobuf2-* |
| 11384 | |
| 11385 | VIRTUAL SERIO DEVICE DRIVER |
| 11386 | M: Stephen Chandler Paul <thatslyude@gmail.com> |
| 11387 | S: Maintained |
| 11388 | F: drivers/input/serio/userio.c |
| 11389 | F: include/uapi/linux/userio.h |
| 11390 | |
| 11391 | VIRTIO CONSOLE DRIVER |
| 11392 | M: Amit Shah <amit.shah@redhat.com> |
| 11393 | L: virtualization@lists.linux-foundation.org |
| 11394 | S: Maintained |
| 11395 | F: drivers/char/virtio_console.c |
| 11396 | F: include/linux/virtio_console.h |
| 11397 | F: include/uapi/linux/virtio_console.h |
| 11398 | |
| 11399 | VIRTIO CORE, NET AND BLOCK DRIVERS |
| 11400 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 11401 | L: virtualization@lists.linux-foundation.org |
| 11402 | S: Maintained |
| 11403 | F: drivers/virtio/ |
| 11404 | F: tools/virtio/ |
| 11405 | F: drivers/net/virtio_net.c |
| 11406 | F: drivers/block/virtio_blk.c |
| 11407 | F: include/linux/virtio_*.h |
| 11408 | F: include/uapi/linux/virtio_*.h |
| 11409 | |
| 11410 | VIRTIO DRIVERS FOR S390 |
| 11411 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
| 11412 | M: Cornelia Huck <cornelia.huck@de.ibm.com> |
| 11413 | L: linux-s390@vger.kernel.org |
| 11414 | L: virtualization@lists.linux-foundation.org |
| 11415 | L: kvm@vger.kernel.org |
| 11416 | S: Supported |
| 11417 | F: drivers/s390/virtio/ |
| 11418 | |
| 11419 | VIRTIO GPU DRIVER |
| 11420 | M: David Airlie <airlied@linux.ie> |
| 11421 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 11422 | L: dri-devel@lists.freedesktop.org |
| 11423 | L: virtualization@lists.linux-foundation.org |
| 11424 | S: Maintained |
| 11425 | F: drivers/gpu/drm/virtio/ |
| 11426 | F: include/uapi/linux/virtio_gpu.h |
| 11427 | |
| 11428 | VIRTIO HOST (VHOST) |
| 11429 | M: "Michael S. Tsirkin" <mst@redhat.com> |
| 11430 | L: kvm@vger.kernel.org |
| 11431 | L: virtualization@lists.linux-foundation.org |
| 11432 | L: netdev@vger.kernel.org |
| 11433 | S: Maintained |
| 11434 | F: drivers/vhost/ |
| 11435 | F: include/uapi/linux/vhost.h |
| 11436 | |
| 11437 | VIRTIO INPUT DRIVER |
| 11438 | M: Gerd Hoffmann <kraxel@redhat.com> |
| 11439 | S: Maintained |
| 11440 | F: drivers/virtio/virtio_input.c |
| 11441 | F: include/uapi/linux/virtio_input.h |
| 11442 | |
| 11443 | VIA RHINE NETWORK DRIVER |
| 11444 | S: Orphan |
| 11445 | F: drivers/net/ethernet/via/via-rhine.c |
| 11446 | |
| 11447 | VIA SD/MMC CARD CONTROLLER DRIVER |
| 11448 | M: Bruce Chang <brucechang@via.com.tw> |
| 11449 | M: Harald Welte <HaraldWelte@viatech.com> |
| 11450 | S: Maintained |
| 11451 | F: drivers/mmc/host/via-sdmmc.c |
| 11452 | |
| 11453 | VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER |
| 11454 | M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> |
| 11455 | L: linux-fbdev@vger.kernel.org |
| 11456 | S: Maintained |
| 11457 | F: include/linux/via-core.h |
| 11458 | F: include/linux/via-gpio.h |
| 11459 | F: include/linux/via_i2c.h |
| 11460 | F: drivers/video/fbdev/via/ |
| 11461 | |
| 11462 | VIA VELOCITY NETWORK DRIVER |
| 11463 | M: Francois Romieu <romieu@fr.zoreil.com> |
| 11464 | L: netdev@vger.kernel.org |
| 11465 | S: Maintained |
| 11466 | F: drivers/net/ethernet/via/via-velocity.* |
| 11467 | |
| 11468 | VIRT LIB |
| 11469 | M: Alex Williamson <alex.williamson@redhat.com> |
| 11470 | M: Paolo Bonzini <pbonzini@redhat.com> |
| 11471 | L: kvm@vger.kernel.org |
| 11472 | S: Supported |
| 11473 | F: virt/lib/ |
| 11474 | |
| 11475 | VIVID VIRTUAL VIDEO DRIVER |
| 11476 | M: Hans Verkuil <hverkuil@xs4all.nl> |
| 11477 | L: linux-media@vger.kernel.org |
| 11478 | T: git git://linuxtv.org/media_tree.git |
| 11479 | W: http://linuxtv.org |
| 11480 | S: Maintained |
| 11481 | F: drivers/media/platform/vivid/* |
| 11482 | |
| 11483 | VLAN (802.1Q) |
| 11484 | M: Patrick McHardy <kaber@trash.net> |
| 11485 | L: netdev@vger.kernel.org |
| 11486 | S: Maintained |
| 11487 | F: drivers/net/macvlan.c |
| 11488 | F: include/linux/if_*vlan.h |
| 11489 | F: net/8021q/ |
| 11490 | |
| 11491 | VLYNQ BUS |
| 11492 | M: Florian Fainelli <florian@openwrt.org> |
| 11493 | L: openwrt-devel@lists.openwrt.org (subscribers-only) |
| 11494 | S: Maintained |
| 11495 | F: drivers/vlynq/vlynq.c |
| 11496 | F: include/linux/vlynq.h |
| 11497 | |
| 11498 | VME SUBSYSTEM |
| 11499 | M: Martyn Welch <martyn@welchs.me.uk> |
| 11500 | M: Manohar Vanga <manohar.vanga@gmail.com> |
| 11501 | M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> |
| 11502 | L: devel@driverdev.osuosl.org |
| 11503 | S: Maintained |
| 11504 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git |
| 11505 | F: Documentation/vme_api.txt |
| 11506 | F: drivers/staging/vme/ |
| 11507 | F: drivers/vme/ |
| 11508 | F: include/linux/vme* |
| 11509 | |
| 11510 | VMWARE HYPERVISOR INTERFACE |
| 11511 | M: Alok Kataria <akataria@vmware.com> |
| 11512 | L: virtualization@lists.linux-foundation.org |
| 11513 | S: Supported |
| 11514 | F: arch/x86/kernel/cpu/vmware.c |
| 11515 | |
| 11516 | VMWARE BALLOON DRIVER |
| 11517 | M: Xavier Deguillard <xdeguillard@vmware.com> |
| 11518 | M: Philip Moltmann <moltmann@vmware.com> |
| 11519 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 11520 | L: linux-kernel@vger.kernel.org |
| 11521 | S: Maintained |
| 11522 | F: drivers/misc/vmw_balloon.c |
| 11523 | |
| 11524 | VMWARE VMMOUSE SUBDRIVER |
| 11525 | M: "VMware Graphics" <linux-graphics-maintainer@vmware.com> |
| 11526 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 11527 | L: linux-input@vger.kernel.org |
| 11528 | S: Maintained |
| 11529 | F: drivers/input/mouse/vmmouse.c |
| 11530 | F: drivers/input/mouse/vmmouse.h |
| 11531 | |
| 11532 | VMWARE VMXNET3 ETHERNET DRIVER |
| 11533 | M: Shrikrishna Khare <skhare@vmware.com> |
| 11534 | M: "VMware, Inc." <pv-drivers@vmware.com> |
| 11535 | L: netdev@vger.kernel.org |
| 11536 | S: Maintained |
| 11537 | F: drivers/net/vmxnet3/ |
| 11538 | |
| 11539 | VMware PVSCSI driver |
| 11540 | M: Arvind Kumar <arvindkumar@vmware.com> |
| 11541 | M: VMware PV-Drivers <pv-drivers@vmware.com> |
| 11542 | L: linux-scsi@vger.kernel.org |
| 11543 | S: Maintained |
| 11544 | F: drivers/scsi/vmw_pvscsi.c |
| 11545 | F: drivers/scsi/vmw_pvscsi.h |
| 11546 | |
| 11547 | VOLTAGE AND CURRENT REGULATOR FRAMEWORK |
| 11548 | M: Liam Girdwood <lgirdwood@gmail.com> |
| 11549 | M: Mark Brown <broonie@kernel.org> |
| 11550 | L: linux-kernel@vger.kernel.org |
| 11551 | W: http://www.slimlogic.co.uk/?p=48 |
| 11552 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git |
| 11553 | S: Supported |
| 11554 | F: drivers/regulator/ |
| 11555 | F: include/linux/regulator/ |
| 11556 | |
| 11557 | VRF |
| 11558 | M: David Ahern <dsa@cumulusnetworks.com> |
| 11559 | M: Shrijeet Mukherjee <shm@cumulusnetworks.com> |
| 11560 | L: netdev@vger.kernel.org |
| 11561 | S: Maintained |
| 11562 | F: drivers/net/vrf.c |
| 11563 | F: Documentation/networking/vrf.txt |
| 11564 | |
| 11565 | VT1211 HARDWARE MONITOR DRIVER |
| 11566 | M: Juerg Haefliger <juergh@gmail.com> |
| 11567 | L: linux-hwmon@vger.kernel.org |
| 11568 | S: Maintained |
| 11569 | F: Documentation/hwmon/vt1211 |
| 11570 | F: drivers/hwmon/vt1211.c |
| 11571 | |
| 11572 | VT8231 HARDWARE MONITOR DRIVER |
| 11573 | M: Roger Lucas <vt8231@hiddenengine.co.uk> |
| 11574 | L: linux-hwmon@vger.kernel.org |
| 11575 | S: Maintained |
| 11576 | F: drivers/hwmon/vt8231.c |
| 11577 | |
| 11578 | VUB300 USB to SDIO/SD/MMC bridge chip |
| 11579 | M: Tony Olech <tony.olech@elandigitalsystems.com> |
| 11580 | L: linux-mmc@vger.kernel.org |
| 11581 | L: linux-usb@vger.kernel.org |
| 11582 | S: Supported |
| 11583 | F: drivers/mmc/host/vub300.c |
| 11584 | |
| 11585 | W1 DALLAS'S 1-WIRE BUS |
| 11586 | M: Evgeniy Polyakov <zbr@ioremap.net> |
| 11587 | S: Maintained |
| 11588 | F: Documentation/w1/ |
| 11589 | F: drivers/w1/ |
| 11590 | |
| 11591 | W83791D HARDWARE MONITORING DRIVER |
| 11592 | M: Marc Hulsman <m.hulsman@tudelft.nl> |
| 11593 | L: linux-hwmon@vger.kernel.org |
| 11594 | S: Maintained |
| 11595 | F: Documentation/hwmon/w83791d |
| 11596 | F: drivers/hwmon/w83791d.c |
| 11597 | |
| 11598 | W83793 HARDWARE MONITORING DRIVER |
| 11599 | M: Rudolf Marek <r.marek@assembler.cz> |
| 11600 | L: linux-hwmon@vger.kernel.org |
| 11601 | S: Maintained |
| 11602 | F: Documentation/hwmon/w83793 |
| 11603 | F: drivers/hwmon/w83793.c |
| 11604 | |
| 11605 | W83795 HARDWARE MONITORING DRIVER |
| 11606 | M: Jean Delvare <jdelvare@suse.com> |
| 11607 | L: linux-hwmon@vger.kernel.org |
| 11608 | S: Maintained |
| 11609 | F: drivers/hwmon/w83795.c |
| 11610 | |
| 11611 | W83L51xD SD/MMC CARD INTERFACE DRIVER |
| 11612 | M: Pierre Ossman <pierre@ossman.eu> |
| 11613 | S: Maintained |
| 11614 | F: drivers/mmc/host/wbsd.* |
| 11615 | |
| 11616 | WACOM PROTOCOL 4 SERIAL TABLETS |
| 11617 | M: Julian Squires <julian@cipht.net> |
| 11618 | M: Hans de Goede <hdegoede@redhat.com> |
| 11619 | L: linux-input@vger.kernel.org |
| 11620 | S: Maintained |
| 11621 | F: drivers/input/tablet/wacom_serial4.c |
| 11622 | |
| 11623 | WATCHDOG DEVICE DRIVERS |
| 11624 | M: Wim Van Sebroeck <wim@iguana.be> |
| 11625 | L: linux-watchdog@vger.kernel.org |
| 11626 | W: http://www.linux-watchdog.org/ |
| 11627 | T: git git://www.linux-watchdog.org/linux-watchdog.git |
| 11628 | S: Maintained |
| 11629 | F: Documentation/watchdog/ |
| 11630 | F: drivers/watchdog/ |
| 11631 | F: include/linux/watchdog.h |
| 11632 | F: include/uapi/linux/watchdog.h |
| 11633 | |
| 11634 | WD7000 SCSI DRIVER |
| 11635 | M: Miroslav Zagorac <zaga@fly.cc.fer.hr> |
| 11636 | L: linux-scsi@vger.kernel.org |
| 11637 | S: Maintained |
| 11638 | F: drivers/scsi/wd7000.c |
| 11639 | |
| 11640 | WIIMOTE HID DRIVER |
| 11641 | M: David Herrmann <dh.herrmann@googlemail.com> |
| 11642 | L: linux-input@vger.kernel.org |
| 11643 | S: Maintained |
| 11644 | F: drivers/hid/hid-wiimote* |
| 11645 | |
| 11646 | WINBOND CIR DRIVER |
| 11647 | M: David Härdeman <david@hardeman.nu> |
| 11648 | S: Maintained |
| 11649 | F: drivers/media/rc/winbond-cir.c |
| 11650 | |
| 11651 | WIMAX STACK |
| 11652 | M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> |
| 11653 | M: linux-wimax@intel.com |
| 11654 | L: wimax@linuxwimax.org (subscribers-only) |
| 11655 | S: Supported |
| 11656 | W: http://linuxwimax.org |
| 11657 | F: Documentation/wimax/README.wimax |
| 11658 | F: include/linux/wimax/debug.h |
| 11659 | F: include/net/wimax.h |
| 11660 | F: include/uapi/linux/wimax.h |
| 11661 | F: net/wimax/ |
| 11662 | |
| 11663 | WISTRON LAPTOP BUTTON DRIVER |
| 11664 | M: Miloslav Trmac <mitr@volny.cz> |
| 11665 | S: Maintained |
| 11666 | F: drivers/input/misc/wistron_btns.c |
| 11667 | |
| 11668 | WL3501 WIRELESS PCMCIA CARD DRIVER |
| 11669 | M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> |
| 11670 | L: linux-wireless@vger.kernel.org |
| 11671 | W: http://oops.ghostprotocols.net:81/blog |
| 11672 | S: Maintained |
| 11673 | F: drivers/net/wireless/wl3501* |
| 11674 | |
| 11675 | WOLFSON MICROELECTRONICS DRIVERS |
| 11676 | L: patches@opensource.wolfsonmicro.com |
| 11677 | T: git https://github.com/CirrusLogic/linux-drivers.git |
| 11678 | W: https://github.com/CirrusLogic/linux-drivers/wiki |
| 11679 | S: Supported |
| 11680 | F: Documentation/hwmon/wm83?? |
| 11681 | F: Documentation/devicetree/bindings/extcon/extcon-arizona.txt |
| 11682 | F: Documentation/devicetree/bindings/regulator/arizona-regulator.txt |
| 11683 | F: Documentation/devicetree/bindings/mfd/arizona.txt |
| 11684 | F: arch/arm/mach-s3c64xx/mach-crag6410* |
| 11685 | F: drivers/clk/clk-wm83*.c |
| 11686 | F: drivers/extcon/extcon-arizona.c |
| 11687 | F: drivers/leds/leds-wm83*.c |
| 11688 | F: drivers/gpio/gpio-*wm*.c |
| 11689 | F: drivers/gpio/gpio-arizona.c |
| 11690 | F: drivers/hwmon/wm83??-hwmon.c |
| 11691 | F: drivers/input/misc/wm831x-on.c |
| 11692 | F: drivers/input/touchscreen/wm831x-ts.c |
| 11693 | F: drivers/input/touchscreen/wm97*.c |
| 11694 | F: drivers/mfd/arizona* |
| 11695 | F: drivers/mfd/wm*.c |
| 11696 | F: drivers/power/wm83*.c |
| 11697 | F: drivers/rtc/rtc-wm83*.c |
| 11698 | F: drivers/regulator/wm8*.c |
| 11699 | F: drivers/video/backlight/wm83*_bl.c |
| 11700 | F: drivers/watchdog/wm83*_wdt.c |
| 11701 | F: include/linux/mfd/arizona/ |
| 11702 | F: include/linux/mfd/wm831x/ |
| 11703 | F: include/linux/mfd/wm8350/ |
| 11704 | F: include/linux/mfd/wm8400* |
| 11705 | F: include/linux/wm97xx.h |
| 11706 | F: include/sound/wm????.h |
| 11707 | F: sound/soc/codecs/arizona.? |
| 11708 | F: sound/soc/codecs/wm* |
| 11709 | |
| 11710 | WORKQUEUE |
| 11711 | M: Tejun Heo <tj@kernel.org> |
| 11712 | R: Lai Jiangshan <jiangshanlai@gmail.com> |
| 11713 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git |
| 11714 | S: Maintained |
| 11715 | F: include/linux/workqueue.h |
| 11716 | F: kernel/workqueue.c |
| 11717 | F: Documentation/workqueue.txt |
| 11718 | |
| 11719 | X.25 NETWORK LAYER |
| 11720 | M: Andrew Hendry <andrew.hendry@gmail.com> |
| 11721 | L: linux-x25@vger.kernel.org |
| 11722 | S: Odd Fixes |
| 11723 | F: Documentation/networking/x25* |
| 11724 | F: include/net/x25* |
| 11725 | F: net/x25/ |
| 11726 | |
| 11727 | X86 ARCHITECTURE (32-BIT AND 64-BIT) |
| 11728 | M: Thomas Gleixner <tglx@linutronix.de> |
| 11729 | M: Ingo Molnar <mingo@redhat.com> |
| 11730 | M: "H. Peter Anvin" <hpa@zytor.com> |
| 11731 | M: x86@kernel.org |
| 11732 | L: linux-kernel@vger.kernel.org |
| 11733 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core |
| 11734 | S: Maintained |
| 11735 | F: Documentation/x86/ |
| 11736 | F: arch/x86/ |
| 11737 | |
| 11738 | X86 PLATFORM DRIVERS |
| 11739 | M: Darren Hart <dvhart@infradead.org> |
| 11740 | L: platform-driver-x86@vger.kernel.org |
| 11741 | T: git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git |
| 11742 | S: Maintained |
| 11743 | F: drivers/platform/x86/ |
| 11744 | F: drivers/platform/olpc/ |
| 11745 | |
| 11746 | X86 MCE INFRASTRUCTURE |
| 11747 | M: Tony Luck <tony.luck@intel.com> |
| 11748 | M: Borislav Petkov <bp@alien8.de> |
| 11749 | L: linux-edac@vger.kernel.org |
| 11750 | S: Maintained |
| 11751 | F: arch/x86/kernel/cpu/mcheck/* |
| 11752 | |
| 11753 | X86 MICROCODE UPDATE SUPPORT |
| 11754 | M: Borislav Petkov <bp@alien8.de> |
| 11755 | S: Maintained |
| 11756 | F: arch/x86/kernel/cpu/microcode/* |
| 11757 | |
| 11758 | X86 VDSO |
| 11759 | M: Andy Lutomirski <luto@amacapital.net> |
| 11760 | L: linux-kernel@vger.kernel.org |
| 11761 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso |
| 11762 | S: Maintained |
| 11763 | F: arch/x86/entry/vdso/ |
| 11764 | |
| 11765 | XC2028/3028 TUNER DRIVER |
| 11766 | M: Mauro Carvalho Chehab <mchehab@osg.samsung.com> |
| 11767 | L: linux-media@vger.kernel.org |
| 11768 | W: http://linuxtv.org |
| 11769 | T: git git://linuxtv.org/media_tree.git |
| 11770 | S: Maintained |
| 11771 | F: drivers/media/tuners/tuner-xc2028.* |
| 11772 | |
| 11773 | XEN HYPERVISOR INTERFACE |
| 11774 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 11775 | M: Boris Ostrovsky <boris.ostrovsky@oracle.com> |
| 11776 | M: David Vrabel <david.vrabel@citrix.com> |
| 11777 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11778 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git |
| 11779 | S: Supported |
| 11780 | F: arch/x86/xen/ |
| 11781 | F: drivers/*/xen-*front.c |
| 11782 | F: drivers/xen/ |
| 11783 | F: arch/x86/include/asm/xen/ |
| 11784 | F: include/xen/ |
| 11785 | F: include/uapi/xen/ |
| 11786 | |
| 11787 | XEN HYPERVISOR ARM |
| 11788 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> |
| 11789 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11790 | S: Supported |
| 11791 | F: arch/arm/xen/ |
| 11792 | F: arch/arm/include/asm/xen/ |
| 11793 | |
| 11794 | XEN HYPERVISOR ARM64 |
| 11795 | M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> |
| 11796 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11797 | S: Supported |
| 11798 | F: arch/arm64/xen/ |
| 11799 | F: arch/arm64/include/asm/xen/ |
| 11800 | |
| 11801 | XEN NETWORK BACKEND DRIVER |
| 11802 | M: Ian Campbell <ian.campbell@citrix.com> |
| 11803 | M: Wei Liu <wei.liu2@citrix.com> |
| 11804 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11805 | L: netdev@vger.kernel.org |
| 11806 | S: Supported |
| 11807 | F: drivers/net/xen-netback/* |
| 11808 | |
| 11809 | XEN PCI SUBSYSTEM |
| 11810 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 11811 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11812 | S: Supported |
| 11813 | F: arch/x86/pci/*xen* |
| 11814 | F: drivers/pci/*xen* |
| 11815 | |
| 11816 | XEN BLOCK SUBSYSTEM |
| 11817 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 11818 | M: Roger Pau Monné <roger.pau@citrix.com> |
| 11819 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11820 | S: Supported |
| 11821 | F: drivers/block/xen-blkback/* |
| 11822 | F: drivers/block/xen* |
| 11823 | |
| 11824 | XEN PVSCSI DRIVERS |
| 11825 | M: Juergen Gross <jgross@suse.com> |
| 11826 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11827 | L: linux-scsi@vger.kernel.org |
| 11828 | S: Supported |
| 11829 | F: drivers/scsi/xen-scsifront.c |
| 11830 | F: drivers/xen/xen-scsiback.c |
| 11831 | F: include/xen/interface/io/vscsiif.h |
| 11832 | |
| 11833 | XEN SWIOTLB SUBSYSTEM |
| 11834 | M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> |
| 11835 | L: xen-devel@lists.xenproject.org (moderated for non-subscribers) |
| 11836 | S: Supported |
| 11837 | F: arch/x86/xen/*swiotlb* |
| 11838 | F: drivers/xen/*swiotlb* |
| 11839 | |
| 11840 | XFS FILESYSTEM |
| 11841 | P: Silicon Graphics Inc |
| 11842 | M: Dave Chinner <david@fromorbit.com> |
| 11843 | M: xfs@oss.sgi.com |
| 11844 | L: xfs@oss.sgi.com |
| 11845 | W: http://oss.sgi.com/projects/xfs |
| 11846 | T: git git://oss.sgi.com/xfs/xfs.git |
| 11847 | S: Supported |
| 11848 | F: Documentation/filesystems/xfs.txt |
| 11849 | F: fs/xfs/ |
| 11850 | |
| 11851 | XILINX AXI ETHERNET DRIVER |
| 11852 | M: Anirudha Sarangi <anirudh@xilinx.com> |
| 11853 | M: John Linn <John.Linn@xilinx.com> |
| 11854 | S: Maintained |
| 11855 | F: drivers/net/ethernet/xilinx/xilinx_axienet* |
| 11856 | |
| 11857 | XILINX UARTLITE SERIAL DRIVER |
| 11858 | M: Peter Korsgaard <jacmet@sunsite.dk> |
| 11859 | L: linux-serial@vger.kernel.org |
| 11860 | S: Maintained |
| 11861 | F: drivers/tty/serial/uartlite.c |
| 11862 | |
| 11863 | XILINX VIDEO IP CORES |
| 11864 | M: Hyun Kwon <hyun.kwon@xilinx.com> |
| 11865 | M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> |
| 11866 | L: linux-media@vger.kernel.org |
| 11867 | T: git git://linuxtv.org/media_tree.git |
| 11868 | S: Supported |
| 11869 | F: Documentation/devicetree/bindings/media/xilinx/ |
| 11870 | F: drivers/media/platform/xilinx/ |
| 11871 | F: include/uapi/linux/xilinx-v4l2-controls.h |
| 11872 | |
| 11873 | XILLYBUS DRIVER |
| 11874 | M: Eli Billauer <eli.billauer@gmail.com> |
| 11875 | L: linux-kernel@vger.kernel.org |
| 11876 | S: Supported |
| 11877 | F: drivers/char/xillybus/ |
| 11878 | |
| 11879 | XTENSA XTFPGA PLATFORM SUPPORT |
| 11880 | M: Max Filippov <jcmvbkbc@gmail.com> |
| 11881 | L: linux-xtensa@linux-xtensa.org |
| 11882 | S: Maintained |
| 11883 | F: drivers/spi/spi-xtensa-xtfpga.c |
| 11884 | F: sound/soc/xtensa/xtfpga-i2s.c |
| 11885 | |
| 11886 | YAM DRIVER FOR AX.25 |
| 11887 | M: Jean-Paul Roubelat <jpr@f6fbb.org> |
| 11888 | L: linux-hams@vger.kernel.org |
| 11889 | S: Maintained |
| 11890 | F: drivers/net/hamradio/yam* |
| 11891 | F: include/linux/yam.h |
| 11892 | |
| 11893 | YEALINK PHONE DRIVER |
| 11894 | M: Henk Vergonet <Henk.Vergonet@gmail.com> |
| 11895 | L: usbb2k-api-dev@nongnu.org |
| 11896 | S: Maintained |
| 11897 | F: Documentation/input/yealink.txt |
| 11898 | F: drivers/input/misc/yealink.* |
| 11899 | |
| 11900 | Z8530 DRIVER FOR AX.25 |
| 11901 | M: Joerg Reuter <jreuter@yaina.de> |
| 11902 | W: http://yaina.de/jreuter/ |
| 11903 | W: http://www.qsl.net/dl1bke/ |
| 11904 | L: linux-hams@vger.kernel.org |
| 11905 | S: Maintained |
| 11906 | F: Documentation/networking/z8530drv.txt |
| 11907 | F: drivers/net/hamradio/*scc.c |
| 11908 | F: drivers/net/hamradio/z8530.h |
| 11909 | |
| 11910 | ZBUD COMPRESSED PAGE ALLOCATOR |
| 11911 | M: Seth Jennings <sjennings@variantweb.net> |
| 11912 | L: linux-mm@kvack.org |
| 11913 | S: Maintained |
| 11914 | F: mm/zbud.c |
| 11915 | F: include/linux/zbud.h |
| 11916 | |
| 11917 | ZD1211RW WIRELESS DRIVER |
| 11918 | M: Daniel Drake <dsd@gentoo.org> |
| 11919 | M: Ulrich Kunitz <kune@deine-taler.de> |
| 11920 | W: http://zd1211.ath.cx/wiki/DriverRewrite |
| 11921 | L: linux-wireless@vger.kernel.org |
| 11922 | L: zd1211-devs@lists.sourceforge.net (subscribers-only) |
| 11923 | S: Maintained |
| 11924 | F: drivers/net/wireless/zd1211rw/ |
| 11925 | |
| 11926 | ZPOOL COMPRESSED PAGE STORAGE API |
| 11927 | M: Dan Streetman <ddstreet@ieee.org> |
| 11928 | L: linux-mm@kvack.org |
| 11929 | S: Maintained |
| 11930 | F: mm/zpool.c |
| 11931 | F: include/linux/zpool.h |
| 11932 | |
| 11933 | ZR36067 VIDEO FOR LINUX DRIVER |
| 11934 | L: mjpeg-users@lists.sourceforge.net |
| 11935 | L: linux-media@vger.kernel.org |
| 11936 | W: http://mjpeg.sourceforge.net/driver-zoran/ |
| 11937 | T: hg http://linuxtv.org/hg/v4l-dvb |
| 11938 | S: Odd Fixes |
| 11939 | F: drivers/media/pci/zoran/ |
| 11940 | |
| 11941 | ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER |
| 11942 | M: Minchan Kim <minchan@kernel.org> |
| 11943 | M: Nitin Gupta <ngupta@vflare.org> |
| 11944 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
| 11945 | L: linux-kernel@vger.kernel.org |
| 11946 | S: Maintained |
| 11947 | F: drivers/block/zram/ |
| 11948 | F: Documentation/blockdev/zram.txt |
| 11949 | |
| 11950 | ZS DECSTATION Z85C30 SERIAL DRIVER |
| 11951 | M: "Maciej W. Rozycki" <macro@linux-mips.org> |
| 11952 | S: Maintained |
| 11953 | F: drivers/tty/serial/zs.* |
| 11954 | |
| 11955 | ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR |
| 11956 | M: Minchan Kim <minchan@kernel.org> |
| 11957 | M: Nitin Gupta <ngupta@vflare.org> |
| 11958 | R: Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com> |
| 11959 | L: linux-mm@kvack.org |
| 11960 | S: Maintained |
| 11961 | F: mm/zsmalloc.c |
| 11962 | F: include/linux/zsmalloc.h |
| 11963 | F: Documentation/vm/zsmalloc.txt |
| 11964 | |
| 11965 | ZSWAP COMPRESSED SWAP CACHING |
| 11966 | M: Seth Jennings <sjennings@variantweb.net> |
| 11967 | L: linux-mm@kvack.org |
| 11968 | S: Maintained |
| 11969 | F: mm/zswap.c |
| 11970 | |
| 11971 | THE REST |
| 11972 | M: Linus Torvalds <torvalds@linux-foundation.org> |
| 11973 | L: linux-kernel@vger.kernel.org |
| 11974 | Q: http://patchwork.kernel.org/project/LKML/list/ |
| 11975 | T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git |
| 11976 | S: Buried alive in reporters |
| 11977 | F: * |
| 11978 | F: */ |