1 2 3 List of maintainers and how to submit kernel changes 4 5Please try to follow the guidelines below. This will make things 6easier on the maintainers. Not all of these guidelines matter for every 7trivial patch so apply some common sense. 8 91. Always _test_ your changes, however small, on at least 4 or 10 5 people, preferably many more. 11 122. 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 203. 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 244. When you are happy with a change make it generally available for 25 testing and await feedback. 26 275. 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 trival 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 OSDL certificate of contribution and should include a 55 Signed-off-by: line. The current version of this "Developer's 56 Certificate of Origin" (DCO) is listed in the file 57 Documentation/SubmittingPatches. 58 596. 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 637. 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 678. Happy hacking. 68 69Descriptions of section entries: 70 71 P: Person (obsolete) 72 M: Mail patches to: FullName <address@domain> 73 L: Mailing list that is relevant to this area 74 W: Web-page with status/info 75 Q: Patchwork web based patch tracking system site 76 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit. 77 S: Status, one of the following: 78 Supported: Someone is actually paid to look after this. 79 Maintained: Someone actually looks after it. 80 Odd Fixes: It has a maintainer but they don't have time to do 81 much other than throw the odd patch in. See below.. 82 Orphan: No current maintainer [but maybe you could take the 83 role as you write your new code]. 84 Obsolete: Old code. Something tagged obsolete generally means 85 it has been replaced by a better system and you 86 should be using that. 87 F: Files and directories with wildcard patterns. 88 A trailing slash includes all files and subdirectory files. 89 F: drivers/net/ all files in and below drivers/net 90 F: drivers/net/* all files in drivers/net, but not below 91 F: */net/* all files in "any top level directory"/net 92 One pattern per line. Multiple F: lines acceptable. 93 N: Files and directories with regex patterns. 94 N: [^a-z]tegra all files whose path contains the word tegra 95 One pattern per line. Multiple N: lines acceptable. 96 X: Files and directories that are NOT maintained, same rules as F: 97 Files exclusions are tested before file matches. 98 Can be useful for excluding a specific subdirectory, for instance: 99 F: net/ 100 X: net/ipv6/ 101 matches all files in and below net excluding net/ipv6/ 102 K: Keyword perl extended regex pattern to match content in a 103 patch or file. For instance: 104 K: of_get_profile 105 matches patches or files that contain "of_get_profile" 106 K: \b(printk|pr_(info|err))\b 107 matches patches or files that contain one or more of the words 108 printk, pr_info or pr_err 109 One regex pattern per line. Multiple K: lines acceptable. 110 111Note: For the hard of thinking, this list is meant to remain in alphabetical 112order. If you could add yourselves to it in alphabetical order that would be 113so much easier [Ed] 114 115Maintainers List (try to look for most precise areas first) 116 117 ----------------------------------- 118 1193C59X NETWORK DRIVER 120M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> 121L: netdev@vger.kernel.org 122S: Maintained 123F: Documentation/networking/vortex.txt 124F: drivers/net/ethernet/3com/3c59x.c 125 1263CR990 NETWORK DRIVER 127M: David Dillow <dave@thedillows.org> 128L: netdev@vger.kernel.org 129S: Maintained 130F: drivers/net/ethernet/3com/typhoon* 131 1323WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) 133M: Adam Radford <linuxraid@lsi.com> 134L: linux-scsi@vger.kernel.org 135W: http://www.lsi.com 136S: Supported 137F: drivers/scsi/3w-* 138 13953C700 AND 53C700-66 SCSI DRIVER 140M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 141L: linux-scsi@vger.kernel.org 142S: Maintained 143F: drivers/scsi/53c700* 144 1456PACK NETWORK DRIVER FOR AX.25 146M: Andreas Koensgen <ajk@comnets.uni-bremen.de> 147L: linux-hams@vger.kernel.org 148S: Maintained 149F: drivers/net/hamradio/6pack.c 150 1518169 10/100/1000 GIGABIT ETHERNET DRIVER 152M: Realtek linux nic maintainers <nic_swsd@realtek.com> 153M: Francois Romieu <romieu@fr.zoreil.com> 154L: netdev@vger.kernel.org 155S: Maintained 156F: drivers/net/ethernet/realtek/r8169.c 157 1588250/16?50 (AND CLONE UARTS) SERIAL DRIVER 159M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 160L: linux-serial@vger.kernel.org 161W: http://serial.sourceforge.net 162S: Maintained 163T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git 164F: drivers/tty/serial/8250* 165F: include/linux/serial_8250.h 166 1678390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] 168L: netdev@vger.kernel.org 169S: Orphan / Obsolete 170F: drivers/net/ethernet/8390/ 171 1729P FILE SYSTEM 173M: Eric Van Hensbergen <ericvh@gmail.com> 174M: Ron Minnich <rminnich@sandia.gov> 175M: Latchesar Ionkov <lucho@ionkov.net> 176L: v9fs-developer@lists.sourceforge.net 177W: http://swik.net/v9fs 178Q: http://patchwork.kernel.org/project/v9fs-devel/list/ 179T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git 180S: Maintained 181F: Documentation/filesystems/9p.txt 182F: fs/9p/ 183 184A8293 MEDIA DRIVER 185M: Antti Palosaari <crope@iki.fi> 186L: linux-media@vger.kernel.org 187W: http://linuxtv.org/ 188W: http://palosaari.fi/linux/ 189Q: http://patchwork.linuxtv.org/project/linux-media/list/ 190T: git git://linuxtv.org/anttip/media_tree.git 191S: Maintained 192F: drivers/media/dvb-frontends/a8293* 193 194AACRAID SCSI RAID DRIVER 195M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 196L: linux-scsi@vger.kernel.org 197W: http://www.adaptec.com/ 198S: Supported 199F: Documentation/scsi/aacraid.txt 200F: drivers/scsi/aacraid/ 201 202ABIT UGURU 1,2 HARDWARE MONITOR DRIVER 203M: Hans de Goede <hdegoede@redhat.com> 204L: lm-sensors@lm-sensors.org 205S: Maintained 206F: drivers/hwmon/abituguru.c 207 208ABIT UGURU 3 HARDWARE MONITOR DRIVER 209M: Alistair John Strachan <alistair@devzero.co.uk> 210L: lm-sensors@lm-sensors.org 211S: Maintained 212F: drivers/hwmon/abituguru3.c 213 214ACENIC DRIVER 215M: Jes Sorensen <jes@trained-monkey.org> 216L: linux-acenic@sunsite.dk 217S: Maintained 218F: drivers/net/ethernet/alteon/acenic* 219 220ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER 221M: Peter Feuerer <peter@piie.net> 222L: platform-driver-x86@vger.kernel.org 223W: http://piie.net/?section=acerhdf 224S: Maintained 225F: drivers/platform/x86/acerhdf.c 226 227ACER WMI LAPTOP EXTRAS 228M: "Lee, Chun-Yi" <jlee@suse.com> 229L: platform-driver-x86@vger.kernel.org 230S: Maintained 231F: drivers/platform/x86/acer-wmi.c 232 233ACPI 234M: Len Brown <lenb@kernel.org> 235M: Rafael J. Wysocki <rjw@sisk.pl> 236L: linux-acpi@vger.kernel.org 237W: http://www.lesswatts.org/projects/acpi/ 238Q: http://patchwork.kernel.org/project/linux-acpi/list/ 239T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux 240S: Supported 241F: drivers/acpi/ 242F: drivers/pnp/pnpacpi/ 243F: include/linux/acpi.h 244F: include/acpi/ 245 246ACPI FAN DRIVER 247M: Zhang Rui <rui.zhang@intel.com> 248L: linux-acpi@vger.kernel.org 249W: http://www.lesswatts.org/projects/acpi/ 250S: Supported 251F: drivers/acpi/fan.c 252 253ACPI THERMAL DRIVER 254M: Zhang Rui <rui.zhang@intel.com> 255L: linux-acpi@vger.kernel.org 256W: http://www.lesswatts.org/projects/acpi/ 257S: Supported 258F: drivers/acpi/*thermal* 259 260ACPI VIDEO DRIVER 261M: Zhang Rui <rui.zhang@intel.com> 262L: linux-acpi@vger.kernel.org 263W: http://www.lesswatts.org/projects/acpi/ 264S: Supported 265F: drivers/acpi/video.c 266 267ACPI WMI DRIVER 268L: platform-driver-x86@vger.kernel.org 269S: Orphan 270F: drivers/platform/x86/wmi.c 271 272AD1889 ALSA SOUND DRIVER 273M: Thibaut Varene <T-Bone@parisc-linux.org> 274W: http://wiki.parisc-linux.org/AD1889 275L: linux-parisc@vger.kernel.org 276S: Maintained 277F: sound/pci/ad1889.* 278 279AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER 280M: Michael Hennerich <michael.hennerich@analog.com> 281L: device-drivers-devel@blackfin.uclinux.org 282W: http://wiki.analog.com/AD5254 283S: Supported 284F: drivers/misc/ad525x_dpot.c 285 286AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) 287M: Michael Hennerich <michael.hennerich@analog.com> 288L: device-drivers-devel@blackfin.uclinux.org 289W: http://wiki.analog.com/AD5398 290S: Supported 291F: drivers/regulator/ad5398.c 292 293AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) 294M: Michael Hennerich <michael.hennerich@analog.com> 295L: device-drivers-devel@blackfin.uclinux.org 296W: http://wiki.analog.com/AD7142 297S: Supported 298F: drivers/input/misc/ad714x.c 299 300AD7877 TOUCHSCREEN DRIVER 301M: Michael Hennerich <michael.hennerich@analog.com> 302L: device-drivers-devel@blackfin.uclinux.org 303W: http://wiki.analog.com/AD7877 304S: Supported 305F: drivers/input/touchscreen/ad7877.c 306 307AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) 308M: Michael Hennerich <michael.hennerich@analog.com> 309L: device-drivers-devel@blackfin.uclinux.org 310W: http://wiki.analog.com/AD7879 311S: Supported 312F: drivers/input/touchscreen/ad7879.c 313 314ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR) 315M: Jiri Kosina <jkosina@suse.cz> 316S: Maintained 317 318ADM1025 HARDWARE MONITOR DRIVER 319M: Jean Delvare <khali@linux-fr.org> 320L: lm-sensors@lm-sensors.org 321S: Maintained 322F: Documentation/hwmon/adm1025 323F: drivers/hwmon/adm1025.c 324 325ADM1029 HARDWARE MONITOR DRIVER 326M: Corentin Labbe <corentin.labbe@geomatys.fr> 327L: lm-sensors@lm-sensors.org 328S: Maintained 329F: drivers/hwmon/adm1029.c 330 331ADM8211 WIRELESS DRIVER 332L: linux-wireless@vger.kernel.org 333W: http://wireless.kernel.org/ 334S: Orphan 335F: drivers/net/wireless/adm8211.* 336 337ADP1653 FLASH CONTROLLER DRIVER 338M: Sakari Ailus <sakari.ailus@iki.fi> 339L: linux-media@vger.kernel.org 340S: Maintained 341F: drivers/media/i2c/adp1653.c 342F: include/media/adp1653.h 343 344ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) 345M: Michael Hennerich <michael.hennerich@analog.com> 346L: device-drivers-devel@blackfin.uclinux.org 347W: http://wiki.analog.com/ADP5520 348S: Supported 349F: drivers/mfd/adp5520.c 350F: drivers/video/backlight/adp5520_bl.c 351F: drivers/leds/leds-adp5520.c 352F: drivers/gpio/gpio-adp5520.c 353F: drivers/input/keyboard/adp5520-keys.c 354 355ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) 356M: Michael Hennerich <michael.hennerich@analog.com> 357L: device-drivers-devel@blackfin.uclinux.org 358W: http://wiki.analog.com/ADP5588 359S: Supported 360F: drivers/input/keyboard/adp5588-keys.c 361F: drivers/gpio/gpio-adp5588.c 362 363ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) 364M: Michael Hennerich <michael.hennerich@analog.com> 365L: device-drivers-devel@blackfin.uclinux.org 366W: http://wiki.analog.com/ADP8860 367S: Supported 368F: drivers/video/backlight/adp8860_bl.c 369 370ADS1015 HARDWARE MONITOR DRIVER 371M: Dirk Eibach <eibach@gdsys.de> 372L: lm-sensors@lm-sensors.org 373S: Maintained 374F: Documentation/hwmon/ads1015 375F: drivers/hwmon/ads1015.c 376F: include/linux/i2c/ads1015.h 377 378ADT746X FAN DRIVER 379M: Colin Leroy <colin@colino.net> 380S: Maintained 381F: drivers/macintosh/therm_adt746x.c 382 383ADT7475 HARDWARE MONITOR DRIVER 384M: Jean Delvare <khali@linux-fr.org> 385L: lm-sensors@lm-sensors.org 386S: Maintained 387F: Documentation/hwmon/adt7475 388F: drivers/hwmon/adt7475.c 389 390ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) 391M: Michael Hennerich <michael.hennerich@analog.com> 392L: device-drivers-devel@blackfin.uclinux.org 393W: http://wiki.analog.com/ADXL345 394S: Supported 395F: drivers/input/misc/adxl34x.c 396 397ADVANSYS SCSI DRIVER 398M: Matthew Wilcox <matthew@wil.cx> 399L: linux-scsi@vger.kernel.org 400S: Maintained 401F: Documentation/scsi/advansys.txt 402F: drivers/scsi/advansys.c 403 404AEDSP16 DRIVER 405M: Riccardo Facchetti <fizban@tin.it> 406S: Maintained 407F: sound/oss/aedsp16.c 408 409AF9013 MEDIA DRIVER 410M: Antti Palosaari <crope@iki.fi> 411L: linux-media@vger.kernel.org 412W: http://linuxtv.org/ 413W: http://palosaari.fi/linux/ 414Q: http://patchwork.linuxtv.org/project/linux-media/list/ 415T: git git://linuxtv.org/anttip/media_tree.git 416S: Maintained 417F: drivers/media/dvb-frontends/af9013* 418 419AF9033 MEDIA DRIVER 420M: Antti Palosaari <crope@iki.fi> 421L: linux-media@vger.kernel.org 422W: http://linuxtv.org/ 423W: http://palosaari.fi/linux/ 424Q: http://patchwork.linuxtv.org/project/linux-media/list/ 425T: git git://linuxtv.org/anttip/media_tree.git 426S: Maintained 427F: drivers/media/dvb-frontends/af9033* 428 429AFFS FILE SYSTEM 430L: linux-fsdevel@vger.kernel.org 431S: Orphan 432F: Documentation/filesystems/affs.txt 433F: fs/affs/ 434 435AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN 436M: David Howells <dhowells@redhat.com> 437L: linux-afs@lists.infradead.org 438S: Supported 439F: fs/afs/ 440F: include/net/af_rxrpc.h 441F: net/rxrpc/af_rxrpc.c 442 443AGPGART DRIVER 444M: David Airlie <airlied@linux.ie> 445T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git 446S: Maintained 447F: drivers/char/agp/ 448F: include/linux/agp* 449F: include/uapi/linux/agp* 450 451AHA152X SCSI DRIVER 452M: "Juergen E. Fischer" <fischer@norbit.de> 453L: linux-scsi@vger.kernel.org 454S: Maintained 455F: drivers/scsi/aha152x* 456F: drivers/scsi/pcmcia/aha152x* 457 458AIC7XXX / AIC79XX SCSI DRIVER 459M: Hannes Reinecke <hare@suse.de> 460L: linux-scsi@vger.kernel.org 461S: Maintained 462F: drivers/scsi/aic7xxx/ 463F: drivers/scsi/aic7xxx_old/ 464 465AIMSLAB FM RADIO RECEIVER DRIVER 466M: Hans Verkuil <hverkuil@xs4all.nl> 467L: linux-media@vger.kernel.org 468T: git git://linuxtv.org/media_tree.git 469W: http://linuxtv.org 470S: Maintained 471F: drivers/media/radio/radio-aimslab* 472 473AIO 474M: Benjamin LaHaise <bcrl@kvack.org> 475L: linux-aio@kvack.org 476S: Supported 477F: fs/aio.c 478F: include/linux/*aio*.h 479 480ALCATEL SPEEDTOUCH USB DRIVER 481M: Duncan Sands <duncan.sands@free.fr> 482L: linux-usb@vger.kernel.org 483W: http://www.linux-usb.org/SpeedTouch/ 484S: Maintained 485F: drivers/usb/atm/speedtch.c 486F: drivers/usb/atm/usbatm.c 487 488ALCHEMY AU1XX0 MMC DRIVER 489M: Manuel Lauss <manuel.lauss@gmail.com> 490S: Maintained 491F: drivers/mmc/host/au1xmmc.c 492 493ALI1563 I2C DRIVER 494M: Rudolf Marek <r.marek@assembler.cz> 495L: linux-i2c@vger.kernel.org 496S: Maintained 497F: Documentation/i2c/busses/i2c-ali1563 498F: drivers/i2c/busses/i2c-ali1563.c 499 500ALPHA PORT 501M: Richard Henderson <rth@twiddle.net> 502M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> 503M: Matt Turner <mattst88@gmail.com> 504S: Odd Fixes 505L: linux-alpha@vger.kernel.org 506F: arch/alpha/ 507 508ALTERA UART/JTAG UART SERIAL DRIVERS 509M: Tobias Klauser <tklauser@distanz.ch> 510L: linux-serial@vger.kernel.org 511L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers) 512S: Maintained 513F: drivers/tty/serial/altera_uart.c 514F: drivers/tty/serial/altera_jtaguart.c 515F: include/linux/altera_uart.h 516F: include/linux/altera_jtaguart.h 517 518AMD FAM15H PROCESSOR POWER MONITORING DRIVER 519M: Andreas Herrmann <herrmann.der.user@googlemail.com> 520L: lm-sensors@lm-sensors.org 521S: Maintained 522F: Documentation/hwmon/fam15h_power 523F: drivers/hwmon/fam15h_power.c 524 525AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER 526M: Thomas Dahlmann <dahlmann.thomas@arcor.de> 527L: linux-geode@lists.infradead.org (moderated for non-subscribers) 528S: Supported 529F: drivers/usb/gadget/amd5536udc.* 530 531AMD GEODE PROCESSOR/CHIPSET SUPPORT 532P: Andres Salomon <dilinger@queued.net> 533L: linux-geode@lists.infradead.org (moderated for non-subscribers) 534W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html 535S: Supported 536F: drivers/char/hw_random/geode-rng.c 537F: drivers/crypto/geode* 538F: drivers/video/geode/ 539F: arch/x86/include/asm/geode.h 540 541AMD IOMMU (AMD-VI) 542M: Joerg Roedel <joro@8bytes.org> 543L: iommu@lists.linux-foundation.org 544T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git 545S: Maintained 546F: drivers/iommu/amd_iommu*.[ch] 547F: include/linux/amd-iommu.h 548 549AMD MICROCODE UPDATE SUPPORT 550M: Andreas Herrmann <herrmann.der.user@googlemail.com> 551L: amd64-microcode@amd64.org 552S: Maintained 553F: arch/x86/kernel/microcode_amd.c 554 555AMS (Apple Motion Sensor) DRIVER 556M: Michael Hanselmann <linux-kernel@hansmi.ch> 557S: Supported 558F: drivers/macintosh/ams/ 559 560AMSO1100 RNIC DRIVER 561M: Tom Tucker <tom@opengridcomputing.com> 562M: Steve Wise <swise@opengridcomputing.com> 563L: linux-rdma@vger.kernel.org 564S: Maintained 565F: drivers/infiniband/hw/amso1100/ 566 567ANALOG DEVICES INC AD9389B DRIVER 568M: Hans Verkuil <hans.verkuil@cisco.com> 569L: linux-media@vger.kernel.org 570S: Maintained 571F: drivers/media/i2c/ad9389b* 572 573ANALOG DEVICES INC ADV7604 DRIVER 574M: Hans Verkuil <hans.verkuil@cisco.com> 575L: linux-media@vger.kernel.org 576S: Maintained 577F: drivers/media/i2c/adv7604* 578 579ANALOG DEVICES INC ASOC CODEC DRIVERS 580M: Lars-Peter Clausen <lars@metafoo.de> 581L: device-drivers-devel@blackfin.uclinux.org 582L: alsa-devel@alsa-project.org (moderated for non-subscribers) 583W: http://wiki.analog.com/ 584S: Supported 585F: sound/soc/codecs/adau* 586F: sound/soc/codecs/adav* 587F: sound/soc/codecs/ad1* 588F: sound/soc/codecs/ssm* 589F: sound/soc/codecs/sigmadsp.* 590 591ANALOG DEVICES INC ASOC DRIVERS 592L: uclinux-dist-devel@blackfin.uclinux.org 593L: alsa-devel@alsa-project.org (moderated for non-subscribers) 594W: http://blackfin.uclinux.org/ 595S: Supported 596F: sound/soc/blackfin/* 597 598AOA (Apple Onboard Audio) ALSA DRIVER 599M: Johannes Berg <johannes@sipsolutions.net> 600L: linuxppc-dev@lists.ozlabs.org 601L: alsa-devel@alsa-project.org (moderated for non-subscribers) 602S: Maintained 603F: sound/aoa/ 604 605APM DRIVER 606M: Jiri Kosina <jkosina@suse.cz> 607S: Odd fixes 608F: arch/x86/kernel/apm_32.c 609F: include/linux/apm_bios.h 610F: include/uapi/linux/apm_bios.h 611F: drivers/char/apm-emulation.c 612 613APPLE BCM5974 MULTITOUCH DRIVER 614M: Henrik Rydberg <rydberg@euromail.se> 615L: linux-input@vger.kernel.org 616S: Maintained 617F: drivers/input/mouse/bcm5974.c 618 619APPLE SMC DRIVER 620M: Henrik Rydberg <rydberg@euromail.se> 621L: lm-sensors@lm-sensors.org 622S: Maintained 623F: drivers/hwmon/applesmc.c 624 625APPLETALK NETWORK LAYER 626M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 627S: Maintained 628F: drivers/net/appletalk/ 629F: net/appletalk/ 630 631ARASAN COMPACT FLASH PATA CONTROLLER 632M: Viresh Kumar <viresh.linux@gmail.com> 633L: linux-ide@vger.kernel.org 634S: Maintained 635F: include/linux/pata_arasan_cf_data.h 636F: drivers/ata/pata_arasan_cf.c 637 638ARC FRAMEBUFFER DRIVER 639M: Jaya Kumar <jayalk@intworks.biz> 640S: Maintained 641F: drivers/video/arcfb.c 642F: drivers/video/fb_defio.c 643 644ARM MFM AND FLOPPY DRIVERS 645M: Ian Molton <spyro@f2s.com> 646S: Maintained 647F: arch/arm/lib/floppydma.S 648F: arch/arm/include/asm/floppy.h 649 650ARM PMU PROFILING AND DEBUGGING 651M: Will Deacon <will.deacon@arm.com> 652S: Maintained 653F: arch/arm/kernel/perf_event* 654F: arch/arm/oprofile/common.c 655F: arch/arm/include/asm/pmu.h 656F: arch/arm/kernel/hw_breakpoint.c 657F: arch/arm/include/asm/hw_breakpoint.h 658 659ARM PORT 660M: Russell King <linux@arm.linux.org.uk> 661L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 662W: http://www.arm.linux.org.uk/ 663S: Maintained 664F: arch/arm/ 665 666ARM SUB-ARCHITECTURES 667L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 668S: Maintained 669F: arch/arm/mach-*/ 670F: arch/arm/plat-*/ 671T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git 672 673ARM PRIMECELL AACI PL041 DRIVER 674M: Russell King <linux@arm.linux.org.uk> 675S: Maintained 676F: sound/arm/aaci.* 677 678ARM PRIMECELL CLCD PL110 DRIVER 679M: Russell King <linux@arm.linux.org.uk> 680S: Maintained 681F: drivers/video/amba-clcd.* 682 683ARM PRIMECELL KMI PL050 DRIVER 684M: Russell King <linux@arm.linux.org.uk> 685S: Maintained 686F: drivers/input/serio/ambakmi.* 687F: include/linux/amba/kmi.h 688 689ARM PRIMECELL MMCI PL180/1 DRIVER 690M: Russell King <linux@arm.linux.org.uk> 691S: Maintained 692F: drivers/mmc/host/mmci.* 693F: include/linux/amba/mmci.h 694 695ARM PRIMECELL UART PL010 AND PL011 DRIVERS 696M: Russell King <linux@arm.linux.org.uk> 697S: Maintained 698F: drivers/tty/serial/amba-pl01*.c 699F: include/linux/amba/serial.h 700 701ARM PRIMECELL BUS SUPPORT 702M: Russell King <linux@arm.linux.org.uk> 703S: Maintained 704F: drivers/amba/ 705F: include/linux/amba/bus.h 706 707ARM/ADS SPHERE MACHINE SUPPORT 708M: Lennert Buytenhek <kernel@wantstofly.org> 709L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 710S: Maintained 711 712ARM/AFEB9260 MACHINE SUPPORT 713M: Sergey Lapin <slapin@ossfans.org> 714L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 715S: Maintained 716 717ARM/AJECO 1ARM MACHINE SUPPORT 718M: Lennert Buytenhek <kernel@wantstofly.org> 719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 720S: Maintained 721 722ARM/Allwinner A1X SoC support 723M: Maxime Ripard <maxime.ripard@free-electrons.com> 724L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 725S: Maintained 726F: arch/arm/mach-sunxi/ 727 728ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES 729M: Andrew Victor <linux@maxim.org.za> 730M: Nicolas Ferre <nicolas.ferre@atmel.com> 731M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> 732L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 733W: http://maxim.org.za/at91_26.html 734W: http://www.linux4sam.org 735S: Supported 736F: arch/arm/mach-at91/ 737 738ARM/CALXEDA HIGHBANK ARCHITECTURE 739M: Rob Herring <rob.herring@calxeda.com> 740L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 741S: Maintained 742F: arch/arm/mach-highbank/ 743 744ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT 745M: Anton Vorontsov <avorontsov@mvista.com> 746S: Maintained 747F: arch/arm/mach-cns3xxx/ 748T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git 749 750ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE 751M: Alexander Shiyan <shc_work@mail.ru> 752L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 753S: Odd Fixes 754F: arch/arm/mach-clps711x/ 755 756ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE 757M: Hartley Sweeten <hsweeten@visionengravers.com> 758M: Ryan Mallon <rmallon@gmail.com> 759L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 760S: Maintained 761F: arch/arm/mach-ep93xx/ 762F: arch/arm/mach-ep93xx/include/mach/ 763 764ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT 765M: Lennert Buytenhek <kernel@wantstofly.org> 766L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 767S: Maintained 768 769ARM/CLKDEV SUPPORT 770M: Russell King <linux@arm.linux.org.uk> 771L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 772S: Maintained 773F: arch/arm/include/asm/clkdev.h 774F: drivers/clk/clkdev.c 775 776ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT 777M: Mike Rapoport <mike@compulab.co.il> 778L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 779S: Maintained 780 781ARM/CONTEC MICRO9 MACHINE SUPPORT 782M: Hubert Feurstein <hubert.feurstein@contec.at> 783S: Maintained 784F: arch/arm/mach-ep93xx/micro9.c 785 786ARM/CORGI MACHINE SUPPORT 787M: Richard Purdie <rpurdie@rpsys.net> 788S: Maintained 789 790ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE 791M: Hans Ulli Kroll <ulli.kroll@googlemail.com> 792L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 793T: git git://git.berlios.de/gemini-board 794S: Maintained 795F: arch/arm/mach-gemini/ 796 797ARM/CSR SIRFPRIMA2 MACHINE SUPPORT 798M: Barry Song <baohua.song@csr.com> 799L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 800S: Maintained 801F: arch/arm/mach-prima2/ 802F: drivers/dma/sirf-dma.c 803F: drivers/i2c/busses/i2c-sirf.c 804F: drivers/mmc/host/sdhci-sirf.c 805F: drivers/pinctrl/pinctrl-sirf.c 806F: drivers/spi/spi-sirf.c 807 808ARM/EBSA110 MACHINE SUPPORT 809M: Russell King <linux@arm.linux.org.uk> 810L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 811W: http://www.arm.linux.org.uk/ 812S: Maintained 813F: arch/arm/mach-ebsa110/ 814F: drivers/net/ethernet/amd/am79c961a.* 815 816ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) 817M: Daniel Ribeiro <drwyrm@gmail.com> 818M: Stefan Schmidt <stefan@openezx.org> 819M: Harald Welte <laforge@openezx.org> 820L: openezx-devel@lists.openezx.org (moderated for non-subscribers) 821W: http://www.openezx.org/ 822S: Maintained 823T: topgit git://git.openezx.org/openezx.git 824F: arch/arm/mach-pxa/ezx.c 825 826ARM/FARADAY FA526 PORT 827M: Hans Ulli Kroll <ulli.kroll@googlemail.com> 828L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 829S: Maintained 830T: git git://git.berlios.de/gemini-board 831F: arch/arm/mm/*-fa* 832 833ARM/FOOTBRIDGE ARCHITECTURE 834M: Russell King <linux@arm.linux.org.uk> 835L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 836W: http://www.arm.linux.org.uk/ 837S: Maintained 838F: arch/arm/include/asm/hardware/dec21285.h 839F: arch/arm/mach-footbridge/ 840 841ARM/FREESCALE IMX / MXC ARM ARCHITECTURE 842M: Sascha Hauer <kernel@pengutronix.de> 843L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 844S: Maintained 845T: git git://git.pengutronix.de/git/imx/linux-2.6.git 846F: arch/arm/mach-imx/ 847F: arch/arm/configs/imx*_defconfig 848 849ARM/FREESCALE IMX6 850M: Shawn Guo <shawn.guo@linaro.org> 851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 852S: Maintained 853T: git git://git.linaro.org/people/shawnguo/linux-2.6.git 854F: arch/arm/mach-imx/*imx6* 855 856ARM/FREESCALE MXS ARM ARCHITECTURE 857M: Shawn Guo <shawn.guo@linaro.org> 858L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 859S: Maintained 860T: git git://git.linaro.org/people/shawnguo/linux-2.6.git 861F: arch/arm/mach-mxs/ 862 863ARM/GLOMATION GESBC9312SX MACHINE SUPPORT 864M: Lennert Buytenhek <kernel@wantstofly.org> 865L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 866S: Maintained 867 868ARM/GUMSTIX MACHINE SUPPORT 869M: Steve Sakoman <sakoman@gmail.com> 870L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 871S: Maintained 872 873ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT 874M: Philipp Zabel <philipp.zabel@gmail.com> 875M: Paul Parsons <lost.distance@yahoo.com> 876L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 877S: Maintained 878F: arch/arm/mach-pxa/hx4700.c 879F: arch/arm/mach-pxa/include/mach/hx4700.h 880F: sound/soc/pxa/hx4700.c 881 882ARM/HP JORNADA 7XX MACHINE SUPPORT 883M: Kristoffer Ericson <kristoffer.ericson@gmail.com> 884W: www.jlime.com 885S: Maintained 886T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git 887F: arch/arm/mach-sa1100/jornada720.c 888F: arch/arm/mach-sa1100/include/mach/jornada720.h 889 890ARM/IGEP MACHINE SUPPORT 891M: Enric Balletbo i Serra <eballetbo@gmail.com> 892M: Javier Martinez Canillas <javier@dowhile0.org> 893L: linux-omap@vger.kernel.org 894L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 895S: Maintained 896F: arch/arm/mach-omap2/board-igep0020.c 897 898ARM/INCOME PXA270 SUPPORT 899M: Marek Vasut <marek.vasut@gmail.com> 900L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 901S: Maintained 902F: arch/arm/mach-pxa/colibri-pxa270-income.c 903 904ARM/INTEL IOP32X ARM ARCHITECTURE 905M: Lennert Buytenhek <kernel@wantstofly.org> 906M: Dan Williams <djbw@fb.com> 907L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 908S: Maintained 909 910ARM/INTEL IOP33X ARM ARCHITECTURE 911M: Dan Williams <djbw@fb.com> 912L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 913S: Maintained 914 915ARM/INTEL IOP13XX ARM ARCHITECTURE 916M: Lennert Buytenhek <kernel@wantstofly.org> 917M: Dan Williams <djbw@fb.com> 918L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 919S: Maintained 920 921ARM/INTEL IQ81342EX MACHINE SUPPORT 922M: Lennert Buytenhek <kernel@wantstofly.org> 923M: Dan Williams <djbw@fb.com> 924L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 925S: Maintained 926 927ARM/INTEL IXDP2850 MACHINE SUPPORT 928M: Lennert Buytenhek <kernel@wantstofly.org> 929L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 930S: Maintained 931 932ARM/INTEL IXP4XX ARM ARCHITECTURE 933M: Imre Kaloz <kaloz@openwrt.org> 934M: Krzysztof Halasa <khc@pm.waw.pl> 935L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 936S: Maintained 937F: arch/arm/mach-ixp4xx/ 938 939ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT 940M: Jonathan Cameron <jic23@cam.ac.uk> 941L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 942S: Maintained 943F: arch/arm/mach-pxa/stargate2.c 944F: drivers/pcmcia/pxa2xx_stargate2.c 945 946ARM/INTEL XSC3 (MANZANO) ARM CORE 947M: Lennert Buytenhek <kernel@wantstofly.org> 948M: Dan Williams <djbw@fb.com> 949L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 950S: Maintained 951 952ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT 953M: Lennert Buytenhek <kernel@wantstofly.org> 954L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 955S: Maintained 956 957ARM/LOGICPD PXA270 MACHINE SUPPORT 958M: Lennert Buytenhek <kernel@wantstofly.org> 959L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 960S: Maintained 961 962ARM/MAGICIAN MACHINE SUPPORT 963M: Philipp Zabel <philipp.zabel@gmail.com> 964S: Maintained 965 966ARM/Marvell Armada 370 and Armada XP SOC support 967M: Jason Cooper <jason@lakedaemon.net> 968M: Andrew Lunn <andrew@lunn.ch> 969M: Gregory Clement <gregory.clement@free-electrons.com> 970L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 971S: Maintained 972F: arch/arm/mach-mvebu/ 973 974ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support 975M: Jason Cooper <jason@lakedaemon.net> 976M: Andrew Lunn <andrew@lunn.ch> 977L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 978S: Maintained 979F: arch/arm/mach-dove/ 980F: arch/arm/mach-kirkwood/ 981F: arch/arm/mach-mv78xx0/ 982F: arch/arm/mach-orion5x/ 983F: arch/arm/plat-orion/ 984 985ARM/Orion SoC/Technologic Systems TS-78xx platform support 986M: Alexander Clouter <alex@digriz.org.uk> 987L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 988W: http://www.digriz.org.uk/ts78xx/kernel 989S: Maintained 990F: arch/arm/mach-orion5x/ts78xx-* 991 992ARM/MICREL KS8695 ARCHITECTURE 993M: Greg Ungerer <gerg@uclinux.org> 994L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 995F: arch/arm/mach-ks8695 996S: Odd Fixes 997 998ARM/MIOA701 MACHINE SUPPORT 999M: Robert Jarzmik <robert.jarzmik@free.fr> 1000L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1001F: arch/arm/mach-pxa/mioa701.c 1002S: Maintained 1003 1004ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT 1005M: Michael Petchkovsky <mkpetch@internode.on.net> 1006S: Maintained 1007 1008ARM/NOMADIK ARCHITECTURE 1009M: Alessandro Rubini <rubini@unipv.it> 1010M: Linus Walleij <linus.walleij@linaro.org> 1011M: STEricsson <STEricsson_nomadik_linux@list.st.com> 1012L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1013S: Maintained 1014F: arch/arm/mach-nomadik/ 1015F: arch/arm/plat-nomadik/ 1016F: drivers/i2c/busses/i2c-nomadik.c 1017T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git 1018 1019ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT 1020M: Nelson Castillo <arhuaco@freaks-unidos.net> 1021L: openmoko-kernel@lists.openmoko.org (subscribers-only) 1022W: http://wiki.openmoko.org/wiki/Neo_FreeRunner 1023S: Supported 1024 1025ARM/QUALCOMM MSM MACHINE SUPPORT 1026M: David Brown <davidb@codeaurora.org> 1027M: Daniel Walker <dwalker@fifo99.com> 1028M: Bryan Huntsman <bryanh@codeaurora.org> 1029L: linux-arm-msm@vger.kernel.org 1030F: arch/arm/mach-msm/ 1031F: drivers/video/msm/ 1032F: drivers/mmc/host/msm_sdcc.c 1033F: drivers/mmc/host/msm_sdcc.h 1034F: drivers/tty/serial/msm_serial.h 1035F: drivers/tty/serial/msm_serial.c 1036F: drivers/*/pm8???-* 1037F: drivers/ssbi/ 1038F: include/linux/mfd/pm8xxx/ 1039T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git 1040S: Maintained 1041 1042ARM/TOSA MACHINE SUPPORT 1043M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 1044M: Dirk Opfer <dirk@opfer-online.de> 1045S: Maintained 1046 1047ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT 1048M: Marek Vasut <marek.vasut@gmail.com> 1049L: linux-arm-kernel@lists.infradead.org 1050W: http://hackndev.com 1051S: Maintained 1052F: arch/arm/mach-pxa/include/mach/palmtx.h 1053F: arch/arm/mach-pxa/palmtx.c 1054F: arch/arm/mach-pxa/include/mach/palmt5.h 1055F: arch/arm/mach-pxa/palmt5.c 1056F: arch/arm/mach-pxa/include/mach/palmld.h 1057F: arch/arm/mach-pxa/palmld.c 1058F: arch/arm/mach-pxa/include/mach/palmte2.h 1059F: arch/arm/mach-pxa/palmte2.c 1060F: arch/arm/mach-pxa/include/mach/palmtc.h 1061F: arch/arm/mach-pxa/palmtc.c 1062 1063ARM/PALM TREO SUPPORT 1064M: Tomas Cech <sleep_walker@suse.cz> 1065L: linux-arm-kernel@lists.infradead.org 1066W: http://hackndev.com 1067S: Maintained 1068F: arch/arm/mach-pxa/include/mach/palmtreo.h 1069F: arch/arm/mach-pxa/palmtreo.c 1070 1071ARM/PALMZ72 SUPPORT 1072M: Sergey Lapin <slapin@ossfans.org> 1073L: linux-arm-kernel@lists.infradead.org 1074W: http://hackndev.com 1075S: Maintained 1076F: arch/arm/mach-pxa/include/mach/palmz72.h 1077F: arch/arm/mach-pxa/palmz72.c 1078 1079ARM/PLEB SUPPORT 1080M: Peter Chubb <pleb@gelato.unsw.edu.au> 1081W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB 1082S: Maintained 1083 1084ARM/PT DIGITAL BOARD PORT 1085M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> 1086L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1087W: http://www.arm.linux.org.uk/ 1088S: Maintained 1089 1090ARM/RADISYS ENP2611 MACHINE SUPPORT 1091M: Lennert Buytenhek <kernel@wantstofly.org> 1092L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1093S: Maintained 1094 1095ARM/RISCPC ARCHITECTURE 1096M: Russell King <linux@arm.linux.org.uk> 1097L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1098W: http://www.arm.linux.org.uk/ 1099S: Maintained 1100F: arch/arm/include/asm/hardware/entry-macro-iomd.S 1101F: arch/arm/include/asm/hardware/ioc.h 1102F: arch/arm/include/asm/hardware/iomd.h 1103F: arch/arm/include/asm/hardware/memc.h 1104F: arch/arm/mach-rpc/ 1105F: drivers/net/ethernet/8390/etherh.c 1106F: drivers/net/ethernet/i825xx/ether1* 1107F: drivers/net/ethernet/seeq/ether3* 1108F: drivers/scsi/arm/ 1109 1110ARM/SHARK MACHINE SUPPORT 1111M: Alexander Schulz <alex@shark-linux.de> 1112W: http://www.shark-linux.de/shark.html 1113S: Maintained 1114 1115ARM/SAMSUNG ARM ARCHITECTURES 1116M: Ben Dooks <ben-linux@fluff.org> 1117M: Kukjin Kim <kgene.kim@samsung.com> 1118L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1119L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) 1120W: http://www.fluff.org/ben/linux/ 1121S: Maintained 1122F: arch/arm/plat-samsung/ 1123F: arch/arm/plat-s3c24xx/ 1124F: arch/arm/mach-s3c24*/ 1125F: arch/arm/mach-s3c64xx/ 1126F: drivers/*/*s3c2410* 1127F: drivers/*/*/*s3c2410* 1128F: drivers/spi/spi-s3c* 1129F: sound/soc/samsung/* 1130 1131ARM/S5P EXYNOS ARM ARCHITECTURES 1132M: Kukjin Kim <kgene.kim@samsung.com> 1133L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1134L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) 1135S: Maintained 1136F: arch/arm/mach-s5p*/ 1137F: arch/arm/mach-exynos*/ 1138 1139ARM/SAMSUNG MOBILE MACHINE SUPPORT 1140M: Kyungmin Park <kyungmin.park@samsung.com> 1141L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1142S: Maintained 1143F: arch/arm/mach-s5pv210/mach-aquila.c 1144F: arch/arm/mach-s5pv210/mach-goni.c 1145F: arch/arm/mach-exynos/mach-universal_c210.c 1146F: arch/arm/mach-exynos/mach-nuri.c 1147 1148ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT 1149M: Kyungmin Park <kyungmin.park@samsung.com> 1150M: Kamil Debski <k.debski@samsung.com> 1151L: linux-arm-kernel@lists.infradead.org 1152L: linux-media@vger.kernel.org 1153S: Maintained 1154F: drivers/media/platform/s5p-g2d/ 1155 1156ARM/SAMSUNG S5P SERIES FIMC SUPPORT 1157M: Kyungmin Park <kyungmin.park@samsung.com> 1158M: Sylwester Nawrocki <s.nawrocki@samsung.com> 1159L: linux-arm-kernel@lists.infradead.org 1160L: linux-media@vger.kernel.org 1161S: Maintained 1162F: arch/arm/plat-samsung/include/plat/*fimc* 1163F: drivers/media/platform/s5p-fimc/ 1164 1165ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT 1166M: Kyungmin Park <kyungmin.park@samsung.com> 1167M: Kamil Debski <k.debski@samsung.com> 1168M: Jeongtae Park <jtp.park@samsung.com> 1169L: linux-arm-kernel@lists.infradead.org 1170L: linux-media@vger.kernel.org 1171S: Maintained 1172F: arch/arm/plat-samsung/s5p-dev-mfc.c 1173F: drivers/media/platform/s5p-mfc/ 1174 1175ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT 1176M: Kyungmin Park <kyungmin.park@samsung.com> 1177M: Tomasz Stanislawski <t.stanislaws@samsung.com> 1178L: linux-arm-kernel@lists.infradead.org 1179L: linux-media@vger.kernel.org 1180S: Maintained 1181F: drivers/media/platform/s5p-tv/ 1182 1183ARM/SHMOBILE ARM ARCHITECTURE 1184M: Simon Horman <horms@verge.net.au> 1185M: Magnus Damm <magnus.damm@gmail.com> 1186L: linux-sh@vger.kernel.org 1187W: http://oss.renesas.com 1188Q: http://patchwork.kernel.org/project/linux-sh/list/ 1189T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next 1190S: Supported 1191F: arch/arm/mach-shmobile/ 1192F: drivers/sh/ 1193 1194ARM/SOCFPGA ARCHITECTURE 1195M: Dinh Nguyen <dinguyen@altera.com> 1196S: Maintained 1197F: arch/arm/mach-socfpga/ 1198 1199ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT 1200M: Dinh Nguyen <dinguyen@altera.com> 1201S: Maintained 1202F: drivers/clk/socfpga/ 1203 1204ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT 1205M: Lennert Buytenhek <kernel@wantstofly.org> 1206L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1207S: Maintained 1208 1209ARM/TETON BGA MACHINE SUPPORT 1210M: "Mark F. Brown" <mark.brown314@gmail.com> 1211L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1212S: Maintained 1213 1214ARM/THECUS N2100 MACHINE SUPPORT 1215M: Lennert Buytenhek <kernel@wantstofly.org> 1216L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1217S: Maintained 1218 1219ARM/NUVOTON W90X900 ARM ARCHITECTURE 1220M: Wan ZongShun <mcuos.com@gmail.com> 1221L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1222W: http://www.mcuos.com 1223S: Maintained 1224F: arch/arm/mach-w90x900/ 1225F: drivers/input/keyboard/w90p910_keypad.c 1226F: drivers/input/touchscreen/w90p910_ts.c 1227F: drivers/watchdog/nuc900_wdt.c 1228F: drivers/net/ethernet/nuvoton/w90p910_ether.c 1229F: drivers/mtd/nand/nuc900_nand.c 1230F: drivers/rtc/rtc-nuc900.c 1231F: drivers/spi/spi-nuc900.c 1232F: drivers/usb/host/ehci-w90x900.c 1233F: drivers/video/nuc900fb.c 1234 1235ARM/U300 MACHINE SUPPORT 1236M: Linus Walleij <linus.walleij@linaro.org> 1237L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1238S: Supported 1239F: arch/arm/mach-u300/ 1240F: drivers/i2c/busses/i2c-stu300.c 1241F: drivers/rtc/rtc-coh901331.c 1242F: drivers/watchdog/coh901327_wdt.c 1243F: drivers/dma/coh901318* 1244F: drivers/mfd/ab3100* 1245F: drivers/rtc/rtc-ab3100.c 1246F: drivers/rtc/rtc-coh901331.c 1247T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git 1248 1249ARM/Ux500 ARM ARCHITECTURE 1250M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> 1251M: Linus Walleij <linus.walleij@linaro.org> 1252L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1253S: Maintained 1254F: arch/arm/mach-ux500/ 1255F: drivers/clocksource/clksrc-dbx500-prcmu.c 1256F: drivers/dma/ste_dma40* 1257F: drivers/hwspinlock/u8500_hsem.c 1258F: drivers/mfd/abx500* 1259F: drivers/mfd/ab8500* 1260F: drivers/mfd/dbx500* 1261F: drivers/mfd/db8500* 1262F: drivers/pinctrl/pinctrl-nomadik* 1263F: drivers/rtc/rtc-ab8500.c 1264F: drivers/rtc/rtc-pl031.c 1265T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git 1266 1267ARM/VFP SUPPORT 1268M: Russell King <linux@arm.linux.org.uk> 1269L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1270W: http://www.arm.linux.org.uk/ 1271S: Maintained 1272F: arch/arm/vfp/ 1273 1274ARM/VOIPAC PXA270 SUPPORT 1275M: Marek Vasut <marek.vasut@gmail.com> 1276L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1277S: Maintained 1278F: arch/arm/mach-pxa/vpac270.c 1279F: arch/arm/mach-pxa/include/mach/vpac270.h 1280 1281ARM/VT8500 ARM ARCHITECTURE 1282M: Tony Prisk <linux@prisktech.co.nz> 1283L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1284S: Maintained 1285F: arch/arm/mach-vt8500/ 1286F: drivers/clocksource/vt8500_timer.c 1287F: drivers/gpio/gpio-vt8500.c 1288F: drivers/mmc/host/wmt-sdmmc.c 1289F: drivers/pwm/pwm-vt8500.c 1290F: drivers/rtc/rtc-vt8500.c 1291F: drivers/tty/serial/vt8500_serial.c 1292F: drivers/usb/host/ehci-vt8500.c 1293F: drivers/usb/host/uhci-platform.c 1294F: drivers/video/vt8500lcdfb.* 1295F: drivers/video/wm8505fb* 1296F: drivers/video/wmt_ge_rops.* 1297 1298ARM/ZIPIT Z2 SUPPORT 1299M: Marek Vasut <marek.vasut@gmail.com> 1300L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1301S: Maintained 1302F: arch/arm/mach-pxa/z2.c 1303F: arch/arm/mach-pxa/include/mach/z2.h 1304 1305ARM/ZYNQ ARCHITECTURE 1306M: Michal Simek <michal.simek@xilinx.com> 1307L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1308W: http://wiki.xilinx.com 1309T: git git://git.xilinx.com/linux-xlnx.git 1310S: Supported 1311F: arch/arm/mach-zynq/ 1312 1313ARM64 PORT (AARCH64 ARCHITECTURE) 1314M: Catalin Marinas <catalin.marinas@arm.com> 1315M: Will Deacon <will.deacon@arm.com> 1316L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1317S: Maintained 1318F: arch/arm64/ 1319F: Documentation/arm64/ 1320 1321AS3645A LED FLASH CONTROLLER DRIVER 1322M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 1323L: linux-media@vger.kernel.org 1324T: git git://linuxtv.org/media_tree.git 1325S: Maintained 1326F: drivers/media/i2c/as3645a.c 1327F: include/media/as3645a.h 1328 1329ASC7621 HARDWARE MONITOR DRIVER 1330M: George Joseph <george.joseph@fairview5.com> 1331L: lm-sensors@lm-sensors.org 1332S: Maintained 1333F: Documentation/hwmon/asc7621 1334F: drivers/hwmon/asc7621.c 1335 1336ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS 1337M: Corentin Chary <corentin.chary@gmail.com> 1338L: acpi4asus-user@lists.sourceforge.net 1339L: platform-driver-x86@vger.kernel.org 1340W: http://acpi4asus.sf.net 1341S: Maintained 1342F: drivers/platform/x86/asus*.c 1343F: drivers/platform/x86/eeepc*.c 1344 1345ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API 1346M: Dan Williams <djbw@fb.com> 1347W: http://sourceforge.net/projects/xscaleiop 1348S: Maintained 1349F: Documentation/crypto/async-tx-api.txt 1350F: crypto/async_tx/ 1351F: drivers/dma/ 1352F: include/linux/dmaengine.h 1353F: include/linux/async_tx.h 1354 1355AT24 EEPROM DRIVER 1356M: Wolfram Sang <wsa@the-dreams.de> 1357L: linux-i2c@vger.kernel.org 1358S: Maintained 1359F: drivers/misc/eeprom/at24.c 1360F: include/linux/i2c/at24.h 1361 1362ATA OVER ETHERNET (AOE) DRIVER 1363M: "Ed L. Cashin" <ecashin@coraid.com> 1364W: http://support.coraid.com/support/linux 1365S: Supported 1366F: Documentation/aoe/ 1367F: drivers/block/aoe/ 1368 1369ATHEROS ATH GENERIC UTILITIES 1370M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> 1371L: linux-wireless@vger.kernel.org 1372S: Supported 1373F: drivers/net/wireless/ath/* 1374 1375ATHEROS ATH5K WIRELESS DRIVER 1376M: Jiri Slaby <jirislaby@gmail.com> 1377M: Nick Kossifidis <mickflemm@gmail.com> 1378M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> 1379L: linux-wireless@vger.kernel.org 1380L: ath5k-devel@lists.ath5k.org 1381W: http://wireless.kernel.org/en/users/Drivers/ath5k 1382S: Maintained 1383F: drivers/net/wireless/ath/ath5k/ 1384 1385ATHEROS ATH6KL WIRELESS DRIVER 1386M: Kalle Valo <kvalo@qca.qualcomm.com> 1387L: linux-wireless@vger.kernel.org 1388W: http://wireless.kernel.org/en/users/Drivers/ath6kl 1389T: git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git 1390S: Supported 1391F: drivers/net/wireless/ath/ath6kl/ 1392 1393ATHEROS ATH9K WIRELESS DRIVER 1394M: "Luis R. Rodriguez" <mcgrof@qca.qualcomm.com> 1395M: Jouni Malinen <jouni@qca.qualcomm.com> 1396M: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> 1397M: Senthil Balasubramanian <senthilb@qca.qualcomm.com> 1398L: linux-wireless@vger.kernel.org 1399L: ath9k-devel@lists.ath9k.org 1400W: http://wireless.kernel.org/en/users/Drivers/ath9k 1401S: Supported 1402F: drivers/net/wireless/ath/ath9k/ 1403 1404WILOCITY WIL6210 WIRELESS DRIVER 1405M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com> 1406L: linux-wireless@vger.kernel.org 1407L: wil6210@qca.qualcomm.com 1408S: Supported 1409W: http://wireless.kernel.org/en/users/Drivers/wil6210 1410F: drivers/net/wireless/ath/wil6210/ 1411 1412CARL9170 LINUX COMMUNITY WIRELESS DRIVER 1413M: Christian Lamparter <chunkeey@googlemail.com> 1414L: linux-wireless@vger.kernel.org 1415W: http://wireless.kernel.org/en/users/Drivers/carl9170 1416S: Maintained 1417F: drivers/net/wireless/ath/carl9170/ 1418 1419ATK0110 HWMON DRIVER 1420M: Luca Tettamanti <kronos.it@gmail.com> 1421L: lm-sensors@lm-sensors.org 1422S: Maintained 1423F: drivers/hwmon/asus_atk0110.c 1424 1425ATI_REMOTE2 DRIVER 1426M: Ville Syrjala <syrjala@sci.fi> 1427S: Maintained 1428F: drivers/input/misc/ati_remote2.c 1429 1430ATLX ETHERNET DRIVERS 1431M: Jay Cliburn <jcliburn@gmail.com> 1432M: Chris Snook <chris.snook@gmail.com> 1433L: netdev@vger.kernel.org 1434W: http://sourceforge.net/projects/atl1 1435W: http://atl1.sourceforge.net 1436S: Maintained 1437F: drivers/net/ethernet/atheros/ 1438 1439ATM 1440M: Chas Williams <chas@cmf.nrl.navy.mil> 1441L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) 1442L: netdev@vger.kernel.org 1443W: http://linux-atm.sourceforge.net 1444S: Maintained 1445F: drivers/atm/ 1446F: include/linux/atm* 1447F: include/uapi/linux/atm* 1448 1449ATMEL AT91 / AT32 MCI DRIVER 1450M: Ludovic Desroches <ludovic.desroches@atmel.com> 1451S: Maintained 1452F: drivers/mmc/host/atmel-mci.c 1453F: drivers/mmc/host/atmel-mci-regs.h 1454 1455ATMEL AT91 / AT32 SERIAL DRIVER 1456M: Nicolas Ferre <nicolas.ferre@atmel.com> 1457S: Supported 1458F: drivers/tty/serial/atmel_serial.c 1459 1460ATMEL DMA DRIVER 1461M: Nicolas Ferre <nicolas.ferre@atmel.com> 1462L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1463S: Supported 1464F: drivers/dma/at_hdmac.c 1465F: drivers/dma/at_hdmac_regs.h 1466F: include/linux/platform_data/dma-atmel.h 1467 1468ATMEL I2C DRIVER 1469M: Ludovic Desroches <ludovic.desroches@atmel.com> 1470L: linux-i2c@vger.kernel.org 1471S: Supported 1472F: drivers/i2c/busses/i2c-at91.c 1473 1474ATMEL ISI DRIVER 1475M: Josh Wu <josh.wu@atmel.com> 1476L: linux-media@vger.kernel.org 1477S: Supported 1478F: drivers/media/platform/soc_camera/atmel-isi.c 1479F: include/media/atmel-isi.h 1480 1481ATMEL LCDFB DRIVER 1482M: Nicolas Ferre <nicolas.ferre@atmel.com> 1483L: linux-fbdev@vger.kernel.org 1484S: Maintained 1485F: drivers/video/atmel_lcdfb.c 1486F: include/video/atmel_lcdc.h 1487 1488ATMEL MACB ETHERNET DRIVER 1489M: Nicolas Ferre <nicolas.ferre@atmel.com> 1490S: Supported 1491F: drivers/net/ethernet/cadence/ 1492 1493ATMEL SPI DRIVER 1494M: Nicolas Ferre <nicolas.ferre@atmel.com> 1495S: Supported 1496F: drivers/spi/spi-atmel.* 1497 1498ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS 1499M: Nicolas Ferre <nicolas.ferre@atmel.com> 1500L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1501S: Supported 1502F: drivers/misc/atmel_tclib.c 1503F: drivers/clocksource/tcb_clksrc.c 1504 1505ATMEL TSADCC DRIVER 1506M: Josh Wu <josh.wu@atmel.com> 1507L: linux-input@vger.kernel.org 1508S: Supported 1509F: drivers/input/touchscreen/atmel_tsadcc.c 1510 1511ATMEL USBA UDC DRIVER 1512M: Nicolas Ferre <nicolas.ferre@atmel.com> 1513L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1514S: Supported 1515F: drivers/usb/gadget/atmel_usba_udc.* 1516 1517ATMEL WIRELESS DRIVER 1518M: Simon Kelley <simon@thekelleys.org.uk> 1519L: linux-wireless@vger.kernel.org 1520W: http://www.thekelleys.org.uk/atmel 1521W: http://atmelwlandriver.sourceforge.net/ 1522S: Maintained 1523F: drivers/net/wireless/atmel* 1524 1525AUDIT SUBSYSTEM 1526M: Al Viro <viro@zeniv.linux.org.uk> 1527M: Eric Paris <eparis@redhat.com> 1528L: linux-audit@redhat.com (subscribers-only) 1529W: http://people.redhat.com/sgrubb/audit/ 1530T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git 1531S: Maintained 1532F: include/linux/audit.h 1533F: include/uapi/linux/audit.h 1534F: kernel/audit* 1535 1536AUXILIARY DISPLAY DRIVERS 1537M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1538W: http://miguelojeda.es/auxdisplay.htm 1539W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1540S: Maintained 1541F: drivers/auxdisplay/ 1542F: include/linux/cfag12864b.h 1543 1544AVR32 ARCHITECTURE 1545M: Haavard Skinnemoen <hskinnemoen@gmail.com> 1546M: Hans-Christian Egtvedt <egtvedt@samfundet.no> 1547W: http://www.atmel.com/products/AVR32/ 1548W: http://mirror.egtvedt.no/avr32linux.org/ 1549W: http://avrfreaks.net/ 1550S: Maintained 1551F: arch/avr32/ 1552 1553AVR32/AT32AP MACHINE SUPPORT 1554M: Haavard Skinnemoen <hskinnemoen@gmail.com> 1555M: Hans-Christian Egtvedt <egtvedt@samfundet.no> 1556S: Maintained 1557F: arch/avr32/mach-at32ap/ 1558 1559AX.25 NETWORK LAYER 1560M: Ralf Baechle <ralf@linux-mips.org> 1561L: linux-hams@vger.kernel.org 1562W: http://www.linux-ax25.org/ 1563S: Maintained 1564F: include/uapi/linux/ax25.h 1565F: include/net/ax25.h 1566F: net/ax25/ 1567 1568AZ6007 DVB DRIVER 1569M: Mauro Carvalho Chehab <mchehab@redhat.com> 1570L: linux-media@vger.kernel.org 1571W: http://linuxtv.org 1572T: git git://linuxtv.org/media_tree.git 1573S: Maintained 1574F: drivers/media/usb/dvb-usb-v2/az6007.c 1575 1576AZTECH FM RADIO RECEIVER DRIVER 1577M: Hans Verkuil <hverkuil@xs4all.nl> 1578L: linux-media@vger.kernel.org 1579T: git git://linuxtv.org/media_tree.git 1580W: http://linuxtv.org 1581S: Maintained 1582F: drivers/media/radio/radio-aztech* 1583 1584B43 WIRELESS DRIVER 1585M: Stefano Brivio <stefano.brivio@polimi.it> 1586L: linux-wireless@vger.kernel.org 1587L: b43-dev@lists.infradead.org 1588W: http://wireless.kernel.org/en/users/Drivers/b43 1589S: Maintained 1590F: drivers/net/wireless/b43/ 1591 1592B43LEGACY WIRELESS DRIVER 1593M: Larry Finger <Larry.Finger@lwfinger.net> 1594M: Stefano Brivio <stefano.brivio@polimi.it> 1595L: linux-wireless@vger.kernel.org 1596L: b43-dev@lists.infradead.org 1597W: http://wireless.kernel.org/en/users/Drivers/b43 1598S: Maintained 1599F: drivers/net/wireless/b43legacy/ 1600 1601BACKLIGHT CLASS/SUBSYSTEM 1602M: Richard Purdie <rpurdie@rpsys.net> 1603S: Maintained 1604F: drivers/video/backlight/ 1605F: include/linux/backlight.h 1606 1607BATMAN ADVANCED 1608M: Marek Lindner <lindner_marek@yahoo.de> 1609M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> 1610M: Antonio Quartulli <ordex@autistici.org> 1611L: b.a.t.m.a.n@lists.open-mesh.org 1612W: http://www.open-mesh.org/ 1613S: Maintained 1614F: net/batman-adv/ 1615 1616BAYCOM/HDLCDRV DRIVERS FOR AX.25 1617M: Thomas Sailer <t.sailer@alumni.ethz.ch> 1618L: linux-hams@vger.kernel.org 1619W: http://www.baycom.org/~tom/ham/ham.html 1620S: Maintained 1621F: drivers/net/hamradio/baycom* 1622 1623BCACHE (BLOCK LAYER CACHE) 1624M: Kent Overstreet <koverstreet@google.com> 1625L: linux-bcache@vger.kernel.org 1626W: http://bcache.evilpiepirate.org 1627S: Maintained: 1628F: drivers/md/bcache/ 1629 1630BEFS FILE SYSTEM 1631S: Orphan 1632F: Documentation/filesystems/befs.txt 1633F: fs/befs/ 1634 1635BFS FILE SYSTEM 1636M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> 1637S: Maintained 1638F: Documentation/filesystems/bfs.txt 1639F: fs/bfs/ 1640F: include/uapi/linux/bfs_fs.h 1641 1642BLACKFIN ARCHITECTURE 1643M: Mike Frysinger <vapier@gentoo.org> 1644L: uclinux-dist-devel@blackfin.uclinux.org 1645W: http://blackfin.uclinux.org 1646S: Supported 1647F: arch/blackfin/ 1648 1649BLACKFIN EMAC DRIVER 1650L: uclinux-dist-devel@blackfin.uclinux.org 1651W: http://blackfin.uclinux.org 1652S: Supported 1653F: drivers/net/ethernet/adi/ 1654 1655BLACKFIN RTC DRIVER 1656M: Mike Frysinger <vapier.adi@gmail.com> 1657L: uclinux-dist-devel@blackfin.uclinux.org 1658W: http://blackfin.uclinux.org 1659S: Supported 1660F: drivers/rtc/rtc-bfin.c 1661 1662BLACKFIN SDH DRIVER 1663M: Sonic Zhang <sonic.zhang@analog.com> 1664L: uclinux-dist-devel@blackfin.uclinux.org 1665W: http://blackfin.uclinux.org 1666S: Supported 1667F: drivers/mmc/host/bfin_sdh.c 1668 1669BLACKFIN SERIAL DRIVER 1670M: Sonic Zhang <sonic.zhang@analog.com> 1671L: uclinux-dist-devel@blackfin.uclinux.org 1672W: http://blackfin.uclinux.org 1673S: Supported 1674F: drivers/tty/serial/bfin_uart.c 1675 1676BLACKFIN WATCHDOG DRIVER 1677M: Mike Frysinger <vapier.adi@gmail.com> 1678L: uclinux-dist-devel@blackfin.uclinux.org 1679W: http://blackfin.uclinux.org 1680S: Supported 1681F: drivers/watchdog/bfin_wdt.c 1682 1683BLACKFIN I2C TWI DRIVER 1684M: Sonic Zhang <sonic.zhang@analog.com> 1685L: uclinux-dist-devel@blackfin.uclinux.org 1686W: http://blackfin.uclinux.org/ 1687S: Supported 1688F: drivers/i2c/busses/i2c-bfin-twi.c 1689 1690BLACKFIN MEDIA DRIVER 1691M: Scott Jiang <scott.jiang.linux@gmail.com> 1692L: uclinux-dist-devel@blackfin.uclinux.org 1693W: http://blackfin.uclinux.org/ 1694S: Supported 1695F: drivers/media/platform/blackfin/ 1696F: drivers/media/i2c/adv7183* 1697F: drivers/media/i2c/vs6624* 1698 1699BLINKM RGB LED DRIVER 1700M: Jan-Simon Moeller <jansimon.moeller@gmx.de> 1701S: Maintained 1702F: drivers/leds/leds-blinkm.c 1703 1704BLOCK LAYER 1705M: Jens Axboe <axboe@kernel.dk> 1706T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git 1707S: Maintained 1708F: block/ 1709 1710BLOCK2MTD DRIVER 1711M: Joern Engel <joern@lazybastard.org> 1712L: linux-mtd@lists.infradead.org 1713S: Maintained 1714F: drivers/mtd/devices/block2mtd.c 1715 1716BLUETOOTH DRIVERS 1717M: Marcel Holtmann <marcel@holtmann.org> 1718M: Gustavo Padovan <gustavo@padovan.org> 1719M: Johan Hedberg <johan.hedberg@gmail.com> 1720L: linux-bluetooth@vger.kernel.org 1721W: http://www.bluez.org/ 1722T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git 1723T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git 1724S: Maintained 1725F: drivers/bluetooth/ 1726 1727BLUETOOTH SUBSYSTEM 1728M: Marcel Holtmann <marcel@holtmann.org> 1729M: Gustavo Padovan <gustavo@padovan.org> 1730M: Johan Hedberg <johan.hedberg@gmail.com> 1731L: linux-bluetooth@vger.kernel.org 1732W: http://www.bluez.org/ 1733T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git 1734T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git 1735S: Maintained 1736F: net/bluetooth/ 1737F: include/net/bluetooth/ 1738 1739BONDING DRIVER 1740M: Jay Vosburgh <fubar@us.ibm.com> 1741M: Andy Gospodarek <andy@greyhouse.net> 1742L: netdev@vger.kernel.org 1743W: http://sourceforge.net/projects/bonding/ 1744S: Supported 1745F: drivers/net/bonding/ 1746F: include/uapi/linux/if_bonding.h 1747 1748BROADCOM B44 10/100 ETHERNET DRIVER 1749M: Gary Zambrano <zambrano@broadcom.com> 1750L: netdev@vger.kernel.org 1751S: Supported 1752F: drivers/net/ethernet/broadcom/b44.* 1753 1754BROADCOM BNX2 GIGABIT ETHERNET DRIVER 1755M: Michael Chan <mchan@broadcom.com> 1756L: netdev@vger.kernel.org 1757S: Supported 1758F: drivers/net/ethernet/broadcom/bnx2.* 1759F: drivers/net/ethernet/broadcom/bnx2_* 1760 1761BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER 1762M: Eilon Greenstein <eilong@broadcom.com> 1763L: netdev@vger.kernel.org 1764S: Supported 1765F: drivers/net/ethernet/broadcom/bnx2x/ 1766 1767BROADCOM BCM2835 ARM ARCHICTURE 1768M: Stephen Warren <swarren@wwwdotorg.org> 1769L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers) 1770T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git 1771S: Maintained 1772F: arch/arm/mach-bcm2835/ 1773F: arch/arm/boot/dts/bcm2835* 1774F: arch/arm/configs/bcm2835_defconfig 1775F: drivers/*/*bcm2835* 1776 1777BROADCOM TG3 GIGABIT ETHERNET DRIVER 1778M: Nithin Nayak Sujir <nsujir@broadcom.com> 1779M: Michael Chan <mchan@broadcom.com> 1780L: netdev@vger.kernel.org 1781S: Supported 1782F: drivers/net/ethernet/broadcom/tg3.* 1783 1784BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER 1785M: Brett Rudley <brudley@broadcom.com> 1786M: Arend van Spriel <arend@broadcom.com> 1787M: Franky (Zhenhui) Lin <frankyl@broadcom.com> 1788M: Hante Meuleman <meuleman@broadcom.com> 1789L: linux-wireless@vger.kernel.org 1790L: brcm80211-dev-list@broadcom.com 1791S: Supported 1792F: drivers/net/wireless/brcm80211/ 1793 1794BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER 1795M: Bhanu Prakash Gollapudi <bprakash@broadcom.com> 1796L: linux-scsi@vger.kernel.org 1797S: Supported 1798F: drivers/scsi/bnx2fc/ 1799 1800BROADCOM SPECIFIC AMBA DRIVER (BCMA) 1801M: Rafał Miłecki <zajec5@gmail.com> 1802L: linux-wireless@vger.kernel.org 1803S: Maintained 1804F: drivers/bcma/ 1805F: include/linux/bcma/ 1806 1807BROCADE BFA FC SCSI DRIVER 1808M: Anil Gurumurthy <agurumur@brocade.com> 1809M: Vijaya Mohan Guvva <vmohan@brocade.com> 1810L: linux-scsi@vger.kernel.org 1811S: Supported 1812F: drivers/scsi/bfa/ 1813 1814BROCADE BNA 10 GIGABIT ETHERNET DRIVER 1815M: Rasesh Mody <rmody@brocade.com> 1816L: netdev@vger.kernel.org 1817S: Supported 1818F: drivers/net/ethernet/brocade/bna/ 1819 1820BSG (block layer generic sg v4 driver) 1821M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> 1822L: linux-scsi@vger.kernel.org 1823S: Supported 1824F: block/bsg.c 1825F: include/linux/bsg.h 1826F: include/uapi/linux/bsg.h 1827 1828BT87X AUDIO DRIVER 1829M: Clemens Ladisch <clemens@ladisch.de> 1830L: alsa-devel@alsa-project.org (moderated for non-subscribers) 1831T: git git://git.alsa-project.org/alsa-kernel.git 1832S: Maintained 1833F: Documentation/sound/alsa/Bt87x.txt 1834F: sound/pci/bt87x.c 1835 1836BT8XXGPIO DRIVER 1837M: Michael Buesch <m@bues.ch> 1838W: http://bu3sch.de/btgpio.php 1839S: Maintained 1840F: drivers/gpio/gpio-bt8xx.c 1841 1842BTRFS FILE SYSTEM 1843M: Chris Mason <chris.mason@fusionio.com> 1844L: linux-btrfs@vger.kernel.org 1845W: http://btrfs.wiki.kernel.org/ 1846Q: http://patchwork.kernel.org/project/linux-btrfs/list/ 1847T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git 1848S: Maintained 1849F: Documentation/filesystems/btrfs.txt 1850F: fs/btrfs/ 1851 1852BTTV VIDEO4LINUX DRIVER 1853M: Mauro Carvalho Chehab <mchehab@redhat.com> 1854L: linux-media@vger.kernel.org 1855W: http://linuxtv.org 1856T: git git://linuxtv.org/media_tree.git 1857S: Odd fixes 1858F: Documentation/video4linux/bttv/ 1859F: drivers/media/pci/bt8xx/bttv* 1860 1861C-MEDIA CMI8788 DRIVER 1862M: Clemens Ladisch <clemens@ladisch.de> 1863L: alsa-devel@alsa-project.org (moderated for non-subscribers) 1864T: git git://git.alsa-project.org/alsa-kernel.git 1865S: Maintained 1866F: sound/pci/oxygen/ 1867 1868C6X ARCHITECTURE 1869M: Mark Salter <msalter@redhat.com> 1870M: Aurelien Jacquiot <a-jacquiot@ti.com> 1871L: linux-c6x-dev@linux-c6x.org 1872W: http://www.linux-c6x.org/wiki/index.php/Main_Page 1873S: Maintained 1874F: arch/c6x/ 1875 1876CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS 1877M: David Howells <dhowells@redhat.com> 1878L: linux-cachefs@redhat.com 1879S: Supported 1880F: Documentation/filesystems/caching/cachefiles.txt 1881F: fs/cachefiles/ 1882 1883CADET FM/AM RADIO RECEIVER DRIVER 1884M: Hans Verkuil <hverkuil@xs4all.nl> 1885L: linux-media@vger.kernel.org 1886T: git git://linuxtv.org/media_tree.git 1887W: http://linuxtv.org 1888S: Maintained 1889F: drivers/media/radio/radio-cadet* 1890 1891CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER 1892M: Jonathan Corbet <corbet@lwn.net> 1893L: linux-media@vger.kernel.org 1894T: git git://linuxtv.org/media_tree.git 1895S: Maintained 1896F: Documentation/video4linux/cafe_ccic 1897F: drivers/media/platform/marvell-ccic/ 1898 1899CAIF NETWORK LAYER 1900M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> 1901L: netdev@vger.kernel.org 1902S: Supported 1903F: Documentation/networking/caif/ 1904F: drivers/net/caif/ 1905F: include/uapi/linux/caif/ 1906F: include/net/caif/ 1907F: net/caif/ 1908 1909CALGARY x86-64 IOMMU 1910M: Muli Ben-Yehuda <muli@il.ibm.com> 1911M: "Jon D. Mason" <jdmason@kudzu.us> 1912L: discuss@x86-64.org 1913S: Maintained 1914F: arch/x86/kernel/pci-calgary_64.c 1915F: arch/x86/kernel/tce_64.c 1916F: arch/x86/include/asm/calgary.h 1917F: arch/x86/include/asm/tce.h 1918 1919CAN NETWORK LAYER 1920M: Oliver Hartkopp <socketcan@hartkopp.net> 1921L: linux-can@vger.kernel.org 1922W: http://gitorious.org/linux-can 1923T: git git://gitorious.org/linux-can/linux-can-next.git 1924S: Maintained 1925F: net/can/ 1926F: include/linux/can/core.h 1927F: include/uapi/linux/can.h 1928F: include/uapi/linux/can/bcm.h 1929F: include/uapi/linux/can/raw.h 1930F: include/uapi/linux/can/gw.h 1931 1932CAN NETWORK DRIVERS 1933M: Wolfgang Grandegger <wg@grandegger.com> 1934M: Marc Kleine-Budde <mkl@pengutronix.de> 1935L: linux-can@vger.kernel.org 1936W: http://gitorious.org/linux-can 1937T: git git://gitorious.org/linux-can/linux-can-next.git 1938S: Maintained 1939F: drivers/net/can/ 1940F: include/linux/can/dev.h 1941F: include/linux/can/platform/ 1942F: include/uapi/linux/can/error.h 1943F: include/uapi/linux/can/netlink.h 1944 1945CAPABILITIES 1946M: Serge Hallyn <serge.hallyn@canonical.com> 1947L: linux-security-module@vger.kernel.org 1948S: Supported 1949F: include/linux/capability.h 1950F: include/uapi/linux/capability.h 1951F: security/capability.c 1952F: security/commoncap.c 1953F: kernel/capability.c 1954 1955CELL BROADBAND ENGINE ARCHITECTURE 1956M: Arnd Bergmann <arnd@arndb.de> 1957L: linuxppc-dev@lists.ozlabs.org 1958L: cbe-oss-dev@lists.ozlabs.org 1959W: http://www.ibm.com/developerworks/power/cell/ 1960S: Supported 1961F: arch/powerpc/include/asm/cell*.h 1962F: arch/powerpc/include/asm/spu*.h 1963F: arch/powerpc/include/uapi/asm/spu*.h 1964F: arch/powerpc/oprofile/*cell* 1965F: arch/powerpc/platforms/cell/ 1966 1967CEPH DISTRIBUTED FILE SYSTEM CLIENT 1968M: Sage Weil <sage@inktank.com> 1969L: ceph-devel@vger.kernel.org 1970W: http://ceph.com/ 1971T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git 1972S: Supported 1973F: Documentation/filesystems/ceph.txt 1974F: fs/ceph 1975F: net/ceph 1976F: include/linux/ceph 1977F: include/linux/crush 1978 1979CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: 1980L: linux-usb@vger.kernel.org 1981S: Orphan 1982F: Documentation/usb/WUSB-Design-overview.txt 1983F: Documentation/usb/wusb-cbaf 1984F: drivers/usb/host/hwa-hc.c 1985F: drivers/usb/host/whci/ 1986F: drivers/usb/wusbcore/ 1987F: include/linux/usb/wusb* 1988 1989CFAG12864B LCD DRIVER 1990M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1991W: http://miguelojeda.es/auxdisplay.htm 1992W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1993S: Maintained 1994F: drivers/auxdisplay/cfag12864b.c 1995F: include/linux/cfag12864b.h 1996 1997CFAG12864BFB LCD FRAMEBUFFER DRIVER 1998M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1999W: http://miguelojeda.es/auxdisplay.htm 2000W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 2001S: Maintained 2002F: drivers/auxdisplay/cfag12864bfb.c 2003F: include/linux/cfag12864b.h 2004 2005CFG80211 and NL80211 2006M: Johannes Berg <johannes@sipsolutions.net> 2007L: linux-wireless@vger.kernel.org 2008W: http://wireless.kernel.org/ 2009T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git 2010T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git 2011S: Maintained 2012F: include/uapi/linux/nl80211.h 2013F: include/net/cfg80211.h 2014F: net/wireless/* 2015X: net/wireless/wext* 2016 2017CHAR and MISC DRIVERS 2018M: Arnd Bergmann <arnd@arndb.de> 2019M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2020T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git 2021S: Supported 2022F: drivers/char/* 2023F: drivers/misc/* 2024 2025CHECKPATCH 2026M: Andy Whitcroft <apw@canonical.com> 2027M: Joe Perches <joe@perches.com> 2028S: Maintained 2029F: scripts/checkpatch.pl 2030 2031CHINESE DOCUMENTATION 2032M: Harry Wei <harryxiyou@gmail.com> 2033L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only) 2034L: linux-kernel@zh-kernel.org (moderated for non-subscribers) 2035S: Maintained 2036F: Documentation/zh_CN/ 2037 2038CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER 2039M: Alexander Shishkin <alexander.shishkin@linux.intel.com> 2040L: linux-usb@vger.kernel.org 2041S: Maintained 2042F: drivers/usb/chipidea/ 2043 2044CISCO VIC ETHERNET NIC DRIVER 2045M: Christian Benvenuti <benve@cisco.com> 2046M: Roopa Prabhu <roprabhu@cisco.com> 2047M: Neel Patel <neepatel@cisco.com> 2048M: Nishank Trivedi <nistrive@cisco.com> 2049S: Supported 2050F: drivers/net/ethernet/cisco/enic/ 2051 2052CIRRUS LOGIC EP93XX ETHERNET DRIVER 2053M: Hartley Sweeten <hsweeten@visionengravers.com> 2054L: netdev@vger.kernel.org 2055S: Maintained 2056F: drivers/net/ethernet/cirrus/ep93xx_eth.c 2057 2058CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER 2059M: Lennert Buytenhek <kernel@wantstofly.org> 2060L: linux-usb@vger.kernel.org 2061S: Maintained 2062F: drivers/usb/host/ohci-ep93xx.c 2063 2064CIRRUS LOGIC CS4270 SOUND DRIVER 2065M: Timur Tabi <timur@tabi.org> 2066L: alsa-devel@alsa-project.org (moderated for non-subscribers) 2067S: Odd Fixes 2068F: sound/soc/codecs/cs4270* 2069 2070CLEANCACHE API 2071M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 2072L: linux-kernel@vger.kernel.org 2073S: Maintained 2074F: mm/cleancache.c 2075F: include/linux/cleancache.h 2076 2077CLK API 2078M: Russell King <linux@arm.linux.org.uk> 2079S: Maintained 2080F: include/linux/clk.h 2081 2082CISCO FCOE HBA DRIVER 2083M: Hiral Patel <hiralpat@cisco.com> 2084M: Suma Ramars <sramars@cisco.com> 2085M: Brian Uchino <buchino@cisco.com> 2086L: linux-scsi@vger.kernel.org 2087S: Supported 2088F: drivers/scsi/fnic/ 2089 2090CMPC ACPI DRIVER 2091M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> 2092M: Daniel Oliveira Nascimento <don@syst.com.br> 2093L: platform-driver-x86@vger.kernel.org 2094S: Supported 2095F: drivers/platform/x86/classmate-laptop.c 2096 2097COCCINELLE/Semantic Patches (SmPL) 2098M: Julia Lawall <Julia.Lawall@lip6.fr> 2099M: Gilles Muller <Gilles.Muller@lip6.fr> 2100M: Nicolas Palix <nicolas.palix@imag.fr> 2101L: cocci@systeme.lip6.fr (moderated for non-subscribers) 2102W: http://coccinelle.lip6.fr/ 2103S: Supported 2104F: scripts/coccinelle/ 2105F: scripts/coccicheck 2106 2107CODA FILE SYSTEM 2108M: Jan Harkes <jaharkes@cs.cmu.edu> 2109M: coda@cs.cmu.edu 2110L: codalist@coda.cs.cmu.edu 2111W: http://www.coda.cs.cmu.edu/ 2112S: Maintained 2113F: Documentation/filesystems/coda.txt 2114F: fs/coda/ 2115F: include/linux/coda*.h 2116F: include/uapi/linux/coda*.h 2117 2118COMMON CLK FRAMEWORK 2119M: Mike Turquette <mturquette@linaro.org> 2120L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV) 2121T: git git://git.linaro.org/people/mturquette/linux.git 2122S: Maintained 2123F: drivers/clk/clk.c 2124F: drivers/clk/clk-* 2125F: include/linux/clk-pr* 2126 2127COMMON INTERNET FILE SYSTEM (CIFS) 2128M: Steve French <sfrench@samba.org> 2129L: linux-cifs@vger.kernel.org 2130L: samba-technical@lists.samba.org (moderated for non-subscribers) 2131W: http://linux-cifs.samba.org/ 2132Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ 2133T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git 2134S: Supported 2135F: Documentation/filesystems/cifs.txt 2136F: fs/cifs/ 2137 2138COMPACTPCI HOTPLUG CORE 2139M: Scott Murray <scott@spiteful.org> 2140L: linux-pci@vger.kernel.org 2141S: Maintained 2142F: drivers/pci/hotplug/cpci_hotplug* 2143 2144COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER 2145M: Scott Murray <scott@spiteful.org> 2146L: linux-pci@vger.kernel.org 2147S: Maintained 2148F: drivers/pci/hotplug/cpcihp_zt5550.* 2149 2150COMPACTPCI HOTPLUG GENERIC DRIVER 2151M: Scott Murray <scott@spiteful.org> 2152L: linux-pci@vger.kernel.org 2153S: Maintained 2154F: drivers/pci/hotplug/cpcihp_generic.c 2155 2156COMPAL LAPTOP SUPPORT 2157M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> 2158L: platform-driver-x86@vger.kernel.org 2159S: Maintained 2160F: drivers/platform/x86/compal-laptop.c 2161 2162CONEXANT ACCESSRUNNER USB DRIVER 2163M: Simon Arlott <cxacru@fire.lp0.eu> 2164L: accessrunner-general@lists.sourceforge.net 2165W: http://accessrunner.sourceforge.net/ 2166S: Maintained 2167F: drivers/usb/atm/cxacru.c 2168 2169CONFIGFS 2170M: Joel Becker <jlbec@evilplan.org> 2171T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git 2172S: Supported 2173F: fs/configfs/ 2174F: include/linux/configfs.h 2175 2176CONNECTOR 2177M: Evgeniy Polyakov <zbr@ioremap.net> 2178L: netdev@vger.kernel.org 2179S: Maintained 2180F: drivers/connector/ 2181 2182CONTROL GROUPS (CGROUPS) 2183M: Tejun Heo <tj@kernel.org> 2184M: Li Zefan <lizefan@huawei.com> 2185L: containers@lists.linux-foundation.org 2186L: cgroups@vger.kernel.org 2187T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git 2188S: Maintained 2189F: include/linux/cgroup* 2190F: kernel/cgroup* 2191F: mm/*cgroup* 2192 2193CORETEMP HARDWARE MONITORING DRIVER 2194M: Fenghua Yu <fenghua.yu@intel.com> 2195L: lm-sensors@lm-sensors.org 2196S: Maintained 2197F: Documentation/hwmon/coretemp 2198F: drivers/hwmon/coretemp.c 2199 2200COSA/SRP SYNC SERIAL DRIVER 2201M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> 2202W: http://www.fi.muni.cz/~kas/cosa/ 2203S: Maintained 2204F: drivers/net/wan/cosa* 2205 2206CPMAC ETHERNET DRIVER 2207M: Florian Fainelli <florian@openwrt.org> 2208L: netdev@vger.kernel.org 2209S: Maintained 2210F: drivers/net/ethernet/ti/cpmac.c 2211 2212CPU FREQUENCY DRIVERS 2213M: Rafael J. Wysocki <rjw@sisk.pl> 2214M: Viresh Kumar <viresh.kumar@linaro.org> 2215L: cpufreq@vger.kernel.org 2216L: linux-pm@vger.kernel.org 2217S: Maintained 2218T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git 2219F: drivers/cpufreq/ 2220F: include/linux/cpufreq.h 2221 2222CPU FREQUENCY DRIVERS - ARM BIG LITTLE 2223M: Viresh Kumar <viresh.kumar@linaro.org> 2224M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com> 2225L: cpufreq@vger.kernel.org 2226L: linux-pm@vger.kernel.org 2227W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php 2228S: Maintained 2229F: drivers/cpufreq/arm_big_little.h 2230F: drivers/cpufreq/arm_big_little.c 2231F: drivers/cpufreq/arm_big_little_dt.c 2232 2233CPUIDLE DRIVERS 2234M: Rafael J. Wysocki <rjw@sisk.pl> 2235M: Daniel Lezcano <daniel.lezcano@linaro.org> 2236L: linux-pm@vger.kernel.org 2237S: Maintained 2238T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git 2239F: drivers/cpuidle/* 2240F: include/linux/cpuidle.h 2241 2242CPUID/MSR DRIVER 2243M: "H. Peter Anvin" <hpa@zytor.com> 2244S: Maintained 2245F: arch/x86/kernel/cpuid.c 2246F: arch/x86/kernel/msr.c 2247 2248CPU POWER MONITORING SUBSYSTEM 2249M: Dominik Brodowski <linux@dominikbrodowski.net> 2250M: Thomas Renninger <trenn@suse.de> 2251S: Maintained 2252F: tools/power/cpupower 2253 2254CPUSETS 2255M: Li Zefan <lizefan@huawei.com> 2256W: http://www.bullopensource.org/cpuset/ 2257W: http://oss.sgi.com/projects/cpusets/ 2258S: Maintained 2259F: Documentation/cgroups/cpusets.txt 2260F: include/linux/cpuset.h 2261F: kernel/cpuset.c 2262 2263CRAMFS FILESYSTEM 2264W: http://sourceforge.net/projects/cramfs/ 2265S: Orphan 2266F: Documentation/filesystems/cramfs.txt 2267F: fs/cramfs/ 2268 2269CRIS PORT 2270M: Mikael Starvik <starvik@axis.com> 2271M: Jesper Nilsson <jesper.nilsson@axis.com> 2272L: linux-cris-kernel@axis.com 2273W: http://developer.axis.com 2274S: Maintained 2275F: arch/cris/ 2276F: drivers/tty/serial/crisv10.* 2277 2278CRYPTO API 2279M: Herbert Xu <herbert@gondor.apana.org.au> 2280M: "David S. Miller" <davem@davemloft.net> 2281L: linux-crypto@vger.kernel.org 2282T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git 2283S: Maintained 2284F: Documentation/crypto/ 2285F: arch/*/crypto/ 2286F: crypto/ 2287F: drivers/crypto/ 2288F: include/crypto/ 2289 2290CRYPTOGRAPHIC RANDOM NUMBER GENERATOR 2291M: Neil Horman <nhorman@tuxdriver.com> 2292L: linux-crypto@vger.kernel.org 2293S: Maintained 2294F: crypto/ansi_cprng.c 2295F: crypto/rng.c 2296 2297CS5535 Audio ALSA driver 2298M: Jaya Kumar <jayakumar.alsa@gmail.com> 2299S: Maintained 2300F: sound/pci/cs5535audio/ 2301 2302CX18 VIDEO4LINUX DRIVER 2303M: Andy Walls <awalls@md.metrocast.net> 2304L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) 2305L: linux-media@vger.kernel.org 2306T: git git://linuxtv.org/media_tree.git 2307W: http://linuxtv.org 2308W: http://www.ivtvdriver.org/index.php/Cx18 2309S: Maintained 2310F: Documentation/video4linux/cx18.txt 2311F: drivers/media/pci/cx18/ 2312F: include/uapi/linux/ivtv* 2313 2314CX2341X MPEG ENCODER HELPER MODULE 2315M: Hans Verkuil <hverkuil@xs4all.nl> 2316L: linux-media@vger.kernel.org 2317T: git git://linuxtv.org/media_tree.git 2318W: http://linuxtv.org 2319S: Maintained 2320F: drivers/media/common/cx2341x* 2321F: include/media/cx2341x* 2322 2323CX88 VIDEO4LINUX DRIVER 2324M: Mauro Carvalho Chehab <mchehab@redhat.com> 2325L: linux-media@vger.kernel.org 2326W: http://linuxtv.org 2327T: git git://linuxtv.org/media_tree.git 2328S: Odd fixes 2329F: Documentation/video4linux/cx88/ 2330F: drivers/media/pci/cx88/ 2331 2332CXD2820R MEDIA DRIVER 2333M: Antti Palosaari <crope@iki.fi> 2334L: linux-media@vger.kernel.org 2335W: http://linuxtv.org/ 2336W: http://palosaari.fi/linux/ 2337Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2338T: git git://linuxtv.org/anttip/media_tree.git 2339S: Maintained 2340F: drivers/media/dvb-frontends/cxd2820r* 2341 2342CXGB3 ETHERNET DRIVER (CXGB3) 2343M: Divy Le Ray <divy@chelsio.com> 2344L: netdev@vger.kernel.org 2345W: http://www.chelsio.com 2346S: Supported 2347F: drivers/net/ethernet/chelsio/cxgb3/ 2348 2349CXGB3 IWARP RNIC DRIVER (IW_CXGB3) 2350M: Steve Wise <swise@chelsio.com> 2351L: linux-rdma@vger.kernel.org 2352W: http://www.openfabrics.org 2353S: Supported 2354F: drivers/infiniband/hw/cxgb3/ 2355 2356CXGB4 ETHERNET DRIVER (CXGB4) 2357M: Dimitris Michailidis <dm@chelsio.com> 2358L: netdev@vger.kernel.org 2359W: http://www.chelsio.com 2360S: Supported 2361F: drivers/net/ethernet/chelsio/cxgb4/ 2362 2363CXGB4 IWARP RNIC DRIVER (IW_CXGB4) 2364M: Steve Wise <swise@chelsio.com> 2365L: linux-rdma@vger.kernel.org 2366W: http://www.openfabrics.org 2367S: Supported 2368F: drivers/infiniband/hw/cxgb4/ 2369 2370CXGB4VF ETHERNET DRIVER (CXGB4VF) 2371M: Casey Leedom <leedom@chelsio.com> 2372L: netdev@vger.kernel.org 2373W: http://www.chelsio.com 2374S: Supported 2375F: drivers/net/ethernet/chelsio/cxgb4vf/ 2376 2377STMMAC ETHERNET DRIVER 2378M: Giuseppe Cavallaro <peppe.cavallaro@st.com> 2379L: netdev@vger.kernel.org 2380W: http://www.stlinux.com 2381S: Supported 2382F: drivers/net/ethernet/stmicro/stmmac/ 2383 2384CYBERPRO FB DRIVER 2385M: Russell King <linux@arm.linux.org.uk> 2386L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 2387W: http://www.arm.linux.org.uk/ 2388S: Maintained 2389F: drivers/video/cyber2000fb.* 2390 2391CYCLADES ASYNC MUX DRIVER 2392W: http://www.cyclades.com/ 2393S: Orphan 2394F: drivers/tty/cyclades.c 2395F: include/linux/cyclades.h 2396F: include/uapi/linux/cyclades.h 2397 2398CYCLADES PC300 DRIVER 2399W: http://www.cyclades.com/ 2400S: Orphan 2401F: drivers/net/wan/pc300* 2402 2403CYPRESS_FIRMWARE MEDIA DRIVER 2404M: Antti Palosaari <crope@iki.fi> 2405L: linux-media@vger.kernel.org 2406W: http://linuxtv.org/ 2407W: http://palosaari.fi/linux/ 2408Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2409T: git git://linuxtv.org/anttip/media_tree.git 2410S: Maintained 2411F: drivers/media/common/cypress_firmware* 2412 2413CYTTSP TOUCHSCREEN DRIVER 2414M: Javier Martinez Canillas <javier@dowhile0.org> 2415L: linux-input@vger.kernel.org 2416S: Maintained 2417F: drivers/input/touchscreen/cyttsp* 2418F: include/linux/input/cyttsp.h 2419 2420DAMA SLAVE for AX.25 2421M: Joerg Reuter <jreuter@yaina.de> 2422W: http://yaina.de/jreuter/ 2423W: http://www.qsl.net/dl1bke/ 2424L: linux-hams@vger.kernel.org 2425S: Maintained 2426F: net/ax25/af_ax25.c 2427F: net/ax25/ax25_dev.c 2428F: net/ax25/ax25_ds_* 2429F: net/ax25/ax25_in.c 2430F: net/ax25/ax25_out.c 2431F: net/ax25/ax25_timer.c 2432F: net/ax25/sysctl_net_ax25.c 2433 2434DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER 2435L: netdev@vger.kernel.org 2436S: Orphan 2437F: Documentation/networking/dmfe.txt 2438F: drivers/net/ethernet/dec/tulip/dmfe.c 2439 2440DC390/AM53C974 SCSI driver 2441M: Kurt Garloff <garloff@suse.de> 2442W: http://www.garloff.de/kurt/linux/dc390/ 2443M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 2444S: Maintained 2445F: drivers/scsi/tmscsim.* 2446 2447DC395x SCSI driver 2448M: Oliver Neukum <oliver@neukum.org> 2449M: Ali Akcaagac <aliakc@web.de> 2450M: Jamie Lenehan <lenehan@twibble.org> 2451W: http://twibble.org/dist/dc395x/ 2452L: dc395x@twibble.org 2453L: http://lists.twibble.org/mailman/listinfo/dc395x/ 2454S: Maintained 2455F: Documentation/scsi/dc395x.txt 2456F: drivers/scsi/dc395x.* 2457 2458DCCP PROTOCOL 2459M: Gerrit Renker <gerrit@erg.abdn.ac.uk> 2460L: dccp@vger.kernel.org 2461W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp 2462S: Maintained 2463F: include/linux/dccp.h 2464F: include/uapi/linux/dccp.h 2465F: include/linux/tfrc.h 2466F: net/dccp/ 2467 2468DECnet NETWORK LAYER 2469W: http://linux-decnet.sourceforge.net 2470L: linux-decnet-user@lists.sourceforge.net 2471S: Orphan 2472F: Documentation/networking/decnet.txt 2473F: net/decnet/ 2474 2475DEFXX FDDI NETWORK DRIVER 2476M: "Maciej W. Rozycki" <macro@linux-mips.org> 2477S: Maintained 2478F: drivers/net/fddi/defxx.* 2479 2480DELL LAPTOP DRIVER 2481M: Matthew Garrett <mjg59@srcf.ucam.org> 2482L: platform-driver-x86@vger.kernel.org 2483S: Maintained 2484F: drivers/platform/x86/dell-laptop.c 2485 2486DELL LAPTOP SMM DRIVER 2487S: Orphan 2488F: drivers/char/i8k.c 2489F: include/uapi/linux/i8k.h 2490 2491DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) 2492M: Doug Warzecha <Douglas_Warzecha@dell.com> 2493S: Maintained 2494F: Documentation/dcdbas.txt 2495F: drivers/firmware/dcdbas.* 2496 2497DELL WMI EXTRAS DRIVER 2498M: Matthew Garrett <mjg59@srcf.ucam.org> 2499S: Maintained 2500F: drivers/platform/x86/dell-wmi.c 2501 2502DESIGNWARE USB2 DRD IP DRIVER 2503M: Paul Zimmerman <paulz@synopsys.com> 2504L: linux-usb@vger.kernel.org 2505S: Maintained 2506F: drivers/staging/dwc2/ 2507 2508DESIGNWARE USB3 DRD IP DRIVER 2509M: Felipe Balbi <balbi@ti.com> 2510L: linux-usb@vger.kernel.org 2511L: linux-omap@vger.kernel.org 2512T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git 2513S: Maintained 2514F: drivers/usb/dwc3/ 2515 2516DEVICE FREQUENCY (DEVFREQ) 2517M: MyungJoo Ham <myungjoo.ham@samsung.com> 2518M: Kyungmin Park <kyungmin.park@samsung.com> 2519L: linux-kernel@vger.kernel.org 2520S: Maintained 2521F: drivers/devfreq/ 2522 2523DEVICE NUMBER REGISTRY 2524M: Torben Mathiasen <device@lanana.org> 2525W: http://lanana.org/docs/device-list/index.html 2526S: Maintained 2527 2528DEVICE-MAPPER (LVM) 2529M: Alasdair Kergon <agk@redhat.com> 2530M: dm-devel@redhat.com 2531L: dm-devel@redhat.com 2532W: http://sources.redhat.com/dm 2533Q: http://patchwork.kernel.org/project/dm-devel/list/ 2534T: quilt http://people.redhat.com/agk/patches/linux/editing/ 2535S: Maintained 2536F: Documentation/device-mapper/ 2537F: drivers/md/dm* 2538F: drivers/md/persistent-data/ 2539F: include/linux/device-mapper.h 2540F: include/linux/dm-*.h 2541 2542DIOLAN U2C-12 I2C DRIVER 2543M: Guenter Roeck <linux@roeck-us.net> 2544L: linux-i2c@vger.kernel.org 2545S: Maintained 2546F: drivers/i2c/busses/i2c-diolan-u2c.c 2547 2548DIRECTORY NOTIFICATION (DNOTIFY) 2549M: Eric Paris <eparis@parisplace.org> 2550S: Maintained 2551F: Documentation/filesystems/dnotify.txt 2552F: fs/notify/dnotify/ 2553F: include/linux/dnotify.h 2554 2555DISK GEOMETRY AND PARTITION HANDLING 2556M: Andries Brouwer <aeb@cwi.nl> 2557W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html 2558W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html 2559W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html 2560S: Maintained 2561 2562DISKQUOTA 2563M: Jan Kara <jack@suse.cz> 2564S: Maintained 2565F: Documentation/filesystems/quota.txt 2566F: fs/quota/ 2567F: include/linux/quota*.h 2568F: include/uapi/linux/quota*.h 2569 2570DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB) 2571M: Bernie Thompson <bernie@plugable.com> 2572L: linux-fbdev@vger.kernel.org 2573S: Maintained 2574W: http://plugable.com/category/projects/udlfb/ 2575F: drivers/video/udlfb.c 2576F: include/video/udlfb.h 2577F: Documentation/fb/udlfb.txt 2578 2579DISTRIBUTED LOCK MANAGER (DLM) 2580M: Christine Caulfield <ccaulfie@redhat.com> 2581M: David Teigland <teigland@redhat.com> 2582L: cluster-devel@redhat.com 2583W: http://sources.redhat.com/cluster/ 2584T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git 2585S: Supported 2586F: fs/dlm/ 2587 2588DMA BUFFER SHARING FRAMEWORK 2589M: Sumit Semwal <sumit.semwal@linaro.org> 2590S: Maintained 2591L: linux-media@vger.kernel.org 2592L: dri-devel@lists.freedesktop.org 2593L: linaro-mm-sig@lists.linaro.org 2594F: drivers/base/dma-buf* 2595F: include/linux/dma-buf* 2596F: Documentation/dma-buf-sharing.txt 2597T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git 2598 2599DMA GENERIC OFFLOAD ENGINE SUBSYSTEM 2600M: Vinod Koul <vinod.koul@intel.com> 2601M: Dan Williams <djbw@fb.com> 2602S: Supported 2603F: drivers/dma/ 2604F: include/linux/dma* 2605T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git 2606T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma) 2607 2608DME1737 HARDWARE MONITOR DRIVER 2609M: Juerg Haefliger <juergh@gmail.com> 2610L: lm-sensors@lm-sensors.org 2611S: Maintained 2612F: Documentation/hwmon/dme1737 2613F: drivers/hwmon/dme1737.c 2614 2615DOCKING STATION DRIVER 2616M: Shaohua Li <shaohua.li@intel.com> 2617L: linux-acpi@vger.kernel.org 2618S: Supported 2619F: drivers/acpi/dock.c 2620 2621DOCUMENTATION 2622M: Rob Landley <rob@landley.net> 2623L: linux-doc@vger.kernel.org 2624T: TBD 2625S: Maintained 2626F: Documentation/ 2627 2628DOUBLETALK DRIVER 2629M: "James R. Van Zandt" <jrv@vanzandt.mv.com> 2630L: blinux-list@redhat.com 2631S: Maintained 2632F: drivers/char/dtlk.c 2633F: include/linux/dtlk.h 2634 2635DPT_I2O SCSI RAID DRIVER 2636M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 2637L: linux-scsi@vger.kernel.org 2638W: http://www.adaptec.com/ 2639S: Maintained 2640F: drivers/scsi/dpt* 2641F: drivers/scsi/dpt/ 2642 2643DRBD DRIVER 2644P: Philipp Reisner 2645P: Lars Ellenberg 2646M: drbd-dev@lists.linbit.com 2647L: drbd-user@lists.linbit.com 2648W: http://www.drbd.org 2649T: git git://git.drbd.org/linux-2.6-drbd.git drbd 2650T: git git://git.drbd.org/drbd-8.3.git 2651S: Supported 2652F: drivers/block/drbd/ 2653F: lib/lru_cache.c 2654F: Documentation/blockdev/drbd/ 2655 2656DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS 2657M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 2658T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git 2659S: Supported 2660F: Documentation/kobject.txt 2661F: drivers/base/ 2662F: fs/sysfs/ 2663F: fs/debugfs/ 2664F: include/linux/kobj* 2665F: include/linux/debugfs.h 2666F: lib/kobj* 2667 2668DRM DRIVERS 2669M: David Airlie <airlied@linux.ie> 2670L: dri-devel@lists.freedesktop.org 2671T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git 2672S: Maintained 2673F: drivers/gpu/drm/ 2674F: include/drm/ 2675F: include/uapi/drm/ 2676 2677INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) 2678M: Daniel Vetter <daniel.vetter@ffwll.ch> 2679L: intel-gfx@lists.freedesktop.org 2680L: dri-devel@lists.freedesktop.org 2681T: git git://people.freedesktop.org/~danvet/drm-intel 2682S: Supported 2683F: drivers/gpu/drm/i915 2684F: include/drm/i915* 2685F: include/uapi/drm/i915* 2686 2687DRM DRIVERS FOR EXYNOS 2688M: Inki Dae <inki.dae@samsung.com> 2689M: Joonyoung Shim <jy0922.shim@samsung.com> 2690M: Seung-Woo Kim <sw0312.kim@samsung.com> 2691M: Kyungmin Park <kyungmin.park@samsung.com> 2692L: dri-devel@lists.freedesktop.org 2693T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git 2694S: Supported 2695F: drivers/gpu/drm/exynos 2696F: include/drm/exynos* 2697F: include/uapi/drm/exynos* 2698 2699DRM DRIVERS FOR NVIDIA TEGRA 2700M: Thierry Reding <thierry.reding@avionic-design.de> 2701L: dri-devel@lists.freedesktop.org 2702L: linux-tegra@vger.kernel.org 2703T: git git://gitorious.org/thierryreding/linux.git 2704S: Maintained 2705F: drivers/gpu/drm/tegra/ 2706F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt 2707 2708DSBR100 USB FM RADIO DRIVER 2709M: Alexey Klimov <klimov.linux@gmail.com> 2710L: linux-media@vger.kernel.org 2711T: git git://linuxtv.org/media_tree.git 2712S: Maintained 2713F: drivers/media/radio/dsbr100.c 2714 2715DSCC4 DRIVER 2716M: Francois Romieu <romieu@fr.zoreil.com> 2717L: netdev@vger.kernel.org 2718S: Maintained 2719F: drivers/net/wan/dscc4.c 2720 2721DVB_USB_AF9015 MEDIA DRIVER 2722M: Antti Palosaari <crope@iki.fi> 2723L: linux-media@vger.kernel.org 2724W: http://linuxtv.org/ 2725W: http://palosaari.fi/linux/ 2726Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2727T: git git://linuxtv.org/anttip/media_tree.git 2728S: Maintained 2729F: drivers/media/usb/dvb-usb-v2/af9015* 2730 2731DVB_USB_AF9035 MEDIA DRIVER 2732M: Antti Palosaari <crope@iki.fi> 2733L: linux-media@vger.kernel.org 2734W: http://linuxtv.org/ 2735W: http://palosaari.fi/linux/ 2736Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2737T: git git://linuxtv.org/anttip/media_tree.git 2738S: Maintained 2739F: drivers/media/usb/dvb-usb-v2/af9035* 2740 2741DVB_USB_ANYSEE MEDIA DRIVER 2742M: Antti Palosaari <crope@iki.fi> 2743L: linux-media@vger.kernel.org 2744W: http://linuxtv.org/ 2745W: http://palosaari.fi/linux/ 2746Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2747T: git git://linuxtv.org/anttip/media_tree.git 2748S: Maintained 2749F: drivers/media/usb/dvb-usb-v2/anysee* 2750 2751DVB_USB_AU6610 MEDIA DRIVER 2752M: Antti Palosaari <crope@iki.fi> 2753L: linux-media@vger.kernel.org 2754W: http://linuxtv.org/ 2755W: http://palosaari.fi/linux/ 2756Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2757T: git git://linuxtv.org/anttip/media_tree.git 2758S: Maintained 2759F: drivers/media/usb/dvb-usb-v2/au6610* 2760 2761DVB_USB_CE6230 MEDIA DRIVER 2762M: Antti Palosaari <crope@iki.fi> 2763L: linux-media@vger.kernel.org 2764W: http://linuxtv.org/ 2765W: http://palosaari.fi/linux/ 2766Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2767T: git git://linuxtv.org/anttip/media_tree.git 2768S: Maintained 2769F: drivers/media/usb/dvb-usb-v2/ce6230* 2770 2771DVB_USB_CXUSB MEDIA DRIVER 2772M: Michael Krufky <mkrufky@linuxtv.org> 2773L: linux-media@vger.kernel.org 2774W: http://linuxtv.org/ 2775W: http://github.com/mkrufky 2776Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2777T: git git://linuxtv.org/media_tree.git 2778S: Maintained 2779F: drivers/media/usb/dvb-usb/cxusb* 2780 2781DVB_USB_EC168 MEDIA DRIVER 2782M: Antti Palosaari <crope@iki.fi> 2783L: linux-media@vger.kernel.org 2784W: http://linuxtv.org/ 2785W: http://palosaari.fi/linux/ 2786Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2787T: git git://linuxtv.org/anttip/media_tree.git 2788S: Maintained 2789F: drivers/media/usb/dvb-usb-v2/ec168* 2790 2791DVB_USB_GL861 MEDIA DRIVER 2792M: Antti Palosaari <crope@iki.fi> 2793L: linux-media@vger.kernel.org 2794W: http://linuxtv.org/ 2795Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2796T: git git://linuxtv.org/anttip/media_tree.git 2797S: Maintained 2798F: drivers/media/usb/dvb-usb-v2/gl861* 2799 2800DVB_USB_MXL111SF MEDIA DRIVER 2801M: Michael Krufky <mkrufky@linuxtv.org> 2802L: linux-media@vger.kernel.org 2803W: http://linuxtv.org/ 2804W: http://github.com/mkrufky 2805Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2806T: git git://linuxtv.org/mkrufky/mxl111sf.git 2807S: Maintained 2808F: drivers/media/usb/dvb-usb-v2/mxl111sf* 2809 2810DVB_USB_RTL28XXU MEDIA DRIVER 2811M: Antti Palosaari <crope@iki.fi> 2812L: linux-media@vger.kernel.org 2813W: http://linuxtv.org/ 2814W: http://palosaari.fi/linux/ 2815Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2816T: git git://linuxtv.org/anttip/media_tree.git 2817S: Maintained 2818F: drivers/media/usb/dvb-usb-v2/rtl28xxu* 2819 2820DVB_USB_V2 MEDIA DRIVER 2821M: Antti Palosaari <crope@iki.fi> 2822L: linux-media@vger.kernel.org 2823W: http://linuxtv.org/ 2824W: http://palosaari.fi/linux/ 2825Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2826T: git git://linuxtv.org/anttip/media_tree.git 2827S: Maintained 2828F: drivers/media/usb/dvb-usb-v2/dvb_usb* 2829F: drivers/media/usb/dvb-usb-v2/usb_urb.c 2830 2831DYNAMIC DEBUG 2832M: Jason Baron <jbaron@redhat.com> 2833S: Maintained 2834F: lib/dynamic_debug.c 2835F: include/linux/dynamic_debug.h 2836 2837DZ DECSTATION DZ11 SERIAL DRIVER 2838M: "Maciej W. Rozycki" <macro@linux-mips.org> 2839S: Maintained 2840F: drivers/tty/serial/dz.* 2841 2842E4000 MEDIA DRIVER 2843M: Antti Palosaari <crope@iki.fi> 2844L: linux-media@vger.kernel.org 2845W: http://linuxtv.org/ 2846W: http://palosaari.fi/linux/ 2847Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2848T: git git://linuxtv.org/anttip/media_tree.git 2849S: Maintained 2850F: drivers/media/tuners/e4000* 2851 2852EATA-DMA SCSI DRIVER 2853M: Michael Neuffer <mike@i-Connect.Net> 2854L: linux-eata@i-connect.net 2855L: linux-scsi@vger.kernel.org 2856S: Maintained 2857F: drivers/scsi/eata* 2858 2859EATA ISA/EISA/PCI SCSI DRIVER 2860M: Dario Ballabio <ballabio_dario@emc.com> 2861L: linux-scsi@vger.kernel.org 2862S: Maintained 2863F: drivers/scsi/eata.c 2864 2865EATA-PIO SCSI DRIVER 2866M: Michael Neuffer <mike@i-Connect.Net> 2867L: linux-eata@i-connect.net 2868L: linux-scsi@vger.kernel.org 2869S: Maintained 2870F: drivers/scsi/eata_pio.* 2871 2872EBTABLES 2873M: Bart De Schuymer <bart.de.schuymer@pandora.be> 2874L: netfilter-devel@vger.kernel.org 2875W: http://ebtables.sourceforge.net/ 2876S: Maintained 2877F: include/linux/netfilter_bridge/ebt_*.h 2878F: include/uapi/linux/netfilter_bridge/ebt_*.h 2879F: net/bridge/netfilter/ebt*.c 2880 2881EC100 MEDIA DRIVER 2882M: Antti Palosaari <crope@iki.fi> 2883L: linux-media@vger.kernel.org 2884W: http://linuxtv.org/ 2885W: http://palosaari.fi/linux/ 2886Q: http://patchwork.linuxtv.org/project/linux-media/list/ 2887T: git git://linuxtv.org/anttip/media_tree.git 2888S: Maintained 2889F: drivers/media/dvb-frontends/ec100* 2890 2891ECRYPT FILE SYSTEM 2892M: Tyler Hicks <tyhicks@canonical.com> 2893M: Dustin Kirkland <dustin.kirkland@gazzang.com> 2894L: ecryptfs@vger.kernel.org 2895W: https://launchpad.net/ecryptfs 2896S: Supported 2897F: Documentation/filesystems/ecryptfs.txt 2898F: fs/ecryptfs/ 2899 2900EDAC-CORE 2901M: Doug Thompson <dougthompson@xmission.com> 2902L: linux-edac@vger.kernel.org 2903W: bluesmoke.sourceforge.net 2904S: Supported 2905F: Documentation/edac.txt 2906F: drivers/edac/ 2907F: include/linux/edac.h 2908 2909EDAC-AMD64 2910M: Doug Thompson <dougthompson@xmission.com> 2911M: Borislav Petkov <bp@alien8.de> 2912L: linux-edac@vger.kernel.org 2913W: bluesmoke.sourceforge.net 2914S: Maintained 2915F: drivers/edac/amd64_edac* 2916 2917EDAC-CAVIUM 2918M: Ralf Baechle <ralf@linux-mips.org> 2919M: David Daney <david.daney@cavium.com> 2920L: linux-edac@vger.kernel.org 2921L: linux-mips@linux-mips.org 2922W: bluesmoke.sourceforge.net 2923S: Supported 2924F: drivers/edac/octeon_edac* 2925 2926EDAC-E752X 2927M: Mark Gross <mark.gross@intel.com> 2928M: Doug Thompson <dougthompson@xmission.com> 2929L: linux-edac@vger.kernel.org 2930W: bluesmoke.sourceforge.net 2931S: Maintained 2932F: drivers/edac/e752x_edac.c 2933 2934EDAC-E7XXX 2935M: Doug Thompson <dougthompson@xmission.com> 2936L: linux-edac@vger.kernel.org 2937W: bluesmoke.sourceforge.net 2938S: Maintained 2939F: drivers/edac/e7xxx_edac.c 2940 2941EDAC-GHES 2942M: Mauro Carvalho Chehab <mchehab@redhat.com> 2943L: linux-edac@vger.kernel.org 2944W: bluesmoke.sourceforge.net 2945S: Maintained 2946F: drivers/edac/ghes-edac.c 2947 2948EDAC-I82443BXGX 2949M: Tim Small <tim@buttersideup.com> 2950L: linux-edac@vger.kernel.org 2951W: bluesmoke.sourceforge.net 2952S: Maintained 2953F: drivers/edac/i82443bxgx_edac.c 2954 2955EDAC-I3000 2956M: Jason Uhlenkott <juhlenko@akamai.com> 2957L: linux-edac@vger.kernel.org 2958W: bluesmoke.sourceforge.net 2959S: Maintained 2960F: drivers/edac/i3000_edac.c 2961 2962EDAC-I5000 2963M: Doug Thompson <dougthompson@xmission.com> 2964L: linux-edac@vger.kernel.org 2965W: bluesmoke.sourceforge.net 2966S: Maintained 2967F: drivers/edac/i5000_edac.c 2968 2969EDAC-I5400 2970M: Mauro Carvalho Chehab <mchehab@redhat.com> 2971L: linux-edac@vger.kernel.org 2972W: bluesmoke.sourceforge.net 2973S: Maintained 2974F: drivers/edac/i5400_edac.c 2975 2976EDAC-I7300 2977M: Mauro Carvalho Chehab <mchehab@redhat.com> 2978L: linux-edac@vger.kernel.org 2979W: bluesmoke.sourceforge.net 2980S: Maintained 2981F: drivers/edac/i7300_edac.c 2982 2983EDAC-I7CORE 2984M: Mauro Carvalho Chehab <mchehab@redhat.com> 2985L: linux-edac@vger.kernel.org 2986W: bluesmoke.sourceforge.net 2987S: Maintained 2988F: drivers/edac/i7core_edac.c 2989 2990EDAC-I82975X 2991M: Ranganathan Desikan <ravi@jetztechnologies.com> 2992M: "Arvind R." <arvino55@gmail.com> 2993L: linux-edac@vger.kernel.org 2994W: bluesmoke.sourceforge.net 2995S: Maintained 2996F: drivers/edac/i82975x_edac.c 2997 2998EDAC-PASEMI 2999M: Egor Martovetsky <egor@pasemi.com> 3000L: linux-edac@vger.kernel.org 3001W: bluesmoke.sourceforge.net 3002S: Maintained 3003F: drivers/edac/pasemi_edac.c 3004 3005EDAC-R82600 3006M: Tim Small <tim@buttersideup.com> 3007L: linux-edac@vger.kernel.org 3008W: bluesmoke.sourceforge.net 3009S: Maintained 3010F: drivers/edac/r82600_edac.c 3011 3012EDAC-SBRIDGE 3013M: Mauro Carvalho Chehab <mchehab@redhat.com> 3014L: linux-edac@vger.kernel.org 3015W: bluesmoke.sourceforge.net 3016S: Maintained 3017F: drivers/edac/sb_edac.c 3018 3019EDIROL UA-101/UA-1000 DRIVER 3020M: Clemens Ladisch <clemens@ladisch.de> 3021L: alsa-devel@alsa-project.org (moderated for non-subscribers) 3022T: git git://git.alsa-project.org/alsa-kernel.git 3023S: Maintained 3024F: sound/usb/misc/ua101.c 3025 3026EXTENSIBLE FIRMWARE INTERFACE (EFI) 3027M: Matt Fleming <matt.fleming@intel.com> 3028L: linux-efi@vger.kernel.org 3029T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git 3030S: Maintained 3031F: Documentation/x86/efi-stub.txt 3032F: arch/ia64/kernel/efi.c 3033F: arch/x86/boot/compressed/eboot.[ch] 3034F: arch/x86/include/asm/efi.h 3035F: arch/x86/platform/efi/* 3036F: drivers/firmware/efi/* 3037F: include/linux/efi*.h 3038 3039EFI VARIABLE FILESYSTEM 3040M: Matthew Garrett <matthew.garrett@nebula.com> 3041M: Jeremy Kerr <jk@ozlabs.org> 3042M: Matt Fleming <matt.fleming@intel.com> 3043T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git 3044L: linux-efi@vger.kernel.org 3045S: Maintained 3046F: fs/efivarfs/ 3047 3048EFIFB FRAMEBUFFER DRIVER 3049L: linux-fbdev@vger.kernel.org 3050M: Peter Jones <pjones@redhat.com> 3051S: Maintained 3052F: drivers/video/efifb.c 3053 3054EFS FILESYSTEM 3055W: http://aeschi.ch.eu.org/efs/ 3056S: Orphan 3057F: fs/efs/ 3058 3059EHCA (IBM GX bus InfiniBand adapter) DRIVER 3060M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> 3061M: Christoph Raisch <raisch@de.ibm.com> 3062L: linux-rdma@vger.kernel.org 3063S: Supported 3064F: drivers/infiniband/hw/ehca/ 3065 3066EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER 3067M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com> 3068L: netdev@vger.kernel.org 3069S: Maintained 3070F: drivers/net/ethernet/ibm/ehea/ 3071 3072EM28XX VIDEO4LINUX DRIVER 3073M: Mauro Carvalho Chehab <mchehab@redhat.com> 3074L: linux-media@vger.kernel.org 3075W: http://linuxtv.org 3076T: git git://linuxtv.org/media_tree.git 3077S: Maintained 3078F: drivers/media/usb/em28xx/ 3079 3080EMBEDDED LINUX 3081M: Paul Gortmaker <paul.gortmaker@windriver.com> 3082M: Matt Mackall <mpm@selenic.com> 3083M: David Woodhouse <dwmw2@infradead.org> 3084L: linux-embedded@vger.kernel.org 3085S: Maintained 3086 3087EMULEX LPFC FC SCSI DRIVER 3088M: James Smart <james.smart@emulex.com> 3089L: linux-scsi@vger.kernel.org 3090W: http://sourceforge.net/projects/lpfcxxxx 3091S: Supported 3092F: drivers/scsi/lpfc/ 3093 3094ENE CB710 FLASH CARD READER DRIVER 3095M: Michał Mirosław <mirq-linux@rere.qmqm.pl> 3096S: Maintained 3097F: drivers/misc/cb710/ 3098F: drivers/mmc/host/cb710-mmc.* 3099F: include/linux/cb710.h 3100 3101ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER 3102M: Maxim Levitsky <maximlevitsky@gmail.com> 3103S: Maintained 3104F: drivers/media/rc/ene_ir.* 3105 3106EPSON S1D13XXX FRAMEBUFFER DRIVER 3107M: Kristoffer Ericson <kristoffer.ericson@gmail.com> 3108S: Maintained 3109T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git 3110F: drivers/video/s1d13xxxfb.c 3111F: include/video/s1d13xxxfb.h 3112 3113ETHERNET BRIDGE 3114M: Stephen Hemminger <stephen@networkplumber.org> 3115L: bridge@lists.linux-foundation.org 3116L: netdev@vger.kernel.org 3117W: http://www.linuxfoundation.org/en/Net:Bridge 3118S: Maintained 3119F: include/linux/netfilter_bridge/ 3120F: net/bridge/ 3121 3122EXT2 FILE SYSTEM 3123M: Jan Kara <jack@suse.cz> 3124L: linux-ext4@vger.kernel.org 3125S: Maintained 3126F: Documentation/filesystems/ext2.txt 3127F: fs/ext2/ 3128F: include/linux/ext2* 3129 3130EXT3 FILE SYSTEM 3131M: Jan Kara <jack@suse.cz> 3132M: Andrew Morton <akpm@linux-foundation.org> 3133M: Andreas Dilger <adilger.kernel@dilger.ca> 3134L: linux-ext4@vger.kernel.org 3135S: Maintained 3136F: Documentation/filesystems/ext3.txt 3137F: fs/ext3/ 3138 3139EXT4 FILE SYSTEM 3140M: "Theodore Ts'o" <tytso@mit.edu> 3141M: Andreas Dilger <adilger.kernel@dilger.ca> 3142L: linux-ext4@vger.kernel.org 3143W: http://ext4.wiki.kernel.org 3144Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ 3145S: Maintained 3146F: Documentation/filesystems/ext4.txt 3147F: fs/ext4/ 3148 3149Extended Verification Module (EVM) 3150M: Mimi Zohar <zohar@us.ibm.com> 3151S: Supported 3152F: security/integrity/evm/ 3153 3154EXTERNAL CONNECTOR SUBSYSTEM (EXTCON) 3155M: MyungJoo Ham <myungjoo.ham@samsung.com> 3156M: Chanwoo Choi <cw00.choi@samsung.com> 3157L: linux-kernel@vger.kernel.org 3158S: Maintained 3159F: drivers/extcon/ 3160F: Documentation/extcon/ 3161 3162EXYNOS DP DRIVER 3163M: Jingoo Han <jg1.han@samsung.com> 3164L: linux-fbdev@vger.kernel.org 3165S: Maintained 3166F: drivers/video/exynos/exynos_dp* 3167F: include/video/exynos_dp* 3168 3169EXYNOS MIPI DISPLAY DRIVERS 3170M: Inki Dae <inki.dae@samsung.com> 3171M: Donghwa Lee <dh09.lee@samsung.com> 3172M: Kyungmin Park <kyungmin.park@samsung.com> 3173L: linux-fbdev@vger.kernel.org 3174S: Maintained 3175F: drivers/video/exynos/exynos_mipi* 3176F: include/video/exynos_mipi* 3177 3178F71805F HARDWARE MONITORING DRIVER 3179M: Jean Delvare <khali@linux-fr.org> 3180L: lm-sensors@lm-sensors.org 3181S: Maintained 3182F: Documentation/hwmon/f71805f 3183F: drivers/hwmon/f71805f.c 3184 3185FC0011 TUNER DRIVER 3186M: Michael Buesch <m@bues.ch> 3187L: linux-media@vger.kernel.org 3188S: Maintained 3189F: drivers/media/tuners/fc0011.h 3190F: drivers/media/tuners/fc0011.c 3191 3192FC2580 MEDIA DRIVER 3193M: Antti Palosaari <crope@iki.fi> 3194L: linux-media@vger.kernel.org 3195W: http://linuxtv.org/ 3196W: http://palosaari.fi/linux/ 3197Q: http://patchwork.linuxtv.org/project/linux-media/list/ 3198T: git git://linuxtv.org/anttip/media_tree.git 3199S: Maintained 3200F: drivers/media/tuners/fc2580* 3201 3202FANOTIFY 3203M: Eric Paris <eparis@redhat.com> 3204S: Maintained 3205F: fs/notify/fanotify/ 3206F: include/linux/fanotify.h 3207F: include/uapi/linux/fanotify.h 3208 3209FARSYNC SYNCHRONOUS DRIVER 3210M: Kevin Curtis <kevin.curtis@farsite.co.uk> 3211W: http://www.farsite.co.uk/ 3212S: Supported 3213F: drivers/net/wan/farsync.* 3214 3215FAULT INJECTION SUPPORT 3216M: Akinobu Mita <akinobu.mita@gmail.com> 3217S: Supported 3218F: Documentation/fault-injection/ 3219F: lib/fault-inject.c 3220 3221FCOE SUBSYSTEM (libfc, libfcoe, fcoe) 3222M: Robert Love <robert.w.love@intel.com> 3223L: devel@open-fcoe.org 3224W: www.Open-FCoE.org 3225S: Supported 3226F: drivers/scsi/libfc/ 3227F: drivers/scsi/fcoe/ 3228F: include/scsi/fc/ 3229F: include/scsi/libfc.h 3230F: include/scsi/libfcoe.h 3231F: include/uapi/scsi/fc/ 3232 3233FILE LOCKING (flock() and fcntl()/lockf()) 3234M: Matthew Wilcox <matthew@wil.cx> 3235L: linux-fsdevel@vger.kernel.org 3236S: Maintained 3237F: include/linux/fcntl.h 3238F: include/linux/fs.h 3239F: include/uapi/linux/fcntl.h 3240F: include/uapi/linux/fs.h 3241F: fs/fcntl.c 3242F: fs/locks.c 3243 3244FILESYSTEMS (VFS and infrastructure) 3245M: Alexander Viro <viro@zeniv.linux.org.uk> 3246L: linux-fsdevel@vger.kernel.org 3247S: Maintained 3248F: fs/* 3249 3250FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER 3251M: Riku Voipio <riku.voipio@iki.fi> 3252L: lm-sensors@lm-sensors.org 3253S: Maintained 3254F: drivers/hwmon/f75375s.c 3255F: include/linux/f75375s.h 3256 3257FIREWIRE AUDIO DRIVERS 3258M: Clemens Ladisch <clemens@ladisch.de> 3259L: alsa-devel@alsa-project.org (moderated for non-subscribers) 3260T: git git://git.alsa-project.org/alsa-kernel.git 3261S: Maintained 3262F: sound/firewire/ 3263 3264FIREWIRE MEDIA DRIVERS (firedtv) 3265M: Stefan Richter <stefanr@s5r6.in-berlin.de> 3266L: linux-media@vger.kernel.org 3267L: linux1394-devel@lists.sourceforge.net 3268T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git 3269S: Maintained 3270F: drivers/media/firewire/ 3271 3272FIREWIRE SBP-2 TARGET 3273M: Chris Boot <bootc@bootc.net> 3274L: linux-scsi@vger.kernel.org 3275L: target-devel@vger.kernel.org 3276L: linux1394-devel@lists.sourceforge.net 3277T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master 3278S: Maintained 3279F: drivers/target/sbp/ 3280 3281FIREWIRE SUBSYSTEM 3282M: Stefan Richter <stefanr@s5r6.in-berlin.de> 3283L: linux1394-devel@lists.sourceforge.net 3284W: http://ieee1394.wiki.kernel.org/ 3285T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git 3286S: Maintained 3287F: drivers/firewire/ 3288F: include/linux/firewire.h 3289F: include/uapi/linux/firewire*.h 3290F: tools/firewire/ 3291 3292FIRMWARE LOADER (request_firmware) 3293M: Ming Lei <ming.lei@canonical.com> 3294L: linux-kernel@vger.kernel.org 3295S: Maintained 3296F: Documentation/firmware_class/ 3297F: drivers/base/firmware*.c 3298F: include/linux/firmware.h 3299 3300FLASHSYSTEM DRIVER (IBM FlashSystem 70/80 PCI SSD Flash Card) 3301M: Joshua Morris <josh.h.morris@us.ibm.com> 3302M: Philip Kelleher <pjk1939@linux.vnet.ibm.com> 3303S: Maintained 3304F: drivers/block/rsxx/ 3305 3306FLOPPY DRIVER 3307M: Jiri Kosina <jkosina@suse.cz> 3308T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git 3309S: Odd fixes 3310F: drivers/block/floppy.c 3311 3312FPU EMULATOR 3313M: Bill Metzenthen <billm@melbpc.org.au> 3314W: http://floatingpoint.sourceforge.net/emulator/index.html 3315S: Maintained 3316F: arch/x86/math-emu/ 3317 3318FRAME RELAY DLCI/FRAD (Sangoma drivers too) 3319L: netdev@vger.kernel.org 3320S: Orphan 3321F: drivers/net/wan/dlci.c 3322F: drivers/net/wan/sdla.c 3323 3324FRAMEBUFFER LAYER 3325M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> 3326L: linux-fbdev@vger.kernel.org 3327W: http://linux-fbdev.sourceforge.net/ 3328Q: http://patchwork.kernel.org/project/linux-fbdev/list/ 3329T: git git://github.com/schandinat/linux-2.6.git fbdev-next 3330S: Maintained 3331F: Documentation/fb/ 3332F: Documentation/devicetree/bindings/fb/ 3333F: drivers/video/ 3334F: include/video/ 3335F: include/linux/fb.h 3336F: include/uapi/video/ 3337F: include/uapi/linux/fb.h 3338 3339FREESCALE DIU FRAMEBUFFER DRIVER 3340M: Timur Tabi <timur@tabi.org> 3341L: linux-fbdev@vger.kernel.org 3342S: Maintained 3343F: drivers/video/fsl-diu-fb.* 3344 3345FREESCALE DMA DRIVER 3346M: Li Yang <leoli@freescale.com> 3347M: Zhang Wei <zw@zh-kernel.org> 3348L: linuxppc-dev@lists.ozlabs.org 3349S: Maintained 3350F: drivers/dma/fsldma.* 3351 3352FREESCALE I2C CPM DRIVER 3353M: Jochen Friedrich <jochen@scram.de> 3354L: linuxppc-dev@lists.ozlabs.org 3355L: linux-i2c@vger.kernel.org 3356S: Maintained 3357F: drivers/i2c/busses/i2c-cpm.c 3358 3359FREESCALE IMX / MXC FRAMEBUFFER DRIVER 3360M: Sascha Hauer <kernel@pengutronix.de> 3361L: linux-fbdev@vger.kernel.org 3362L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 3363S: Maintained 3364F: include/linux/platform_data/video-imxfb.h 3365F: drivers/video/imxfb.c 3366 3367FREESCALE SOC FS_ENET DRIVER 3368M: Pantelis Antoniou <pantelis.antoniou@gmail.com> 3369M: Vitaly Bordug <vbordug@ru.mvista.com> 3370L: linuxppc-dev@lists.ozlabs.org 3371L: netdev@vger.kernel.org 3372S: Maintained 3373F: drivers/net/ethernet/freescale/fs_enet/ 3374F: include/linux/fs_enet_pd.h 3375 3376FREESCALE QUICC ENGINE LIBRARY 3377L: linuxppc-dev@lists.ozlabs.org 3378S: Orphan 3379F: arch/powerpc/sysdev/qe_lib/ 3380F: arch/powerpc/include/asm/*qe.h 3381 3382FREESCALE USB PERIPHERAL DRIVERS 3383M: Li Yang <leoli@freescale.com> 3384L: linux-usb@vger.kernel.org 3385L: linuxppc-dev@lists.ozlabs.org 3386S: Maintained 3387F: drivers/usb/gadget/fsl* 3388 3389FREESCALE QUICC ENGINE UCC ETHERNET DRIVER 3390M: Li Yang <leoli@freescale.com> 3391L: netdev@vger.kernel.org 3392L: linuxppc-dev@lists.ozlabs.org 3393S: Maintained 3394F: drivers/net/ethernet/freescale/ucc_geth* 3395 3396FREESCALE QUICC ENGINE UCC UART DRIVER 3397M: Timur Tabi <timur@tabi.org> 3398L: linuxppc-dev@lists.ozlabs.org 3399S: Maintained 3400F: drivers/tty/serial/ucc_uart.c 3401 3402FREESCALE SOC SOUND DRIVERS 3403M: Timur Tabi <timur@tabi.org> 3404L: alsa-devel@alsa-project.org (moderated for non-subscribers) 3405L: linuxppc-dev@lists.ozlabs.org 3406S: Maintained 3407F: sound/soc/fsl/fsl* 3408F: sound/soc/fsl/mpc8610_hpcd.c 3409 3410FREEVXFS FILESYSTEM 3411M: Christoph Hellwig <hch@infradead.org> 3412W: ftp://ftp.openlinux.org/pub/people/hch/vxfs 3413S: Maintained 3414F: fs/freevxfs/ 3415 3416FREEZER 3417M: Pavel Machek <pavel@ucw.cz> 3418M: "Rafael J. Wysocki" <rjw@sisk.pl> 3419L: linux-pm@vger.kernel.org 3420S: Supported 3421F: Documentation/power/freezing-of-tasks.txt 3422F: include/linux/freezer.h 3423F: kernel/freezer.c 3424 3425FRONTSWAP API 3426M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 3427L: linux-kernel@vger.kernel.org 3428S: Maintained 3429F: mm/frontswap.c 3430F: include/linux/frontswap.h 3431 3432FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS 3433M: David Howells <dhowells@redhat.com> 3434L: linux-cachefs@redhat.com 3435S: Supported 3436F: Documentation/filesystems/caching/ 3437F: fs/fscache/ 3438F: include/linux/fscache*.h 3439 3440F2FS FILE SYSTEM 3441M: Jaegeuk Kim <jaegeuk.kim@samsung.com> 3442L: linux-f2fs-devel@lists.sourceforge.net 3443W: http://en.wikipedia.org/wiki/F2FS 3444T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git 3445S: Maintained 3446F: Documentation/filesystems/f2fs.txt 3447F: fs/f2fs/ 3448F: include/linux/f2fs_fs.h 3449 3450FUJITSU FR-V (FRV) PORT 3451M: David Howells <dhowells@redhat.com> 3452S: Maintained 3453F: arch/frv/ 3454 3455FUJITSU LAPTOP EXTRAS 3456M: Jonathan Woithe <jwoithe@just42.net> 3457L: platform-driver-x86@vger.kernel.org 3458S: Maintained 3459F: drivers/platform/x86/fujitsu-laptop.c 3460 3461FUJITSU M-5MO LS CAMERA ISP DRIVER 3462M: Kyungmin Park <kyungmin.park@samsung.com> 3463M: Heungjun Kim <riverful.kim@samsung.com> 3464L: linux-media@vger.kernel.org 3465S: Maintained 3466F: drivers/media/i2c/m5mols/ 3467F: include/media/m5mols.h 3468 3469FUJITSU TABLET EXTRAS 3470M: Robert Gerlach <khnz@gmx.de> 3471L: platform-driver-x86@vger.kernel.org 3472S: Maintained 3473F: drivers/platform/x86/fujitsu-tablet.c 3474 3475FUSE: FILESYSTEM IN USERSPACE 3476M: Miklos Szeredi <miklos@szeredi.hu> 3477L: fuse-devel@lists.sourceforge.net 3478W: http://fuse.sourceforge.net/ 3479S: Maintained 3480F: fs/fuse/ 3481F: include/uapi/linux/fuse.h 3482 3483FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) 3484M: Rik Faith <faith@cs.unc.edu> 3485L: linux-scsi@vger.kernel.org 3486S: Odd Fixes (e.g., new signatures) 3487F: drivers/scsi/fdomain.* 3488 3489GDT SCSI DISK ARRAY CONTROLLER DRIVER 3490M: Achim Leubner <achim_leubner@adaptec.com> 3491L: linux-scsi@vger.kernel.org 3492W: http://www.icp-vortex.com/ 3493S: Supported 3494F: drivers/scsi/gdt* 3495 3496GEMTEK FM RADIO RECEIVER DRIVER 3497M: Hans Verkuil <hverkuil@xs4all.nl> 3498L: linux-media@vger.kernel.org 3499T: git git://linuxtv.org/media_tree.git 3500W: http://linuxtv.org 3501S: Maintained 3502F: drivers/media/radio/radio-gemtek* 3503 3504GENERIC GPIO I2C DRIVER 3505M: Haavard Skinnemoen <hskinnemoen@gmail.com> 3506S: Supported 3507F: drivers/i2c/busses/i2c-gpio.c 3508F: include/linux/i2c-gpio.h 3509 3510GENERIC GPIO I2C MULTIPLEXER DRIVER 3511M: Peter Korsgaard <peter.korsgaard@barco.com> 3512L: linux-i2c@vger.kernel.org 3513S: Supported 3514F: drivers/i2c/muxes/i2c-mux-gpio.c 3515F: include/linux/i2c-mux-gpio.h 3516F: Documentation/i2c/muxes/i2c-mux-gpio 3517 3518GENERIC HDLC (WAN) DRIVERS 3519M: Krzysztof Halasa <khc@pm.waw.pl> 3520W: http://www.kernel.org/pub/linux/utils/net/hdlc/ 3521S: Maintained 3522F: drivers/net/wan/c101.c 3523F: drivers/net/wan/hd6457* 3524F: drivers/net/wan/hdlc* 3525F: drivers/net/wan/n2.c 3526F: drivers/net/wan/pc300too.c 3527F: drivers/net/wan/pci200syn.c 3528F: drivers/net/wan/wanxl* 3529 3530GENERIC INCLUDE/ASM HEADER FILES 3531M: Arnd Bergmann <arnd@arndb.de> 3532L: linux-arch@vger.kernel.org 3533T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git 3534S: Maintained 3535F: include/asm-generic 3536F: include/uapi/asm-generic 3537 3538GENERIC UIO DRIVER FOR PCI DEVICES 3539M: "Michael S. Tsirkin" <mst@redhat.com> 3540L: kvm@vger.kernel.org 3541S: Supported 3542F: drivers/uio/uio_pci_generic.c 3543 3544GFS2 FILE SYSTEM 3545M: Steven Whitehouse <swhiteho@redhat.com> 3546L: cluster-devel@redhat.com 3547W: http://sources.redhat.com/cluster/ 3548T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git 3549T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git 3550S: Supported 3551F: Documentation/filesystems/gfs2*.txt 3552F: fs/gfs2/ 3553F: include/uapi/linux/gfs2_ondisk.h 3554 3555GIGASET ISDN DRIVERS 3556M: Hansjoerg Lipp <hjlipp@web.de> 3557M: Tilman Schmidt <tilman@imap.cc> 3558L: gigaset307x-common@lists.sourceforge.net 3559W: http://gigaset307x.sourceforge.net/ 3560S: Maintained 3561F: Documentation/isdn/README.gigaset 3562F: drivers/isdn/gigaset/ 3563F: include/uapi/linux/gigaset_dev.h 3564 3565GPIO SUBSYSTEM 3566M: Grant Likely <grant.likely@linaro.org> 3567M: Linus Walleij <linus.walleij@linaro.org> 3568S: Maintained 3569T: git git://git.secretlab.ca/git/linux-2.6.git 3570F: Documentation/gpio.txt 3571F: drivers/gpio/ 3572F: include/linux/gpio* 3573F: include/asm-generic/gpio.h 3574 3575GRE DEMULTIPLEXER DRIVER 3576M: Dmitry Kozlov <xeb@mail.ru> 3577L: netdev@vger.kernel.org 3578S: Maintained 3579F: net/ipv4/gre.c 3580F: include/net/gre.h 3581 3582GRETH 10/100/1G Ethernet MAC device driver 3583M: Kristoffer Glembo <kristoffer@gaisler.com> 3584L: netdev@vger.kernel.org 3585S: Maintained 3586F: drivers/net/ethernet/aeroflex/ 3587 3588GSPCA FINEPIX SUBDRIVER 3589M: Frank Zago <frank@zago.net> 3590L: linux-media@vger.kernel.org 3591T: git git://linuxtv.org/media_tree.git 3592S: Maintained 3593F: drivers/media/usb/gspca/finepix.c 3594 3595GSPCA GL860 SUBDRIVER 3596M: Olivier Lorin <o.lorin@laposte.net> 3597L: linux-media@vger.kernel.org 3598T: git git://linuxtv.org/media_tree.git 3599S: Maintained 3600F: drivers/media/usb/gspca/gl860/ 3601 3602GSPCA M5602 SUBDRIVER 3603M: Erik Andren <erik.andren@gmail.com> 3604L: linux-media@vger.kernel.org 3605T: git git://linuxtv.org/media_tree.git 3606S: Maintained 3607F: drivers/media/usb/gspca/m5602/ 3608 3609GSPCA PAC207 SONIXB SUBDRIVER 3610M: Hans de Goede <hdegoede@redhat.com> 3611L: linux-media@vger.kernel.org 3612T: git git://linuxtv.org/media_tree.git 3613S: Maintained 3614F: drivers/media/usb/gspca/pac207.c 3615 3616GSPCA SN9C20X SUBDRIVER 3617M: Brian Johnson <brijohn@gmail.com> 3618L: linux-media@vger.kernel.org 3619T: git git://linuxtv.org/media_tree.git 3620S: Maintained 3621F: drivers/media/usb/gspca/sn9c20x.c 3622 3623GSPCA T613 SUBDRIVER 3624M: Leandro Costantino <lcostantino@gmail.com> 3625L: linux-media@vger.kernel.org 3626T: git git://linuxtv.org/media_tree.git 3627S: Maintained 3628F: drivers/media/usb/gspca/t613.c 3629 3630GSPCA USB WEBCAM DRIVER 3631M: Hans de Goede <hdegoede@redhat.com> 3632L: linux-media@vger.kernel.org 3633T: git git://linuxtv.org/media_tree.git 3634S: Maintained 3635F: drivers/media/usb/gspca/ 3636 3637STK1160 USB VIDEO CAPTURE DRIVER 3638M: Ezequiel Garcia <elezegarcia@gmail.com> 3639L: linux-media@vger.kernel.org 3640T: git git://linuxtv.org/media_tree.git 3641S: Maintained 3642F: drivers/media/usb/stk1160/ 3643 3644HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER 3645M: Frank Seidel <frank@f-seidel.de> 3646L: platform-driver-x86@vger.kernel.org 3647W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ 3648S: Maintained 3649F: drivers/platform/x86/hdaps.c 3650 3651HDPVR USB VIDEO ENCODER DRIVER 3652M: Hans Verkuil <hverkuil@xs4all.nl> 3653L: linux-media@vger.kernel.org 3654T: git git://linuxtv.org/media_tree.git 3655W: http://linuxtv.org 3656S: Odd Fixes 3657F: drivers/media/usb/hdpvr 3658 3659HWPOISON MEMORY FAILURE HANDLING 3660M: Andi Kleen <andi@firstfloor.org> 3661L: linux-mm@kvack.org 3662T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison 3663S: Maintained 3664F: mm/memory-failure.c 3665F: mm/hwpoison-inject.c 3666 3667HYPERVISOR VIRTUAL CONSOLE DRIVER 3668L: linuxppc-dev@lists.ozlabs.org 3669S: Odd Fixes 3670F: drivers/tty/hvc/ 3671 3672HARDWARE MONITORING 3673M: Jean Delvare <khali@linux-fr.org> 3674M: Guenter Roeck <linux@roeck-us.net> 3675L: lm-sensors@lm-sensors.org 3676W: http://www.lm-sensors.org/ 3677T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ 3678T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git 3679S: Maintained 3680F: Documentation/hwmon/ 3681F: drivers/hwmon/ 3682F: include/linux/hwmon*.h 3683 3684HARDWARE RANDOM NUMBER GENERATOR CORE 3685M: Matt Mackall <mpm@selenic.com> 3686M: Herbert Xu <herbert@gondor.apana.org.au> 3687S: Odd fixes 3688F: Documentation/hw_random.txt 3689F: drivers/char/hw_random/ 3690F: include/linux/hw_random.h 3691 3692HARDWARE SPINLOCK CORE 3693M: Ohad Ben-Cohen <ohad@wizery.com> 3694S: Maintained 3695F: Documentation/hwspinlock.txt 3696F: drivers/hwspinlock/hwspinlock_* 3697F: include/linux/hwspinlock.h 3698 3699HARMONY SOUND DRIVER 3700L: linux-parisc@vger.kernel.org 3701S: Maintained 3702F: sound/parisc/harmony.* 3703 3704HD29L2 MEDIA DRIVER 3705M: Antti Palosaari <crope@iki.fi> 3706L: linux-media@vger.kernel.org 3707W: http://linuxtv.org/ 3708W: http://palosaari.fi/linux/ 3709Q: http://patchwork.linuxtv.org/project/linux-media/list/ 3710T: git git://linuxtv.org/anttip/media_tree.git 3711S: Maintained 3712F: drivers/media/dvb-frontends/hd29l2* 3713 3714HEWLETT-PACKARD SMART2 RAID DRIVER 3715M: Chirag Kantharia <chirag.kantharia@hp.com> 3716L: iss_storagedev@hp.com 3717S: Maintained 3718F: Documentation/blockdev/cpqarray.txt 3719F: drivers/block/cpqarray.* 3720 3721HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) 3722M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com> 3723L: iss_storagedev@hp.com 3724S: Supported 3725F: Documentation/scsi/hpsa.txt 3726F: drivers/scsi/hpsa*.[ch] 3727F: include/linux/cciss*.h 3728F: include/uapi/linux/cciss*.h 3729 3730HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) 3731M: Mike Miller <mike.miller@hp.com> 3732L: iss_storagedev@hp.com 3733S: Supported 3734F: Documentation/blockdev/cciss.txt 3735F: drivers/block/cciss* 3736F: include/linux/cciss_ioctl.h 3737F: include/uapi/linux/cciss_ioctl.h 3738 3739HFS FILESYSTEM 3740L: linux-fsdevel@vger.kernel.org 3741S: Orphan 3742F: Documentation/filesystems/hfs.txt 3743F: fs/hfs/ 3744 3745HGA FRAMEBUFFER DRIVER 3746M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> 3747L: linux-nvidia@lists.surfsouth.com 3748W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml 3749S: Maintained 3750F: drivers/video/hgafb.c 3751 3752HIBERNATION (aka Software Suspend, aka swsusp) 3753M: Pavel Machek <pavel@ucw.cz> 3754M: "Rafael J. Wysocki" <rjw@sisk.pl> 3755L: linux-pm@vger.kernel.org 3756S: Supported 3757F: arch/x86/power/ 3758F: drivers/base/power/ 3759F: kernel/power/ 3760F: include/linux/suspend.h 3761F: include/linux/freezer.h 3762F: include/linux/pm.h 3763F: arch/*/include/asm/suspend*.h 3764 3765HID CORE LAYER 3766M: Jiri Kosina <jkosina@suse.cz> 3767L: linux-input@vger.kernel.org 3768T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git 3769S: Maintained 3770F: drivers/hid/ 3771F: include/linux/hid* 3772F: include/uapi/linux/hid* 3773 3774HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS 3775M: Thomas Gleixner <tglx@linutronix.de> 3776T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core 3777S: Maintained 3778F: Documentation/timers/ 3779F: kernel/hrtimer.c 3780F: kernel/time/clockevents.c 3781F: kernel/time/tick*.* 3782F: kernel/time/timer_*.c 3783F: include/linux/clockchips.h 3784F: include/linux/hrtimer.h 3785 3786HIGH-SPEED SCC DRIVER FOR AX.25 3787L: linux-hams@vger.kernel.org 3788S: Orphan 3789F: drivers/net/hamradio/dmascc.c 3790F: drivers/net/hamradio/scc.c 3791 3792HIGHPOINT ROCKETRAID 3xxx RAID DRIVER 3793M: HighPoint Linux Team <linux@highpoint-tech.com> 3794W: http://www.highpoint-tech.com 3795S: Supported 3796F: Documentation/scsi/hptiop.txt 3797F: drivers/scsi/hptiop.c 3798 3799HIPPI 3800M: Jes Sorensen <jes@trained-monkey.org> 3801L: linux-hippi@sunsite.dk 3802S: Maintained 3803F: include/linux/hippidevice.h 3804F: include/uapi/linux/if_hippi.h 3805F: net/802/hippi.c 3806F: drivers/net/hippi/ 3807 3808HOST AP DRIVER 3809M: Jouni Malinen <j@w1.fi> 3810L: hostap@shmoo.com (subscribers-only) 3811L: linux-wireless@vger.kernel.org 3812W: http://hostap.epitest.fi/ 3813S: Maintained 3814F: drivers/net/wireless/hostap/ 3815 3816HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER 3817L: platform-driver-x86@vger.kernel.org 3818S: Orphan 3819F: drivers/platform/x86/tc1100-wmi.c 3820 3821HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series 3822M: Jaroslav Kysela <perex@perex.cz> 3823S: Maintained 3824F: drivers/net/ethernet/hp/hp100.* 3825 3826HPET: High Precision Event Timers driver 3827M: Clemens Ladisch <clemens@ladisch.de> 3828S: Maintained 3829F: Documentation/timers/hpet.txt 3830F: drivers/char/hpet.c 3831F: include/linux/hpet.h 3832F: include/uapi/linux/hpet.h 3833 3834HPET: x86 3835M: "Venkatesh Pallipadi (Venki)" <venki@google.com> 3836S: Maintained 3837F: arch/x86/kernel/hpet.c 3838F: arch/x86/include/asm/hpet.h 3839 3840HPFS FILESYSTEM 3841M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> 3842W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi 3843S: Maintained 3844F: fs/hpfs/ 3845 3846HSO 3G MODEM DRIVER 3847M: Jan Dumon <j.dumon@option.com> 3848W: http://www.pharscape.org 3849S: Maintained 3850F: drivers/net/usb/hso.c 3851 3852HTCPEN TOUCHSCREEN DRIVER 3853M: Pau Oliva Fora <pof@eslack.org> 3854L: linux-input@vger.kernel.org 3855S: Maintained 3856F: drivers/input/touchscreen/htcpen.c 3857 3858HUGETLB FILESYSTEM 3859M: Nadia Yvette Chambers <nyc@holomorphy.com> 3860S: Maintained 3861F: fs/hugetlbfs/ 3862 3863Hyper-V CORE AND DRIVERS 3864M: K. Y. Srinivasan <kys@microsoft.com> 3865M: Haiyang Zhang <haiyangz@microsoft.com> 3866L: devel@linuxdriverproject.org 3867S: Maintained 3868F: drivers/hv/ 3869F: drivers/hid/hid-hyperv.c 3870F: drivers/net/hyperv/ 3871 3872I2C OVER PARALLEL PORT 3873M: Jean Delvare <khali@linux-fr.org> 3874L: linux-i2c@vger.kernel.org 3875S: Maintained 3876F: Documentation/i2c/busses/i2c-parport 3877F: Documentation/i2c/busses/i2c-parport-light 3878F: drivers/i2c/busses/i2c-parport.c 3879F: drivers/i2c/busses/i2c-parport-light.c 3880 3881I2C/SMBUS CONTROLLER DRIVERS FOR PC 3882M: Jean Delvare <khali@linux-fr.org> 3883L: linux-i2c@vger.kernel.org 3884S: Maintained 3885F: Documentation/i2c/busses/i2c-ali1535 3886F: Documentation/i2c/busses/i2c-ali1563 3887F: Documentation/i2c/busses/i2c-ali15x3 3888F: Documentation/i2c/busses/i2c-amd756 3889F: Documentation/i2c/busses/i2c-amd8111 3890F: Documentation/i2c/busses/i2c-i801 3891F: Documentation/i2c/busses/i2c-nforce2 3892F: Documentation/i2c/busses/i2c-piix4 3893F: Documentation/i2c/busses/i2c-sis5595 3894F: Documentation/i2c/busses/i2c-sis630 3895F: Documentation/i2c/busses/i2c-sis96x 3896F: Documentation/i2c/busses/i2c-via 3897F: Documentation/i2c/busses/i2c-viapro 3898F: drivers/i2c/busses/i2c-ali1535.c 3899F: drivers/i2c/busses/i2c-ali1563.c 3900F: drivers/i2c/busses/i2c-ali15x3.c 3901F: drivers/i2c/busses/i2c-amd756.c 3902F: drivers/i2c/busses/i2c-amd756-s4882.c 3903F: drivers/i2c/busses/i2c-amd8111.c 3904F: drivers/i2c/busses/i2c-i801.c 3905F: drivers/i2c/busses/i2c-isch.c 3906F: drivers/i2c/busses/i2c-nforce2.c 3907F: drivers/i2c/busses/i2c-nforce2-s4985.c 3908F: drivers/i2c/busses/i2c-piix4.c 3909F: drivers/i2c/busses/i2c-sis5595.c 3910F: drivers/i2c/busses/i2c-sis630.c 3911F: drivers/i2c/busses/i2c-sis96x.c 3912F: drivers/i2c/busses/i2c-via.c 3913F: drivers/i2c/busses/i2c-viapro.c 3914 3915I2C/SMBUS ISMT DRIVER 3916M: Seth Heasley <seth.heasley@intel.com> 3917M: Neil Horman <nhorman@tuxdriver.com> 3918L: linux-i2c@vger.kernel.org 3919F: drivers/i2c/busses/i2c-ismt.c 3920F: Documentation/i2c/busses/i2c-ismt 3921 3922I2C/SMBUS STUB DRIVER 3923M: Jean Delvare <khali@linux-fr.org> 3924L: linux-i2c@vger.kernel.org 3925S: Maintained 3926F: drivers/i2c/i2c-stub.c 3927 3928I2C SUBSYSTEM 3929M: Wolfram Sang <wsa@the-dreams.de> 3930L: linux-i2c@vger.kernel.org 3931W: http://i2c.wiki.kernel.org/ 3932T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git 3933S: Maintained 3934F: Documentation/i2c/ 3935F: drivers/i2c/ 3936F: include/linux/i2c.h 3937F: include/linux/i2c-*.h 3938F: include/uapi/linux/i2c.h 3939F: include/uapi/linux/i2c-*.h 3940 3941I2C-TAOS-EVM DRIVER 3942M: Jean Delvare <khali@linux-fr.org> 3943L: linux-i2c@vger.kernel.org 3944S: Maintained 3945F: Documentation/i2c/busses/i2c-taos-evm 3946F: drivers/i2c/busses/i2c-taos-evm.c 3947 3948I2C-TINY-USB DRIVER 3949M: Till Harbaum <till@harbaum.org> 3950L: linux-i2c@vger.kernel.org 3951W: http://www.harbaum.org/till/i2c_tiny_usb 3952S: Maintained 3953F: drivers/i2c/busses/i2c-tiny-usb.c 3954 3955i386 BOOT CODE 3956M: "H. Peter Anvin" <hpa@zytor.com> 3957S: Maintained 3958F: arch/x86/boot/ 3959 3960i386 SETUP CODE / CPU ERRATA WORKAROUNDS 3961M: "H. Peter Anvin" <hpa@zytor.com> 3962T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git 3963S: Maintained 3964 3965IA64 (Itanium) PLATFORM 3966M: Tony Luck <tony.luck@intel.com> 3967M: Fenghua Yu <fenghua.yu@intel.com> 3968L: linux-ia64@vger.kernel.org 3969T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git 3970S: Maintained 3971F: arch/ia64/ 3972 3973IBM Power in-Nest Crypto Acceleration 3974M: Kent Yoder <key@linux.vnet.ibm.com> 3975L: linux-crypto@vger.kernel.org 3976S: Supported 3977F: drivers/crypto/nx/ 3978 3979IBM Power 842 compression accelerator 3980M: Robert Jennings <rcj@linux.vnet.ibm.com> 3981S: Supported 3982F: drivers/crypto/nx/nx-842.c 3983F: include/linux/nx842.h 3984 3985IBM Power Linux RAID adapter 3986M: Brian King <brking@us.ibm.com> 3987S: Supported 3988F: drivers/scsi/ipr.* 3989 3990IBM Power Virtual Ethernet Device Driver 3991M: Santiago Leon <santil@linux.vnet.ibm.com> 3992L: netdev@vger.kernel.org 3993S: Supported 3994F: drivers/net/ethernet/ibm/ibmveth.* 3995 3996IBM Power Virtual SCSI/FC Device Drivers 3997M: Robert Jennings <rcj@linux.vnet.ibm.com> 3998L: linux-scsi@vger.kernel.org 3999S: Supported 4000F: drivers/scsi/ibmvscsi/ 4001X: drivers/scsi/ibmvscsi/ibmvstgt.c 4002 4003IBM ServeRAID RAID DRIVER 4004P: Jack Hammer 4005M: Dave Jeffery <ipslinux@adaptec.com> 4006W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html 4007S: Supported 4008F: drivers/scsi/ips.* 4009 4010ICH LPC AND GPIO DRIVER 4011M: Peter Tyser <ptyser@xes-inc.com> 4012S: Maintained 4013F: drivers/mfd/lpc_ich.c 4014F: drivers/gpio/gpio-ich.c 4015 4016IDE SUBSYSTEM 4017M: "David S. Miller" <davem@davemloft.net> 4018L: linux-ide@vger.kernel.org 4019Q: http://patchwork.ozlabs.org/project/linux-ide/list/ 4020T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git 4021S: Maintained 4022F: Documentation/ide/ 4023F: drivers/ide/ 4024F: include/linux/ide.h 4025 4026IDEAPAD LAPTOP EXTRAS DRIVER 4027M: Ike Panhc <ike.pan@canonical.com> 4028L: platform-driver-x86@vger.kernel.org 4029W: http://launchpad.net/ideapad-laptop 4030S: Maintained 4031F: drivers/platform/x86/ideapad-laptop.c 4032 4033IDE/ATAPI DRIVERS 4034M: Borislav Petkov <bp@alien8.de> 4035L: linux-ide@vger.kernel.org 4036S: Maintained 4037F: Documentation/cdrom/ide-cd 4038F: drivers/ide/ide-cd* 4039 4040IDLE-I7300 4041M: Andy Henroid <andrew.d.henroid@intel.com> 4042L: linux-pm@vger.kernel.org 4043S: Supported 4044F: drivers/idle/i7300_idle.c 4045 4046IEEE 802.15.4 SUBSYSTEM 4047M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com> 4048M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 4049L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) 4050W: http://apps.sourceforge.net/trac/linux-zigbee 4051T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git 4052S: Maintained 4053F: net/ieee802154/ 4054F: net/mac802154/ 4055F: drivers/net/ieee802154/ 4056 4057IGUANAWORKS USB IR TRANSCEIVER 4058M: Sean Young <sean@mess.org> 4059L: linux-media@vger.kernel.org 4060S: Maintained 4061F: drivers/media/rc/iguanair.c 4062 4063IIO SUBSYSTEM AND DRIVERS 4064M: Jonathan Cameron <jic23@cam.ac.uk> 4065L: linux-iio@vger.kernel.org 4066S: Maintained 4067F: drivers/iio/ 4068F: drivers/staging/iio/ 4069 4070IKANOS/ADI EAGLE ADSL USB DRIVER 4071M: Matthieu Castet <castet.matthieu@free.fr> 4072M: Stanislaw Gruszka <stf_xl@wp.pl> 4073S: Maintained 4074F: drivers/usb/atm/ueagle-atm.c 4075 4076INA209 HARDWARE MONITOR DRIVER 4077M: Guenter Roeck <linux@roeck-us.net> 4078L: lm-sensors@lm-sensors.org 4079S: Maintained 4080F: Documentation/hwmon/ina209 4081F: Documentation/devicetree/bindings/i2c/ina209.txt 4082F: drivers/hwmon/ina209.c 4083 4084INA2XX HARDWARE MONITOR DRIVER 4085M: Guenter Roeck <linux@roeck-us.net> 4086L: lm-sensors@lm-sensors.org 4087S: Maintained 4088F: Documentation/hwmon/ina2xx 4089F: drivers/hwmon/ina2xx.c 4090F: include/linux/platform_data/ina2xx.h 4091 4092INDUSTRY PACK SUBSYSTEM (IPACK) 4093M: Samuel Iglesias Gonsalvez <siglesias@igalia.com> 4094M: Jens Taprogge <jens.taprogge@taprogge.org> 4095M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 4096L: industrypack-devel@lists.sourceforge.net 4097W: http://industrypack.sourceforge.net 4098S: Maintained 4099F: drivers/ipack/ 4100 4101INTEGRITY MEASUREMENT ARCHITECTURE (IMA) 4102M: Mimi Zohar <zohar@us.ibm.com> 4103S: Supported 4104F: security/integrity/ima/ 4105 4106IMS TWINTURBO FRAMEBUFFER DRIVER 4107L: linux-fbdev@vger.kernel.org 4108S: Orphan 4109F: drivers/video/imsttfb.c 4110 4111INFINIBAND SUBSYSTEM 4112M: Roland Dreier <roland@kernel.org> 4113M: Sean Hefty <sean.hefty@intel.com> 4114M: Hal Rosenstock <hal.rosenstock@gmail.com> 4115L: linux-rdma@vger.kernel.org 4116W: http://www.openfabrics.org/ 4117Q: http://patchwork.kernel.org/project/linux-rdma/list/ 4118T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git 4119S: Supported 4120F: Documentation/infiniband/ 4121F: drivers/infiniband/ 4122F: include/uapi/linux/if_infiniband.h 4123 4124INOTIFY 4125M: John McCutchan <john@johnmccutchan.com> 4126M: Robert Love <rlove@rlove.org> 4127M: Eric Paris <eparis@parisplace.org> 4128S: Maintained 4129F: Documentation/filesystems/inotify.txt 4130F: fs/notify/inotify/ 4131F: include/linux/inotify.h 4132F: include/uapi/linux/inotify.h 4133 4134INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS 4135M: Dmitry Torokhov <dmitry.torokhov@gmail.com> 4136M: Dmitry Torokhov <dtor@mail.ru> 4137L: linux-input@vger.kernel.org 4138Q: http://patchwork.kernel.org/project/linux-input/list/ 4139T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git 4140S: Maintained 4141F: drivers/input/ 4142F: include/linux/input.h 4143F: include/uapi/linux/input.h 4144F: include/linux/input/ 4145 4146INPUT MULTITOUCH (MT) PROTOCOL 4147M: Henrik Rydberg <rydberg@euromail.se> 4148L: linux-input@vger.kernel.org 4149T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git 4150S: Maintained 4151F: Documentation/input/multi-touch-protocol.txt 4152F: drivers/input/input-mt.c 4153K: \b(ABS|SYN)_MT_ 4154 4155INTEL C600 SERIES SAS CONTROLLER DRIVER 4156M: Intel SCU Linux support <intel-linux-scu@intel.com> 4157M: Lukasz Dorau <lukasz.dorau@intel.com> 4158M: Maciej Patelczyk <maciej.patelczyk@intel.com> 4159M: Dave Jiang <dave.jiang@intel.com> 4160L: linux-scsi@vger.kernel.org 4161T: git git://git.code.sf.net/p/intel-sas/isci 4162S: Supported 4163F: drivers/scsi/isci/ 4164 4165INTEL IDLE DRIVER 4166M: Len Brown <lenb@kernel.org> 4167L: linux-pm@vger.kernel.org 4168T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git 4169S: Supported 4170F: drivers/idle/intel_idle.c 4171 4172INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) 4173M: Maik Broemme <mbroemme@plusserver.de> 4174L: linux-fbdev@vger.kernel.org 4175S: Maintained 4176F: Documentation/fb/intelfb.txt 4177F: drivers/video/intelfb/ 4178 4179INTEL 810/815 FRAMEBUFFER DRIVER 4180M: Antonino Daplas <adaplas@gmail.com> 4181L: linux-fbdev@vger.kernel.org 4182S: Maintained 4183F: drivers/video/i810/ 4184 4185INTEL MENLOW THERMAL DRIVER 4186M: Sujith Thomas <sujith.thomas@intel.com> 4187L: platform-driver-x86@vger.kernel.org 4188W: http://www.lesswatts.org/projects/acpi/ 4189S: Supported 4190F: drivers/platform/x86/intel_menlow.c 4191 4192INTEL IA32 MICROCODE UPDATE SUPPORT 4193M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> 4194S: Maintained 4195F: arch/x86/kernel/microcode_core.c 4196F: arch/x86/kernel/microcode_intel.c 4197 4198INTEL I/OAT DMA DRIVER 4199M: Dan Williams <djbw@fb.com> 4200S: Maintained 4201F: drivers/dma/ioat* 4202 4203INTEL IOMMU (VT-d) 4204M: David Woodhouse <dwmw2@infradead.org> 4205L: iommu@lists.linux-foundation.org 4206T: git git://git.infradead.org/iommu-2.6.git 4207S: Supported 4208F: drivers/iommu/intel-iommu.c 4209F: include/linux/intel-iommu.h 4210 4211INTEL IOP-ADMA DMA DRIVER 4212M: Dan Williams <djbw@fb.com> 4213S: Odd fixes 4214F: drivers/dma/iop-adma.c 4215 4216INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT 4217M: Krzysztof Halasa <khc@pm.waw.pl> 4218S: Maintained 4219F: arch/arm/mach-ixp4xx/include/mach/qmgr.h 4220F: arch/arm/mach-ixp4xx/include/mach/npe.h 4221F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c 4222F: arch/arm/mach-ixp4xx/ixp4xx_npe.c 4223F: drivers/net/ethernet/xscale/ixp4xx_eth.c 4224F: drivers/net/wan/ixp4xx_hss.c 4225 4226INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT 4227M: Deepak Saxena <dsaxena@plexity.net> 4228S: Maintained 4229F: drivers/char/hw_random/ixp4xx-rng.c 4230 4231INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) 4232M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> 4233M: Jesse Brandeburg <jesse.brandeburg@intel.com> 4234M: Bruce Allan <bruce.w.allan@intel.com> 4235M: Carolyn Wyborny <carolyn.wyborny@intel.com> 4236M: Don Skidmore <donald.c.skidmore@intel.com> 4237M: Greg Rose <gregory.v.rose@intel.com> 4238M: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com> 4239M: Alex Duyck <alexander.h.duyck@intel.com> 4240M: John Ronciak <john.ronciak@intel.com> 4241M: Tushar Dave <tushar.n.dave@intel.com> 4242L: e1000-devel@lists.sourceforge.net 4243W: http://www.intel.com/support/feedback.htm 4244W: http://e1000.sourceforge.net/ 4245T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git 4246T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git 4247S: Supported 4248F: Documentation/networking/e100.txt 4249F: Documentation/networking/e1000.txt 4250F: Documentation/networking/e1000e.txt 4251F: Documentation/networking/igb.txt 4252F: Documentation/networking/igbvf.txt 4253F: Documentation/networking/ixgb.txt 4254F: Documentation/networking/ixgbe.txt 4255F: Documentation/networking/ixgbevf.txt 4256F: drivers/net/ethernet/intel/ 4257 4258INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT 4259M: Stanislav Yakovlev <stas.yakovlev@gmail.com> 4260L: linux-wireless@vger.kernel.org 4261S: Maintained 4262F: Documentation/networking/README.ipw2100 4263F: Documentation/networking/README.ipw2200 4264F: drivers/net/wireless/ipw2x00/ 4265 4266INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) 4267M: Richard L Maliszewski <richard.l.maliszewski@intel.com> 4268M: Gang Wei <gang.wei@intel.com> 4269M: Shane Wang <shane.wang@intel.com> 4270L: tboot-devel@lists.sourceforge.net 4271W: http://tboot.sourceforge.net 4272T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot 4273S: Supported 4274F: Documentation/intel_txt.txt 4275F: include/linux/tboot.h 4276F: arch/x86/kernel/tboot.c 4277 4278INTEL WIRELESS WIMAX CONNECTION 2400 4279M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 4280M: linux-wimax@intel.com 4281L: wimax@linuxwimax.org 4282S: Supported 4283W: http://linuxwimax.org 4284F: Documentation/wimax/README.i2400m 4285F: drivers/net/wimax/i2400m/ 4286F: include/uapi/linux/wimax/i2400m.h 4287 4288INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy) 4289M: Stanislaw Gruszka <sgruszka@redhat.com> 4290L: linux-wireless@vger.kernel.org 4291S: Supported 4292F: drivers/net/wireless/iwlegacy/ 4293 4294INTEL WIRELESS WIFI LINK (iwlwifi) 4295M: Johannes Berg <johannes.berg@intel.com> 4296M: Wey-Yi Guy <wey-yi.w.guy@intel.com> 4297M: Intel Linux Wireless <ilw@linux.intel.com> 4298L: linux-wireless@vger.kernel.org 4299W: http://intellinuxwireless.org 4300T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git 4301S: Supported 4302F: drivers/net/wireless/iwlwifi/ 4303 4304INTEL MANAGEMENT ENGINE (mei) 4305M: Tomas Winkler <tomas.winkler@intel.com> 4306L: linux-kernel@vger.kernel.org 4307S: Supported 4308F: include/uapi/linux/mei.h 4309F: drivers/misc/mei/* 4310F: Documentation/misc-devices/mei/* 4311 4312IOC3 ETHERNET DRIVER 4313M: Ralf Baechle <ralf@linux-mips.org> 4314L: linux-mips@linux-mips.org 4315S: Maintained 4316F: drivers/net/ethernet/sgi/ioc3-eth.c 4317 4318IOC3 SERIAL DRIVER 4319M: Pat Gefre <pfg@sgi.com> 4320L: linux-serial@vger.kernel.org 4321S: Maintained 4322F: drivers/tty/serial/ioc3_serial.c 4323 4324IP MASQUERADING 4325M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> 4326S: Maintained 4327F: net/ipv4/netfilter/ipt_MASQUERADE.c 4328 4329IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER 4330M: Francois Romieu <romieu@fr.zoreil.com> 4331M: Sorbica Shieh <sorbica@icplus.com.tw> 4332L: netdev@vger.kernel.org 4333S: Maintained 4334F: drivers/net/ethernet/icplus/ipg.* 4335 4336IPATH DRIVER 4337M: Mike Marciniszyn <infinipath@intel.com> 4338L: linux-rdma@vger.kernel.org 4339S: Maintained 4340F: drivers/infiniband/hw/ipath/ 4341 4342IPMI SUBSYSTEM 4343M: Corey Minyard <minyard@acm.org> 4344L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) 4345W: http://openipmi.sourceforge.net/ 4346S: Supported 4347F: Documentation/IPMI.txt 4348F: drivers/char/ipmi/ 4349F: include/linux/ipmi* 4350F: include/uapi/linux/ipmi* 4351 4352IPS SCSI RAID DRIVER 4353M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 4354L: linux-scsi@vger.kernel.org 4355W: http://www.adaptec.com/ 4356S: Maintained 4357F: drivers/scsi/ips* 4358 4359IPVS 4360M: Wensong Zhang <wensong@linux-vs.org> 4361M: Simon Horman <horms@verge.net.au> 4362M: Julian Anastasov <ja@ssi.bg> 4363L: netdev@vger.kernel.org 4364L: lvs-devel@vger.kernel.org 4365S: Maintained 4366F: Documentation/networking/ipvs-sysctl.txt 4367F: include/net/ip_vs.h 4368F: include/uapi/linux/ip_vs.h 4369F: net/netfilter/ipvs/ 4370 4371IPWIRELESS DRIVER 4372M: Jiri Kosina <jkosina@suse.cz> 4373M: David Sterba <dsterba@suse.cz> 4374S: Odd Fixes 4375F: drivers/tty/ipwireless/ 4376 4377IPX NETWORK LAYER 4378M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 4379L: netdev@vger.kernel.org 4380S: Maintained 4381F: include/net/ipx.h 4382F: include/uapi/linux/ipx.h 4383F: net/ipx/ 4384 4385IRDA SUBSYSTEM 4386M: Samuel Ortiz <samuel@sortiz.org> 4387L: irda-users@lists.sourceforge.net (subscribers-only) 4388L: netdev@vger.kernel.org 4389W: http://irda.sourceforge.net/ 4390S: Maintained 4391T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git 4392F: Documentation/networking/irda.txt 4393F: drivers/net/irda/ 4394F: include/net/irda/ 4395F: net/irda/ 4396 4397IRQ SUBSYSTEM 4398M: Thomas Gleixner <tglx@linutronix.de> 4399S: Maintained 4400T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core 4401F: kernel/irq/ 4402F: drivers/irqchip/ 4403 4404IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY) 4405M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 4406M: Grant Likely <grant.likely@linaro.org> 4407T: git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next 4408S: Maintained 4409F: Documentation/IRQ-domain.txt 4410F: include/linux/irqdomain.h 4411F: kernel/irq/irqdomain.c 4412 4413ISAPNP 4414M: Jaroslav Kysela <perex@perex.cz> 4415S: Maintained 4416F: Documentation/isapnp.txt 4417F: drivers/pnp/isapnp/ 4418F: include/linux/isapnp.h 4419 4420ISA RADIO MODULE 4421M: Hans Verkuil <hverkuil@xs4all.nl> 4422L: linux-media@vger.kernel.org 4423T: git git://linuxtv.org/media_tree.git 4424W: http://linuxtv.org 4425S: Maintained 4426F: drivers/media/radio/radio-isa* 4427 4428iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER 4429M: Peter Jones <pjones@redhat.com> 4430M: Konrad Rzeszutek Wilk <konrad@kernel.org> 4431S: Maintained 4432F: drivers/firmware/iscsi_ibft* 4433 4434ISCSI 4435M: Mike Christie <michaelc@cs.wisc.edu> 4436L: open-iscsi@googlegroups.com 4437W: www.open-iscsi.org 4438T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git 4439S: Maintained 4440F: drivers/scsi/*iscsi* 4441F: include/scsi/*iscsi* 4442 4443ISDN SUBSYSTEM 4444M: Karsten Keil <isdn@linux-pingi.de> 4445L: isdn4linux@listserv.isdn4linux.de (subscribers-only) 4446L: netdev@vger.kernel.org 4447W: http://www.isdn4linux.de 4448T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git 4449S: Maintained 4450F: Documentation/isdn/ 4451F: drivers/isdn/ 4452F: include/linux/isdn.h 4453F: include/linux/isdn/ 4454F: include/uapi/linux/isdn.h 4455F: include/uapi/linux/isdn/ 4456 4457ISDN SUBSYSTEM (Eicon active card driver) 4458M: Armin Schindler <mac@melware.de> 4459L: isdn4linux@listserv.isdn4linux.de (subscribers-only) 4460W: http://www.melware.de 4461S: Maintained 4462F: drivers/isdn/hardware/eicon/ 4463 4464IT87 HARDWARE MONITORING DRIVER 4465M: Jean Delvare <khali@linux-fr.org> 4466L: lm-sensors@lm-sensors.org 4467S: Maintained 4468F: Documentation/hwmon/it87 4469F: drivers/hwmon/it87.c 4470 4471IT913X MEDIA DRIVER 4472M: Malcolm Priestley <tvboxspy@gmail.com> 4473L: linux-media@vger.kernel.org 4474W: http://linuxtv.org/ 4475Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4476S: Maintained 4477F: drivers/media/usb/dvb-usb-v2/it913x* 4478 4479IT913X FE MEDIA DRIVER 4480M: Malcolm Priestley <tvboxspy@gmail.com> 4481L: linux-media@vger.kernel.org 4482W: http://linuxtv.org/ 4483Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4484S: Maintained 4485F: drivers/media/dvb-frontends/it913x-fe* 4486 4487IT913X MEDIA DRIVER 4488M: Antti Palosaari <crope@iki.fi> 4489L: linux-media@vger.kernel.org 4490W: http://linuxtv.org/ 4491W: http://palosaari.fi/linux/ 4492Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4493T: git git://linuxtv.org/anttip/media_tree.git 4494S: Maintained 4495F: drivers/media/tuners/it913x* 4496 4497IVTV VIDEO4LINUX DRIVER 4498M: Andy Walls <awalls@md.metrocast.net> 4499L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) 4500L: linux-media@vger.kernel.org 4501T: git git://linuxtv.org/media_tree.git 4502W: http://www.ivtvdriver.org 4503S: Maintained 4504F: Documentation/video4linux/*.ivtv 4505F: drivers/media/pci/ivtv/ 4506F: include/uapi/linux/ivtv* 4507 4508IX2505V MEDIA DRIVER 4509M: Malcolm Priestley <tvboxspy@gmail.com> 4510L: linux-media@vger.kernel.org 4511W: http://linuxtv.org/ 4512Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4513S: Maintained 4514F: drivers/media/dvb-frontends/ix2505v* 4515 4516JC42.4 TEMPERATURE SENSOR DRIVER 4517M: Guenter Roeck <linux@roeck-us.net> 4518L: lm-sensors@lm-sensors.org 4519S: Maintained 4520F: drivers/hwmon/jc42.c 4521F: Documentation/hwmon/jc42 4522 4523JFS FILESYSTEM 4524M: Dave Kleikamp <shaggy@kernel.org> 4525L: jfs-discussion@lists.sourceforge.net 4526W: http://jfs.sourceforge.net/ 4527T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git 4528S: Maintained 4529F: Documentation/filesystems/jfs.txt 4530F: fs/jfs/ 4531 4532JME NETWORK DRIVER 4533M: Guo-Fu Tseng <cooldavid@cooldavid.org> 4534L: netdev@vger.kernel.org 4535S: Maintained 4536F: drivers/net/ethernet/jme.* 4537 4538JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) 4539M: David Woodhouse <dwmw2@infradead.org> 4540L: linux-mtd@lists.infradead.org 4541W: http://www.linux-mtd.infradead.org/doc/jffs2.html 4542S: Maintained 4543F: fs/jffs2/ 4544F: include/uapi/linux/jffs2.h 4545 4546JOURNALLING LAYER FOR BLOCK DEVICES (JBD) 4547M: Andrew Morton <akpm@linux-foundation.org> 4548M: Jan Kara <jack@suse.cz> 4549L: linux-ext4@vger.kernel.org 4550S: Maintained 4551F: fs/jbd/ 4552F: include/linux/jbd.h 4553 4554JOURNALLING LAYER FOR BLOCK DEVICES (JBD2) 4555M: "Theodore Ts'o" <tytso@mit.edu> 4556L: linux-ext4@vger.kernel.org 4557S: Maintained 4558F: fs/jbd2/ 4559F: include/linux/jbd2.h 4560 4561JSM Neo PCI based serial card 4562M: Lucas Tavares <lucaskt@linux.vnet.ibm.com> 4563L: linux-serial@vger.kernel.org 4564S: Maintained 4565F: drivers/tty/serial/jsm/ 4566 4567K10TEMP HARDWARE MONITORING DRIVER 4568M: Clemens Ladisch <clemens@ladisch.de> 4569L: lm-sensors@lm-sensors.org 4570S: Maintained 4571F: Documentation/hwmon/k10temp 4572F: drivers/hwmon/k10temp.c 4573 4574K8TEMP HARDWARE MONITORING DRIVER 4575M: Rudolf Marek <r.marek@assembler.cz> 4576L: lm-sensors@lm-sensors.org 4577S: Maintained 4578F: Documentation/hwmon/k8temp 4579F: drivers/hwmon/k8temp.c 4580 4581KCONFIG 4582M: Michal Marek <mmarek@suse.cz> 4583L: linux-kbuild@vger.kernel.org 4584S: Odd Fixes 4585F: Documentation/kbuild/kconfig-language.txt 4586F: scripts/kconfig/ 4587 4588KDUMP 4589M: Vivek Goyal <vgoyal@redhat.com> 4590M: Haren Myneni <hbabu@us.ibm.com> 4591L: kexec@lists.infradead.org 4592W: http://lse.sourceforge.net/kdump/ 4593S: Maintained 4594F: Documentation/kdump/ 4595 4596KEENE FM RADIO TRANSMITTER DRIVER 4597M: Hans Verkuil <hverkuil@xs4all.nl> 4598L: linux-media@vger.kernel.org 4599T: git git://linuxtv.org/media_tree.git 4600W: http://linuxtv.org 4601S: Maintained 4602F: drivers/media/radio/radio-keene* 4603 4604KERNEL AUTOMOUNTER v4 (AUTOFS4) 4605M: Ian Kent <raven@themaw.net> 4606L: autofs@vger.kernel.org 4607S: Maintained 4608F: fs/autofs4/ 4609 4610KERNEL BUILD + files below scripts/ (unless maintained elsewhere) 4611M: Michal Marek <mmarek@suse.cz> 4612T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next 4613T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes 4614L: linux-kbuild@vger.kernel.org 4615S: Maintained 4616F: Documentation/kbuild/ 4617F: Makefile 4618F: scripts/Makefile.* 4619F: scripts/basic/ 4620F: scripts/mk* 4621F: scripts/package/ 4622 4623KERNEL JANITORS 4624L: kernel-janitors@vger.kernel.org 4625W: http://kernelnewbies.org/KernelJanitors 4626S: Odd Fixes 4627 4628KERNEL NFSD, SUNRPC, AND LOCKD SERVERS 4629M: "J. Bruce Fields" <bfields@fieldses.org> 4630L: linux-nfs@vger.kernel.org 4631W: http://nfs.sourceforge.net/ 4632S: Supported 4633F: fs/nfsd/ 4634F: include/linux/nfsd/ 4635F: include/uapi/linux/nfsd/ 4636F: fs/lockd/ 4637F: fs/nfs_common/ 4638F: net/sunrpc/ 4639F: include/linux/lockd/ 4640F: include/linux/sunrpc/ 4641F: include/uapi/linux/sunrpc/ 4642 4643KERNEL VIRTUAL MACHINE (KVM) 4644M: Marcelo Tosatti <mtosatti@redhat.com> 4645M: Gleb Natapov <gleb@redhat.com> 4646L: kvm@vger.kernel.org 4647W: http://kvm.qumranet.com 4648S: Supported 4649F: Documentation/*/kvm.txt 4650F: arch/*/kvm/ 4651F: arch/*/include/asm/kvm* 4652F: include/linux/kvm* 4653F: include/uapi/linux/kvm* 4654F: virt/kvm/ 4655 4656KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V 4657M: Joerg Roedel <joro@8bytes.org> 4658L: kvm@vger.kernel.org 4659W: http://kvm.qumranet.com 4660S: Maintained 4661F: arch/x86/include/asm/svm.h 4662F: arch/x86/kvm/svm.c 4663 4664KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC 4665M: Alexander Graf <agraf@suse.de> 4666L: kvm-ppc@vger.kernel.org 4667W: http://kvm.qumranet.com 4668T: git git://github.com/agraf/linux-2.6.git 4669S: Supported 4670F: arch/powerpc/include/asm/kvm* 4671F: arch/powerpc/kvm/ 4672 4673KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) 4674M: Xiantao Zhang <xiantao.zhang@intel.com> 4675L: kvm-ia64@vger.kernel.org 4676W: http://kvm.qumranet.com 4677S: Supported 4678F: Documentation/ia64/kvm.txt 4679F: arch/ia64/include/asm/kvm* 4680F: arch/ia64/kvm/ 4681 4682KERNEL VIRTUAL MACHINE for s390 (KVM/s390) 4683M: Christian Borntraeger <borntraeger@de.ibm.com> 4684M: Cornelia Huck <cornelia.huck@de.ibm.com> 4685M: linux390@de.ibm.com 4686L: linux-s390@vger.kernel.org 4687W: http://www.ibm.com/developerworks/linux/linux390/ 4688S: Supported 4689F: Documentation/s390/kvm.txt 4690F: arch/s390/include/asm/kvm* 4691F: arch/s390/kvm/ 4692F: drivers/s390/kvm/ 4693 4694KERNEL VIRTUAL MACHINE (KVM) FOR ARM 4695M: Christoffer Dall <cdall@cs.columbia.edu> 4696L: kvmarm@lists.cs.columbia.edu 4697W: http://systems.cs.columbia.edu/projects/kvm-arm 4698S: Maintained 4699F: arch/arm/include/uapi/asm/kvm* 4700F: arch/arm/include/asm/kvm* 4701F: arch/arm/kvm/ 4702 4703KEXEC 4704M: Eric Biederman <ebiederm@xmission.com> 4705W: http://kernel.org/pub/linux/utils/kernel/kexec/ 4706L: kexec@lists.infradead.org 4707S: Maintained 4708F: include/linux/kexec.h 4709F: include/uapi/linux/kexec.h 4710F: kernel/kexec.c 4711 4712KEYS/KEYRINGS: 4713M: David Howells <dhowells@redhat.com> 4714L: keyrings@linux-nfs.org 4715S: Maintained 4716F: Documentation/security/keys.txt 4717F: include/linux/key.h 4718F: include/linux/key-type.h 4719F: include/keys/ 4720F: security/keys/ 4721 4722KEYS-TRUSTED 4723M: David Safford <safford@watson.ibm.com> 4724M: Mimi Zohar <zohar@us.ibm.com> 4725L: linux-security-module@vger.kernel.org 4726L: keyrings@linux-nfs.org 4727S: Supported 4728F: Documentation/security/keys-trusted-encrypted.txt 4729F: include/keys/trusted-type.h 4730F: security/keys/trusted.c 4731F: security/keys/trusted.h 4732 4733KEYS-ENCRYPTED 4734M: Mimi Zohar <zohar@us.ibm.com> 4735M: David Safford <safford@watson.ibm.com> 4736L: linux-security-module@vger.kernel.org 4737L: keyrings@linux-nfs.org 4738S: Supported 4739F: Documentation/security/keys-trusted-encrypted.txt 4740F: include/keys/encrypted-type.h 4741F: security/keys/encrypted-keys/ 4742 4743KGDB / KDB /debug_core 4744M: Jason Wessel <jason.wessel@windriver.com> 4745W: http://kgdb.wiki.kernel.org/ 4746L: kgdb-bugreport@lists.sourceforge.net 4747S: Maintained 4748F: Documentation/DocBook/kgdb.tmpl 4749F: drivers/misc/kgdbts.c 4750F: drivers/tty/serial/kgdboc.c 4751F: include/linux/kdb.h 4752F: include/linux/kgdb.h 4753F: kernel/debug/ 4754 4755KMEMCHECK 4756M: Vegard Nossum <vegardno@ifi.uio.no> 4757M: Pekka Enberg <penberg@kernel.org> 4758S: Maintained 4759F: Documentation/kmemcheck.txt 4760F: arch/x86/include/asm/kmemcheck.h 4761F: arch/x86/mm/kmemcheck/ 4762F: include/linux/kmemcheck.h 4763F: mm/kmemcheck.c 4764 4765KMEMLEAK 4766M: Catalin Marinas <catalin.marinas@arm.com> 4767S: Maintained 4768F: Documentation/kmemleak.txt 4769F: include/linux/kmemleak.h 4770F: mm/kmemleak.c 4771F: mm/kmemleak-test.c 4772 4773KPROBES 4774M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> 4775M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> 4776M: "David S. Miller" <davem@davemloft.net> 4777M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> 4778S: Maintained 4779F: Documentation/kprobes.txt 4780F: include/linux/kprobes.h 4781F: kernel/kprobes.c 4782 4783KS0108 LCD CONTROLLER DRIVER 4784M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 4785W: http://miguelojeda.es/auxdisplay.htm 4786W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 4787S: Maintained 4788F: Documentation/auxdisplay/ks0108 4789F: drivers/auxdisplay/ks0108.c 4790F: include/linux/ks0108.h 4791 4792LAPB module 4793L: linux-x25@vger.kernel.org 4794S: Orphan 4795F: Documentation/networking/lapb-module.txt 4796F: include/*/lapb.h 4797F: net/lapb/ 4798 4799LASI 53c700 driver for PARISC 4800M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 4801L: linux-scsi@vger.kernel.org 4802S: Maintained 4803F: Documentation/scsi/53c700.txt 4804F: drivers/scsi/53c700* 4805 4806LED SUBSYSTEM 4807M: Bryan Wu <cooloney@gmail.com> 4808M: Richard Purdie <rpurdie@rpsys.net> 4809L: linux-leds@vger.kernel.org 4810T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git 4811S: Maintained 4812F: drivers/leds/ 4813F: include/linux/leds.h 4814 4815LEGACY EEPROM DRIVER 4816M: Jean Delvare <khali@linux-fr.org> 4817S: Maintained 4818F: Documentation/misc-devices/eeprom 4819F: drivers/misc/eeprom/eeprom.c 4820 4821LEGO USB Tower driver 4822M: Juergen Stuber <starblue@users.sourceforge.net> 4823L: legousb-devel@lists.sourceforge.net 4824W: http://legousb.sourceforge.net/ 4825S: Maintained 4826F: drivers/usb/misc/legousbtower.c 4827 4828LG2160 MEDIA DRIVER 4829M: Michael Krufky <mkrufky@linuxtv.org> 4830L: linux-media@vger.kernel.org 4831W: http://linuxtv.org/ 4832W: http://github.com/mkrufky 4833Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4834T: git git://linuxtv.org/mkrufky/tuners.git 4835S: Maintained 4836F: drivers/media/dvb-frontends/lg2160.* 4837 4838LGDT3305 MEDIA DRIVER 4839M: Michael Krufky <mkrufky@linuxtv.org> 4840L: linux-media@vger.kernel.org 4841W: http://linuxtv.org/ 4842W: http://github.com/mkrufky 4843Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4844T: git git://linuxtv.org/mkrufky/tuners.git 4845S: Maintained 4846F: drivers/media/dvb-frontends/lgdt3305.* 4847 4848LGUEST 4849M: Rusty Russell <rusty@rustcorp.com.au> 4850L: lguest@lists.ozlabs.org 4851W: http://lguest.ozlabs.org/ 4852S: Odd Fixes 4853F: arch/x86/include/asm/lguest*.h 4854F: arch/x86/lguest/ 4855F: drivers/lguest/ 4856F: include/linux/lguest*.h 4857F: tools/lguest/ 4858 4859LINUX FOR IBM pSERIES (RS/6000) 4860M: Paul Mackerras <paulus@au.ibm.com> 4861W: http://www.ibm.com/linux/ltc/projects/ppc 4862S: Supported 4863F: arch/powerpc/boot/rs6000.h 4864 4865LINUX FOR POWERPC (32-BIT AND 64-BIT) 4866M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 4867M: Paul Mackerras <paulus@samba.org> 4868W: http://www.penguinppc.org/ 4869L: linuxppc-dev@lists.ozlabs.org 4870Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ 4871T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git 4872S: Supported 4873F: Documentation/powerpc/ 4874F: arch/powerpc/ 4875 4876LINUX FOR POWER MACINTOSH 4877M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 4878W: http://www.penguinppc.org/ 4879L: linuxppc-dev@lists.ozlabs.org 4880S: Maintained 4881F: arch/powerpc/platforms/powermac/ 4882F: drivers/macintosh/ 4883 4884LINUX FOR POWERPC EMBEDDED MPC5XXX 4885M: Anatolij Gustschin <agust@denx.de> 4886L: linuxppc-dev@lists.ozlabs.org 4887T: git git://git.denx.de/linux-2.6-agust.git 4888S: Maintained 4889F: arch/powerpc/platforms/512x/ 4890F: arch/powerpc/platforms/52xx/ 4891 4892LINUX FOR POWERPC EMBEDDED PPC4XX 4893M: Josh Boyer <jwboyer@gmail.com> 4894M: Matt Porter <mporter@kernel.crashing.org> 4895W: http://www.penguinppc.org/ 4896L: linuxppc-dev@lists.ozlabs.org 4897T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git 4898S: Maintained 4899F: arch/powerpc/platforms/40x/ 4900F: arch/powerpc/platforms/44x/ 4901 4902LINUX FOR POWERPC EMBEDDED XILINX VIRTEX 4903L: linuxppc-dev@lists.ozlabs.org 4904S: Unmaintained 4905F: arch/powerpc/*/*virtex* 4906F: arch/powerpc/*/*/*virtex* 4907 4908LINUX FOR POWERPC EMBEDDED PPC8XX 4909M: Vitaly Bordug <vitb@kernel.crashing.org> 4910M: Marcelo Tosatti <marcelo@kvack.org> 4911W: http://www.penguinppc.org/ 4912L: linuxppc-dev@lists.ozlabs.org 4913S: Maintained 4914F: arch/powerpc/platforms/8xx/ 4915 4916LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX 4917M: Kumar Gala <galak@kernel.crashing.org> 4918W: http://www.penguinppc.org/ 4919L: linuxppc-dev@lists.ozlabs.org 4920S: Maintained 4921F: arch/powerpc/platforms/83xx/ 4922F: arch/powerpc/platforms/85xx/ 4923 4924LINUX FOR POWERPC PA SEMI PWRFICIENT 4925M: Olof Johansson <olof@lixom.net> 4926L: linuxppc-dev@lists.ozlabs.org 4927S: Maintained 4928F: arch/powerpc/platforms/pasemi/ 4929F: drivers/*/*pasemi* 4930F: drivers/*/*/*pasemi* 4931 4932LINUX SECURITY MODULE (LSM) FRAMEWORK 4933M: Chris Wright <chrisw@sous-sol.org> 4934L: linux-security-module@vger.kernel.org 4935S: Supported 4936 4937LIS3LV02D ACCELEROMETER DRIVER 4938M: Eric Piel <eric.piel@tremplin-utc.net> 4939S: Maintained 4940F: Documentation/misc-devices/lis3lv02d 4941F: drivers/misc/lis3lv02d/ 4942F: drivers/platform/x86/hp_accel.c 4943 4944LLC (802.2) 4945M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 4946S: Maintained 4947F: include/linux/llc.h 4948F: include/uapi/linux/llc.h 4949F: include/net/llc* 4950F: net/llc/ 4951 4952LM73 HARDWARE MONITOR DRIVER 4953M: Guillaume Ligneul <guillaume.ligneul@gmail.com> 4954L: lm-sensors@lm-sensors.org 4955S: Maintained 4956F: drivers/hwmon/lm73.c 4957 4958LM78 HARDWARE MONITOR DRIVER 4959M: Jean Delvare <khali@linux-fr.org> 4960L: lm-sensors@lm-sensors.org 4961S: Maintained 4962F: Documentation/hwmon/lm78 4963F: drivers/hwmon/lm78.c 4964 4965LM83 HARDWARE MONITOR DRIVER 4966M: Jean Delvare <khali@linux-fr.org> 4967L: lm-sensors@lm-sensors.org 4968S: Maintained 4969F: Documentation/hwmon/lm83 4970F: drivers/hwmon/lm83.c 4971 4972LM90 HARDWARE MONITOR DRIVER 4973M: Jean Delvare <khali@linux-fr.org> 4974L: lm-sensors@lm-sensors.org 4975S: Maintained 4976F: Documentation/hwmon/lm90 4977F: drivers/hwmon/lm90.c 4978 4979LME2510 MEDIA DRIVER 4980M: Malcolm Priestley <tvboxspy@gmail.com> 4981L: linux-media@vger.kernel.org 4982W: http://linuxtv.org/ 4983Q: http://patchwork.linuxtv.org/project/linux-media/list/ 4984S: Maintained 4985F: drivers/media/usb/dvb-usb-v2/lmedm04* 4986 4987LOCKDEP AND LOCKSTAT 4988M: Peter Zijlstra <peterz@infradead.org> 4989M: Ingo Molnar <mingo@redhat.com> 4990T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking 4991S: Maintained 4992F: Documentation/lockdep*.txt 4993F: Documentation/lockstat.txt 4994F: include/linux/lockdep.h 4995F: kernel/lockdep* 4996 4997LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) 4998M: "Richard Russon (FlatCap)" <ldm@flatcap.org> 4999L: linux-ntfs-dev@lists.sourceforge.net 5000W: http://www.linux-ntfs.org/content/view/19/37/ 5001S: Maintained 5002F: Documentation/ldm.txt 5003F: block/partitions/ldm.* 5004 5005LogFS 5006M: Joern Engel <joern@logfs.org> 5007M: Prasad Joshi <prasadjoshi.linux@gmail.com> 5008L: logfs@logfs.org 5009W: logfs.org 5010S: Maintained 5011F: fs/logfs/ 5012 5013LPC32XX MACHINE SUPPORT 5014M: Roland Stigge <stigge@antcom.de> 5015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5016S: Maintained 5017F: arch/arm/mach-lpc32xx/ 5018 5019LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) 5020M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com> 5021M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com> 5022M: support@lsi.com 5023L: DL-MPTFusionLinux@lsi.com 5024L: linux-scsi@vger.kernel.org 5025W: http://www.lsilogic.com/support 5026S: Supported 5027F: drivers/message/fusion/ 5028F: drivers/scsi/mpt2sas/ 5029F: drivers/scsi/mpt3sas/ 5030 5031LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers 5032M: Matthew Wilcox <matthew@wil.cx> 5033L: linux-scsi@vger.kernel.org 5034S: Maintained 5035F: drivers/scsi/sym53c8xx_2/ 5036 5037LTC4261 HARDWARE MONITOR DRIVER 5038M: Guenter Roeck <linux@roeck-us.net> 5039L: lm-sensors@lm-sensors.org 5040S: Maintained 5041F: Documentation/hwmon/ltc4261 5042F: drivers/hwmon/ltc4261.c 5043 5044LTP (Linux Test Project) 5045M: Shubham Goyal <shubham@linux.vnet.ibm.com> 5046M: Mike Frysinger <vapier@gentoo.org> 5047M: Cyril Hrubis <chrubis@suse.cz> 5048M: Caspar Zhang <caspar@casparzhang.com> 5049M: Wanlong Gao <gaowanlong@cn.fujitsu.com> 5050L: ltp-list@lists.sourceforge.net (subscribers-only) 5051W: http://ltp.sourceforge.net/ 5052T: git git://github.com/linux-test-project/ltp.git 5053T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev 5054S: Maintained 5055 5056M32R ARCHITECTURE 5057M: Hirokazu Takata <takata@linux-m32r.org> 5058L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers) 5059L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) 5060W: http://www.linux-m32r.org/ 5061S: Maintained 5062F: arch/m32r/ 5063 5064M68K ARCHITECTURE 5065M: Geert Uytterhoeven <geert@linux-m68k.org> 5066L: linux-m68k@lists.linux-m68k.org 5067W: http://www.linux-m68k.org/ 5068T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git 5069S: Maintained 5070F: arch/m68k/ 5071F: drivers/zorro/ 5072 5073M68K ON APPLE MACINTOSH 5074M: Joshua Thompson <funaho@jurai.org> 5075W: http://www.mac.linux-m68k.org/ 5076L: linux-m68k@lists.linux-m68k.org 5077S: Maintained 5078F: arch/m68k/mac/ 5079 5080M68K ON HP9000/300 5081M: Philip Blundell <philb@gnu.org> 5082W: http://www.tazenda.demon.co.uk/phil/linux-hp 5083S: Maintained 5084F: arch/m68k/hp300/ 5085 5086M88RS2000 MEDIA DRIVER 5087M: Malcolm Priestley <tvboxspy@gmail.com> 5088L: linux-media@vger.kernel.org 5089W: http://linuxtv.org/ 5090Q: http://patchwork.linuxtv.org/project/linux-media/list/ 5091S: Maintained 5092F: drivers/media/dvb-frontends/m88rs2000* 5093 5094MA901 MASTERKIT USB FM RADIO DRIVER 5095M: Alexey Klimov <klimov.linux@gmail.com> 5096L: linux-media@vger.kernel.org 5097T: git git://linuxtv.org/media_tree.git 5098S: Maintained 5099F: drivers/media/radio/radio-ma901.c 5100 5101MAC80211 5102M: Johannes Berg <johannes@sipsolutions.net> 5103L: linux-wireless@vger.kernel.org 5104W: http://wireless.kernel.org/ 5105T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git 5106T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git 5107S: Maintained 5108F: Documentation/networking/mac80211-injection.txt 5109F: include/net/mac80211.h 5110F: net/mac80211/ 5111 5112MAC80211 PID RATE CONTROL 5113M: Stefano Brivio <stefano.brivio@polimi.it> 5114M: Mattias Nissler <mattias.nissler@gmx.de> 5115L: linux-wireless@vger.kernel.org 5116W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID 5117T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git 5118T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git 5119S: Maintained 5120F: net/mac80211/rc80211_pid* 5121 5122MACVLAN DRIVER 5123M: Patrick McHardy <kaber@trash.net> 5124L: netdev@vger.kernel.org 5125S: Maintained 5126F: drivers/net/macvlan.c 5127F: include/linux/if_macvlan.h 5128 5129MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 5130M: Michael Kerrisk <mtk.manpages@gmail.com> 5131W: http://www.kernel.org/doc/man-pages 5132L: linux-man@vger.kernel.org 5133S: Maintained 5134 5135MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2) 5136M: Mirko Lindner <mlindner@marvell.com> 5137M: Stephen Hemminger <stephen@networkplumber.org> 5138L: netdev@vger.kernel.org 5139S: Maintained 5140F: drivers/net/ethernet/marvell/sk* 5141 5142MARVELL LIBERTAS WIRELESS DRIVER 5143L: libertas-dev@lists.infradead.org 5144S: Orphan 5145F: drivers/net/wireless/libertas/ 5146 5147MARVELL MV643XX ETHERNET DRIVER 5148M: Lennert Buytenhek <buytenh@wantstofly.org> 5149L: netdev@vger.kernel.org 5150S: Maintained 5151F: drivers/net/ethernet/marvell/mv643xx_eth.* 5152F: include/linux/mv643xx.h 5153 5154MARVELL MVNETA ETHERNET DRIVER 5155M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 5156L: netdev@vger.kernel.org 5157S: Maintained 5158F: drivers/net/ethernet/marvell/mvneta.* 5159 5160MARVELL MWIFIEX WIRELESS DRIVER 5161M: Bing Zhao <bzhao@marvell.com> 5162L: linux-wireless@vger.kernel.org 5163S: Maintained 5164F: drivers/net/wireless/mwifiex/ 5165 5166MARVELL MWL8K WIRELESS DRIVER 5167M: Lennert Buytenhek <buytenh@wantstofly.org> 5168L: linux-wireless@vger.kernel.org 5169S: Odd Fixes 5170F: drivers/net/wireless/mwl8k.c 5171 5172MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER 5173M: Nicolas Pitre <nico@fluxnic.net> 5174S: Odd Fixes 5175F: drivers/mmc/host/mvsdio.* 5176 5177MATROX FRAMEBUFFER DRIVER 5178L: linux-fbdev@vger.kernel.org 5179S: Orphan 5180F: drivers/video/matrox/matroxfb_* 5181F: include/uapi/linux/matroxfb.h 5182 5183MAX16065 HARDWARE MONITOR DRIVER 5184M: Guenter Roeck <linux@roeck-us.net> 5185L: lm-sensors@lm-sensors.org 5186S: Maintained 5187F: Documentation/hwmon/max16065 5188F: drivers/hwmon/max16065.c 5189 5190MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER 5191M: "Hans J. Koch" <hjk@hansjkoch.de> 5192L: lm-sensors@lm-sensors.org 5193S: Maintained 5194F: Documentation/hwmon/max6650 5195F: drivers/hwmon/max6650.c 5196 5197MAX6697 HARDWARE MONITOR DRIVER 5198M: Guenter Roeck <linux@roeck-us.net> 5199L: lm-sensors@lm-sensors.org 5200S: Maintained 5201F: Documentation/hwmon/max6697 5202F: Documentation/devicetree/bindings/i2c/max6697.txt 5203F: drivers/hwmon/max6697.c 5204F: include/linux/platform_data/max6697.h 5205 5206MAXIRADIO FM RADIO RECEIVER DRIVER 5207M: Hans Verkuil <hverkuil@xs4all.nl> 5208L: linux-media@vger.kernel.org 5209T: git git://linuxtv.org/media_tree.git 5210W: http://linuxtv.org 5211S: Maintained 5212F: drivers/media/radio/radio-maxiradio* 5213 5214MEDIA INPUT INFRASTRUCTURE (V4L/DVB) 5215M: Mauro Carvalho Chehab <mchehab@redhat.com> 5216P: LinuxTV.org Project 5217L: linux-media@vger.kernel.org 5218W: http://linuxtv.org 5219Q: http://patchwork.kernel.org/project/linux-media/list/ 5220T: git git://linuxtv.org/media_tree.git 5221S: Maintained 5222F: Documentation/dvb/ 5223F: Documentation/video4linux/ 5224F: Documentation/DocBook/media/ 5225F: drivers/media/ 5226F: drivers/staging/media/ 5227F: include/media/ 5228F: include/uapi/linux/dvb/ 5229F: include/uapi/linux/videodev2.h 5230F: include/uapi/linux/media.h 5231F: include/uapi/linux/v4l2-* 5232F: include/uapi/linux/meye.h 5233F: include/uapi/linux/ivtv* 5234F: include/uapi/linux/uvcvideo.h 5235 5236MEDIAVISION PRO MOVIE STUDIO DRIVER 5237M: Hans Verkuil <hverkuil@xs4all.nl> 5238L: linux-media@vger.kernel.org 5239T: git git://linuxtv.org/media_tree.git 5240W: http://linuxtv.org 5241S: Odd Fixes 5242F: drivers/media/parport/pms* 5243 5244MEGARAID SCSI DRIVERS 5245M: Neela Syam Kolli <megaraidlinux@lsi.com> 5246L: linux-scsi@vger.kernel.org 5247W: http://megaraid.lsilogic.com 5248S: Maintained 5249F: Documentation/scsi/megaraid.txt 5250F: drivers/scsi/megaraid.* 5251F: drivers/scsi/megaraid/ 5252 5253MELLANOX ETHERNET DRIVER (mlx4_en) 5254M: Amir Vadai <amirv@mellanox.com> 5255L: netdev@vger.kernel.org 5256S: Supported 5257W: http://www.mellanox.com 5258Q: http://patchwork.ozlabs.org/project/netdev/list/ 5259F: drivers/net/ethernet/mellanox/mlx4/en_* 5260 5261MEMORY MANAGEMENT 5262L: linux-mm@kvack.org 5263W: http://www.linux-mm.org 5264S: Maintained 5265F: include/linux/mm.h 5266F: include/linux/gfp.h 5267F: include/linux/mmzone.h 5268F: include/linux/memory_hotplug.h 5269F: include/linux/vmalloc.h 5270F: mm/ 5271 5272MEMORY RESOURCE CONTROLLER 5273M: Johannes Weiner <hannes@cmpxchg.org> 5274M: Michal Hocko <mhocko@suse.cz> 5275M: Balbir Singh <bsingharora@gmail.com> 5276M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> 5277L: cgroups@vger.kernel.org 5278L: linux-mm@kvack.org 5279S: Maintained 5280F: mm/memcontrol.c 5281F: mm/page_cgroup.c 5282 5283MEMORY TECHNOLOGY DEVICES (MTD) 5284M: David Woodhouse <dwmw2@infradead.org> 5285L: linux-mtd@lists.infradead.org 5286W: http://www.linux-mtd.infradead.org/ 5287Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ 5288T: git git://git.infradead.org/mtd-2.6.git 5289S: Maintained 5290F: drivers/mtd/ 5291F: include/linux/mtd/ 5292F: include/uapi/mtd/ 5293 5294METAG ARCHITECTURE 5295M: James Hogan <james.hogan@imgtec.com> 5296S: Supported 5297F: arch/metag/ 5298F: Documentation/metag/ 5299F: Documentation/devicetree/bindings/metag/ 5300F: drivers/clocksource/metag_generic.c 5301F: drivers/irqchip/irq-metag.c 5302F: drivers/irqchip/irq-metag-ext.c 5303F: drivers/tty/metag_da.c 5304F: fs/imgdafs/ 5305 5306MICROBLAZE ARCHITECTURE 5307M: Michal Simek <monstr@monstr.eu> 5308L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers) 5309W: http://www.monstr.eu/fdt/ 5310T: git git://git.monstr.eu/linux-2.6-microblaze.git 5311S: Supported 5312F: arch/microblaze/ 5313 5314MICROTEK X6 SCANNER 5315M: Oliver Neukum <oliver@neukum.org> 5316S: Maintained 5317F: drivers/usb/image/microtek.* 5318 5319MIPS 5320M: Ralf Baechle <ralf@linux-mips.org> 5321L: linux-mips@linux-mips.org 5322W: http://www.linux-mips.org/ 5323T: git git://git.linux-mips.org/pub/scm/ralf/linux.git 5324Q: http://patchwork.linux-mips.org/project/linux-mips/list/ 5325S: Supported 5326F: Documentation/mips/ 5327F: arch/mips/ 5328 5329MIROSOUND PCM20 FM RADIO RECEIVER DRIVER 5330M: Hans Verkuil <hverkuil@xs4all.nl> 5331L: linux-media@vger.kernel.org 5332T: git git://linuxtv.org/media_tree.git 5333W: http://linuxtv.org 5334S: Odd Fixes 5335F: drivers/media/radio/radio-miropcm20* 5336 5337MODULE SUPPORT 5338M: Rusty Russell <rusty@rustcorp.com.au> 5339S: Maintained 5340F: include/linux/module.h 5341F: kernel/module.c 5342 5343MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER 5344W: http://popies.net/meye/ 5345S: Orphan 5346F: Documentation/video4linux/meye.txt 5347F: drivers/media/pci/meye/ 5348F: include/uapi/linux/meye.h 5349 5350MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD 5351M: Jiri Slaby <jirislaby@gmail.com> 5352S: Maintained 5353F: Documentation/serial/moxa-smartio 5354F: drivers/tty/mxser.* 5355 5356MR800 AVERMEDIA USB FM RADIO DRIVER 5357M: Alexey Klimov <klimov.linux@gmail.com> 5358L: linux-media@vger.kernel.org 5359T: git git://linuxtv.org/media_tree.git 5360S: Maintained 5361F: drivers/media/radio/radio-mr800.c 5362 5363MSI LAPTOP SUPPORT 5364M: "Lee, Chun-Yi" <jlee@suse.com> 5365L: platform-driver-x86@vger.kernel.org 5366S: Maintained 5367F: drivers/platform/x86/msi-laptop.c 5368 5369MSI WMI SUPPORT 5370M: Anisse Astier <anisse@astier.eu> 5371L: platform-driver-x86@vger.kernel.org 5372S: Supported 5373F: drivers/platform/x86/msi-wmi.c 5374 5375MT9M032 SENSOR DRIVER 5376M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 5377L: linux-media@vger.kernel.org 5378T: git git://linuxtv.org/media_tree.git 5379S: Maintained 5380F: drivers/media/i2c/mt9m032.c 5381F: include/media/mt9m032.h 5382 5383MT9P031 SENSOR DRIVER 5384M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 5385L: linux-media@vger.kernel.org 5386T: git git://linuxtv.org/media_tree.git 5387S: Maintained 5388F: drivers/media/i2c/mt9p031.c 5389F: include/media/mt9p031.h 5390 5391MT9T001 SENSOR DRIVER 5392M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 5393L: linux-media@vger.kernel.org 5394T: git git://linuxtv.org/media_tree.git 5395S: Maintained 5396F: drivers/media/i2c/mt9t001.c 5397F: include/media/mt9t001.h 5398 5399MT9V032 SENSOR DRIVER 5400M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 5401L: linux-media@vger.kernel.org 5402T: git git://linuxtv.org/media_tree.git 5403S: Maintained 5404F: drivers/media/i2c/mt9v032.c 5405F: include/media/mt9v032.h 5406 5407MULTIFUNCTION DEVICES (MFD) 5408M: Samuel Ortiz <sameo@linux.intel.com> 5409T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git 5410S: Supported 5411F: drivers/mfd/ 5412 5413MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM 5414M: Chris Ball <cjb@laptop.org> 5415L: linux-mmc@vger.kernel.org 5416T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git 5417S: Maintained 5418F: drivers/mmc/ 5419F: include/linux/mmc/ 5420F: include/uapi/linux/mmc/ 5421 5422MULTIMEDIA CARD (MMC) ETC. OVER SPI 5423S: Orphan 5424F: drivers/mmc/host/mmc_spi.c 5425F: include/linux/spi/mmc_spi.h 5426 5427MULTISOUND SOUND DRIVER 5428M: Andrew Veliath <andrewtv@usa.net> 5429S: Maintained 5430F: Documentation/sound/oss/MultiSound 5431F: sound/oss/msnd* 5432 5433MULTITECH MULTIPORT CARD (ISICOM) 5434S: Orphan 5435F: drivers/tty/isicom.c 5436F: include/linux/isicom.h 5437 5438MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER 5439M: Felipe Balbi <balbi@ti.com> 5440L: linux-usb@vger.kernel.org 5441T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git 5442S: Maintained 5443F: drivers/usb/musb/ 5444 5445MXL5007T MEDIA DRIVER 5446M: Michael Krufky <mkrufky@linuxtv.org> 5447L: linux-media@vger.kernel.org 5448W: http://linuxtv.org/ 5449W: http://github.com/mkrufky 5450Q: http://patchwork.linuxtv.org/project/linux-media/list/ 5451T: git git://linuxtv.org/mkrufky/tuners.git 5452S: Maintained 5453F: drivers/media/tuners/mxl5007t.* 5454 5455MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) 5456M: Andrew Gallatin <gallatin@myri.com> 5457L: netdev@vger.kernel.org 5458W: http://www.myri.com/scs/download-Myri10GE.html 5459S: Supported 5460F: drivers/net/ethernet/myricom/myri10ge/ 5461 5462NATSEMI ETHERNET DRIVER (DP8381x) 5463S: Orphan 5464F: drivers/net/ethernet/natsemi/natsemi.c 5465 5466NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER 5467M: Daniel Mack <zonque@gmail.com> 5468S: Maintained 5469L: alsa-devel@alsa-project.org 5470W: http://www.native-instruments.com 5471F: sound/usb/caiaq/ 5472 5473NCP FILESYSTEM 5474M: Petr Vandrovec <petr@vandrovec.name> 5475S: Odd Fixes 5476F: fs/ncpfs/ 5477 5478NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) 5479M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 5480L: linux-scsi@vger.kernel.org 5481S: Maintained 5482F: drivers/scsi/NCR_D700.* 5483 5484NCT6775 HARDWARE MONITOR DRIVER 5485M: Guenter Roeck <linux@roeck-us.net> 5486L: lm-sensors@lm-sensors.org 5487S: Maintained 5488F: Documentation/hwmon/nct6775 5489F: drivers/hwmon/nct6775.c 5490 5491NETEFFECT IWARP RNIC DRIVER (IW_NES) 5492M: Faisal Latif <faisal.latif@intel.com> 5493L: linux-rdma@vger.kernel.org 5494W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm 5495S: Supported 5496F: drivers/infiniband/hw/nes/ 5497 5498NETEM NETWORK EMULATOR 5499M: Stephen Hemminger <stephen@networkplumber.org> 5500L: netem@lists.linux-foundation.org 5501S: Maintained 5502F: net/sched/sch_netem.c 5503 5504NETERION 10GbE DRIVERS (s2io/vxge) 5505M: Jon Mason <jdmason@kudzu.us> 5506L: netdev@vger.kernel.org 5507S: Supported 5508F: Documentation/networking/s2io.txt 5509F: Documentation/networking/vxge.txt 5510F: drivers/net/ethernet/neterion/ 5511 5512NETFILTER/IPTABLES/IPCHAINS 5513P: Harald Welte 5514P: Jozsef Kadlecsik 5515M: Pablo Neira Ayuso <pablo@netfilter.org> 5516M: Patrick McHardy <kaber@trash.net> 5517L: netfilter-devel@vger.kernel.org 5518L: netfilter@vger.kernel.org 5519L: coreteam@netfilter.org 5520W: http://www.netfilter.org/ 5521W: http://www.iptables.org/ 5522T: git git://1984.lsi.us.es/nf 5523T: git git://1984.lsi.us.es/nf-next 5524S: Supported 5525F: include/linux/netfilter* 5526F: include/linux/netfilter/ 5527F: include/net/netfilter/ 5528F: include/uapi/linux/netfilter* 5529F: include/uapi/linux/netfilter/ 5530F: net/*/netfilter.c 5531F: net/*/netfilter/ 5532F: net/netfilter/ 5533 5534NETLABEL 5535M: Paul Moore <paul@paul-moore.com> 5536W: http://netlabel.sf.net 5537L: netdev@vger.kernel.org 5538S: Maintained 5539F: Documentation/netlabel/ 5540F: include/net/netlabel.h 5541F: net/netlabel/ 5542 5543NETROM NETWORK LAYER 5544M: Ralf Baechle <ralf@linux-mips.org> 5545L: linux-hams@vger.kernel.org 5546W: http://www.linux-ax25.org/ 5547S: Maintained 5548F: include/net/netrom.h 5549F: include/uapi/linux/netrom.h 5550F: net/netrom/ 5551 5552NETWORK BLOCK DEVICE (NBD) 5553M: Paul Clements <Paul.Clements@steeleye.com> 5554S: Maintained 5555L: nbd-general@lists.sourceforge.net 5556F: Documentation/blockdev/nbd.txt 5557F: drivers/block/nbd.c 5558F: include/linux/nbd.h 5559F: include/uapi/linux/nbd.h 5560 5561NETWORK DROP MONITOR 5562M: Neil Horman <nhorman@tuxdriver.com> 5563L: netdev@vger.kernel.org 5564S: Maintained 5565W: https://fedorahosted.org/dropwatch/ 5566F: net/core/drop_monitor.c 5567 5568NETWORKING [GENERAL] 5569M: "David S. Miller" <davem@davemloft.net> 5570L: netdev@vger.kernel.org 5571W: http://www.linuxfoundation.org/en/Net 5572Q: http://patchwork.ozlabs.org/project/netdev/list/ 5573T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 5574T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 5575S: Maintained 5576F: net/ 5577F: include/net/ 5578F: include/linux/in.h 5579F: include/linux/net.h 5580F: include/linux/netdevice.h 5581F: include/uapi/linux/in.h 5582F: include/uapi/linux/net.h 5583F: include/uapi/linux/netdevice.h 5584 5585NETWORKING [IPv4/IPv6] 5586M: "David S. Miller" <davem@davemloft.net> 5587M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> 5588M: James Morris <jmorris@namei.org> 5589M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> 5590M: Patrick McHardy <kaber@trash.net> 5591L: netdev@vger.kernel.org 5592T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 5593S: Maintained 5594F: net/ipv4/ 5595F: net/ipv6/ 5596F: include/net/ip* 5597F: arch/x86/net/* 5598 5599NETWORKING [IPSEC] 5600M: Steffen Klassert <steffen.klassert@secunet.com> 5601M: Herbert Xu <herbert@gondor.apana.org.au> 5602M: "David S. Miller" <davem@davemloft.net> 5603L: netdev@vger.kernel.org 5604T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 5605S: Maintained 5606F: net/xfrm/ 5607F: net/key/ 5608F: net/ipv4/xfrm* 5609F: net/ipv6/xfrm* 5610F: include/uapi/linux/xfrm.h 5611F: include/net/xfrm.h 5612 5613NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) 5614M: Paul Moore <paul@paul-moore.com> 5615L: netdev@vger.kernel.org 5616S: Maintained 5617 5618NETWORKING [WIRELESS] 5619M: "John W. Linville" <linville@tuxdriver.com> 5620L: linux-wireless@vger.kernel.org 5621Q: http://patchwork.kernel.org/project/linux-wireless/list/ 5622T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git 5623S: Maintained 5624F: net/mac80211/ 5625F: net/rfkill/ 5626F: net/wireless/ 5627F: include/net/ieee80211* 5628F: include/linux/wireless.h 5629F: include/uapi/linux/wireless.h 5630F: include/net/iw_handler.h 5631F: drivers/net/wireless/ 5632 5633NETWORKING DRIVERS 5634L: netdev@vger.kernel.org 5635W: http://www.linuxfoundation.org/en/Net 5636Q: http://patchwork.ozlabs.org/project/netdev/list/ 5637T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git 5638T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git 5639S: Odd Fixes 5640F: drivers/net/ 5641F: include/linux/if_* 5642F: include/linux/netdevice.h 5643F: include/linux/arcdevice.h 5644F: include/linux/etherdevice.h 5645F: include/linux/fcdevice.h 5646F: include/linux/fddidevice.h 5647F: include/linux/hippidevice.h 5648F: include/linux/inetdevice.h 5649F: include/uapi/linux/if_* 5650F: include/uapi/linux/netdevice.h 5651 5652NETXEN (1/10) GbE SUPPORT 5653M: Manish Chopra <manish.chopra@qlogic.com> 5654M: Sony Chacko <sony.chacko@qlogic.com> 5655M: Rajesh Borundia <rajesh.borundia@qlogic.com> 5656L: netdev@vger.kernel.org 5657W: http://www.qlogic.com 5658S: Supported 5659F: drivers/net/ethernet/qlogic/netxen/ 5660 5661NFC SUBSYSTEM 5662M: Lauro Ramos Venancio <lauro.venancio@openbossa.org> 5663M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org> 5664M: Samuel Ortiz <sameo@linux.intel.com> 5665L: linux-wireless@vger.kernel.org 5666L: linux-nfc@lists.01.org (moderated for non-subscribers) 5667S: Maintained 5668F: net/nfc/ 5669F: include/net/nfc/ 5670F: include/uapi/linux/nfc.h 5671F: drivers/nfc/ 5672F: include/linux/platform_data/pn544.h 5673 5674NFS, SUNRPC, AND LOCKD CLIENTS 5675M: Trond Myklebust <Trond.Myklebust@netapp.com> 5676L: linux-nfs@vger.kernel.org 5677W: http://client.linux-nfs.org 5678T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git 5679S: Maintained 5680F: fs/lockd/ 5681F: fs/nfs/ 5682F: fs/nfs_common/ 5683F: net/sunrpc/ 5684F: include/linux/lockd/ 5685F: include/linux/nfs* 5686F: include/linux/sunrpc/ 5687F: include/uapi/linux/nfs* 5688F: include/uapi/linux/sunrpc/ 5689 5690NILFS2 FILESYSTEM 5691M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp> 5692L: linux-nilfs@vger.kernel.org 5693W: http://www.nilfs.org/en/ 5694T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git 5695S: Supported 5696F: Documentation/filesystems/nilfs2.txt 5697F: fs/nilfs2/ 5698F: include/linux/nilfs2_fs.h 5699 5700NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER 5701M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> 5702W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ 5703S: Maintained 5704F: Documentation/scsi/NinjaSCSI.txt 5705F: drivers/scsi/pcmcia/nsp_* 5706 5707NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER 5708M: GOTO Masanori <gotom@debian.or.jp> 5709M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> 5710W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ 5711S: Maintained 5712F: Documentation/scsi/NinjaSCSI.txt 5713F: drivers/scsi/nsp32* 5714 5715NTB DRIVER 5716M: Jon Mason <jon.mason@intel.com> 5717S: Supported 5718F: drivers/ntb/ 5719F: drivers/net/ntb_netdev.c 5720F: include/linux/ntb.h 5721 5722NTFS FILESYSTEM 5723M: Anton Altaparmakov <anton@tuxera.com> 5724L: linux-ntfs-dev@lists.sourceforge.net 5725W: http://www.tuxera.com/ 5726T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git 5727S: Supported 5728F: Documentation/filesystems/ntfs.txt 5729F: fs/ntfs/ 5730 5731NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER 5732M: Antonino Daplas <adaplas@gmail.com> 5733L: linux-fbdev@vger.kernel.org 5734S: Maintained 5735F: drivers/video/riva/ 5736F: drivers/video/nvidia/ 5737 5738NVM EXPRESS DRIVER 5739M: Matthew Wilcox <willy@linux.intel.com> 5740L: linux-nvme@lists.infradead.org 5741T: git git://git.infradead.org/users/willy/linux-nvme.git 5742S: Supported 5743F: drivers/block/nvme.c 5744F: include/linux/nvme.h 5745 5746OMAP SUPPORT 5747M: Tony Lindgren <tony@atomide.com> 5748L: linux-omap@vger.kernel.org 5749W: http://www.muru.com/linux/omap/ 5750W: http://linux.omap.com/ 5751Q: http://patchwork.kernel.org/project/linux-omap/list/ 5752T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git 5753S: Maintained 5754F: arch/arm/*omap*/ 5755F: drivers/i2c/busses/i2c-omap.c 5756F: include/linux/i2c-omap.h 5757 5758OMAP DEVICE TREE SUPPORT 5759M: Benoît Cousson <b-cousson@ti.com> 5760M: Tony Lindgren <tony@atomide.com> 5761L: linux-omap@vger.kernel.org 5762L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers) 5763S: Maintained 5764F: arch/arm/boot/dts/*omap* 5765F: arch/arm/boot/dts/*am3* 5766 5767OMAP CLOCK FRAMEWORK SUPPORT 5768M: Paul Walmsley <paul@pwsan.com> 5769L: linux-omap@vger.kernel.org 5770S: Maintained 5771F: arch/arm/*omap*/*clock* 5772 5773OMAP POWER MANAGEMENT SUPPORT 5774M: Kevin Hilman <khilman@deeprootsystems.com> 5775L: linux-omap@vger.kernel.org 5776S: Maintained 5777F: arch/arm/*omap*/*pm* 5778F: drivers/cpufreq/omap-cpufreq.c 5779 5780OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT 5781M: Rajendra Nayak <rnayak@ti.com> 5782M: Paul Walmsley <paul@pwsan.com> 5783L: linux-omap@vger.kernel.org 5784S: Maintained 5785F: arch/arm/mach-omap2/powerdomain2xxx_3xxx.c 5786F: arch/arm/mach-omap2/powerdomain44xx.c 5787F: arch/arm/mach-omap2/clockdomain2xxx_3xxx.c 5788F: arch/arm/mach-omap2/clockdomain44xx.c 5789 5790OMAP AUDIO SUPPORT 5791M: Peter Ujfalusi <peter.ujfalusi@ti.com> 5792M: Jarkko Nikula <jarkko.nikula@bitmer.com> 5793L: alsa-devel@alsa-project.org (subscribers-only) 5794L: linux-omap@vger.kernel.org 5795S: Maintained 5796F: sound/soc/omap/ 5797 5798OMAP FRAMEBUFFER SUPPORT 5799M: Tomi Valkeinen <tomi.valkeinen@ti.com> 5800L: linux-fbdev@vger.kernel.org 5801L: linux-omap@vger.kernel.org 5802S: Maintained 5803F: drivers/video/omap/ 5804 5805OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) 5806M: Tomi Valkeinen <tomi.valkeinen@ti.com> 5807L: linux-omap@vger.kernel.org 5808L: linux-fbdev@vger.kernel.org 5809S: Maintained 5810F: drivers/video/omap2/ 5811F: Documentation/arm/OMAP/DSS 5812 5813OMAP HARDWARE SPINLOCK SUPPORT 5814M: Ohad Ben-Cohen <ohad@wizery.com> 5815L: linux-omap@vger.kernel.org 5816S: Maintained 5817F: drivers/hwspinlock/omap_hwspinlock.c 5818F: arch/arm/mach-omap2/hwspinlock.c 5819 5820OMAP MMC SUPPORT 5821M: Jarkko Lavinen <jarkko.lavinen@nokia.com> 5822L: linux-omap@vger.kernel.org 5823S: Maintained 5824F: drivers/mmc/host/omap.c 5825 5826OMAP HS MMC SUPPORT 5827M: Balaji T K <balajitk@ti.com> 5828L: linux-mmc@vger.kernel.org 5829L: linux-omap@vger.kernel.org 5830S: Maintained 5831F: drivers/mmc/host/omap_hsmmc.c 5832 5833OMAP RANDOM NUMBER GENERATOR SUPPORT 5834M: Deepak Saxena <dsaxena@plexity.net> 5835S: Maintained 5836F: drivers/char/hw_random/omap-rng.c 5837 5838OMAP HWMOD SUPPORT 5839M: Benoît Cousson <b-cousson@ti.com> 5840M: Paul Walmsley <paul@pwsan.com> 5841L: linux-omap@vger.kernel.org 5842S: Maintained 5843F: arch/arm/mach-omap2/omap_hwmod.* 5844 5845OMAP HWMOD DATA FOR OMAP4-BASED DEVICES 5846M: Benoît Cousson <b-cousson@ti.com> 5847L: linux-omap@vger.kernel.org 5848S: Maintained 5849F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c 5850 5851OMAP IMAGE SIGNAL PROCESSOR (ISP) 5852M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 5853L: linux-media@vger.kernel.org 5854S: Maintained 5855F: drivers/media/platform/omap3isp/ 5856 5857OMAP USB SUPPORT 5858M: Felipe Balbi <balbi@ti.com> 5859L: linux-usb@vger.kernel.org 5860L: linux-omap@vger.kernel.org 5861T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git 5862S: Maintained 5863F: drivers/usb/*/*omap* 5864F: arch/arm/*omap*/usb* 5865 5866OMAP GPIO DRIVER 5867M: Santosh Shilimkar <santosh.shilimkar@ti.com> 5868M: Kevin Hilman <khilman@deeprootsystems.com> 5869L: linux-omap@vger.kernel.org 5870S: Maintained 5871F: drivers/gpio/gpio-omap.c 5872 5873OMFS FILESYSTEM 5874M: Bob Copeland <me@bobcopeland.com> 5875L: linux-karma-devel@lists.sourceforge.net 5876S: Maintained 5877F: Documentation/filesystems/omfs.txt 5878F: fs/omfs/ 5879 5880OMNIKEY CARDMAN 4000 DRIVER 5881M: Harald Welte <laforge@gnumonks.org> 5882S: Maintained 5883F: drivers/char/pcmcia/cm4000_cs.c 5884F: include/linux/cm4000_cs.h 5885F: include/uapi/linux/cm4000_cs.h 5886 5887OMNIKEY CARDMAN 4040 DRIVER 5888M: Harald Welte <laforge@gnumonks.org> 5889S: Maintained 5890F: drivers/char/pcmcia/cm4040_cs.* 5891 5892OMNIVISION OV7670 SENSOR DRIVER 5893M: Jonathan Corbet <corbet@lwn.net> 5894L: linux-media@vger.kernel.org 5895T: git git://linuxtv.org/media_tree.git 5896S: Maintained 5897F: drivers/media/i2c/ov7670.c 5898 5899ONENAND FLASH DRIVER 5900M: Kyungmin Park <kyungmin.park@samsung.com> 5901L: linux-mtd@lists.infradead.org 5902S: Maintained 5903F: drivers/mtd/onenand/ 5904F: include/linux/mtd/onenand*.h 5905 5906ONSTREAM SCSI TAPE DRIVER 5907M: Willem Riede <osst@riede.org> 5908L: osst-users@lists.sourceforge.net 5909L: linux-scsi@vger.kernel.org 5910S: Maintained 5911F: drivers/scsi/osst* 5912F: drivers/scsi/st* 5913 5914OPENCORES I2C BUS DRIVER 5915M: Peter Korsgaard <jacmet@sunsite.dk> 5916L: linux-i2c@vger.kernel.org 5917S: Maintained 5918F: Documentation/i2c/busses/i2c-ocores 5919F: drivers/i2c/busses/i2c-ocores.c 5920 5921OPEN FIRMWARE AND FLATTENED DEVICE TREE 5922M: Grant Likely <grant.likely@linaro.org> 5923M: Rob Herring <rob.herring@calxeda.com> 5924L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers) 5925W: http://fdt.secretlab.ca 5926T: git git://git.secretlab.ca/git/linux-2.6.git 5927S: Maintained 5928F: Documentation/devicetree 5929F: drivers/of 5930F: include/linux/of*.h 5931F: scripts/dtc 5932K: of_get_property 5933K: of_match_table 5934 5935OPENRISC ARCHITECTURE 5936M: Jonas Bonn <jonas@southpole.se> 5937W: http://openrisc.net 5938L: linux@lists.openrisc.net (moderated for non-subscribers) 5939S: Maintained 5940T: git git://openrisc.net/~jonas/linux 5941F: arch/openrisc 5942 5943OPENVSWITCH 5944M: Jesse Gross <jesse@nicira.com> 5945L: dev@openvswitch.org 5946W: http://openvswitch.org 5947T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git 5948S: Maintained 5949F: net/openvswitch/ 5950 5951OPL4 DRIVER 5952M: Clemens Ladisch <clemens@ladisch.de> 5953L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5954T: git git://git.alsa-project.org/alsa-kernel.git 5955S: Maintained 5956F: sound/drivers/opl4/ 5957 5958OPROFILE 5959M: Robert Richter <rric@kernel.org> 5960L: oprofile-list@lists.sf.net 5961S: Maintained 5962F: arch/*/include/asm/oprofile*.h 5963F: arch/*/oprofile/ 5964F: drivers/oprofile/ 5965F: include/linux/oprofile.h 5966 5967ORACLE CLUSTER FILESYSTEM 2 (OCFS2) 5968M: Mark Fasheh <mfasheh@suse.com> 5969M: Joel Becker <jlbec@evilplan.org> 5970L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) 5971W: http://oss.oracle.com/projects/ocfs2/ 5972T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git 5973S: Supported 5974F: Documentation/filesystems/ocfs2.txt 5975F: Documentation/filesystems/dlmfs.txt 5976F: fs/ocfs2/ 5977 5978ORINOCO DRIVER 5979L: linux-wireless@vger.kernel.org 5980W: http://wireless.kernel.org/en/users/Drivers/orinoco 5981W: http://www.nongnu.org/orinoco/ 5982S: Orphan 5983F: drivers/net/wireless/orinoco/ 5984 5985OSD LIBRARY and FILESYSTEM 5986M: Boaz Harrosh <bharrosh@panasas.com> 5987M: Benny Halevy <bhalevy@tonian.com> 5988L: osd-dev@open-osd.org 5989W: http://open-osd.org 5990T: git git://git.open-osd.org/open-osd.git 5991S: Maintained 5992F: drivers/scsi/osd/ 5993F: include/scsi/osd_* 5994F: fs/exofs/ 5995 5996P54 WIRELESS DRIVER 5997M: Christian Lamparter <chunkeey@googlemail.com> 5998L: linux-wireless@vger.kernel.org 5999W: http://wireless.kernel.org/en/users/Drivers/p54 6000S: Maintained 6001F: drivers/net/wireless/p54/ 6002 6003PA SEMI ETHERNET DRIVER 6004M: Olof Johansson <olof@lixom.net> 6005L: netdev@vger.kernel.org 6006S: Maintained 6007F: drivers/net/ethernet/pasemi/* 6008 6009PA SEMI SMBUS DRIVER 6010M: Olof Johansson <olof@lixom.net> 6011L: linux-i2c@vger.kernel.org 6012S: Maintained 6013F: drivers/i2c/busses/i2c-pasemi.c 6014 6015PADATA PARALLEL EXECUTION MECHANISM 6016M: Steffen Klassert <steffen.klassert@secunet.com> 6017L: linux-crypto@vger.kernel.org 6018S: Maintained 6019F: kernel/padata.c 6020F: include/linux/padata.h 6021F: Documentation/padata.txt 6022 6023PANASONIC LAPTOP ACPI EXTRAS DRIVER 6024M: Harald Welte <laforge@gnumonks.org> 6025L: platform-driver-x86@vger.kernel.org 6026S: Maintained 6027F: drivers/platform/x86/panasonic-laptop.c 6028 6029PANASONIC MN10300/AM33/AM34 PORT 6030M: David Howells <dhowells@redhat.com> 6031M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> 6032L: linux-am33-list@redhat.com (moderated for non-subscribers) 6033W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ 6034S: Maintained 6035F: Documentation/mn10300/ 6036F: arch/mn10300/ 6037 6038PARALLEL PORT SUPPORT 6039L: linux-parport@lists.infradead.org (subscribers-only) 6040S: Orphan 6041F: drivers/parport/ 6042F: include/linux/parport*.h 6043F: drivers/char/ppdev.c 6044F: include/uapi/linux/ppdev.h 6045 6046PARAVIRT_OPS INTERFACE 6047M: Jeremy Fitzhardinge <jeremy@goop.org> 6048M: Chris Wright <chrisw@sous-sol.org> 6049M: Alok Kataria <akataria@vmware.com> 6050M: Rusty Russell <rusty@rustcorp.com.au> 6051L: virtualization@lists.linux-foundation.org 6052S: Supported 6053F: Documentation/ia64/paravirt_ops.txt 6054F: arch/*/kernel/paravirt* 6055F: arch/*/include/asm/paravirt.h 6056 6057PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES 6058M: Tim Waugh <tim@cyberelk.net> 6059L: linux-parport@lists.infradead.org (subscribers-only) 6060W: http://www.torque.net/linux-pp.html 6061S: Maintained 6062F: Documentation/blockdev/paride.txt 6063F: drivers/block/paride/ 6064 6065PARISC ARCHITECTURE 6066M: "James E.J. Bottomley" <jejb@parisc-linux.org> 6067M: Helge Deller <deller@gmx.de> 6068L: linux-parisc@vger.kernel.org 6069W: http://www.parisc-linux.org/ 6070Q: http://patchwork.kernel.org/project/linux-parisc/list/ 6071T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git 6072S: Maintained 6073F: arch/parisc/ 6074F: drivers/parisc/ 6075 6076PC87360 HARDWARE MONITORING DRIVER 6077M: Jim Cromie <jim.cromie@gmail.com> 6078L: lm-sensors@lm-sensors.org 6079S: Maintained 6080F: Documentation/hwmon/pc87360 6081F: drivers/hwmon/pc87360.c 6082 6083PC8736x GPIO DRIVER 6084M: Jim Cromie <jim.cromie@gmail.com> 6085S: Maintained 6086F: drivers/char/pc8736x_gpio.c 6087 6088PC87427 HARDWARE MONITORING DRIVER 6089M: Jean Delvare <khali@linux-fr.org> 6090L: lm-sensors@lm-sensors.org 6091S: Maintained 6092F: Documentation/hwmon/pc87427 6093F: drivers/hwmon/pc87427.c 6094 6095PCA9532 LED DRIVER 6096M: Riku Voipio <riku.voipio@iki.fi> 6097S: Maintained 6098F: drivers/leds/leds-pca9532.c 6099F: include/linux/leds-pca9532.h 6100 6101PCA9541 I2C BUS MASTER SELECTOR DRIVER 6102M: Guenter Roeck <linux@roeck-us.net> 6103L: linux-i2c@vger.kernel.org 6104S: Maintained 6105F: drivers/i2c/muxes/i2c-mux-pca9541.c 6106 6107PCDP - PRIMARY CONSOLE AND DEBUG PORT 6108M: Khalid Aziz <khalid@gonehiking.org> 6109S: Maintained 6110F: drivers/firmware/pcdp.* 6111 6112PCI ERROR RECOVERY 6113M: Linas Vepstas <linasvepstas@gmail.com> 6114L: linux-pci@vger.kernel.org 6115S: Supported 6116F: Documentation/PCI/pci-error-recovery.txt 6117F: Documentation/powerpc/eeh-pci-error-recovery.txt 6118 6119PCI SUBSYSTEM 6120M: Bjorn Helgaas <bhelgaas@google.com> 6121L: linux-pci@vger.kernel.org 6122Q: http://patchwork.ozlabs.org/project/linux-pci/list/ 6123T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git 6124S: Supported 6125F: Documentation/PCI/ 6126F: drivers/pci/ 6127F: include/linux/pci* 6128 6129PCMCIA SUBSYSTEM 6130P: Linux PCMCIA Team 6131L: linux-pcmcia@lists.infradead.org 6132W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia 6133T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git 6134S: Maintained 6135F: Documentation/pcmcia/ 6136F: drivers/pcmcia/ 6137F: include/pcmcia/ 6138 6139PCNET32 NETWORK DRIVER 6140M: Don Fry <pcnet32@frontier.com> 6141L: netdev@vger.kernel.org 6142S: Maintained 6143F: drivers/net/ethernet/amd/pcnet32.c 6144 6145PCRYPT PARALLEL CRYPTO ENGINE 6146M: Steffen Klassert <steffen.klassert@secunet.com> 6147L: linux-crypto@vger.kernel.org 6148S: Maintained 6149F: crypto/pcrypt.c 6150F: include/crypto/pcrypt.h 6151 6152PER-CPU MEMORY ALLOCATOR 6153M: Tejun Heo <tj@kernel.org> 6154M: Christoph Lameter <cl@linux-foundation.org> 6155T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git 6156S: Maintained 6157F: include/linux/percpu*.h 6158F: mm/percpu*.c 6159F: arch/*/include/asm/percpu.h 6160 6161PER-TASK DELAY ACCOUNTING 6162M: Balbir Singh <bsingharora@gmail.com> 6163S: Maintained 6164F: include/linux/delayacct.h 6165F: kernel/delayacct.c 6166 6167PERFORMANCE EVENTS SUBSYSTEM 6168M: Peter Zijlstra <a.p.zijlstra@chello.nl> 6169M: Paul Mackerras <paulus@samba.org> 6170M: Ingo Molnar <mingo@redhat.com> 6171M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 6172T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core 6173S: Supported 6174F: kernel/events/* 6175F: include/linux/perf_event.h 6176F: include/uapi/linux/perf_event.h 6177F: arch/*/kernel/perf_event*.c 6178F: arch/*/kernel/*/perf_event*.c 6179F: arch/*/kernel/*/*/perf_event*.c 6180F: arch/*/include/asm/perf_event.h 6181F: arch/*/kernel/perf_callchain.c 6182F: tools/perf/ 6183 6184PERSONALITY HANDLING 6185M: Christoph Hellwig <hch@infradead.org> 6186L: linux-abi-devel@lists.sourceforge.net 6187S: Maintained 6188F: include/linux/personality.h 6189F: include/uapi/linux/personality.h 6190 6191PHONET PROTOCOL 6192M: Remi Denis-Courmont <courmisch@gmail.com> 6193S: Supported 6194F: Documentation/networking/phonet.txt 6195F: include/linux/phonet.h 6196F: include/net/phonet/ 6197F: include/uapi/linux/phonet.h 6198F: net/phonet/ 6199 6200PHRAM MTD DRIVER 6201M: Joern Engel <joern@lazybastard.org> 6202L: linux-mtd@lists.infradead.org 6203S: Maintained 6204F: drivers/mtd/devices/phram.c 6205 6206PICOLCD HID DRIVER 6207M: Bruno Prémont <bonbons@linux-vserver.org> 6208L: linux-input@vger.kernel.org 6209S: Maintained 6210F: drivers/hid/hid-picolcd* 6211 6212PICOXCELL SUPPORT 6213M: Jamie Iles <jamie@jamieiles.com> 6214L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 6215T: git git://github.com/jamieiles/linux-2.6-ji.git 6216S: Supported 6217F: arch/arm/mach-picoxcell 6218F: drivers/*/picoxcell* 6219F: drivers/*/*/picoxcell* 6220 6221PIN CONTROL SUBSYSTEM 6222M: Linus Walleij <linus.walleij@linaro.org> 6223S: Maintained 6224F: drivers/pinctrl/ 6225F: include/linux/pinctrl/ 6226 6227PIN CONTROLLER - ATMEL AT91 6228M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> 6229L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 6230S: Maintained 6231F: drivers/pinctrl/pinctrl-at91.c 6232 6233PIN CONTROLLER - ST SPEAR 6234M: Viresh Kumar <viresh.linux@gmail.com> 6235L: spear-devel@list.st.com 6236L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 6237W: http://www.st.com/spear 6238S: Maintained 6239F: drivers/pinctrl/spear/ 6240 6241PKTCDVD DRIVER 6242M: Jiri Kosina <jkosina@suse.cz> 6243S: Maintained 6244F: drivers/block/pktcdvd.c 6245F: include/linux/pktcdvd.h 6246F: include/uapi/linux/pktcdvd.h 6247 6248PKUNITY SOC DRIVERS 6249M: Guan Xuetao <gxt@mprc.pku.edu.cn> 6250W: http://mprc.pku.edu.cn/~guanxuetao/linux 6251S: Maintained 6252T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git 6253F: drivers/input/serio/i8042-unicore32io.h 6254F: drivers/i2c/busses/i2c-puv3.c 6255F: drivers/video/fb-puv3.c 6256F: drivers/rtc/rtc-puv3.c 6257 6258PMBUS HARDWARE MONITORING DRIVERS 6259M: Guenter Roeck <linux@roeck-us.net> 6260L: lm-sensors@lm-sensors.org 6261W: http://www.lm-sensors.org/ 6262W: http://www.roeck-us.net/linux/drivers/ 6263T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git 6264S: Maintained 6265F: Documentation/hwmon/pmbus 6266F: drivers/hwmon/pmbus/ 6267F: include/linux/i2c/pmbus.h 6268 6269PMC SIERRA MaxRAID DRIVER 6270M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> 6271L: linux-scsi@vger.kernel.org 6272W: http://www.pmc-sierra.com/ 6273S: Supported 6274F: drivers/scsi/pmcraid.* 6275 6276PMC SIERRA PM8001 DRIVER 6277M: xjtuwjp@gmail.com 6278M: lindar_liu@usish.com 6279L: linux-scsi@vger.kernel.org 6280S: Supported 6281F: drivers/scsi/pm8001/ 6282 6283POSIX CLOCKS and TIMERS 6284M: Thomas Gleixner <tglx@linutronix.de> 6285T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core 6286S: Supported 6287F: fs/timerfd.c 6288F: include/linux/timer* 6289F: kernel/*timer* 6290 6291POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS 6292M: Anton Vorontsov <cbou@mail.ru> 6293M: David Woodhouse <dwmw2@infradead.org> 6294T: git git://git.infradead.org/battery-2.6.git 6295S: Maintained 6296F: include/linux/power_supply.h 6297F: drivers/power/ 6298 6299PNP SUPPORT 6300M: Rafael J. Wysocki <rafael.j.wysocki@intel.com> 6301M: Bjorn Helgaas <bhelgaas@google.com> 6302S: Maintained 6303F: drivers/pnp/ 6304 6305PNXxxxx I2C DRIVER 6306M: Vitaly Wool <vitalywool@gmail.com> 6307L: linux-i2c@vger.kernel.org 6308S: Maintained 6309F: drivers/i2c/busses/i2c-pnx.c 6310 6311PPP PROTOCOL DRIVERS AND COMPRESSORS 6312M: Paul Mackerras <paulus@samba.org> 6313L: linux-ppp@vger.kernel.org 6314S: Maintained 6315F: drivers/net/ppp/ppp_* 6316 6317PPP OVER ATM (RFC 2364) 6318M: Mitchell Blank Jr <mitch@sfgoth.com> 6319S: Maintained 6320F: net/atm/pppoatm.c 6321F: include/uapi/linux/atmppp.h 6322 6323PPP OVER ETHERNET 6324M: Michal Ostrowski <mostrows@earthlink.net> 6325S: Maintained 6326F: drivers/net/ppp/pppoe.c 6327F: drivers/net/ppp/pppox.c 6328 6329PPP OVER L2TP 6330M: James Chapman <jchapman@katalix.com> 6331S: Maintained 6332F: net/l2tp/l2tp_ppp.c 6333F: include/linux/if_pppol2tp.h 6334F: include/uapi/linux/if_pppol2tp.h 6335 6336PPS SUPPORT 6337M: Rodolfo Giometti <giometti@enneenne.com> 6338W: http://wiki.enneenne.com/index.php/LinuxPPS_support 6339L: linuxpps@ml.enneenne.com (subscribers-only) 6340S: Maintained 6341F: Documentation/pps/ 6342F: drivers/pps/ 6343F: include/linux/pps*.h 6344 6345PPTP DRIVER 6346M: Dmitry Kozlov <xeb@mail.ru> 6347L: netdev@vger.kernel.org 6348S: Maintained 6349F: drivers/net/ppp/pptp.c 6350W: http://sourceforge.net/projects/accel-pptp 6351 6352PREEMPTIBLE KERNEL 6353M: Robert Love <rml@tech9.net> 6354L: kpreempt-tech@lists.sourceforge.net 6355W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel 6356S: Supported 6357F: Documentation/preempt-locking.txt 6358F: include/linux/preempt.h 6359 6360PRISM54 WIRELESS DRIVER 6361M: "Luis R. Rodriguez" <mcgrof@gmail.com> 6362L: linux-wireless@vger.kernel.org 6363W: http://wireless.kernel.org/en/users/Drivers/p54 6364S: Obsolete 6365F: drivers/net/wireless/prism54/ 6366 6367PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER 6368M: Mikael Pettersson <mikpe@it.uu.se> 6369L: linux-ide@vger.kernel.org 6370S: Maintained 6371F: drivers/ata/sata_promise.* 6372 6373PS3 NETWORK SUPPORT 6374M: Geoff Levand <geoff@infradead.org> 6375L: netdev@vger.kernel.org 6376L: cbe-oss-dev@lists.ozlabs.org 6377S: Maintained 6378F: drivers/net/ethernet/toshiba/ps3_gelic_net.* 6379 6380PS3 PLATFORM SUPPORT 6381M: Geoff Levand <geoff@infradead.org> 6382L: linuxppc-dev@lists.ozlabs.org 6383L: cbe-oss-dev@lists.ozlabs.org 6384S: Maintained 6385F: arch/powerpc/boot/ps3* 6386F: arch/powerpc/include/asm/lv1call.h 6387F: arch/powerpc/include/asm/ps3*.h 6388F: arch/powerpc/platforms/ps3/ 6389F: drivers/*/ps3* 6390F: drivers/ps3/ 6391F: drivers/rtc/rtc-ps3.c 6392F: drivers/usb/host/*ps3.c 6393F: sound/ppc/snd_ps3* 6394 6395PS3VRAM DRIVER 6396M: Jim Paris <jim@jtan.com> 6397L: cbe-oss-dev@lists.ozlabs.org 6398S: Maintained 6399F: drivers/block/ps3vram.c 6400 6401PSTORE FILESYSTEM 6402M: Anton Vorontsov <cbouatmailru@gmail.com> 6403M: Colin Cross <ccross@android.com> 6404M: Kees Cook <keescook@chromium.org> 6405M: Tony Luck <tony.luck@intel.com> 6406S: Maintained 6407T: git git://git.infradead.org/users/cbou/linux-pstore.git 6408F: fs/pstore/ 6409F: include/linux/pstore* 6410F: drivers/firmware/efi/efi-pstore.c 6411F: drivers/acpi/apei/erst.c 6412 6413PTP HARDWARE CLOCK SUPPORT 6414M: Richard Cochran <richardcochran@gmail.com> 6415L: netdev@vger.kernel.org 6416S: Maintained 6417W: http://linuxptp.sourceforge.net/ 6418F: Documentation/ABI/testing/sysfs-ptp 6419F: Documentation/ptp/* 6420F: drivers/net/ethernet/freescale/gianfar_ptp.c 6421F: drivers/net/phy/dp83640* 6422F: drivers/ptp/* 6423F: include/linux/ptp_cl* 6424 6425PTRACE SUPPORT 6426M: Roland McGrath <roland@redhat.com> 6427M: Oleg Nesterov <oleg@redhat.com> 6428S: Maintained 6429F: include/asm-generic/syscall.h 6430F: include/linux/ptrace.h 6431F: include/linux/regset.h 6432F: include/linux/tracehook.h 6433F: include/uapi/linux/ptrace.h 6434F: kernel/ptrace.c 6435 6436PVRUSB2 VIDEO4LINUX DRIVER 6437M: Mike Isely <isely@pobox.com> 6438L: pvrusb2@isely.net (subscribers-only) 6439L: linux-media@vger.kernel.org 6440W: http://www.isely.net/pvrusb2/ 6441T: git git://linuxtv.org/media_tree.git 6442S: Maintained 6443F: Documentation/video4linux/README.pvrusb2 6444F: drivers/media/usb/pvrusb2/ 6445 6446PWC WEBCAM DRIVER 6447M: Hans de Goede <hdegoede@redhat.com> 6448L: linux-media@vger.kernel.org 6449T: git git://linuxtv.org/media_tree.git 6450S: Maintained 6451F: drivers/media/usb/pwc/* 6452 6453PWM SUBSYSTEM 6454M: Thierry Reding <thierry.reding@avionic-design.de> 6455L: linux-kernel@vger.kernel.org 6456S: Maintained 6457W: http://gitorious.org/linux-pwm 6458T: git git://gitorious.org/linux-pwm/linux-pwm.git 6459F: Documentation/pwm.txt 6460F: Documentation/devicetree/bindings/pwm/ 6461F: include/linux/pwm.h 6462F: drivers/pwm/ 6463F: drivers/video/backlight/pwm_bl.c 6464F: include/linux/pwm_backlight.h 6465 6466PXA2xx/PXA3xx SUPPORT 6467M: Eric Miao <eric.y.miao@gmail.com> 6468M: Russell King <linux@arm.linux.org.uk> 6469M: Haojian Zhuang <haojian.zhuang@gmail.com> 6470L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 6471T: git git://github.com/hzhuang1/linux.git 6472T: git git://git.linaro.org/people/ycmiao/pxa-linux.git 6473S: Maintained 6474F: arch/arm/mach-pxa/ 6475F: drivers/pcmcia/pxa2xx* 6476F: drivers/spi/spi-pxa2xx* 6477F: drivers/usb/gadget/pxa2* 6478F: include/sound/pxa2xx-lib.h 6479F: sound/arm/pxa* 6480F: sound/soc/pxa 6481 6482MMP SUPPORT 6483M: Eric Miao <eric.y.miao@gmail.com> 6484M: Haojian Zhuang <haojian.zhuang@gmail.com> 6485L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 6486T: git git://github.com/hzhuang1/linux.git 6487T: git git://git.linaro.org/people/ycmiao/pxa-linux.git 6488S: Maintained 6489F: arch/arm/mach-mmp/ 6490 6491PXA MMCI DRIVER 6492S: Orphan 6493 6494PXA RTC DRIVER 6495M: Robert Jarzmik <robert.jarzmik@free.fr> 6496L: rtc-linux@googlegroups.com 6497S: Maintained 6498 6499QIB DRIVER 6500M: Mike Marciniszyn <infinipath@intel.com> 6501L: linux-rdma@vger.kernel.org 6502S: Supported 6503F: drivers/infiniband/hw/qib/ 6504 6505QLOGIC QLA1280 SCSI DRIVER 6506M: Michael Reed <mdr@sgi.com> 6507L: linux-scsi@vger.kernel.org 6508S: Maintained 6509F: drivers/scsi/qla1280.[ch] 6510 6511QLOGIC QLA2XXX FC-SCSI DRIVER 6512M: Andrew Vasquez <andrew.vasquez@qlogic.com> 6513M: linux-driver@qlogic.com 6514L: linux-scsi@vger.kernel.org 6515S: Supported 6516F: Documentation/scsi/LICENSE.qla2xxx 6517F: drivers/scsi/qla2xxx/ 6518 6519QLOGIC QLA4XXX iSCSI DRIVER 6520M: Ravi Anand <ravi.anand@qlogic.com> 6521M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> 6522M: iscsi-driver@qlogic.com 6523L: linux-scsi@vger.kernel.org 6524S: Supported 6525F: drivers/scsi/qla4xxx/ 6526 6527QLOGIC QLA3XXX NETWORK DRIVER 6528M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> 6529M: Ron Mercer <ron.mercer@qlogic.com> 6530M: linux-driver@qlogic.com 6531L: netdev@vger.kernel.org 6532S: Supported 6533F: Documentation/networking/LICENSE.qla3xxx 6534F: drivers/net/ethernet/qlogic/qla3xxx.* 6535 6536QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER 6537M: Rajesh Borundia <rajesh.borundia@qlogic.com> 6538M: Shahed Shaikh <shahed.shaikh@qlogic.com> 6539M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> 6540M: Sony Chacko <sony.chacko@qlogic.com> 6541M: linux-driver@qlogic.com 6542L: netdev@vger.kernel.org 6543S: Supported 6544F: drivers/net/ethernet/qlogic/qlcnic/ 6545 6546QLOGIC QLGE 10Gb ETHERNET DRIVER 6547M: Shahed Shaikh <shahed.shaikh@qlogic.com> 6548M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com> 6549M: Ron Mercer <ron.mercer@qlogic.com> 6550M: linux-driver@qlogic.com 6551L: netdev@vger.kernel.org 6552S: Supported 6553F: drivers/net/ethernet/qlogic/qlge/ 6554 6555QNX4 FILESYSTEM 6556M: Anders Larsen <al@alarsen.net> 6557W: http://www.alarsen.net/linux/qnx4fs/ 6558S: Maintained 6559F: fs/qnx4/ 6560F: include/uapi/linux/qnx4_fs.h 6561F: include/uapi/linux/qnxtypes.h 6562 6563QT1010 MEDIA DRIVER 6564M: Antti Palosaari <crope@iki.fi> 6565L: linux-media@vger.kernel.org 6566W: http://linuxtv.org/ 6567W: http://palosaari.fi/linux/ 6568Q: http://patchwork.linuxtv.org/project/linux-media/list/ 6569T: git git://linuxtv.org/anttip/media_tree.git 6570S: Maintained 6571F: drivers/media/tuners/qt1010* 6572 6573QUALCOMM HEXAGON ARCHITECTURE 6574M: Richard Kuo <rkuo@codeaurora.org> 6575L: linux-hexagon@vger.kernel.org 6576S: Supported 6577F: arch/hexagon/ 6578 6579QUICKCAM PARALLEL PORT WEBCAMS 6580M: Hans Verkuil <hverkuil@xs4all.nl> 6581L: linux-media@vger.kernel.org 6582T: git git://linuxtv.org/media_tree.git 6583W: http://linuxtv.org 6584S: Odd Fixes 6585F: drivers/media/parport/*-qcam* 6586 6587RADOS BLOCK DEVICE (RBD) 6588M: Yehuda Sadeh <yehuda@inktank.com> 6589M: Sage Weil <sage@inktank.com> 6590M: Alex Elder <elder@inktank.com> 6591M: ceph-devel@vger.kernel.org 6592W: http://ceph.com/ 6593T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git 6594S: Supported 6595F: drivers/block/rbd.c 6596F: drivers/block/rbd_types.h 6597 6598RADEON FRAMEBUFFER DISPLAY DRIVER 6599M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 6600L: linux-fbdev@vger.kernel.org 6601S: Maintained 6602F: drivers/video/aty/radeon* 6603F: include/uapi/linux/radeonfb.h 6604 6605RADIOSHARK RADIO DRIVER 6606M: Hans de Goede <hdegoede@redhat.com> 6607L: linux-media@vger.kernel.org 6608T: git git://linuxtv.org/media_tree.git 6609S: Maintained 6610F: drivers/media/radio/radio-shark.c 6611 6612RADIOSHARK2 RADIO DRIVER 6613M: Hans de Goede <hdegoede@redhat.com> 6614L: linux-media@vger.kernel.org 6615T: git git://linuxtv.org/media_tree.git 6616S: Maintained 6617F: drivers/media/radio/radio-shark2.c 6618F: drivers/media/radio/radio-tea5777.c 6619 6620RAGE128 FRAMEBUFFER DISPLAY DRIVER 6621M: Paul Mackerras <paulus@samba.org> 6622L: linux-fbdev@vger.kernel.org 6623S: Maintained 6624F: drivers/video/aty/aty128fb.c 6625 6626RALINK RT2X00 WIRELESS LAN DRIVER 6627P: rt2x00 project 6628M: Ivo van Doorn <IvDoorn@gmail.com> 6629M: Gertjan van Wingerde <gwingerde@gmail.com> 6630M: Helmut Schaa <helmut.schaa@googlemail.com> 6631L: linux-wireless@vger.kernel.org 6632L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) 6633W: http://rt2x00.serialmonkey.com/ 6634S: Maintained 6635T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git 6636F: drivers/net/wireless/rt2x00/ 6637 6638RAMDISK RAM BLOCK DEVICE DRIVER 6639M: Nick Piggin <npiggin@kernel.dk> 6640S: Maintained 6641F: Documentation/blockdev/ramdisk.txt 6642F: drivers/block/brd.c 6643 6644RANDOM NUMBER DRIVER 6645M: Theodore Ts'o" <tytso@mit.edu> 6646S: Maintained 6647F: drivers/char/random.c 6648 6649RAPIDIO SUBSYSTEM 6650M: Matt Porter <mporter@kernel.crashing.org> 6651M: Alexandre Bounine <alexandre.bounine@idt.com> 6652S: Maintained 6653F: drivers/rapidio/ 6654 6655RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER 6656L: linux-wireless@vger.kernel.org 6657S: Orphan 6658F: drivers/net/wireless/ray* 6659 6660RCUTORTURE MODULE 6661M: Josh Triplett <josh@freedesktop.org> 6662M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 6663S: Supported 6664T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git 6665F: Documentation/RCU/torture.txt 6666F: kernel/rcutorture.c 6667 6668RDC R-321X SoC 6669M: Florian Fainelli <florian@openwrt.org> 6670S: Maintained 6671 6672RDC R6040 FAST ETHERNET DRIVER 6673M: Florian Fainelli <florian@openwrt.org> 6674L: netdev@vger.kernel.org 6675S: Maintained 6676F: drivers/net/ethernet/rdc/r6040.c 6677 6678RDS - RELIABLE DATAGRAM SOCKETS 6679M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com> 6680L: rds-devel@oss.oracle.com (moderated for non-subscribers) 6681S: Supported 6682F: net/rds/ 6683 6684READ-COPY UPDATE (RCU) 6685M: Dipankar Sarma <dipankar@in.ibm.com> 6686M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 6687W: http://www.rdrop.com/users/paulmck/RCU/ 6688S: Supported 6689T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git 6690F: Documentation/RCU/ 6691X: Documentation/RCU/torture.txt 6692F: include/linux/rcu* 6693F: kernel/rcu* 6694X: kernel/rcutorture.c 6695 6696REAL TIME CLOCK (RTC) SUBSYSTEM 6697M: Alessandro Zummo <a.zummo@towertech.it> 6698L: rtc-linux@googlegroups.com 6699Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ 6700S: Maintained 6701F: Documentation/rtc.txt 6702F: drivers/rtc/ 6703F: include/linux/rtc.h 6704F: include/uapi/linux/rtc.h 6705 6706REISERFS FILE SYSTEM 6707L: reiserfs-devel@vger.kernel.org 6708S: Supported 6709F: fs/reiserfs/ 6710 6711REGISTER MAP ABSTRACTION 6712M: Mark Brown <broonie@kernel.org> 6713T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git 6714S: Supported 6715F: drivers/base/regmap/ 6716F: include/linux/regmap.h 6717 6718REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM 6719M: Ohad Ben-Cohen <ohad@wizery.com> 6720T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git 6721S: Maintained 6722F: drivers/remoteproc/ 6723F: Documentation/remoteproc.txt 6724F: include/linux/remoteproc.h 6725 6726REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM 6727M: Ohad Ben-Cohen <ohad@wizery.com> 6728T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git 6729S: Maintained 6730F: drivers/rpmsg/ 6731F: Documentation/rpmsg.txt 6732F: include/linux/rpmsg.h 6733 6734RFKILL 6735M: Johannes Berg <johannes@sipsolutions.net> 6736L: linux-wireless@vger.kernel.org 6737W: http://wireless.kernel.org/ 6738T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git 6739T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git 6740S: Maintained 6741F: Documentation/rfkill.txt 6742F: net/rfkill/ 6743 6744RICOH SMARTMEDIA/XD DRIVER 6745M: Maxim Levitsky <maximlevitsky@gmail.com> 6746S: Maintained 6747F: drivers/mtd/nand/r852.c 6748F: drivers/mtd/nand/r852.h 6749 6750RICOH R5C592 MEMORYSTICK DRIVER 6751M: Maxim Levitsky <maximlevitsky@gmail.com> 6752S: Maintained 6753F: drivers/memstick/host/r592.* 6754 6755ROCKETPORT DRIVER 6756P: Comtrol Corp. 6757W: http://www.comtrol.com 6758S: Maintained 6759F: Documentation/serial/rocket.txt 6760F: drivers/tty/rocket* 6761 6762ROSE NETWORK LAYER 6763M: Ralf Baechle <ralf@linux-mips.org> 6764L: linux-hams@vger.kernel.org 6765W: http://www.linux-ax25.org/ 6766S: Maintained 6767F: include/net/rose.h 6768F: include/uapi/linux/rose.h 6769F: net/rose/ 6770 6771RTL2830 MEDIA DRIVER 6772M: Antti Palosaari <crope@iki.fi> 6773L: linux-media@vger.kernel.org 6774W: http://linuxtv.org/ 6775W: http://palosaari.fi/linux/ 6776Q: http://patchwork.linuxtv.org/project/linux-media/list/ 6777T: git git://linuxtv.org/anttip/media_tree.git 6778S: Maintained 6779F: drivers/media/dvb-frontends/rtl2830* 6780 6781RTL2832 MEDIA DRIVER 6782M: Antti Palosaari <crope@iki.fi> 6783L: linux-media@vger.kernel.org 6784W: http://linuxtv.org/ 6785W: http://palosaari.fi/linux/ 6786Q: http://patchwork.linuxtv.org/project/linux-media/list/ 6787T: git git://linuxtv.org/anttip/media_tree.git 6788S: Maintained 6789F: drivers/media/dvb-frontends/rtl2832* 6790 6791RTL8180 WIRELESS DRIVER 6792M: "John W. Linville" <linville@tuxdriver.com> 6793L: linux-wireless@vger.kernel.org 6794W: http://wireless.kernel.org/ 6795T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 6796S: Maintained 6797F: drivers/net/wireless/rtl818x/rtl8180/ 6798 6799RTL8187 WIRELESS DRIVER 6800M: Herton Ronaldo Krzesinski <herton@canonical.com> 6801M: Hin-Tak Leung <htl10@users.sourceforge.net> 6802M: Larry Finger <Larry.Finger@lwfinger.net> 6803L: linux-wireless@vger.kernel.org 6804W: http://wireless.kernel.org/ 6805T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 6806S: Maintained 6807F: drivers/net/wireless/rtl818x/rtl8187/ 6808 6809RTL8192CE WIRELESS DRIVER 6810M: Larry Finger <Larry.Finger@lwfinger.net> 6811M: Chaoming Li <chaoming_li@realsil.com.cn> 6812L: linux-wireless@vger.kernel.org 6813W: http://wireless.kernel.org/ 6814T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 6815S: Maintained 6816F: drivers/net/wireless/rtlwifi/ 6817F: drivers/net/wireless/rtlwifi/rtl8192ce/ 6818 6819S3 SAVAGE FRAMEBUFFER DRIVER 6820M: Antonino Daplas <adaplas@gmail.com> 6821L: linux-fbdev@vger.kernel.org 6822S: Maintained 6823F: drivers/video/savage/ 6824 6825S390 6826M: Martin Schwidefsky <schwidefsky@de.ibm.com> 6827M: Heiko Carstens <heiko.carstens@de.ibm.com> 6828M: linux390@de.ibm.com 6829L: linux-s390@vger.kernel.org 6830W: http://www.ibm.com/developerworks/linux/linux390/ 6831S: Supported 6832F: arch/s390/ 6833F: drivers/s390/ 6834F: block/partitions/ibm.c 6835F: Documentation/s390/ 6836F: Documentation/DocBook/s390* 6837 6838S390 NETWORK DRIVERS 6839M: Ursula Braun <ursula.braun@de.ibm.com> 6840M: Frank Blaschka <blaschka@linux.vnet.ibm.com> 6841M: linux390@de.ibm.com 6842L: linux-s390@vger.kernel.org 6843W: http://www.ibm.com/developerworks/linux/linux390/ 6844S: Supported 6845F: drivers/s390/net/ 6846 6847S390 ZCRYPT DRIVER 6848M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com> 6849M: linux390@de.ibm.com 6850L: linux-s390@vger.kernel.org 6851W: http://www.ibm.com/developerworks/linux/linux390/ 6852S: Supported 6853F: drivers/s390/crypto/ 6854 6855S390 ZFCP DRIVER 6856M: Steffen Maier <maier@linux.vnet.ibm.com> 6857M: linux390@de.ibm.com 6858L: linux-s390@vger.kernel.org 6859W: http://www.ibm.com/developerworks/linux/linux390/ 6860S: Supported 6861F: drivers/s390/scsi/zfcp_* 6862 6863S390 IUCV NETWORK LAYER 6864M: Ursula Braun <ursula.braun@de.ibm.com> 6865M: linux390@de.ibm.com 6866L: linux-s390@vger.kernel.org 6867W: http://www.ibm.com/developerworks/linux/linux390/ 6868S: Supported 6869F: drivers/s390/net/*iucv* 6870F: include/net/iucv/ 6871F: net/iucv/ 6872 6873S3C24XX SD/MMC Driver 6874M: Ben Dooks <ben-linux@fluff.org> 6875L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 6876S: Supported 6877F: drivers/mmc/host/s3cmci.* 6878 6879SAA6588 RDS RECEIVER DRIVER 6880M: Hans Verkuil <hverkuil@xs4all.nl> 6881L: linux-media@vger.kernel.org 6882T: git git://linuxtv.org/media_tree.git 6883W: http://linuxtv.org 6884S: Odd Fixes 6885F: drivers/media/i2c/saa6588* 6886 6887SAA7134 VIDEO4LINUX DRIVER 6888M: Mauro Carvalho Chehab <mchehab@redhat.com> 6889L: linux-media@vger.kernel.org 6890W: http://linuxtv.org 6891T: git git://linuxtv.org/media_tree.git 6892S: Odd fixes 6893F: Documentation/video4linux/*.saa7134 6894F: drivers/media/pci/saa7134/ 6895 6896SAA7146 VIDEO4LINUX-2 DRIVER 6897M: Hans Verkuil <hverkuil@xs4all.nl> 6898L: linux-media@vger.kernel.org 6899T: git git://linuxtv.org/media_tree.git 6900S: Maintained 6901F: drivers/media/common/saa7146/ 6902F: drivers/media/pci/saa7146/ 6903F: include/media/saa7146* 6904 6905SAMSUNG LAPTOP DRIVER 6906M: Corentin Chary <corentin.chary@gmail.com> 6907L: platform-driver-x86@vger.kernel.org 6908S: Maintained 6909F: drivers/platform/x86/samsung-laptop.c 6910 6911SAMSUNG AUDIO (ASoC) DRIVERS 6912M: Sangbeom Kim <sbkim73@samsung.com> 6913L: alsa-devel@alsa-project.org (moderated for non-subscribers) 6914S: Supported 6915F: sound/soc/samsung 6916 6917SAMSUNG FRAMEBUFFER DRIVER 6918M: Jingoo Han <jg1.han@samsung.com> 6919L: linux-fbdev@vger.kernel.org 6920S: Maintained 6921F: drivers/video/s3c-fb.c 6922 6923SAMSUNG MULTIFUNCTION DEVICE DRIVERS 6924M: Sangbeom Kim <sbkim73@samsung.com> 6925L: linux-kernel@vger.kernel.org 6926S: Supported 6927F: drivers/mfd/sec*.c 6928F: drivers/regulator/s2m*.c 6929F: drivers/regulator/s5m*.c 6930F: drivers/rtc/rtc-sec.c 6931F: include/linux/mfd/samsung/ 6932 6933SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER 6934M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com> 6935L: linux-media@vger.kernel.org 6936L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) 6937S: Maintained 6938F: drivers/media/platform/s3c-camif/ 6939F: include/media/s3c_camif.h 6940 6941SAMSUNG S5C73M3 CAMERA DRIVER 6942M: Kyungmin Park <kyungmin.park@samsung.com> 6943M: Andrzej Hajda <a.hajda@samsung.com> 6944L: linux-media@vger.kernel.org 6945S: Supported 6946F: drivers/media/i2c/s5c73m3/* 6947 6948SERIAL DRIVERS 6949M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 6950L: linux-serial@vger.kernel.org 6951S: Maintained 6952F: drivers/tty/serial 6953 6954SYNOPSYS DESIGNWARE DMAC DRIVER 6955M: Viresh Kumar <viresh.linux@gmail.com> 6956S: Maintained 6957F: include/linux/dw_dmac.h 6958F: drivers/dma/dw_dmac_regs.h 6959F: drivers/dma/dw_dmac.c 6960 6961SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER 6962M: Seungwon Jeon <tgih.jun@samsung.com> 6963M: Jaehoon Chung <jh80.chung@samsung.com> 6964L: linux-mmc@vger.kernel.org 6965S: Maintained 6966F: include/linux/mmc/dw_mmc.h 6967F: drivers/mmc/host/dw_mmc* 6968 6969TIMEKEEPING, NTP 6970M: John Stultz <john.stultz@linaro.org> 6971M: Thomas Gleixner <tglx@linutronix.de> 6972T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core 6973S: Supported 6974F: include/linux/clocksource.h 6975F: include/linux/time.h 6976F: include/linux/timex.h 6977F: include/uapi/linux/time.h 6978F: include/uapi/linux/timex.h 6979F: kernel/time/clocksource.c 6980F: kernel/time/time*.c 6981F: kernel/time/ntp.c 6982F: drivers/clocksource 6983 6984TLG2300 VIDEO4LINUX-2 DRIVER 6985M: Huang Shijie <shijie8@gmail.com> 6986M: Hans Verkuil <hverkuil@xs4all.nl> 6987S: Odd Fixes 6988F: drivers/media/usb/tlg2300 6989 6990SC1200 WDT DRIVER 6991M: Zwane Mwaikambo <zwane@arm.linux.org.uk> 6992S: Maintained 6993F: drivers/watchdog/sc1200wdt.c 6994 6995SCHEDULER 6996M: Ingo Molnar <mingo@redhat.com> 6997M: Peter Zijlstra <peterz@infradead.org> 6998T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core 6999S: Maintained 7000F: kernel/sched/ 7001F: include/linux/sched.h 7002F: include/uapi/linux/sched.h 7003 7004SCORE ARCHITECTURE 7005M: Chen Liqin <liqin.chen@sunplusct.com> 7006M: Lennox Wu <lennox.wu@gmail.com> 7007W: http://www.sunplusct.com 7008S: Supported 7009F: arch/score/ 7010 7011SCSI CDROM DRIVER 7012M: Jens Axboe <axboe@kernel.dk> 7013L: linux-scsi@vger.kernel.org 7014W: http://www.kernel.dk 7015S: Maintained 7016F: drivers/scsi/sr* 7017 7018SCSI RDMA PROTOCOL (SRP) INITIATOR 7019M: David Dillow <dillowda@ornl.gov> 7020L: linux-rdma@vger.kernel.org 7021S: Supported 7022W: http://www.openfabrics.org 7023Q: http://patchwork.kernel.org/project/linux-rdma/list/ 7024T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git 7025F: drivers/infiniband/ulp/srp/ 7026F: include/scsi/srp.h 7027 7028SCSI SG DRIVER 7029M: Doug Gilbert <dgilbert@interlog.com> 7030L: linux-scsi@vger.kernel.org 7031W: http://www.torque.net/sg 7032S: Maintained 7033F: drivers/scsi/sg.c 7034F: include/scsi/sg.h 7035 7036SCSI SUBSYSTEM 7037M: "James E.J. Bottomley" <JBottomley@parallels.com> 7038L: linux-scsi@vger.kernel.org 7039T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git 7040T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git 7041T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git 7042S: Maintained 7043F: drivers/scsi/ 7044F: include/scsi/ 7045 7046SCSI TAPE DRIVER 7047M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> 7048L: linux-scsi@vger.kernel.org 7049S: Maintained 7050F: Documentation/scsi/st.txt 7051F: drivers/scsi/st* 7052 7053SCTP PROTOCOL 7054M: Vlad Yasevich <vyasevich@gmail.com> 7055M: Neil Horman <nhorman@tuxdriver.com> 7056L: linux-sctp@vger.kernel.org 7057W: http://lksctp.sourceforge.net 7058S: Maintained 7059F: Documentation/networking/sctp.txt 7060F: include/linux/sctp.h 7061F: include/net/sctp/ 7062F: net/sctp/ 7063 7064SCx200 CPU SUPPORT 7065M: Jim Cromie <jim.cromie@gmail.com> 7066S: Odd Fixes 7067F: Documentation/i2c/busses/scx200_acb 7068F: arch/x86/platform/scx200/ 7069F: drivers/watchdog/scx200_wdt.c 7070F: drivers/i2c/busses/scx200* 7071F: drivers/mtd/maps/scx200_docflash.c 7072F: include/linux/scx200.h 7073 7074SCx200 GPIO DRIVER 7075M: Jim Cromie <jim.cromie@gmail.com> 7076S: Maintained 7077F: drivers/char/scx200_gpio.c 7078F: include/linux/scx200_gpio.h 7079 7080SCx200 HRT CLOCKSOURCE DRIVER 7081M: Jim Cromie <jim.cromie@gmail.com> 7082S: Maintained 7083F: drivers/clocksource/scx200_hrt.c 7084 7085SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER 7086M: Sascha Sommer <saschasommer@freenet.de> 7087L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) 7088S: Maintained 7089F: drivers/mmc/host/sdricoh_cs.c 7090 7091SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER 7092M: Chris Ball <cjb@laptop.org> 7093L: linux-mmc@vger.kernel.org 7094T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git 7095S: Maintained 7096F: drivers/mmc/host/sdhci.* 7097F: drivers/mmc/host/sdhci-pltfm.[ch] 7098 7099SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) 7100M: Anton Vorontsov <avorontsov@ru.mvista.com> 7101L: linuxppc-dev@lists.ozlabs.org 7102L: linux-mmc@vger.kernel.org 7103S: Maintained 7104F: drivers/mmc/host/sdhci-pltfm.[ch] 7105 7106SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER 7107M: Ben Dooks <ben-linux@fluff.org> 7108L: linux-mmc@vger.kernel.org 7109S: Maintained 7110F: drivers/mmc/host/sdhci-s3c.c 7111 7112SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER 7113M: Viresh Kumar <viresh.linux@gmail.com> 7114L: spear-devel@list.st.com 7115L: linux-mmc@vger.kernel.org 7116S: Maintained 7117F: drivers/mmc/host/sdhci-spear.c 7118 7119SECURITY SUBSYSTEM 7120M: James Morris <james.l.morris@oracle.com> 7121L: linux-security-module@vger.kernel.org (suggested Cc:) 7122T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git 7123W: http://kernsec.org/ 7124S: Supported 7125F: security/ 7126 7127SECURITY CONTACT 7128M: Security Officers <security@kernel.org> 7129S: Supported 7130 7131SELINUX SECURITY MODULE 7132M: Stephen Smalley <sds@tycho.nsa.gov> 7133M: James Morris <james.l.morris@oracle.com> 7134M: Eric Paris <eparis@parisplace.org> 7135L: selinux@tycho.nsa.gov (subscribers-only, general discussion) 7136W: http://selinuxproject.org 7137T: git git://git.infradead.org/users/eparis/selinux.git 7138S: Supported 7139F: include/linux/selinux* 7140F: security/selinux/ 7141F: scripts/selinux/ 7142 7143APPARMOR SECURITY MODULE 7144M: John Johansen <john.johansen@canonical.com> 7145L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) 7146W: apparmor.wiki.kernel.org 7147T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git 7148S: Supported 7149F: security/apparmor/ 7150 7151SENSABLE PHANTOM 7152M: Jiri Slaby <jirislaby@gmail.com> 7153S: Maintained 7154F: drivers/misc/phantom.c 7155F: include/uapi/linux/phantom.h 7156 7157SERIAL ATA (SATA) SUBSYSTEM 7158M: Tejun Heo <tj@kernel.org> 7159L: linux-ide@vger.kernel.org 7160T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git 7161S: Supported 7162F: drivers/ata/ 7163F: include/linux/ata.h 7164F: include/linux/libata.h 7165 7166SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER 7167M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com> 7168L: linux-scsi@vger.kernel.org 7169W: http://www.emulex.com 7170S: Supported 7171F: drivers/scsi/be2iscsi/ 7172 7173SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER 7174M: Sathya Perla <sathya.perla@emulex.com> 7175M: Subbu Seetharaman <subbu.seetharaman@emulex.com> 7176M: Ajit Khaparde <ajit.khaparde@emulex.com> 7177L: netdev@vger.kernel.org 7178W: http://www.emulex.com 7179S: Supported 7180F: drivers/net/ethernet/emulex/benet/ 7181 7182SFC NETWORK DRIVER 7183M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> 7184M: Ben Hutchings <bhutchings@solarflare.com> 7185L: netdev@vger.kernel.org 7186S: Supported 7187F: drivers/net/ethernet/sfc/ 7188 7189SGI GRU DRIVER 7190M: Dimitri Sivanich <sivanich@sgi.com> 7191M: Robin Holt <holt@sgi.com> 7192S: Maintained 7193F: drivers/misc/sgi-gru/ 7194 7195SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER 7196M: Pat Gefre <pfg@sgi.com> 7197L: linux-ia64@vger.kernel.org 7198S: Supported 7199F: Documentation/ia64/serial.txt 7200F: drivers/tty/serial/ioc?_serial.c 7201F: include/linux/ioc?.h 7202 7203SGI VISUAL WORKSTATION 320 AND 540 7204M: Andrey Panin <pazke@donpac.ru> 7205L: linux-visws-devel@lists.sf.net 7206W: http://linux-visws.sf.net 7207S: Maintained for 2.6. 7208F: Documentation/sgi-visws.txt 7209 7210SGI XP/XPC/XPNET DRIVER 7211M: Robin Holt <holt@sgi.com> 7212S: Maintained 7213F: drivers/misc/sgi-xp/ 7214 7215SI470X FM RADIO RECEIVER I2C DRIVER 7216M: Hans Verkuil <hverkuil@xs4all.nl> 7217L: linux-media@vger.kernel.org 7218T: git git://linuxtv.org/media_tree.git 7219W: http://linuxtv.org 7220S: Odd Fixes 7221F: drivers/media/radio/si470x/radio-si470x-i2c.c 7222 7223SI470X FM RADIO RECEIVER USB DRIVER 7224M: Hans Verkuil <hverkuil@xs4all.nl> 7225L: linux-media@vger.kernel.org 7226T: git git://linuxtv.org/media_tree.git 7227W: http://linuxtv.org 7228S: Maintained 7229F: drivers/media/radio/si470x/radio-si470x-common.c 7230F: drivers/media/radio/si470x/radio-si470x.h 7231F: drivers/media/radio/si470x/radio-si470x-usb.c 7232 7233SI4713 FM RADIO TRANSMITTER I2C DRIVER 7234M: Eduardo Valentin <edubezval@gmail.com> 7235L: linux-media@vger.kernel.org 7236T: git git://linuxtv.org/media_tree.git 7237W: http://linuxtv.org 7238S: Odd Fixes 7239F: drivers/media/radio/si4713-i2c.? 7240 7241SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER 7242M: Eduardo Valentin <edubezval@gmail.com> 7243L: linux-media@vger.kernel.org 7244T: git git://linuxtv.org/media_tree.git 7245W: http://linuxtv.org 7246S: Odd Fixes 7247F: drivers/media/radio/radio-si4713.h 7248 7249SIANO DVB DRIVER 7250M: Mauro Carvalho Chehab <mchehab@redhat.com> 7251L: linux-media@vger.kernel.org 7252W: http://linuxtv.org 7253T: git git://linuxtv.org/media_tree.git 7254S: Odd fixes 7255F: drivers/media/common/siano/ 7256F: drivers/media/dvb/siano/ 7257F: drivers/media/usb/siano/ 7258F: drivers/media/mmc/siano 7259 7260SH_VEU V4L2 MEM2MEM DRIVER 7261M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 7262L: linux-media@vger.kernel.org 7263S: Maintained 7264F: drivers/media/platform/sh_veu.c 7265 7266SH_VOU V4L2 OUTPUT DRIVER 7267M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 7268L: linux-media@vger.kernel.org 7269S: Odd Fixes 7270F: drivers/media/platform/sh_vou.c 7271F: include/media/sh_vou.h 7272 7273SIMPLE FIRMWARE INTERFACE (SFI) 7274M: Len Brown <lenb@kernel.org> 7275L: sfi-devel@simplefirmware.org 7276W: http://simplefirmware.org/ 7277T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git 7278S: Supported 7279F: arch/x86/platform/sfi/ 7280F: drivers/sfi/ 7281F: include/linux/sfi*.h 7282 7283SIMTEC EB110ATX (Chalice CATS) 7284P: Ben Dooks 7285P: Vincent Sanders <vince@simtec.co.uk> 7286M: Simtec Linux Team <linux@simtec.co.uk> 7287W: http://www.simtec.co.uk/products/EB110ATX/ 7288S: Supported 7289 7290SIMTEC EB2410ITX (BAST) 7291P: Ben Dooks 7292P: Vincent Sanders <vince@simtec.co.uk> 7293M: Simtec Linux Team <linux@simtec.co.uk> 7294W: http://www.simtec.co.uk/products/EB2410ITX/ 7295S: Supported 7296F: arch/arm/mach-s3c2410/mach-bast.c 7297F: arch/arm/mach-s3c2410/bast-ide.c 7298F: arch/arm/mach-s3c2410/bast-irq.c 7299 7300TI DAVINCI MACHINE SUPPORT 7301M: Sekhar Nori <nsekhar@ti.com> 7302M: Kevin Hilman <khilman@deeprootsystems.com> 7303L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) 7304T: git git://gitorious.org/linux-davinci/linux-davinci.git 7305Q: http://patchwork.kernel.org/project/linux-davinci/list/ 7306S: Supported 7307F: arch/arm/mach-davinci 7308F: drivers/i2c/busses/i2c-davinci.c 7309 7310TI DAVINCI SERIES MEDIA DRIVER 7311M: Lad, Prabhakar <prabhakar.csengg@gmail.com> 7312L: linux-media@vger.kernel.org 7313L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers) 7314W: http://linuxtv.org/ 7315Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7316T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git 7317S: Maintained 7318F: drivers/media/platform/davinci/ 7319F: include/media/davinci/ 7320 7321SIS 190 ETHERNET DRIVER 7322M: Francois Romieu <romieu@fr.zoreil.com> 7323L: netdev@vger.kernel.org 7324S: Maintained 7325F: drivers/net/ethernet/sis/sis190.c 7326 7327SIS 900/7016 FAST ETHERNET DRIVER 7328M: Daniele Venzano <venza@brownhat.org> 7329W: http://www.brownhat.org/sis900.html 7330L: netdev@vger.kernel.org 7331S: Maintained 7332F: drivers/net/ethernet/sis/sis900.* 7333 7334SIS FRAMEBUFFER DRIVER 7335M: Thomas Winischhofer <thomas@winischhofer.net> 7336W: http://www.winischhofer.net/linuxsisvga.shtml 7337S: Maintained 7338F: Documentation/fb/sisfb.txt 7339F: drivers/video/sis/ 7340F: include/video/sisfb.h 7341 7342SIS USB2VGA DRIVER 7343M: Thomas Winischhofer <thomas@winischhofer.net> 7344W: http://www.winischhofer.at/linuxsisusbvga.shtml 7345S: Maintained 7346F: drivers/usb/misc/sisusbvga/ 7347 7348SLAB ALLOCATOR 7349M: Christoph Lameter <cl@linux-foundation.org> 7350M: Pekka Enberg <penberg@kernel.org> 7351M: Matt Mackall <mpm@selenic.com> 7352L: linux-mm@kvack.org 7353S: Maintained 7354F: include/linux/sl?b*.h 7355F: mm/sl?b.c 7356 7357SLEEPABLE READ-COPY UPDATE (SRCU) 7358M: Lai Jiangshan <laijs@cn.fujitsu.com> 7359M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 7360W: http://www.rdrop.com/users/paulmck/RCU/ 7361S: Supported 7362T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git 7363F: include/linux/srcu* 7364F: kernel/srcu* 7365 7366SMACK SECURITY MODULE 7367M: Casey Schaufler <casey@schaufler-ca.com> 7368L: linux-security-module@vger.kernel.org 7369W: http://schaufler-ca.com 7370T: git git://git.gitorious.org/smack-next/kernel.git 7371S: Maintained 7372F: Documentation/security/Smack.txt 7373F: security/smack/ 7374 7375SMC91x ETHERNET DRIVER 7376M: Nicolas Pitre <nico@fluxnic.net> 7377S: Odd Fixes 7378F: drivers/net/ethernet/smsc/smc91x.* 7379 7380SMIA AND SMIA++ IMAGE SENSOR DRIVER 7381M: Sakari Ailus <sakari.ailus@iki.fi> 7382L: linux-media@vger.kernel.org 7383S: Maintained 7384F: drivers/media/i2c/smiapp 7385F: include/media/smiapp.h 7386F: drivers/media/i2c/smiapp-pll.c 7387F: drivers/media/i2c/smiapp-pll.h 7388 7389SMM665 HARDWARE MONITOR DRIVER 7390M: Guenter Roeck <linux@roeck-us.net> 7391L: lm-sensors@lm-sensors.org 7392S: Maintained 7393F: Documentation/hwmon/smm665 7394F: drivers/hwmon/smm665.c 7395 7396SMSC EMC2103 HARDWARE MONITOR DRIVER 7397M: Steve Glendinning <steve.glendinning@shawell.net> 7398L: lm-sensors@lm-sensors.org 7399S: Maintained 7400F: Documentation/hwmon/emc2103 7401F: drivers/hwmon/emc2103.c 7402 7403SMSC SCH5627 HARDWARE MONITOR DRIVER 7404M: Hans de Goede <hdegoede@redhat.com> 7405L: lm-sensors@lm-sensors.org 7406S: Supported 7407F: Documentation/hwmon/sch5627 7408F: drivers/hwmon/sch5627.c 7409 7410SMSC47B397 HARDWARE MONITOR DRIVER 7411M: Jean Delvare <khali@linux-fr.org> 7412L: lm-sensors@lm-sensors.org 7413S: Maintained 7414F: Documentation/hwmon/smsc47b397 7415F: drivers/hwmon/smsc47b397.c 7416 7417SMSC911x ETHERNET DRIVER 7418M: Steve Glendinning <steve.glendinning@shawell.net> 7419L: netdev@vger.kernel.org 7420S: Maintained 7421F: include/linux/smsc911x.h 7422F: drivers/net/ethernet/smsc/smsc911x.* 7423 7424SMSC9420 PCI ETHERNET DRIVER 7425M: Steve Glendinning <steve.glendinning@shawell.net> 7426L: netdev@vger.kernel.org 7427S: Maintained 7428F: drivers/net/ethernet/smsc/smsc9420.* 7429 7430SMSC UFX6000 and UFX7000 USB to VGA DRIVER 7431M: Steve Glendinning <steve.glendinning@shawell.net> 7432L: linux-fbdev@vger.kernel.org 7433S: Maintained 7434F: drivers/video/smscufx.c 7435 7436SOC-CAMERA V4L2 SUBSYSTEM 7437M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 7438L: linux-media@vger.kernel.org 7439T: git git://linuxtv.org/media_tree.git 7440S: Maintained 7441F: include/media/soc* 7442F: drivers/media/i2c/soc_camera/ 7443F: drivers/media/platform/soc_camera/ 7444 7445SOEKRIS NET48XX LED SUPPORT 7446M: Chris Boot <bootc@bootc.net> 7447S: Maintained 7448F: drivers/leds/leds-net48xx.c 7449 7450SOFTWARE RAID (Multiple Disks) SUPPORT 7451M: Neil Brown <neilb@suse.de> 7452L: linux-raid@vger.kernel.org 7453S: Supported 7454F: drivers/md/ 7455F: include/linux/raid/ 7456F: include/uapi/linux/raid/ 7457 7458SONIC NETWORK DRIVER 7459M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> 7460L: netdev@vger.kernel.org 7461S: Maintained 7462F: drivers/net/ethernet/natsemi/sonic.* 7463 7464SONICS SILICON BACKPLANE DRIVER (SSB) 7465M: Michael Buesch <m@bues.ch> 7466L: netdev@vger.kernel.org 7467S: Maintained 7468F: drivers/ssb/ 7469F: include/linux/ssb/ 7470 7471SONY VAIO CONTROL DEVICE DRIVER 7472M: Mattia Dongili <malattia@linux.it> 7473L: platform-driver-x86@vger.kernel.org 7474W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers 7475S: Maintained 7476F: Documentation/laptops/sony-laptop.txt 7477F: drivers/char/sonypi.c 7478F: drivers/platform/x86/sony-laptop.c 7479F: include/linux/sony-laptop.h 7480 7481SONY MEMORYSTICK CARD SUPPORT 7482M: Alex Dubov <oakad@yahoo.com> 7483W: http://tifmxx.berlios.de/ 7484S: Maintained 7485F: drivers/memstick/host/tifm_ms.c 7486 7487SOUND 7488M: Jaroslav Kysela <perex@perex.cz> 7489M: Takashi Iwai <tiwai@suse.de> 7490L: alsa-devel@alsa-project.org (moderated for non-subscribers) 7491W: http://www.alsa-project.org/ 7492T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git 7493T: git git://git.alsa-project.org/alsa-kernel.git 7494S: Maintained 7495F: Documentation/sound/ 7496F: include/sound/ 7497F: include/uapi/sound/ 7498F: sound/ 7499 7500SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) 7501M: Liam Girdwood <lgirdwood@gmail.com> 7502M: Mark Brown <broonie@kernel.org> 7503T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git 7504L: alsa-devel@alsa-project.org (moderated for non-subscribers) 7505W: http://alsa-project.org/main/index.php/ASoC 7506S: Supported 7507F: sound/soc/ 7508F: include/sound/soc* 7509 7510SPARC + UltraSPARC (sparc/sparc64) 7511M: "David S. Miller" <davem@davemloft.net> 7512L: sparclinux@vger.kernel.org 7513Q: http://patchwork.ozlabs.org/project/sparclinux/list/ 7514T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git 7515T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git 7516S: Maintained 7517F: arch/sparc/ 7518F: drivers/sbus/ 7519 7520SPARC SERIAL DRIVERS 7521M: "David S. Miller" <davem@davemloft.net> 7522L: sparclinux@vger.kernel.org 7523T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git 7524T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git 7525S: Maintained 7526F: include/linux/sunserialcore.h 7527F: drivers/tty/serial/suncore.c 7528F: drivers/tty/serial/sunhv.c 7529F: drivers/tty/serial/sunsab.c 7530F: drivers/tty/serial/sunsab.h 7531F: drivers/tty/serial/sunsu.c 7532F: drivers/tty/serial/sunzilog.c 7533F: drivers/tty/serial/sunzilog.h 7534 7535SPARSE CHECKER 7536M: "Christopher Li" <sparse@chrisli.org> 7537L: linux-sparse@vger.kernel.org 7538W: https://sparse.wiki.kernel.org/ 7539T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git 7540T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git 7541S: Maintained 7542F: include/linux/compiler.h 7543 7544SPEAR PLATFORM SUPPORT 7545M: Viresh Kumar <viresh.linux@gmail.com> 7546M: Shiraz Hashim <shiraz.hashim@st.com> 7547L: spear-devel@list.st.com 7548L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 7549W: http://www.st.com/spear 7550S: Maintained 7551F: arch/arm/plat-spear/ 7552 7553SPEAR13XX MACHINE SUPPORT 7554M: Viresh Kumar <viresh.linux@gmail.com> 7555M: Shiraz Hashim <shiraz.hashim@st.com> 7556L: spear-devel@list.st.com 7557L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 7558W: http://www.st.com/spear 7559S: Maintained 7560F: arch/arm/mach-spear13xx/ 7561 7562SPEAR3XX MACHINE SUPPORT 7563M: Viresh Kumar <viresh.linux@gmail.com> 7564M: Shiraz Hashim <shiraz.hashim@st.com> 7565L: spear-devel@list.st.com 7566L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 7567W: http://www.st.com/spear 7568S: Maintained 7569F: arch/arm/mach-spear3xx/ 7570 7571SPEAR6XX MACHINE SUPPORT 7572M: Rajeev Kumar <rajeev-dlh.kumar@st.com> 7573M: Shiraz Hashim <shiraz.hashim@st.com> 7574M: Viresh Kumar <viresh.linux@gmail.com> 7575L: spear-devel@list.st.com 7576L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 7577W: http://www.st.com/spear 7578S: Maintained 7579F: arch/arm/mach-spear6xx/ 7580 7581SPEAR CLOCK FRAMEWORK SUPPORT 7582M: Viresh Kumar <viresh.linux@gmail.com> 7583L: spear-devel@list.st.com 7584L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 7585W: http://www.st.com/spear 7586S: Maintained 7587F: drivers/clk/spear/ 7588 7589SPI SUBSYSTEM 7590M: Mark Brown <broonie@kernel.org> 7591M: Grant Likely <grant.likely@linaro.org> 7592L: spi-devel-general@lists.sourceforge.net 7593T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git 7594Q: http://patchwork.kernel.org/project/spi-devel-general/list/ 7595S: Maintained 7596F: Documentation/spi/ 7597F: drivers/spi/ 7598F: include/linux/spi/ 7599F: include/uapi/linux/spi/ 7600 7601SPIDERNET NETWORK DRIVER for CELL 7602M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> 7603M: Jens Osterkamp <jens@de.ibm.com> 7604L: netdev@vger.kernel.org 7605S: Supported 7606F: Documentation/networking/spider_net.txt 7607F: drivers/net/ethernet/toshiba/spider_net* 7608 7609SPU FILE SYSTEM 7610M: Jeremy Kerr <jk@ozlabs.org> 7611L: linuxppc-dev@lists.ozlabs.org 7612L: cbe-oss-dev@lists.ozlabs.org 7613W: http://www.ibm.com/developerworks/power/cell/ 7614S: Supported 7615F: Documentation/filesystems/spufs.txt 7616F: arch/powerpc/platforms/cell/spufs/ 7617 7618SQUASHFS FILE SYSTEM 7619M: Phillip Lougher <phillip@squashfs.org.uk> 7620L: squashfs-devel@lists.sourceforge.net (subscribers-only) 7621W: http://squashfs.org.uk 7622S: Maintained 7623F: Documentation/filesystems/squashfs.txt 7624F: fs/squashfs/ 7625 7626SRM (Alpha) environment access 7627M: Jan-Benedict Glaw <jbglaw@lug-owl.de> 7628S: Maintained 7629F: arch/alpha/kernel/srm_env.c 7630 7631STABLE BRANCH 7632M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 7633L: stable@vger.kernel.org 7634S: Supported 7635 7636STAGING SUBSYSTEM 7637M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 7638T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git 7639L: devel@driverdev.osuosl.org 7640S: Supported 7641F: drivers/staging/ 7642 7643STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS 7644M: Henk de Groot <pe1dnn@amsat.org> 7645S: Odd Fixes 7646F: drivers/staging/wlags49_h2/ 7647F: drivers/staging/wlags49_h25/ 7648 7649STAGING - ASUS OLED 7650M: Jakub Schmidtke <sjakub@gmail.com> 7651S: Odd Fixes 7652F: drivers/staging/asus_oled/ 7653 7654STAGING - COMEDI 7655M: Ian Abbott <abbotti@mev.co.uk> 7656M: Mori Hess <fmhess@users.sourceforge.net> 7657S: Odd Fixes 7658F: drivers/staging/comedi/ 7659 7660STAGING - CRYSTAL HD VIDEO DECODER 7661M: Naren Sankar <nsankar@broadcom.com> 7662M: Jarod Wilson <jarod@wilsonet.com> 7663M: Scott Davilla <davilla@4pi.com> 7664M: Manu Abraham <abraham.manu@gmail.com> 7665S: Odd Fixes 7666F: drivers/staging/crystalhd/ 7667 7668STAGING - ECHO CANCELLER 7669M: Steve Underwood <steveu@coppice.org> 7670M: David Rowe <david@rowetel.com> 7671S: Odd Fixes 7672F: drivers/staging/echo/ 7673 7674STAGING - ET131X NETWORK DRIVER 7675M: Mark Einon <mark.einon@gmail.com> 7676S: Odd Fixes 7677F: drivers/staging/et131x/ 7678 7679STAGING - FLARION FT1000 DRIVERS 7680M: Marek Belisko <marek.belisko@gmail.com> 7681S: Odd Fixes 7682F: drivers/staging/ft1000/ 7683 7684STAGING - FRONTIER TRANZPORT AND ALPHATRACK 7685M: David Täht <d@teklibre.com> 7686S: Odd Fixes 7687F: drivers/staging/frontier/ 7688 7689STAGING - GO7007 MPEG CODEC 7690M: Hans Verkuil <hans.verkuil@cisco.com> 7691S: Maintained 7692F: drivers/staging/media/go7007/ 7693 7694STAGING - INDUSTRIAL IO 7695M: Jonathan Cameron <jic23@cam.ac.uk> 7696L: linux-iio@vger.kernel.org 7697S: Odd Fixes 7698F: drivers/staging/iio/ 7699 7700STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS 7701M: Jarod Wilson <jarod@wilsonet.com> 7702W: http://www.lirc.org/ 7703S: Odd Fixes 7704F: drivers/staging/media/lirc/ 7705 7706STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec) 7707M: Julian Andres Klode <jak@jak-linux.org> 7708M: Marc Dietrich <marvin24@gmx.de> 7709L: ac100@lists.launchpad.net (moderated for non-subscribers) 7710L: linux-tegra@vger.kernel.org 7711S: Maintained 7712F: drivers/staging/nvec/ 7713 7714STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON) 7715M: Andres Salomon <dilinger@queued.net> 7716M: Chris Ball <cjb@laptop.org> 7717M: Jon Nettleton <jon.nettleton@gmail.com> 7718W: http://wiki.laptop.org/go/DCON 7719S: Odd Fixes 7720F: drivers/staging/olpc_dcon/ 7721 7722STAGING - OZMO DEVICES USB OVER WIFI DRIVER 7723M: Rupesh Gujare <rupesh.gujare@atmel.com> 7724S: Maintained 7725F: drivers/staging/ozwpan/ 7726 7727STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER 7728M: Willy Tarreau <willy@meta-x.org> 7729S: Odd Fixes 7730F: drivers/staging/panel/ 7731 7732STAGING - REALTEK RTL8712U DRIVERS 7733M: Larry Finger <Larry.Finger@lwfinger.net> 7734M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>. 7735S: Odd Fixes 7736F: drivers/staging/rtl8712/ 7737 7738STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER 7739M: Teddy Wang <teddy.wang@siliconmotion.com.cn> 7740S: Odd Fixes 7741F: drivers/staging/sm7xxfb/ 7742 7743STAGING - SOFTLOGIC 6x10 MPEG CODEC 7744M: Ismael Luceno <ismael.luceno@corp.bluecherry.net> 7745S: Supported 7746F: drivers/staging/media/solo6x10/ 7747 7748STAGING - SPEAKUP CONSOLE SPEECH DRIVER 7749M: William Hubbs <w.d.hubbs@gmail.com> 7750M: Chris Brannon <chris@the-brannons.com> 7751M: Kirk Reiser <kirk@braille.uwo.ca> 7752M: Samuel Thibault <samuel.thibault@ens-lyon.org> 7753L: speakup@braille.uwo.ca 7754W: http://www.linux-speakup.org/ 7755S: Odd Fixes 7756F: drivers/staging/speakup/ 7757 7758STAGING - TI DSP BRIDGE DRIVERS 7759M: Omar Ramirez Luna <omar.ramirez@copitl.com> 7760S: Odd Fixes 7761F: drivers/staging/tidspbridge/ 7762 7763STAGING - USB ENE SM/MS CARD READER DRIVER 7764M: Al Cho <acho@novell.com> 7765S: Odd Fixes 7766F: drivers/staging/keucr/ 7767 7768STAGING - VIA VT665X DRIVERS 7769M: Forest Bond <forest@alittletooquiet.net> 7770S: Odd Fixes 7771F: drivers/staging/vt665?/ 7772 7773STAGING - WINBOND IS89C35 WLAN USB DRIVER 7774M: Pavel Machek <pavel@ucw.cz> 7775S: Odd Fixes 7776F: drivers/staging/winbond/ 7777 7778STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER 7779M: Arnaud Patard <arnaud.patard@rtp-net.org> 7780S: Odd Fixes 7781F: drivers/staging/xgifb/ 7782 7783STARFIRE/DURALAN NETWORK DRIVER 7784M: Ion Badulescu <ionut@badula.org> 7785S: Odd Fixes 7786F: drivers/net/ethernet/adaptec/starfire* 7787 7788SUN3/3X 7789M: Sam Creasey <sammy@sammy.net> 7790W: http://sammy.net/sun3/ 7791S: Maintained 7792F: arch/m68k/kernel/*sun3* 7793F: arch/m68k/sun3*/ 7794F: arch/m68k/include/asm/sun3* 7795F: drivers/net/ethernet/i825xx/sun3* 7796 7797SUPERH 7798M: Paul Mundt <lethal@linux-sh.org> 7799L: linux-sh@vger.kernel.org 7800W: http://www.linux-sh.org 7801Q: http://patchwork.kernel.org/project/linux-sh/list/ 7802T: git git://github.com/pmundt/linux-sh.git sh-latest 7803S: Supported 7804F: Documentation/sh/ 7805F: arch/sh/ 7806F: drivers/sh/ 7807 7808SUSPEND TO RAM 7809M: Len Brown <len.brown@intel.com> 7810M: Pavel Machek <pavel@ucw.cz> 7811M: "Rafael J. Wysocki" <rjw@sisk.pl> 7812L: linux-pm@vger.kernel.org 7813S: Supported 7814F: Documentation/power/ 7815F: arch/x86/kernel/acpi/ 7816F: drivers/base/power/ 7817F: kernel/power/ 7818F: include/linux/suspend.h 7819F: include/linux/freezer.h 7820F: include/linux/pm.h 7821 7822SVGA HANDLING 7823M: Martin Mares <mj@ucw.cz> 7824L: linux-video@atrey.karlin.mff.cuni.cz 7825S: Maintained 7826F: Documentation/svga.txt 7827F: arch/x86/boot/video* 7828 7829SWIOTLB SUBSYSTEM 7830M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 7831L: linux-kernel@vger.kernel.org 7832S: Supported 7833F: lib/swiotlb.c 7834F: arch/*/kernel/pci-swiotlb.c 7835F: include/linux/swiotlb.h 7836 7837SYNOPSYS ARC ARCHITECTURE 7838M: Vineet Gupta <vgupta@synopsys.com> 7839S: Supported 7840F: arch/arc/ 7841F: Documentation/devicetree/bindings/arc/ 7842F: drivers/tty/serial/arc-uart.c 7843 7844SYSV FILESYSTEM 7845M: Christoph Hellwig <hch@infradead.org> 7846S: Maintained 7847F: Documentation/filesystems/sysv-fs.txt 7848F: fs/sysv/ 7849F: include/linux/sysv_fs.h 7850 7851TARGET SUBSYSTEM 7852M: Nicholas A. Bellinger <nab@linux-iscsi.org> 7853L: linux-scsi@vger.kernel.org 7854L: target-devel@vger.kernel.org 7855L: http://groups.google.com/group/linux-iscsi-target-dev 7856W: http://www.linux-iscsi.org 7857T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master 7858S: Supported 7859F: drivers/target/ 7860F: include/target/ 7861F: Documentation/target/ 7862 7863TASKSTATS STATISTICS INTERFACE 7864M: Balbir Singh <bsingharora@gmail.com> 7865S: Maintained 7866F: Documentation/accounting/taskstats* 7867F: include/linux/taskstats* 7868F: kernel/taskstats.c 7869 7870TC CLASSIFIER 7871M: Jamal Hadi Salim <jhs@mojatatu.com> 7872L: netdev@vger.kernel.org 7873S: Maintained 7874F: include/net/pkt_cls.h 7875F: include/uapi/linux/pkt_cls.h 7876F: net/sched/ 7877 7878TCP LOW PRIORITY MODULE 7879M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> 7880M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> 7881W: http://tcp-lp-mod.sourceforge.net/ 7882S: Maintained 7883F: net/ipv4/tcp_lp.c 7884 7885TDA10071 MEDIA DRIVER 7886M: Antti Palosaari <crope@iki.fi> 7887L: linux-media@vger.kernel.org 7888W: http://linuxtv.org/ 7889W: http://palosaari.fi/linux/ 7890Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7891T: git git://linuxtv.org/anttip/media_tree.git 7892S: Maintained 7893F: drivers/media/dvb-frontends/tda10071* 7894 7895TDA18212 MEDIA DRIVER 7896M: Antti Palosaari <crope@iki.fi> 7897L: linux-media@vger.kernel.org 7898W: http://linuxtv.org/ 7899W: http://palosaari.fi/linux/ 7900Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7901T: git git://linuxtv.org/anttip/media_tree.git 7902S: Maintained 7903F: drivers/media/tuners/tda18212* 7904 7905TDA18218 MEDIA DRIVER 7906M: Antti Palosaari <crope@iki.fi> 7907L: linux-media@vger.kernel.org 7908W: http://linuxtv.org/ 7909W: http://palosaari.fi/linux/ 7910Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7911T: git git://linuxtv.org/anttip/media_tree.git 7912S: Maintained 7913F: drivers/media/tuners/tda18218* 7914 7915TDA18271 MEDIA DRIVER 7916M: Michael Krufky <mkrufky@linuxtv.org> 7917L: linux-media@vger.kernel.org 7918W: http://linuxtv.org/ 7919W: http://github.com/mkrufky 7920Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7921T: git git://linuxtv.org/mkrufky/tuners.git 7922S: Maintained 7923F: drivers/media/tuners/tda18271* 7924 7925TDA827x MEDIA DRIVER 7926M: Michael Krufky <mkrufky@linuxtv.org> 7927L: linux-media@vger.kernel.org 7928W: http://linuxtv.org/ 7929W: http://github.com/mkrufky 7930Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7931T: git git://linuxtv.org/mkrufky/tuners.git 7932S: Maintained 7933F: drivers/media/tuners/tda8290.* 7934 7935TDA8290 MEDIA DRIVER 7936M: Michael Krufky <mkrufky@linuxtv.org> 7937L: linux-media@vger.kernel.org 7938W: http://linuxtv.org/ 7939W: http://github.com/mkrufky 7940Q: http://patchwork.linuxtv.org/project/linux-media/list/ 7941T: git git://linuxtv.org/mkrufky/tuners.git 7942S: Maintained 7943F: drivers/media/tuners/tda8290.* 7944 7945TDA9840 MEDIA DRIVER 7946M: Hans Verkuil <hverkuil@xs4all.nl> 7947L: linux-media@vger.kernel.org 7948T: git git://linuxtv.org/media_tree.git 7949W: http://linuxtv.org 7950S: Maintained 7951F: drivers/media/i2c/tda9840* 7952 7953TEA5761 TUNER DRIVER 7954M: Mauro Carvalho Chehab <mchehab@redhat.com> 7955L: linux-media@vger.kernel.org 7956W: http://linuxtv.org 7957T: git git://linuxtv.org/media_tree.git 7958S: Odd fixes 7959F: drivers/media/tuners/tea5761.* 7960 7961TEA5767 TUNER DRIVER 7962M: Mauro Carvalho Chehab <mchehab@redhat.com> 7963L: linux-media@vger.kernel.org 7964W: http://linuxtv.org 7965T: git git://linuxtv.org/media_tree.git 7966S: Maintained 7967F: drivers/media/tuners/tea5767.* 7968 7969TEA6415C MEDIA DRIVER 7970M: Hans Verkuil <hverkuil@xs4all.nl> 7971L: linux-media@vger.kernel.org 7972T: git git://linuxtv.org/media_tree.git 7973W: http://linuxtv.org 7974S: Maintained 7975F: drivers/media/i2c/tea6415c* 7976 7977TEA6420 MEDIA DRIVER 7978M: Hans Verkuil <hverkuil@xs4all.nl> 7979L: linux-media@vger.kernel.org 7980T: git git://linuxtv.org/media_tree.git 7981W: http://linuxtv.org 7982S: Maintained 7983F: drivers/media/i2c/tea6420* 7984 7985TEAM DRIVER 7986M: Jiri Pirko <jiri@resnulli.us> 7987L: netdev@vger.kernel.org 7988S: Supported 7989F: drivers/net/team/ 7990F: include/linux/if_team.h 7991F: include/uapi/linux/if_team.h 7992 7993TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT 7994M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com> 7995S: Maintained 7996F: arch/x86/platform/ts5500/ 7997 7998TECHNOTREND USB IR RECEIVER 7999M: Sean Young <sean@mess.org> 8000L: linux-media@vger.kernel.org 8001S: Maintained 8002F: drivers/media/rc/ttusbir.c 8003 8004TEGRA SUPPORT 8005M: Stephen Warren <swarren@wwwdotorg.org> 8006L: linux-tegra@vger.kernel.org 8007Q: http://patchwork.ozlabs.org/project/linux-tegra/list/ 8008T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git 8009S: Supported 8010N: [^a-z]tegra 8011 8012TEHUTI ETHERNET DRIVER 8013M: Andy Gospodarek <andy@greyhouse.net> 8014L: netdev@vger.kernel.org 8015S: Supported 8016F: drivers/net/ethernet/tehuti/* 8017 8018Telecom Clock Driver for MCPL0010 8019M: Mark Gross <mark.gross@intel.com> 8020S: Supported 8021F: drivers/char/tlclk.c 8022 8023TENSILICA XTENSA PORT (xtensa) 8024M: Chris Zankel <chris@zankel.net> 8025M: Max Filippov <jcmvbkbc@gmail.com> 8026L: linux-xtensa@linux-xtensa.org 8027S: Maintained 8028F: arch/xtensa/ 8029 8030THERMAL 8031M: Zhang Rui <rui.zhang@intel.com> 8032M: Eduardo Valentin <eduardo.valentin@ti.com> 8033L: linux-pm@vger.kernel.org 8034T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git 8035Q: https://patchwork.kernel.org/project/linux-pm/list/ 8036S: Supported 8037F: drivers/thermal/ 8038F: include/linux/thermal.h 8039F: include/linux/cpu_cooling.h 8040 8041THINGM BLINK(1) USB RGB LED DRIVER 8042M: Vivien Didelot <vivien.didelot@savoirfairelinux.com> 8043S: Maintained 8044F: drivers/hid/hid-thingm.c 8045 8046THINKPAD ACPI EXTRAS DRIVER 8047M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> 8048L: ibm-acpi-devel@lists.sourceforge.net 8049L: platform-driver-x86@vger.kernel.org 8050W: http://ibm-acpi.sourceforge.net 8051W: http://thinkwiki.org/wiki/Ibm-acpi 8052T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git 8053S: Maintained 8054F: drivers/platform/x86/thinkpad_acpi.c 8055 8056TI BANDGAP AND THERMAL DRIVER 8057M: Eduardo Valentin <eduardo.valentin@ti.com> 8058L: linux-pm@vger.kernel.org 8059S: Maintained 8060F: drivers/staging/omap-thermal/ 8061 8062TI FLASH MEDIA INTERFACE DRIVER 8063M: Alex Dubov <oakad@yahoo.com> 8064S: Maintained 8065F: drivers/misc/tifm* 8066F: drivers/mmc/host/tifm_sd.c 8067F: include/linux/tifm.h 8068 8069TI LM49xxx FAMILY ASoC CODEC DRIVERS 8070M: M R Swami Reddy <mr.swami.reddy@ti.com> 8071M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com> 8072L: alsa-devel@alsa-project.org (moderated for non-subscribers) 8073S: Maintained 8074F: sound/soc/codecs/lm49453* 8075F: sound/soc/codecs/isabelle* 8076 8077TI LP855x BACKLIGHT DRIVER 8078M: Milo Kim <milo.kim@ti.com> 8079S: Maintained 8080F: Documentation/backlight/lp855x-driver.txt 8081F: drivers/video/backlight/lp855x_bl.c 8082F: include/linux/platform_data/lp855x.h 8083 8084TI LP8727 CHARGER DRIVER 8085M: Milo Kim <milo.kim@ti.com> 8086S: Maintained 8087F: drivers/power/lp8727_charger.c 8088F: include/linux/platform_data/lp8727.h 8089 8090TI LP8788 MFD DRIVER 8091M: Milo Kim <milo.kim@ti.com> 8092S: Maintained 8093F: drivers/iio/adc/lp8788_adc.c 8094F: drivers/leds/leds-lp8788.c 8095F: drivers/mfd/lp8788*.c 8096F: drivers/power/lp8788-charger.c 8097F: drivers/regulator/lp8788-*.c 8098F: include/linux/mfd/lp8788*.h 8099 8100TI TWL4030 SERIES SOC CODEC DRIVER 8101M: Peter Ujfalusi <peter.ujfalusi@ti.com> 8102L: alsa-devel@alsa-project.org (moderated for non-subscribers) 8103S: Maintained 8104F: sound/soc/codecs/twl4030* 8105 8106TI WILINK WIRELESS DRIVERS 8107M: Luciano Coelho <coelho@ti.com> 8108L: linux-wireless@vger.kernel.org 8109W: http://wireless.kernel.org/en/users/Drivers/wl12xx 8110W: http://wireless.kernel.org/en/users/Drivers/wl1251 8111T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git 8112S: Maintained 8113F: drivers/net/wireless/ti/ 8114F: include/linux/wl12xx.h 8115 8116TIPC NETWORK LAYER 8117M: Jon Maloy <jon.maloy@ericsson.com> 8118M: Allan Stephens <allan.stephens@windriver.com> 8119L: netdev@vger.kernel.org (core kernel code) 8120L: tipc-discussion@lists.sourceforge.net (user apps, general discussion) 8121W: http://tipc.sourceforge.net/ 8122S: Maintained 8123F: include/uapi/linux/tipc*.h 8124F: net/tipc/ 8125 8126TILE ARCHITECTURE 8127M: Chris Metcalf <cmetcalf@tilera.com> 8128W: http://www.tilera.com/scm/ 8129S: Supported 8130F: arch/tile/ 8131F: drivers/tty/hvc/hvc_tile.c 8132F: drivers/net/ethernet/tile/ 8133F: drivers/edac/tile_edac.c 8134 8135TLAN NETWORK DRIVER 8136M: Samuel Chessman <chessman@tux.org> 8137L: tlan-devel@lists.sourceforge.net (subscribers-only) 8138W: http://sourceforge.net/projects/tlan/ 8139S: Maintained 8140F: Documentation/networking/tlan.txt 8141F: drivers/net/ethernet/ti/tlan.* 8142 8143TOMOYO SECURITY MODULE 8144M: Kentaro Takeda <takedakn@nttdata.co.jp> 8145M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> 8146L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) 8147L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) 8148L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) 8149L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) 8150W: http://tomoyo.sourceforge.jp/ 8151T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/ 8152S: Maintained 8153F: security/tomoyo/ 8154 8155TOPSTAR LAPTOP EXTRAS DRIVER 8156M: Herton Ronaldo Krzesinski <herton@canonical.com> 8157L: platform-driver-x86@vger.kernel.org 8158S: Maintained 8159F: drivers/platform/x86/topstar-laptop.c 8160 8161TOSHIBA ACPI EXTRAS DRIVER 8162L: platform-driver-x86@vger.kernel.org 8163S: Orphan 8164F: drivers/platform/x86/toshiba_acpi.c 8165 8166TOSHIBA SMM DRIVER 8167M: Jonathan Buzzard <jonathan@buzzard.org.uk> 8168L: tlinux-users@tce.toshiba-dme.co.jp 8169W: http://www.buzzard.org.uk/toshiba/ 8170S: Maintained 8171F: drivers/char/toshiba.c 8172F: include/linux/toshiba.h 8173F: include/uapi/linux/toshiba.h 8174 8175TMIO MMC DRIVER 8176M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 8177M: Ian Molton <ian@mnementh.co.uk> 8178L: linux-mmc@vger.kernel.org 8179S: Maintained 8180F: drivers/mmc/host/tmio_mmc* 8181F: drivers/mmc/host/sh_mobile_sdhi.c 8182F: include/linux/mmc/tmio.h 8183F: include/linux/mmc/sh_mobile_sdhi.h 8184 8185TMPFS (SHMEM FILESYSTEM) 8186M: Hugh Dickins <hughd@google.com> 8187L: linux-mm@kvack.org 8188S: Maintained 8189F: include/linux/shmem_fs.h 8190F: mm/shmem.c 8191 8192TM6000 VIDEO4LINUX DRIVER 8193M: Mauro Carvalho Chehab <mchehab@redhat.com> 8194L: linux-media@vger.kernel.org 8195W: http://linuxtv.org 8196T: git git://linuxtv.org/media_tree.git 8197S: Odd fixes 8198F: drivers/media/usb/tm6000/ 8199 8200TPM DEVICE DRIVER 8201M: Kent Yoder <key@linux.vnet.ibm.com> 8202M: Rajiv Andrade <mail@srajiv.net> 8203W: http://tpmdd.sourceforge.net 8204M: Marcel Selhorst <tpmdd@selhorst.net> 8205M: Sirrix AG <tpmdd@sirrix.com> 8206W: http://www.sirrix.com 8207L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) 8208S: Maintained 8209F: drivers/char/tpm/ 8210 8211TRACING 8212M: Steven Rostedt <rostedt@goodmis.org> 8213M: Frederic Weisbecker <fweisbec@gmail.com> 8214M: Ingo Molnar <mingo@redhat.com> 8215T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core 8216S: Maintained 8217F: Documentation/trace/ftrace.txt 8218F: arch/*/*/*/ftrace.h 8219F: arch/*/kernel/ftrace.c 8220F: include/*/ftrace.h 8221F: include/linux/trace*.h 8222F: include/trace/ 8223F: kernel/trace/ 8224 8225TRIVIAL PATCHES 8226M: Jiri Kosina <trivial@kernel.org> 8227T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git 8228S: Maintained 8229K: ^Subject:.*(?i)trivial 8230 8231TTY LAYER 8232M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 8233M: Jiri Slaby <jslaby@suse.cz> 8234S: Supported 8235T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git 8236F: drivers/tty/ 8237F: drivers/tty/serial/serial_core.c 8238F: include/linux/serial_core.h 8239F: include/linux/serial.h 8240F: include/linux/tty.h 8241F: include/uapi/linux/serial_core.h 8242F: include/uapi/linux/serial.h 8243F: include/uapi/linux/tty.h 8244 8245TUA9001 MEDIA DRIVER 8246M: Antti Palosaari <crope@iki.fi> 8247L: linux-media@vger.kernel.org 8248W: http://linuxtv.org/ 8249W: http://palosaari.fi/linux/ 8250Q: http://patchwork.linuxtv.org/project/linux-media/list/ 8251T: git git://linuxtv.org/anttip/media_tree.git 8252S: Maintained 8253F: drivers/media/tuners/tua9001* 8254 8255TULIP NETWORK DRIVERS 8256M: Grant Grundler <grundler@parisc-linux.org> 8257L: netdev@vger.kernel.org 8258S: Maintained 8259F: drivers/net/ethernet/dec/tulip/ 8260 8261TUN/TAP driver 8262M: Maxim Krasnyansky <maxk@qti.qualcomm.com> 8263W: http://vtun.sourceforge.net/tun 8264S: Maintained 8265F: Documentation/networking/tuntap.txt 8266F: arch/um/os-Linux/drivers/ 8267 8268TURBOCHANNEL SUBSYSTEM 8269M: "Maciej W. Rozycki" <macro@linux-mips.org> 8270S: Maintained 8271F: drivers/tc/ 8272F: include/linux/tc.h 8273 8274U14-34F SCSI DRIVER 8275M: Dario Ballabio <ballabio_dario@emc.com> 8276L: linux-scsi@vger.kernel.org 8277S: Maintained 8278F: drivers/scsi/u14-34f.c 8279 8280UBI FILE SYSTEM (UBIFS) 8281M: Artem Bityutskiy <dedekind1@gmail.com> 8282M: Adrian Hunter <adrian.hunter@intel.com> 8283L: linux-mtd@lists.infradead.org 8284T: git git://git.infradead.org/ubifs-2.6.git 8285W: http://www.linux-mtd.infradead.org/doc/ubifs.html 8286S: Maintained 8287F: Documentation/filesystems/ubifs.txt 8288F: fs/ubifs/ 8289 8290UCLINUX (AND M68KNOMMU) 8291M: Greg Ungerer <gerg@uclinux.org> 8292W: http://www.uclinux.org/ 8293L: uclinux-dev@uclinux.org (subscribers-only) 8294S: Maintained 8295F: arch/m68k/*/*_no.* 8296F: arch/m68k/include/asm/*_no.* 8297 8298UCLINUX FOR RENESAS H8/300 (H8300) 8299M: Yoshinori Sato <ysato@users.sourceforge.jp> 8300W: http://uclinux-h8.sourceforge.jp/ 8301S: Supported 8302F: arch/h8300/ 8303F: drivers/ide/ide-h8300.c 8304F: drivers/net/ethernet/8390/ne-h8300.c 8305 8306UDF FILESYSTEM 8307M: Jan Kara <jack@suse.cz> 8308S: Maintained 8309F: Documentation/filesystems/udf.txt 8310F: fs/udf/ 8311 8312UFS FILESYSTEM 8313M: Evgeniy Dushistov <dushistov@mail.ru> 8314S: Maintained 8315F: Documentation/filesystems/ufs.txt 8316F: fs/ufs/ 8317 8318UHID USERSPACE HID IO DRIVER: 8319M: David Herrmann <dh.herrmann@googlemail.com> 8320L: linux-input@vger.kernel.org 8321S: Maintained 8322F: drivers/hid/uhid.c 8323F: include/uapi/linux/uhid.h 8324 8325ULTRA-WIDEBAND (UWB) SUBSYSTEM: 8326L: linux-usb@vger.kernel.org 8327S: Orphan 8328F: drivers/uwb/ 8329F: include/linux/uwb.h 8330F: include/linux/uwb/ 8331 8332UNICORE32 ARCHITECTURE: 8333M: Guan Xuetao <gxt@mprc.pku.edu.cn> 8334W: http://mprc.pku.edu.cn/~guanxuetao/linux 8335S: Maintained 8336T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git 8337F: arch/unicore32/ 8338 8339UNIFDEF 8340M: Tony Finch <dot@dotat.at> 8341W: http://dotat.at/prog/unifdef 8342S: Maintained 8343F: scripts/unifdef.c 8344 8345UNIFORM CDROM DRIVER 8346M: Jens Axboe <axboe@kernel.dk> 8347W: http://www.kernel.dk 8348S: Maintained 8349F: Documentation/cdrom/ 8350F: drivers/cdrom/cdrom.c 8351F: include/linux/cdrom.h 8352F: include/uapi/linux/cdrom.h 8353 8354UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER 8355M: Vinayak Holikatti <vinholikatti@gmail.com> 8356M: Santosh Y <santoshsy@gmail.com> 8357L: linux-scsi@vger.kernel.org 8358S: Supported 8359F: Documentation/scsi/ufs.txt 8360F: drivers/scsi/ufs/ 8361 8362UNSORTED BLOCK IMAGES (UBI) 8363M: Artem Bityutskiy <dedekind1@gmail.com> 8364W: http://www.linux-mtd.infradead.org/ 8365L: linux-mtd@lists.infradead.org 8366T: git git://git.infradead.org/ubi-2.6.git 8367S: Maintained 8368F: drivers/mtd/ubi/ 8369F: include/linux/mtd/ubi.h 8370F: include/uapi/mtd/ubi-user.h 8371 8372UNSORTED BLOCK IMAGES (UBI) Fastmap 8373M: Richard Weinberger <richard@nod.at> 8374L: linux-mtd@lists.infradead.org 8375S: Maintained 8376F: drivers/mtd/ubi/fastmap.c 8377 8378USB ACM DRIVER 8379M: Oliver Neukum <oliver@neukum.org> 8380L: linux-usb@vger.kernel.org 8381S: Maintained 8382F: Documentation/usb/acm.txt 8383F: drivers/usb/class/cdc-acm.* 8384 8385USB AR5523 WIRELESS DRIVER 8386M: Pontus Fuchs <pontus.fuchs@gmail.com> 8387L: linux-wireless@vger.kernel.org 8388S: Maintained 8389F: drivers/net/wireless/ath/ar5523/ 8390 8391USB ATTACHED SCSI 8392M: Matthew Wilcox <willy@linux.intel.com> 8393M: Sarah Sharp <sarah.a.sharp@linux.intel.com> 8394M: Gerd Hoffmann <kraxel@redhat.com> 8395L: linux-usb@vger.kernel.org 8396L: linux-scsi@vger.kernel.org 8397S: Maintained 8398F: drivers/usb/storage/uas.c 8399 8400USB CDC ETHERNET DRIVER 8401M: Oliver Neukum <oliver@neukum.org> 8402L: linux-usb@vger.kernel.org 8403S: Maintained 8404F: drivers/net/usb/cdc_*.c 8405F: include/uapi/linux/usb/cdc.h 8406 8407USB CYPRESS C67X00 DRIVER 8408M: Peter Korsgaard <jacmet@sunsite.dk> 8409L: linux-usb@vger.kernel.org 8410S: Maintained 8411F: drivers/usb/c67x00/ 8412 8413USB DAVICOM DM9601 DRIVER 8414M: Peter Korsgaard <jacmet@sunsite.dk> 8415L: netdev@vger.kernel.org 8416W: http://www.linux-usb.org/usbnet 8417S: Maintained 8418F: drivers/net/usb/dm9601.c 8419 8420USB DIAMOND RIO500 DRIVER 8421M: Cesar Miquel <miquel@df.uba.ar> 8422L: rio500-users@lists.sourceforge.net 8423W: http://rio500.sourceforge.net 8424S: Maintained 8425F: drivers/usb/misc/rio500* 8426 8427USB EHCI DRIVER 8428M: Alan Stern <stern@rowland.harvard.edu> 8429L: linux-usb@vger.kernel.org 8430S: Maintained 8431F: Documentation/usb/ehci.txt 8432F: drivers/usb/host/ehci* 8433 8434USB GADGET/PERIPHERAL SUBSYSTEM 8435M: Felipe Balbi <balbi@ti.com> 8436L: linux-usb@vger.kernel.org 8437W: http://www.linux-usb.org/gadget 8438T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git 8439S: Maintained 8440F: drivers/usb/gadget/ 8441F: include/linux/usb/gadget* 8442 8443USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) 8444M: Jiri Kosina <jkosina@suse.cz> 8445L: linux-usb@vger.kernel.org 8446T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git 8447S: Maintained 8448F: Documentation/hid/hiddev.txt 8449F: drivers/hid/usbhid/ 8450 8451USB/IP DRIVERS 8452M: Matt Mooney <mfm@muteddisk.com> 8453L: linux-usb@vger.kernel.org 8454S: Maintained 8455F: drivers/staging/usbip/ 8456 8457USB ISP116X DRIVER 8458M: Olav Kongas <ok@artecdesign.ee> 8459L: linux-usb@vger.kernel.org 8460S: Maintained 8461F: drivers/usb/host/isp116x* 8462F: include/linux/usb/isp116x.h 8463 8464USB KAWASAKI LSI DRIVER 8465M: Oliver Neukum <oliver@neukum.org> 8466L: linux-usb@vger.kernel.org 8467S: Maintained 8468F: drivers/usb/serial/kl5kusb105.* 8469 8470USB MASS STORAGE DRIVER 8471M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> 8472L: linux-usb@vger.kernel.org 8473L: usb-storage@lists.one-eyed-alien.net 8474S: Maintained 8475W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ 8476F: drivers/usb/storage/ 8477 8478USB MIDI DRIVER 8479M: Clemens Ladisch <clemens@ladisch.de> 8480L: alsa-devel@alsa-project.org (moderated for non-subscribers) 8481T: git git://git.alsa-project.org/alsa-kernel.git 8482S: Maintained 8483F: sound/usb/midi.* 8484 8485USB OHCI DRIVER 8486M: Alan Stern <stern@rowland.harvard.edu> 8487L: linux-usb@vger.kernel.org 8488S: Maintained 8489F: Documentation/usb/ohci.txt 8490F: drivers/usb/host/ohci* 8491 8492USB OPTION-CARD DRIVER 8493M: Matthias Urlichs <smurf@smurf.noris.de> 8494L: linux-usb@vger.kernel.org 8495S: Maintained 8496F: drivers/usb/serial/option.c 8497 8498USB PEGASUS DRIVER 8499M: Petko Manolov <petkan@nucleusys.com> 8500L: linux-usb@vger.kernel.org 8501L: netdev@vger.kernel.org 8502T: git git://git.code.sf.net/p/pegasus2/git 8503W: http://pegasus2.sourceforge.net/ 8504S: Maintained 8505F: drivers/net/usb/pegasus.* 8506 8507USB PHY LAYER 8508M: Felipe Balbi <balbi@ti.com> 8509L: linux-usb@vger.kernel.org 8510T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git 8511S: Maintained 8512F: drivers/usb/phy/ 8513F: drivers/usb/otg/ 8514 8515USB PRINTER DRIVER (usblp) 8516M: Pete Zaitcev <zaitcev@redhat.com> 8517L: linux-usb@vger.kernel.org 8518S: Supported 8519F: drivers/usb/class/usblp.c 8520 8521USB RTL8150 DRIVER 8522M: Petko Manolov <petkan@nucleusys.com> 8523L: linux-usb@vger.kernel.org 8524L: netdev@vger.kernel.org 8525T: git git://git.code.sf.net/p/pegasus2/git 8526W: http://pegasus2.sourceforge.net/ 8527S: Maintained 8528F: drivers/net/usb/rtl8150.c 8529 8530USB SERIAL BELKIN F5U103 DRIVER 8531M: William Greathouse <wgreathouse@smva.com> 8532L: linux-usb@vger.kernel.org 8533S: Maintained 8534F: drivers/usb/serial/belkin_sa.* 8535 8536USB SERIAL CYPRESS M8 DRIVER 8537M: Lonnie Mendez <dignome@gmail.com> 8538L: linux-usb@vger.kernel.org 8539S: Maintained 8540W: http://geocities.com/i0xox0i 8541W: http://firstlight.net/cvs 8542F: drivers/usb/serial/cypress_m8.* 8543 8544USB SERIAL CYBERJACK DRIVER 8545M: Matthias Bruestle and Harald Welte <support@reiner-sct.com> 8546W: http://www.reiner-sct.de/support/treiber_cyberjack.php 8547S: Maintained 8548F: drivers/usb/serial/cyberjack.c 8549 8550USB SERIAL DIGI ACCELEPORT DRIVER 8551M: Peter Berger <pberger@brimson.com> 8552M: Al Borchers <alborchers@steinerpoint.com> 8553L: linux-usb@vger.kernel.org 8554S: Maintained 8555F: drivers/usb/serial/digi_acceleport.c 8556 8557USB SERIAL DRIVER 8558M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 8559L: linux-usb@vger.kernel.org 8560S: Supported 8561F: Documentation/usb/usb-serial.txt 8562F: drivers/usb/serial/generic.c 8563F: drivers/usb/serial/usb-serial.c 8564F: include/linux/usb/serial.h 8565 8566USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER 8567M: Gary Brubaker <xavyer@ix.netcom.com> 8568L: linux-usb@vger.kernel.org 8569S: Maintained 8570F: drivers/usb/serial/empeg.c 8571 8572USB SERIAL KEYSPAN DRIVER 8573M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 8574L: linux-usb@vger.kernel.org 8575S: Maintained 8576F: drivers/usb/serial/*keyspan* 8577 8578USB SERIAL WHITEHEAT DRIVER 8579M: Support Department <support@connecttech.com> 8580L: linux-usb@vger.kernel.org 8581W: http://www.connecttech.com 8582S: Supported 8583F: drivers/usb/serial/whiteheat* 8584 8585USB SMSC75XX ETHERNET DRIVER 8586M: Steve Glendinning <steve.glendinning@shawell.net> 8587L: netdev@vger.kernel.org 8588S: Maintained 8589F: drivers/net/usb/smsc75xx.* 8590 8591USB SMSC95XX ETHERNET DRIVER 8592M: Steve Glendinning <steve.glendinning@shawell.net> 8593L: netdev@vger.kernel.org 8594S: Maintained 8595F: drivers/net/usb/smsc95xx.* 8596 8597USB SN9C1xx DRIVER 8598M: Luca Risolia <luca.risolia@studio.unibo.it> 8599L: linux-usb@vger.kernel.org 8600L: linux-media@vger.kernel.org 8601T: git git://linuxtv.org/media_tree.git 8602W: http://www.linux-projects.org 8603S: Maintained 8604F: Documentation/video4linux/sn9c102.txt 8605F: drivers/media/usb/sn9c102/ 8606 8607USB SUBSYSTEM 8608M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 8609L: linux-usb@vger.kernel.org 8610W: http://www.linux-usb.org 8611T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git 8612S: Supported 8613F: Documentation/usb/ 8614F: drivers/net/usb/ 8615F: drivers/usb/ 8616F: include/linux/usb.h 8617F: include/linux/usb/ 8618 8619USB UHCI DRIVER 8620M: Alan Stern <stern@rowland.harvard.edu> 8621L: linux-usb@vger.kernel.org 8622S: Maintained 8623F: drivers/usb/host/uhci* 8624 8625USB "USBNET" DRIVER FRAMEWORK 8626M: Oliver Neukum <oneukum@suse.de> 8627L: netdev@vger.kernel.org 8628W: http://www.linux-usb.org/usbnet 8629S: Maintained 8630F: drivers/net/usb/usbnet.c 8631F: include/linux/usb/usbnet.h 8632 8633USB VIDEO CLASS 8634M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 8635L: linux-uvc-devel@lists.sourceforge.net (subscribers-only) 8636L: linux-media@vger.kernel.org 8637T: git git://linuxtv.org/media_tree.git 8638W: http://www.ideasonboard.org/uvc/ 8639S: Maintained 8640F: drivers/media/usb/uvc/ 8641F: include/uapi/linux/uvcvideo.h 8642 8643USB VISION DRIVER 8644M: Hans Verkuil <hverkuil@xs4all.nl> 8645L: linux-media@vger.kernel.org 8646T: git git://linuxtv.org/media_tree.git 8647W: http://linuxtv.org 8648S: Odd Fixes 8649F: drivers/media/usb/usbvision/ 8650 8651USB WEBCAM GADGET 8652M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 8653L: linux-usb@vger.kernel.org 8654S: Maintained 8655F: drivers/usb/gadget/*uvc*.c 8656F: drivers/usb/gadget/webcam.c 8657 8658USB WIRELESS RNDIS DRIVER (rndis_wlan) 8659M: Jussi Kivilinna <jussi.kivilinna@iki.fi> 8660L: linux-wireless@vger.kernel.org 8661S: Maintained 8662F: drivers/net/wireless/rndis_wlan.c 8663 8664USB XHCI DRIVER 8665M: Sarah Sharp <sarah.a.sharp@linux.intel.com> 8666L: linux-usb@vger.kernel.org 8667S: Supported 8668F: drivers/usb/host/xhci* 8669F: drivers/usb/host/pci-quirks* 8670 8671USB ZD1201 DRIVER 8672L: linux-wireless@vger.kernel.org 8673W: http://linux-lc100020.sourceforge.net 8674S: Orphan 8675F: drivers/net/wireless/zd1201.* 8676 8677USB ZR364XX DRIVER 8678M: Antoine Jacquet <royale@zerezo.com> 8679L: linux-usb@vger.kernel.org 8680L: linux-media@vger.kernel.org 8681T: git git://linuxtv.org/media_tree.git 8682W: http://royale.zerezo.com/zr364xx/ 8683S: Maintained 8684F: Documentation/video4linux/zr364xx.txt 8685F: drivers/media/usb/zr364xx/ 8686 8687USER-MODE LINUX (UML) 8688M: Jeff Dike <jdike@addtoit.com> 8689M: Richard Weinberger <richard@nod.at> 8690L: user-mode-linux-devel@lists.sourceforge.net 8691L: user-mode-linux-user@lists.sourceforge.net 8692W: http://user-mode-linux.sourceforge.net 8693S: Maintained 8694F: Documentation/virtual/uml/ 8695F: arch/um/ 8696F: arch/x86/um/ 8697F: fs/hostfs/ 8698F: fs/hppfs/ 8699 8700USERSPACE I/O (UIO) 8701M: "Hans J. Koch" <hjk@hansjkoch.de> 8702M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 8703S: Maintained 8704F: Documentation/DocBook/uio-howto.tmpl 8705F: drivers/uio/ 8706F: include/linux/uio*.h 8707 8708UTIL-LINUX PACKAGE 8709M: Karel Zak <kzak@redhat.com> 8710L: util-linux@vger.kernel.org 8711W: http://en.wikipedia.org/wiki/Util-linux 8712T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git 8713S: Maintained 8714 8715UVESAFB DRIVER 8716M: Michal Januszewski <spock@gentoo.org> 8717L: linux-fbdev@vger.kernel.org 8718W: http://dev.gentoo.org/~spock/projects/uvesafb/ 8719S: Maintained 8720F: Documentation/fb/uvesafb.txt 8721F: drivers/video/uvesafb.* 8722 8723VFAT/FAT/MSDOS FILESYSTEM 8724M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> 8725S: Maintained 8726F: Documentation/filesystems/vfat.txt 8727F: fs/fat/ 8728 8729VFIO DRIVER 8730M: Alex Williamson <alex.williamson@redhat.com> 8731L: kvm@vger.kernel.org 8732S: Maintained 8733F: Documentation/vfio.txt 8734F: drivers/vfio/ 8735F: include/linux/vfio.h 8736F: include/uapi/linux/vfio.h 8737 8738VIDEOBUF2 FRAMEWORK 8739M: Pawel Osciak <pawel@osciak.com> 8740M: Marek Szyprowski <m.szyprowski@samsung.com> 8741M: Kyungmin Park <kyungmin.park@samsung.com> 8742L: linux-media@vger.kernel.org 8743S: Maintained 8744F: drivers/media/v4l2-core/videobuf2-* 8745F: include/media/videobuf2-* 8746 8747VIRTIO CONSOLE DRIVER 8748M: Amit Shah <amit.shah@redhat.com> 8749L: virtualization@lists.linux-foundation.org 8750S: Maintained 8751F: drivers/char/virtio_console.c 8752F: include/linux/virtio_console.h 8753F: include/uapi/linux/virtio_console.h 8754 8755VIRTIO CORE, NET AND BLOCK DRIVERS 8756M: Rusty Russell <rusty@rustcorp.com.au> 8757M: "Michael S. Tsirkin" <mst@redhat.com> 8758L: virtualization@lists.linux-foundation.org 8759S: Maintained 8760F: drivers/virtio/ 8761F: drivers/net/virtio_net.c 8762F: drivers/block/virtio_blk.c 8763F: include/linux/virtio_*.h 8764F: include/uapi/linux/virtio_*.h 8765 8766VIRTIO HOST (VHOST) 8767M: "Michael S. Tsirkin" <mst@redhat.com> 8768L: kvm@vger.kernel.org 8769L: virtualization@lists.linux-foundation.org 8770L: netdev@vger.kernel.org 8771S: Maintained 8772F: drivers/vhost/ 8773F: include/uapi/linux/vhost.h 8774 8775VIA RHINE NETWORK DRIVER 8776M: Roger Luethi <rl@hellgate.ch> 8777S: Maintained 8778F: drivers/net/ethernet/via/via-rhine.c 8779 8780VIA SD/MMC CARD CONTROLLER DRIVER 8781M: Bruce Chang <brucechang@via.com.tw> 8782M: Harald Welte <HaraldWelte@viatech.com> 8783S: Maintained 8784F: drivers/mmc/host/via-sdmmc.c 8785 8786VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER 8787M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> 8788L: linux-fbdev@vger.kernel.org 8789S: Maintained 8790F: include/linux/via-core.h 8791F: include/linux/via-gpio.h 8792F: include/linux/via_i2c.h 8793F: drivers/video/via/ 8794 8795VIA VELOCITY NETWORK DRIVER 8796M: Francois Romieu <romieu@fr.zoreil.com> 8797L: netdev@vger.kernel.org 8798S: Maintained 8799F: drivers/net/ethernet/via/via-velocity.* 8800 8801VIVI VIRTUAL VIDEO DRIVER 8802M: Hans Verkuil <hverkuil@xs4all.nl> 8803L: linux-media@vger.kernel.org 8804T: git git://linuxtv.org/media_tree.git 8805W: http://linuxtv.org 8806S: Maintained 8807F: drivers/media/platform/vivi* 8808 8809VLAN (802.1Q) 8810M: Patrick McHardy <kaber@trash.net> 8811L: netdev@vger.kernel.org 8812S: Maintained 8813F: drivers/net/macvlan.c 8814F: include/linux/if_*vlan.h 8815F: net/8021q/ 8816 8817VLYNQ BUS 8818M: Florian Fainelli <florian@openwrt.org> 8819L: openwrt-devel@lists.openwrt.org (subscribers-only) 8820S: Maintained 8821F: drivers/vlynq/vlynq.c 8822F: include/linux/vlynq.h 8823 8824VME SUBSYSTEM 8825M: Martyn Welch <martyn.welch@ge.com> 8826M: Manohar Vanga <manohar.vanga@gmail.com> 8827M: Greg Kroah-Hartman <gregkh@linuxfoundation.org> 8828L: devel@driverdev.osuosl.org 8829S: Maintained 8830T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git 8831F: Documentation/vme_api.txt 8832F: drivers/staging/vme/ 8833F: drivers/vme/ 8834F: include/linux/vme* 8835 8836VMWARE VMXNET3 ETHERNET DRIVER 8837M: Shreyas Bhatewara <sbhatewara@vmware.com> 8838M: "VMware, Inc." <pv-drivers@vmware.com> 8839L: netdev@vger.kernel.org 8840S: Maintained 8841F: drivers/net/vmxnet3/ 8842 8843VMware PVSCSI driver 8844M: Arvind Kumar <arvindkumar@vmware.com> 8845M: VMware PV-Drivers <pv-drivers@vmware.com> 8846L: linux-scsi@vger.kernel.org 8847S: Maintained 8848F: drivers/scsi/vmw_pvscsi.c 8849F: drivers/scsi/vmw_pvscsi.h 8850 8851VOLTAGE AND CURRENT REGULATOR FRAMEWORK 8852M: Liam Girdwood <lgirdwood@gmail.com> 8853M: Mark Brown <broonie@kernel.org> 8854W: http://opensource.wolfsonmicro.com/node/15 8855W: http://www.slimlogic.co.uk/?p=48 8856T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git 8857S: Supported 8858F: drivers/regulator/ 8859F: include/linux/regulator/ 8860 8861VT1211 HARDWARE MONITOR DRIVER 8862M: Juerg Haefliger <juergh@gmail.com> 8863L: lm-sensors@lm-sensors.org 8864S: Maintained 8865F: Documentation/hwmon/vt1211 8866F: drivers/hwmon/vt1211.c 8867 8868VT8231 HARDWARE MONITOR DRIVER 8869M: Roger Lucas <vt8231@hiddenengine.co.uk> 8870L: lm-sensors@lm-sensors.org 8871S: Maintained 8872F: drivers/hwmon/vt8231.c 8873 8874VUB300 USB to SDIO/SD/MMC bridge chip 8875M: Tony Olech <tony.olech@elandigitalsystems.com> 8876L: linux-mmc@vger.kernel.org 8877L: linux-usb@vger.kernel.org 8878S: Supported 8879F: drivers/mmc/host/vub300.c 8880 8881W1 DALLAS'S 1-WIRE BUS 8882M: Evgeniy Polyakov <zbr@ioremap.net> 8883S: Maintained 8884F: Documentation/w1/ 8885F: drivers/w1/ 8886 8887W83791D HARDWARE MONITORING DRIVER 8888M: Marc Hulsman <m.hulsman@tudelft.nl> 8889L: lm-sensors@lm-sensors.org 8890S: Maintained 8891F: Documentation/hwmon/w83791d 8892F: drivers/hwmon/w83791d.c 8893 8894W83793 HARDWARE MONITORING DRIVER 8895M: Rudolf Marek <r.marek@assembler.cz> 8896L: lm-sensors@lm-sensors.org 8897S: Maintained 8898F: Documentation/hwmon/w83793 8899F: drivers/hwmon/w83793.c 8900 8901W83795 HARDWARE MONITORING DRIVER 8902M: Jean Delvare <khali@linux-fr.org> 8903L: lm-sensors@lm-sensors.org 8904S: Maintained 8905F: drivers/hwmon/w83795.c 8906 8907W83L51xD SD/MMC CARD INTERFACE DRIVER 8908M: Pierre Ossman <pierre@ossman.eu> 8909S: Maintained 8910F: drivers/mmc/host/wbsd.* 8911 8912WATCHDOG DEVICE DRIVERS 8913M: Wim Van Sebroeck <wim@iguana.be> 8914L: linux-watchdog@vger.kernel.org 8915W: http://www.linux-watchdog.org/ 8916T: git git://www.linux-watchdog.org/linux-watchdog.git 8917S: Maintained 8918F: Documentation/watchdog/ 8919F: drivers/watchdog/ 8920F: include/linux/watchdog.h 8921F: include/uapi/linux/watchdog.h 8922 8923WD7000 SCSI DRIVER 8924M: Miroslav Zagorac <zaga@fly.cc.fer.hr> 8925L: linux-scsi@vger.kernel.org 8926S: Maintained 8927F: drivers/scsi/wd7000.c 8928 8929WIIMOTE HID DRIVER 8930M: David Herrmann <dh.herrmann@googlemail.com> 8931L: linux-input@vger.kernel.org 8932S: Maintained 8933F: drivers/hid/hid-wiimote* 8934 8935WINBOND CIR DRIVER 8936M: David Härdeman <david@hardeman.nu> 8937S: Maintained 8938F: drivers/media/rc/winbond-cir.c 8939 8940WIMAX STACK 8941M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 8942M: linux-wimax@intel.com 8943L: wimax@linuxwimax.org 8944S: Supported 8945W: http://linuxwimax.org 8946F: Documentation/wimax/README.wimax 8947F: include/linux/wimax/debug.h 8948F: include/net/wimax.h 8949F: include/uapi/linux/wimax.h 8950F: net/wimax/ 8951 8952WISTRON LAPTOP BUTTON DRIVER 8953M: Miloslav Trmac <mitr@volny.cz> 8954S: Maintained 8955F: drivers/input/misc/wistron_btns.c 8956 8957WL3501 WIRELESS PCMCIA CARD DRIVER 8958M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 8959L: linux-wireless@vger.kernel.org 8960W: http://oops.ghostprotocols.net:81/blog 8961S: Maintained 8962F: drivers/net/wireless/wl3501* 8963 8964WM97XX TOUCHSCREEN DRIVERS 8965M: Mark Brown <broonie@opensource.wolfsonmicro.com> 8966M: Liam Girdwood <lrg@slimlogic.co.uk> 8967L: linux-input@vger.kernel.org 8968T: git git://opensource.wolfsonmicro.com/linux-2.6-touch 8969W: http://opensource.wolfsonmicro.com/node/7 8970S: Supported 8971F: drivers/input/touchscreen/*wm97* 8972F: include/linux/wm97xx.h 8973 8974WOLFSON MICROELECTRONICS DRIVERS 8975M: Mark Brown <broonie@opensource.wolfsonmicro.com> 8976L: patches@opensource.wolfsonmicro.com 8977T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc 8978T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus 8979W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices 8980S: Supported 8981F: Documentation/hwmon/wm83?? 8982F: arch/arm/mach-s3c64xx/mach-crag6410* 8983F: drivers/clk/clk-wm83*.c 8984F: drivers/extcon/extcon-arizona.c 8985F: drivers/leds/leds-wm83*.c 8986F: drivers/gpio/gpio-*wm*.c 8987F: drivers/gpio/gpio-arizona.c 8988F: drivers/hwmon/wm83??-hwmon.c 8989F: drivers/input/misc/wm831x-on.c 8990F: drivers/input/touchscreen/wm831x-ts.c 8991F: drivers/input/touchscreen/wm97*.c 8992F: drivers/mfd/arizona* 8993F: drivers/mfd/wm*.c 8994F: drivers/power/wm83*.c 8995F: drivers/rtc/rtc-wm83*.c 8996F: drivers/regulator/wm8*.c 8997F: drivers/video/backlight/wm83*_bl.c 8998F: drivers/watchdog/wm83*_wdt.c 8999F: include/linux/mfd/arizona/ 9000F: include/linux/mfd/wm831x/ 9001F: include/linux/mfd/wm8350/ 9002F: include/linux/mfd/wm8400* 9003F: include/linux/wm97xx.h 9004F: include/sound/wm????.h 9005F: sound/soc/codecs/arizona.? 9006F: sound/soc/codecs/wm* 9007 9008WORKQUEUE 9009M: Tejun Heo <tj@kernel.org> 9010T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git 9011S: Maintained 9012F: include/linux/workqueue.h 9013F: kernel/workqueue.c 9014F: Documentation/workqueue.txt 9015 9016X.25 NETWORK LAYER 9017M: Andrew Hendry <andrew.hendry@gmail.com> 9018L: linux-x25@vger.kernel.org 9019S: Odd Fixes 9020F: Documentation/networking/x25* 9021F: include/net/x25* 9022F: net/x25/ 9023 9024X86 ARCHITECTURE (32-BIT AND 64-BIT) 9025M: Thomas Gleixner <tglx@linutronix.de> 9026M: Ingo Molnar <mingo@redhat.com> 9027M: "H. Peter Anvin" <hpa@zytor.com> 9028M: x86@kernel.org 9029T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core 9030S: Maintained 9031F: Documentation/x86/ 9032F: arch/x86/ 9033 9034X86 PLATFORM DRIVERS 9035M: Matthew Garrett <matthew.garrett@nebula.com> 9036L: platform-driver-x86@vger.kernel.org 9037T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git 9038S: Maintained 9039F: drivers/platform/x86 9040 9041X86 MCE INFRASTRUCTURE 9042M: Tony Luck <tony.luck@intel.com> 9043M: Borislav Petkov <bp@alien8.de> 9044L: linux-edac@vger.kernel.org 9045S: Maintained 9046F: arch/x86/kernel/cpu/mcheck/* 9047 9048XC2028/3028 TUNER DRIVER 9049M: Mauro Carvalho Chehab <mchehab@redhat.com> 9050L: linux-media@vger.kernel.org 9051W: http://linuxtv.org 9052T: git git://linuxtv.org/media_tree.git 9053S: Maintained 9054F: drivers/media/tuners/tuner-xc2028.* 9055 9056XEN HYPERVISOR INTERFACE 9057M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 9058M: Jeremy Fitzhardinge <jeremy@goop.org> 9059L: xen-devel@lists.xensource.com (moderated for non-subscribers) 9060L: virtualization@lists.linux-foundation.org 9061S: Supported 9062F: arch/x86/xen/ 9063F: drivers/*/xen-*front.c 9064F: drivers/xen/ 9065F: arch/x86/include/asm/xen/ 9066F: include/xen/ 9067F: include/uapi/xen/ 9068 9069XEN HYPERVISOR ARM 9070M: Stefano Stabellini <stefano.stabellini@eu.citrix.com> 9071L: xen-devel@lists.xensource.com (moderated for non-subscribers) 9072S: Supported 9073F: arch/arm/xen/ 9074F: arch/arm/include/asm/xen/ 9075 9076XEN NETWORK BACKEND DRIVER 9077M: Ian Campbell <ian.campbell@citrix.com> 9078L: xen-devel@lists.xensource.com (moderated for non-subscribers) 9079L: netdev@vger.kernel.org 9080S: Supported 9081F: drivers/net/xen-netback/* 9082 9083XEN PCI SUBSYSTEM 9084M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 9085L: xen-devel@lists.xensource.com (moderated for non-subscribers) 9086S: Supported 9087F: arch/x86/pci/*xen* 9088F: drivers/pci/*xen* 9089 9090XEN SWIOTLB SUBSYSTEM 9091M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 9092L: xen-devel@lists.xensource.com (moderated for non-subscribers) 9093S: Supported 9094F: arch/x86/xen/*swiotlb* 9095F: drivers/xen/*swiotlb* 9096 9097XFS FILESYSTEM 9098P: Silicon Graphics Inc 9099M: Ben Myers <bpm@sgi.com> 9100M: Alex Elder <elder@kernel.org> 9101M: xfs@oss.sgi.com 9102L: xfs@oss.sgi.com 9103W: http://oss.sgi.com/projects/xfs 9104T: git git://oss.sgi.com/xfs/xfs.git 9105S: Supported 9106F: Documentation/filesystems/xfs.txt 9107F: fs/xfs/ 9108 9109XILINX AXI ETHERNET DRIVER 9110M: Anirudha Sarangi <anirudh@xilinx.com> 9111M: John Linn <John.Linn@xilinx.com> 9112S: Maintained 9113F: drivers/net/ethernet/xilinx/xilinx_axienet* 9114 9115XILINX SYSTEMACE DRIVER 9116S: Unmaintained 9117F: drivers/block/xsysace.c 9118 9119XILINX UARTLITE SERIAL DRIVER 9120M: Peter Korsgaard <jacmet@sunsite.dk> 9121L: linux-serial@vger.kernel.org 9122S: Maintained 9123F: drivers/tty/serial/uartlite.c 9124 9125YAM DRIVER FOR AX.25 9126M: Jean-Paul Roubelat <jpr@f6fbb.org> 9127L: linux-hams@vger.kernel.org 9128S: Maintained 9129F: drivers/net/hamradio/yam* 9130F: include/linux/yam.h 9131 9132YEALINK PHONE DRIVER 9133M: Henk Vergonet <Henk.Vergonet@gmail.com> 9134L: usbb2k-api-dev@nongnu.org 9135S: Maintained 9136F: Documentation/input/yealink.txt 9137F: drivers/input/misc/yealink.* 9138 9139Z8530 DRIVER FOR AX.25 9140M: Joerg Reuter <jreuter@yaina.de> 9141W: http://yaina.de/jreuter/ 9142W: http://www.qsl.net/dl1bke/ 9143L: linux-hams@vger.kernel.org 9144S: Maintained 9145F: Documentation/networking/z8530drv.txt 9146F: drivers/net/hamradio/*scc.c 9147F: drivers/net/hamradio/z8530.h 9148 9149ZD1211RW WIRELESS DRIVER 9150M: Daniel Drake <dsd@gentoo.org> 9151M: Ulrich Kunitz <kune@deine-taler.de> 9152W: http://zd1211.ath.cx/wiki/DriverRewrite 9153L: linux-wireless@vger.kernel.org 9154L: zd1211-devs@lists.sourceforge.net (subscribers-only) 9155S: Maintained 9156F: drivers/net/wireless/zd1211rw/ 9157 9158ZR36067 VIDEO FOR LINUX DRIVER 9159L: mjpeg-users@lists.sourceforge.net 9160L: linux-media@vger.kernel.org 9161W: http://mjpeg.sourceforge.net/driver-zoran/ 9162T: Mercurial http://linuxtv.org/hg/v4l-dvb 9163S: Odd Fixes 9164F: drivers/media/pci/zoran/ 9165 9166ZS DECSTATION Z85C30 SERIAL DRIVER 9167M: "Maciej W. Rozycki" <macro@linux-mips.org> 9168S: Maintained 9169F: drivers/tty/serial/zs.* 9170 9171THE REST 9172M: Linus Torvalds <torvalds@linux-foundation.org> 9173L: linux-kernel@vger.kernel.org 9174Q: http://patchwork.kernel.org/project/LKML/list/ 9175T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 9176S: Buried alive in reporters 9177F: * 9178F: */ 9179