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