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