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