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