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