Root/MAINTAINERS

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

Archive Download this file



interactive