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