1 2 List of maintainers and how to submit kernel changes 3 4Please try to follow the guidelines below. This will make things 5easier on the maintainers. Not all of these guidelines matter for every 6trivial patch so apply some common sense. 7 81. Always _test_ your changes, however small, on at least 4 or 9 5 people, preferably many more. 10 112. Try to release a few ALPHA test versions to the net. Announce 12 them onto the kernel channel and await results. This is especially 13 important for device drivers, because often that's the only way 14 you will find things like the fact version 3 firmware needs 15 a magic fix you didn't know about, or some clown changed the 16 chips on a board and not its name. (Don't laugh! Look at the 17 SMC etherpower for that.) 18 193. Make sure your changes compile correctly in multiple 20 configurations. In particular check that changes work both as a 21 module and built into the kernel. 22 234. When you are happy with a change make it generally available for 24 testing and await feedback. 25 265. Make a patch available to the relevant maintainer in the list. Use 27 'diff -u' to make the patch easy to merge. Be prepared to get your 28 changes sent back with seemingly silly requests about formatting 29 and variable names. These aren't as silly as they seem. One 30 job the maintainers (and especially Linus) do is to keep things 31 looking the same. Sometimes this means that the clever hack in 32 your driver to get around a problem actually needs to become a 33 generalized kernel feature ready for next time. 34 35 PLEASE check your patch with the automated style checker 36 (scripts/checkpatch.pl) to catch trival style violations. 37 See Documentation/CodingStyle for guidance here. 38 39 PLEASE CC: the maintainers and mailing lists that are generated 40 by scripts/get_maintainer.pl. The results returned by the 41 script will be best if you have git installed and are making 42 your changes in a branch derived from Linus' latest git tree. 43 See Documentation/SubmittingPatches for details. 44 45 PLEASE try to include any credit lines you want added with the 46 patch. It avoids people being missed off by mistake and makes 47 it easier to know who wants adding and who doesn't. 48 49 PLEASE document known bugs. If it doesn't work for everything 50 or does something very odd once a month document it. 51 52 PLEASE remember that submissions must be made under the terms 53 of the OSDL certificate of contribution and should include a 54 Signed-off-by: line. The current version of this "Developer's 55 Certificate of Origin" (DCO) is listed in the file 56 Documentation/SubmittingPatches. 57 586. Make sure you have the right to send any changes you make. If you 59 do changes at work you may find your employer owns the patch 60 not you. 61 627. When sending security related changes or reports to a maintainer 63 please Cc: security@kernel.org, especially if the maintainer 64 does not respond. 65 668. Happy hacking. 67 68Descriptions of section entries: 69 70 P: Person (obsolete) 71 M: Mail patches to: FullName <address@domain> 72 L: Mailing list that is relevant to this area 73 W: Web-page with status/info 74 Q: Patchwork web based patch tracking system site 75 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. 76 S: Status, one of the following: 77 Supported: Someone is actually paid to look after this. 78 Maintained: Someone actually looks after it. 79 Odd Fixes: It has a maintainer but they don't have time to do 80 much other than throw the odd patch in. See below.. 81 Orphan: No current maintainer [but maybe you could take the 82 role as you write your new code]. 83 Obsolete: Old code. Something tagged obsolete generally means 84 it has been replaced by a better system and you 85 should be using that. 86 F: Files and directories with wildcard patterns. 87 A trailing slash includes all files and subdirectory files. 88 F: drivers/net/ all files in and below drivers/net 89 F: drivers/net/* all files in drivers/net, but not below 90 F: */net/* all files in "any top level directory"/net 91 One pattern per line. Multiple F: lines acceptable. 92 X: Files and directories that are NOT maintained, same rules as F: 93 Files exclusions are tested before file matches. 94 Can be useful for excluding a specific subdirectory, for instance: 95 F: net/ 96 X: net/ipv6/ 97 matches all files in and below net excluding net/ipv6/ 98 K: Keyword perl extended regex pattern to match content in a 99 patch or file. For instance: 100 K: of_get_profile 101 matches patches or files that contain "of_get_profile" 102 K: \b(printk|pr_(info|err))\b 103 matches patches or files that contain one or more of the words 104 printk, pr_info or pr_err 105 One regex pattern per line. Multiple K: lines acceptable. 106 107Note: For the hard of thinking, this list is meant to remain in alphabetical 108order. If you could add yourselves to it in alphabetical order that would be 109so much easier [Ed] 110 111Maintainers List (try to look for most precise areas first) 112 113 ----------------------------------- 114 1153C505 NETWORK DRIVER 116M: Philip Blundell <philb@gnu.org> 117L: netdev@vger.kernel.org 118S: Maintained 119F: drivers/net/3c505* 120 1213C59X NETWORK DRIVER 122M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de> 123L: netdev@vger.kernel.org 124S: Maintained 125F: Documentation/networking/vortex.txt 126F: drivers/net/3c59x.c 127 1283CR990 NETWORK DRIVER 129M: David Dillow <dave@thedillows.org> 130L: netdev@vger.kernel.org 131S: Maintained 132F: drivers/net/typhoon* 133 1343WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS) 135M: Adam Radford <linuxraid@lsi.com> 136L: linux-scsi@vger.kernel.org 137W: http://www.lsi.com 138S: Supported 139F: drivers/scsi/3w-* 140 14153C700 AND 53C700-66 SCSI DRIVER 142M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 143L: linux-scsi@vger.kernel.org 144S: Maintained 145F: drivers/scsi/53c700* 146 1476PACK NETWORK DRIVER FOR AX.25 148M: Andreas Koensgen <ajk@comnets.uni-bremen.de> 149L: linux-hams@vger.kernel.org 150S: Maintained 151F: drivers/net/hamradio/6pack.c 152 1538169 10/100/1000 GIGABIT ETHERNET DRIVER 154M: Francois Romieu <romieu@fr.zoreil.com> 155L: netdev@vger.kernel.org 156S: Maintained 157F: drivers/net/r8169.c 158 1598250/16?50 (AND CLONE UARTS) SERIAL DRIVER 160M: Greg Kroah-Hartman <gregkh@suse.de> 161L: linux-serial@vger.kernel.org 162W: http://serial.sourceforge.net 163S: Maintained 164T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git 165F: drivers/tty/serial/8250* 166F: include/linux/serial_8250.h 167 1688390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.] 169L: netdev@vger.kernel.org 170S: Orphan / Obsolete 171F: drivers/net/*8390* 172F: drivers/net/ax88796.c 173 1749P FILE SYSTEM 175M: Eric Van Hensbergen <ericvh@gmail.com> 176M: Ron Minnich <rminnich@sandia.gov> 177M: Latchesar Ionkov <lucho@ionkov.net> 178L: v9fs-developer@lists.sourceforge.net 179W: http://swik.net/v9fs 180Q: http://patchwork.kernel.org/project/v9fs-devel/list/ 181T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git 182S: Maintained 183F: Documentation/filesystems/9p.txt 184F: fs/9p/ 185 186A2232 SERIAL BOARD DRIVER 187M: Enver Haase <A2232@gmx.net> 188L: linux-m68k@lists.linux-m68k.org 189S: Maintained 190F: drivers/char/ser_a2232* 191 192AACRAID SCSI RAID DRIVER 193M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 194L: linux-scsi@vger.kernel.org 195W: http://www.adaptec.com/ 196S: Supported 197F: Documentation/scsi/aacraid.txt 198F: drivers/scsi/aacraid/ 199 200ABIT UGURU 1,2 HARDWARE MONITOR DRIVER 201M: Hans de Goede <j.w.r.degoede@hhs.nl> 202L: lm-sensors@lm-sensors.org 203S: Maintained 204F: drivers/hwmon/abituguru.c 205 206ABIT UGURU 3 HARDWARE MONITOR DRIVER 207M: Alistair John Strachan <alistair@devzero.co.uk> 208L: lm-sensors@lm-sensors.org 209S: Maintained 210F: drivers/hwmon/abituguru3.c 211 212ACENIC DRIVER 213M: Jes Sorensen <jes@trained-monkey.org> 214L: linux-acenic@sunsite.dk 215S: Maintained 216F: drivers/net/acenic* 217 218ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER 219M: Peter Feuerer <peter@piie.net> 220L: platform-driver-x86@vger.kernel.org 221W: http://piie.net/?section=acerhdf 222S: Maintained 223F: drivers/platform/x86/acerhdf.c 224 225ACER WMI LAPTOP EXTRAS 226M: Carlos Corbacho <carlos@strangeworlds.co.uk> 227L: aceracpi@googlegroups.com (subscribers-only) 228L: platform-driver-x86@vger.kernel.org 229W: http://code.google.com/p/aceracpi 230S: Maintained 231F: drivers/platform/x86/acer-wmi.c 232 233ACPI 234M: Len Brown <lenb@kernel.org> 235L: linux-acpi@vger.kernel.org 236W: http://www.lesswatts.org/projects/acpi/ 237Q: http://patchwork.kernel.org/project/linux-acpi/list/ 238T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git 239S: Supported 240F: drivers/acpi/ 241F: drivers/pnp/pnpacpi/ 242F: include/linux/acpi.h 243F: include/acpi/ 244 245ACPI FAN DRIVER 246M: Zhang Rui <rui.zhang@intel.com> 247L: linux-acpi@vger.kernel.org 248W: http://www.lesswatts.org/projects/acpi/ 249S: Supported 250F: drivers/acpi/fan.c 251 252ACPI PROCESSOR AGGREGATOR DRIVER 253M: Shaohua Li <shaohua.li@intel.com> 254L: linux-acpi@vger.kernel.org 255W: http://www.lesswatts.org/projects/acpi/ 256S: Supported 257F: drivers/acpi/acpi_pad.c 258 259ACPI THERMAL DRIVER 260M: Zhang Rui <rui.zhang@intel.com> 261L: linux-acpi@vger.kernel.org 262W: http://www.lesswatts.org/projects/acpi/ 263S: Supported 264F: drivers/acpi/*thermal* 265 266ACPI VIDEO DRIVER 267M: Zhang Rui <rui.zhang@intel.com> 268L: linux-acpi@vger.kernel.org 269W: http://www.lesswatts.org/projects/acpi/ 270S: Supported 271F: drivers/acpi/video.c 272 273ACPI WMI DRIVER 274M: Carlos Corbacho <carlos@strangeworlds.co.uk> 275L: platform-driver-x86@vger.kernel.org 276W: http://www.lesswatts.org/projects/acpi/ 277S: Maintained 278F: drivers/platform/x86/wmi.c 279 280AD1889 ALSA SOUND DRIVER 281M: Kyle McMartin <kyle@mcmartin.ca> 282M: Thibaut Varene <T-Bone@parisc-linux.org> 283W: http://wiki.parisc-linux.org/AD1889 284L: linux-parisc@vger.kernel.org 285S: Maintained 286F: sound/pci/ad1889.* 287 288AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER 289M: Michael Hennerich <michael.hennerich@analog.com> 290L: device-driver-devel@blackfin.uclinux.org 291W: http://wiki-analog.com/AD5254 292S: Supported 293F: drivers/misc/ad525x_dpot.c 294 295AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821) 296M: Michael Hennerich <michael.hennerich@analog.com> 297L: device-driver-devel@blackfin.uclinux.org 298W: http://wiki-analog.com/AD5398 299S: Supported 300F: drivers/regulator/ad5398.c 301 302AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A) 303M: Michael Hennerich <michael.hennerich@analog.com> 304L: device-driver-devel@blackfin.uclinux.org 305W: http://wiki-analog.com/AD7142 306S: Supported 307F: drivers/input/misc/ad714x.c 308 309AD7877 TOUCHSCREEN DRIVER 310M: Michael Hennerich <michael.hennerich@analog.com> 311L: device-driver-devel@blackfin.uclinux.org 312W: http://wiki-analog.com/AD7877 313S: Supported 314F: drivers/input/touchscreen/ad7877.c 315 316AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889) 317M: Michael Hennerich <michael.hennerich@analog.com> 318L: device-driver-devel@blackfin.uclinux.org 319W: http://wiki-analog.com/AD7879 320S: Supported 321F: drivers/input/touchscreen/ad7879.c 322 323ADM1025 HARDWARE MONITOR DRIVER 324M: Jean Delvare <khali@linux-fr.org> 325L: lm-sensors@lm-sensors.org 326S: Maintained 327F: Documentation/hwmon/adm1025 328F: drivers/hwmon/adm1025.c 329 330ADM1029 HARDWARE MONITOR DRIVER 331M: Corentin Labbe <corentin.labbe@geomatys.fr> 332L: lm-sensors@lm-sensors.org 333S: Maintained 334F: drivers/hwmon/adm1029.c 335 336ADM8211 WIRELESS DRIVER 337L: linux-wireless@vger.kernel.org 338W: http://linuxwireless.org/ 339S: Orphan 340F: drivers/net/wireless/adm8211.* 341 342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501) 343M: Michael Hennerich <michael.hennerich@analog.com> 344L: device-driver-devel@blackfin.uclinux.org 345W: http://wiki-analog.com/ADP5520 346S: Supported 347F: drivers/mfd/adp5520.c 348F: drivers/video/backlight/adp5520_bl.c 349F: drivers/led/leds-adp5520.c 350F: drivers/gpio/adp5520-gpio.c 351F: drivers/input/keyboard/adp5520-keys.c 352 353ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587) 354M: Michael Hennerich <michael.hennerich@analog.com> 355L: device-driver-devel@blackfin.uclinux.org 356W: http://wiki-analog.com/ADP5588 357S: Supported 358F: drivers/input/keyboard/adp5588-keys.c 359F: drivers/gpio/adp5588-gpio.c 360 361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863) 362M: Michael Hennerich <michael.hennerich@analog.com> 363L: device-driver-devel@blackfin.uclinux.org 364W: http://wiki-analog.com/ADP8860 365S: Supported 366F: drivers/video/backlight/adp8860_bl.c 367 368ADT746X FAN DRIVER 369M: Colin Leroy <colin@colino.net> 370S: Maintained 371F: drivers/macintosh/therm_adt746x.c 372 373ADT7475 HARDWARE MONITOR DRIVER 374M: Jean Delvare <khali@linux-fr.org> 375L: lm-sensors@lm-sensors.org 376S: Maintained 377F: Documentation/hwmon/adt7475 378F: drivers/hwmon/adt7475.c 379 380ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346) 381M: Michael Hennerich <michael.hennerich@analog.com> 382L: device-driver-devel@blackfin.uclinux.org 383W: http://wiki-analog.com/ADXL345 384S: Supported 385F: drivers/input/misc/adxl34x.c 386 387ADVANSYS SCSI DRIVER 388M: Matthew Wilcox <matthew@wil.cx> 389L: linux-scsi@vger.kernel.org 390S: Maintained 391F: Documentation/scsi/advansys.txt 392F: drivers/scsi/advansys.c 393 394AEDSP16 DRIVER 395M: Riccardo Facchetti <fizban@tin.it> 396S: Maintained 397F: sound/oss/aedsp16.c 398 399AFFS FILE SYSTEM 400M: Roman Zippel <zippel@linux-m68k.org> 401S: Maintained 402F: Documentation/filesystems/affs.txt 403F: fs/affs/ 404 405AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN 406M: David Howells <dhowells@redhat.com> 407L: linux-afs@lists.infradead.org 408S: Supported 409F: fs/afs/ 410F: include/net/af_rxrpc.h 411F: net/rxrpc/af_rxrpc.c 412 413AGPGART DRIVER 414M: David Airlie <airlied@linux.ie> 415T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git 416S: Maintained 417F: drivers/char/agp/ 418F: include/linux/agp* 419 420AHA152X SCSI DRIVER 421M: "Juergen E. Fischer" <fischer@norbit.de> 422L: linux-scsi@vger.kernel.org 423S: Maintained 424F: drivers/scsi/aha152x* 425F: drivers/scsi/pcmcia/aha152x* 426 427AIC7XXX / AIC79XX SCSI DRIVER 428M: Hannes Reinecke <hare@suse.de> 429L: linux-scsi@vger.kernel.org 430S: Maintained 431F: drivers/scsi/aic7xxx/ 432F: drivers/scsi/aic7xxx_old/ 433 434AIO 435M: Benjamin LaHaise <bcrl@kvack.org> 436L: linux-aio@kvack.org 437S: Supported 438F: fs/aio.c 439F: include/linux/*aio*.h 440 441ALCATEL SPEEDTOUCH USB DRIVER 442M: Duncan Sands <duncan.sands@free.fr> 443L: linux-usb@vger.kernel.org 444W: http://www.linux-usb.org/SpeedTouch/ 445S: Maintained 446F: drivers/usb/atm/speedtch.c 447F: drivers/usb/atm/usbatm.c 448 449ALCHEMY AU1XX0 MMC DRIVER 450M: Manuel Lauss <manuel.lauss@gmail.com> 451S: Maintained 452F: drivers/mmc/host/au1xmmc.c 453 454ALI1563 I2C DRIVER 455M: Rudolf Marek <r.marek@assembler.cz> 456L: linux-i2c@vger.kernel.org 457S: Maintained 458F: Documentation/i2c/busses/i2c-ali1563 459F: drivers/i2c/busses/i2c-ali1563.c 460 461ALPHA PORT 462M: Richard Henderson <rth@twiddle.net> 463M: Ivan Kokshaysky <ink@jurassic.park.msu.ru> 464M: Matt Turner <mattst88@gmail.com> 465L: linux-alpha@vger.kernel.org 466F: arch/alpha/ 467 468AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER 469M: Thomas Dahlmann <dahlmann.thomas@arcor.de> 470L: linux-geode@lists.infradead.org (moderated for non-subscribers) 471S: Supported 472F: drivers/usb/gadget/amd5536udc.* 473 474AMD GEODE PROCESSOR/CHIPSET SUPPORT 475P: Andres Salomon <dilinger@queued.net> 476L: linux-geode@lists.infradead.org (moderated for non-subscribers) 477W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html 478S: Supported 479F: drivers/char/hw_random/geode-rng.c 480F: drivers/crypto/geode* 481F: drivers/video/geode/ 482F: arch/x86/include/asm/geode.h 483 484AMD IOMMU (AMD-VI) 485M: Joerg Roedel <joerg.roedel@amd.com> 486L: iommu@lists.linux-foundation.org 487T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/linux-2.6-iommu.git 488S: Supported 489F: arch/x86/kernel/amd_iommu*.c 490F: arch/x86/include/asm/amd_iommu*.h 491 492AMD MICROCODE UPDATE SUPPORT 493M: Andreas Herrmann <andreas.herrmann3@amd.com> 494L: amd64-microcode@amd64.org 495S: Supported 496F: arch/x86/kernel/microcode_amd.c 497 498AMS (Apple Motion Sensor) DRIVER 499M: Michael Hanselmann <linux-kernel@hansmi.ch> 500S: Supported 501F: drivers/macintosh/ams/ 502 503AMSO1100 RNIC DRIVER 504M: Tom Tucker <tom@opengridcomputing.com> 505M: Steve Wise <swise@opengridcomputing.com> 506L: linux-rdma@vger.kernel.org 507S: Maintained 508F: drivers/infiniband/hw/amso1100/ 509 510ANALOG DEVICES INC ASOC CODEC DRIVERS 511L: device-driver-devel@blackfin.uclinux.org 512L: alsa-devel@alsa-project.org (moderated for non-subscribers) 513W: http://wiki-analog.com/ 514S: Supported 515F: sound/soc/codecs/ad1* 516F: sound/soc/codecs/adau* 517F: sound/soc/codecs/adav* 518F: sound/soc/codecs/ssm* 519 520ANALOG DEVICES INC ASOC DRIVERS 521L: uclinux-dist-devel@blackfin.uclinux.org 522L: alsa-devel@alsa-project.org (moderated for non-subscribers) 523W: http://blackfin.uclinux.org/ 524S: Supported 525F: sound/soc/blackfin/* 526 527AOA (Apple Onboard Audio) ALSA DRIVER 528M: Johannes Berg <johannes@sipsolutions.net> 529L: linuxppc-dev@lists.ozlabs.org 530L: alsa-devel@alsa-project.org (moderated for non-subscribers) 531S: Maintained 532F: sound/aoa/ 533 534APM DRIVER 535M: Stephen Rothwell <sfr@canb.auug.org.au> 536L: linux-laptop@vger.kernel.org 537W: http://www.canb.auug.org.au/~sfr/ 538S: Supported 539F: arch/x86/kernel/apm_32.c 540F: include/linux/apm_bios.h 541 542APPLE BCM5974 MULTITOUCH DRIVER 543M: Henrik Rydberg <rydberg@euromail.se> 544L: linux-input@vger.kernel.org 545S: Maintained 546F: drivers/input/mouse/bcm5974.c 547 548APPLE SMC DRIVER 549M: Henrik Rydberg <rydberg@euromail.se> 550L: lm-sensors@lm-sensors.org 551S: Maintained 552F: drivers/hwmon/applesmc.c 553 554APPLETALK NETWORK LAYER 555M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 556S: Maintained 557F: drivers/net/appletalk/ 558F: net/appletalk/ 559 560ARC FRAMEBUFFER DRIVER 561M: Jaya Kumar <jayalk@intworks.biz> 562S: Maintained 563F: drivers/video/arcfb.c 564F: drivers/video/fb_defio.c 565 566ARM MFM AND FLOPPY DRIVERS 567M: Ian Molton <spyro@f2s.com> 568S: Maintained 569F: arch/arm/lib/floppydma.S 570F: arch/arm/include/asm/floppy.h 571 572ARM PORT 573M: Russell King <linux@arm.linux.org.uk> 574L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 575W: http://www.arm.linux.org.uk/ 576S: Maintained 577F: arch/arm/ 578 579ARM PRIMECELL AACI PL041 DRIVER 580M: Russell King <linux@arm.linux.org.uk> 581S: Maintained 582F: sound/arm/aaci.* 583 584ARM PRIMECELL CLCD PL110 DRIVER 585M: Russell King <linux@arm.linux.org.uk> 586S: Maintained 587F: drivers/video/amba-clcd.* 588 589ARM PRIMECELL KMI PL050 DRIVER 590M: Russell King <linux@arm.linux.org.uk> 591S: Maintained 592F: drivers/input/serio/ambakmi.* 593F: include/linux/amba/kmi.h 594 595ARM PRIMECELL MMCI PL180/1 DRIVER 596S: Orphan 597F: drivers/mmc/host/mmci.* 598 599ARM PRIMECELL BUS SUPPORT 600M: Russell King <linux@arm.linux.org.uk> 601S: Maintained 602F: drivers/amba/ 603F: include/linux/amba/bus.h 604 605ARM/ADI ROADRUNNER MACHINE SUPPORT 606M: Lennert Buytenhek <kernel@wantstofly.org> 607L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 608S: Maintained 609F: arch/arm/mach-ixp23xx/ 610F: arch/arm/mach-ixp23xx/include/mach/ 611 612ARM/ADS SPHERE MACHINE SUPPORT 613M: Lennert Buytenhek <kernel@wantstofly.org> 614L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 615S: Maintained 616 617ARM/AFEB9260 MACHINE SUPPORT 618M: Sergey Lapin <slapin@ossfans.org> 619L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 620S: Maintained 621 622ARM/AJECO 1ARM MACHINE SUPPORT 623M: Lennert Buytenhek <kernel@wantstofly.org> 624L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 625S: Maintained 626 627ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES 628M: Andrew Victor <linux@maxim.org.za> 629M: Nicolas Ferre <nicolas.ferre@atmel.com> 630M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com> 631L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 632W: http://maxim.org.za/at91_26.html 633W: http://www.linux4sam.org 634S: Supported 635F: arch/arm/mach-at91/ 636 637ARM/BCMRING ARM ARCHITECTURE 638M: Jiandong Zheng <jdzheng@broadcom.com> 639M: Scott Branden <sbranden@broadcom.com> 640L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 641S: Maintained 642F: arch/arm/mach-bcmring 643 644ARM/BCMRING MTD NAND DRIVER 645M: Jiandong Zheng <jdzheng@broadcom.com> 646M: Scott Branden <sbranden@broadcom.com> 647L: linux-mtd@lists.infradead.org 648S: Maintained 649F: drivers/mtd/nand/bcm_umi_nand.c 650F: drivers/mtd/nand/bcm_umi_bch.c 651F: drivers/mtd/nand/nand_bcm_umi.h 652 653ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT 654M: Anton Vorontsov <avorontsov@mvista.com> 655S: Maintained 656F: arch/arm/mach-cns3xxx/ 657T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git 658 659ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE 660M: Hartley Sweeten <hsweeten@visionengravers.com> 661M: Ryan Mallon <ryan@bluewatersys.com> 662L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 663S: Maintained 664F: arch/arm/mach-ep93xx/ 665F: arch/arm/mach-ep93xx/include/mach/ 666 667ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT 668M: Lennert Buytenhek <kernel@wantstofly.org> 669L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 670S: Maintained 671 672ARM/CLKDEV SUPPORT 673M: Russell King <linux@arm.linux.org.uk> 674L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 675F: arch/arm/common/clkdev.c 676F: arch/arm/include/asm/clkdev.h 677 678ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT 679M: Mike Rapoport <mike@compulab.co.il> 680L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 681S: Maintained 682 683ARM/CONTEC MICRO9 MACHINE SUPPORT 684M: Hubert Feurstein <hubert.feurstein@contec.at> 685S: Maintained 686F: arch/arm/mach-ep93xx/micro9.c 687 688ARM/CORGI MACHINE SUPPORT 689M: Richard Purdie <rpurdie@rpsys.net> 690S: Maintained 691 692ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE 693M: Hans Ulli Kroll <ulli.kroll@googlemail.com> 694L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 695T: git git://git.berlios.de/gemini-board 696S: Maintained 697F: arch/arm/mach-gemini/ 698 699ARM/EBSA110 MACHINE SUPPORT 700M: Russell King <linux@arm.linux.org.uk> 701L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 702W: http://www.arm.linux.org.uk/ 703S: Maintained 704F: arch/arm/mach-ebsa110/ 705F: drivers/net/arm/am79c961a.* 706 707ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6) 708M: Daniel Ribeiro <drwyrm@gmail.com> 709M: Stefan Schmidt <stefan@openezx.org> 710M: Harald Welte <laforge@openezx.org> 711L: openezx-devel@lists.openezx.org (subscribers-only) 712W: http://www.openezx.org/ 713S: Maintained 714T: topgit git://git.openezx.org/openezx.git 715F: arch/arm/mach-pxa/ezx.c 716 717ARM/FARADAY FA526 PORT 718M: Hans Ulli Kroll <ulli.kroll@googlemail.com> 719L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 720S: Maintained 721T: git git://git.berlios.de/gemini-board 722F: arch/arm/mm/*-fa* 723 724ARM/FOOTBRIDGE ARCHITECTURE 725M: Russell King <linux@arm.linux.org.uk> 726L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 727W: http://www.arm.linux.org.uk/ 728S: Maintained 729F: arch/arm/include/asm/hardware/dec21285.h 730F: arch/arm/mach-footbridge/ 731 732ARM/FREESCALE IMX / MXC ARM ARCHITECTURE 733M: Sascha Hauer <kernel@pengutronix.de> 734L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 735S: Maintained 736T: git git://git.pengutronix.de/git/imx/linux-2.6.git 737F: arch/arm/mach-mx*/ 738F: arch/arm/plat-mxc/ 739 740ARM/FREESCALE IMX51 741M: Amit Kucheria <amit.kucheria@canonical.com> 742L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 743S: Maintained 744F: arch/arm/mach-mx5/ 745 746ARM/GLOMATION GESBC9312SX MACHINE SUPPORT 747M: Lennert Buytenhek <kernel@wantstofly.org> 748L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 749S: Maintained 750 751ARM/GUMSTIX MACHINE SUPPORT 752M: Steve Sakoman <sakoman@gmail.com> 753L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 754S: Maintained 755 756ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT 757M: Philipp Zabel <philipp.zabel@gmail.com> 758S: Maintained 759F: arch/arm/mach-pxa/hx4700.c 760F: arch/arm/mach-pxa/include/mach/hx4700.h 761 762ARM/HP JORNADA 7XX MACHINE SUPPORT 763M: Kristoffer Ericson <kristoffer.ericson@gmail.com> 764W: www.jlime.com 765S: Maintained 766T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git 767F: arch/arm/mach-sa1100/jornada720.c 768F: arch/arm/mach-sa1100/include/mach/jornada720.h 769 770ARM/INCOME PXA270 SUPPORT 771M: Marek Vasut <marek.vasut@gmail.com> 772L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 773S: Maintained 774F: arch/arm/mach-pxa/colibri-pxa270-income.c 775 776ARM/INTEL IOP32X ARM ARCHITECTURE 777M: Lennert Buytenhek <kernel@wantstofly.org> 778M: Dan Williams <dan.j.williams@intel.com> 779L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 780S: Maintained 781 782ARM/INTEL IOP33X ARM ARCHITECTURE 783M: Dan Williams <dan.j.williams@intel.com> 784L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 785S: Maintained 786 787ARM/INTEL IOP13XX ARM ARCHITECTURE 788M: Lennert Buytenhek <kernel@wantstofly.org> 789M: Dan Williams <dan.j.williams@intel.com> 790L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 791S: Maintained 792 793ARM/INTEL IQ81342EX MACHINE SUPPORT 794M: Lennert Buytenhek <kernel@wantstofly.org> 795M: Dan Williams <dan.j.williams@intel.com> 796L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 797S: Maintained 798 799ARM/INTEL IXP2000 ARM ARCHITECTURE 800M: Lennert Buytenhek <kernel@wantstofly.org> 801L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 802S: Maintained 803 804ARM/INTEL IXDP2850 MACHINE SUPPORT 805M: Lennert Buytenhek <kernel@wantstofly.org> 806L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 807S: Maintained 808 809ARM/INTEL IXP23XX ARM ARCHITECTURE 810M: Lennert Buytenhek <kernel@wantstofly.org> 811L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 812S: Maintained 813 814ARM/INTEL IXP4XX ARM ARCHITECTURE 815M: Imre Kaloz <kaloz@openwrt.org> 816M: Krzysztof Halasa <khc@pm.waw.pl> 817L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 818S: Maintained 819F: arch/arm/mach-ixp4xx/ 820 821ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT 822M: Jonathan Cameron <jic23@cam.ac.uk> 823L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 824S: Maintained 825F: arch/arm/mach-pxa/stargate2.c 826F: drivers/pcmcia/pxa2xx_stargate2.c 827 828ARM/INTEL XSC3 (MANZANO) ARM CORE 829M: Lennert Buytenhek <kernel@wantstofly.org> 830M: Dan Williams <dan.j.williams@intel.com> 831L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 832S: Maintained 833 834ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT 835M: Lennert Buytenhek <kernel@wantstofly.org> 836L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 837S: Maintained 838 839ARM/LOGICPD PXA270 MACHINE SUPPORT 840M: Lennert Buytenhek <kernel@wantstofly.org> 841L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 842S: Maintained 843 844ARM/MAGICIAN MACHINE SUPPORT 845M: Philipp Zabel <philipp.zabel@gmail.com> 846S: Maintained 847 848ARM/Marvell Loki/Kirkwood/MV78xx0/Orion SOC support 849M: Lennert Buytenhek <kernel@wantstofly.org> 850M: Nicolas Pitre <nico@fluxnic.net> 851L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 852S: Odd Fixes 853F: arch/arm/mach-loki/ 854F: arch/arm/mach-kirkwood/ 855F: arch/arm/mach-mv78xx0/ 856F: arch/arm/mach-orion5x/ 857F: arch/arm/plat-orion/ 858 859ARM/MIOA701 MACHINE SUPPORT 860M: Robert Jarzmik <robert.jarzmik@free.fr> 861L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 862F: arch/arm/mach-pxa/mioa701.c 863S: Maintained 864 865ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT 866M: Michael Petchkovsky <mkpetch@internode.on.net> 867S: Maintained 868 869ARM/NOMADIK ARCHITECTURE 870M: Alessandro Rubini <rubini@unipv.it> 871M: Linus Walleij <linus.walleij@stericsson.com> 872M: STEricsson <STEricsson_nomadik_linux@list.st.com> 873L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 874S: Maintained 875F: arch/arm/mach-nomadik/ 876F: arch/arm/plat-nomadik/ 877F: drivers/i2c/busses/i2c-nomadik.c 878T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git 879 880ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT 881M: Nelson Castillo <arhuaco@freaks-unidos.net> 882L: openmoko-kernel@lists.openmoko.org (subscribers-only) 883W: http://wiki.openmoko.org/wiki/Neo_FreeRunner 884S: Supported 885 886ARM/QUALCOMM MSM MACHINE SUPPORT 887M: David Brown <davidb@codeaurora.org> 888M: Daniel Walker <dwalker@fifo99.com> 889M: Bryan Huntsman <bryanh@codeaurora.org> 890L: linux-arm-msm@vger.kernel.org 891F: arch/arm/mach-msm/ 892F: drivers/video/msm/ 893F: drivers/mmc/host/msm_sdcc.c 894F: drivers/mmc/host/msm_sdcc.h 895F: drivers/tty/serial/msm_serial.h 896F: drivers/tty/serial/msm_serial.c 897T: git git://codeaurora.org/quic/kernel/davidb/linux-msm.git 898S: Maintained 899 900ARM/TOSA MACHINE SUPPORT 901M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 902M: Dirk Opfer <dirk@opfer-online.de> 903S: Maintained 904 905ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT 906M: Marek Vasut <marek.vasut@gmail.com> 907L: linux-arm-kernel@lists.infradead.org 908W: http://hackndev.com 909S: Maintained 910F: arch/arm/mach-pxa/include/mach/palmtx.h 911F: arch/arm/mach-pxa/palmtx.c 912F: arch/arm/mach-pxa/include/mach/palmt5.h 913F: arch/arm/mach-pxa/palmt5.c 914F: arch/arm/mach-pxa/include/mach/palmld.h 915F: arch/arm/mach-pxa/palmld.c 916F: arch/arm/mach-pxa/include/mach/palmte2.h 917F: arch/arm/mach-pxa/palmte2.c 918F: arch/arm/mach-pxa/include/mach/palmtc.h 919F: arch/arm/mach-pxa/palmtc.c 920 921ARM/PALM TREO SUPPORT 922M: Tomas Cech <sleep_walker@suse.cz> 923L: linux-arm-kernel@lists.infradead.org 924W: http://hackndev.com 925S: Maintained 926F: arch/arm/mach-pxa/include/mach/palmtreo.h 927F: arch/arm/mach-pxa/palmtreo.c 928 929ARM/PALMZ72 SUPPORT 930M: Sergey Lapin <slapin@ossfans.org> 931L: linux-arm-kernel@lists.infradead.org 932W: http://hackndev.com 933S: Maintained 934F: arch/arm/mach-pxa/include/mach/palmz72.h 935F: arch/arm/mach-pxa/palmz72.c 936 937ARM/PLEB SUPPORT 938M: Peter Chubb <pleb@gelato.unsw.edu.au> 939W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB 940S: Maintained 941 942ARM/PT DIGITAL BOARD PORT 943M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de> 944L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 945W: http://www.arm.linux.org.uk/ 946S: Maintained 947 948ARM/RADISYS ENP2611 MACHINE SUPPORT 949M: Lennert Buytenhek <kernel@wantstofly.org> 950L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 951S: Maintained 952 953ARM/RISCPC ARCHITECTURE 954M: Russell King <linux@arm.linux.org.uk> 955L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 956W: http://www.arm.linux.org.uk/ 957S: Maintained 958F: arch/arm/common/time-acorn.c 959F: arch/arm/include/asm/hardware/entry-macro-iomd.S 960F: arch/arm/include/asm/hardware/ioc.h 961F: arch/arm/include/asm/hardware/iomd.h 962F: arch/arm/include/asm/hardware/memc.h 963F: arch/arm/mach-rpc/ 964F: drivers/net/arm/ether* 965F: drivers/scsi/arm/ 966 967ARM/SHARK MACHINE SUPPORT 968M: Alexander Schulz <alex@shark-linux.de> 969W: http://www.shark-linux.de/shark.html 970S: Maintained 971 972ARM/SAMSUNG ARM ARCHITECTURES 973M: Ben Dooks <ben-linux@fluff.org> 974M: Kukjin Kim <kgene.kim@samsung.com> 975L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 976W: http://www.fluff.org/ben/linux/ 977S: Maintained 978F: arch/arm/plat-samsung/ 979F: arch/arm/plat-s3c24xx/ 980F: arch/arm/plat-s5p/ 981F: drivers/*/*s3c2410* 982F: drivers/*/*/*s3c2410* 983 984ARM/S3C2410 ARM ARCHITECTURE 985M: Ben Dooks <ben-linux@fluff.org> 986L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 987W: http://www.fluff.org/ben/linux/ 988S: Maintained 989F: arch/arm/mach-s3c2410/ 990 991ARM/S3C244x ARM ARCHITECTURE 992M: Ben Dooks <ben-linux@fluff.org> 993L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 994W: http://www.fluff.org/ben/linux/ 995S: Maintained 996F: arch/arm/mach-s3c2440/ 997F: arch/arm/mach-s3c2443/ 998 999ARM/S3C64xx ARM ARCHITECTURE 1000M: Ben Dooks <ben-linux@fluff.org>
1001L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1002W: http://www.fluff.org/ben/linux/ 1003S: Maintained 1004F: arch/arm/mach-s3c64xx/ 1005 1006ARM/S5P ARM ARCHITECTURES 1007M: Kukjin Kim <kgene.kim@samsung.com> 1008L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1009L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers) 1010S: Maintained 1011F: arch/arm/mach-s5p*/ 1012 1013ARM/SAMSUNG MOBILE MACHINE SUPPORT 1014M: Kyungmin Park <kyungmin.park@samsung.com> 1015L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1016S: Maintained 1017F: arch/arm/mach-s5pv210/mach-aquila.c 1018F: arch/arm/mach-s5pv210/mach-goni.c 1019F: arch/arm/mach-exynos4/mach-universal_c210.c 1020F: arch/arm/mach-exynos4/mach-nuri.c 1021 1022ARM/SAMSUNG S5P SERIES FIMC SUPPORT 1023M: Kyungmin Park <kyungmin.park@samsung.com> 1024M: Sylwester Nawrocki <s.nawrocki@samsung.com> 1025L: linux-arm-kernel@lists.infradead.org 1026L: linux-media@vger.kernel.org 1027S: Maintained 1028F: arch/arm/plat-s5p/dev-fimc* 1029F: arch/arm/plat-samsung/include/plat/*fimc* 1030F: drivers/media/video/s5p-fimc/ 1031 1032ARM/SHMOBILE ARM ARCHITECTURE 1033M: Paul Mundt <lethal@linux-sh.org> 1034M: Magnus Damm <magnus.damm@gmail.com> 1035L: linux-sh@vger.kernel.org 1036W: http://oss.renesas.com 1037Q: http://patchwork.kernel.org/project/linux-sh/list/ 1038T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git rmobile-latest 1039S: Supported 1040F: arch/arm/mach-shmobile/ 1041F: drivers/sh/ 1042 1043ARM/TELECHIPS ARM ARCHITECTURE 1044M: "Hans J. Koch" <hjk@linutronix.de> 1045L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1046S: Maintained 1047F: arch/arm/plat-tcc/ 1048F: arch/arm/mach-tcc8k/ 1049 1050ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT 1051M: Lennert Buytenhek <kernel@wantstofly.org> 1052L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1053S: Maintained 1054 1055ARM/TETON BGA MACHINE SUPPORT 1056M: Mark F. Brown <mark.brown314@gmail.com> 1057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1058S: Maintained 1059 1060ARM/THECUS N2100 MACHINE SUPPORT 1061M: Lennert Buytenhek <kernel@wantstofly.org> 1062L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1063S: Maintained 1064 1065ARM/NUVOTON W90X900 ARM ARCHITECTURE 1066M: Wan ZongShun <mcuos.com@gmail.com> 1067L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1068W: http://www.mcuos.com 1069S: Maintained 1070F: arch/arm/mach-w90x900/ 1071F: arch/arm/mach-nuc93x/ 1072F: drivers/input/keyboard/w90p910_keypad.c 1073F: drivers/input/touchscreen/w90p910_ts.c 1074F: drivers/watchdog/nuc900_wdt.c 1075F: drivers/net/arm/w90p910_ether.c 1076F: drivers/mtd/nand/nuc900_nand.c 1077F: drivers/rtc/rtc-nuc900.c 1078F: drivers/spi/spi_nuc900.c 1079F: drivers/usb/host/ehci-w90x900.c 1080F: drivers/video/nuc900fb.c 1081 1082ARM/U300 MACHINE SUPPORT 1083M: Linus Walleij <linus.walleij@stericsson.com> 1084L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1085S: Supported 1086F: arch/arm/mach-u300/ 1087F: drivers/i2c/busses/i2c-stu300.c 1088F: drivers/rtc/rtc-coh901331.c 1089F: drivers/watchdog/coh901327_wdt.c 1090F: drivers/dma/coh901318* 1091F: drivers/mfd/ab3100* 1092F: drivers/rtc/rtc-ab3100.c 1093F: drivers/rtc/rtc-coh901331.c 1094T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git 1095 1096ARM/Ux500 ARM ARCHITECTURE 1097M: Srinidhi Kasagar <srinidhi.kasagar@stericsson.com> 1098M: Linus Walleij <linus.walleij@stericsson.com> 1099L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1100S: Maintained 1101F: arch/arm/mach-ux500/ 1102F: drivers/dma/ste_dma40* 1103F: drivers/mfd/ab3550* 1104F: drivers/mfd/abx500* 1105F: drivers/mfd/ab8500* 1106F: drivers/mfd/stmpe* 1107F: drivers/rtc/rtc-ab8500.c 1108T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git 1109 1110ARM/VFP SUPPORT 1111M: Russell King <linux@arm.linux.org.uk> 1112L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1113W: http://www.arm.linux.org.uk/ 1114S: Maintained 1115F: arch/arm/vfp/ 1116 1117ARM/VOIPAC PXA270 SUPPORT 1118M: Marek Vasut <marek.vasut@gmail.com> 1119L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1120S: Maintained 1121F: arch/arm/mach-pxa/vpac270.c 1122F: arch/arm/mach-pxa/include/mach/vpac270.h 1123 1124ARM/ZIPIT Z2 SUPPORT 1125M: Marek Vasut <marek.vasut@gmail.com> 1126L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1127S: Maintained 1128F: arch/arm/mach-pxa/z2.c 1129F: arch/arm/mach-pxa/include/mach/z2.h 1130 1131ASC7621 HARDWARE MONITOR DRIVER 1132M: George Joseph <george.joseph@fairview5.com> 1133L: lm-sensors@lm-sensors.org 1134S: Maintained 1135F: Documentation/hwmon/asc7621 1136F: drivers/hwmon/asc7621.c 1137 1138ASUS ACPI EXTRAS DRIVER 1139M: Corentin Chary <corentincj@iksaif.net> 1140M: Karol Kozimor <sziwan@users.sourceforge.net> 1141L: acpi4asus-user@lists.sourceforge.net 1142L: platform-driver-x86@vger.kernel.org 1143W: http://acpi4asus.sf.net 1144S: Maintained 1145F: drivers/platform/x86/asus_acpi.c 1146 1147ASUS ASB100 HARDWARE MONITOR DRIVER 1148M: "Mark M. Hoffman" <mhoffman@lightlink.com> 1149L: lm-sensors@lm-sensors.org 1150S: Maintained 1151F: drivers/hwmon/asb100.c 1152 1153ASUS LAPTOP EXTRAS DRIVER 1154M: Corentin Chary <corentincj@iksaif.net> 1155L: acpi4asus-user@lists.sourceforge.net 1156L: platform-driver-x86@vger.kernel.org 1157W: http://acpi4asus.sf.net 1158S: Maintained 1159F: drivers/platform/x86/asus-laptop.c 1160 1161ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API 1162M: Dan Williams <dan.j.williams@intel.com> 1163W: http://sourceforge.net/projects/xscaleiop 1164S: Supported 1165F: Documentation/crypto/async-tx-api.txt 1166F: crypto/async_tx/ 1167F: drivers/dma/ 1168F: include/linux/dmaengine.h 1169F: include/linux/async_tx.h 1170 1171AT24 EEPROM DRIVER 1172M: Wolfram Sang <w.sang@pengutronix.de> 1173L: linux-i2c@vger.kernel.org 1174S: Maintained 1175F: drivers/misc/eeprom/at24.c 1176F: include/linux/i2c/at24.h 1177 1178ATA OVER ETHERNET (AOE) DRIVER 1179M: "Ed L. Cashin" <ecashin@coraid.com> 1180W: http://www.coraid.com/support/linux 1181S: Supported 1182F: Documentation/aoe/ 1183F: drivers/block/aoe/ 1184 1185ATHEROS ATH GENERIC UTILITIES 1186M: "Luis R. Rodriguez" <lrodriguez@atheros.com> 1187L: linux-wireless@vger.kernel.org 1188S: Supported 1189F: drivers/net/wireless/ath/* 1190 1191ATHEROS ATH5K WIRELESS DRIVER 1192M: Jiri Slaby <jirislaby@gmail.com> 1193M: Nick Kossifidis <mickflemm@gmail.com> 1194M: "Luis R. Rodriguez" <lrodriguez@atheros.com> 1195M: Bob Copeland <me@bobcopeland.com> 1196L: linux-wireless@vger.kernel.org 1197L: ath5k-devel@lists.ath5k.org 1198W: http://wireless.kernel.org/en/users/Drivers/ath5k 1199S: Maintained 1200F: drivers/net/wireless/ath/ath5k/ 1201 1202ATHEROS ATH9K WIRELESS DRIVER 1203M: "Luis R. Rodriguez" <lrodriguez@atheros.com> 1204M: Jouni Malinen <jmalinen@atheros.com> 1205M: Vasanthakumar Thiagarajan <vasanth@atheros.com> 1206M: Senthil Balasubramanian <senthilkumar@atheros.com> 1207L: linux-wireless@vger.kernel.org 1208L: ath9k-devel@lists.ath9k.org 1209W: http://wireless.kernel.org/en/users/Drivers/ath9k 1210S: Supported 1211F: drivers/net/wireless/ath/ath9k/ 1212 1213ATHEROS AR9170 WIRELESS DRIVER 1214M: Christian Lamparter <chunkeey@web.de> 1215L: linux-wireless@vger.kernel.org 1216W: http://wireless.kernel.org/en/users/Drivers/ar9170 1217S: Maintained 1218F: drivers/net/wireless/ath/ar9170/ 1219 1220CARL9170 LINUX COMMUNITY WIRELESS DRIVER 1221M: Christian Lamparter <chunkeey@googlemail.com> 1222L: linux-wireless@vger.kernel.org 1223W: http://wireless.kernel.org/en/users/Drivers/carl9170 1224S: Maintained 1225F: drivers/net/wireless/ath/carl9170/ 1226 1227ATK0110 HWMON DRIVER 1228M: Luca Tettamanti <kronos.it@gmail.com> 1229L: lm-sensors@lm-sensors.org 1230S: Maintained 1231F: drivers/hwmon/asus_atk0110.c 1232 1233ATI_REMOTE2 DRIVER 1234M: Ville Syrjala <syrjala@sci.fi> 1235S: Maintained 1236F: drivers/input/misc/ati_remote2.c 1237 1238ATLX ETHERNET DRIVERS 1239M: Jay Cliburn <jcliburn@gmail.com> 1240M: Chris Snook <chris.snook@gmail.com> 1241M: Jie Yang <jie.yang@atheros.com> 1242L: netdev@vger.kernel.org 1243W: http://sourceforge.net/projects/atl1 1244W: http://atl1.sourceforge.net 1245S: Maintained 1246F: drivers/net/atlx/ 1247 1248ATM 1249M: Chas Williams <chas@cmf.nrl.navy.mil> 1250L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers) 1251L: netdev@vger.kernel.org 1252W: http://linux-atm.sourceforge.net 1253S: Maintained 1254F: drivers/atm/ 1255F: include/linux/atm* 1256 1257ATMEL AT91 MCI DRIVER 1258M: Nicolas Ferre <nicolas.ferre@atmel.com> 1259L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1260W: http://www.atmel.com/products/AT91/ 1261W: http://www.at91.com/ 1262S: Maintained 1263F: drivers/mmc/host/at91_mci.c 1264 1265ATMEL AT91 / AT32 MCI DRIVER 1266M: Nicolas Ferre <nicolas.ferre@atmel.com> 1267S: Maintained 1268F: drivers/mmc/host/atmel-mci.c 1269F: drivers/mmc/host/atmel-mci-regs.h 1270 1271ATMEL AT91 / AT32 SERIAL DRIVER 1272M: Nicolas Ferre <nicolas.ferre@atmel.com> 1273S: Supported 1274F: drivers/tty/serial/atmel_serial.c 1275 1276ATMEL LCDFB DRIVER 1277M: Nicolas Ferre <nicolas.ferre@atmel.com> 1278L: linux-fbdev@vger.kernel.org 1279S: Maintained 1280F: drivers/video/atmel_lcdfb.c 1281F: include/video/atmel_lcdc.h 1282 1283ATMEL MACB ETHERNET DRIVER 1284M: Nicolas Ferre <nicolas.ferre@atmel.com> 1285S: Supported 1286F: drivers/net/macb.* 1287 1288ATMEL SPI DRIVER 1289M: Nicolas Ferre <nicolas.ferre@atmel.com> 1290S: Supported 1291F: drivers/spi/atmel_spi.* 1292 1293ATMEL USBA UDC DRIVER 1294M: Nicolas Ferre <nicolas.ferre@atmel.com> 1295L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1296W: http://avr32linux.org/twiki/bin/view/Main/AtmelUsbDeviceDriver 1297S: Supported 1298F: drivers/usb/gadget/atmel_usba_udc.* 1299 1300ATMEL WIRELESS DRIVER 1301M: Simon Kelley <simon@thekelleys.org.uk> 1302L: linux-wireless@vger.kernel.org 1303W: http://www.thekelleys.org.uk/atmel 1304W: http://atmelwlandriver.sourceforge.net/ 1305S: Maintained 1306F: drivers/net/wireless/atmel* 1307 1308AUDIT SUBSYSTEM 1309M: Al Viro <viro@zeniv.linux.org.uk> 1310M: Eric Paris <eparis@redhat.com> 1311L: linux-audit@redhat.com (subscribers-only) 1312W: http://people.redhat.com/sgrubb/audit/ 1313T: git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git 1314S: Maintained 1315F: include/linux/audit.h 1316F: kernel/audit* 1317 1318AUXILIARY DISPLAY DRIVERS 1319M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1320W: http://miguelojeda.es/auxdisplay.htm 1321W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1322S: Maintained 1323F: drivers/auxdisplay/ 1324F: include/linux/cfag12864b.h 1325 1326AVR32 ARCHITECTURE 1327M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> 1328W: http://www.atmel.com/products/AVR32/ 1329W: http://avr32linux.org/ 1330W: http://avrfreaks.net/ 1331S: Supported 1332F: arch/avr32/ 1333 1334AVR32/AT32AP MACHINE SUPPORT 1335M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com> 1336S: Supported 1337F: arch/avr32/mach-at32ap/ 1338 1339AX.25 NETWORK LAYER 1340M: Ralf Baechle <ralf@linux-mips.org> 1341L: linux-hams@vger.kernel.org 1342W: http://www.linux-ax25.org/ 1343S: Maintained 1344F: include/linux/ax25.h 1345F: include/net/ax25.h 1346F: net/ax25/ 1347 1348B43 WIRELESS DRIVER 1349M: Stefano Brivio <stefano.brivio@polimi.it> 1350L: linux-wireless@vger.kernel.org 1351W: http://linuxwireless.org/en/users/Drivers/b43 1352S: Maintained 1353F: drivers/net/wireless/b43/ 1354 1355B43LEGACY WIRELESS DRIVER 1356M: Larry Finger <Larry.Finger@lwfinger.net> 1357M: Stefano Brivio <stefano.brivio@polimi.it> 1358L: linux-wireless@vger.kernel.org 1359W: http://linuxwireless.org/en/users/Drivers/b43 1360S: Maintained 1361F: drivers/net/wireless/b43legacy/ 1362 1363BACKLIGHT CLASS/SUBSYSTEM 1364M: Richard Purdie <rpurdie@rpsys.net> 1365S: Maintained 1366F: drivers/video/backlight/ 1367F: include/linux/backlight.h 1368 1369BATMAN ADVANCED 1370M: Marek Lindner <lindner_marek@yahoo.de> 1371M: Simon Wunderlich <siwu@hrz.tu-chemnitz.de> 1372M: Sven Eckelmann <sven@narfation.org> 1373L: b.a.t.m.a.n@lists.open-mesh.org 1374W: http://www.open-mesh.org/ 1375S: Maintained 1376F: net/batman-adv/ 1377 1378BAYCOM/HDLCDRV DRIVERS FOR AX.25 1379M: Thomas Sailer <t.sailer@alumni.ethz.ch> 1380L: linux-hams@vger.kernel.org 1381W: http://www.baycom.org/~tom/ham/ham.html 1382S: Maintained 1383F: drivers/net/hamradio/baycom* 1384 1385BEFS FILE SYSTEM 1386S: Orphan 1387F: Documentation/filesystems/befs.txt 1388F: fs/befs/ 1389 1390BFS FILE SYSTEM 1391M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk> 1392S: Maintained 1393F: Documentation/filesystems/bfs.txt 1394F: fs/bfs/ 1395F: include/linux/bfs_fs.h 1396 1397BLACKFIN ARCHITECTURE 1398M: Mike Frysinger <vapier@gentoo.org> 1399L: uclinux-dist-devel@blackfin.uclinux.org 1400W: http://blackfin.uclinux.org 1401S: Supported 1402F: arch/blackfin/ 1403 1404BLACKFIN EMAC DRIVER 1405M: Michael Hennerich <michael.hennerich@analog.com> 1406L: uclinux-dist-devel@blackfin.uclinux.org 1407W: http://blackfin.uclinux.org 1408S: Supported 1409F: drivers/net/bfin_mac.* 1410 1411BLACKFIN RTC DRIVER 1412M: Mike Frysinger <vapier.adi@gmail.com> 1413L: uclinux-dist-devel@blackfin.uclinux.org 1414W: http://blackfin.uclinux.org 1415S: Supported 1416F: drivers/rtc/rtc-bfin.c 1417 1418BLACKFIN SDH DRIVER 1419M: Cliff Cai <cliff.cai@analog.com> 1420L: uclinux-dist-devel@blackfin.uclinux.org 1421W: http://blackfin.uclinux.org 1422S: Supported 1423F: drivers/mmc/host/bfin_sdh.c 1424 1425BLACKFIN SERIAL DRIVER 1426M: Sonic Zhang <sonic.zhang@analog.com> 1427L: uclinux-dist-devel@blackfin.uclinux.org 1428W: http://blackfin.uclinux.org 1429S: Supported 1430F: drivers/tty/serial/bfin_5xx.c 1431 1432BLACKFIN WATCHDOG DRIVER 1433M: Mike Frysinger <vapier.adi@gmail.com> 1434L: uclinux-dist-devel@blackfin.uclinux.org 1435W: http://blackfin.uclinux.org 1436S: Supported 1437F: drivers/watchdog/bfin_wdt.c 1438 1439BLACKFIN I2C TWI DRIVER 1440M: Sonic Zhang <sonic.zhang@analog.com> 1441L: uclinux-dist-devel@blackfin.uclinux.org 1442W: http://blackfin.uclinux.org/ 1443S: Supported 1444F: drivers/i2c/busses/i2c-bfin-twi.c 1445 1446BLOCK LAYER 1447M: Jens Axboe <axboe@kernel.dk> 1448T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-2.6-block.git 1449S: Maintained 1450F: block/ 1451 1452BLOCK2MTD DRIVER 1453M: Joern Engel <joern@lazybastard.org> 1454L: linux-mtd@lists.infradead.org 1455S: Maintained 1456F: drivers/mtd/devices/block2mtd.c 1457 1458BLUETOOTH DRIVERS 1459M: Marcel Holtmann <marcel@holtmann.org> 1460M: Gustavo F. Padovan <padovan@profusion.mobi> 1461L: linux-bluetooth@vger.kernel.org 1462W: http://www.bluez.org/ 1463T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git 1464S: Maintained 1465F: drivers/bluetooth/ 1466 1467BLUETOOTH SUBSYSTEM 1468M: Marcel Holtmann <marcel@holtmann.org> 1469M: Gustavo F. Padovan <padovan@profusion.mobi> 1470L: linux-bluetooth@vger.kernel.org 1471W: http://www.bluez.org/ 1472T: git git://git.kernel.org/pub/scm/linux/kernel/git/padovan/bluetooth-2.6.git 1473S: Maintained 1474F: net/bluetooth/ 1475F: include/net/bluetooth/ 1476 1477BONDING DRIVER 1478M: Jay Vosburgh <fubar@us.ibm.com> 1479M: Andy Gospodarek <andy@greyhouse.net> 1480L: netdev@vger.kernel.org 1481W: http://sourceforge.net/projects/bonding/ 1482S: Supported 1483F: drivers/net/bonding/ 1484F: include/linux/if_bonding.h 1485 1486BROADCOM B44 10/100 ETHERNET DRIVER 1487M: Gary Zambrano <zambrano@broadcom.com> 1488L: netdev@vger.kernel.org 1489S: Supported 1490F: drivers/net/b44.* 1491 1492BROADCOM BNX2 GIGABIT ETHERNET DRIVER 1493M: Michael Chan <mchan@broadcom.com> 1494L: netdev@vger.kernel.org 1495S: Supported 1496F: drivers/net/bnx2.* 1497F: drivers/net/bnx2_* 1498 1499BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER 1500M: Eilon Greenstein <eilong@broadcom.com> 1501L: netdev@vger.kernel.org 1502S: Supported 1503F: drivers/net/bnx2x/ 1504 1505BROADCOM TG3 GIGABIT ETHERNET DRIVER 1506M: Matt Carlson <mcarlson@broadcom.com> 1507M: Michael Chan <mchan@broadcom.com> 1508L: netdev@vger.kernel.org 1509S: Supported 1510F: drivers/net/tg3.* 1511 1512BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER 1513M: Brett Rudley <brudley@broadcom.com> 1514M: Henry Ptasinski <henryp@broadcom.com> 1515M: Dowan Kim <dowan@broadcom.com> 1516M: Roland Vossen <rvossen@broadcom.com> 1517M: Arend van Spriel <arend@broadcom.com> 1518L: linux-wireless@vger.kernel.org 1519S: Supported 1520F: drivers/staging/brcm80211/ 1521 1522BROCADE BFA FC SCSI DRIVER 1523M: Jing Huang <huangj@brocade.com> 1524L: linux-scsi@vger.kernel.org 1525S: Supported 1526F: drivers/scsi/bfa/ 1527 1528BROCADE BNA 10 GIGABIT ETHERNET DRIVER 1529M: Rasesh Mody <rmody@brocade.com> 1530M: Debashis Dutt <ddutt@brocade.com> 1531L: netdev@vger.kernel.org 1532S: Supported 1533F: drivers/net/bna/ 1534 1535BSG (block layer generic sg v4 driver) 1536M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> 1537L: linux-scsi@vger.kernel.org 1538S: Supported 1539F: block/bsg.c 1540F: include/linux/bsg.h 1541 1542BT87X AUDIO DRIVER 1543M: Clemens Ladisch <clemens@ladisch.de> 1544L: alsa-devel@alsa-project.org (moderated for non-subscribers) 1545T: git git://git.alsa-project.org/alsa-kernel.git 1546S: Maintained 1547F: Documentation/sound/alsa/Bt87x.txt 1548F: sound/pci/bt87x.c 1549 1550BT8XXGPIO DRIVER 1551M: Michael Buesch <mb@bu3sch.de> 1552W: http://bu3sch.de/btgpio.php 1553S: Maintained 1554F: drivers/gpio/bt8xxgpio.c 1555 1556BTRFS FILE SYSTEM 1557M: Chris Mason <chris.mason@oracle.com> 1558L: linux-btrfs@vger.kernel.org 1559W: http://btrfs.wiki.kernel.org/ 1560Q: http://patchwork.kernel.org/project/linux-btrfs/list/ 1561T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable.git 1562S: Maintained 1563F: Documentation/filesystems/btrfs.txt 1564F: fs/btrfs/ 1565 1566BTTV VIDEO4LINUX DRIVER 1567M: Mauro Carvalho Chehab <mchehab@infradead.org> 1568L: linux-media@vger.kernel.org 1569W: http://linuxtv.org 1570T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 1571S: Maintained 1572F: Documentation/video4linux/bttv/ 1573F: drivers/media/video/bt8xx/bttv* 1574 1575C-MEDIA CMI8788 DRIVER 1576M: Clemens Ladisch <clemens@ladisch.de> 1577L: alsa-devel@alsa-project.org (moderated for non-subscribers) 1578T: git git://git.alsa-project.org/alsa-kernel.git 1579S: Maintained 1580F: sound/pci/oxygen/ 1581 1582CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS 1583M: David Howells <dhowells@redhat.com> 1584L: linux-cachefs@redhat.com 1585S: Supported 1586F: Documentation/filesystems/caching/cachefiles.txt 1587F: fs/cachefiles/ 1588 1589CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER 1590M: Jonathan Corbet <corbet@lwn.net> 1591L: linux-media@vger.kernel.org 1592T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 1593S: Maintained 1594F: Documentation/video4linux/cafe_ccic 1595F: drivers/media/video/cafe_ccic* 1596 1597CAIF NETWORK LAYER 1598M: Sjur Braendeland <sjur.brandeland@stericsson.com> 1599L: netdev@vger.kernel.org 1600S: Supported 1601F: Documentation/networking/caif/ 1602F: drivers/net/caif/ 1603F: include/linux/caif/ 1604F: include/net/caif/ 1605F: net/caif/ 1606 1607CALGARY x86-64 IOMMU 1608M: Muli Ben-Yehuda <muli@il.ibm.com> 1609M: "Jon D. Mason" <jdmason@kudzu.us> 1610L: discuss@x86-64.org 1611S: Maintained 1612F: arch/x86/kernel/pci-calgary_64.c 1613F: arch/x86/kernel/tce_64.c 1614F: arch/x86/include/asm/calgary.h 1615F: arch/x86/include/asm/tce.h 1616 1617CAN NETWORK LAYER 1618M: Oliver Hartkopp <socketcan@hartkopp.net> 1619M: Oliver Hartkopp <oliver.hartkopp@volkswagen.de> 1620M: Urs Thuermann <urs.thuermann@volkswagen.de> 1621L: socketcan-core@lists.berlios.de 1622L: netdev@vger.kernel.org 1623W: http://developer.berlios.de/projects/socketcan/ 1624S: Maintained 1625F: net/can/ 1626F: include/linux/can.h 1627F: include/linux/can/core.h 1628F: include/linux/can/bcm.h 1629F: include/linux/can/raw.h 1630 1631CAN NETWORK DRIVERS 1632M: Wolfgang Grandegger <wg@grandegger.com> 1633L: socketcan-core@lists.berlios.de 1634L: netdev@vger.kernel.org 1635W: http://developer.berlios.de/projects/socketcan/ 1636S: Maintained 1637F: drivers/net/can/ 1638F: include/linux/can/dev.h 1639F: include/linux/can/error.h 1640F: include/linux/can/netlink.h 1641F: include/linux/can/platform/ 1642 1643CELL BROADBAND ENGINE ARCHITECTURE 1644M: Arnd Bergmann <arnd@arndb.de> 1645L: linuxppc-dev@lists.ozlabs.org 1646L: cbe-oss-dev@lists.ozlabs.org 1647W: http://www.ibm.com/developerworks/power/cell/ 1648S: Supported 1649F: arch/powerpc/include/asm/cell*.h 1650F: arch/powerpc/include/asm/spu*.h 1651F: arch/powerpc/oprofile/*cell* 1652F: arch/powerpc/platforms/cell/ 1653 1654CEPH DISTRIBUTED FILE SYSTEM CLIENT 1655M: Sage Weil <sage@newdream.net> 1656L: ceph-devel@vger.kernel.org 1657W: http://ceph.newdream.net/ 1658T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git 1659S: Supported 1660F: Documentation/filesystems/ceph.txt 1661F: fs/ceph 1662F: net/ceph 1663F: include/linux/ceph 1664 1665CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM: 1666L: linux-usb@vger.kernel.org 1667S: Orphan 1668F: Documentation/usb/WUSB-Design-overview.txt 1669F: Documentation/usb/wusb-cbaf 1670F: drivers/usb/host/hwa-hc.c 1671F: drivers/usb/host/whci/ 1672F: drivers/usb/wusbcore/ 1673F: include/linux/usb/wusb* 1674 1675CFAG12864B LCD DRIVER 1676M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1677W: http://miguelojeda.es/auxdisplay.htm 1678W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1679S: Maintained 1680F: drivers/auxdisplay/cfag12864b.c 1681F: include/linux/cfag12864b.h 1682 1683CFAG12864BFB LCD FRAMEBUFFER DRIVER 1684M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 1685W: http://miguelojeda.es/auxdisplay.htm 1686W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 1687S: Maintained 1688F: drivers/auxdisplay/cfag12864bfb.c 1689F: include/linux/cfag12864b.h 1690 1691CFG80211 and NL80211 1692M: Johannes Berg <johannes@sipsolutions.net> 1693L: linux-wireless@vger.kernel.org 1694S: Maintained 1695F: include/linux/nl80211.h 1696F: include/net/cfg80211.h 1697F: net/wireless/* 1698X: net/wireless/wext* 1699 1700CHECKPATCH 1701M: Andy Whitcroft <apw@canonical.com> 1702S: Supported 1703F: scripts/checkpatch.pl 1704 1705CHINESE DOCUMENTATION 1706M: Harry Wei <harryxiyou@gmail.com> 1707L: xiyoulinuxkernelgroup@googlegroups.com 1708L: linux-kernel@zh-kernel.org (moderated for non-subscribers) 1709S: Maintained 1710F: Documentation/zh_CN/ 1711 1712CISCO VIC ETHERNET NIC DRIVER 1713M: Vasanthy Kolluri <vkolluri@cisco.com> 1714M: Roopa Prabhu <roprabhu@cisco.com> 1715M: David Wang <dwang2@cisco.com> 1716S: Supported 1717F: drivers/net/enic/ 1718 1719CIRRUS LOGIC EP93XX ETHERNET DRIVER 1720M: Lennert Buytenhek <kernel@wantstofly.org> 1721L: netdev@vger.kernel.org 1722S: Maintained 1723F: drivers/net/arm/ep93xx_eth.c 1724 1725CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER 1726M: Lennert Buytenhek <kernel@wantstofly.org> 1727L: linux-usb@vger.kernel.org 1728S: Maintained 1729F: drivers/usb/host/ohci-ep93xx.c 1730 1731CIRRUS LOGIC CS4270 SOUND DRIVER 1732M: Timur Tabi <timur@freescale.com> 1733L: alsa-devel@alsa-project.org (moderated for non-subscribers) 1734S: Supported 1735F: sound/soc/codecs/cs4270* 1736 1737CLK API 1738M: Russell King <linux@arm.linux.org.uk> 1739F: include/linux/clk.h 1740 1741CISCO FCOE HBA DRIVER 1742M: Abhijeet Joglekar <abjoglek@cisco.com> 1743M: Joe Eykholt <jeykholt@cisco.com> 1744L: linux-scsi@vger.kernel.org 1745S: Supported 1746F: drivers/scsi/fnic/ 1747 1748CMPC ACPI DRIVER 1749M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> 1750M: Daniel Oliveira Nascimento <don@syst.com.br> 1751L: platform-driver-x86@vger.kernel.org 1752S: Supported 1753F: drivers/platform/x86/classmate-laptop.c 1754 1755COCCINELLE/Semantic Patches (SmPL) 1756M: Julia Lawall <julia@diku.dk> 1757M: Gilles Muller <Gilles.Muller@lip6.fr> 1758M: Nicolas Palix <npalix.work@gmail.com> 1759L: cocci@diku.dk (moderated for non-subscribers) 1760W: http://coccinelle.lip6.fr/ 1761S: Supported 1762F: scripts/coccinelle/ 1763F: scripts/coccicheck 1764 1765CODA FILE SYSTEM 1766M: Jan Harkes <jaharkes@cs.cmu.edu> 1767M: coda@cs.cmu.edu 1768L: codalist@coda.cs.cmu.edu 1769W: http://www.coda.cs.cmu.edu/ 1770S: Maintained 1771F: Documentation/filesystems/coda.txt 1772F: fs/coda/ 1773F: include/linux/coda*.h 1774 1775COMMON INTERNET FILE SYSTEM (CIFS) 1776M: Steve French <sfrench@samba.org> 1777L: linux-cifs@vger.kernel.org 1778L: samba-technical@lists.samba.org (moderated for non-subscribers) 1779W: http://linux-cifs.samba.org/ 1780Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/ 1781T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git 1782S: Supported 1783F: Documentation/filesystems/cifs.txt 1784F: fs/cifs/ 1785 1786COMPACTPCI HOTPLUG CORE 1787M: Scott Murray <scott@spiteful.org> 1788L: linux-pci@vger.kernel.org 1789S: Maintained 1790F: drivers/pci/hotplug/cpci_hotplug* 1791 1792COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER 1793M: Scott Murray <scott@spiteful.org> 1794L: linux-pci@vger.kernel.org 1795S: Maintained 1796F: drivers/pci/hotplug/cpcihp_zt5550.* 1797 1798COMPACTPCI HOTPLUG GENERIC DRIVER 1799M: Scott Murray <scott@spiteful.org> 1800L: linux-pci@vger.kernel.org 1801S: Maintained 1802F: drivers/pci/hotplug/cpcihp_generic.c 1803 1804COMPAL LAPTOP SUPPORT 1805M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> 1806L: platform-driver-x86@vger.kernel.org 1807S: Maintained 1808F: drivers/platform/x86/compal-laptop.c 1809 1810COMPUTONE INTELLIPORT MULTIPORT CARD 1811M: "Michael H. Warfield" <mhw@wittsend.com> 1812W: http://www.wittsend.com/computone.html 1813S: Maintained 1814F: Documentation/serial/computone.txt 1815F: drivers/char/ip2/ 1816 1817CONEXANT ACCESSRUNNER USB DRIVER 1818M: Simon Arlott <cxacru@fire.lp0.eu> 1819L: accessrunner-general@lists.sourceforge.net 1820W: http://accessrunner.sourceforge.net/ 1821S: Maintained 1822F: drivers/usb/atm/cxacru.c 1823 1824CONFIGFS 1825M: Joel Becker <jlbec@evilplan.org> 1826T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git 1827S: Supported 1828F: fs/configfs/ 1829F: include/linux/configfs.h 1830 1831CONNECTOR 1832M: Evgeniy Polyakov <zbr@ioremap.net> 1833L: netdev@vger.kernel.org 1834S: Maintained 1835F: drivers/connector/ 1836 1837CONTROL GROUPS (CGROUPS) 1838M: Paul Menage <menage@google.com> 1839M: Li Zefan <lizf@cn.fujitsu.com> 1840L: containers@lists.linux-foundation.org 1841S: Maintained 1842F: include/linux/cgroup* 1843F: kernel/cgroup* 1844F: mm/*cgroup* 1845 1846CORETEMP HARDWARE MONITORING DRIVER 1847M: Fenghua Yu <fenghua.yu@intel.com> 1848L: lm-sensors@lm-sensors.org 1849S: Maintained 1850F: Documentation/hwmon/coretemp 1851F: drivers/hwmon/coretemp.c 1852 1853COSA/SRP SYNC SERIAL DRIVER 1854M: Jan "Yenya" Kasprzak <kas@fi.muni.cz> 1855W: http://www.fi.muni.cz/~kas/cosa/ 1856S: Maintained 1857F: drivers/net/wan/cosa* 1858 1859CPMAC ETHERNET DRIVER 1860M: Florian Fainelli <florian@openwrt.org> 1861L: netdev@vger.kernel.org 1862S: Maintained 1863F: drivers/net/cpmac.c 1864 1865CPU FREQUENCY DRIVERS 1866M: Dave Jones <davej@redhat.com> 1867L: cpufreq@vger.kernel.org 1868W: http://www.codemonkey.org.uk/projects/cpufreq/ 1869T: git git://git.kernel.org/pub/scm/linux/kernel/git/davej/cpufreq.git 1870S: Maintained 1871F: arch/x86/kernel/cpu/cpufreq/ 1872F: drivers/cpufreq/ 1873F: include/linux/cpufreq.h 1874 1875CPUID/MSR DRIVER 1876M: "H. Peter Anvin" <hpa@zytor.com> 1877S: Maintained 1878F: arch/x86/kernel/cpuid.c 1879F: arch/x86/kernel/msr.c 1880 1881CPUSETS 1882M: Paul Menage <menage@google.com> 1883W: http://www.bullopensource.org/cpuset/ 1884W: http://oss.sgi.com/projects/cpusets/ 1885S: Supported 1886F: Documentation/cgroups/cpusets.txt 1887F: include/linux/cpuset.h 1888F: kernel/cpuset.c 1889 1890CRAMFS FILESYSTEM 1891W: http://sourceforge.net/projects/cramfs/ 1892S: Orphan 1893F: Documentation/filesystems/cramfs.txt 1894F: fs/cramfs/ 1895 1896CRIS PORT 1897M: Mikael Starvik <starvik@axis.com> 1898M: Jesper Nilsson <jesper.nilsson@axis.com> 1899L: linux-cris-kernel@axis.com 1900W: http://developer.axis.com 1901S: Maintained 1902F: arch/cris/ 1903F: drivers/tty/serial/crisv10.* 1904 1905CRYPTO API 1906M: Herbert Xu <herbert@gondor.apana.org.au> 1907M: "David S. Miller" <davem@davemloft.net> 1908L: linux-crypto@vger.kernel.org 1909T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git 1910S: Maintained 1911F: Documentation/crypto/ 1912F: arch/*/crypto/ 1913F: crypto/ 1914F: drivers/crypto/ 1915F: include/crypto/ 1916 1917CRYPTOGRAPHIC RANDOM NUMBER GENERATOR 1918M: Neil Horman <nhorman@tuxdriver.com> 1919L: linux-crypto@vger.kernel.org 1920S: Maintained 1921F: crypto/ansi_cprng.c 1922F: crypto/rng.c 1923 1924CS5535 Audio ALSA driver 1925M: Jaya Kumar <jayakumar.alsa@gmail.com> 1926S: Maintained 1927F: sound/pci/cs5535audio/ 1928 1929CX18 VIDEO4LINUX DRIVER 1930M: Andy Walls <awalls@md.metrocast.net> 1931L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) 1932L: linux-media@vger.kernel.org 1933T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 1934W: http://linuxtv.org 1935W: http://www.ivtvdriver.org/index.php/Cx18 1936S: Maintained 1937F: Documentation/video4linux/cx18.txt 1938F: drivers/media/video/cx18/ 1939 1940CXGB3 ETHERNET DRIVER (CXGB3) 1941M: Divy Le Ray <divy@chelsio.com> 1942L: netdev@vger.kernel.org 1943W: http://www.chelsio.com 1944S: Supported 1945F: drivers/net/cxgb3/ 1946 1947CXGB3 IWARP RNIC DRIVER (IW_CXGB3) 1948M: Steve Wise <swise@chelsio.com> 1949L: linux-rdma@vger.kernel.org 1950W: http://www.openfabrics.org 1951S: Supported 1952F: drivers/infiniband/hw/cxgb3/ 1953 1954CXGB4 ETHERNET DRIVER (CXGB4) 1955M: Dimitris Michailidis <dm@chelsio.com> 1956L: netdev@vger.kernel.org 1957W: http://www.chelsio.com 1958S: Supported 1959F: drivers/net/cxgb4/ 1960 1961CXGB4 IWARP RNIC DRIVER (IW_CXGB4) 1962M: Steve Wise <swise@chelsio.com> 1963L: linux-rdma@vger.kernel.org 1964W: http://www.openfabrics.org 1965S: Supported 1966F: drivers/infiniband/hw/cxgb4/ 1967 1968CXGB4VF ETHERNET DRIVER (CXGB4VF) 1969M: Casey Leedom <leedom@chelsio.com> 1970L: netdev@vger.kernel.org 1971W: http://www.chelsio.com 1972S: Supported 1973F: drivers/net/cxgb4vf/ 1974 1975STMMAC ETHERNET DRIVER 1976M: Giuseppe Cavallaro <peppe.cavallaro@st.com> 1977L: netdev@vger.kernel.org 1978W: http://www.stlinux.com 1979S: Supported 1980F: drivers/net/stmmac/ 1981 1982CYBERPRO FB DRIVER 1983M: Russell King <linux@arm.linux.org.uk> 1984L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 1985W: http://www.arm.linux.org.uk/ 1986S: Maintained 1987F: drivers/video/cyber2000fb.* 1988 1989CYCLADES 2X SYNC CARD DRIVER 1990M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 1991W: http://oops.ghostprotocols.net:81/blog 1992S: Maintained 1993F: drivers/net/wan/cycx* 1994 1995CYCLADES ASYNC MUX DRIVER 1996W: http://www.cyclades.com/ 1997S: Orphan 1998F: drivers/char/cyclades.c 1999F: include/linux/cyclades.h 2000
2001CYCLADES PC300 DRIVER 2002W: http://www.cyclades.com/ 2003S: Orphan 2004F: drivers/net/wan/pc300* 2005 2006DAMA SLAVE for AX.25 2007M: Joerg Reuter <jreuter@yaina.de> 2008W: http://yaina.de/jreuter/ 2009W: http://www.qsl.net/dl1bke/ 2010L: linux-hams@vger.kernel.org 2011S: Maintained 2012F: net/ax25/af_ax25.c 2013F: net/ax25/ax25_dev.c 2014F: net/ax25/ax25_ds_* 2015F: net/ax25/ax25_in.c 2016F: net/ax25/ax25_out.c 2017F: net/ax25/ax25_timer.c 2018F: net/ax25/sysctl_net_ax25.c 2019 2020DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER 2021M: Tobias Ringstrom <tori@unhappy.mine.nu> 2022L: netdev@vger.kernel.org 2023S: Maintained 2024F: Documentation/networking/dmfe.txt 2025F: drivers/net/tulip/dmfe.c 2026 2027DC390/AM53C974 SCSI driver 2028M: Kurt Garloff <garloff@suse.de> 2029W: http://www.garloff.de/kurt/linux/dc390/ 2030M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 2031S: Maintained 2032F: drivers/scsi/tmscsim.* 2033 2034DC395x SCSI driver 2035M: Oliver Neukum <oliver@neukum.name> 2036M: Ali Akcaagac <aliakc@web.de> 2037M: Jamie Lenehan <lenehan@twibble.org> 2038W: http://twibble.org/dist/dc395x/ 2039L: dc395x@twibble.org 2040L: http://lists.twibble.org/mailman/listinfo/dc395x/ 2041S: Maintained 2042F: Documentation/scsi/dc395x.txt 2043F: drivers/scsi/dc395x.* 2044 2045DCCP PROTOCOL 2046M: Gerrit Renker <gerrit@erg.abdn.ac.uk> 2047L: dccp@vger.kernel.org 2048W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp 2049S: Maintained 2050F: include/linux/dccp.h 2051F: include/linux/tfrc.h 2052F: net/dccp/ 2053 2054DECnet NETWORK LAYER 2055W: http://linux-decnet.sourceforge.net 2056L: linux-decnet-user@lists.sourceforge.net 2057S: Orphan 2058F: Documentation/networking/decnet.txt 2059F: net/decnet/ 2060 2061DEFXX FDDI NETWORK DRIVER 2062M: "Maciej W. Rozycki" <macro@linux-mips.org> 2063S: Maintained 2064F: drivers/net/defxx.* 2065 2066DELL LAPTOP DRIVER 2067M: Matthew Garrett <mjg59@srcf.ucam.org> 2068L: platform-driver-x86@vger.kernel.org 2069S: Maintained 2070F: drivers/platform/x86/dell-laptop.c 2071 2072DELL LAPTOP SMM DRIVER 2073M: Massimo Dal Zotto <dz@debian.org> 2074W: http://www.debian.org/~dz/i8k/ 2075S: Maintained 2076F: drivers/char/i8k.c 2077F: include/linux/i8k.h 2078 2079DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas) 2080M: Doug Warzecha <Douglas_Warzecha@dell.com> 2081S: Maintained 2082F: Documentation/dcdbas.txt 2083F: drivers/firmware/dcdbas.* 2084 2085DELL WMI EXTRAS DRIVER 2086M: Matthew Garrett <mjg59@srcf.ucam.org> 2087S: Maintained 2088F: drivers/platform/x86/dell-wmi.c 2089 2090DEVICE NUMBER REGISTRY 2091M: Torben Mathiasen <device@lanana.org> 2092W: http://lanana.org/docs/device-list/index.html 2093S: Maintained 2094 2095DEVICE-MAPPER (LVM) 2096P: Alasdair Kergon 2097L: dm-devel@redhat.com 2098W: http://sources.redhat.com/dm 2099Q: http://patchwork.kernel.org/project/dm-devel/list/ 2100S: Maintained 2101F: Documentation/device-mapper/ 2102F: drivers/md/dm* 2103F: include/linux/device-mapper.h 2104F: include/linux/dm-*.h 2105 2106DIGI INTL. EPCA DRIVER 2107M: "Digi International, Inc" <Eng.Linux@digi.com> 2108L: Eng.Linux@digi.com 2109W: http://www.digi.com 2110S: Orphan 2111F: Documentation/serial/digiepca.txt 2112F: drivers/char/epca* 2113F: drivers/char/digi* 2114 2115DIRECTORY NOTIFICATION (DNOTIFY) 2116M: Eric Paris <eparis@parisplace.org> 2117S: Maintained 2118F: Documentation/filesystems/dnotify.txt 2119F: fs/notify/dnotify/ 2120F: include/linux/dnotify.h 2121 2122DISK GEOMETRY AND PARTITION HANDLING 2123M: Andries Brouwer <aeb@cwi.nl> 2124W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html 2125W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html 2126W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html 2127S: Maintained 2128 2129DISKQUOTA 2130M: Jan Kara <jack@suse.cz> 2131S: Maintained 2132F: Documentation/filesystems/quota.txt 2133F: fs/quota/ 2134F: include/linux/quota*.h 2135 2136DISTRIBUTED LOCK MANAGER (DLM) 2137M: Christine Caulfield <ccaulfie@redhat.com> 2138M: David Teigland <teigland@redhat.com> 2139L: cluster-devel@redhat.com 2140W: http://sources.redhat.com/cluster/ 2141T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git 2142S: Supported 2143F: fs/dlm/ 2144 2145DMA GENERIC OFFLOAD ENGINE SUBSYSTEM 2146M: Vinod Koul <vinod.koul@intel.com> 2147M: Dan Williams <dan.j.williams@intel.com> 2148S: Supported 2149F: drivers/dma/ 2150F: include/linux/dma* 2151 2152DME1737 HARDWARE MONITOR DRIVER 2153M: Juerg Haefliger <juergh@gmail.com> 2154L: lm-sensors@lm-sensors.org 2155S: Maintained 2156F: Documentation/hwmon/dme1737 2157F: drivers/hwmon/dme1737.c 2158 2159DOCBOOK FOR DOCUMENTATION 2160M: Randy Dunlap <rdunlap@xenotime.net> 2161S: Maintained 2162F: scripts/kernel-doc 2163 2164DOCKING STATION DRIVER 2165M: Shaohua Li <shaohua.li@intel.com> 2166L: linux-acpi@vger.kernel.org 2167S: Supported 2168F: drivers/acpi/dock.c 2169 2170DOCUMENTATION 2171M: Randy Dunlap <rdunlap@xenotime.net> 2172L: linux-doc@vger.kernel.org 2173T: quilt oss.oracle.com/~rdunlap/kernel-doc-patches/current/ 2174S: Maintained 2175F: Documentation/ 2176 2177DOUBLETALK DRIVER 2178M: "James R. Van Zandt" <jrv@vanzandt.mv.com> 2179L: blinux-list@redhat.com 2180S: Maintained 2181F: drivers/char/dtlk.c 2182F: include/linux/dtlk.h 2183 2184DPT_I2O SCSI RAID DRIVER 2185M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 2186L: linux-scsi@vger.kernel.org 2187W: http://www.adaptec.com/ 2188S: Maintained 2189F: drivers/scsi/dpt* 2190F: drivers/scsi/dpt/ 2191 2192DRBD DRIVER 2193P: Philipp Reisner 2194P: Lars Ellenberg 2195M: drbd-dev@lists.linbit.com 2196L: drbd-user@lists.linbit.com 2197W: http://www.drbd.org 2198T: git git://git.drbd.org/linux-2.6-drbd.git drbd 2199T: git git://git.drbd.org/drbd-8.3.git 2200S: Supported 2201F: drivers/block/drbd/ 2202F: lib/lru_cache.c 2203F: Documentation/blockdev/drbd/ 2204 2205DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS 2206M: Greg Kroah-Hartman <gregkh@suse.de> 2207T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core-2.6.git 2208S: Supported 2209F: Documentation/kobject.txt 2210F: drivers/base/ 2211F: fs/sysfs/ 2212F: fs/debugfs/ 2213F: include/linux/kobj* 2214F: include/linux/debugfs.h 2215F: lib/kobj* 2216 2217DRM DRIVERS 2218M: David Airlie <airlied@linux.ie> 2219L: dri-devel@lists.freedesktop.org 2220T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git 2221S: Maintained 2222F: drivers/gpu/drm/ 2223F: include/drm/ 2224 2225INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets) 2226M: Chris Wilson <chris@chris-wilson.co.uk> 2227L: intel-gfx@lists.freedesktop.org (subscribers-only) 2228L: dri-devel@lists.freedesktop.org 2229T: git git://git.kernel.org/pub/scm/linux/kernel/git/ickle/drm-intel.git 2230S: Supported 2231F: drivers/gpu/drm/i915 2232F: include/drm/i915* 2233 2234DSCC4 DRIVER 2235M: Francois Romieu <romieu@fr.zoreil.com> 2236L: netdev@vger.kernel.org 2237S: Maintained 2238F: drivers/net/wan/dscc4.c 2239 2240DZ DECSTATION DZ11 SERIAL DRIVER 2241M: "Maciej W. Rozycki" <macro@linux-mips.org> 2242S: Maintained 2243F: drivers/tty/serial/dz.* 2244 2245EATA-DMA SCSI DRIVER 2246M: Michael Neuffer <mike@i-Connect.Net> 2247L: linux-eata@i-connect.net 2248L: linux-scsi@vger.kernel.org 2249S: Maintained 2250F: drivers/scsi/eata* 2251 2252EATA ISA/EISA/PCI SCSI DRIVER 2253M: Dario Ballabio <ballabio_dario@emc.com> 2254L: linux-scsi@vger.kernel.org 2255S: Maintained 2256F: drivers/scsi/eata.c 2257 2258EATA-PIO SCSI DRIVER 2259M: Michael Neuffer <mike@i-Connect.Net> 2260L: linux-eata@i-connect.net 2261L: linux-scsi@vger.kernel.org 2262S: Maintained 2263F: drivers/scsi/eata_pio.* 2264 2265EBTABLES 2266M: Bart De Schuymer <bart.de.schuymer@pandora.be> 2267L: ebtables-user@lists.sourceforge.net 2268L: ebtables-devel@lists.sourceforge.net 2269W: http://ebtables.sourceforge.net/ 2270S: Maintained 2271F: include/linux/netfilter_bridge/ebt_*.h 2272F: net/bridge/netfilter/ebt*.c 2273 2274ECRYPT FILE SYSTEM 2275M: Tyler Hicks <tyhicks@linux.vnet.ibm.com> 2276M: Dustin Kirkland <kirkland@canonical.com> 2277L: ecryptfs-devel@lists.launchpad.net 2278W: https://launchpad.net/ecryptfs 2279S: Supported 2280F: Documentation/filesystems/ecryptfs.txt 2281F: fs/ecryptfs/ 2282 2283EDAC-CORE 2284M: Doug Thompson <dougthompson@xmission.com> 2285L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2286W: bluesmoke.sourceforge.net 2287S: Supported 2288F: Documentation/edac.txt 2289F: drivers/edac/edac_* 2290F: include/linux/edac.h 2291 2292EDAC-AMD64 2293M: Doug Thompson <dougthompson@xmission.com> 2294M: Borislav Petkov <borislav.petkov@amd.com> 2295L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2296W: bluesmoke.sourceforge.net 2297S: Supported 2298F: drivers/edac/amd64_edac* 2299 2300EDAC-E752X 2301M: Mark Gross <mark.gross@intel.com> 2302M: Doug Thompson <dougthompson@xmission.com> 2303L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2304W: bluesmoke.sourceforge.net 2305S: Maintained 2306F: drivers/edac/e752x_edac.c 2307 2308EDAC-E7XXX 2309M: Doug Thompson <dougthompson@xmission.com> 2310L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2311W: bluesmoke.sourceforge.net 2312S: Maintained 2313F: drivers/edac/e7xxx_edac.c 2314 2315EDAC-I82443BXGX 2316M: Tim Small <tim@buttersideup.com> 2317L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2318W: bluesmoke.sourceforge.net 2319S: Maintained 2320F: drivers/edac/i82443bxgx_edac.c 2321 2322EDAC-I3000 2323M: Jason Uhlenkott <juhlenko@akamai.com> 2324L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2325W: bluesmoke.sourceforge.net 2326S: Maintained 2327F: drivers/edac/i3000_edac.c 2328 2329EDAC-I5000 2330M: Doug Thompson <dougthompson@xmission.com> 2331L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2332W: bluesmoke.sourceforge.net 2333S: Maintained 2334F: drivers/edac/i5000_edac.c 2335 2336EDAC-I5400 2337M: Mauro Carvalho Chehab <mchehab@redhat.com> 2338L: linux-edac@vger.kernel.org 2339W: bluesmoke.sourceforge.net 2340S: Maintained 2341F: drivers/edac/i5400_edac.c 2342 2343EDAC-I7300 2344M: Mauro Carvalho Chehab <mchehab@redhat.com> 2345L: linux-edac@vger.kernel.org 2346W: bluesmoke.sourceforge.net 2347S: Maintained 2348F: drivers/edac/i7300_edac.c 2349 2350EDAC-I7CORE 2351M: Mauro Carvalho Chehab <mchehab@redhat.com> 2352L: linux-edac@vger.kernel.org 2353W: bluesmoke.sourceforge.net 2354S: Maintained 2355F: drivers/edac/i7core_edac.c 2356F: drivers/edac/edac_mce.c 2357F: include/linux/edac_mce.h 2358 2359EDAC-I82975X 2360M: Ranganathan Desikan <ravi@jetztechnologies.com> 2361M: "Arvind R." <arvind@jetztechnologies.com> 2362L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2363W: bluesmoke.sourceforge.net 2364S: Maintained 2365F: drivers/edac/i82975x_edac.c 2366 2367EDAC-PASEMI 2368M: Egor Martovetsky <egor@pasemi.com> 2369L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2370W: bluesmoke.sourceforge.net 2371S: Maintained 2372F: drivers/edac/pasemi_edac.c 2373 2374EDAC-R82600 2375M: Tim Small <tim@buttersideup.com> 2376L: bluesmoke-devel@lists.sourceforge.net (moderated for non-subscribers) 2377W: bluesmoke.sourceforge.net 2378S: Maintained 2379F: drivers/edac/r82600_edac.c 2380 2381EDIROL UA-101/UA-1000 DRIVER 2382M: Clemens Ladisch <clemens@ladisch.de> 2383L: alsa-devel@alsa-project.org (moderated for non-subscribers) 2384T: git git://git.alsa-project.org/alsa-kernel.git 2385S: Maintained 2386F: sound/usb/misc/ua101.c 2387 2388EEEPC LAPTOP EXTRAS DRIVER 2389M: Corentin Chary <corentincj@iksaif.net> 2390L: acpi4asus-user@lists.sourceforge.net 2391L: platform-driver-x86@vger.kernel.org 2392W: http://acpi4asus.sf.net 2393S: Maintained 2394F: drivers/platform/x86/eeepc-laptop.c 2395 2396EEEPC WMI EXTRAS DRIVER 2397M: Corentin Chary <corentincj@iksaif.net> 2398L: acpi4asus-user@lists.sourceforge.net 2399L: platform-driver-x86@vger.kernel.org 2400W: http://acpi4asus.sf.net 2401S: Maintained 2402F: drivers/platform/x86/eeepc-wmi.c 2403 2404EFIFB FRAMEBUFFER DRIVER 2405L: linux-fbdev@vger.kernel.org 2406M: Peter Jones <pjones@redhat.com> 2407S: Maintained 2408F: drivers/video/efifb.c 2409 2410EFS FILESYSTEM 2411W: http://aeschi.ch.eu.org/efs/ 2412S: Orphan 2413F: fs/efs/ 2414 2415EHCA (IBM GX bus InfiniBand adapter) DRIVER 2416M: Hoang-Nam Nguyen <hnguyen@de.ibm.com> 2417M: Christoph Raisch <raisch@de.ibm.com> 2418L: linux-rdma@vger.kernel.org 2419S: Supported 2420F: drivers/infiniband/hw/ehca/ 2421 2422EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER 2423M: Breno Leitao <leitao@linux.vnet.ibm.com> 2424L: netdev@vger.kernel.org 2425S: Maintained 2426F: drivers/net/ehea/ 2427 2428EMBEDDED LINUX 2429M: Paul Gortmaker <paul.gortmaker@windriver.com> 2430M: Matt Mackall <mpm@selenic.com> 2431M: David Woodhouse <dwmw2@infradead.org> 2432L: linux-embedded@vger.kernel.org 2433S: Maintained 2434 2435EMULEX LPFC FC SCSI DRIVER 2436M: James Smart <james.smart@emulex.com> 2437L: linux-scsi@vger.kernel.org 2438W: http://sourceforge.net/projects/lpfcxxxx 2439S: Supported 2440F: drivers/scsi/lpfc/ 2441 2442ENE CB710 FLASH CARD READER DRIVER 2443M: Michał Mirosław <mirq-linux@rere.qmqm.pl> 2444S: Maintained 2445F: drivers/misc/cb710/ 2446F: drivers/mmc/host/cb710-mmc.* 2447F: include/linux/cb710.h 2448 2449ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER 2450M: Maxim Levitsky <maximlevitsky@gmail.com> 2451S: Maintained 2452F: drivers/media/IR/ene_ir.c 2453F: drivers/media/IR/ene_ir.h 2454 2455EPSON 1355 FRAMEBUFFER DRIVER 2456M: Christopher Hoover <ch@murgatroid.com> 2457M: Christopher Hoover <ch@hpl.hp.com> 2458S: Maintained 2459F: drivers/video/epson1355fb.c 2460 2461EPSON S1D13XXX FRAMEBUFFER DRIVER 2462M: Kristoffer Ericson <kristoffer.ericson@gmail.com> 2463S: Maintained 2464T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git 2465F: drivers/video/s1d13xxxfb.c 2466F: include/video/s1d13xxxfb.h 2467 2468ETHEREXPRESS-16 NETWORK DRIVER 2469M: Philip Blundell <philb@gnu.org> 2470L: netdev@vger.kernel.org 2471S: Maintained 2472F: drivers/net/eexpress.* 2473 2474ETHERNET BRIDGE 2475M: Stephen Hemminger <shemminger@linux-foundation.org> 2476L: bridge@lists.linux-foundation.org 2477L: netdev@vger.kernel.org 2478W: http://www.linuxfoundation.org/en/Net:Bridge 2479S: Maintained 2480F: include/linux/netfilter_bridge/ 2481F: net/bridge/ 2482 2483ETHERTEAM 16I DRIVER 2484M: Mika Kuoppala <miku@iki.fi> 2485S: Maintained 2486F: drivers/net/eth16i.c 2487 2488EXT2 FILE SYSTEM 2489M: Jan Kara <jack@suse.cz> 2490L: linux-ext4@vger.kernel.org 2491S: Maintained 2492F: Documentation/filesystems/ext2.txt 2493F: fs/ext2/ 2494F: include/linux/ext2* 2495 2496EXT3 FILE SYSTEM 2497M: Jan Kara <jack@suse.cz> 2498M: Andrew Morton <akpm@linux-foundation.org> 2499M: Andreas Dilger <adilger.kernel@dilger.ca> 2500L: linux-ext4@vger.kernel.org 2501S: Maintained 2502F: Documentation/filesystems/ext3.txt 2503F: fs/ext3/ 2504F: include/linux/ext3* 2505 2506EXT4 FILE SYSTEM 2507M: "Theodore Ts'o" <tytso@mit.edu> 2508M: Andreas Dilger <adilger.kernel@dilger.ca> 2509L: linux-ext4@vger.kernel.org 2510W: http://ext4.wiki.kernel.org 2511Q: http://patchwork.ozlabs.org/project/linux-ext4/list/ 2512S: Maintained 2513F: Documentation/filesystems/ext4.txt 2514F: fs/ext4/ 2515 2516F71805F HARDWARE MONITORING DRIVER 2517M: Jean Delvare <khali@linux-fr.org> 2518L: lm-sensors@lm-sensors.org 2519S: Maintained 2520F: Documentation/hwmon/f71805f 2521F: drivers/hwmon/f71805f.c 2522 2523FANOTIFY 2524M: Eric Paris <eparis@redhat.com> 2525S: Maintained 2526F: fs/notify/fanotify/ 2527F: include/linux/fanotify.h 2528 2529FARSYNC SYNCHRONOUS DRIVER 2530M: Kevin Curtis <kevin.curtis@farsite.co.uk> 2531W: http://www.farsite.co.uk/ 2532S: Supported 2533F: drivers/net/wan/farsync.* 2534 2535FAULT INJECTION SUPPORT 2536M: Akinobu Mita <akinobu.mita@gmail.com> 2537S: Supported 2538F: Documentation/fault-injection/ 2539F: lib/fault-inject.c 2540 2541FCOE SUBSYSTEM (libfc, libfcoe, fcoe) 2542M: Robert Love <robert.w.love@intel.com> 2543L: devel@open-fcoe.org 2544W: www.Open-FCoE.org 2545S: Supported 2546F: drivers/scsi/libfc/ 2547F: drivers/scsi/fcoe/ 2548F: include/scsi/fc/ 2549F: include/scsi/libfc.h 2550F: include/scsi/libfcoe.h 2551 2552FILE LOCKING (flock() and fcntl()/lockf()) 2553M: Matthew Wilcox <matthew@wil.cx> 2554L: linux-fsdevel@vger.kernel.org 2555S: Maintained 2556F: include/linux/fcntl.h 2557F: include/linux/fs.h 2558F: fs/fcntl.c 2559F: fs/locks.c 2560 2561FILESYSTEMS (VFS and infrastructure) 2562M: Alexander Viro <viro@zeniv.linux.org.uk> 2563L: linux-fsdevel@vger.kernel.org 2564S: Maintained 2565F: fs/* 2566 2567FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER 2568M: Riku Voipio <riku.voipio@iki.fi> 2569L: lm-sensors@lm-sensors.org 2570S: Maintained 2571F: drivers/hwmon/f75375s.c 2572F: include/linux/f75375s.h 2573 2574FIREWIRE SUBSYSTEM 2575M: Stefan Richter <stefanr@s5r6.in-berlin.de> 2576L: linux1394-devel@lists.sourceforge.net 2577W: http://ieee1394.wiki.kernel.org/ 2578T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git 2579S: Maintained 2580F: drivers/firewire/ 2581F: include/linux/firewire*.h 2582F: tools/firewire/ 2583 2584FIRMWARE LOADER (request_firmware) 2585S: Orphan 2586F: Documentation/firmware_class/ 2587F: drivers/base/firmware*.c 2588F: include/linux/firmware.h 2589 2590FPU EMULATOR 2591M: Bill Metzenthen <billm@melbpc.org.au> 2592W: http://floatingpoint.sourceforge.net/emulator/index.html 2593S: Maintained 2594F: arch/x86/math-emu/ 2595 2596FRAME RELAY DLCI/FRAD (Sangoma drivers too) 2597M: Mike McLagan <mike.mclagan@linux.org> 2598L: netdev@vger.kernel.org 2599S: Maintained 2600F: drivers/net/wan/dlci.c 2601F: drivers/net/wan/sdla.c 2602 2603FRAMEBUFFER LAYER 2604L: linux-fbdev@vger.kernel.org 2605W: http://linux-fbdev.sourceforge.net/ 2606Q: http://patchwork.kernel.org/project/linux-fbdev/list/ 2607T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/fbdev-2.6.git 2608S: Orphan 2609F: Documentation/fb/ 2610F: drivers/video/ 2611F: include/video/ 2612F: include/linux/fb.h 2613 2614FREESCALE DMA DRIVER 2615M: Li Yang <leoli@freescale.com> 2616M: Zhang Wei <zw@zh-kernel.org> 2617L: linuxppc-dev@lists.ozlabs.org 2618S: Maintained 2619F: drivers/dma/fsldma.* 2620 2621FREESCALE I2C CPM DRIVER 2622M: Jochen Friedrich <jochen@scram.de> 2623L: linuxppc-dev@lists.ozlabs.org 2624L: linux-i2c@vger.kernel.org 2625S: Maintained 2626F: drivers/i2c/busses/i2c-cpm.c 2627 2628FREESCALE IMX / MXC FRAMEBUFFER DRIVER 2629M: Sascha Hauer <kernel@pengutronix.de> 2630L: linux-fbdev@vger.kernel.org 2631L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 2632S: Maintained 2633F: arch/arm/plat-mxc/include/mach/imxfb.h 2634F: drivers/video/imxfb.c 2635 2636FREESCALE SOC FS_ENET DRIVER 2637M: Pantelis Antoniou <pantelis.antoniou@gmail.com> 2638M: Vitaly Bordug <vbordug@ru.mvista.com> 2639L: linuxppc-dev@lists.ozlabs.org 2640L: netdev@vger.kernel.org 2641S: Maintained 2642F: drivers/net/fs_enet/ 2643F: include/linux/fs_enet_pd.h 2644 2645FREESCALE QUICC ENGINE LIBRARY 2646M: Timur Tabi <timur@freescale.com> 2647L: linuxppc-dev@lists.ozlabs.org 2648S: Supported 2649F: arch/powerpc/sysdev/qe_lib/ 2650F: arch/powerpc/include/asm/*qe.h 2651 2652FREESCALE USB PERIPHERAL DRIVERS 2653M: Li Yang <leoli@freescale.com> 2654L: linux-usb@vger.kernel.org 2655L: linuxppc-dev@lists.ozlabs.org 2656S: Maintained 2657F: drivers/usb/gadget/fsl* 2658 2659FREESCALE QUICC ENGINE UCC ETHERNET DRIVER 2660M: Li Yang <leoli@freescale.com> 2661L: netdev@vger.kernel.org 2662L: linuxppc-dev@lists.ozlabs.org 2663S: Maintained 2664F: drivers/net/ucc_geth* 2665 2666FREESCALE QUICC ENGINE UCC UART DRIVER 2667M: Timur Tabi <timur@freescale.com> 2668L: linuxppc-dev@lists.ozlabs.org 2669S: Supported 2670F: drivers/tty/serial/ucc_uart.c 2671 2672FREESCALE SOC SOUND DRIVERS 2673M: Timur Tabi <timur@freescale.com> 2674L: alsa-devel@alsa-project.org (moderated for non-subscribers) 2675L: linuxppc-dev@lists.ozlabs.org 2676S: Supported 2677F: sound/soc/fsl/fsl* 2678F: sound/soc/fsl/mpc8610_hpcd.c 2679 2680FREEVXFS FILESYSTEM 2681M: Christoph Hellwig <hch@infradead.org> 2682W: ftp://ftp.openlinux.org/pub/people/hch/vxfs 2683S: Maintained 2684F: fs/freevxfs/ 2685 2686FREEZER 2687M: Pavel Machek <pavel@ucw.cz> 2688M: "Rafael J. Wysocki" <rjw@sisk.pl> 2689L: linux-pm@lists.linux-foundation.org 2690S: Supported 2691F: Documentation/power/freezing-of-tasks.txt 2692F: include/linux/freezer.h 2693F: kernel/freezer.c 2694 2695FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS 2696M: David Howells <dhowells@redhat.com> 2697L: linux-cachefs@redhat.com 2698S: Supported 2699F: Documentation/filesystems/caching/ 2700F: fs/fscache/ 2701F: include/linux/fscache*.h 2702 2703FUJITSU FR-V (FRV) PORT 2704M: David Howells <dhowells@redhat.com> 2705S: Maintained 2706F: arch/frv/ 2707 2708FUJITSU LAPTOP EXTRAS 2709M: Jonathan Woithe <jwoithe@physics.adelaide.edu.au> 2710L: platform-driver-x86@vger.kernel.org 2711S: Maintained 2712F: drivers/platform/x86/fujitsu-laptop.c 2713 2714FUSE: FILESYSTEM IN USERSPACE 2715M: Miklos Szeredi <miklos@szeredi.hu> 2716L: fuse-devel@lists.sourceforge.net 2717W: http://fuse.sourceforge.net/ 2718S: Maintained 2719F: fs/fuse/ 2720F: include/linux/fuse.h 2721 2722FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit) 2723M: Rik Faith <faith@cs.unc.edu> 2724L: linux-scsi@vger.kernel.org 2725S: Odd Fixes (e.g., new signatures) 2726F: drivers/scsi/fdomain.* 2727 2728GDT SCSI DISK ARRAY CONTROLLER DRIVER 2729M: Achim Leubner <achim_leubner@adaptec.com> 2730L: linux-scsi@vger.kernel.org 2731W: http://www.icp-vortex.com/ 2732S: Supported 2733F: drivers/scsi/gdt* 2734 2735GENERIC GPIO I2C DRIVER 2736M: Haavard Skinnemoen <hskinnemoen@gmail.com> 2737S: Supported 2738F: drivers/i2c/busses/i2c-gpio.c 2739F: include/linux/i2c-gpio.h 2740 2741GENERIC GPIO I2C MULTIPLEXER DRIVER 2742M: Peter Korsgaard <peter.korsgaard@barco.com> 2743L: linux-i2c@vger.kernel.org 2744S: Supported 2745F: drivers/i2c/muxes/gpio-i2cmux.c 2746F: include/linux/gpio-i2cmux.h 2747F: Documentation/i2c/muxes/gpio-i2cmux 2748 2749GENERIC HDLC (WAN) DRIVERS 2750M: Krzysztof Halasa <khc@pm.waw.pl> 2751W: http://www.kernel.org/pub/linux/utils/net/hdlc/ 2752S: Maintained 2753F: drivers/net/wan/c101.c 2754F: drivers/net/wan/hd6457* 2755F: drivers/net/wan/hdlc* 2756F: drivers/net/wan/n2.c 2757F: drivers/net/wan/pc300too.c 2758F: drivers/net/wan/pci200syn.c 2759F: drivers/net/wan/wanxl* 2760 2761GENERIC INCLUDE/ASM HEADER FILES 2762M: Arnd Bergmann <arnd@arndb.de> 2763L: linux-arch@vger.kernel.org 2764T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git 2765S: Maintained 2766F: include/asm-generic 2767 2768GENERIC UIO DRIVER FOR PCI DEVICES 2769M: "Michael S. Tsirkin" <mst@redhat.com> 2770L: kvm@vger.kernel.org 2771S: Supported 2772F: drivers/uio/uio_pci_generic.c 2773 2774GFS2 FILE SYSTEM 2775M: Steven Whitehouse <swhiteho@redhat.com> 2776L: cluster-devel@redhat.com 2777W: http://sources.redhat.com/cluster/ 2778T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes.git 2779T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-nmw.git 2780S: Supported 2781F: Documentation/filesystems/gfs2*.txt 2782F: fs/gfs2/ 2783F: include/linux/gfs2_ondisk.h 2784 2785GIGASET ISDN DRIVERS 2786M: Hansjoerg Lipp <hjlipp@web.de> 2787M: Tilman Schmidt <tilman@imap.cc> 2788L: gigaset307x-common@lists.sourceforge.net 2789W: http://gigaset307x.sourceforge.net/ 2790S: Maintained 2791F: Documentation/isdn/README.gigaset 2792F: drivers/isdn/gigaset/ 2793F: include/linux/gigaset_dev.h 2794 2795GPIO SUBSYSTEM 2796M: Grant Likely <grant.likely@secretlab.ca> 2797L: linux-kernel@vger.kernel.org 2798S: Maintained 2799T: git git://git.secretlab.ca/git/linux-2.6.git 2800F: Documentation/gpio/gpio.txt 2801F: drivers/gpio/ 2802F: include/linux/gpio* 2803 2804GRETH 10/100/1G Ethernet MAC device driver 2805M: Kristoffer Glembo <kristoffer@gaisler.com> 2806L: netdev@vger.kernel.org 2807S: Maintained 2808F: drivers/net/greth* 2809 2810HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER 2811M: Frank Seidel <frank@f-seidel.de> 2812L: platform-driver-x86@vger.kernel.org 2813W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/ 2814S: Maintained 2815F: drivers/platform/x86/hdaps.c 2816 2817HWPOISON MEMORY FAILURE HANDLING 2818M: Andi Kleen <andi@firstfloor.org> 2819L: linux-mm@kvack.org 2820L: linux-kernel@vger.kernel.org 2821T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison 2822S: Maintained 2823F: mm/memory-failure.c 2824F: mm/hwpoison-inject.c 2825 2826HYPERVISOR VIRTUAL CONSOLE DRIVER 2827L: linuxppc-dev@lists.ozlabs.org 2828S: Odd Fixes 2829F: drivers/char/hvc_* 2830 2831iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER 2832M: Peter Jones <pjones@redhat.com> 2833M: Konrad Rzeszutek Wilk <konrad@kernel.org> 2834S: Maintained 2835F: drivers/firmware/iscsi_ibft* 2836 2837GSPCA FINEPIX SUBDRIVER 2838M: Frank Zago <frank@zago.net> 2839L: linux-media@vger.kernel.org 2840T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2841S: Maintained 2842F: drivers/media/video/gspca/finepix.c 2843 2844GSPCA GL860 SUBDRIVER 2845M: Olivier Lorin <o.lorin@laposte.net> 2846L: linux-media@vger.kernel.org 2847T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2848S: Maintained 2849F: drivers/media/video/gspca/gl860/ 2850 2851GSPCA M5602 SUBDRIVER 2852M: Erik Andren <erik.andren@gmail.com> 2853L: linux-media@vger.kernel.org 2854T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2855S: Maintained 2856F: drivers/media/video/gspca/m5602/ 2857 2858GSPCA PAC207 SONIXB SUBDRIVER 2859M: Hans de Goede <hdegoede@redhat.com> 2860L: linux-media@vger.kernel.org 2861T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2862S: Maintained 2863F: drivers/media/video/gspca/pac207.c 2864 2865GSPCA SN9C20X SUBDRIVER 2866M: Brian Johnson <brijohn@gmail.com> 2867L: linux-media@vger.kernel.org 2868T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2869S: Maintained 2870F: drivers/media/video/gspca/sn9c20x.c 2871 2872GSPCA T613 SUBDRIVER 2873M: Leandro Costantino <lcostantino@gmail.com> 2874L: linux-media@vger.kernel.org 2875T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2876S: Maintained 2877F: drivers/media/video/gspca/t613.c 2878 2879GSPCA USB WEBCAM DRIVER 2880M: Jean-Francois Moine <moinejf@free.fr> 2881W: http://moinejf.free.fr 2882L: linux-media@vger.kernel.org 2883T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 2884S: Maintained 2885F: drivers/media/video/gspca/ 2886 2887HARDWARE MONITORING 2888M: Jean Delvare <khali@linux-fr.org> 2889M: Guenter Roeck <guenter.roeck@ericsson.com> 2890L: lm-sensors@lm-sensors.org 2891W: http://www.lm-sensors.org/ 2892T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/ 2893T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git 2894S: Maintained 2895F: Documentation/hwmon/ 2896F: drivers/hwmon/ 2897F: include/linux/hwmon*.h 2898 2899HARDWARE RANDOM NUMBER GENERATOR CORE 2900M: Matt Mackall <mpm@selenic.com> 2901M: Herbert Xu <herbert@gondor.apana.org.au> 2902S: Odd fixes 2903F: Documentation/hw_random.txt 2904F: drivers/char/hw_random/ 2905F: include/linux/hw_random.h 2906 2907HARMONY SOUND DRIVER 2908M: Kyle McMartin <kyle@mcmartin.ca> 2909L: linux-parisc@vger.kernel.org 2910S: Maintained 2911F: sound/parisc/harmony.* 2912 2913HEWLETT-PACKARD SMART2 RAID DRIVER 2914M: Chirag Kantharia <chirag.kantharia@hp.com> 2915L: iss_storagedev@hp.com 2916S: Maintained 2917F: Documentation/blockdev/cpqarray.txt 2918F: drivers/block/cpqarray.* 2919 2920HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa) 2921M: Stephen M. Cameron <scameron@beardog.cce.hp.com> 2922L: iss_storagedev@hp.com 2923S: Supported 2924F: Documentation/scsi/hpsa.txt 2925F: drivers/scsi/hpsa*.[ch] 2926F: include/linux/cciss*.h 2927 2928HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss) 2929M: Mike Miller <mike.miller@hp.com> 2930L: iss_storagedev@hp.com 2931S: Supported 2932F: Documentation/blockdev/cciss.txt 2933F: drivers/block/cciss* 2934F: include/linux/cciss_ioctl.h 2935 2936HFS FILESYSTEM 2937M: Roman Zippel <zippel@linux-m68k.org> 2938S: Maintained 2939F: Documentation/filesystems/hfs.txt 2940F: fs/hfs/ 2941 2942HGA FRAMEBUFFER DRIVER 2943M: Ferenc Bakonyi <fero@drama.obuda.kando.hu> 2944L: linux-nvidia@lists.surfsouth.com 2945W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml 2946S: Maintained 2947F: drivers/video/hgafb.c 2948 2949HIBERNATION (aka Software Suspend, aka swsusp) 2950M: Pavel Machek <pavel@ucw.cz> 2951M: "Rafael J. Wysocki" <rjw@sisk.pl> 2952L: linux-pm@lists.linux-foundation.org 2953S: Supported 2954F: arch/x86/power/ 2955F: drivers/base/power/ 2956F: kernel/power/ 2957F: include/linux/suspend.h 2958F: include/linux/freezer.h 2959F: include/linux/pm.h 2960F: arch/*/include/asm/suspend*.h 2961 2962HID CORE LAYER 2963M: Jiri Kosina <jkosina@suse.cz> 2964L: linux-input@vger.kernel.org 2965T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git 2966S: Maintained 2967F: drivers/hid/ 2968F: include/linux/hid* 2969 2970HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS 2971M: Thomas Gleixner <tglx@linutronix.de> 2972S: Maintained 2973F: Documentation/timers/ 2974F: kernel/hrtimer.c 2975F: kernel/time/clockevents.c 2976F: kernel/time/tick*.* 2977F: kernel/time/timer_*.c 2978F include/linux/clockevents.h 2979F: include/linux/hrtimer.h 2980 2981HIGH-SPEED SCC DRIVER FOR AX.25 2982M: Klaus Kudielka <klaus.kudielka@ieee.org> 2983L: linux-hams@vger.kernel.org 2984W: http://www.nt.tuwien.ac.at/~kkudielk/Linux/ 2985S: Maintained 2986F: drivers/net/hamradio/dmascc.c 2987F: drivers/net/hamradio/scc.c 2988 2989HIGHPOINT ROCKETRAID 3xxx RAID DRIVER 2990M: HighPoint Linux Team <linux@highpoint-tech.com> 2991W: http://www.highpoint-tech.com 2992S: Supported 2993F: Documentation/scsi/hptiop.txt 2994F: drivers/scsi/hptiop.c 2995 2996HIPPI 2997M: Jes Sorensen <jes@trained-monkey.org> 2998L: linux-hippi@sunsite.dk 2999S: Maintained 3000F: include/linux/hippidevice.h
3001F: include/linux/if_hippi.h 3002F: net/802/hippi.c 3003 3004HOST AP DRIVER 3005M: Jouni Malinen <j@w1.fi> 3006L: hostap@shmoo.com (subscribers-only) 3007L: linux-wireless@vger.kernel.org 3008W: http://hostap.epitest.fi/ 3009S: Maintained 3010F: drivers/net/wireless/hostap/ 3011 3012HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER 3013M: Carlos Corbacho <carlos@strangeworlds.co.uk> 3014L: platform-driver-x86@vger.kernel.org 3015S: Odd Fixes 3016F: drivers/platform/x86/tc1100-wmi.c 3017 3018HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series 3019M: Jaroslav Kysela <perex@perex.cz> 3020S: Maintained 3021F: drivers/net/hp100.* 3022 3023HPET: High Precision Event Timers driver 3024M: Clemens Ladisch <clemens@ladisch.de> 3025S: Maintained 3026F: Documentation/timers/hpet.txt 3027F: drivers/char/hpet.c 3028F: include/linux/hpet.h 3029 3030HPET: x86 3031M: "Venkatesh Pallipadi (Venki)" <venki@google.com> 3032S: Maintained 3033F: arch/x86/kernel/hpet.c 3034F: arch/x86/include/asm/hpet.h 3035 3036HPFS FILESYSTEM 3037M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> 3038W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi 3039S: Maintained 3040F: fs/hpfs/ 3041 3042HSO 3G MODEM DRIVER 3043M: Jan Dumon <j.dumon@option.com> 3044W: http://www.pharscape.org 3045S: Maintained 3046F: drivers/net/usb/hso.c 3047 3048HTCPEN TOUCHSCREEN DRIVER 3049M: Pau Oliva Fora <pof@eslack.org> 3050L: linux-input@vger.kernel.org 3051S: Maintained 3052F: drivers/input/touchscreen/htcpen.c 3053 3054HUGETLB FILESYSTEM 3055M: William Irwin <wli@holomorphy.com> 3056S: Maintained 3057F: fs/hugetlbfs/ 3058 3059I2C/SMBUS STUB DRIVER 3060M: "Mark M. Hoffman" <mhoffman@lightlink.com> 3061L: linux-i2c@vger.kernel.org 3062S: Maintained 3063F: drivers/i2c/busses/i2c-stub.c 3064 3065I2C SUBSYSTEM 3066M: "Jean Delvare (PC drivers, core)" <khali@linux-fr.org> 3067M: "Ben Dooks (embedded platforms)" <ben-linux@fluff.org> 3068L: linux-i2c@vger.kernel.org 3069W: http://i2c.wiki.kernel.org/ 3070T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-i2c/ 3071T: git git://git.fluff.org/bjdooks/linux.git 3072S: Maintained 3073F: Documentation/i2c/ 3074F: drivers/i2c/ 3075F: include/linux/i2c.h 3076F: include/linux/i2c-*.h 3077 3078I2C-TINY-USB DRIVER 3079M: Till Harbaum <till@harbaum.org> 3080L: linux-i2c@vger.kernel.org 3081W: http://www.harbaum.org/till/i2c_tiny_usb 3082S: Maintained 3083F: drivers/i2c/busses/i2c-tiny-usb.c 3084 3085i386 BOOT CODE 3086M: "H. Peter Anvin" <hpa@zytor.com> 3087S: Maintained 3088F: arch/x86/boot/ 3089 3090i386 SETUP CODE / CPU ERRATA WORKAROUNDS 3091M: "H. Peter Anvin" <hpa@zytor.com> 3092T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git 3093S: Maintained 3094 3095IA64 (Itanium) PLATFORM 3096M: Tony Luck <tony.luck@intel.com> 3097M: Fenghua Yu <fenghua.yu@intel.com> 3098L: linux-ia64@vger.kernel.org 3099W: http://www.ia64-linux.org/ 3100T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6.git 3101S: Maintained 3102F: arch/ia64/ 3103 3104IBM MCA SCSI SUBSYSTEM DRIVER 3105M: Michael Lang <langa2@kph.uni-mainz.de> 3106W: http://www.uni-mainz.de/~langm000/linux.html 3107S: Maintained 3108F: drivers/scsi/ibmmca.c 3109 3110IBM Power Linux RAID adapter 3111M: Brian King <brking@us.ibm.com> 3112S: Supported 3113F: drivers/scsi/ipr.* 3114 3115IBM Power Virtual Ethernet Device Driver 3116M: Santiago Leon <santil@linux.vnet.ibm.com> 3117L: netdev@vger.kernel.org 3118S: Supported 3119F: drivers/net/ibmveth.* 3120 3121IBM ServeRAID RAID DRIVER 3122P: Jack Hammer 3123M: Dave Jeffery <ipslinux@adaptec.com> 3124W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html 3125S: Supported 3126F: drivers/scsi/ips.* 3127 3128IDE SUBSYSTEM 3129M: "David S. Miller" <davem@davemloft.net> 3130L: linux-ide@vger.kernel.org 3131Q: http://patchwork.ozlabs.org/project/linux-ide/list/ 3132T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6.git 3133S: Maintained 3134F: Documentation/ide/ 3135F: drivers/ide/ 3136F: include/linux/ide.h 3137 3138IDE/ATAPI DRIVERS 3139M: Borislav Petkov <petkovbb@gmail.com> 3140L: linux-ide@vger.kernel.org 3141S: Maintained 3142F: Documentation/cdrom/ide-cd 3143F: drivers/ide/ide-cd* 3144 3145IDLE-I7300 3146M: Andy Henroid <andrew.d.henroid@intel.com> 3147L: linux-pm@lists.linux-foundation.org 3148S: Supported 3149F: drivers/idle/i7300_idle.c 3150 3151IEEE 1394 SUBSYSTEM 3152M: Stefan Richter <stefanr@s5r6.in-berlin.de> 3153L: linux1394-devel@lists.sourceforge.net 3154W: http://ieee1394.wiki.kernel.org/ 3155T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394-2.6.git 3156S: Obsolete 3157F: Documentation/debugging-via-ohci1394.txt 3158F: drivers/ieee1394/ 3159 3160IEEE 802.15.4 SUBSYSTEM 3161M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> 3162M: Sergey Lapin <slapin@ossfans.org> 3163L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers) 3164W: http://apps.sourceforge.net/trac/linux-zigbee 3165T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git 3166S: Maintained 3167F: net/ieee802154/ 3168F: drivers/ieee802154/ 3169 3170IKANOS/ADI EAGLE ADSL USB DRIVER 3171M: Matthieu Castet <castet.matthieu@free.fr> 3172M: Stanislaw Gruszka <stf_xl@wp.pl> 3173S: Maintained 3174F: drivers/usb/atm/ueagle-atm.c 3175 3176INTEGRITY MEASUREMENT ARCHITECTURE (IMA) 3177M: Mimi Zohar <zohar@us.ibm.com> 3178S: Supported 3179F: security/integrity/ima/ 3180 3181IMS TWINTURBO FRAMEBUFFER DRIVER 3182L: linux-fbdev@vger.kernel.org 3183S: Orphan 3184F: drivers/video/imsttfb.c 3185 3186INFINIBAND SUBSYSTEM 3187M: Roland Dreier <roland@kernel.org> 3188M: Sean Hefty <sean.hefty@intel.com> 3189M: Hal Rosenstock <hal.rosenstock@gmail.com> 3190L: linux-rdma@vger.kernel.org 3191W: http://www.openfabrics.org/ 3192Q: http://patchwork.kernel.org/project/linux-rdma/list/ 3193T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git 3194S: Supported 3195F: Documentation/infiniband/ 3196F: drivers/infiniband/ 3197F: include/linux/if_infiniband.h 3198 3199INOTIFY 3200M: John McCutchan <john@johnmccutchan.com> 3201M: Robert Love <rlove@rlove.org> 3202M: Eric Paris <eparis@parisplace.org> 3203S: Maintained 3204F: Documentation/filesystems/inotify.txt 3205F: fs/notify/inotify/ 3206F: include/linux/inotify.h 3207 3208INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS 3209M: Dmitry Torokhov <dmitry.torokhov@gmail.com> 3210M: Dmitry Torokhov <dtor@mail.ru> 3211L: linux-input@vger.kernel.org 3212Q: http://patchwork.kernel.org/project/linux-input/list/ 3213T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git 3214S: Maintained 3215F: drivers/input/ 3216 3217INPUT MULTITOUCH (MT) PROTOCOL 3218M: Henrik Rydberg <rydberg@euromail.se> 3219L: linux-input@vger.kernel.org 3220T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git 3221S: Maintained 3222F: Documentation/input/multi-touch-protocol.txt 3223F: drivers/input/input-mt.c 3224K: \b(ABS|SYN)_MT_ 3225 3226INTEL IDLE DRIVER 3227M: Len Brown <lenb@kernel.org> 3228L: linux-pm@lists.linux-foundation.org 3229T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6.git 3230S: Supported 3231F: drivers/idle/intel_idle.c 3232 3233INTEL FRAMEBUFFER DRIVER (excluding 810 and 815) 3234M: Maik Broemme <mbroemme@plusserver.de> 3235L: linux-fbdev@vger.kernel.org 3236S: Maintained 3237F: Documentation/fb/intelfb.txt 3238F: drivers/video/intelfb/ 3239 3240INTEL 810/815 FRAMEBUFFER DRIVER 3241M: Antonino Daplas <adaplas@gmail.com> 3242L: linux-fbdev@vger.kernel.org 3243S: Maintained 3244F: drivers/video/i810/ 3245 3246INTEL MENLOW THERMAL DRIVER 3247M: Sujith Thomas <sujith.thomas@intel.com> 3248L: platform-driver-x86@vger.kernel.org 3249W: http://www.lesswatts.org/projects/acpi/ 3250S: Supported 3251F: drivers/platform/x86/intel_menlow.c 3252 3253INTEL IA32 MICROCODE UPDATE SUPPORT 3254M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk> 3255S: Maintained 3256F: arch/x86/kernel/microcode_core.c 3257F: arch/x86/kernel/microcode_intel.c 3258 3259INTEL I/OAT DMA DRIVER 3260M: Dan Williams <dan.j.williams@intel.com> 3261S: Supported 3262F: drivers/dma/ioat* 3263 3264INTEL IOMMU (VT-d) 3265M: David Woodhouse <dwmw2@infradead.org> 3266L: iommu@lists.linux-foundation.org 3267T: git git://git.infradead.org/iommu-2.6.git 3268S: Supported 3269F: drivers/pci/intel-iommu.c 3270F: include/linux/intel-iommu.h 3271 3272INTEL IOP-ADMA DMA DRIVER 3273M: Dan Williams <dan.j.williams@intel.com> 3274S: Maintained 3275F: drivers/dma/iop-adma.c 3276 3277INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT 3278M: Krzysztof Halasa <khc@pm.waw.pl> 3279S: Maintained 3280F: arch/arm/mach-ixp4xx/include/mach/qmgr.h 3281F: arch/arm/mach-ixp4xx/include/mach/npe.h 3282F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c 3283F: arch/arm/mach-ixp4xx/ixp4xx_npe.c 3284F: drivers/net/arm/ixp4xx_eth.c 3285F: drivers/net/wan/ixp4xx_hss.c 3286 3287INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT 3288M: Deepak Saxena <dsaxena@plexity.net> 3289S: Maintained 3290F: drivers/char/hw_random/ixp4xx-rng.c 3291 3292INTEL IXP2000 ETHERNET DRIVER 3293M: Lennert Buytenhek <kernel@wantstofly.org> 3294L: netdev@vger.kernel.org 3295S: Maintained 3296F: drivers/net/ixp2000/ 3297 3298INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf) 3299M: Jeff Kirsher <jeffrey.t.kirsher@intel.com> 3300M: Jesse Brandeburg <jesse.brandeburg@intel.com> 3301M: Bruce Allan <bruce.w.allan@intel.com> 3302M: Carolyn Wyborny <carolyn.wyborny@intel.com> 3303M: Don Skidmore <donald.c.skidmore@intel.com> 3304M: Greg Rose <gregory.v.rose@intel.com> 3305M: PJ Waskiewicz <peter.p.waskiewicz.jr@intel.com> 3306M: Alex Duyck <alexander.h.duyck@intel.com> 3307M: John Ronciak <john.ronciak@intel.com> 3308L: e1000-devel@lists.sourceforge.net 3309W: http://e1000.sourceforge.net/ 3310T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-2.6.git 3311T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next-2.6.git 3312S: Supported 3313F: Documentation/networking/e100.txt 3314F: Documentation/networking/e1000.txt 3315F: Documentation/networking/e1000e.txt 3316F: Documentation/networking/igb.txt 3317F: Documentation/networking/igbvf.txt 3318F: Documentation/networking/ixgb.txt 3319F: Documentation/networking/ixgbe.txt 3320F: Documentation/networking/ixgbevf.txt 3321F: drivers/net/e100.c 3322F: drivers/net/e1000/ 3323F: drivers/net/e1000e/ 3324F: drivers/net/igb/ 3325F: drivers/net/igbvf/ 3326F: drivers/net/ixgb/ 3327F: drivers/net/ixgbe/ 3328F: drivers/net/ixgbevf/ 3329 3330INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT 3331L: linux-wireless@vger.kernel.org 3332S: Orphan 3333F: Documentation/networking/README.ipw2100 3334F: drivers/net/wireless/ipw2x00/ipw2100.* 3335 3336INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT 3337L: linux-wireless@vger.kernel.org 3338S: Orphan 3339F: Documentation/networking/README.ipw2200 3340F: drivers/net/wireless/ipw2x00/ipw2200.* 3341 3342INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT) 3343M: Joseph Cihula <joseph.cihula@intel.com> 3344M: Shane Wang <shane.wang@intel.com> 3345L: tboot-devel@lists.sourceforge.net 3346W: http://tboot.sourceforge.net 3347T: Mercurial http://www.bughost.org/repos.hg/tboot.hg 3348S: Supported 3349F: Documentation/intel_txt.txt 3350F: include/linux/tboot.h 3351F: arch/x86/kernel/tboot.c 3352 3353INTEL WIRELESS WIMAX CONNECTION 2400 3354M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 3355M: linux-wimax@intel.com 3356L: wimax@linuxwimax.org 3357S: Supported 3358W: http://linuxwimax.org 3359F: Documentation/wimax/README.i2400m 3360F: drivers/net/wimax/i2400m/ 3361F: include/linux/wimax/i2400m.h 3362 3363INTEL WIRELESS WIFI LINK (iwlwifi) 3364M: Wey-Yi Guy <wey-yi.w.guy@intel.com> 3365M: Intel Linux Wireless <ilw@linux.intel.com> 3366L: linux-wireless@vger.kernel.org 3367W: http://intellinuxwireless.org 3368T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6.git 3369S: Supported 3370F: drivers/net/wireless/iwlwifi/ 3371 3372INTEL WIRELESS MULTICOMM 3200 WIFI (iwmc3200wifi) 3373M: Samuel Ortiz <samuel.ortiz@intel.com> 3374M: Intel Linux Wireless <ilw@linux.intel.com> 3375L: linux-wireless@vger.kernel.org 3376S: Supported 3377W: http://wireless.kernel.org/en/users/Drivers/iwmc3200wifi 3378F: drivers/net/wireless/iwmc3200wifi/ 3379 3380IOC3 ETHERNET DRIVER 3381M: Ralf Baechle <ralf@linux-mips.org> 3382L: linux-mips@linux-mips.org 3383S: Maintained 3384F: drivers/net/ioc3-eth.c 3385 3386IOC3 SERIAL DRIVER 3387M: Pat Gefre <pfg@sgi.com> 3388L: linux-serial@vger.kernel.org 3389S: Maintained 3390F: drivers/tty/serial/ioc3_serial.c 3391 3392IP MASQUERADING 3393M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar> 3394S: Maintained 3395F: net/ipv4/netfilter/ipt_MASQUERADE.c 3396 3397IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER 3398M: Francois Romieu <romieu@fr.zoreil.com> 3399M: Sorbica Shieh <sorbica@icplus.com.tw> 3400L: netdev@vger.kernel.org 3401S: Maintained 3402F: drivers/net/ipg.* 3403 3404IPATH DRIVER 3405M: Ralph Campbell <infinipath@qlogic.com> 3406L: linux-rdma@vger.kernel.org 3407T: git git://git.qlogic.com/ipath-linux-2.6 3408S: Supported 3409F: drivers/infiniband/hw/ipath/ 3410 3411IPMI SUBSYSTEM 3412M: Corey Minyard <minyard@acm.org> 3413L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers) 3414W: http://openipmi.sourceforge.net/ 3415S: Supported 3416F: Documentation/IPMI.txt 3417F: drivers/char/ipmi/ 3418F: include/linux/ipmi* 3419 3420IPS SCSI RAID DRIVER 3421M: Adaptec OEM Raid Solutions <aacraid@adaptec.com> 3422L: linux-scsi@vger.kernel.org 3423W: http://www.adaptec.com/ 3424S: Maintained 3425F: drivers/scsi/ips* 3426 3427IPVS 3428M: Wensong Zhang <wensong@linux-vs.org> 3429M: Simon Horman <horms@verge.net.au> 3430M: Julian Anastasov <ja@ssi.bg> 3431L: netdev@vger.kernel.org 3432L: lvs-devel@vger.kernel.org 3433S: Maintained 3434F: Documentation/networking/ipvs-sysctl.txt 3435F: include/net/ip_vs.h 3436F: include/linux/ip_vs.h 3437F: net/netfilter/ipvs/ 3438 3439IPWIRELESS DRIVER 3440M: Jiri Kosina <jkosina@suse.cz> 3441M: David Sterba <dsterba@suse.cz> 3442S: Maintained 3443T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/ipwireless_cs.git 3444F: drivers/char/pcmcia/ipwireless/ 3445 3446IPX NETWORK LAYER 3447M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 3448L: netdev@vger.kernel.org 3449S: Maintained 3450F: include/linux/ipx.h 3451F: include/net/ipx.h 3452F: net/ipx/ 3453 3454IRDA SUBSYSTEM 3455M: Samuel Ortiz <samuel@sortiz.org> 3456L: irda-users@lists.sourceforge.net (subscribers-only) 3457W: http://irda.sourceforge.net/ 3458S: Maintained 3459T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git 3460F: Documentation/networking/irda.txt 3461F: drivers/net/irda/ 3462F: include/net/irda/ 3463F: net/irda/ 3464 3465IRQ SUBSYSTEM 3466M: Thomas Gleixner <tglx@linutronix.de> 3467S: Maintained 3468T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git irq/core 3469F: kernel/irq/ 3470 3471ISAPNP 3472M: Jaroslav Kysela <perex@perex.cz> 3473S: Maintained 3474F: Documentation/isapnp.txt 3475F: drivers/pnp/isapnp/ 3476F: include/linux/isapnp.h 3477 3478ISCSI 3479M: Mike Christie <michaelc@cs.wisc.edu> 3480L: open-iscsi@googlegroups.com 3481W: www.open-iscsi.org 3482T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git 3483S: Maintained 3484F: drivers/scsi/*iscsi* 3485F: include/scsi/*iscsi* 3486 3487ISDN SUBSYSTEM 3488M: Karsten Keil <isdn@linux-pingi.de> 3489L: isdn4linux@listserv.isdn4linux.de (subscribers-only) 3490L: netdev@vger.kernel.org 3491W: http://www.isdn4linux.de 3492T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git 3493S: Maintained 3494F: Documentation/isdn/ 3495F: drivers/isdn/ 3496F: include/linux/isdn.h 3497F: include/linux/isdn/ 3498 3499ISDN SUBSYSTEM (Eicon active card driver) 3500M: Armin Schindler <mac@melware.de> 3501L: isdn4linux@listserv.isdn4linux.de (subscribers-only) 3502W: http://www.melware.de 3503S: Maintained 3504F: drivers/isdn/hardware/eicon/ 3505 3506IT87 HARDWARE MONITORING DRIVER 3507M: Jean Delvare <khali@linux-fr.org> 3508L: lm-sensors@lm-sensors.org 3509S: Maintained 3510F: Documentation/hwmon/it87 3511F: drivers/hwmon/it87.c 3512 3513IVTV VIDEO4LINUX DRIVER 3514M: Andy Walls <awalls@md.metrocast.net> 3515L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers) 3516L: linux-media@vger.kernel.org 3517T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 3518W: http://www.ivtvdriver.org 3519S: Maintained 3520F: Documentation/video4linux/*.ivtv 3521F: drivers/media/video/ivtv/ 3522F: include/linux/ivtv* 3523 3524JC42.4 TEMPERATURE SENSOR DRIVER 3525M: Guenter Roeck <linux@roeck-us.net> 3526L: lm-sensors@lm-sensors.org 3527S: Maintained 3528F: drivers/hwmon/jc42.c 3529F: Documentation/hwmon/jc42 3530 3531JFS FILESYSTEM 3532M: Dave Kleikamp <shaggy@kernel.org> 3533L: jfs-discussion@lists.sourceforge.net 3534W: http://jfs.sourceforge.net/ 3535T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git 3536S: Maintained 3537F: Documentation/filesystems/jfs.txt 3538F: fs/jfs/ 3539 3540JME NETWORK DRIVER 3541M: Guo-Fu Tseng <cooldavid@cooldavid.org> 3542L: netdev@vger.kernel.org 3543S: Maintained 3544F: drivers/net/jme.* 3545 3546JOURNALLING FLASH FILE SYSTEM V2 (JFFS2) 3547M: David Woodhouse <dwmw2@infradead.org> 3548L: linux-mtd@lists.infradead.org 3549W: http://www.linux-mtd.infradead.org/doc/jffs2.html 3550S: Maintained 3551F: fs/jffs2/ 3552F: include/linux/jffs2.h 3553 3554JOURNALLING LAYER FOR BLOCK DEVICES (JBD) 3555M: Andrew Morton <akpm@linux-foundation.org> 3556M: Jan Kara <jack@suse.cz> 3557L: linux-ext4@vger.kernel.org 3558S: Maintained 3559F: fs/jbd*/ 3560F: include/linux/ext*jbd*.h 3561F: include/linux/jbd*.h 3562 3563JSM Neo PCI based serial card 3564M: Breno Leitao <leitao@linux.vnet.ibm.com> 3565L: linux-serial@vger.kernel.org 3566S: Maintained 3567F: drivers/tty/serial/jsm/ 3568 3569K10TEMP HARDWARE MONITORING DRIVER 3570M: Clemens Ladisch <clemens@ladisch.de> 3571L: lm-sensors@lm-sensors.org 3572S: Maintained 3573F: Documentation/hwmon/k10temp 3574F: drivers/hwmon/k10temp.c 3575 3576K8TEMP HARDWARE MONITORING DRIVER 3577M: Rudolf Marek <r.marek@assembler.cz> 3578L: lm-sensors@lm-sensors.org 3579S: Maintained 3580F: Documentation/hwmon/k8temp 3581F: drivers/hwmon/k8temp.c 3582 3583KCONFIG 3584M: Roman Zippel <zippel@linux-m68k.org> 3585L: linux-kbuild@vger.kernel.org 3586Q: http://patchwork.kernel.org/project/linux-kbuild/list/ 3587S: Maintained 3588F: Documentation/kbuild/kconfig-language.txt 3589F: scripts/kconfig/ 3590 3591KDUMP 3592M: Vivek Goyal <vgoyal@redhat.com> 3593M: Haren Myneni <hbabu@us.ibm.com> 3594L: kexec@lists.infradead.org 3595W: http://lse.sourceforge.net/kdump/ 3596S: Maintained 3597F: Documentation/kdump/ 3598 3599KERNEL AUTOMOUNTER (AUTOFS) 3600M: "H. Peter Anvin" <hpa@zytor.com> 3601L: autofs@linux.kernel.org 3602S: Obsolete 3603F: drivers/staging/autofs/ 3604 3605KERNEL AUTOMOUNTER v4 (AUTOFS4) 3606M: Ian Kent <raven@themaw.net> 3607L: autofs@linux.kernel.org 3608S: Maintained 3609F: fs/autofs4/ 3610 3611KERNEL BUILD + files below scripts/ (unless maintained elsewhere) 3612M: Michal Marek <mmarek@suse.cz> 3613T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git for-next 3614T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6.git rc-fixes 3615L: linux-kbuild@vger.kernel.org 3616S: Maintained 3617F: Documentation/kbuild/ 3618F: Makefile 3619F: scripts/Makefile.* 3620F: scripts/basic/ 3621F: scripts/mk* 3622F: scripts/package/ 3623 3624KERNEL JANITORS 3625L: kernel-janitors@vger.kernel.org 3626W: http://kernelnewbies.org/KernelJanitors 3627S: Odd Fixes 3628 3629KERNEL NFSD, SUNRPC, AND LOCKD SERVERS 3630M: "J. Bruce Fields" <bfields@fieldses.org> 3631M: Neil Brown <neilb@suse.de> 3632L: linux-nfs@vger.kernel.org 3633W: http://nfs.sourceforge.net/ 3634S: Supported 3635F: fs/nfsd/ 3636F: include/linux/nfsd/ 3637F: fs/lockd/ 3638F: fs/nfs_common/ 3639F: net/sunrpc/ 3640F: include/linux/lockd/ 3641F: include/linux/sunrpc/ 3642 3643KERNEL VIRTUAL MACHINE (KVM) 3644M: Avi Kivity <avi@redhat.com> 3645M: Marcelo Tosatti <mtosatti@redhat.com> 3646L: kvm@vger.kernel.org 3647W: http://kvm.qumranet.com 3648S: Supported 3649F: Documentation/*/kvm.txt 3650F: arch/*/kvm/ 3651F: arch/*/include/asm/kvm* 3652F: include/linux/kvm* 3653F: virt/kvm/ 3654 3655KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V 3656M: Joerg Roedel <joerg.roedel@amd.com> 3657L: kvm@vger.kernel.org 3658W: http://kvm.qumranet.com 3659S: Supported 3660F: arch/x86/include/asm/svm.h 3661F: arch/x86/kvm/svm.c 3662 3663KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC 3664M: Alexander Graf <agraf@suse.de> 3665L: kvm-ppc@vger.kernel.org 3666W: http://kvm.qumranet.com 3667S: Supported 3668F: arch/powerpc/include/asm/kvm* 3669F: arch/powerpc/kvm/ 3670 3671KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64) 3672M: Xiantao Zhang <xiantao.zhang@intel.com> 3673L: kvm-ia64@vger.kernel.org 3674W: http://kvm.qumranet.com 3675S: Supported 3676F: Documentation/ia64/kvm.txt 3677F: arch/ia64/include/asm/kvm* 3678F: arch/ia64/kvm/ 3679 3680KERNEL VIRTUAL MACHINE for s390 (KVM/s390) 3681M: Carsten Otte <cotte@de.ibm.com> 3682M: Christian Borntraeger <borntraeger@de.ibm.com> 3683M: linux390@de.ibm.com 3684L: linux-s390@vger.kernel.org 3685W: http://www.ibm.com/developerworks/linux/linux390/ 3686S: Supported 3687F: Documentation/s390/kvm.txt 3688F: arch/s390/include/asm/kvm* 3689F: arch/s390/kvm/ 3690F: drivers/s390/kvm/ 3691 3692KEXEC 3693M: Eric Biederman <ebiederm@xmission.com> 3694W: http://kernel.org/pub/linux/utils/kernel/kexec/ 3695L: kexec@lists.infradead.org 3696S: Maintained 3697F: include/linux/kexec.h 3698F: kernel/kexec.c 3699 3700KEYS/KEYRINGS: 3701M: David Howells <dhowells@redhat.com> 3702L: keyrings@linux-nfs.org 3703S: Maintained 3704F: Documentation/keys.txt 3705F: include/linux/key.h 3706F: include/linux/key-type.h 3707F: include/keys/ 3708F: security/keys/ 3709 3710KEYS-TRUSTED 3711M: David Safford <safford@watson.ibm.com> 3712M: Mimi Zohar <zohar@us.ibm.com> 3713L: linux-security-module@vger.kernel.org 3714L: keyrings@linux-nfs.org 3715S: Supported 3716F: Documentation/keys-trusted-encrypted.txt 3717F: include/keys/trusted-type.h 3718F: security/keys/trusted.c 3719F: security/keys/trusted.h 3720 3721KEYS-ENCRYPTED 3722M: Mimi Zohar <zohar@us.ibm.com> 3723M: David Safford <safford@watson.ibm.com> 3724L: linux-security-module@vger.kernel.org 3725L: keyrings@linux-nfs.org 3726S: Supported 3727F: Documentation/keys-trusted-encrypted.txt 3728F: include/keys/encrypted-type.h 3729F: security/keys/encrypted.c 3730F: security/keys/encrypted.h 3731 3732KGDB / KDB /debug_core 3733M: Jason Wessel <jason.wessel@windriver.com> 3734W: http://kgdb.wiki.kernel.org/ 3735L: kgdb-bugreport@lists.sourceforge.net 3736S: Maintained 3737F: Documentation/DocBook/kgdb.tmpl 3738F: drivers/misc/kgdbts.c 3739F: drivers/tty/serial/kgdboc.c 3740F: include/linux/kdb.h 3741F: include/linux/kgdb.h 3742F: kernel/debug/ 3743 3744KMEMCHECK 3745M: Vegard Nossum <vegardno@ifi.uio.no> 3746M: Pekka Enberg <penberg@kernel.org> 3747S: Maintained 3748F: Documentation/kmemcheck.txt 3749F: arch/x86/include/asm/kmemcheck.h 3750F: arch/x86/mm/kmemcheck/ 3751F: include/linux/kmemcheck.h 3752F: mm/kmemcheck.c 3753 3754KMEMLEAK 3755M: Catalin Marinas <catalin.marinas@arm.com> 3756S: Maintained 3757F: Documentation/kmemleak.txt 3758F: include/linux/kmemleak.h 3759F: mm/kmemleak.c 3760F: mm/kmemleak-test.c 3761 3762KPROBES 3763M: Ananth N Mavinakayanahalli <ananth@in.ibm.com> 3764M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com> 3765M: "David S. Miller" <davem@davemloft.net> 3766M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> 3767S: Maintained 3768F: Documentation/kprobes.txt 3769F: include/linux/kprobes.h 3770F: kernel/kprobes.c 3771 3772KS0108 LCD CONTROLLER DRIVER 3773M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com> 3774W: http://miguelojeda.es/auxdisplay.htm 3775W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm 3776S: Maintained 3777F: Documentation/auxdisplay/ks0108 3778F: drivers/auxdisplay/ks0108.c 3779F: include/linux/ks0108.h 3780 3781LAPB module 3782L: linux-x25@vger.kernel.org 3783S: Orphan 3784F: Documentation/networking/lapb-module.txt 3785F: include/*/lapb.h 3786F: net/lapb/ 3787 3788LASI 53c700 driver for PARISC 3789M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 3790L: linux-scsi@vger.kernel.org 3791S: Maintained 3792F: Documentation/scsi/53c700.txt 3793F: drivers/scsi/53c700* 3794 3795LED SUBSYSTEM 3796M: Richard Purdie <rpurdie@rpsys.net> 3797S: Maintained 3798F: drivers/leds/ 3799F: include/linux/leds.h 3800 3801LEGO USB Tower driver 3802M: Juergen Stuber <starblue@users.sourceforge.net> 3803L: legousb-devel@lists.sourceforge.net 3804W: http://legousb.sourceforge.net/ 3805S: Maintained 3806F: drivers/usb/misc/legousbtower.c 3807 3808LGUEST 3809M: Rusty Russell <rusty@rustcorp.com.au> 3810L: lguest@lists.ozlabs.org 3811W: http://lguest.ozlabs.org/ 3812S: Odd Fixes 3813F: Documentation/lguest/ 3814F: arch/x86/lguest/ 3815F: drivers/lguest/ 3816F: include/linux/lguest*.h 3817F: arch/x86/include/asm/lguest*.h 3818 3819LINUX FOR IBM pSERIES (RS/6000) 3820M: Paul Mackerras <paulus@au.ibm.com> 3821W: http://www.ibm.com/linux/ltc/projects/ppc 3822S: Supported 3823F: arch/powerpc/boot/rs6000.h 3824 3825LINUX FOR POWERPC (32-BIT AND 64-BIT) 3826M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 3827M: Paul Mackerras <paulus@samba.org> 3828W: http://www.penguinppc.org/ 3829L: linuxppc-dev@lists.ozlabs.org 3830Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/ 3831T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git 3832S: Supported 3833F: Documentation/powerpc/ 3834F: arch/powerpc/ 3835 3836LINUX FOR POWER MACINTOSH 3837M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 3838W: http://www.penguinppc.org/ 3839L: linuxppc-dev@lists.ozlabs.org 3840S: Maintained 3841F: arch/powerpc/platforms/powermac/ 3842F: drivers/macintosh/ 3843 3844LINUX FOR POWERPC EMBEDDED MPC5XXX 3845M: Grant Likely <grant.likely@secretlab.ca> 3846L: linuxppc-dev@lists.ozlabs.org 3847T: git git://git.secretlab.ca/git/linux-2.6.git 3848S: Maintained 3849F: arch/powerpc/platforms/512x/ 3850F: arch/powerpc/platforms/52xx/ 3851 3852LINUX FOR POWERPC EMBEDDED PPC4XX 3853M: Josh Boyer <jwboyer@linux.vnet.ibm.com> 3854M: Matt Porter <mporter@kernel.crashing.org> 3855W: http://www.penguinppc.org/ 3856L: linuxppc-dev@lists.ozlabs.org 3857T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git 3858S: Maintained 3859F: arch/powerpc/platforms/40x/ 3860F: arch/powerpc/platforms/44x/ 3861 3862LINUX FOR POWERPC EMBEDDED XILINX VIRTEX 3863M: Grant Likely <grant.likely@secretlab.ca> 3864W: http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex 3865L: linuxppc-dev@lists.ozlabs.org 3866T: git git://git.secretlab.ca/git/linux-2.6.git 3867S: Maintained 3868F: arch/powerpc/*/*virtex* 3869F: arch/powerpc/*/*/*virtex* 3870 3871LINUX FOR POWERPC EMBEDDED PPC8XX 3872M: Vitaly Bordug <vitb@kernel.crashing.org> 3873M: Marcelo Tosatti <marcelo@kvack.org> 3874W: http://www.penguinppc.org/ 3875L: linuxppc-dev@lists.ozlabs.org 3876S: Maintained 3877F: arch/powerpc/platforms/8xx/ 3878 3879LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX 3880M: Kumar Gala <galak@kernel.crashing.org> 3881W: http://www.penguinppc.org/ 3882L: linuxppc-dev@lists.ozlabs.org 3883S: Maintained 3884F: arch/powerpc/platforms/83xx/ 3885 3886LINUX FOR POWERPC PA SEMI PWRFICIENT 3887M: Olof Johansson <olof@lixom.net> 3888L: linuxppc-dev@lists.ozlabs.org 3889S: Maintained 3890F: arch/powerpc/platforms/pasemi/ 3891F: drivers/*/*pasemi* 3892F: drivers/*/*/*pasemi* 3893 3894LINUX SECURITY MODULE (LSM) FRAMEWORK 3895M: Chris Wright <chrisw@sous-sol.org> 3896L: linux-security-module@vger.kernel.org 3897T: git git://git.kernel.org/pub/scm/linux/kernel/git/chrisw/lsm-2.6.git 3898S: Supported 3899 3900LLC (802.2) 3901M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 3902S: Maintained 3903F: include/linux/llc.h 3904F: include/net/llc* 3905F: net/llc/ 3906 3907LIS3LV02D ACCELEROMETER DRIVER 3908M: Eric Piel <eric.piel@tremplin-utc.net> 3909S: Maintained 3910F: Documentation/hwmon/lis3lv02d 3911F: drivers/hwmon/lis3lv02d.* 3912 3913LM73 HARDWARE MONITOR DRIVER 3914M: Guillaume Ligneul <guillaume.ligneul@gmail.com> 3915L: lm-sensors@lm-sensors.org 3916S: Maintained 3917F: drivers/hwmon/lm73.c 3918 3919LM83 HARDWARE MONITOR DRIVER 3920M: Jean Delvare <khali@linux-fr.org> 3921L: lm-sensors@lm-sensors.org 3922S: Maintained 3923F: Documentation/hwmon/lm83 3924F: drivers/hwmon/lm83.c 3925 3926LM90 HARDWARE MONITOR DRIVER 3927M: Jean Delvare <khali@linux-fr.org> 3928L: lm-sensors@lm-sensors.org 3929S: Maintained 3930F: Documentation/hwmon/lm90 3931F: drivers/hwmon/lm90.c 3932 3933LOCKDEP AND LOCKSTAT 3934M: Peter Zijlstra <peterz@infradead.org> 3935M: Ingo Molnar <mingo@redhat.com> 3936T: git git://git.kernel.org/pub/scm/linux/kernel/git/peterz/linux-2.6-lockdep.git 3937S: Maintained 3938F: Documentation/lockdep*.txt 3939F: Documentation/lockstat.txt 3940F: include/linux/lockdep.h 3941F: kernel/lockdep* 3942 3943LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks) 3944M: "Richard Russon (FlatCap)" <ldm@flatcap.org> 3945L: linux-ntfs-dev@lists.sourceforge.net 3946W: http://www.linux-ntfs.org/content/view/19/37/ 3947S: Maintained 3948F: Documentation/ldm.txt 3949F: fs/partitions/ldm.* 3950 3951LogFS 3952M: Joern Engel <joern@logfs.org> 3953L: logfs@logfs.org 3954W: logfs.org 3955S: Maintained 3956F: fs/logfs/ 3957 3958LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI) 3959M: Eric Moore <Eric.Moore@lsi.com> 3960M: support@lsi.com 3961L: DL-MPTFusionLinux@lsi.com 3962L: linux-scsi@vger.kernel.org 3963W: http://www.lsilogic.com/support 3964S: Supported 3965F: drivers/message/fusion/ 3966 3967LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers 3968M: Matthew Wilcox <matthew@wil.cx> 3969L: linux-scsi@vger.kernel.org 3970S: Maintained 3971F: drivers/scsi/sym53c8xx_2/ 3972 3973LTC4261 HARDWARE MONITOR DRIVER 3974M: Guenter Roeck <linux@roeck-us.net> 3975L: lm-sensors@lm-sensors.org 3976S: Maintained 3977F: Documentation/hwmon/ltc4261 3978F: drivers/hwmon/ltc4261.c 3979 3980LTP (Linux Test Project) 3981M: Rishikesh K Rajak <risrajak@linux.vnet.ibm.com> 3982M: Garrett Cooper <yanegomi@gmail.com> 3983M: Mike Frysinger <vapier@gentoo.org> 3984M: Subrata Modak <subrata@linux.vnet.ibm.com> 3985L: ltp-list@lists.sourceforge.net (subscribers-only) 3986W: http://ltp.sourceforge.net/ 3987T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev 3988S: Maintained 3989 3990M32R ARCHITECTURE 3991M: Hirokazu Takata <takata@linux-m32r.org> 3992L: linux-m32r@ml.linux-m32r.org 3993L: linux-m32r-ja@ml.linux-m32r.org (in Japanese) 3994W: http://www.linux-m32r.org/ 3995S: Maintained 3996F: arch/m32r/ 3997 3998M68K ARCHITECTURE 3999M: Geert Uytterhoeven <geert@linux-m68k.org> 4000M: Roman Zippel <zippel@linux-m68k.org>
4001L: linux-m68k@lists.linux-m68k.org 4002W: http://www.linux-m68k.org/ 4003T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git 4004S: Maintained 4005F: arch/m68k/ 4006F: drivers/zorro/ 4007 4008M68K ON APPLE MACINTOSH 4009M: Joshua Thompson <funaho@jurai.org> 4010W: http://www.mac.linux-m68k.org/ 4011L: linux-m68k@lists.linux-m68k.org 4012S: Maintained 4013F: arch/m68k/mac/ 4014 4015M68K ON HP9000/300 4016M: Philip Blundell <philb@gnu.org> 4017W: http://www.tazenda.demon.co.uk/phil/linux-hp 4018S: Maintained 4019F: arch/m68k/hp300/ 4020 4021MAC80211 4022M: Johannes Berg <johannes@sipsolutions.net> 4023L: linux-wireless@vger.kernel.org 4024W: http://linuxwireless.org/ 4025T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git 4026S: Maintained 4027F: Documentation/networking/mac80211-injection.txt 4028F: include/net/mac80211.h 4029F: net/mac80211/ 4030 4031MAC80211 PID RATE CONTROL 4032M: Stefano Brivio <stefano.brivio@polimi.it> 4033M: Mattias Nissler <mattias.nissler@gmx.de> 4034L: linux-wireless@vger.kernel.org 4035W: http://linuxwireless.org/en/developers/Documentation/mac80211/RateControl/PID 4036T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git 4037S: Maintained 4038F: net/mac80211/rc80211_pid* 4039 4040MACVLAN DRIVER 4041M: Patrick McHardy <kaber@trash.net> 4042L: netdev@vger.kernel.org 4043S: Maintained 4044F: drivers/net/macvlan.c 4045F: include/linux/if_macvlan.h 4046 4047MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7 4048M: Michael Kerrisk <mtk.manpages@gmail.com> 4049W: http://www.kernel.org/doc/man-pages 4050L: linux-man@vger.kernel.org 4051S: Maintained 4052 4053MARVELL LIBERTAS WIRELESS DRIVER 4054M: Dan Williams <dcbw@redhat.com> 4055L: libertas-dev@lists.infradead.org 4056S: Maintained 4057F: drivers/net/wireless/libertas/ 4058 4059MARVELL MV643XX ETHERNET DRIVER 4060M: Lennert Buytenhek <buytenh@wantstofly.org> 4061L: netdev@vger.kernel.org 4062S: Maintained 4063F: drivers/net/mv643xx_eth.* 4064F: include/linux/mv643xx.h 4065 4066MARVELL MWL8K WIRELESS DRIVER 4067M: Lennert Buytenhek <buytenh@wantstofly.org> 4068L: linux-wireless@vger.kernel.org 4069S: Odd Fixes 4070F: drivers/net/wireless/mwl8k.c 4071 4072MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER 4073M: Nicolas Pitre <nico@fluxnic.net> 4074S: Odd Fixes 4075F: drivers/mmc/host/mvsdio.* 4076 4077MARVELL YUKON / SYSKONNECT DRIVER 4078M: Mirko Lindner <mlindner@syskonnect.de> 4079M: Ralph Roesler <rroesler@syskonnect.de> 4080W: http://www.syskonnect.com 4081S: Supported 4082 4083MATROX FRAMEBUFFER DRIVER 4084L: linux-fbdev@vger.kernel.org 4085S: Orphan 4086F: drivers/video/matrox/matroxfb_* 4087F: include/linux/matroxfb.h 4088 4089MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER 4090M: "Hans J. Koch" <hjk@linutronix.de> 4091L: lm-sensors@lm-sensors.org 4092S: Maintained 4093F: Documentation/hwmon/max6650 4094F: drivers/hwmon/max6650.c 4095 4096MEDIA INPUT INFRASTRUCTURE (V4L/DVB) 4097M: Mauro Carvalho Chehab <mchehab@infradead.org> 4098P: LinuxTV.org Project 4099L: linux-media@vger.kernel.org 4100W: http://linuxtv.org 4101Q: http://patchwork.kernel.org/project/linux-media/list/ 4102T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 4103S: Maintained 4104F: Documentation/dvb/ 4105F: Documentation/video4linux/ 4106F: drivers/media/ 4107F: include/media/ 4108F: include/linux/dvb/ 4109F: include/linux/videodev*.h 4110 4111MEGARAID SCSI DRIVERS 4112M: Neela Syam Kolli <megaraidlinux@lsi.com> 4113L: linux-scsi@vger.kernel.org 4114W: http://megaraid.lsilogic.com 4115S: Maintained 4116F: Documentation/scsi/megaraid.txt 4117F: drivers/scsi/megaraid.* 4118F: drivers/scsi/megaraid/ 4119 4120MEMORY MANAGEMENT 4121L: linux-mm@kvack.org 4122W: http://www.linux-mm.org 4123S: Maintained 4124F: include/linux/mm.h 4125F: mm/ 4126 4127MEMORY RESOURCE CONTROLLER 4128M: Balbir Singh <balbir@linux.vnet.ibm.com> 4129M: Daisuke Nishimura <nishimura@mxp.nes.nec.co.jp> 4130M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> 4131L: linux-mm@kvack.org 4132S: Maintained 4133F: mm/memcontrol.c 4134 4135MEMORY TECHNOLOGY DEVICES (MTD) 4136M: David Woodhouse <dwmw2@infradead.org> 4137L: linux-mtd@lists.infradead.org 4138W: http://www.linux-mtd.infradead.org/ 4139Q: http://patchwork.ozlabs.org/project/linux-mtd/list/ 4140T: git git://git.infradead.org/mtd-2.6.git 4141S: Maintained 4142F: drivers/mtd/ 4143F: include/linux/mtd/ 4144F: include/mtd/ 4145 4146MICROBLAZE ARCHITECTURE 4147M: Michal Simek <monstr@monstr.eu> 4148L: microblaze-uclinux@itee.uq.edu.au 4149W: http://www.monstr.eu/fdt/ 4150T: git git://git.monstr.eu/linux-2.6-microblaze.git 4151S: Supported 4152F: arch/microblaze/ 4153 4154MICROTEK X6 SCANNER 4155M: Oliver Neukum <oliver@neukum.name> 4156S: Maintained 4157F: drivers/usb/image/microtek.* 4158 4159MIPS 4160M: Ralf Baechle <ralf@linux-mips.org> 4161W: http://www.linux-mips.org/ 4162L: linux-mips@linux-mips.org 4163T: git git://git.linux-mips.org/pub/scm/linux.git 4164S: Supported 4165F: Documentation/mips/ 4166F: arch/mips/ 4167 4168MISCELLANEOUS MCA-SUPPORT 4169M: James Bottomley <James.Bottomley@HansenPartnership.com> 4170S: Maintained 4171F: Documentation/ia64/mca.txt 4172F: Documentation/mca.txt 4173F: drivers/mca/ 4174F: include/linux/mca* 4175 4176MODULE SUPPORT 4177M: Rusty Russell <rusty@rustcorp.com.au> 4178S: Maintained 4179F: include/linux/module.h 4180F: kernel/module.c 4181 4182MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER 4183W: http://popies.net/meye/ 4184S: Orphan 4185F: Documentation/video4linux/meye.txt 4186F: drivers/media/video/meye.* 4187F: include/linux/meye.h 4188 4189MOTOROLA IMX MMC/SD HOST CONTROLLER INTERFACE DRIVER 4190M: Pavel Pisa <ppisa@pikron.com> 4191L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 4192S: Maintained 4193F: drivers/mmc/host/imxmmc.* 4194 4195MOUSE AND MISC DEVICES [GENERAL] 4196M: Alessandro Rubini <rubini@ipvvis.unipv.it> 4197S: Maintained 4198F: drivers/input/mouse/ 4199F: include/linux/gpio_mouse.h 4200 4201MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD 4202M: Jiri Slaby <jirislaby@gmail.com> 4203S: Maintained 4204F: Documentation/serial/moxa-smartio 4205F: drivers/char/mxser.* 4206 4207MSI LAPTOP SUPPORT 4208M: Lee, Chun-Yi <jlee@novell.com> 4209L: platform-driver-x86@vger.kernel.org 4210S: Maintained 4211F: drivers/platform/x86/msi-laptop.c 4212 4213MSI WMI SUPPORT 4214M: Anisse Astier <anisse@astier.eu> 4215L: platform-driver-x86@vger.kernel.org 4216S: Supported 4217F: drivers/platform/x86/msi-wmi.c 4218 4219MULTIFUNCTION DEVICES (MFD) 4220M: Samuel Ortiz <sameo@linux.intel.com> 4221T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git 4222S: Supported 4223F: drivers/mfd/ 4224 4225MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM 4226M: Chris Ball <cjb@laptop.org> 4227L: linux-mmc@vger.kernel.org 4228T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git 4229S: Maintained 4230F: drivers/mmc/ 4231F: include/linux/mmc/ 4232 4233MULTIMEDIA CARD (MMC) ETC. OVER SPI 4234M: David Brownell <dbrownell@users.sourceforge.net> 4235S: Odd Fixes 4236F: drivers/mmc/host/mmc_spi.c 4237F: include/linux/spi/mmc_spi.h 4238 4239MULTISOUND SOUND DRIVER 4240M: Andrew Veliath <andrewtv@usa.net> 4241S: Maintained 4242F: Documentation/sound/oss/MultiSound 4243F: sound/oss/msnd* 4244 4245MULTITECH MULTIPORT CARD (ISICOM) 4246S: Orphan 4247F: drivers/char/isicom.c 4248F: include/linux/isicom.h 4249 4250MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER 4251M: Felipe Balbi <balbi@ti.com> 4252L: linux-usb@vger.kernel.org 4253T: git git://gitorious.org/usb/usb.git 4254S: Maintained 4255F: drivers/usb/musb/ 4256 4257MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE) 4258M: Andrew Gallatin <gallatin@myri.com> 4259M: Brice Goglin <brice@myri.com> 4260L: netdev@vger.kernel.org 4261W: http://www.myri.com/scs/download-Myri10GE.html 4262S: Supported 4263F: drivers/net/myri10ge/ 4264 4265NATSEMI ETHERNET DRIVER (DP8381x) 4266M: Tim Hockin <thockin@hockin.org> 4267S: Maintained 4268F: drivers/net/natsemi.c 4269 4270NCP FILESYSTEM 4271M: Petr Vandrovec <petr@vandrovec.name> 4272S: Odd Fixes 4273F: fs/ncpfs/ 4274 4275NCR DUAL 700 SCSI DRIVER (MICROCHANNEL) 4276M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> 4277L: linux-scsi@vger.kernel.org 4278S: Maintained 4279F: drivers/scsi/NCR_D700.* 4280 4281NETEFFECT IWARP RNIC DRIVER (IW_NES) 4282M: Faisal Latif <faisal.latif@intel.com> 4283L: linux-rdma@vger.kernel.org 4284W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm 4285S: Supported 4286F: drivers/infiniband/hw/nes/ 4287 4288NETEM NETWORK EMULATOR 4289M: Stephen Hemminger <shemminger@linux-foundation.org> 4290L: netem@lists.linux-foundation.org 4291S: Maintained 4292F: net/sched/sch_netem.c 4293 4294NETERION 10GbE DRIVERS (s2io/vxge) 4295M: Jon Mason <jdmason@kudzu.us> 4296L: netdev@vger.kernel.org 4297W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/Linux?Anonymous 4298W: http://trac.neterion.com/cgi-bin/trac.cgi/wiki/X3100Linux?Anonymous 4299S: Supported 4300F: Documentation/networking/s2io.txt 4301F: drivers/net/s2io* 4302F: Documentation/networking/vxge.txt 4303F: drivers/net/vxge/ 4304 4305NETFILTER/IPTABLES/IPCHAINS 4306P: Rusty Russell 4307P: Marc Boucher 4308P: James Morris 4309P: Harald Welte 4310P: Jozsef Kadlecsik 4311M: Patrick McHardy <kaber@trash.net> 4312L: netfilter-devel@vger.kernel.org 4313L: netfilter@vger.kernel.org 4314L: coreteam@netfilter.org 4315W: http://www.netfilter.org/ 4316W: http://www.iptables.org/ 4317T: git git://git.kernel.org/pub/scm/linux/kernel/git/kaber/nf-2.6.git 4318S: Supported 4319F: include/linux/netfilter* 4320F: include/linux/netfilter/ 4321F: include/net/netfilter/ 4322F: net/*/netfilter.c 4323F: net/*/netfilter/ 4324F: net/netfilter/ 4325 4326NETLABEL 4327M: Paul Moore <paul.moore@hp.com> 4328W: http://netlabel.sf.net 4329L: netdev@vger.kernel.org 4330S: Supported 4331F: Documentation/netlabel/ 4332F: include/net/netlabel.h 4333F: net/netlabel/ 4334 4335NETROM NETWORK LAYER 4336M: Ralf Baechle <ralf@linux-mips.org> 4337L: linux-hams@vger.kernel.org 4338W: http://www.linux-ax25.org/ 4339S: Maintained 4340F: include/linux/netrom.h 4341F: include/net/netrom.h 4342F: net/netrom/ 4343 4344NETWORK BLOCK DEVICE (NBD) 4345M: Paul Clements <Paul.Clements@steeleye.com> 4346S: Maintained 4347F: Documentation/blockdev/nbd.txt 4348F: drivers/block/nbd.c 4349F: include/linux/nbd.h 4350 4351NETWORK DROP MONITOR 4352M: Neil Horman <nhorman@tuxdriver.com> 4353L: netdev@vger.kernel.org 4354S: Maintained 4355W: https://fedorahosted.org/dropwatch/ 4356F: net/core/drop_monitor.c 4357 4358NETWORKING [GENERAL] 4359M: "David S. Miller" <davem@davemloft.net> 4360L: netdev@vger.kernel.org 4361W: http://www.linuxfoundation.org/en/Net 4362W: http://patchwork.ozlabs.org/project/netdev/list/ 4363T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git 4364T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git 4365S: Maintained 4366F: net/ 4367F: include/net/ 4368F: include/linux/in.h 4369F: include/linux/net.h 4370F: include/linux/netdevice.h 4371 4372NETWORKING [IPv4/IPv6] 4373M: "David S. Miller" <davem@davemloft.net> 4374M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru> 4375M: "Pekka Savola (ipv6)" <pekkas@netcore.fi> 4376M: James Morris <jmorris@namei.org> 4377M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org> 4378M: Patrick McHardy <kaber@trash.net> 4379L: netdev@vger.kernel.org 4380T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git 4381S: Maintained 4382F: net/ipv4/ 4383F: net/ipv6/ 4384F: include/net/ip* 4385 4386NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK) 4387M: Paul Moore <paul.moore@hp.com> 4388L: netdev@vger.kernel.org 4389S: Maintained 4390 4391NETWORKING [WIRELESS] 4392M: "John W. Linville" <linville@tuxdriver.com> 4393L: linux-wireless@vger.kernel.org 4394Q: http://patchwork.kernel.org/project/linux-wireless/list/ 4395T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6.git 4396S: Maintained 4397F: net/mac80211/ 4398F: net/rfkill/ 4399F: net/wireless/ 4400F: include/net/ieee80211* 4401F: include/linux/wireless.h 4402F: include/net/iw_handler.h 4403F: drivers/net/wireless/ 4404 4405NETWORKING DRIVERS 4406L: netdev@vger.kernel.org 4407W: http://www.linuxfoundation.org/en/Net 4408T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6.git 4409T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6.git 4410S: Odd Fixes 4411F: drivers/net/ 4412F: include/linux/if_* 4413F: include/linux/*device.h 4414 4415NETXEN (1/10) GbE SUPPORT 4416M: Amit Kumar Salecha <amit.salecha@qlogic.com> 4417L: netdev@vger.kernel.org 4418W: http://www.qlogic.com 4419S: Supported 4420F: drivers/net/netxen/ 4421 4422NFS, SUNRPC, AND LOCKD CLIENTS 4423M: Trond Myklebust <Trond.Myklebust@netapp.com> 4424L: linux-nfs@vger.kernel.org 4425W: http://client.linux-nfs.org 4426T: git git://git.linux-nfs.org/pub/linux/nfs-2.6.git 4427S: Maintained 4428F: fs/lockd/ 4429F: fs/nfs/ 4430F: fs/nfs_common/ 4431F: net/sunrpc/ 4432F: include/linux/lockd/ 4433F: include/linux/nfs* 4434F: include/linux/sunrpc/ 4435 4436NI5010 NETWORK DRIVER 4437M: Jan-Pascal van Best <janpascal@vanbest.org> 4438M: Andreas Mohr <andi@lisas.de> 4439L: netdev@vger.kernel.org 4440S: Maintained 4441F: drivers/net/ni5010.* 4442 4443NILFS2 FILESYSTEM 4444M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp> 4445L: linux-nilfs@vger.kernel.org 4446W: http://www.nilfs.org/en/ 4447T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git 4448S: Supported 4449F: Documentation/filesystems/nilfs2.txt 4450F: fs/nilfs2/ 4451F: include/linux/nilfs2_fs.h 4452 4453NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER 4454M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> 4455W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ 4456S: Maintained 4457F: Documentation/scsi/NinjaSCSI.txt 4458F: drivers/scsi/pcmcia/nsp_* 4459 4460NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER 4461M: GOTO Masanori <gotom@debian.or.jp> 4462M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp> 4463W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/ 4464S: Maintained 4465F: Documentation/scsi/NinjaSCSI.txt 4466F: drivers/scsi/nsp32* 4467 4468NTFS FILESYSTEM 4469M: Anton Altaparmakov <anton@tuxera.com> 4470L: linux-ntfs-dev@lists.sourceforge.net 4471W: http://www.tuxera.com/ 4472T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs-2.6.git 4473S: Supported 4474F: Documentation/filesystems/ntfs.txt 4475F: fs/ntfs/ 4476 4477NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER 4478M: Antonino Daplas <adaplas@gmail.com> 4479L: linux-fbdev@vger.kernel.org 4480S: Maintained 4481F: drivers/video/riva/ 4482F: drivers/video/nvidia/ 4483 4484OMAP SUPPORT 4485M: Tony Lindgren <tony@atomide.com> 4486L: linux-omap@vger.kernel.org 4487W: http://www.muru.com/linux/omap/ 4488W: http://linux.omap.com/ 4489Q: http://patchwork.kernel.org/project/linux-omap/list/ 4490T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git 4491S: Maintained 4492F: arch/arm/*omap*/ 4493 4494OMAP CLOCK FRAMEWORK SUPPORT 4495M: Paul Walmsley <paul@pwsan.com> 4496L: linux-omap@vger.kernel.org 4497S: Maintained 4498F: arch/arm/*omap*/*clock* 4499 4500OMAP POWER MANAGEMENT SUPPORT 4501M: Kevin Hilman <khilman@deeprootsystems.com> 4502L: linux-omap@vger.kernel.org 4503S: Maintained 4504F: arch/arm/*omap*/*pm* 4505 4506OMAP AUDIO SUPPORT 4507M: Jarkko Nikula <jhnikula@gmail.com> 4508L: alsa-devel@alsa-project.org (subscribers-only) 4509L: linux-omap@vger.kernel.org 4510S: Maintained 4511F: sound/soc/omap/ 4512 4513OMAP FRAMEBUFFER SUPPORT 4514M: Tomi Valkeinen <tomi.valkeinen@nokia.com> 4515L: linux-fbdev@vger.kernel.org 4516L: linux-omap@vger.kernel.org 4517S: Maintained 4518F: drivers/video/omap/ 4519 4520OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2) 4521M: Tomi Valkeinen <tomi.valkeinen@nokia.com> 4522L: linux-omap@vger.kernel.org 4523L: linux-fbdev@vger.kernel.org 4524S: Maintained 4525F: drivers/video/omap2/ 4526F: Documentation/arm/OMAP/DSS 4527 4528OMAP MMC SUPPORT 4529M: Jarkko Lavinen <jarkko.lavinen@nokia.com> 4530L: linux-omap@vger.kernel.org 4531S: Maintained 4532F: drivers/mmc/host/omap.c 4533 4534OMAP HS MMC SUPPORT 4535M: Madhusudhan Chikkature <madhu.cr@ti.com> 4536L: linux-omap@vger.kernel.org 4537S: Maintained 4538F: drivers/mmc/host/omap_hsmmc.c 4539 4540OMAP RANDOM NUMBER GENERATOR SUPPORT 4541M: Deepak Saxena <dsaxena@plexity.net> 4542S: Maintained 4543F: drivers/char/hw_random/omap-rng.c 4544 4545OMAP HWMOD SUPPORT 4546M: Benoît Cousson <b-cousson@ti.com> 4547M: Paul Walmsley <paul@pwsan.com> 4548L: linux-omap@vger.kernel.org 4549S: Maintained 4550F: arch/arm/mach-omap2/omap_hwmod.c 4551F: arch/arm/plat-omap/include/plat/omap_hwmod.h 4552 4553OMAP HWMOD DATA FOR OMAP4-BASED DEVICES 4554M: Benoît Cousson <b-cousson@ti.com> 4555L: linux-omap@vger.kernel.org 4556S: Maintained 4557F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c 4558 4559OMAP USB SUPPORT 4560M: Felipe Balbi <balbi@ti.com> 4561M: David Brownell <dbrownell@users.sourceforge.net> 4562L: linux-usb@vger.kernel.org 4563L: linux-omap@vger.kernel.org 4564S: Maintained 4565F: drivers/usb/*/*omap* 4566F: arch/arm/*omap*/usb* 4567 4568OMFS FILESYSTEM 4569M: Bob Copeland <me@bobcopeland.com> 4570L: linux-karma-devel@lists.sourceforge.net 4571S: Maintained 4572F: Documentation/filesystems/omfs.txt 4573F: fs/omfs/ 4574 4575OMNIKEY CARDMAN 4000 DRIVER 4576M: Harald Welte <laforge@gnumonks.org> 4577S: Maintained 4578F: drivers/char/pcmcia/cm4000_cs.c 4579F: include/linux/cm4000_cs.h 4580 4581OMNIKEY CARDMAN 4040 DRIVER 4582M: Harald Welte <laforge@gnumonks.org> 4583S: Maintained 4584F: drivers/char/pcmcia/cm4040_cs.* 4585 4586OMNIVISION OV7670 SENSOR DRIVER 4587M: Jonathan Corbet <corbet@lwn.net> 4588L: linux-media@vger.kernel.org 4589T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 4590S: Maintained 4591F: drivers/media/video/ov7670.c 4592 4593ONENAND FLASH DRIVER 4594M: Kyungmin Park <kyungmin.park@samsung.com> 4595L: linux-mtd@lists.infradead.org 4596S: Maintained 4597F: drivers/mtd/onenand/ 4598F: include/linux/mtd/onenand*.h 4599 4600ONSTREAM SCSI TAPE DRIVER 4601M: Willem Riede <osst@riede.org> 4602L: osst-users@lists.sourceforge.net 4603L: linux-scsi@vger.kernel.org 4604S: Maintained 4605F: drivers/scsi/osst* 4606F: drivers/scsi/st* 4607 4608OPENCORES I2C BUS DRIVER 4609M: Peter Korsgaard <jacmet@sunsite.dk> 4610L: linux-i2c@vger.kernel.org 4611S: Maintained 4612F: Documentation/i2c/busses/i2c-ocores 4613F: drivers/i2c/busses/i2c-ocores.c 4614 4615OPEN FIRMWARE AND FLATTENED DEVICE TREE 4616M: Grant Likely <grant.likely@secretlab.ca> 4617L: devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers) 4618W: http://fdt.secretlab.ca 4619T: git git://git.secretlab.ca/git/linux-2.6.git 4620S: Maintained 4621F: drivers/of 4622F: include/linux/of*.h 4623K: of_get_property 4624 4625OPL4 DRIVER 4626M: Clemens Ladisch <clemens@ladisch.de> 4627L: alsa-devel@alsa-project.org (moderated for non-subscribers) 4628T: git git://git.alsa-project.org/alsa-kernel.git 4629S: Maintained 4630F: sound/drivers/opl4/ 4631 4632OPROFILE 4633M: Robert Richter <robert.richter@amd.com> 4634L: oprofile-list@lists.sf.net 4635S: Maintained 4636F: arch/*/include/asm/oprofile*.h 4637F: arch/*/oprofile/ 4638F: drivers/oprofile/ 4639F: include/linux/oprofile.h 4640 4641ORACLE CLUSTER FILESYSTEM 2 (OCFS2) 4642M: Mark Fasheh <mfasheh@suse.com> 4643M: Joel Becker <jlbec@evilplan.org> 4644L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers) 4645W: http://oss.oracle.com/projects/ocfs2/ 4646T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git 4647S: Supported 4648F: Documentation/filesystems/ocfs2.txt 4649F: Documentation/filesystems/dlmfs.txt 4650F: fs/ocfs2/ 4651 4652ORINOCO DRIVER 4653L: linux-wireless@vger.kernel.org 4654L: orinoco-users@lists.sourceforge.net 4655L: orinoco-devel@lists.sourceforge.net 4656W: http://linuxwireless.org/en/users/Drivers/orinoco 4657W: http://www.nongnu.org/orinoco/ 4658S: Orphan 4659F: drivers/net/wireless/orinoco/ 4660 4661OSD LIBRARY and FILESYSTEM 4662M: Boaz Harrosh <bharrosh@panasas.com> 4663M: Benny Halevy <bhalevy@panasas.com> 4664L: osd-dev@open-osd.org 4665W: http://open-osd.org 4666T: git git://git.open-osd.org/open-osd.git 4667S: Maintained 4668F: drivers/scsi/osd/ 4669F: include/scsi/osd_* 4670F: fs/exofs/ 4671 4672P54 WIRELESS DRIVER 4673M: Christian Lamparter <chunkeey@googlemail.com> 4674L: linux-wireless@vger.kernel.org 4675W: http://wireless.kernel.org/en/users/Drivers/p54 4676S: Maintained 4677F: drivers/net/wireless/p54/ 4678 4679PA SEMI ETHERNET DRIVER 4680M: Olof Johansson <olof@lixom.net> 4681L: netdev@vger.kernel.org 4682S: Maintained 4683F: drivers/net/pasemi_mac.* 4684 4685PA SEMI SMBUS DRIVER 4686M: Olof Johansson <olof@lixom.net> 4687L: linux-i2c@vger.kernel.org 4688S: Maintained 4689F: drivers/i2c/busses/i2c-pasemi.c 4690 4691PADATA PARALLEL EXECUTION MECHANISM 4692M: Steffen Klassert <steffen.klassert@secunet.com> 4693L: linux-kernel@vger.kernel.org 4694L: linux-crypto@vger.kernel.org 4695S: Maintained 4696F: kernel/padata.c 4697F: include/linux/padata.h 4698F: Documentation/padata.txt 4699 4700PANASONIC LAPTOP ACPI EXTRAS DRIVER 4701M: Harald Welte <laforge@gnumonks.org> 4702L: platform-driver-x86@vger.kernel.org 4703S: Maintained 4704F: drivers/platform/x86/panasonic-laptop.c 4705 4706PANASONIC MN10300/AM33/AM34 PORT 4707M: David Howells <dhowells@redhat.com> 4708M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com> 4709L: linux-am33-list@redhat.com (moderated for non-subscribers) 4710W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/ 4711S: Maintained 4712F: Documentation/mn10300/ 4713F: arch/mn10300/ 4714 4715PARALLEL PORT SUPPORT 4716L: linux-parport@lists.infradead.org (subscribers-only) 4717S: Orphan 4718F: drivers/parport/ 4719F: include/linux/parport*.h 4720F: drivers/char/ppdev.c 4721F: include/linux/ppdev.h 4722 4723PARAVIRT_OPS INTERFACE 4724M: Jeremy Fitzhardinge <jeremy@xensource.com> 4725M: Chris Wright <chrisw@sous-sol.org> 4726M: Alok Kataria <akataria@vmware.com> 4727M: Rusty Russell <rusty@rustcorp.com.au> 4728L: virtualization@lists.linux-foundation.org 4729S: Supported 4730F: Documentation/ia64/paravirt_ops.txt 4731F: arch/*/kernel/paravirt* 4732F: arch/*/include/asm/paravirt.h 4733 4734PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES 4735M: Tim Waugh <tim@cyberelk.net> 4736L: linux-parport@lists.infradead.org (subscribers-only) 4737W: http://www.torque.net/linux-pp.html 4738S: Maintained 4739F: Documentation/blockdev/paride.txt 4740F: drivers/block/paride/ 4741 4742PARISC ARCHITECTURE 4743M: Kyle McMartin <kyle@mcmartin.ca> 4744M: Helge Deller <deller@gmx.de> 4745M: "James E.J. Bottomley" <jejb@parisc-linux.org> 4746L: linux-parisc@vger.kernel.org 4747W: http://www.parisc-linux.org/ 4748Q: http://patchwork.kernel.org/project/linux-parisc/list/ 4749T: git git://git.kernel.org/pub/scm/linux/kernel/git/kyle/parisc-2.6.git 4750S: Maintained 4751F: arch/parisc/ 4752F: drivers/parisc/ 4753 4754PC87360 HARDWARE MONITORING DRIVER 4755M: Jim Cromie <jim.cromie@gmail.com> 4756L: lm-sensors@lm-sensors.org 4757S: Maintained 4758F: Documentation/hwmon/pc87360 4759F: drivers/hwmon/pc87360.c 4760 4761PC8736x GPIO DRIVER 4762M: Jim Cromie <jim.cromie@gmail.com> 4763S: Maintained 4764F: drivers/char/pc8736x_gpio.c 4765 4766PC87427 HARDWARE MONITORING DRIVER 4767M: Jean Delvare <khali@linux-fr.org> 4768L: lm-sensors@lm-sensors.org 4769S: Maintained 4770F: Documentation/hwmon/pc87427 4771F: drivers/hwmon/pc87427.c 4772 4773PCA9532 LED DRIVER 4774M: Riku Voipio <riku.voipio@iki.fi> 4775S: Maintained 4776F: drivers/leds/leds-pca9532.c 4777F: include/linux/leds-pca9532.h 4778 4779PCA9541 I2C BUS MASTER SELECTOR DRIVER 4780M: Guenter Roeck <guenter.roeck@ericsson.com> 4781L: linux-i2c@vger.kernel.org 4782S: Maintained 4783F: drivers/i2c/muxes/pca9541.c 4784 4785PCA9564/PCA9665 I2C BUS DRIVER 4786M: Wolfram Sang <w.sang@pengutronix.de> 4787L: linux-i2c@vger.kernel.org 4788S: Maintained 4789F: drivers/i2c/algos/i2c-algo-pca.c 4790F: drivers/i2c/busses/i2c-pca-* 4791F: include/linux/i2c-algo-pca.h 4792F: include/linux/i2c-pca-platform.h 4793 4794PCI ERROR RECOVERY 4795M: Linas Vepstas <linas@austin.ibm.com> 4796L: linux-pci@vger.kernel.org 4797S: Supported 4798F: Documentation/PCI/pci-error-recovery.txt 4799F: Documentation/powerpc/eeh-pci-error-recovery.txt 4800 4801PCI SUBSYSTEM 4802M: Jesse Barnes <jbarnes@virtuousgeek.org> 4803L: linux-pci@vger.kernel.org 4804Q: http://patchwork.kernel.org/project/linux-pci/list/ 4805T: git git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6.git 4806S: Supported 4807F: Documentation/PCI/ 4808F: drivers/pci/ 4809F: include/linux/pci* 4810 4811PCI HOTPLUG 4812M: Jesse Barnes <jbarnes@virtuousgeek.org> 4813L: linux-pci@vger.kernel.org 4814S: Supported 4815F: drivers/pci/hotplug 4816 4817PCMCIA SUBSYSTEM 4818P: Linux PCMCIA Team 4819L: linux-pcmcia@lists.infradead.org 4820W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia 4821T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git 4822S: Maintained 4823F: Documentation/pcmcia/ 4824F: drivers/pcmcia/ 4825F: include/pcmcia/ 4826 4827PCNET32 NETWORK DRIVER 4828M: Don Fry <pcnet32@frontier.com> 4829L: netdev@vger.kernel.org 4830S: Maintained 4831F: drivers/net/pcnet32.c 4832 4833PCRYPT PARALLEL CRYPTO ENGINE 4834M: Steffen Klassert <steffen.klassert@secunet.com> 4835L: linux-crypto@vger.kernel.org 4836S: Maintained 4837F: crypto/pcrypt.c 4838F: include/crypto/pcrypt.h 4839 4840PER-CPU MEMORY ALLOCATOR 4841M: Tejun Heo <tj@kernel.org> 4842M: Christoph Lameter <cl@linux-foundation.org> 4843L: linux-kernel@vger.kernel.org 4844T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git 4845S: Maintained 4846F: include/linux/percpu*.h 4847F: mm/percpu*.c 4848F: arch/*/include/asm/percpu.h 4849 4850PER-TASK DELAY ACCOUNTING 4851M: Balbir Singh <balbir@linux.vnet.ibm.com> 4852S: Maintained 4853F: include/linux/delayacct.h 4854F: kernel/delayacct.c 4855 4856PERFORMANCE EVENTS SUBSYSTEM 4857M: Peter Zijlstra <a.p.zijlstra@chello.nl> 4858M: Paul Mackerras <paulus@samba.org> 4859M: Ingo Molnar <mingo@elte.hu> 4860M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 4861S: Supported 4862F: kernel/perf_event*.c 4863F: include/linux/perf_event.h 4864F: arch/*/kernel/perf_event*.c 4865F: arch/*/kernel/*/perf_event*.c 4866F: arch/*/kernel/*/*/perf_event*.c 4867F: arch/*/include/asm/perf_event.h 4868F: arch/*/lib/perf_event*.c 4869F: arch/*/kernel/perf_callchain.c 4870F: tools/perf/ 4871 4872PERSONALITY HANDLING 4873M: Christoph Hellwig <hch@infradead.org> 4874L: linux-abi-devel@lists.sourceforge.net 4875S: Maintained 4876F: include/linux/personality.h 4877 4878PHONET PROTOCOL 4879M: Remi Denis-Courmont <remi.denis-courmont@nokia.com> 4880S: Supported 4881F: Documentation/networking/phonet.txt 4882F: include/linux/phonet.h 4883F: include/net/phonet/ 4884F: net/phonet/ 4885 4886PHRAM MTD DRIVER 4887M: Joern Engel <joern@lazybastard.org> 4888L: linux-mtd@lists.infradead.org 4889S: Maintained 4890F: drivers/mtd/devices/phram.c 4891 4892PKTCDVD DRIVER 4893M: Peter Osterlund <petero2@telia.com> 4894S: Maintained 4895F: drivers/block/pktcdvd.c 4896F: include/linux/pktcdvd.h 4897 4898PMC SIERRA MaxRAID DRIVER 4899M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com> 4900L: linux-scsi@vger.kernel.org 4901W: http://www.pmc-sierra.com/ 4902S: Supported 4903F: drivers/scsi/pmcraid.* 4904 4905PMC SIERRA PM8001 DRIVER 4906M: jack_wang@usish.com 4907M: lindar_liu@usish.com 4908L: linux-scsi@vger.kernel.org 4909S: Supported 4910F: drivers/scsi/pm8001/ 4911 4912POSIX CLOCKS and TIMERS 4913M: Thomas Gleixner <tglx@linutronix.de> 4914S: Supported 4915F: fs/timerfd.c 4916F: include/linux/timer* 4917F: kernel/*timer* 4918 4919POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS 4920M: Anton Vorontsov <cbou@mail.ru> 4921M: David Woodhouse <dwmw2@infradead.org> 4922T: git git://git.infradead.org/battery-2.6.git 4923S: Maintained 4924F: include/linux/power_supply.h 4925F: drivers/power/power_supply* 4926 4927PNP SUPPORT 4928M: Adam Belay <abelay@mit.edu> 4929M: Bjorn Helgaas <bjorn.helgaas@hp.com> 4930S: Maintained 4931F: drivers/pnp/ 4932 4933PNXxxxx I2C DRIVER 4934M: Vitaly Wool <vitalywool@gmail.com> 4935L: linux-i2c@vger.kernel.org 4936S: Maintained 4937F: drivers/i2c/busses/i2c-pnx.c 4938 4939PPP PROTOCOL DRIVERS AND COMPRESSORS 4940M: Paul Mackerras <paulus@samba.org> 4941L: linux-ppp@vger.kernel.org 4942S: Maintained 4943F: drivers/net/ppp_* 4944 4945PPP OVER ATM (RFC 2364) 4946M: Mitchell Blank Jr <mitch@sfgoth.com> 4947S: Maintained 4948F: net/atm/pppoatm.c 4949F: include/linux/atmppp.h 4950 4951PPP OVER ETHERNET 4952M: Michal Ostrowski <mostrows@earthlink.net> 4953S: Maintained 4954F: drivers/net/pppoe.c 4955F: drivers/net/pppox.c 4956 4957PPP OVER L2TP 4958M: James Chapman <jchapman@katalix.com> 4959S: Maintained 4960F: net/l2tp/l2tp_ppp.c 4961F: include/linux/if_pppol2tp.h 4962 4963PPS SUPPORT 4964M: Rodolfo Giometti <giometti@enneenne.com> 4965W: http://wiki.enneenne.com/index.php/LinuxPPS_support 4966L: linuxpps@ml.enneenne.com (subscribers-only) 4967S: Maintained 4968F: Documentation/pps/ 4969F: drivers/pps/ 4970F: include/linux/pps*.h 4971 4972PREEMPTIBLE KERNEL 4973M: Robert Love <rml@tech9.net> 4974L: kpreempt-tech@lists.sourceforge.net 4975W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel 4976S: Supported 4977F: Documentation/preempt-locking.txt 4978F: include/linux/preempt.h 4979 4980PRISM54 WIRELESS DRIVER 4981M: "Luis R. Rodriguez" <mcgrof@gmail.com> 4982L: linux-wireless@vger.kernel.org 4983W: http://wireless.kernel.org/en/users/Drivers/p54 4984S: Obsolete 4985F: drivers/net/wireless/prism54/ 4986 4987PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER 4988M: Mikael Pettersson <mikpe@it.uu.se> 4989L: linux-ide@vger.kernel.org 4990S: Maintained 4991F: drivers/ata/sata_promise.* 4992 4993PS3 NETWORK SUPPORT 4994M: Geoff Levand <geoff@infradead.org> 4995L: netdev@vger.kernel.org 4996L: cbe-oss-dev@lists.ozlabs.org 4997S: Maintained 4998F: drivers/net/ps3_gelic_net.* 4999 5000PS3 PLATFORM SUPPORT
5001M: Geoff Levand <geoff@infradead.org> 5002L: linuxppc-dev@lists.ozlabs.org 5003L: cbe-oss-dev@lists.ozlabs.org 5004S: Maintained 5005F: arch/powerpc/boot/ps3* 5006F: arch/powerpc/include/asm/lv1call.h 5007F: arch/powerpc/include/asm/ps3*.h 5008F: arch/powerpc/platforms/ps3/ 5009F: drivers/*/ps3* 5010F: drivers/ps3/ 5011F: drivers/rtc/rtc-ps3.c 5012F: drivers/usb/host/*ps3.c 5013F: sound/ppc/snd_ps3* 5014 5015PS3VRAM DRIVER 5016M: Jim Paris <jim@jtan.com> 5017L: cbe-oss-dev@lists.ozlabs.org 5018S: Maintained 5019F: drivers/block/ps3vram.c 5020 5021PTRACE SUPPORT 5022M: Roland McGrath <roland@redhat.com> 5023M: Oleg Nesterov <oleg@redhat.com> 5024S: Maintained 5025F: include/asm-generic/syscall.h 5026F: include/linux/ptrace.h 5027F: include/linux/regset.h 5028F: include/linux/tracehook.h 5029F: kernel/ptrace.c 5030 5031PVRUSB2 VIDEO4LINUX DRIVER 5032M: Mike Isely <isely@pobox.com> 5033L: pvrusb2@isely.net (subscribers-only) 5034L: linux-media@vger.kernel.org 5035W: http://www.isely.net/pvrusb2/ 5036T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5037S: Maintained 5038F: Documentation/video4linux/README.pvrusb2 5039F: drivers/media/video/pvrusb2/ 5040 5041PXA2xx/PXA3xx SUPPORT 5042M: Eric Miao <eric.y.miao@gmail.com> 5043M: Russell King <linux@arm.linux.org.uk> 5044L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5045S: Maintained 5046F: arch/arm/mach-pxa/ 5047F: drivers/pcmcia/pxa2xx* 5048F: drivers/spi/pxa2xx* 5049F: drivers/usb/gadget/pxa2* 5050F: include/sound/pxa2xx-lib.h 5051F: sound/arm/pxa* 5052F: sound/soc/pxa 5053 5054PXA168 SUPPORT 5055M: Eric Miao <eric.y.miao@gmail.com> 5056M: Jason Chagas <jason.chagas@marvell.com> 5057L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5058T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git 5059S: Maintained 5060 5061PXA910 SUPPORT 5062M: Eric Miao <eric.y.miao@gmail.com> 5063L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5064T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git 5065S: Maintained 5066 5067MMP2 SUPPORT (aka ARMADA610) 5068M: Haojian Zhuang <haojian.zhuang@marvell.com> 5069M: Eric Miao <eric.y.miao@gmail.com> 5070L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5071T: git git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6.git 5072S: Maintained 5073 5074PXA MMCI DRIVER 5075S: Orphan 5076 5077PXA RTC DRIVER 5078M: Robert Jarzmik <robert.jarzmik@free.fr> 5079L: rtc-linux@googlegroups.com 5080S: Maintained 5081 5082QLOGIC QLA1280 SCSI DRIVER 5083M: Michael Reed <mdr@sgi.com> 5084L: linux-scsi@vger.kernel.org 5085S: Maintained 5086F: drivers/scsi/qla1280.[ch] 5087 5088QLOGIC QLA2XXX FC-SCSI DRIVER 5089M: Andrew Vasquez <andrew.vasquez@qlogic.com> 5090M: linux-driver@qlogic.com 5091L: linux-scsi@vger.kernel.org 5092S: Supported 5093F: Documentation/scsi/LICENSE.qla2xxx 5094F: drivers/scsi/qla2xxx/ 5095 5096QLOGIC QLA4XXX iSCSI DRIVER 5097M: Ravi Anand <ravi.anand@qlogic.com> 5098M: Vikas Chaudhary <vikas.chaudhary@qlogic.com> 5099M: iscsi-driver@qlogic.com 5100L: linux-scsi@vger.kernel.org 5101S: Supported 5102F: drivers/scsi/qla4xxx/ 5103 5104QLOGIC QLA3XXX NETWORK DRIVER 5105M: Ron Mercer <ron.mercer@qlogic.com> 5106M: linux-driver@qlogic.com 5107L: netdev@vger.kernel.org 5108S: Supported 5109F: Documentation/networking/LICENSE.qla3xxx 5110F: drivers/net/qla3xxx.* 5111 5112QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER 5113M: Amit Kumar Salecha <amit.salecha@qlogic.com> 5114M: Anirban Chakraborty <anirban.chakraborty@qlogic.com> 5115M: linux-driver@qlogic.com 5116L: netdev@vger.kernel.org 5117S: Supported 5118F: drivers/net/qlcnic/ 5119 5120QLOGIC QLGE 10Gb ETHERNET DRIVER 5121M: Ron Mercer <ron.mercer@qlogic.com> 5122M: linux-driver@qlogic.com 5123L: netdev@vger.kernel.org 5124S: Supported 5125F: drivers/net/qlge/ 5126 5127QNX4 FILESYSTEM 5128M: Anders Larsen <al@alarsen.net> 5129W: http://www.alarsen.net/linux/qnx4fs/ 5130S: Maintained 5131F: fs/qnx4/ 5132F: include/linux/qnx4_fs.h 5133F: include/linux/qnxtypes.h 5134 5135RADOS BLOCK DEVICE (RBD) 5136F: include/linux/qnxtypes.h 5137M: Yehuda Sadeh <yehuda@hq.newdream.net> 5138M: Sage Weil <sage@newdream.net> 5139M: ceph-devel@vger.kernel.org 5140S: Supported 5141F: drivers/block/rbd.c 5142F: drivers/block/rbd_types.h 5143 5144RADEON FRAMEBUFFER DISPLAY DRIVER 5145M: Benjamin Herrenschmidt <benh@kernel.crashing.org> 5146L: linux-fbdev@vger.kernel.org 5147S: Maintained 5148F: drivers/video/aty/radeon* 5149F: include/linux/radeonfb.h 5150 5151RAGE128 FRAMEBUFFER DISPLAY DRIVER 5152M: Paul Mackerras <paulus@samba.org> 5153L: linux-fbdev@vger.kernel.org 5154S: Maintained 5155F: drivers/video/aty/aty128fb.c 5156 5157RALINK RT2X00 WIRELESS LAN DRIVER 5158P: rt2x00 project 5159M: Ivo van Doorn <IvDoorn@gmail.com> 5160M: Gertjan van Wingerde <gwingerde@gmail.com> 5161L: linux-wireless@vger.kernel.org 5162L: users@rt2x00.serialmonkey.com (moderated for non-subscribers) 5163W: http://rt2x00.serialmonkey.com/ 5164S: Maintained 5165T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git 5166F: drivers/net/wireless/rt2x00/ 5167 5168RAMDISK RAM BLOCK DEVICE DRIVER 5169M: Nick Piggin <npiggin@kernel.dk> 5170S: Maintained 5171F: Documentation/blockdev/ramdisk.txt 5172F: drivers/block/brd.c 5173 5174RANDOM NUMBER DRIVER 5175M: Matt Mackall <mpm@selenic.com> 5176S: Maintained 5177F: drivers/char/random.c 5178 5179RAPIDIO SUBSYSTEM 5180M: Matt Porter <mporter@kernel.crashing.org> 5181M: Alexandre Bounine <alexandre.bounine@idt.com> 5182S: Maintained 5183F: drivers/rapidio/ 5184 5185RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER 5186L: linux-wireless@vger.kernel.org 5187S: Orphan 5188F: drivers/net/wireless/ray* 5189 5190RCUTORTURE MODULE 5191M: Josh Triplett <josh@freedesktop.org> 5192M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 5193S: Supported 5194T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git 5195F: Documentation/RCU/torture.txt 5196F: kernel/rcutorture.c 5197 5198RDC R-321X SoC 5199M: Florian Fainelli <florian@openwrt.org> 5200S: Maintained 5201 5202RDC R6040 FAST ETHERNET DRIVER 5203M: Florian Fainelli <florian@openwrt.org> 5204L: netdev@vger.kernel.org 5205S: Maintained 5206F: drivers/net/r6040.c 5207 5208RDS - RELIABLE DATAGRAM SOCKETS 5209M: Andy Grover <andy.grover@oracle.com> 5210L: rds-devel@oss.oracle.com (moderated for non-subscribers) 5211S: Supported 5212F: net/rds/ 5213 5214READ-COPY UPDATE (RCU) 5215M: Dipankar Sarma <dipankar@in.ibm.com> 5216M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> 5217W: http://www.rdrop.com/users/paulmck/rclock/ 5218S: Supported 5219T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-2.6-rcu.git 5220F: Documentation/RCU/ 5221F: include/linux/rcu* 5222F: include/linux/srcu* 5223F: kernel/rcu* 5224F: kernel/srcu* 5225X: kernel/rcutorture.c 5226 5227REAL TIME CLOCK (RTC) SUBSYSTEM 5228M: Alessandro Zummo <a.zummo@towertech.it> 5229L: rtc-linux@googlegroups.com 5230Q: http://patchwork.ozlabs.org/project/rtc-linux/list/ 5231S: Maintained 5232F: Documentation/rtc.txt 5233F: drivers/rtc/ 5234F: include/linux/rtc.h 5235 5236REISERFS FILE SYSTEM 5237L: reiserfs-devel@vger.kernel.org 5238S: Supported 5239F: fs/reiserfs/ 5240 5241RFKILL 5242M: Johannes Berg <johannes@sipsolutions.net> 5243L: linux-wireless@vger.kernel.org 5244S: Maintained 5245F: Documentation/rfkill.txt 5246F: net/rfkill/ 5247 5248RICOH SMARTMEDIA/XD DRIVER 5249M: Maxim Levitsky <maximlevitsky@gmail.com> 5250S: Maintained 5251F: drivers/mtd/nand/r852.c 5252F: drivers/mtd/nand/r852.h 5253 5254RISCOM8 DRIVER 5255S: Orphan 5256F: Documentation/serial/riscom8.txt 5257F: drivers/char/riscom8* 5258 5259ROCKETPORT DRIVER 5260P: Comtrol Corp. 5261W: http://www.comtrol.com 5262S: Maintained 5263F: Documentation/serial/rocket.txt 5264F: drivers/char/rocket* 5265 5266ROSE NETWORK LAYER 5267M: Ralf Baechle <ralf@linux-mips.org> 5268L: linux-hams@vger.kernel.org 5269W: http://www.linux-ax25.org/ 5270S: Maintained 5271F: include/linux/rose.h 5272F: include/net/rose.h 5273F: net/rose/ 5274 5275RTL8180 WIRELESS DRIVER 5276M: "John W. Linville" <linville@tuxdriver.com> 5277L: linux-wireless@vger.kernel.org 5278W: http://linuxwireless.org/ 5279T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 5280S: Maintained 5281F: drivers/net/wireless/rtl818x/rtl8180/ 5282 5283RTL8187 WIRELESS DRIVER 5284M: Herton Ronaldo Krzesinski <herton@canonical.com> 5285M: Hin-Tak Leung <htl10@users.sourceforge.net> 5286M: Larry Finger <Larry.Finger@lwfinger.net> 5287L: linux-wireless@vger.kernel.org 5288W: http://linuxwireless.org/ 5289T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 5290S: Maintained 5291F: drivers/net/wireless/rtl818x/rtl8187/ 5292 5293RTL8192CE WIRELESS DRIVER 5294M: Larry Finger <Larry.Finger@lwfinger.net> 5295M: Chaoming Li <chaoming_li@realsil.com.cn> 5296L: linux-wireless@vger.kernel.org 5297W: http://linuxwireless.org/ 5298T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 5299S: Maintained 5300F: drivers/net/wireless/rtlwifi/ 5301F: drivers/net/wireless/rtlwifi/rtl8192ce/ 5302 5303S3 SAVAGE FRAMEBUFFER DRIVER 5304M: Antonino Daplas <adaplas@gmail.com> 5305L: linux-fbdev@vger.kernel.org 5306S: Maintained 5307F: drivers/video/savage/ 5308 5309S390 5310M: Martin Schwidefsky <schwidefsky@de.ibm.com> 5311M: Heiko Carstens <heiko.carstens@de.ibm.com> 5312M: linux390@de.ibm.com 5313L: linux-s390@vger.kernel.org 5314W: http://www.ibm.com/developerworks/linux/linux390/ 5315S: Supported 5316F: arch/s390/ 5317F: drivers/s390/ 5318F: fs/partitions/ibm.c 5319F: Documentation/s390/ 5320F: Documentation/DocBook/s390* 5321 5322S390 NETWORK DRIVERS 5323M: Ursula Braun <ursula.braun@de.ibm.com> 5324M: Frank Blaschka <blaschka@linux.vnet.ibm.com> 5325M: linux390@de.ibm.com 5326L: linux-s390@vger.kernel.org 5327W: http://www.ibm.com/developerworks/linux/linux390/ 5328S: Supported 5329F: drivers/s390/net/ 5330 5331S390 ZCRYPT DRIVER 5332M: Holger Dengler <hd@linux.vnet.ibm.com> 5333M: linux390@de.ibm.com 5334L: linux-s390@vger.kernel.org 5335W: http://www.ibm.com/developerworks/linux/linux390/ 5336S: Supported 5337F: drivers/s390/crypto/ 5338 5339S390 ZFCP DRIVER 5340M: Christof Schmitt <christof.schmitt@de.ibm.com> 5341M: Swen Schillig <swen@vnet.ibm.com> 5342M: linux390@de.ibm.com 5343L: linux-s390@vger.kernel.org 5344W: http://www.ibm.com/developerworks/linux/linux390/ 5345S: Supported 5346F: drivers/s390/scsi/zfcp_* 5347 5348S390 IUCV NETWORK LAYER 5349M: Ursula Braun <ursula.braun@de.ibm.com> 5350M: linux390@de.ibm.com 5351L: linux-s390@vger.kernel.org 5352W: http://www.ibm.com/developerworks/linux/linux390/ 5353S: Supported 5354F: drivers/s390/net/*iucv* 5355F: include/net/iucv/ 5356F: net/iucv/ 5357 5358S3C24XX SD/MMC Driver 5359M: Ben Dooks <ben-linux@fluff.org> 5360L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5361S: Supported 5362F: drivers/mmc/host/s3cmci.* 5363 5364SAA7146 VIDEO4LINUX-2 DRIVER 5365M: Michael Hunold <michael@mihu.de> 5366L: linux-media@vger.kernel.org 5367T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5368W: http://www.mihu.de/linux/saa7146 5369S: Maintained 5370F: drivers/media/common/saa7146* 5371F: drivers/media/video/*7146* 5372F: include/media/*7146* 5373 5374SAMSUNG AUDIO (ASoC) DRIVERS 5375M: Jassi Brar <jassi.brar@samsung.com> 5376L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5377S: Supported 5378F: sound/soc/samsung 5379 5380TIMEKEEPING, NTP 5381M: John Stultz <johnstul@us.ibm.com> 5382M: Thomas Gleixner <tglx@linutronix.de> 5383S: Supported 5384F: include/linux/clocksource.h 5385F: include/linux/time.h 5386F: include/linux/timex.h 5387F: include/linux/timekeeping.h 5388F: kernel/time/clocksource.c 5389F: kernel/time/time*.c 5390F: kernel/time/ntp.c 5391 5392TLG2300 VIDEO4LINUX-2 DRIVER 5393M: Huang Shijie <shijie8@gmail.com> 5394M: Kang Yong <kangyong@telegent.com> 5395M: Zhang Xiaobing <xbzhang@telegent.com> 5396S: Supported 5397F: drivers/media/video/tlg2300 5398 5399SC1200 WDT DRIVER 5400M: Zwane Mwaikambo <zwane@arm.linux.org.uk> 5401S: Maintained 5402F: drivers/watchdog/sc1200wdt.c 5403 5404SCHEDULER 5405M: Ingo Molnar <mingo@elte.hu> 5406M: Peter Zijlstra <peterz@infradead.org> 5407S: Maintained 5408F: kernel/sched* 5409F: include/linux/sched.h 5410 5411SCORE ARCHITECTURE 5412M: Chen Liqin <liqin.chen@sunplusct.com> 5413M: Lennox Wu <lennox.wu@gmail.com> 5414W: http://www.sunplusct.com 5415S: Supported 5416F: arch/score/ 5417 5418SCSI CDROM DRIVER 5419M: Jens Axboe <axboe@kernel.dk> 5420L: linux-scsi@vger.kernel.org 5421W: http://www.kernel.dk 5422S: Maintained 5423F: drivers/scsi/sr* 5424 5425SCSI RDMA PROTOCOL (SRP) INITIATOR 5426M: David Dillow <dillowda@ornl.gov> 5427L: linux-rdma@vger.kernel.org 5428S: Supported 5429W: http://www.openfabrics.org 5430Q: http://patchwork.kernel.org/project/linux-rdma/list/ 5431T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git 5432F: drivers/infiniband/ulp/srp/ 5433F: include/scsi/srp.h 5434 5435SCSI SG DRIVER 5436M: Doug Gilbert <dgilbert@interlog.com> 5437L: linux-scsi@vger.kernel.org 5438W: http://www.torque.net/sg 5439S: Maintained 5440F: drivers/scsi/sg.c 5441F: include/scsi/sg.h 5442 5443SCSI SUBSYSTEM 5444M: "James E.J. Bottomley" <James.Bottomley@suse.de> 5445L: linux-scsi@vger.kernel.org 5446T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git 5447T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git 5448T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git 5449S: Maintained 5450F: drivers/scsi/ 5451F: include/scsi/ 5452 5453SCSI TAPE DRIVER 5454M: Kai Mäkisara <Kai.Makisara@kolumbus.fi> 5455L: linux-scsi@vger.kernel.org 5456S: Maintained 5457F: Documentation/scsi/st.txt 5458F: drivers/scsi/st* 5459 5460SCTP PROTOCOL 5461M: Vlad Yasevich <vladislav.yasevich@hp.com> 5462M: Sridhar Samudrala <sri@us.ibm.com> 5463L: linux-sctp@vger.kernel.org 5464W: http://lksctp.sourceforge.net 5465S: Supported 5466F: Documentation/networking/sctp.txt 5467F: include/linux/sctp.h 5468F: include/net/sctp/ 5469F: net/sctp/ 5470 5471SCx200 CPU SUPPORT 5472M: Jim Cromie <jim.cromie@gmail.com> 5473S: Odd Fixes 5474F: Documentation/i2c/busses/scx200_acb 5475F: arch/x86/kernel/scx200_32.c 5476F: drivers/watchdog/scx200_wdt.c 5477F: drivers/i2c/busses/scx200* 5478F: drivers/mtd/maps/scx200_docflash.c 5479F: include/linux/scx200.h 5480 5481SCx200 GPIO DRIVER 5482M: Jim Cromie <jim.cromie@gmail.com> 5483S: Maintained 5484F: drivers/char/scx200_gpio.c 5485F: include/linux/scx200_gpio.h 5486 5487SCx200 HRT CLOCKSOURCE DRIVER 5488M: Jim Cromie <jim.cromie@gmail.com> 5489S: Maintained 5490F: drivers/clocksource/scx200_hrt.c 5491 5492SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER 5493M: Sascha Sommer <saschasommer@freenet.de> 5494L: sdricohcs-devel@lists.sourceforge.net (subscribers-only) 5495S: Maintained 5496F: drivers/mmc/host/sdricoh_cs.c 5497 5498SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER 5499M: Chris Ball <cjb@laptop.org> 5500L: linux-mmc@vger.kernel.org 5501T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git 5502S: Maintained 5503F: drivers/mmc/host/sdhci.* 5504 5505SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF) 5506M: Anton Vorontsov <avorontsov@ru.mvista.com> 5507L: linuxppc-dev@lists.ozlabs.org 5508L: linux-mmc@vger.kernel.org 5509S: Maintained 5510F: drivers/mmc/host/sdhci-of.* 5511 5512SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER 5513M: Ben Dooks <ben-linux@fluff.org> 5514L: linux-mmc@vger.kernel.org 5515S: Maintained 5516F: drivers/mmc/host/sdhci-s3c.c 5517 5518SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER 5519M: Viresh Kumar <viresh.kumar@st.com> 5520L: linux-mmc@vger.kernel.org 5521S: Maintained 5522F: drivers/mmc/host/sdhci-spear.c 5523 5524SECURITY SUBSYSTEM 5525M: James Morris <jmorris@namei.org> 5526L: linux-security-module@vger.kernel.org (suggested Cc:) 5527T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git 5528W: http://security.wiki.kernel.org/ 5529S: Supported 5530F: security/ 5531 5532SECURITY CONTACT 5533M: Security Officers <security@kernel.org> 5534S: Supported 5535 5536SELINUX SECURITY MODULE 5537M: Stephen Smalley <sds@tycho.nsa.gov> 5538M: James Morris <jmorris@namei.org> 5539M: Eric Paris <eparis@parisplace.org> 5540L: selinux@tycho.nsa.gov (subscribers-only, general discussion) 5541W: http://selinuxproject.org 5542T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/security-testing-2.6.git 5543S: Supported 5544F: include/linux/selinux* 5545F: security/selinux/ 5546 5547APPARMOR SECURITY MODULE 5548M: John Johansen <john.johansen@canonical.com> 5549L: apparmor@lists.ubuntu.com (subscribers-only, general discussion) 5550W: apparmor.wiki.kernel.org 5551T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git 5552S: Supported 5553F: security/apparmor/ 5554 5555SENSABLE PHANTOM 5556M: Jiri Slaby <jirislaby@gmail.com> 5557S: Maintained 5558F: drivers/misc/phantom.c 5559F: include/linux/phantom.h 5560 5561SERIAL ATA (SATA) SUBSYSTEM 5562M: Jeff Garzik <jgarzik@pobox.com> 5563L: linux-ide@vger.kernel.org 5564T: git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git 5565S: Supported 5566F: drivers/ata/ 5567F: include/linux/ata.h 5568F: include/linux/libata.h 5569 5570SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER 5571M: Jayamohan Kallickal <jayamohank@serverengines.com> 5572L: linux-scsi@vger.kernel.org 5573W: http://www.serverengines.com 5574S: Supported 5575F: drivers/scsi/be2iscsi/ 5576 5577SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER 5578M: Sathya Perla <sathya.perla@emulex.com> 5579M: Subbu Seetharaman <subbu.seetharaman@emulex.com> 5580M: Ajit Khaparde <ajit.khaparde@emulex.com> 5581L: netdev@vger.kernel.org 5582W: http://www.emulex.com 5583S: Supported 5584F: drivers/net/benet/ 5585 5586SFC NETWORK DRIVER 5587M: Solarflare linux maintainers <linux-net-drivers@solarflare.com> 5588M: Steve Hodgson <shodgson@solarflare.com> 5589M: Ben Hutchings <bhutchings@solarflare.com> 5590L: netdev@vger.kernel.org 5591S: Supported 5592F: drivers/net/sfc/ 5593 5594SGI GRU DRIVER 5595M: Jack Steiner <steiner@sgi.com> 5596S: Maintained 5597F: drivers/misc/sgi-gru/ 5598 5599SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER 5600M: Pat Gefre <pfg@sgi.com> 5601L: linux-ia64@vger.kernel.org 5602S: Supported 5603F: Documentation/ia64/serial.txt 5604F: drivers/tty/serial/ioc?_serial.c 5605F: include/linux/ioc?.h 5606 5607SGI VISUAL WORKSTATION 320 AND 540 5608M: Andrey Panin <pazke@donpac.ru> 5609L: linux-visws-devel@lists.sf.net 5610W: http://linux-visws.sf.net 5611S: Maintained for 2.6. 5612F: Documentation/sgi-visws.txt 5613 5614SGI XP/XPC/XPNET DRIVER 5615M: Robin Holt <holt@sgi.com> 5616S: Maintained 5617F: drivers/misc/sgi-xp/ 5618 5619SHARP LH SUPPORT (LH7952X & LH7A40X) 5620M: Marc Singer <elf@buici.com> 5621W: http://projects.buici.com/arm 5622L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers) 5623S: Maintained 5624F: Documentation/arm/Sharp-LH/ADC-LH7-Touchscreen 5625F: arch/arm/mach-lh7a40x/ 5626F: drivers/tty/serial/serial_lh7a40x.c 5627F: drivers/usb/gadget/lh7a40* 5628F: drivers/usb/host/ohci-lh7a40* 5629 5630SIMPLE FIRMWARE INTERFACE (SFI) 5631M: Len Brown <lenb@kernel.org> 5632L: sfi-devel@simplefirmware.org 5633W: http://simplefirmware.org/ 5634T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git 5635S: Supported 5636F: arch/x86/kernel/*sfi* 5637F: drivers/sfi/ 5638F: include/linux/sfi*.h 5639 5640SIMTEC EB110ATX (Chalice CATS) 5641P: Ben Dooks 5642P: Vincent Sanders <vince@simtec.co.uk> 5643M: Simtec Linux Team <linux@simtec.co.uk> 5644W: http://www.simtec.co.uk/products/EB110ATX/ 5645S: Supported 5646 5647SIMTEC EB2410ITX (BAST) 5648P: Ben Dooks 5649P: Vincent Sanders <vince@simtec.co.uk> 5650M: Simtec Linux Team <linux@simtec.co.uk> 5651W: http://www.simtec.co.uk/products/EB2410ITX/ 5652S: Supported 5653F: arch/arm/mach-s3c2410/mach-bast.c 5654F: arch/arm/mach-s3c2410/bast-ide.c 5655F: arch/arm/mach-s3c2410/bast-irq.c 5656 5657TI DAVINCI MACHINE SUPPORT 5658M: Kevin Hilman <khilman@deeprootsystems.com> 5659L: davinci-linux-open-source@linux.davincidsp.com (subscribers-only) 5660Q: http://patchwork.kernel.org/project/linux-davinci/list/ 5661S: Supported 5662F: arch/arm/mach-davinci 5663 5664SIS 190 ETHERNET DRIVER 5665M: Francois Romieu <romieu@fr.zoreil.com> 5666L: netdev@vger.kernel.org 5667S: Maintained 5668F: drivers/net/sis190.c 5669 5670SIS 900/7016 FAST ETHERNET DRIVER 5671M: Daniele Venzano <venza@brownhat.org> 5672W: http://www.brownhat.org/sis900.html 5673L: netdev@vger.kernel.org 5674S: Maintained 5675F: drivers/net/sis900.* 5676 5677SIS 96X I2C/SMBUS DRIVER 5678M: "Mark M. Hoffman" <mhoffman@lightlink.com> 5679L: linux-i2c@vger.kernel.org 5680S: Maintained 5681F: Documentation/i2c/busses/i2c-sis96x 5682F: drivers/i2c/busses/i2c-sis96x.c 5683 5684SIS FRAMEBUFFER DRIVER 5685M: Thomas Winischhofer <thomas@winischhofer.net> 5686W: http://www.winischhofer.net/linuxsisvga.shtml 5687S: Maintained 5688F: Documentation/fb/sisfb.txt 5689F: drivers/video/sis/ 5690F: include/video/sisfb.h 5691 5692SIS USB2VGA DRIVER 5693M: Thomas Winischhofer <thomas@winischhofer.net> 5694W: http://www.winischhofer.at/linuxsisusbvga.shtml 5695S: Maintained 5696F: drivers/usb/misc/sisusbvga/ 5697 5698SKGE, SKY2 10/100/1000 GIGABIT ETHERNET DRIVERS 5699M: Stephen Hemminger <shemminger@linux-foundation.org> 5700L: netdev@vger.kernel.org 5701S: Maintained 5702F: drivers/net/skge.* 5703F: drivers/net/sky2.* 5704 5705SLAB ALLOCATOR 5706M: Christoph Lameter <cl@linux-foundation.org> 5707M: Pekka Enberg <penberg@kernel.org> 5708M: Matt Mackall <mpm@selenic.com> 5709L: linux-mm@kvack.org 5710S: Maintained 5711F: include/linux/sl?b*.h 5712F: mm/sl?b.c 5713 5714SMC91x ETHERNET DRIVER 5715M: Nicolas Pitre <nico@fluxnic.net> 5716S: Odd Fixes 5717F: drivers/net/smc91x.* 5718 5719SMM665 HARDWARE MONITOR DRIVER 5720M: Guenter Roeck <linux@roeck-us.net> 5721L: lm-sensors@lm-sensors.org 5722S: Maintained 5723F: Documentation/hwmon/smm665 5724F: drivers/hwmon/smm665.c 5725 5726SMSC EMC2103 HARDWARE MONITOR DRIVER 5727M: Steve Glendinning <steve.glendinning@smsc.com> 5728L: lm-sensors@lm-sensors.org 5729S: Supported 5730F: Documentation/hwmon/emc2103 5731F: drivers/hwmon/emc2103.c 5732 5733SMSC47B397 HARDWARE MONITOR DRIVER 5734M: "Mark M. Hoffman" <mhoffman@lightlink.com> 5735L: lm-sensors@lm-sensors.org 5736S: Maintained 5737F: Documentation/hwmon/smsc47b397 5738F: drivers/hwmon/smsc47b397.c 5739 5740SMSC911x ETHERNET DRIVER 5741M: Steve Glendinning <steve.glendinning@smsc.com> 5742L: netdev@vger.kernel.org 5743S: Supported 5744F: include/linux/smsc911x.h 5745F: drivers/net/smsc911x.* 5746 5747SMSC9420 PCI ETHERNET DRIVER 5748M: Steve Glendinning <steve.glendinning@smsc.com> 5749L: netdev@vger.kernel.org 5750S: Supported 5751F: drivers/net/smsc9420.* 5752 5753SN-IA64 (Itanium) SUB-PLATFORM 5754M: Jes Sorensen <jes@sgi.com> 5755L: linux-altix@sgi.com 5756L: linux-ia64@vger.kernel.org 5757W: http://www.sgi.com/altix 5758S: Maintained 5759F: arch/ia64/sn/ 5760 5761SOC-CAMERA V4L2 SUBSYSTEM 5762M: Guennadi Liakhovetski <g.liakhovetski@gmx.de> 5763L: linux-media@vger.kernel.org 5764T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 5765S: Maintained 5766F: include/media/v4l2* 5767F: drivers/media/video/v4l2* 5768 5769SOEKRIS NET48XX LED SUPPORT 5770M: Chris Boot <bootc@bootc.net> 5771S: Maintained 5772F: drivers/leds/leds-net48xx.c 5773 5774SOFTWARE RAID (Multiple Disks) SUPPORT 5775M: Neil Brown <neilb@suse.de> 5776L: linux-raid@vger.kernel.org 5777S: Supported 5778F: drivers/md/ 5779F: include/linux/raid/ 5780 5781SONIC NETWORK DRIVER 5782M: Thomas Bogendoerfer <tsbogend@alpha.franken.de> 5783L: netdev@vger.kernel.org 5784S: Maintained 5785F: drivers/net/sonic.* 5786 5787SONICS SILICON BACKPLANE DRIVER (SSB) 5788M: Michael Buesch <mb@bu3sch.de> 5789L: netdev@vger.kernel.org 5790S: Maintained 5791F: drivers/ssb/ 5792F: include/linux/ssb/ 5793 5794SONY VAIO CONTROL DEVICE DRIVER 5795M: Mattia Dongili <malattia@linux.it> 5796L: platform-driver-x86@vger.kernel.org 5797W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers 5798S: Maintained 5799F: Documentation/laptops/sony-laptop.txt 5800F: drivers/char/sonypi.c 5801F: drivers/platform/x86/sony-laptop.c 5802F: include/linux/sony-laptop.h 5803 5804SONY MEMORYSTICK CARD SUPPORT 5805M: Alex Dubov <oakad@yahoo.com> 5806W: http://tifmxx.berlios.de/ 5807S: Maintained 5808F: drivers/memstick/host/tifm_ms.c 5809 5810SOUND 5811M: Jaroslav Kysela <perex@perex.cz> 5812M: Takashi Iwai <tiwai@suse.de> 5813L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5814W: http://www.alsa-project.org/ 5815T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6.git 5816T: git git://git.alsa-project.org/alsa-kernel.git 5817S: Maintained 5818F: Documentation/sound/ 5819F: include/sound/ 5820F: sound/ 5821 5822SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC) 5823M: Liam Girdwood <lrg@slimlogic.co.uk> 5824M: Mark Brown <broonie@opensource.wolfsonmicro.com> 5825T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound-2.6.git 5826L: alsa-devel@alsa-project.org (moderated for non-subscribers) 5827W: http://alsa-project.org/main/index.php/ASoC 5828S: Supported 5829F: sound/soc/ 5830F: include/sound/soc* 5831 5832SPARC + UltraSPARC (sparc/sparc64) 5833M: "David S. Miller" <davem@davemloft.net> 5834L: sparclinux@vger.kernel.org 5835Q: http://patchwork.ozlabs.org/project/sparclinux/list/ 5836T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git 5837T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git 5838S: Maintained 5839F: arch/sparc/ 5840F: drivers/sbus/ 5841 5842SPARC SERIAL DRIVERS 5843M: "David S. Miller" <davem@davemloft.net> 5844L: sparclinux@vger.kernel.org 5845T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-2.6.git 5846T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next-2.6.git 5847S: Maintained 5848F: drivers/tty/serial/suncore.c 5849F: drivers/tty/serial/suncore.h 5850F: drivers/tty/serial/sunhv.c 5851F: drivers/tty/serial/sunsab.c 5852F: drivers/tty/serial/sunsab.h 5853F: drivers/tty/serial/sunsu.c 5854F: drivers/tty/serial/sunzilog.c 5855F: drivers/tty/serial/sunzilog.h 5856 5857SPEAR PLATFORM SUPPORT 5858M: Viresh Kumar <viresh.kumar@st.com> 5859W: http://www.st.com/spear 5860S: Maintained 5861F: arch/arm/plat-spear/ 5862 5863SPEAR3XX MACHINE SUPPORT 5864M: Viresh Kumar <viresh.kumar@st.com> 5865W: http://www.st.com/spear 5866S: Maintained 5867F: arch/arm/mach-spear3xx/ 5868 5869SPEAR6XX MACHINE SUPPORT 5870M: Rajeev Kumar <rajeev-dlh.kumar@st.com> 5871W: http://www.st.com/spear 5872S: Maintained 5873F: arch/arm/mach-spear6xx/ 5874 5875SPEAR CLOCK FRAMEWORK SUPPORT 5876M: Viresh Kumar <viresh.kumar@st.com> 5877W: http://www.st.com/spear 5878S: Maintained 5879F: arch/arm/mach-spear*/clock.c 5880F: arch/arm/mach-spear*/include/mach/clkdev.h 5881F: arch/arm/plat-spear/clock.c 5882F: arch/arm/plat-spear/include/plat/clkdev.h 5883F: arch/arm/plat-spear/include/plat/clock.h 5884 5885SPEAR PAD MULTIPLEXING SUPPORT 5886M: Viresh Kumar <viresh.kumar@st.com> 5887W: http://www.st.com/spear 5888S: Maintained 5889F: arch/arm/plat-spear/include/plat/padmux.h 5890F: arch/arm/plat-spear/padmux.c 5891F: arch/arm/mach-spear*/spear*xx.c 5892F: arch/arm/mach-spear*/include/mach/generic.h 5893F: arch/arm/mach-spear3xx/spear3*0.c 5894F: arch/arm/mach-spear3xx/spear3*0_evb.c 5895F: arch/arm/mach-spear6xx/spear600.c 5896F: arch/arm/mach-spear6xx/spear600_evb.c 5897 5898SPECIALIX IO8+ MULTIPORT SERIAL CARD DRIVER 5899M: Roger Wolff <R.E.Wolff@BitWizard.nl> 5900S: Supported 5901F: Documentation/serial/specialix.txt 5902F: drivers/char/specialix* 5903 5904SPI SUBSYSTEM 5905M: David Brownell <dbrownell@users.sourceforge.net> 5906M: Grant Likely <grant.likely@secretlab.ca> 5907L: spi-devel-general@lists.sourceforge.net 5908Q: http://patchwork.kernel.org/project/spi-devel-general/list/ 5909T: git git://git.secretlab.ca/git/linux-2.6.git 5910S: Maintained 5911F: Documentation/spi/ 5912F: drivers/spi/ 5913F: include/linux/spi/ 5914 5915SPIDERNET NETWORK DRIVER for CELL 5916M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp> 5917M: Jens Osterkamp <jens@de.ibm.com> 5918L: netdev@vger.kernel.org 5919S: Supported 5920F: Documentation/networking/spider_net.txt 5921F: drivers/net/spider_net* 5922 5923SPU FILE SYSTEM 5924M: Jeremy Kerr <jk@ozlabs.org> 5925L: linuxppc-dev@lists.ozlabs.org 5926L: cbe-oss-dev@lists.ozlabs.org 5927W: http://www.ibm.com/developerworks/power/cell/ 5928S: Supported 5929F: Documentation/filesystems/spufs.txt 5930F: arch/powerpc/platforms/cell/spufs/ 5931 5932SQUASHFS FILE SYSTEM 5933M: Phillip Lougher <phillip@lougher.demon.co.uk> 5934L: squashfs-devel@lists.sourceforge.net (subscribers-only) 5935W: http://squashfs.org.uk 5936S: Maintained 5937F: Documentation/filesystems/squashfs.txt 5938F: fs/squashfs/ 5939 5940SRM (Alpha) environment access 5941M: Jan-Benedict Glaw <jbglaw@lug-owl.de> 5942S: Maintained 5943F: arch/alpha/kernel/srm_env.c 5944 5945STABLE BRANCH 5946M: Greg Kroah-Hartman <greg@kroah.com> 5947M: Chris Wright <chrisw@sous-sol.org> 5948L: stable@kernel.org 5949S: Maintained 5950 5951STAGING SUBSYSTEM 5952M: Greg Kroah-Hartman <gregkh@suse.de> 5953T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging-2.6.git 5954L: devel@driverdev.osuosl.org 5955S: Maintained 5956F: drivers/staging/ 5957 5958STARFIRE/DURALAN NETWORK DRIVER 5959M: Ion Badulescu <ionut@badula.org> 5960S: Odd Fixes 5961F: drivers/net/starfire* 5962 5963SUN3/3X 5964M: Sam Creasey <sammy@sammy.net> 5965W: http://sammy.net/sun3/ 5966S: Maintained 5967F: arch/m68k/kernel/*sun3* 5968F: arch/m68k/sun3*/ 5969F: arch/m68k/include/asm/sun3* 5970 5971SUPERH 5972M: Paul Mundt <lethal@linux-sh.org> 5973L: linux-sh@vger.kernel.org 5974W: http://www.linux-sh.org 5975Q: http://patchwork.kernel.org/project/linux-sh/list/ 5976T: git git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6.git sh-latest 5977S: Supported 5978F: Documentation/sh/ 5979F: arch/sh/ 5980F: drivers/sh/ 5981 5982SUSPEND TO RAM 5983M: Len Brown <len.brown@intel.com> 5984M: Pavel Machek <pavel@ucw.cz> 5985M: "Rafael J. Wysocki" <rjw@sisk.pl> 5986L: linux-pm@lists.linux-foundation.org 5987S: Supported 5988F: Documentation/power/ 5989F: arch/x86/kernel/acpi/ 5990F: drivers/base/power/ 5991F: kernel/power/ 5992F: include/linux/suspend.h 5993F: include/linux/freezer.h 5994F: include/linux/pm.h 5995 5996SVGA HANDLING 5997M: Martin Mares <mj@ucw.cz> 5998L: linux-video@atrey.karlin.mff.cuni.cz 5999S: Maintained 6000F: Documentation/svga.txt
6001F: arch/x86/boot/video* 6002 6003SYSV FILESYSTEM 6004M: Christoph Hellwig <hch@infradead.org> 6005S: Maintained 6006F: Documentation/filesystems/sysv-fs.txt 6007F: fs/sysv/ 6008F: include/linux/sysv_fs.h 6009 6010TASKSTATS STATISTICS INTERFACE 6011M: Balbir Singh <balbir@linux.vnet.ibm.com> 6012S: Maintained 6013F: Documentation/accounting/taskstats* 6014F: include/linux/taskstats* 6015F: kernel/taskstats.c 6016 6017TC CLASSIFIER 6018M: Jamal Hadi Salim <hadi@cyberus.ca> 6019L: netdev@vger.kernel.org 6020S: Maintained 6021F: include/linux/pkt_cls.h 6022F: include/net/pkt_cls.h 6023F: net/sched/ 6024 6025TCP LOW PRIORITY MODULE 6026M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com> 6027M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com> 6028W: http://tcp-lp-mod.sourceforge.net/ 6029S: Maintained 6030F: net/ipv4/tcp_lp.c 6031 6032TEGRA SUPPORT 6033M: Colin Cross <ccross@android.com> 6034M: Erik Gilling <konkers@android.com> 6035M: Olof Johansson <olof@lixom.net> 6036L: linux-tegra@vger.kernel.org 6037T: git git://android.git.kernel.org/kernel/tegra.git 6038S: Supported 6039F: arch/arm/mach-tegra 6040 6041TEHUTI ETHERNET DRIVER 6042M: Alexander Indenbaum <baum@tehutinetworks.net> 6043M: Andy Gospodarek <andy@greyhouse.net> 6044L: netdev@vger.kernel.org 6045S: Supported 6046F: drivers/net/tehuti* 6047 6048Telecom Clock Driver for MCPL0010 6049M: Mark Gross <mark.gross@intel.com> 6050S: Supported 6051F: drivers/char/tlclk.c 6052 6053TENSILICA XTENSA PORT (xtensa) 6054M: Chris Zankel <chris@zankel.net> 6055S: Maintained 6056F: arch/xtensa/ 6057 6058THINKPAD ACPI EXTRAS DRIVER 6059M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br> 6060L: ibm-acpi-devel@lists.sourceforge.net 6061L: platform-driver-x86@vger.kernel.org 6062W: http://ibm-acpi.sourceforge.net 6063W: http://thinkwiki.org/wiki/Ibm-acpi 6064T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git 6065S: Maintained 6066F: drivers/platform/x86/thinkpad_acpi.c 6067 6068TI FLASH MEDIA INTERFACE DRIVER 6069M: Alex Dubov <oakad@yahoo.com> 6070S: Maintained 6071F: drivers/misc/tifm* 6072F: drivers/mmc/host/tifm_sd.c 6073F: include/linux/tifm.h 6074 6075TI TWL4030 SERIES SOC CODEC DRIVER 6076M: Peter Ujfalusi <peter.ujfalusi@nokia.com> 6077L: alsa-devel@alsa-project.org (moderated for non-subscribers) 6078S: Maintained 6079F: sound/soc/codecs/twl4030* 6080 6081TIPC NETWORK LAYER 6082M: Jon Maloy <jon.maloy@ericsson.com> 6083M: Allan Stephens <allan.stephens@windriver.com> 6084L: tipc-discussion@lists.sourceforge.net 6085W: http://tipc.sourceforge.net/ 6086W: http://tipc.cslab.ericsson.net/ 6087T: git git://tipc.cslab.ericsson.net/pub/git/tipc.git 6088S: Maintained 6089F: include/linux/tipc*.h 6090F: include/net/tipc/ 6091F: net/tipc/ 6092 6093TILE ARCHITECTURE 6094M: Chris Metcalf <cmetcalf@tilera.com> 6095W: http://www.tilera.com/scm/ 6096S: Supported 6097F: arch/tile/ 6098F: drivers/char/hvc_tile.c 6099F: drivers/net/tile/ 6100 6101TLAN NETWORK DRIVER 6102M: Samuel Chessman <chessman@tux.org> 6103L: tlan-devel@lists.sourceforge.net (subscribers-only) 6104W: http://sourceforge.net/projects/tlan/ 6105S: Maintained 6106F: Documentation/networking/tlan.txt 6107F: drivers/net/tlan.* 6108 6109TOMOYO SECURITY MODULE 6110M: Kentaro Takeda <takedakn@nttdata.co.jp> 6111M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> 6112L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English) 6113L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English) 6114L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese) 6115L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese) 6116W: http://tomoyo.sourceforge.jp/ 6117T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.3.x/tomoyo-lsm/patches/ 6118S: Maintained 6119F: security/tomoyo/ 6120 6121TOPSTAR LAPTOP EXTRAS DRIVER 6122M: Herton Ronaldo Krzesinski <herton@canonical.com> 6123L: platform-driver-x86@vger.kernel.org 6124S: Maintained 6125F: drivers/platform/x86/topstar-laptop.c 6126 6127TOSHIBA ACPI EXTRAS DRIVER 6128L: platform-driver-x86@vger.kernel.org 6129S: Orphan 6130F: drivers/platform/x86/toshiba_acpi.c 6131 6132TOSHIBA SMM DRIVER 6133M: Jonathan Buzzard <jonathan@buzzard.org.uk> 6134L: tlinux-users@tce.toshiba-dme.co.jp 6135W: http://www.buzzard.org.uk/toshiba/ 6136S: Maintained 6137F: drivers/char/toshiba.c 6138F: include/linux/toshiba.h 6139 6140TMIO MMC DRIVER 6141M: Ian Molton <ian@mnementh.co.uk> 6142S: Maintained 6143F: drivers/mmc/host/tmio_mmc.* 6144 6145TMPFS (SHMEM FILESYSTEM) 6146M: Hugh Dickins <hughd@google.com> 6147L: linux-mm@kvack.org 6148S: Maintained 6149F: include/linux/shmem_fs.h 6150F: mm/shmem.c 6151 6152TPM DEVICE DRIVER 6153M: Debora Velarde <debora@linux.vnet.ibm.com> 6154M: Rajiv Andrade <srajiv@linux.vnet.ibm.com> 6155W: http://tpmdd.sourceforge.net 6156M: Marcel Selhorst <m.selhorst@sirrix.com> 6157W: http://www.sirrix.com 6158L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers) 6159S: Maintained 6160F: drivers/char/tpm/ 6161 6162TRACING 6163M: Steven Rostedt <rostedt@goodmis.org> 6164M: Frederic Weisbecker <fweisbec@gmail.com> 6165M: Ingo Molnar <mingo@redhat.com> 6166T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git perf/core 6167S: Maintained 6168F: Documentation/trace/ftrace.txt 6169F: arch/*/*/*/ftrace.h 6170F: arch/*/kernel/ftrace.c 6171F: include/*/ftrace.h 6172F: include/linux/trace*.h 6173F: include/trace/ 6174F: kernel/trace/ 6175 6176TRIVIAL PATCHES 6177M: Jiri Kosina <trivial@kernel.org> 6178T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git 6179S: Maintained 6180 6181TTY LAYER 6182M: Greg Kroah-Hartman <gregkh@suse.de> 6183S: Maintained 6184T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty-2.6.git 6185F: drivers/tty/* 6186F: drivers/tty/serial/serial_core.c 6187F: include/linux/serial_core.h 6188F: include/linux/serial.h 6189F: include/linux/tty.h 6190 6191TULIP NETWORK DRIVERS 6192M: Grant Grundler <grundler@parisc-linux.org> 6193L: netdev@vger.kernel.org 6194S: Maintained 6195F: drivers/net/tulip/ 6196 6197TUN/TAP driver 6198M: Maxim Krasnyansky <maxk@qualcomm.com> 6199L: vtun@office.satix.net 6200W: http://vtun.sourceforge.net/tun 6201S: Maintained 6202F: Documentation/networking/tuntap.txt 6203F: arch/um/os-Linux/drivers/ 6204 6205TURBOCHANNEL SUBSYSTEM 6206M: "Maciej W. Rozycki" <macro@linux-mips.org> 6207S: Maintained 6208F: drivers/tc/ 6209F: include/linux/tc.h 6210 6211U14-34F SCSI DRIVER 6212M: Dario Ballabio <ballabio_dario@emc.com> 6213L: linux-scsi@vger.kernel.org 6214S: Maintained 6215F: drivers/scsi/u14-34f.c 6216 6217UBI FILE SYSTEM (UBIFS) 6218M: Artem Bityutskiy <dedekind1@gmail.com> 6219M: Adrian Hunter <adrian.hunter@nokia.com> 6220L: linux-mtd@lists.infradead.org 6221T: git git://git.infradead.org/ubifs-2.6.git 6222W: http://www.linux-mtd.infradead.org/doc/ubifs.html 6223S: Maintained 6224F: Documentation/filesystems/ubifs.txt 6225F: fs/ubifs/ 6226 6227UCLINUX (AND M68KNOMMU) 6228M: Greg Ungerer <gerg@uclinux.org> 6229W: http://www.uclinux.org/ 6230L: uclinux-dev@uclinux.org (subscribers-only) 6231S: Maintained 6232F: arch/m68knommu/ 6233 6234UCLINUX FOR RENESAS H8/300 (H8300) 6235M: Yoshinori Sato <ysato@users.sourceforge.jp> 6236W: http://uclinux-h8.sourceforge.jp/ 6237S: Supported 6238F: arch/h8300/ 6239F: drivers/ide/ide-h8300.c 6240F: drivers/net/ne-h8300.c 6241 6242UDF FILESYSTEM 6243M: Jan Kara <jack@suse.cz> 6244W: http://linux-udf.sourceforge.net 6245S: Maintained 6246F: Documentation/filesystems/udf.txt 6247F: fs/udf/ 6248 6249UFS FILESYSTEM 6250M: Evgeniy Dushistov <dushistov@mail.ru> 6251S: Maintained 6252F: Documentation/filesystems/ufs.txt 6253F: fs/ufs/ 6254 6255ULTRA-WIDEBAND (UWB) SUBSYSTEM: 6256L: linux-usb@vger.kernel.org 6257S: Orphan 6258F: drivers/uwb/ 6259F: include/linux/uwb.h 6260F: include/linux/uwb/ 6261 6262UNIFDEF 6263M: Tony Finch <dot@dotat.at> 6264W: http://dotat.at/prog/unifdef 6265S: Maintained 6266F: scripts/unifdef.c 6267 6268UNIFORM CDROM DRIVER 6269M: Jens Axboe <axboe@kernel.dk> 6270W: http://www.kernel.dk 6271S: Maintained 6272F: Documentation/cdrom/ 6273F: drivers/cdrom/cdrom.c 6274F: include/linux/cdrom.h 6275 6276UNSORTED BLOCK IMAGES (UBI) 6277M: Artem Bityutskiy <dedekind1@gmail.com> 6278W: http://www.linux-mtd.infradead.org/ 6279L: linux-mtd@lists.infradead.org 6280T: git git://git.infradead.org/ubi-2.6.git 6281S: Maintained 6282F: drivers/mtd/ubi/ 6283F: include/linux/mtd/ubi.h 6284F: include/mtd/ubi-user.h 6285 6286USB ACM DRIVER 6287M: Oliver Neukum <oliver@neukum.name> 6288L: linux-usb@vger.kernel.org 6289S: Maintained 6290F: Documentation/usb/acm.txt 6291F: drivers/usb/class/cdc-acm.* 6292 6293USB ATTACHED SCSI 6294M: Matthew Wilcox <willy@linux.intel.com> 6295M: Sarah Sharp <sarah.a.sharp@linux.intel.com> 6296L: linux-usb@vger.kernel.org 6297L: linux-scsi@vger.kernel.org 6298S: Supported 6299F: drivers/usb/storage/uas.c 6300 6301USB BLOCK DRIVER (UB ub) 6302M: Pete Zaitcev <zaitcev@redhat.com> 6303L: linux-usb@vger.kernel.org 6304S: Supported 6305F: drivers/block/ub.c 6306 6307USB CDC ETHERNET DRIVER 6308M: Oliver Neukum <oliver@neukum.name> 6309L: linux-usb@vger.kernel.org 6310S: Maintained 6311F: drivers/net/usb/cdc_*.c 6312F: include/linux/usb/cdc.h 6313 6314USB CYPRESS C67X00 DRIVER 6315M: Peter Korsgaard <jacmet@sunsite.dk> 6316L: linux-usb@vger.kernel.org 6317S: Maintained 6318F: drivers/usb/c67x00/ 6319 6320USB DAVICOM DM9601 DRIVER 6321M: Peter Korsgaard <jacmet@sunsite.dk> 6322L: netdev@vger.kernel.org 6323W: http://www.linux-usb.org/usbnet 6324S: Maintained 6325F: drivers/net/usb/dm9601.c 6326 6327USB DIAMOND RIO500 DRIVER 6328M: Cesar Miquel <miquel@df.uba.ar> 6329L: rio500-users@lists.sourceforge.net 6330W: http://rio500.sourceforge.net 6331S: Maintained 6332F: drivers/usb/misc/rio500* 6333 6334USB EHCI DRIVER 6335M: David Brownell <dbrownell@users.sourceforge.net> 6336L: linux-usb@vger.kernel.org 6337S: Odd Fixes 6338F: Documentation/usb/ehci.txt 6339F: drivers/usb/host/ehci* 6340 6341USB ET61X[12]51 DRIVER 6342M: Luca Risolia <luca.risolia@studio.unibo.it> 6343L: linux-usb@vger.kernel.org 6344L: linux-media@vger.kernel.org 6345T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 6346W: http://www.linux-projects.org 6347S: Maintained 6348F: drivers/media/video/et61x251/ 6349 6350USB GADGET/PERIPHERAL SUBSYSTEM 6351M: David Brownell <dbrownell@users.sourceforge.net> 6352L: linux-usb@vger.kernel.org 6353W: http://www.linux-usb.org/gadget 6354S: Maintained 6355F: drivers/usb/gadget/ 6356F: include/linux/usb/gadget* 6357 6358USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...) 6359M: Jiri Kosina <jkosina@suse.cz> 6360L: linux-usb@vger.kernel.org 6361T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git 6362S: Maintained 6363F: Documentation/usb/hiddev.txt 6364F: drivers/hid/usbhid/ 6365 6366USB ISP116X DRIVER 6367M: Olav Kongas <ok@artecdesign.ee> 6368L: linux-usb@vger.kernel.org 6369S: Maintained 6370F: drivers/usb/host/isp116x* 6371F: include/linux/usb/isp116x.h 6372 6373USB KAWASAKI LSI DRIVER 6374M: Oliver Neukum <oliver@neukum.name> 6375L: linux-usb@vger.kernel.org 6376S: Maintained 6377F: drivers/usb/serial/kl5kusb105.* 6378 6379USB MASS STORAGE DRIVER 6380M: Matthew Dharm <mdharm-usb@one-eyed-alien.net> 6381L: linux-usb@vger.kernel.org 6382L: usb-storage@lists.one-eyed-alien.net 6383S: Maintained 6384W: http://www.one-eyed-alien.net/~mdharm/linux-usb/ 6385F: drivers/usb/storage/ 6386 6387USB MIDI DRIVER 6388M: Clemens Ladisch <clemens@ladisch.de> 6389L: alsa-devel@alsa-project.org (moderated for non-subscribers) 6390T: git git://git.alsa-project.org/alsa-kernel.git 6391S: Maintained 6392F: sound/usb/midi.* 6393 6394USB OHCI DRIVER 6395M: David Brownell <dbrownell@users.sourceforge.net> 6396L: linux-usb@vger.kernel.org 6397S: Odd Fixes 6398F: Documentation/usb/ohci.txt 6399F: drivers/usb/host/ohci* 6400 6401USB OPTION-CARD DRIVER 6402M: Matthias Urlichs <smurf@smurf.noris.de> 6403L: linux-usb@vger.kernel.org 6404S: Maintained 6405F: drivers/usb/serial/option.c 6406 6407USB PEGASUS DRIVER 6408M: Petko Manolov <petkan@users.sourceforge.net> 6409L: linux-usb@vger.kernel.org 6410L: netdev@vger.kernel.org 6411W: http://pegasus2.sourceforge.net/ 6412S: Maintained 6413F: drivers/net/usb/pegasus.* 6414 6415USB PRINTER DRIVER (usblp) 6416M: Pete Zaitcev <zaitcev@redhat.com> 6417L: linux-usb@vger.kernel.org 6418S: Supported 6419F: drivers/usb/class/usblp.c 6420 6421USB RTL8150 DRIVER 6422M: Petko Manolov <petkan@users.sourceforge.net> 6423L: linux-usb@vger.kernel.org 6424L: netdev@vger.kernel.org 6425W: http://pegasus2.sourceforge.net/ 6426S: Maintained 6427F: drivers/net/usb/rtl8150.c 6428 6429USB SE401 DRIVER 6430M: Jeroen Vreeken <pe1rxq@amsat.org> 6431L: linux-usb@vger.kernel.org 6432W: http://www.chello.nl/~j.vreeken/se401/ 6433S: Maintained 6434F: Documentation/video4linux/se401.txt 6435F: drivers/media/video/se401.* 6436 6437USB SERIAL BELKIN F5U103 DRIVER 6438M: William Greathouse <wgreathouse@smva.com> 6439L: linux-usb@vger.kernel.org 6440S: Maintained 6441F: drivers/usb/serial/belkin_sa.* 6442 6443USB SERIAL CYPRESS M8 DRIVER 6444M: Lonnie Mendez <dignome@gmail.com> 6445L: linux-usb@vger.kernel.org 6446S: Maintained 6447W: http://geocities.com/i0xox0i 6448W: http://firstlight.net/cvs 6449F: drivers/usb/serial/cypress_m8.* 6450 6451USB SERIAL CYBERJACK DRIVER 6452M: Matthias Bruestle and Harald Welte <support@reiner-sct.com> 6453W: http://www.reiner-sct.de/support/treiber_cyberjack.php 6454S: Maintained 6455F: drivers/usb/serial/cyberjack.c 6456 6457USB SERIAL DIGI ACCELEPORT DRIVER 6458M: Peter Berger <pberger@brimson.com> 6459M: Al Borchers <alborchers@steinerpoint.com> 6460L: linux-usb@vger.kernel.org 6461S: Maintained 6462F: drivers/usb/serial/digi_acceleport.c 6463 6464USB SERIAL DRIVER 6465M: Greg Kroah-Hartman <gregkh@suse.de> 6466L: linux-usb@vger.kernel.org 6467S: Supported 6468F: Documentation/usb/usb-serial.txt 6469F: drivers/usb/serial/generic.c 6470F: drivers/usb/serial/usb-serial.c 6471F: include/linux/usb/serial.h 6472 6473USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER 6474M: Gary Brubaker <xavyer@ix.netcom.com> 6475L: linux-usb@vger.kernel.org 6476S: Maintained 6477F: drivers/usb/serial/empeg.c 6478 6479USB SERIAL KEYSPAN DRIVER 6480M: Greg Kroah-Hartman <greg@kroah.com> 6481L: linux-usb@vger.kernel.org 6482W: http://www.kroah.com/linux/ 6483S: Maintained 6484F: drivers/usb/serial/*keyspan* 6485 6486USB SERIAL WHITEHEAT DRIVER 6487M: Support Department <support@connecttech.com> 6488L: linux-usb@vger.kernel.org 6489W: http://www.connecttech.com 6490S: Supported 6491F: drivers/usb/serial/whiteheat* 6492 6493USB SMSC95XX ETHERNET DRIVER 6494M: Steve Glendinning <steve.glendinning@smsc.com> 6495L: netdev@vger.kernel.org 6496S: Supported 6497F: drivers/net/usb/smsc95xx.* 6498 6499USB SN9C1xx DRIVER 6500M: Luca Risolia <luca.risolia@studio.unibo.it> 6501L: linux-usb@vger.kernel.org 6502L: linux-media@vger.kernel.org 6503T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 6504W: http://www.linux-projects.org 6505S: Maintained 6506F: Documentation/video4linux/sn9c102.txt 6507F: drivers/media/video/sn9c102/ 6508 6509USB SUBSYSTEM 6510M: Greg Kroah-Hartman <gregkh@suse.de> 6511L: linux-usb@vger.kernel.org 6512W: http://www.linux-usb.org 6513T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb-2.6.git 6514S: Supported 6515F: Documentation/usb/ 6516F: drivers/net/usb/ 6517F: drivers/usb/ 6518F: include/linux/usb.h 6519F: include/linux/usb/ 6520 6521USB UHCI DRIVER 6522M: Alan Stern <stern@rowland.harvard.edu> 6523L: linux-usb@vger.kernel.org 6524S: Maintained 6525F: drivers/usb/host/uhci* 6526 6527USB "USBNET" DRIVER FRAMEWORK 6528M: David Brownell <dbrownell@users.sourceforge.net> 6529L: netdev@vger.kernel.org 6530W: http://www.linux-usb.org/usbnet 6531S: Maintained 6532F: drivers/net/usb/usbnet.c 6533F: include/linux/usb/usbnet.h 6534 6535USB VIDEO CLASS 6536M: Laurent Pinchart <laurent.pinchart@ideasonboard.com> 6537L: linux-uvc-devel@lists.berlios.de (subscribers-only) 6538L: linux-media@vger.kernel.org 6539T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 6540W: http://www.ideasonboard.org/uvc/ 6541S: Maintained 6542F: drivers/media/video/uvc/ 6543 6544USB W996[87]CF DRIVER 6545M: Luca Risolia <luca.risolia@studio.unibo.it> 6546L: linux-usb@vger.kernel.org 6547L: linux-media@vger.kernel.org 6548T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 6549W: http://www.linux-projects.org 6550S: Maintained 6551F: Documentation/video4linux/w9968cf.txt 6552F: drivers/media/video/w996* 6553 6554USB WIRELESS RNDIS DRIVER (rndis_wlan) 6555M: Jussi Kivilinna <jussi.kivilinna@mbnet.fi> 6556L: linux-wireless@vger.kernel.org 6557S: Maintained 6558F: drivers/net/wireless/rndis_wlan.c 6559 6560USB XHCI DRIVER 6561M: Sarah Sharp <sarah.a.sharp@linux.intel.com> 6562L: linux-usb@vger.kernel.org 6563S: Supported 6564F: drivers/usb/host/xhci* 6565F: drivers/usb/host/pci-quirks* 6566 6567USB ZD1201 DRIVER 6568L: linux-wireless@vger.kernel.org 6569W: http://linux-lc100020.sourceforge.net 6570S: Orphan 6571F: drivers/net/wireless/zd1201.* 6572 6573USB ZR364XX DRIVER 6574M: Antoine Jacquet <royale@zerezo.com> 6575L: linux-usb@vger.kernel.org 6576L: linux-media@vger.kernel.org 6577T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6.git 6578W: http://royale.zerezo.com/zr364xx/ 6579S: Maintained 6580F: Documentation/video4linux/zr364xx.txt 6581F: drivers/media/video/zr364xx.c 6582 6583USER-MODE LINUX (UML) 6584M: Jeff Dike <jdike@addtoit.com> 6585L: user-mode-linux-devel@lists.sourceforge.net 6586L: user-mode-linux-user@lists.sourceforge.net 6587W: http://user-mode-linux.sourceforge.net 6588S: Maintained 6589F: Documentation/uml/ 6590F: arch/um/ 6591F: fs/hostfs/ 6592F: fs/hppfs/ 6593 6594USERSPACE I/O (UIO) 6595M: "Hans J. Koch" <hjk@linutronix.de> 6596M: Greg Kroah-Hartman <gregkh@suse.de> 6597S: Maintained 6598F: Documentation/DocBook/uio-howto.tmpl 6599F: drivers/uio/ 6600F: include/linux/uio*.h 6601 6602UTIL-LINUX-NG PACKAGE 6603M: Karel Zak <kzak@redhat.com> 6604L: util-linux-ng@vger.kernel.org 6605W: http://kernel.org/~kzak/util-linux-ng/ 6606T: git git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git 6607S: Maintained 6608 6609UVESAFB DRIVER 6610M: Michal Januszewski <spock@gentoo.org> 6611L: linux-fbdev@vger.kernel.org 6612W: http://dev.gentoo.org/~spock/projects/uvesafb/ 6613S: Maintained 6614F: Documentation/fb/uvesafb.txt 6615F: drivers/video/uvesafb.* 6616 6617VFAT/FAT/MSDOS FILESYSTEM 6618M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> 6619S: Maintained 6620F: Documentation/filesystems/vfat.txt 6621F: fs/fat/ 6622 6623VIRTIO CONSOLE DRIVER 6624M: Amit Shah <amit.shah@redhat.com> 6625L: virtualization@lists.linux-foundation.org 6626S: Maintained 6627F: drivers/char/virtio_console.c 6628F: include/linux/virtio_console.h 6629 6630VIRTIO CORE, NET AND BLOCK DRIVERS 6631M: Rusty Russell <rusty@rustcorp.com.au> 6632M: "Michael S. Tsirkin" <mst@redhat.com> 6633L: virtualization@lists.linux-foundation.org 6634S: Maintained 6635F: drivers/virtio/ 6636F: drivers/net/virtio_net.c 6637F: drivers/block/virtio_blk.c 6638F: include/linux/virtio_*.h 6639 6640VIRTIO HOST (VHOST) 6641M: "Michael S. Tsirkin" <mst@redhat.com> 6642L: kvm@vger.kernel.org 6643L: virtualization@lists.linux-foundation.org 6644L: netdev@vger.kernel.org 6645S: Maintained 6646F: drivers/vhost/ 6647F: include/linux/vhost.h 6648 6649VIA RHINE NETWORK DRIVER 6650M: Roger Luethi <rl@hellgate.ch> 6651S: Maintained 6652F: drivers/net/via-rhine.c 6653 6654VIAPRO SMBUS DRIVER 6655M: Jean Delvare <khali@linux-fr.org> 6656L: linux-i2c@vger.kernel.org 6657S: Maintained 6658F: Documentation/i2c/busses/i2c-viapro 6659F: drivers/i2c/busses/i2c-viapro.c 6660 6661VIA SD/MMC CARD CONTROLLER DRIVER 6662M: Bruce Chang <brucechang@via.com.tw> 6663M: Harald Welte <HaraldWelte@viatech.com> 6664S: Maintained 6665F: drivers/mmc/host/via-sdmmc.c 6666 6667VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER 6668M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> 6669L: linux-fbdev@vger.kernel.org 6670S: Maintained 6671F: include/linux/via-core.h 6672F: include/linux/via-gpio.h 6673F: include/linux/via_i2c.h 6674F: drivers/video/via/ 6675 6676VIA VELOCITY NETWORK DRIVER 6677M: Francois Romieu <romieu@fr.zoreil.com> 6678L: netdev@vger.kernel.org 6679S: Maintained 6680F: drivers/net/via-velocity.* 6681 6682VLAN (802.1Q) 6683M: Patrick McHardy <kaber@trash.net> 6684L: netdev@vger.kernel.org 6685S: Maintained 6686F: drivers/net/macvlan.c 6687F: include/linux/if_*vlan.h 6688F: net/8021q/ 6689 6690VLYNQ BUS 6691M: Florian Fainelli <florian@openwrt.org> 6692L: openwrt-devel@lists.openwrt.org (subscribers-only) 6693S: Maintained 6694F: drivers/vlynq/vlynq.c 6695F: include/linux/vlynq.h 6696 6697VMWARE VMXNET3 ETHERNET DRIVER 6698M: Shreyas Bhatewara <sbhatewara@vmware.com> 6699M: "VMware, Inc." <pv-drivers@vmware.com> 6700L: netdev@vger.kernel.org 6701S: Maintained 6702F: drivers/net/vmxnet3/ 6703 6704VMware PVSCSI driver 6705M: Alok Kataria <akataria@vmware.com> 6706M: VMware PV-Drivers <pv-drivers@vmware.com> 6707L: linux-scsi@vger.kernel.org 6708S: Maintained 6709F: drivers/scsi/vmw_pvscsi.c 6710F: drivers/scsi/vmw_pvscsi.h 6711 6712VOLTAGE AND CURRENT REGULATOR FRAMEWORK 6713M: Liam Girdwood <lrg@slimlogic.co.uk> 6714M: Mark Brown <broonie@opensource.wolfsonmicro.com> 6715W: http://opensource.wolfsonmicro.com/node/15 6716W: http://www.slimlogic.co.uk/?p=48 6717T: git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/voltage-2.6.git 6718S: Supported 6719F: drivers/regulator/ 6720F: include/linux/regulator/ 6721 6722VT1211 HARDWARE MONITOR DRIVER 6723M: Juerg Haefliger <juergh@gmail.com> 6724L: lm-sensors@lm-sensors.org 6725S: Maintained 6726F: Documentation/hwmon/vt1211 6727F: drivers/hwmon/vt1211.c 6728 6729VT8231 HARDWARE MONITOR DRIVER 6730M: Roger Lucas <vt8231@hiddenengine.co.uk> 6731L: lm-sensors@lm-sensors.org 6732S: Maintained 6733F: drivers/hwmon/vt8231.c 6734 6735W1 DALLAS'S 1-WIRE BUS 6736M: Evgeniy Polyakov <johnpol@2ka.mipt.ru> 6737S: Maintained 6738F: Documentation/w1/ 6739F: drivers/w1/ 6740 6741W83791D HARDWARE MONITORING DRIVER 6742M: Marc Hulsman <m.hulsman@tudelft.nl> 6743L: lm-sensors@lm-sensors.org 6744S: Maintained 6745F: Documentation/hwmon/w83791d 6746F: drivers/hwmon/w83791d.c 6747 6748W83793 HARDWARE MONITORING DRIVER 6749M: Rudolf Marek <r.marek@assembler.cz> 6750L: lm-sensors@lm-sensors.org 6751S: Maintained 6752F: Documentation/hwmon/w83793 6753F: drivers/hwmon/w83793.c 6754 6755W83795 HARDWARE MONITORING DRIVER 6756M: Jean Delvare <khali@linux-fr.org> 6757L: lm-sensors@lm-sensors.org 6758S: Maintained 6759F: drivers/hwmon/w83795.c 6760 6761W83L51xD SD/MMC CARD INTERFACE DRIVER 6762M: Pierre Ossman <pierre@ossman.eu> 6763S: Maintained 6764F: drivers/mmc/host/wbsd.* 6765 6766WATCHDOG DEVICE DRIVERS 6767M: Wim Van Sebroeck <wim@iguana.be> 6768L: linux-watchdog@vger.kernel.org 6769W: http://www.linux-watchdog.org/ 6770T: git git://git.kernel.org/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog.git 6771S: Maintained 6772F: Documentation/watchdog/ 6773F: drivers/watchdog/ 6774F: include/linux/watchdog.h 6775 6776WD7000 SCSI DRIVER 6777M: Miroslav Zagorac <zaga@fly.cc.fer.hr> 6778L: linux-scsi@vger.kernel.org 6779S: Maintained 6780F: drivers/scsi/wd7000.c 6781 6782WINBOND CIR DRIVER 6783M: David Härdeman <david@hardeman.nu> 6784S: Maintained 6785F: drivers/input/misc/winbond-cir.c 6786 6787WIMAX STACK 6788M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com> 6789M: linux-wimax@intel.com 6790L: wimax@linuxwimax.org 6791S: Supported 6792W: http://linuxwimax.org 6793F: Documentation/wimax/README.wimax 6794F: include/linux/wimax.h 6795F: include/linux/wimax/debug.h 6796F: include/net/wimax.h 6797F: net/wimax/ 6798 6799WISTRON LAPTOP BUTTON DRIVER 6800M: Miloslav Trmac <mitr@volny.cz> 6801S: Maintained 6802F: drivers/input/misc/wistron_btns.c 6803 6804WL1251 WIRELESS DRIVER 6805M: Kalle Valo <kvalo@adurom.com> 6806L: linux-wireless@vger.kernel.org 6807W: http://wireless.kernel.org 6808T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git 6809S: Maintained 6810F: drivers/net/wireless/wl1251/* 6811 6812WL1271 WIRELESS DRIVER 6813M: Luciano Coelho <coelho@ti.com> 6814L: linux-wireless@vger.kernel.org 6815W: http://wireless.kernel.org/en/users/Drivers/wl12xx 6816T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git 6817S: Maintained 6818F: drivers/net/wireless/wl12xx/ 6819F: include/linux/wl12xx.h 6820 6821WL3501 WIRELESS PCMCIA CARD DRIVER 6822M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net> 6823L: linux-wireless@vger.kernel.org 6824W: http://oops.ghostprotocols.net:81/blog 6825S: Maintained 6826F: drivers/net/wireless/wl3501* 6827 6828WM97XX TOUCHSCREEN DRIVERS 6829M: Mark Brown <broonie@opensource.wolfsonmicro.com> 6830M: Liam Girdwood <lrg@slimlogic.co.uk> 6831L: linux-input@vger.kernel.org 6832T: git git://opensource.wolfsonmicro.com/linux-2.6-touch 6833W: http://opensource.wolfsonmicro.com/node/7 6834S: Supported 6835F: drivers/input/touchscreen/*wm97* 6836F: include/linux/wm97xx.h 6837 6838WOLFSON MICROELECTRONICS DRIVERS 6839M: Mark Brown <broonie@opensource.wolfsonmicro.com> 6840M: Ian Lartey <ian@opensource.wolfsonmicro.com> 6841M: Dimitris Papastamos <dp@opensource.wolfsonmicro.com> 6842T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc 6843T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus 6844W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices 6845S: Supported 6846F: Documentation/hwmon/wm83?? 6847F: drivers/leds/leds-wm83*.c 6848F: drivers/mfd/wm8*.c 6849F: drivers/power/wm83*.c 6850F: drivers/rtc/rtc-wm83*.c 6851F: drivers/regulator/wm8*.c 6852F: drivers/video/backlight/wm83*_bl.c 6853F: drivers/watchdog/wm83*_wdt.c 6854F: include/linux/mfd/wm831x/ 6855F: include/linux/mfd/wm8350/ 6856F: include/linux/mfd/wm8400* 6857F: include/sound/wm????.h 6858F: sound/soc/codecs/wm* 6859 6860WORKQUEUE 6861M: Tejun Heo <tj@kernel.org> 6862L: linux-kernel@vger.kernel.org 6863T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git 6864S: Maintained 6865F: include/linux/workqueue.h 6866F: kernel/workqueue.c 6867F: Documentation/workqueue.txt 6868 6869X.25 NETWORK LAYER 6870M: Andrew Hendry <andrew.hendry@gmail.com> 6871L: linux-x25@vger.kernel.org 6872S: Odd Fixes 6873F: Documentation/networking/x25* 6874F: include/net/x25* 6875F: net/x25/ 6876 6877X86 ARCHITECTURE (32-BIT AND 64-BIT) 6878M: Thomas Gleixner <tglx@linutronix.de> 6879M: Ingo Molnar <mingo@redhat.com> 6880M: "H. Peter Anvin" <hpa@zytor.com> 6881M: x86@kernel.org 6882T: git git://git.kernel.org/pub/scm/linux/kernel/git/x86/linux-2.6-x86.git 6883S: Maintained 6884F: Documentation/x86/ 6885F: arch/x86/ 6886 6887X86 PLATFORM DRIVERS 6888M: Matthew Garrett <mjg@redhat.com> 6889L: platform-driver-x86@vger.kernel.org 6890T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git 6891S: Maintained 6892F: drivers/platform/x86 6893 6894XEN PCI SUBSYSTEM 6895M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 6896L: xen-devel@lists.xensource.com (moderated for non-subscribers) 6897S: Supported 6898F: arch/x86/pci/*xen* 6899F: drivers/pci/*xen* 6900 6901XEN SWIOTLB SUBSYSTEM 6902M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 6903L: xen-devel@lists.xensource.com (moderated for non-subscribers) 6904S: Supported 6905F: arch/x86/xen/*swiotlb* 6906F: drivers/xen/*swiotlb* 6907 6908XEN HYPERVISOR INTERFACE 6909M: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com> 6910M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> 6911L: xen-devel@lists.xensource.com (moderated for non-subscribers) 6912L: virtualization@lists.linux-foundation.org 6913S: Supported 6914F: arch/x86/xen/ 6915F: drivers/*/xen-*front.c 6916F: drivers/xen/ 6917F: arch/x86/include/asm/xen/ 6918F: include/xen/ 6919 6920XFS FILESYSTEM 6921P: Silicon Graphics Inc 6922M: Alex Elder <aelder@sgi.com> 6923M: xfs-masters@oss.sgi.com 6924L: xfs@oss.sgi.com 6925W: http://oss.sgi.com/projects/xfs 6926T: git git://oss.sgi.com/xfs/xfs.git 6927S: Supported 6928F: Documentation/filesystems/xfs.txt 6929F: fs/xfs/ 6930 6931XILINX SYSTEMACE DRIVER 6932M: Grant Likely <grant.likely@secretlab.ca> 6933W: http://www.secretlab.ca/ 6934S: Maintained 6935F: drivers/block/xsysace.c 6936 6937XILINX UARTLITE SERIAL DRIVER 6938M: Peter Korsgaard <jacmet@sunsite.dk> 6939L: linux-serial@vger.kernel.org 6940S: Maintained 6941F: drivers/tty/serial/uartlite.c 6942 6943YAM DRIVER FOR AX.25 6944M: Jean-Paul Roubelat <jpr@f6fbb.org> 6945L: linux-hams@vger.kernel.org 6946S: Maintained 6947F: drivers/net/hamradio/yam* 6948F: include/linux/yam.h 6949 6950YEALINK PHONE DRIVER 6951M: Henk Vergonet <Henk.Vergonet@gmail.com> 6952L: usbb2k-api-dev@nongnu.org 6953S: Maintained 6954F: Documentation/input/yealink.txt 6955F: drivers/input/misc/yealink.* 6956 6957Z8530 DRIVER FOR AX.25 6958M: Joerg Reuter <jreuter@yaina.de> 6959W: http://yaina.de/jreuter/ 6960W: http://www.qsl.net/dl1bke/ 6961L: linux-hams@vger.kernel.org 6962S: Maintained 6963F: Documentation/networking/z8530drv.txt 6964F: drivers/net/hamradio/*scc.c 6965F: drivers/net/hamradio/z8530.h 6966 6967ZD1211RW WIRELESS DRIVER 6968M: Daniel Drake <dsd@gentoo.org> 6969M: Ulrich Kunitz <kune@deine-taler.de> 6970W: http://zd1211.ath.cx/wiki/DriverRewrite 6971L: linux-wireless@vger.kernel.org 6972L: zd1211-devs@lists.sourceforge.net (subscribers-only) 6973S: Maintained 6974F: drivers/net/wireless/zd1211rw/ 6975 6976ZR36067 VIDEO FOR LINUX DRIVER 6977L: mjpeg-users@lists.sourceforge.net 6978L: linux-media@vger.kernel.org 6979W: http://mjpeg.sourceforge.net/driver-zoran/ 6980T: Mercurial http://linuxtv.org/hg/v4l-dvb 6981S: Odd Fixes 6982F: drivers/media/video/zoran/ 6983 6984ZS DECSTATION Z85C30 SERIAL DRIVER 6985M: "Maciej W. Rozycki" <macro@linux-mips.org> 6986S: Maintained 6987F: drivers/tty/serial/zs.* 6988 6989GRE DEMULTIPLEXER DRIVER 6990M: Dmitry Kozlov <xeb@mail.ru> 6991L: netdev@vger.kernel.org 6992S: Maintained 6993F: net/ipv4/gre.c 6994F: include/net/gre.h 6995 6996PPTP DRIVER 6997M: Dmitry Kozlov <xeb@mail.ru> 6998L: netdev@vger.kernel.org 6999S: Maintained 7000F: drivers/net/pptp.c
7001W: http://sourceforge.net/projects/accel-pptp 7002 7003THE REST 7004M: Linus Torvalds <torvalds@linux-foundation.org> 7005L: linux-kernel@vger.kernel.org 7006Q: http://patchwork.kernel.org/project/LKML/list/ 7007T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git 7008S: Buried alive in reporters 7009F: * 7010F: */ 7011