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