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