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