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