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