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