xref: /linux/MAINTAINERS (revision e5c5d22e8dcf7c2d430336cbf8e180bd38e8daf1)
1
2
3	List of maintainers and how to submit kernel changes
4
5Please try to follow the guidelines below.  This will make things
6easier on the maintainers.  Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91.	Always _test_ your changes, however small, on at least 4 or
10	5 people, preferably many more.
11
122.	Try to release a few ALPHA test versions to the net. Announce
13	them onto the kernel channel and await results. This is especially
14	important for device drivers, because often that's the only way
15	you will find things like the fact version 3 firmware needs
16	a magic fix you didn't know about, or some clown changed the
17	chips on a board and not its name.  (Don't laugh!  Look at the
18	SMC etherpower for that.)
19
203.	Make sure your changes compile correctly in multiple
21	configurations. In particular check that changes work both as a
22	module and built into the kernel.
23
244.	When you are happy with a change make it generally available for
25	testing and await feedback.
26
275.	Make a patch available to the relevant maintainer in the list. Use
28	'diff -u' to make the patch easy to merge. Be prepared to get your
29	changes sent back with seemingly silly requests about formatting
30	and variable names.  These aren't as silly as they seem. One
31	job the maintainers (and especially Linus) do is to keep things
32	looking the same. Sometimes this means that the clever hack in
33	your driver to get around a problem actually needs to become a
34	generalized kernel feature ready for next time.
35
36	PLEASE check your patch with the automated style checker
37	(scripts/checkpatch.pl) to catch trival style violations.
38	See Documentation/CodingStyle for guidance here.
39
40	PLEASE CC: the maintainers and mailing lists that are generated
41	by scripts/get_maintainer.pl.  The results returned by the
42	script will be best if you have git installed and are making
43	your changes in a branch derived from Linus' latest git tree.
44	See Documentation/SubmittingPatches for details.
45
46	PLEASE try to include any credit lines you want added with the
47	patch. It avoids people being missed off by mistake and makes
48	it easier to know who wants adding and who doesn't.
49
50	PLEASE document known bugs. If it doesn't work for everything
51	or does something very odd once a month document it.
52
53	PLEASE remember that submissions must be made under the terms
54	of the OSDL certificate of contribution and should include a
55	Signed-off-by: line.  The current version of this "Developer's
56	Certificate of Origin" (DCO) is listed in the file
57	Documentation/SubmittingPatches.
58
596.	Make sure you have the right to send any changes you make. If you
60	do changes at work you may find your employer owns the patch
61	not you.
62
637.	When sending security related changes or reports to a maintainer
64	please Cc: security@kernel.org, especially if the maintainer
65	does not respond.
66
678.	Happy hacking.
68
69Descriptions of section entries:
70
71	P: Person (obsolete)
72	M: Mail patches to: FullName <address@domain>
73	L: Mailing list that is relevant to this area
74	W: Web-page with status/info
75	Q: Patchwork web based patch tracking system site
76	T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit, topgit.
77	S: Status, one of the following:
78	   Supported:	Someone is actually paid to look after this.
79	   Maintained:	Someone actually looks after it.
80	   Odd Fixes:	It has a maintainer but they don't have time to do
81			much other than throw the odd patch in. See below..
82	   Orphan:	No current maintainer [but maybe you could take the
83			role as you write your new code].
84	   Obsolete:	Old code. Something tagged obsolete generally means
85			it has been replaced by a better system and you
86			should be using that.
87	F: Files and directories with wildcard patterns.
88	   A trailing slash includes all files and subdirectory files.
89	   F:	drivers/net/	all files in and below drivers/net
90	   F:	drivers/net/*	all files in drivers/net, but not below
91	   F:	*/net/*		all files in "any top level directory"/net
92	   One pattern per line.  Multiple F: lines acceptable.
93	X: Files and directories that are NOT maintained, same rules as F:
94	   Files exclusions are tested before file matches.
95	   Can be useful for excluding a specific subdirectory, for instance:
96	   F:	net/
97	   X:	net/ipv6/
98	   matches all files in and below net excluding net/ipv6/
99	K: Keyword perl extended regex pattern to match content in a
100	   patch or file, or an affected filename.  For instance:
101	   K: of_get_profile
102	      matches patch or file content, or filenames, that contain
103	      "of_get_profile"
104	   K: \b(printk|pr_(info|err))\b
105	      matches patch or file content, or filenames, that contain one or
106	      more of the words printk, pr_info or pr_err
107	   One regex pattern per line.  Multiple K: lines acceptable.
108
109Note: For the hard of thinking, this list is meant to remain in alphabetical
110order. If you could add yourselves to it in alphabetical order that would be
111so much easier [Ed]
112
113Maintainers List (try to look for most precise areas first)
114
115		-----------------------------------
116
1173C59X NETWORK DRIVER
118M:	Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
119L:	netdev@vger.kernel.org
120S:	Maintained
121F:	Documentation/networking/vortex.txt
122F:	drivers/net/ethernet/3com/3c59x.c
123
1243CR990 NETWORK DRIVER
125M:	David Dillow <dave@thedillows.org>
126L:	netdev@vger.kernel.org
127S:	Maintained
128F:	drivers/net/ethernet/3com/typhoon*
129
1303WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
131M:	Adam Radford <linuxraid@lsi.com>
132L:	linux-scsi@vger.kernel.org
133W:	http://www.lsi.com
134S:	Supported
135F:	drivers/scsi/3w-*
136
13753C700 AND 53C700-66 SCSI DRIVER
138M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
139L:	linux-scsi@vger.kernel.org
140S:	Maintained
141F:	drivers/scsi/53c700*
142
1436PACK NETWORK DRIVER FOR AX.25
144M:	Andreas Koensgen <ajk@comnets.uni-bremen.de>
145L:	linux-hams@vger.kernel.org
146S:	Maintained
147F:	drivers/net/hamradio/6pack.c
148
1498169 10/100/1000 GIGABIT ETHERNET DRIVER
150M:	Realtek linux nic maintainers <nic_swsd@realtek.com>
151M:	Francois Romieu <romieu@fr.zoreil.com>
152L:	netdev@vger.kernel.org
153S:	Maintained
154F:	drivers/net/ethernet/realtek/r8169.c
155
1568250/16?50 (AND CLONE UARTS) SERIAL DRIVER
157M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
158L:	linux-serial@vger.kernel.org
159W:	http://serial.sourceforge.net
160S:	Maintained
161T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
162F:	drivers/tty/serial/8250*
163F:	include/linux/serial_8250.h
164
1658390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
166L:	netdev@vger.kernel.org
167S:	Orphan / Obsolete
168F:	drivers/net/ethernet/8390/
169
1709P FILE SYSTEM
171M:	Eric Van Hensbergen <ericvh@gmail.com>
172M:	Ron Minnich <rminnich@sandia.gov>
173M:	Latchesar Ionkov <lucho@ionkov.net>
174L:	v9fs-developer@lists.sourceforge.net
175W:	http://swik.net/v9fs
176Q:	http://patchwork.kernel.org/project/v9fs-devel/list/
177T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
178S:	Maintained
179F:	Documentation/filesystems/9p.txt
180F:	fs/9p/
181
182A8293 MEDIA DRIVER
183M:	Antti Palosaari <crope@iki.fi>
184L:	linux-media@vger.kernel.org
185W:	http://linuxtv.org/
186W:	http://palosaari.fi/linux/
187Q:	http://patchwork.linuxtv.org/project/linux-media/list/
188T:	git git://linuxtv.org/anttip/media_tree.git
189S:	Maintained
190F:	drivers/media/dvb-frontends/a8293*
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/ethernet/alteon/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:	"Lee, Chun-Yi" <jlee@suse.com>
227L:	platform-driver-x86@vger.kernel.org
228S:	Maintained
229F:	drivers/platform/x86/acer-wmi.c
230
231ACPI
232M:	Len Brown <lenb@kernel.org>
233M:	Rafael J. Wysocki <rjw@sisk.pl>
234L:	linux-acpi@vger.kernel.org
235W:	http://www.lesswatts.org/projects/acpi/
236Q:	http://patchwork.kernel.org/project/linux-acpi/list/
237T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
238S:	Supported
239F:	drivers/acpi/
240F:	drivers/pnp/pnpacpi/
241F:	include/linux/acpi.h
242F:	include/acpi/
243
244ACPI FAN DRIVER
245M:	Zhang Rui <rui.zhang@intel.com>
246L:	linux-acpi@vger.kernel.org
247W:	http://www.lesswatts.org/projects/acpi/
248S:	Supported
249F:	drivers/acpi/fan.c
250
251ACPI THERMAL DRIVER
252M:	Zhang Rui <rui.zhang@intel.com>
253L:	linux-acpi@vger.kernel.org
254W:	http://www.lesswatts.org/projects/acpi/
255S:	Supported
256F:	drivers/acpi/*thermal*
257
258ACPI VIDEO DRIVER
259M:	Zhang Rui <rui.zhang@intel.com>
260L:	linux-acpi@vger.kernel.org
261W:	http://www.lesswatts.org/projects/acpi/
262S:	Supported
263F:	drivers/acpi/video.c
264
265ACPI WMI DRIVER
266L:	platform-driver-x86@vger.kernel.org
267S:	Orphan
268F:	drivers/platform/x86/wmi.c
269
270AD1889 ALSA SOUND DRIVER
271M:	Thibaut Varene <T-Bone@parisc-linux.org>
272W:	http://wiki.parisc-linux.org/AD1889
273L:	linux-parisc@vger.kernel.org
274S:	Maintained
275F:	sound/pci/ad1889.*
276
277AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
278M:	Michael Hennerich <michael.hennerich@analog.com>
279L:	device-drivers-devel@blackfin.uclinux.org
280W:	http://wiki.analog.com/AD5254
281S:	Supported
282F:	drivers/misc/ad525x_dpot.c
283
284AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
285M:	Michael Hennerich <michael.hennerich@analog.com>
286L:	device-drivers-devel@blackfin.uclinux.org
287W:	http://wiki.analog.com/AD5398
288S:	Supported
289F:	drivers/regulator/ad5398.c
290
291AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
292M:	Michael Hennerich <michael.hennerich@analog.com>
293L:	device-drivers-devel@blackfin.uclinux.org
294W:	http://wiki.analog.com/AD7142
295S:	Supported
296F:	drivers/input/misc/ad714x.c
297
298AD7877 TOUCHSCREEN DRIVER
299M:	Michael Hennerich <michael.hennerich@analog.com>
300L:	device-drivers-devel@blackfin.uclinux.org
301W:	http://wiki.analog.com/AD7877
302S:	Supported
303F:	drivers/input/touchscreen/ad7877.c
304
305AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
306M:	Michael Hennerich <michael.hennerich@analog.com>
307L:	device-drivers-devel@blackfin.uclinux.org
308W:	http://wiki.analog.com/AD7879
309S:	Supported
310F:	drivers/input/touchscreen/ad7879.c
311
312ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
313M:	Jiri Kosina <jkosina@suse.cz>
314S:	Maintained
315
316ADM1025 HARDWARE MONITOR DRIVER
317M:	Jean Delvare <khali@linux-fr.org>
318L:	lm-sensors@lm-sensors.org
319S:	Maintained
320F:	Documentation/hwmon/adm1025
321F:	drivers/hwmon/adm1025.c
322
323ADM1029 HARDWARE MONITOR DRIVER
324M:	Corentin Labbe <corentin.labbe@geomatys.fr>
325L:	lm-sensors@lm-sensors.org
326S:	Maintained
327F:	drivers/hwmon/adm1029.c
328
329ADM8211 WIRELESS DRIVER
330L:	linux-wireless@vger.kernel.org
331W:	http://wireless.kernel.org/
332S:	Orphan
333F:	drivers/net/wireless/adm8211.*
334
335ADP1653 FLASH CONTROLLER DRIVER
336M:	Sakari Ailus <sakari.ailus@iki.fi>
337L:	linux-media@vger.kernel.org
338S:	Maintained
339F:	drivers/media/i2c/adp1653.c
340F:	include/media/adp1653.h
341
342ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
343M:	Michael Hennerich <michael.hennerich@analog.com>
344L:	device-drivers-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/gpio-adp5520.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-drivers-devel@blackfin.uclinux.org
356W:	http://wiki.analog.com/ADP5588
357S:	Supported
358F:	drivers/input/keyboard/adp5588-keys.c
359F:	drivers/gpio/gpio-adp5588.c
360
361ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
362M:	Michael Hennerich <michael.hennerich@analog.com>
363L:	device-drivers-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-drivers-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
407AF9013 MEDIA DRIVER
408M:	Antti Palosaari <crope@iki.fi>
409L:	linux-media@vger.kernel.org
410W:	http://linuxtv.org/
411W:	http://palosaari.fi/linux/
412Q:	http://patchwork.linuxtv.org/project/linux-media/list/
413T:	git git://linuxtv.org/anttip/media_tree.git
414S:	Maintained
415F:	drivers/media/dvb-frontends/af9013*
416
417AF9033 MEDIA DRIVER
418M:	Antti Palosaari <crope@iki.fi>
419L:	linux-media@vger.kernel.org
420W:	http://linuxtv.org/
421W:	http://palosaari.fi/linux/
422Q:	http://patchwork.linuxtv.org/project/linux-media/list/
423T:	git git://linuxtv.org/anttip/media_tree.git
424S:	Maintained
425F:	drivers/media/dvb-frontends/af9033*
426
427AFFS FILE SYSTEM
428L:	linux-fsdevel@vger.kernel.org
429S:	Orphan
430F:	Documentation/filesystems/affs.txt
431F:	fs/affs/
432
433AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
434M:	David Howells <dhowells@redhat.com>
435L:	linux-afs@lists.infradead.org
436S:	Supported
437F:	fs/afs/
438F:	include/net/af_rxrpc.h
439F:	net/rxrpc/af_rxrpc.c
440
441AGPGART DRIVER
442M:	David Airlie <airlied@linux.ie>
443T:	git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
444S:	Maintained
445F:	drivers/char/agp/
446F:	include/linux/agp*
447F:	include/uapi/linux/agp*
448
449AHA152X SCSI DRIVER
450M:	"Juergen E. Fischer" <fischer@norbit.de>
451L:	linux-scsi@vger.kernel.org
452S:	Maintained
453F:	drivers/scsi/aha152x*
454F:	drivers/scsi/pcmcia/aha152x*
455
456AIC7XXX / AIC79XX SCSI DRIVER
457M:	Hannes Reinecke <hare@suse.de>
458L:	linux-scsi@vger.kernel.org
459S:	Maintained
460F:	drivers/scsi/aic7xxx/
461F:	drivers/scsi/aic7xxx_old/
462
463AIMSLAB FM RADIO RECEIVER DRIVER
464M:	Hans Verkuil <hverkuil@xs4all.nl>
465L:	linux-media@vger.kernel.org
466T:	git git://linuxtv.org/media_tree.git
467W:	http://linuxtv.org
468S:	Maintained
469F:	drivers/media/radio/radio-aimslab*
470
471AIO
472M:	Benjamin LaHaise <bcrl@kvack.org>
473L:	linux-aio@kvack.org
474S:	Supported
475F:	fs/aio.c
476F:	include/linux/*aio*.h
477
478ALCATEL SPEEDTOUCH USB DRIVER
479M:	Duncan Sands <duncan.sands@free.fr>
480L:	linux-usb@vger.kernel.org
481W:	http://www.linux-usb.org/SpeedTouch/
482S:	Maintained
483F:	drivers/usb/atm/speedtch.c
484F:	drivers/usb/atm/usbatm.c
485
486ALCHEMY AU1XX0 MMC DRIVER
487M:	Manuel Lauss <manuel.lauss@gmail.com>
488S:	Maintained
489F:	drivers/mmc/host/au1xmmc.c
490
491ALI1563 I2C DRIVER
492M:	Rudolf Marek <r.marek@assembler.cz>
493L:	linux-i2c@vger.kernel.org
494S:	Maintained
495F:	Documentation/i2c/busses/i2c-ali1563
496F:	drivers/i2c/busses/i2c-ali1563.c
497
498ALPHA PORT
499M:	Richard Henderson <rth@twiddle.net>
500M:	Ivan Kokshaysky <ink@jurassic.park.msu.ru>
501M:	Matt Turner <mattst88@gmail.com>
502S:	Odd Fixes
503L:	linux-alpha@vger.kernel.org
504F:	arch/alpha/
505
506ALTERA UART/JTAG UART SERIAL DRIVERS
507M:	Tobias Klauser <tklauser@distanz.ch>
508L:	linux-serial@vger.kernel.org
509L:	nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
510S:	Maintained
511F:	drivers/tty/serial/altera_uart.c
512F:	drivers/tty/serial/altera_jtaguart.c
513F:	include/linux/altera_uart.h
514F:	include/linux/altera_jtaguart.h
515
516AMD FAM15H PROCESSOR POWER MONITORING DRIVER
517M:	Andreas Herrmann <herrmann.der.user@googlemail.com>
518L:	lm-sensors@lm-sensors.org
519S:	Maintained
520F:	Documentation/hwmon/fam15h_power
521F:	drivers/hwmon/fam15h_power.c
522
523AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
524M:	Thomas Dahlmann <dahlmann.thomas@arcor.de>
525L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
526S:	Supported
527F:	drivers/usb/gadget/amd5536udc.*
528
529AMD GEODE PROCESSOR/CHIPSET SUPPORT
530P:	Andres Salomon <dilinger@queued.net>
531L:	linux-geode@lists.infradead.org (moderated for non-subscribers)
532W:	http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
533S:	Supported
534F:	drivers/char/hw_random/geode-rng.c
535F:	drivers/crypto/geode*
536F:	drivers/video/geode/
537F:	arch/x86/include/asm/geode.h
538
539AMD IOMMU (AMD-VI)
540M:	Joerg Roedel <joro@8bytes.org>
541L:	iommu@lists.linux-foundation.org
542T:	git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
543S:	Maintained
544F:	drivers/iommu/amd_iommu*.[ch]
545F:	include/linux/amd-iommu.h
546
547AMD MICROCODE UPDATE SUPPORT
548M:	Andreas Herrmann <herrmann.der.user@googlemail.com>
549L:	amd64-microcode@amd64.org
550S:	Maintained
551F:	arch/x86/kernel/microcode_amd.c
552
553AMS (Apple Motion Sensor) DRIVER
554M:	Michael Hanselmann <linux-kernel@hansmi.ch>
555S:	Supported
556F:	drivers/macintosh/ams/
557
558AMSO1100 RNIC DRIVER
559M:	Tom Tucker <tom@opengridcomputing.com>
560M:	Steve Wise <swise@opengridcomputing.com>
561L:	linux-rdma@vger.kernel.org
562S:	Maintained
563F:	drivers/infiniband/hw/amso1100/
564
565ANALOG DEVICES INC AD9389B DRIVER
566M:	Hans Verkuil <hans.verkuil@cisco.com>
567L:	linux-media@vger.kernel.org
568S:	Maintained
569F:	drivers/media/i2c/ad9389b*
570
571ANALOG DEVICES INC ADV7604 DRIVER
572M:	Hans Verkuil <hans.verkuil@cisco.com>
573L:	linux-media@vger.kernel.org
574S:	Maintained
575F:	drivers/media/i2c/adv7604*
576
577ANALOG DEVICES INC ASOC CODEC DRIVERS
578M:	Lars-Peter Clausen <lars@metafoo.de>
579L:	device-drivers-devel@blackfin.uclinux.org
580L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
581W:	http://wiki.analog.com/
582S:	Supported
583F:	sound/soc/codecs/adau*
584F:	sound/soc/codecs/adav*
585F:	sound/soc/codecs/ad1*
586F:	sound/soc/codecs/ssm*
587F:	sound/soc/codecs/sigmadsp.*
588
589ANALOG DEVICES INC ASOC DRIVERS
590L:	uclinux-dist-devel@blackfin.uclinux.org
591L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
592W:	http://blackfin.uclinux.org/
593S:	Supported
594F:	sound/soc/blackfin/*
595
596AOA (Apple Onboard Audio) ALSA DRIVER
597M:	Johannes Berg <johannes@sipsolutions.net>
598L:	linuxppc-dev@lists.ozlabs.org
599L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
600S:	Maintained
601F:	sound/aoa/
602
603APM DRIVER
604M:	Jiri Kosina <jkosina@suse.cz>
605S:	Odd fixes
606F:	arch/x86/kernel/apm_32.c
607F:	include/linux/apm_bios.h
608F:	include/uapi/linux/apm_bios.h
609F:	drivers/char/apm-emulation.c
610
611APPLE BCM5974 MULTITOUCH DRIVER
612M:	Henrik Rydberg <rydberg@euromail.se>
613L:	linux-input@vger.kernel.org
614S:	Maintained
615F:	drivers/input/mouse/bcm5974.c
616
617APPLE SMC DRIVER
618M:	Henrik Rydberg <rydberg@euromail.se>
619L:	lm-sensors@lm-sensors.org
620S:	Maintained
621F:	drivers/hwmon/applesmc.c
622
623APPLETALK NETWORK LAYER
624M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
625S:	Maintained
626F:	drivers/net/appletalk/
627F:	net/appletalk/
628
629ARASAN COMPACT FLASH PATA CONTROLLER
630M:	Viresh Kumar <viresh.linux@gmail.com>
631L:	linux-ide@vger.kernel.org
632S:	Maintained
633F:	include/linux/pata_arasan_cf_data.h
634F:	drivers/ata/pata_arasan_cf.c
635
636ARC FRAMEBUFFER DRIVER
637M:	Jaya Kumar <jayalk@intworks.biz>
638S:	Maintained
639F:	drivers/video/arcfb.c
640F:	drivers/video/fb_defio.c
641
642ARM MFM AND FLOPPY DRIVERS
643M:	Ian Molton <spyro@f2s.com>
644S:	Maintained
645F:	arch/arm/lib/floppydma.S
646F:	arch/arm/include/asm/floppy.h
647
648ARM PMU PROFILING AND DEBUGGING
649M:	Will Deacon <will.deacon@arm.com>
650S:	Maintained
651F:	arch/arm/kernel/perf_event*
652F:	arch/arm/oprofile/common.c
653F:	arch/arm/include/asm/pmu.h
654F:	arch/arm/kernel/hw_breakpoint.c
655F:	arch/arm/include/asm/hw_breakpoint.h
656
657ARM PORT
658M:	Russell King <linux@arm.linux.org.uk>
659L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
660W:	http://www.arm.linux.org.uk/
661S:	Maintained
662F:	arch/arm/
663
664ARM SUB-ARCHITECTURES
665L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
666S:	Maintained
667F:	arch/arm/mach-*/
668F:	arch/arm/plat-*/
669T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
670
671ARM PRIMECELL AACI PL041 DRIVER
672M:	Russell King <linux@arm.linux.org.uk>
673S:	Maintained
674F:	sound/arm/aaci.*
675
676ARM PRIMECELL CLCD PL110 DRIVER
677M:	Russell King <linux@arm.linux.org.uk>
678S:	Maintained
679F:	drivers/video/amba-clcd.*
680
681ARM PRIMECELL KMI PL050 DRIVER
682M:	Russell King <linux@arm.linux.org.uk>
683S:	Maintained
684F:	drivers/input/serio/ambakmi.*
685F:	include/linux/amba/kmi.h
686
687ARM PRIMECELL MMCI PL180/1 DRIVER
688M:	Russell King <linux@arm.linux.org.uk>
689S:	Maintained
690F:	drivers/mmc/host/mmci.*
691F:	include/linux/amba/mmci.h
692
693ARM PRIMECELL UART PL010 AND PL011 DRIVERS
694M:	Russell King <linux@arm.linux.org.uk>
695S:	Maintained
696F:	drivers/tty/serial/amba-pl01*.c
697F:	include/linux/amba/serial.h
698
699ARM PRIMECELL BUS SUPPORT
700M:	Russell King <linux@arm.linux.org.uk>
701S:	Maintained
702F:	drivers/amba/
703F:	include/linux/amba/bus.h
704
705ARM/ADS SPHERE MACHINE SUPPORT
706M:	Lennert Buytenhek <kernel@wantstofly.org>
707L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
708S:	Maintained
709
710ARM/AFEB9260 MACHINE SUPPORT
711M:	Sergey Lapin <slapin@ossfans.org>
712L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
713S:	Maintained
714
715ARM/AJECO 1ARM MACHINE SUPPORT
716M:	Lennert Buytenhek <kernel@wantstofly.org>
717L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
718S:	Maintained
719
720ARM/Allwinner A1X SoC support
721M:	Maxime Ripard <maxime.ripard@free-electrons.com>
722L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
723S:	Maintained
724F:	arch/arm/mach-sunxi/
725
726ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
727M:	Andrew Victor <linux@maxim.org.za>
728M:	Nicolas Ferre <nicolas.ferre@atmel.com>
729M:	Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
730L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
731W:	http://maxim.org.za/at91_26.html
732W:	http://www.linux4sam.org
733S:	Supported
734F:	arch/arm/mach-at91/
735
736ARM/CALXEDA HIGHBANK ARCHITECTURE
737M:	Rob Herring <rob.herring@calxeda.com>
738L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
739S:	Maintained
740F:	arch/arm/mach-highbank/
741
742ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
743M:	Anton Vorontsov <avorontsov@mvista.com>
744S:	Maintained
745F:	arch/arm/mach-cns3xxx/
746T:	git git://git.infradead.org/users/cbou/linux-cns3xxx.git
747
748ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
749M:	Alexander Shiyan <shc_work@mail.ru>
750L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
751S:	Odd Fixes
752F:	arch/arm/mach-clps711x/
753
754ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
755M:	Hartley Sweeten <hsweeten@visionengravers.com>
756M:	Ryan Mallon <rmallon@gmail.com>
757L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
758S:	Maintained
759F:	arch/arm/mach-ep93xx/
760F:	arch/arm/mach-ep93xx/include/mach/
761
762ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
763M:	Lennert Buytenhek <kernel@wantstofly.org>
764L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
765S:	Maintained
766
767ARM/CLKDEV SUPPORT
768M:	Russell King <linux@arm.linux.org.uk>
769L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
770S:	Maintained
771F:	arch/arm/include/asm/clkdev.h
772F:	drivers/clk/clkdev.c
773
774ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
775M:	Mike Rapoport <mike@compulab.co.il>
776L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
777S:	Maintained
778
779ARM/CONTEC MICRO9 MACHINE SUPPORT
780M:	Hubert Feurstein <hubert.feurstein@contec.at>
781S:	Maintained
782F:	arch/arm/mach-ep93xx/micro9.c
783
784ARM/CORGI MACHINE SUPPORT
785M:	Richard Purdie <rpurdie@rpsys.net>
786S:	Maintained
787
788ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
789M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
790L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
791T:	git git://git.berlios.de/gemini-board
792S:	Maintained
793F:	arch/arm/mach-gemini/
794
795ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
796M:	Barry Song <baohua.song@csr.com>
797L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
798S:	Maintained
799F:	arch/arm/mach-prima2/
800F:	drivers/dma/sirf-dma.c
801F:	drivers/i2c/busses/i2c-sirf.c
802F:	drivers/pinctrl/pinctrl-sirf.c
803F:	drivers/spi/spi-sirf.c
804
805ARM/EBSA110 MACHINE SUPPORT
806M:	Russell King <linux@arm.linux.org.uk>
807L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
808W:	http://www.arm.linux.org.uk/
809S:	Maintained
810F:	arch/arm/mach-ebsa110/
811F:	drivers/net/ethernet/amd/am79c961a.*
812
813ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
814M:	Daniel Ribeiro <drwyrm@gmail.com>
815M:	Stefan Schmidt <stefan@openezx.org>
816M:	Harald Welte <laforge@openezx.org>
817L:	openezx-devel@lists.openezx.org (moderated for non-subscribers)
818W:	http://www.openezx.org/
819S:	Maintained
820T:	topgit git://git.openezx.org/openezx.git
821F:	arch/arm/mach-pxa/ezx.c
822
823ARM/FARADAY FA526 PORT
824M:	Hans Ulli Kroll <ulli.kroll@googlemail.com>
825L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
826S:	Maintained
827T:	git git://git.berlios.de/gemini-board
828F:	arch/arm/mm/*-fa*
829
830ARM/FOOTBRIDGE ARCHITECTURE
831M:	Russell King <linux@arm.linux.org.uk>
832L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
833W:	http://www.arm.linux.org.uk/
834S:	Maintained
835F:	arch/arm/include/asm/hardware/dec21285.h
836F:	arch/arm/mach-footbridge/
837
838ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
839M:	Sascha Hauer <kernel@pengutronix.de>
840L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
841S:	Maintained
842T:	git git://git.pengutronix.de/git/imx/linux-2.6.git
843F:	arch/arm/mach-imx/
844F:	arch/arm/configs/imx*_defconfig
845
846ARM/FREESCALE IMX6
847M:	Shawn Guo <shawn.guo@linaro.org>
848L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849S:	Maintained
850T:	git git://git.linaro.org/people/shawnguo/linux-2.6.git
851F:	arch/arm/mach-imx/*imx6*
852
853ARM/FREESCALE MXS ARM ARCHITECTURE
854M:	Shawn Guo <shawn.guo@linaro.org>
855L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
856S:	Maintained
857T:	git git://git.linaro.org/people/shawnguo/linux-2.6.git
858F:	arch/arm/mach-mxs/
859
860ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
861M:	Lennert Buytenhek <kernel@wantstofly.org>
862L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
863S:	Maintained
864
865ARM/GUMSTIX MACHINE SUPPORT
866M:	Steve Sakoman <sakoman@gmail.com>
867L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
868S:	Maintained
869
870ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
871M:	Philipp Zabel <philipp.zabel@gmail.com>
872M:	Paul Parsons <lost.distance@yahoo.com>
873L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
874S:	Maintained
875F:	arch/arm/mach-pxa/hx4700.c
876F:	arch/arm/mach-pxa/include/mach/hx4700.h
877F:	sound/soc/pxa/hx4700.c
878
879ARM/HP JORNADA 7XX MACHINE SUPPORT
880M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
881W:	www.jlime.com
882S:	Maintained
883T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
884F:	arch/arm/mach-sa1100/jornada720.c
885F:	arch/arm/mach-sa1100/include/mach/jornada720.h
886
887ARM/IGEP MACHINE SUPPORT
888M:	Enric Balletbo i Serra <eballetbo@gmail.com>
889M:	Javier Martinez Canillas <javier@dowhile0.org>
890L:	linux-omap@vger.kernel.org
891L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892S:	Maintained
893F:	arch/arm/mach-omap2/board-igep0020.c
894
895ARM/INCOME PXA270 SUPPORT
896M:	Marek Vasut <marek.vasut@gmail.com>
897L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
898S:	Maintained
899F:	arch/arm/mach-pxa/colibri-pxa270-income.c
900
901ARM/INTEL IOP32X ARM ARCHITECTURE
902M:	Lennert Buytenhek <kernel@wantstofly.org>
903M:	Dan Williams <djbw@fb.com>
904L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905S:	Maintained
906
907ARM/INTEL IOP33X ARM ARCHITECTURE
908M:	Dan Williams <djbw@fb.com>
909L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
910S:	Maintained
911
912ARM/INTEL IOP13XX ARM ARCHITECTURE
913M:	Lennert Buytenhek <kernel@wantstofly.org>
914M:	Dan Williams <djbw@fb.com>
915L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
916S:	Maintained
917
918ARM/INTEL IQ81342EX MACHINE SUPPORT
919M:	Lennert Buytenhek <kernel@wantstofly.org>
920M:	Dan Williams <djbw@fb.com>
921L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
922S:	Maintained
923
924ARM/INTEL IXDP2850 MACHINE SUPPORT
925M:	Lennert Buytenhek <kernel@wantstofly.org>
926L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
927S:	Maintained
928
929ARM/INTEL IXP4XX ARM ARCHITECTURE
930M:	Imre Kaloz <kaloz@openwrt.org>
931M:	Krzysztof Halasa <khc@pm.waw.pl>
932L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
933S:	Maintained
934F:	arch/arm/mach-ixp4xx/
935
936ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
937M:	Jonathan Cameron <jic23@cam.ac.uk>
938L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939S:	Maintained
940F:	arch/arm/mach-pxa/stargate2.c
941F:	drivers/pcmcia/pxa2xx_stargate2.c
942
943ARM/INTEL XSC3 (MANZANO) ARM CORE
944M:	Lennert Buytenhek <kernel@wantstofly.org>
945M:	Dan Williams <djbw@fb.com>
946L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
947S:	Maintained
948
949ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
950M:	Lennert Buytenhek <kernel@wantstofly.org>
951L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
952S:	Maintained
953
954ARM/LOGICPD PXA270 MACHINE SUPPORT
955M:	Lennert Buytenhek <kernel@wantstofly.org>
956L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
957S:	Maintained
958
959ARM/MAGICIAN MACHINE SUPPORT
960M:	Philipp Zabel <philipp.zabel@gmail.com>
961S:	Maintained
962
963ARM/Marvell Armada 370 and Armada XP SOC support
964M:	Jason Cooper <jason@lakedaemon.net>
965M:	Andrew Lunn <andrew@lunn.ch>
966M:	Gregory Clement <gregory.clement@free-electrons.com>
967L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968S:	Maintained
969F:	arch/arm/mach-mvebu/
970
971ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
972M:	Jason Cooper <jason@lakedaemon.net>
973M:	Andrew Lunn <andrew@lunn.ch>
974L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
975S:	Maintained
976F:	arch/arm/mach-dove/
977F:	arch/arm/mach-kirkwood/
978F:	arch/arm/mach-mv78xx0/
979F:	arch/arm/mach-orion5x/
980F:	arch/arm/plat-orion/
981
982ARM/Orion SoC/Technologic Systems TS-78xx platform support
983M:	Alexander Clouter <alex@digriz.org.uk>
984L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985W:	http://www.digriz.org.uk/ts78xx/kernel
986S:	Maintained
987F:	arch/arm/mach-orion5x/ts78xx-*
988
989ARM/MICREL KS8695 ARCHITECTURE
990M:	Greg Ungerer <gerg@uclinux.org>
991L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992F:	arch/arm/mach-ks8695
993S:	Odd Fixes
994
995ARM/MIOA701 MACHINE SUPPORT
996M:	Robert Jarzmik <robert.jarzmik@free.fr>
997L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998F:	arch/arm/mach-pxa/mioa701.c
999S:	Maintained
1000
1001ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1002M:	Michael Petchkovsky <mkpetch@internode.on.net>
1003S:	Maintained
1004
1005ARM/NOMADIK ARCHITECTURE
1006M:	Alessandro Rubini <rubini@unipv.it>
1007M:	Linus Walleij <linus.walleij@linaro.org>
1008M:	STEricsson <STEricsson_nomadik_linux@list.st.com>
1009L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010S:	Maintained
1011F:	arch/arm/mach-nomadik/
1012F:	arch/arm/plat-nomadik/
1013F:	drivers/i2c/busses/i2c-nomadik.c
1014T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1015
1016ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1017M:	Nelson Castillo <arhuaco@freaks-unidos.net>
1018L:	openmoko-kernel@lists.openmoko.org (subscribers-only)
1019W:	http://wiki.openmoko.org/wiki/Neo_FreeRunner
1020S:	Supported
1021
1022ARM/QUALCOMM MSM MACHINE SUPPORT
1023M:	David Brown <davidb@codeaurora.org>
1024M:	Daniel Walker <dwalker@fifo99.com>
1025M:	Bryan Huntsman <bryanh@codeaurora.org>
1026L:	linux-arm-msm@vger.kernel.org
1027F:	arch/arm/mach-msm/
1028F:	drivers/video/msm/
1029F:	drivers/mmc/host/msm_sdcc.c
1030F:	drivers/mmc/host/msm_sdcc.h
1031F:	drivers/tty/serial/msm_serial.h
1032F:	drivers/tty/serial/msm_serial.c
1033F:	drivers/*/pm8???-*
1034F:	include/linux/mfd/pm8xxx/
1035T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1036S:	Maintained
1037
1038ARM/TOSA MACHINE SUPPORT
1039M:	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1040M:	Dirk Opfer <dirk@opfer-online.de>
1041S:	Maintained
1042
1043ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1044M:	Marek Vasut <marek.vasut@gmail.com>
1045L:	linux-arm-kernel@lists.infradead.org
1046W:	http://hackndev.com
1047S:	Maintained
1048F:	arch/arm/mach-pxa/include/mach/palmtx.h
1049F:	arch/arm/mach-pxa/palmtx.c
1050F:	arch/arm/mach-pxa/include/mach/palmt5.h
1051F:	arch/arm/mach-pxa/palmt5.c
1052F:	arch/arm/mach-pxa/include/mach/palmld.h
1053F:	arch/arm/mach-pxa/palmld.c
1054F:	arch/arm/mach-pxa/include/mach/palmte2.h
1055F:	arch/arm/mach-pxa/palmte2.c
1056F:	arch/arm/mach-pxa/include/mach/palmtc.h
1057F:	arch/arm/mach-pxa/palmtc.c
1058
1059ARM/PALM TREO SUPPORT
1060M:	Tomas Cech <sleep_walker@suse.cz>
1061L:	linux-arm-kernel@lists.infradead.org
1062W:	http://hackndev.com
1063S:	Maintained
1064F:	arch/arm/mach-pxa/include/mach/palmtreo.h
1065F:	arch/arm/mach-pxa/palmtreo.c
1066
1067ARM/PALMZ72 SUPPORT
1068M:	Sergey Lapin <slapin@ossfans.org>
1069L:	linux-arm-kernel@lists.infradead.org
1070W:	http://hackndev.com
1071S:	Maintained
1072F:	arch/arm/mach-pxa/include/mach/palmz72.h
1073F:	arch/arm/mach-pxa/palmz72.c
1074
1075ARM/PLEB SUPPORT
1076M:	Peter Chubb <pleb@gelato.unsw.edu.au>
1077W:	http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1078S:	Maintained
1079
1080ARM/PT DIGITAL BOARD PORT
1081M:	Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1082L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083W:	http://www.arm.linux.org.uk/
1084S:	Maintained
1085
1086ARM/RADISYS ENP2611 MACHINE SUPPORT
1087M:	Lennert Buytenhek <kernel@wantstofly.org>
1088L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1089S:	Maintained
1090
1091ARM/RISCPC ARCHITECTURE
1092M:	Russell King <linux@arm.linux.org.uk>
1093L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1094W:	http://www.arm.linux.org.uk/
1095S:	Maintained
1096F:	arch/arm/include/asm/hardware/entry-macro-iomd.S
1097F:	arch/arm/include/asm/hardware/ioc.h
1098F:	arch/arm/include/asm/hardware/iomd.h
1099F:	arch/arm/include/asm/hardware/memc.h
1100F:	arch/arm/mach-rpc/
1101F:	drivers/net/ethernet/8390/etherh.c
1102F:	drivers/net/ethernet/i825xx/ether1*
1103F:	drivers/net/ethernet/seeq/ether3*
1104F:	drivers/scsi/arm/
1105
1106ARM/SHARK MACHINE SUPPORT
1107M:	Alexander Schulz <alex@shark-linux.de>
1108W:	http://www.shark-linux.de/shark.html
1109S:	Maintained
1110
1111ARM/SAMSUNG ARM ARCHITECTURES
1112M:	Ben Dooks <ben-linux@fluff.org>
1113M:	Kukjin Kim <kgene.kim@samsung.com>
1114L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1116W:	http://www.fluff.org/ben/linux/
1117S:	Maintained
1118F:	arch/arm/plat-samsung/
1119F:	arch/arm/plat-s3c24xx/
1120F:	arch/arm/mach-s3c24*/
1121F:	arch/arm/mach-s3c64xx/
1122F:	drivers/*/*s3c2410*
1123F:	drivers/*/*/*s3c2410*
1124F:	drivers/spi/spi-s3c*
1125F:	sound/soc/samsung/*
1126
1127ARM/S5P EXYNOS ARM ARCHITECTURES
1128M:	Kukjin Kim <kgene.kim@samsung.com>
1129L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1130L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1131S:	Maintained
1132F:	arch/arm/mach-s5p*/
1133F:	arch/arm/mach-exynos*/
1134
1135ARM/SAMSUNG MOBILE MACHINE SUPPORT
1136M:	Kyungmin Park <kyungmin.park@samsung.com>
1137L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1138S:	Maintained
1139F:	arch/arm/mach-s5pv210/mach-aquila.c
1140F:	arch/arm/mach-s5pv210/mach-goni.c
1141F:	arch/arm/mach-exynos/mach-universal_c210.c
1142F:	arch/arm/mach-exynos/mach-nuri.c
1143
1144ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1145M:	Kyungmin Park <kyungmin.park@samsung.com>
1146M:	Kamil Debski <k.debski@samsung.com>
1147L:	linux-arm-kernel@lists.infradead.org
1148L:	linux-media@vger.kernel.org
1149S:	Maintained
1150F:	drivers/media/platform/s5p-g2d/
1151
1152ARM/SAMSUNG S5P SERIES FIMC SUPPORT
1153M:	Kyungmin Park <kyungmin.park@samsung.com>
1154M:	Sylwester Nawrocki <s.nawrocki@samsung.com>
1155L:	linux-arm-kernel@lists.infradead.org
1156L:	linux-media@vger.kernel.org
1157S:	Maintained
1158F:	arch/arm/plat-samsung/include/plat/*fimc*
1159F:	drivers/media/platform/s5p-fimc/
1160
1161ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1162M:	Kyungmin Park <kyungmin.park@samsung.com>
1163M:	Kamil Debski <k.debski@samsung.com>
1164M:	Jeongtae Park <jtp.park@samsung.com>
1165L:	linux-arm-kernel@lists.infradead.org
1166L:	linux-media@vger.kernel.org
1167S:	Maintained
1168F:	arch/arm/plat-samsung/s5p-dev-mfc.c
1169F:	drivers/media/platform/s5p-mfc/
1170
1171ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1172M:	Kyungmin Park <kyungmin.park@samsung.com>
1173M:	Tomasz Stanislawski <t.stanislaws@samsung.com>
1174L:	linux-arm-kernel@lists.infradead.org
1175L:	linux-media@vger.kernel.org
1176S:	Maintained
1177F:	drivers/media/platform/s5p-tv/
1178
1179ARM/SHMOBILE ARM ARCHITECTURE
1180M:	Simon Horman <horms@verge.net.au>
1181M:	Magnus Damm <magnus.damm@gmail.com>
1182L:	linux-sh@vger.kernel.org
1183W:	http://oss.renesas.com
1184Q:	http://patchwork.kernel.org/project/linux-sh/list/
1185T:	git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1186S:	Supported
1187F:	arch/arm/mach-shmobile/
1188F:	drivers/sh/
1189
1190ARM/SOCFPGA ARCHITECTURE
1191M:	Dinh Nguyen <dinguyen@altera.com>
1192S:	Maintained
1193F:	arch/arm/mach-socfpga/
1194
1195ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1196M:	Dinh Nguyen <dinguyen@altera.com>
1197S:	Maintained
1198F:	drivers/clk/socfpga/
1199
1200ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1201M:	Lennert Buytenhek <kernel@wantstofly.org>
1202L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1203S:	Maintained
1204
1205ARM/TETON BGA MACHINE SUPPORT
1206M:	"Mark F. Brown" <mark.brown314@gmail.com>
1207L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208S:	Maintained
1209
1210ARM/THECUS N2100 MACHINE SUPPORT
1211M:	Lennert Buytenhek <kernel@wantstofly.org>
1212L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213S:	Maintained
1214
1215ARM/NUVOTON W90X900 ARM ARCHITECTURE
1216M:	Wan ZongShun <mcuos.com@gmail.com>
1217L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218W:	http://www.mcuos.com
1219S:	Maintained
1220F:	arch/arm/mach-w90x900/
1221F:	drivers/input/keyboard/w90p910_keypad.c
1222F:	drivers/input/touchscreen/w90p910_ts.c
1223F:	drivers/watchdog/nuc900_wdt.c
1224F:	drivers/net/ethernet/nuvoton/w90p910_ether.c
1225F:	drivers/mtd/nand/nuc900_nand.c
1226F:	drivers/rtc/rtc-nuc900.c
1227F:	drivers/spi/spi-nuc900.c
1228F:	drivers/usb/host/ehci-w90x900.c
1229F:	drivers/video/nuc900fb.c
1230
1231ARM/U300 MACHINE SUPPORT
1232M:	Linus Walleij <linus.walleij@linaro.org>
1233L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1234S:	Supported
1235F:	arch/arm/mach-u300/
1236F:	drivers/i2c/busses/i2c-stu300.c
1237F:	drivers/rtc/rtc-coh901331.c
1238F:	drivers/watchdog/coh901327_wdt.c
1239F:	drivers/dma/coh901318*
1240F:	drivers/mfd/ab3100*
1241F:	drivers/rtc/rtc-ab3100.c
1242F:	drivers/rtc/rtc-coh901331.c
1243T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1244
1245ARM/Ux500 ARM ARCHITECTURE
1246M:	Srinidhi Kasagar <srinidhi.kasagar@stericsson.com>
1247M:	Linus Walleij <linus.walleij@linaro.org>
1248L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1249S:	Maintained
1250F:	arch/arm/mach-ux500/
1251F:	drivers/clocksource/clksrc-dbx500-prcmu.c
1252F:	drivers/dma/ste_dma40*
1253F:	drivers/hwspinlock/u8500_hsem.c
1254F:	drivers/mfd/abx500*
1255F:	drivers/mfd/ab8500*
1256F:	drivers/mfd/dbx500*
1257F:	drivers/mfd/db8500*
1258F:	drivers/pinctrl/pinctrl-nomadik*
1259F:	drivers/rtc/rtc-ab8500.c
1260F:	drivers/rtc/rtc-pl031.c
1261T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1262
1263ARM/VFP SUPPORT
1264M:	Russell King <linux@arm.linux.org.uk>
1265L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1266W:	http://www.arm.linux.org.uk/
1267S:	Maintained
1268F:	arch/arm/vfp/
1269
1270ARM/VOIPAC PXA270 SUPPORT
1271M:	Marek Vasut <marek.vasut@gmail.com>
1272L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1273S:	Maintained
1274F:	arch/arm/mach-pxa/vpac270.c
1275F:	arch/arm/mach-pxa/include/mach/vpac270.h
1276
1277ARM/VT8500 ARM ARCHITECTURE
1278M:	Tony Prisk <linux@prisktech.co.nz>
1279L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280S:	Maintained
1281F:	arch/arm/mach-vt8500/
1282F:	drivers/clocksource/vt8500_timer.c
1283F:	drivers/gpio/gpio-vt8500.c
1284F:	drivers/mmc/host/wmt-sdmmc.c
1285F:	drivers/pwm/pwm-vt8500.c
1286F:	drivers/rtc/rtc-vt8500.c
1287F:	drivers/tty/serial/vt8500_serial.c
1288F:	drivers/usb/host/ehci-vt8500.c
1289F:	drivers/usb/host/uhci-platform.c
1290F:	drivers/video/vt8500lcdfb.*
1291F:	drivers/video/wm8505fb*
1292F:	drivers/video/wmt_ge_rops.*
1293
1294ARM/ZIPIT Z2 SUPPORT
1295M:	Marek Vasut <marek.vasut@gmail.com>
1296L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1297S:	Maintained
1298F:	arch/arm/mach-pxa/z2.c
1299F:	arch/arm/mach-pxa/include/mach/z2.h
1300
1301ARM/ZYNQ ARCHITECTURE
1302M:	Michal Simek <michal.simek@xilinx.com>
1303L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304W:	http://wiki.xilinx.com
1305T:	git git://git.xilinx.com/linux-xlnx.git
1306S:	Supported
1307F:	arch/arm/mach-zynq/
1308
1309ARM64 PORT (AARCH64 ARCHITECTURE)
1310M:	Catalin Marinas <catalin.marinas@arm.com>
1311M:	Will Deacon <will.deacon@arm.com>
1312L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313S:	Maintained
1314F:	arch/arm64/
1315F:	Documentation/arm64/
1316
1317AS3645A LED FLASH CONTROLLER DRIVER
1318M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1319L:	linux-media@vger.kernel.org
1320T:	git git://linuxtv.org/media_tree.git
1321S:	Maintained
1322F:	drivers/media/i2c/as3645a.c
1323F:	include/media/as3645a.h
1324
1325ASC7621 HARDWARE MONITOR DRIVER
1326M:	George Joseph <george.joseph@fairview5.com>
1327L:	lm-sensors@lm-sensors.org
1328S:	Maintained
1329F:	Documentation/hwmon/asc7621
1330F:	drivers/hwmon/asc7621.c
1331
1332ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1333M:	Corentin Chary <corentin.chary@gmail.com>
1334L:	acpi4asus-user@lists.sourceforge.net
1335L:	platform-driver-x86@vger.kernel.org
1336W:	http://acpi4asus.sf.net
1337S:	Maintained
1338F:	drivers/platform/x86/asus*.c
1339F:	drivers/platform/x86/eeepc*.c
1340
1341ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1342M:	Dan Williams <djbw@fb.com>
1343W:	http://sourceforge.net/projects/xscaleiop
1344S:	Maintained
1345F:	Documentation/crypto/async-tx-api.txt
1346F:	crypto/async_tx/
1347F:	drivers/dma/
1348F:	include/linux/dmaengine.h
1349F:	include/linux/async_tx.h
1350
1351AT24 EEPROM DRIVER
1352M:	Wolfram Sang <wsa@the-dreams.de>
1353L:	linux-i2c@vger.kernel.org
1354S:	Maintained
1355F:	drivers/misc/eeprom/at24.c
1356F:	include/linux/i2c/at24.h
1357
1358ATA OVER ETHERNET (AOE) DRIVER
1359M:	"Ed L. Cashin" <ecashin@coraid.com>
1360W:	http://support.coraid.com/support/linux
1361S:	Supported
1362F:	Documentation/aoe/
1363F:	drivers/block/aoe/
1364
1365ATHEROS ATH GENERIC UTILITIES
1366M:	"Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1367L:	linux-wireless@vger.kernel.org
1368S:	Supported
1369F:	drivers/net/wireless/ath/*
1370
1371ATHEROS ATH5K WIRELESS DRIVER
1372M:	Jiri Slaby <jirislaby@gmail.com>
1373M:	Nick Kossifidis <mickflemm@gmail.com>
1374M:	"Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1375L:	linux-wireless@vger.kernel.org
1376L:	ath5k-devel@lists.ath5k.org
1377W:	http://wireless.kernel.org/en/users/Drivers/ath5k
1378S:	Maintained
1379F:	drivers/net/wireless/ath/ath5k/
1380
1381ATHEROS ATH6KL WIRELESS DRIVER
1382M:	Kalle Valo <kvalo@qca.qualcomm.com>
1383L:	linux-wireless@vger.kernel.org
1384W:	http://wireless.kernel.org/en/users/Drivers/ath6kl
1385T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath6kl.git
1386S:	Supported
1387F:	drivers/net/wireless/ath/ath6kl/
1388
1389ATHEROS ATH9K WIRELESS DRIVER
1390M:	"Luis R. Rodriguez" <mcgrof@qca.qualcomm.com>
1391M:	Jouni Malinen <jouni@qca.qualcomm.com>
1392M:	Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
1393M:	Senthil Balasubramanian <senthilb@qca.qualcomm.com>
1394L:	linux-wireless@vger.kernel.org
1395L:	ath9k-devel@lists.ath9k.org
1396W:	http://wireless.kernel.org/en/users/Drivers/ath9k
1397S:	Supported
1398F:	drivers/net/wireless/ath/ath9k/
1399
1400WILOCITY WIL6210 WIRELESS DRIVER
1401M:	Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1402L:	linux-wireless@vger.kernel.org
1403L:	wil6210@qca.qualcomm.com
1404S:	Supported
1405W:	http://wireless.kernel.org/en/users/Drivers/wil6210
1406F:	drivers/net/wireless/ath/wil6210/
1407
1408CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1409M:	Christian Lamparter <chunkeey@googlemail.com>
1410L:	linux-wireless@vger.kernel.org
1411W:	http://wireless.kernel.org/en/users/Drivers/carl9170
1412S:	Maintained
1413F:	drivers/net/wireless/ath/carl9170/
1414
1415ATK0110 HWMON DRIVER
1416M:	Luca Tettamanti <kronos.it@gmail.com>
1417L:	lm-sensors@lm-sensors.org
1418S:	Maintained
1419F:	drivers/hwmon/asus_atk0110.c
1420
1421ATI_REMOTE2 DRIVER
1422M:	Ville Syrjala <syrjala@sci.fi>
1423S:	Maintained
1424F:	drivers/input/misc/ati_remote2.c
1425
1426ATLX ETHERNET DRIVERS
1427M:	Jay Cliburn <jcliburn@gmail.com>
1428M:	Chris Snook <chris.snook@gmail.com>
1429L:	netdev@vger.kernel.org
1430W:	http://sourceforge.net/projects/atl1
1431W:	http://atl1.sourceforge.net
1432S:	Maintained
1433F:	drivers/net/ethernet/atheros/
1434
1435ATM
1436M:	Chas Williams <chas@cmf.nrl.navy.mil>
1437L:	linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1438L:	netdev@vger.kernel.org
1439W:	http://linux-atm.sourceforge.net
1440S:	Maintained
1441F:	drivers/atm/
1442F:	include/linux/atm*
1443F:	include/uapi/linux/atm*
1444
1445ATMEL AT91 / AT32 MCI DRIVER
1446M:	Ludovic Desroches <ludovic.desroches@atmel.com>
1447S:	Maintained
1448F:	drivers/mmc/host/atmel-mci.c
1449F:	drivers/mmc/host/atmel-mci-regs.h
1450
1451ATMEL AT91 / AT32 SERIAL DRIVER
1452M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1453S:	Supported
1454F:	drivers/tty/serial/atmel_serial.c
1455
1456ATMEL DMA DRIVER
1457M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1458L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1459S:	Supported
1460F:	drivers/dma/at_hdmac.c
1461F:	drivers/dma/at_hdmac_regs.h
1462F:	include/linux/platform_data/dma-atmel.h
1463
1464ATMEL I2C DRIVER
1465M:	Ludovic Desroches <ludovic.desroches@atmel.com>
1466L:	linux-i2c@vger.kernel.org
1467S:	Supported
1468F:	drivers/i2c/busses/i2c-at91.c
1469
1470ATMEL ISI DRIVER
1471M:	Josh Wu <josh.wu@atmel.com>
1472L:	linux-media@vger.kernel.org
1473S:	Supported
1474F:	drivers/media/platform/soc_camera/atmel-isi.c
1475F:	include/media/atmel-isi.h
1476
1477ATMEL LCDFB DRIVER
1478M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1479L:	linux-fbdev@vger.kernel.org
1480S:	Maintained
1481F:	drivers/video/atmel_lcdfb.c
1482F:	include/video/atmel_lcdc.h
1483
1484ATMEL MACB ETHERNET DRIVER
1485M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1486S:	Supported
1487F:	drivers/net/ethernet/cadence/
1488
1489ATMEL SPI DRIVER
1490M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1491S:	Supported
1492F:	drivers/spi/spi-atmel.*
1493
1494ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1495M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1496L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1497S:	Supported
1498F:	drivers/misc/atmel_tclib.c
1499F:	drivers/clocksource/tcb_clksrc.c
1500
1501ATMEL TSADCC DRIVER
1502M:	Josh Wu <josh.wu@atmel.com>
1503L:	linux-input@vger.kernel.org
1504S:	Supported
1505F:	drivers/input/touchscreen/atmel_tsadcc.c
1506
1507ATMEL USBA UDC DRIVER
1508M:	Nicolas Ferre <nicolas.ferre@atmel.com>
1509L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510S:	Supported
1511F:	drivers/usb/gadget/atmel_usba_udc.*
1512
1513ATMEL WIRELESS DRIVER
1514M:	Simon Kelley <simon@thekelleys.org.uk>
1515L:	linux-wireless@vger.kernel.org
1516W:	http://www.thekelleys.org.uk/atmel
1517W:	http://atmelwlandriver.sourceforge.net/
1518S:	Maintained
1519F:	drivers/net/wireless/atmel*
1520
1521AUDIT SUBSYSTEM
1522M:	Al Viro <viro@zeniv.linux.org.uk>
1523M:	Eric Paris <eparis@redhat.com>
1524L:	linux-audit@redhat.com (subscribers-only)
1525W:	http://people.redhat.com/sgrubb/audit/
1526T:	git git://git.kernel.org/pub/scm/linux/kernel/git/viro/audit-current.git
1527S:	Maintained
1528F:	include/linux/audit.h
1529F:	include/uapi/linux/audit.h
1530F:	kernel/audit*
1531
1532AUXILIARY DISPLAY DRIVERS
1533M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1534W:	http://miguelojeda.es/auxdisplay.htm
1535W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1536S:	Maintained
1537F:	drivers/auxdisplay/
1538F:	include/linux/cfag12864b.h
1539
1540AVR32 ARCHITECTURE
1541M:	Haavard Skinnemoen <hskinnemoen@gmail.com>
1542M:	Hans-Christian Egtvedt <egtvedt@samfundet.no>
1543W:	http://www.atmel.com/products/AVR32/
1544W:	http://mirror.egtvedt.no/avr32linux.org/
1545W:	http://avrfreaks.net/
1546S:	Maintained
1547F:	arch/avr32/
1548
1549AVR32/AT32AP MACHINE SUPPORT
1550M:	Haavard Skinnemoen <hskinnemoen@gmail.com>
1551M:	Hans-Christian Egtvedt <egtvedt@samfundet.no>
1552S:	Maintained
1553F:	arch/avr32/mach-at32ap/
1554
1555AX.25 NETWORK LAYER
1556M:	Ralf Baechle <ralf@linux-mips.org>
1557L:	linux-hams@vger.kernel.org
1558W:	http://www.linux-ax25.org/
1559S:	Maintained
1560F:	include/uapi/linux/ax25.h
1561F:	include/net/ax25.h
1562F:	net/ax25/
1563
1564AZ6007 DVB DRIVER
1565M:	Mauro Carvalho Chehab <mchehab@redhat.com>
1566L:	linux-media@vger.kernel.org
1567W:	http://linuxtv.org
1568T:	git git://linuxtv.org/media_tree.git
1569S:	Maintained
1570F:	drivers/media/usb/dvb-usb-v2/az6007.c
1571
1572AZTECH FM RADIO RECEIVER DRIVER
1573M:	Hans Verkuil <hverkuil@xs4all.nl>
1574L:	linux-media@vger.kernel.org
1575T:	git git://linuxtv.org/media_tree.git
1576W:	http://linuxtv.org
1577S:	Maintained
1578F:	drivers/media/radio/radio-aztech*
1579
1580B43 WIRELESS DRIVER
1581M:	Stefano Brivio <stefano.brivio@polimi.it>
1582L:	linux-wireless@vger.kernel.org
1583L:	b43-dev@lists.infradead.org
1584W:	http://wireless.kernel.org/en/users/Drivers/b43
1585S:	Maintained
1586F:	drivers/net/wireless/b43/
1587
1588B43LEGACY WIRELESS DRIVER
1589M:	Larry Finger <Larry.Finger@lwfinger.net>
1590M:	Stefano Brivio <stefano.brivio@polimi.it>
1591L:	linux-wireless@vger.kernel.org
1592L:	b43-dev@lists.infradead.org
1593W:	http://wireless.kernel.org/en/users/Drivers/b43
1594S:	Maintained
1595F:	drivers/net/wireless/b43legacy/
1596
1597BACKLIGHT CLASS/SUBSYSTEM
1598M:	Richard Purdie <rpurdie@rpsys.net>
1599S:	Maintained
1600F:	drivers/video/backlight/
1601F:	include/linux/backlight.h
1602
1603BATMAN ADVANCED
1604M:	Marek Lindner <lindner_marek@yahoo.de>
1605M:	Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
1606M:	Antonio Quartulli <ordex@autistici.org>
1607L:	b.a.t.m.a.n@lists.open-mesh.org
1608W:	http://www.open-mesh.org/
1609S:	Maintained
1610F:	net/batman-adv/
1611
1612BAYCOM/HDLCDRV DRIVERS FOR AX.25
1613M:	Thomas Sailer <t.sailer@alumni.ethz.ch>
1614L:	linux-hams@vger.kernel.org
1615W:	http://www.baycom.org/~tom/ham/ham.html
1616S:	Maintained
1617F:	drivers/net/hamradio/baycom*
1618
1619BEFS FILE SYSTEM
1620S:	Orphan
1621F:	Documentation/filesystems/befs.txt
1622F:	fs/befs/
1623
1624BFS FILE SYSTEM
1625M:	"Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1626S:	Maintained
1627F:	Documentation/filesystems/bfs.txt
1628F:	fs/bfs/
1629F:	include/uapi/linux/bfs_fs.h
1630
1631BLACKFIN ARCHITECTURE
1632M:	Mike Frysinger <vapier@gentoo.org>
1633L:	uclinux-dist-devel@blackfin.uclinux.org
1634W:	http://blackfin.uclinux.org
1635S:	Supported
1636F:	arch/blackfin/
1637
1638BLACKFIN EMAC DRIVER
1639L:	uclinux-dist-devel@blackfin.uclinux.org
1640W:	http://blackfin.uclinux.org
1641S:	Supported
1642F:	drivers/net/ethernet/adi/
1643
1644BLACKFIN RTC DRIVER
1645M:	Mike Frysinger <vapier.adi@gmail.com>
1646L:	uclinux-dist-devel@blackfin.uclinux.org
1647W:	http://blackfin.uclinux.org
1648S:	Supported
1649F:	drivers/rtc/rtc-bfin.c
1650
1651BLACKFIN SDH DRIVER
1652M:	Sonic Zhang <sonic.zhang@analog.com>
1653L:	uclinux-dist-devel@blackfin.uclinux.org
1654W:	http://blackfin.uclinux.org
1655S:	Supported
1656F:	drivers/mmc/host/bfin_sdh.c
1657
1658BLACKFIN SERIAL DRIVER
1659M:	Sonic Zhang <sonic.zhang@analog.com>
1660L:	uclinux-dist-devel@blackfin.uclinux.org
1661W:	http://blackfin.uclinux.org
1662S:	Supported
1663F:	drivers/tty/serial/bfin_uart.c
1664
1665BLACKFIN WATCHDOG DRIVER
1666M:	Mike Frysinger <vapier.adi@gmail.com>
1667L:	uclinux-dist-devel@blackfin.uclinux.org
1668W:	http://blackfin.uclinux.org
1669S:	Supported
1670F:	drivers/watchdog/bfin_wdt.c
1671
1672BLACKFIN I2C TWI DRIVER
1673M:	Sonic Zhang <sonic.zhang@analog.com>
1674L:	uclinux-dist-devel@blackfin.uclinux.org
1675W:	http://blackfin.uclinux.org/
1676S:	Supported
1677F:	drivers/i2c/busses/i2c-bfin-twi.c
1678
1679BLACKFIN MEDIA DRIVER
1680M:	Scott Jiang <scott.jiang.linux@gmail.com>
1681L:	uclinux-dist-devel@blackfin.uclinux.org
1682W:	http://blackfin.uclinux.org/
1683S:	Supported
1684F:	drivers/media/platform/blackfin/
1685F:	drivers/media/i2c/adv7183*
1686F:	drivers/media/i2c/vs6624*
1687
1688BLINKM RGB LED DRIVER
1689M:	Jan-Simon Moeller <jansimon.moeller@gmx.de>
1690S:	Maintained
1691F:	drivers/leds/leds-blinkm.c
1692
1693BLOCK LAYER
1694M:	Jens Axboe <axboe@kernel.dk>
1695T:	git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
1696S:	Maintained
1697F:	block/
1698
1699BLOCK2MTD DRIVER
1700M:	Joern Engel <joern@lazybastard.org>
1701L:	linux-mtd@lists.infradead.org
1702S:	Maintained
1703F:	drivers/mtd/devices/block2mtd.c
1704
1705BLUETOOTH DRIVERS
1706M:	Marcel Holtmann <marcel@holtmann.org>
1707M:	Gustavo Padovan <gustavo@padovan.org>
1708M:	Johan Hedberg <johan.hedberg@gmail.com>
1709L:	linux-bluetooth@vger.kernel.org
1710W:	http://www.bluez.org/
1711T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1712T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1713S:	Maintained
1714F:	drivers/bluetooth/
1715
1716BLUETOOTH SUBSYSTEM
1717M:	Marcel Holtmann <marcel@holtmann.org>
1718M:	Gustavo Padovan <gustavo@padovan.org>
1719M:	Johan Hedberg <johan.hedberg@gmail.com>
1720L:	linux-bluetooth@vger.kernel.org
1721W:	http://www.bluez.org/
1722T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1723T:	git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1724S:	Maintained
1725F:	net/bluetooth/
1726F:	include/net/bluetooth/
1727
1728BONDING DRIVER
1729M:	Jay Vosburgh <fubar@us.ibm.com>
1730M:	Andy Gospodarek <andy@greyhouse.net>
1731L:	netdev@vger.kernel.org
1732W:	http://sourceforge.net/projects/bonding/
1733S:	Supported
1734F:	drivers/net/bonding/
1735F:	include/uapi/linux/if_bonding.h
1736
1737BROADCOM B44 10/100 ETHERNET DRIVER
1738M:	Gary Zambrano <zambrano@broadcom.com>
1739L:	netdev@vger.kernel.org
1740S:	Supported
1741F:	drivers/net/ethernet/broadcom/b44.*
1742
1743BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1744M:	Michael Chan <mchan@broadcom.com>
1745L:	netdev@vger.kernel.org
1746S:	Supported
1747F:	drivers/net/ethernet/broadcom/bnx2.*
1748F:	drivers/net/ethernet/broadcom/bnx2_*
1749
1750BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1751M:	Eilon Greenstein <eilong@broadcom.com>
1752L:	netdev@vger.kernel.org
1753S:	Supported
1754F:	drivers/net/ethernet/broadcom/bnx2x/
1755
1756BROADCOM BCM2835 ARM ARCHICTURE
1757M:	Stephen Warren <swarren@wwwdotorg.org>
1758L:	linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1759T:	git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1760S:	Maintained
1761F:	arch/arm/mach-bcm2835/
1762F:	arch/arm/boot/dts/bcm2835*
1763F:	arch/arm/configs/bcm2835_defconfig
1764F:	drivers/*/*bcm2835*
1765
1766BROADCOM TG3 GIGABIT ETHERNET DRIVER
1767M:	Matt Carlson <mcarlson@broadcom.com>
1768M:	Michael Chan <mchan@broadcom.com>
1769L:	netdev@vger.kernel.org
1770S:	Supported
1771F:	drivers/net/ethernet/broadcom/tg3.*
1772
1773BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1774M:	Brett Rudley <brudley@broadcom.com>
1775M:	Arend van Spriel <arend@broadcom.com>
1776M:	Franky (Zhenhui) Lin <frankyl@broadcom.com>
1777M:	Hante Meuleman <meuleman@broadcom.com>
1778L:	linux-wireless@vger.kernel.org
1779L:	brcm80211-dev-list@broadcom.com
1780S:	Supported
1781F:	drivers/net/wireless/brcm80211/
1782
1783BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1784M:	Bhanu Prakash Gollapudi <bprakash@broadcom.com>
1785L:	linux-scsi@vger.kernel.org
1786S:	Supported
1787F:	drivers/scsi/bnx2fc/
1788
1789BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1790M:	Rafał Miłecki <zajec5@gmail.com>
1791L:	linux-wireless@vger.kernel.org
1792S:	Maintained
1793F:	drivers/bcma/
1794F:	include/linux/bcma/
1795
1796BROCADE BFA FC SCSI DRIVER
1797M:	Anil Gurumurthy <agurumur@brocade.com>
1798M:	Vijaya Mohan Guvva <vmohan@brocade.com>
1799L:	linux-scsi@vger.kernel.org
1800S:	Supported
1801F:	drivers/scsi/bfa/
1802
1803BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1804M:	Rasesh Mody <rmody@brocade.com>
1805L:	netdev@vger.kernel.org
1806S:	Supported
1807F:	drivers/net/ethernet/brocade/bna/
1808
1809BSG (block layer generic sg v4 driver)
1810M:	FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
1811L:	linux-scsi@vger.kernel.org
1812S:	Supported
1813F:	block/bsg.c
1814F:	include/linux/bsg.h
1815F:	include/uapi/linux/bsg.h
1816
1817BT87X AUDIO DRIVER
1818M:	Clemens Ladisch <clemens@ladisch.de>
1819L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1820T:	git git://git.alsa-project.org/alsa-kernel.git
1821S:	Maintained
1822F:	Documentation/sound/alsa/Bt87x.txt
1823F:	sound/pci/bt87x.c
1824
1825BT8XXGPIO DRIVER
1826M:	Michael Buesch <m@bues.ch>
1827W:	http://bu3sch.de/btgpio.php
1828S:	Maintained
1829F:	drivers/gpio/gpio-bt8xx.c
1830
1831BTRFS FILE SYSTEM
1832M:	Chris Mason <chris.mason@fusionio.com>
1833L:	linux-btrfs@vger.kernel.org
1834W:	http://btrfs.wiki.kernel.org/
1835Q:	http://patchwork.kernel.org/project/linux-btrfs/list/
1836T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
1837S:	Maintained
1838F:	Documentation/filesystems/btrfs.txt
1839F:	fs/btrfs/
1840
1841BTTV VIDEO4LINUX DRIVER
1842M:	Mauro Carvalho Chehab <mchehab@redhat.com>
1843L:	linux-media@vger.kernel.org
1844W:	http://linuxtv.org
1845T:	git git://linuxtv.org/media_tree.git
1846S:	Odd fixes
1847F:	Documentation/video4linux/bttv/
1848F:	drivers/media/pci/bt8xx/bttv*
1849
1850C-MEDIA CMI8788 DRIVER
1851M:	Clemens Ladisch <clemens@ladisch.de>
1852L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
1853T:	git git://git.alsa-project.org/alsa-kernel.git
1854S:	Maintained
1855F:	sound/pci/oxygen/
1856
1857C6X ARCHITECTURE
1858M:	Mark Salter <msalter@redhat.com>
1859M:	Aurelien Jacquiot <a-jacquiot@ti.com>
1860L:	linux-c6x-dev@linux-c6x.org
1861W:	http://www.linux-c6x.org/wiki/index.php/Main_Page
1862S:	Maintained
1863F:	arch/c6x/
1864
1865CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1866M:	David Howells <dhowells@redhat.com>
1867L:	linux-cachefs@redhat.com
1868S:	Supported
1869F:	Documentation/filesystems/caching/cachefiles.txt
1870F:	fs/cachefiles/
1871
1872CADET FM/AM RADIO RECEIVER DRIVER
1873M:	Hans Verkuil <hverkuil@xs4all.nl>
1874L:	linux-media@vger.kernel.org
1875T:	git git://linuxtv.org/media_tree.git
1876W:	http://linuxtv.org
1877S:	Maintained
1878F:	drivers/media/radio/radio-cadet*
1879
1880CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
1881M:	Jonathan Corbet <corbet@lwn.net>
1882L:	linux-media@vger.kernel.org
1883T:	git git://linuxtv.org/media_tree.git
1884S:	Maintained
1885F:	Documentation/video4linux/cafe_ccic
1886F:	drivers/media/platform/marvell-ccic/
1887
1888CAIF NETWORK LAYER
1889M:	Sjur Braendeland <sjur.brandeland@stericsson.com>
1890L:	netdev@vger.kernel.org
1891S:	Supported
1892F:	Documentation/networking/caif/
1893F:	drivers/net/caif/
1894F:	include/uapi/linux/caif/
1895F:	include/net/caif/
1896F:	net/caif/
1897
1898CALGARY x86-64 IOMMU
1899M:	Muli Ben-Yehuda <muli@il.ibm.com>
1900M:	"Jon D. Mason" <jdmason@kudzu.us>
1901L:	discuss@x86-64.org
1902S:	Maintained
1903F:	arch/x86/kernel/pci-calgary_64.c
1904F:	arch/x86/kernel/tce_64.c
1905F:	arch/x86/include/asm/calgary.h
1906F:	arch/x86/include/asm/tce.h
1907
1908CAN NETWORK LAYER
1909M:	Oliver Hartkopp <socketcan@hartkopp.net>
1910L:	linux-can@vger.kernel.org
1911W:	http://gitorious.org/linux-can
1912T:	git git://gitorious.org/linux-can/linux-can-next.git
1913S:	Maintained
1914F:	net/can/
1915F:	include/linux/can/core.h
1916F:	include/uapi/linux/can.h
1917F:	include/uapi/linux/can/bcm.h
1918F:	include/uapi/linux/can/raw.h
1919F:	include/uapi/linux/can/gw.h
1920
1921CAN NETWORK DRIVERS
1922M:	Wolfgang Grandegger <wg@grandegger.com>
1923M:	Marc Kleine-Budde <mkl@pengutronix.de>
1924L:	linux-can@vger.kernel.org
1925W:	http://gitorious.org/linux-can
1926T:	git git://gitorious.org/linux-can/linux-can-next.git
1927S:	Maintained
1928F:	drivers/net/can/
1929F:	include/linux/can/dev.h
1930F:	include/linux/can/platform/
1931F:	include/uapi/linux/can/error.h
1932F:	include/uapi/linux/can/netlink.h
1933
1934CAPABILITIES
1935M:	Serge Hallyn <serge.hallyn@canonical.com>
1936L:	linux-security-module@vger.kernel.org
1937S:	Supported
1938F:	include/linux/capability.h
1939F:	include/uapi/linux/capability.h
1940F:	security/capability.c
1941F:	security/commoncap.c
1942F:	kernel/capability.c
1943
1944CELL BROADBAND ENGINE ARCHITECTURE
1945M:	Arnd Bergmann <arnd@arndb.de>
1946L:	linuxppc-dev@lists.ozlabs.org
1947L:	cbe-oss-dev@lists.ozlabs.org
1948W:	http://www.ibm.com/developerworks/power/cell/
1949S:	Supported
1950F:	arch/powerpc/include/asm/cell*.h
1951F:	arch/powerpc/include/asm/spu*.h
1952F:	arch/powerpc/include/uapi/asm/spu*.h
1953F:	arch/powerpc/oprofile/*cell*
1954F:	arch/powerpc/platforms/cell/
1955
1956CEPH DISTRIBUTED FILE SYSTEM CLIENT
1957M:	Sage Weil <sage@inktank.com>
1958L:	ceph-devel@vger.kernel.org
1959W:	http://ceph.com/
1960T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
1961S:	Supported
1962F:	Documentation/filesystems/ceph.txt
1963F:	fs/ceph
1964F:	net/ceph
1965F:	include/linux/ceph
1966F:	include/linux/crush
1967
1968CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
1969L:	linux-usb@vger.kernel.org
1970S:	Orphan
1971F:	Documentation/usb/WUSB-Design-overview.txt
1972F:	Documentation/usb/wusb-cbaf
1973F:	drivers/usb/host/hwa-hc.c
1974F:	drivers/usb/host/whci/
1975F:	drivers/usb/wusbcore/
1976F:	include/linux/usb/wusb*
1977
1978CFAG12864B LCD DRIVER
1979M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1980W:	http://miguelojeda.es/auxdisplay.htm
1981W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1982S:	Maintained
1983F:	drivers/auxdisplay/cfag12864b.c
1984F:	include/linux/cfag12864b.h
1985
1986CFAG12864BFB LCD FRAMEBUFFER DRIVER
1987M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1988W:	http://miguelojeda.es/auxdisplay.htm
1989W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1990S:	Maintained
1991F:	drivers/auxdisplay/cfag12864bfb.c
1992F:	include/linux/cfag12864b.h
1993
1994CFG80211 and NL80211
1995M:	Johannes Berg <johannes@sipsolutions.net>
1996L:	linux-wireless@vger.kernel.org
1997W:	http://wireless.kernel.org/
1998T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
1999T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2000S:	Maintained
2001F:	include/uapi/linux/nl80211.h
2002F:	include/net/cfg80211.h
2003F:	net/wireless/*
2004X:	net/wireless/wext*
2005
2006CHAR and MISC DRIVERS
2007M:	Arnd Bergmann <arnd@arndb.de>
2008M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2009T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2010S:	Supported
2011F:	drivers/char/*
2012F:	drivers/misc/*
2013
2014CHECKPATCH
2015M:	Andy Whitcroft <apw@canonical.com>
2016M:	Joe Perches <joe@perches.com>
2017S:	Maintained
2018F:	scripts/checkpatch.pl
2019
2020CHINESE DOCUMENTATION
2021M:	Harry Wei <harryxiyou@gmail.com>
2022L:	xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2023L:	linux-kernel@zh-kernel.org (moderated for non-subscribers)
2024S:	Maintained
2025F:	Documentation/zh_CN/
2026
2027CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2028M:	Alexander Shishkin <alexander.shishkin@linux.intel.com>
2029L:	linux-usb@vger.kernel.org
2030S:	Maintained
2031F:	drivers/usb/chipidea/
2032
2033CISCO VIC ETHERNET NIC DRIVER
2034M:	Christian Benvenuti <benve@cisco.com>
2035M:	Roopa Prabhu <roprabhu@cisco.com>
2036M:	Neel Patel <neepatel@cisco.com>
2037M:	Nishank Trivedi <nistrive@cisco.com>
2038S:	Supported
2039F:	drivers/net/ethernet/cisco/enic/
2040
2041CIRRUS LOGIC EP93XX ETHERNET DRIVER
2042M:	Hartley Sweeten <hsweeten@visionengravers.com>
2043L:	netdev@vger.kernel.org
2044S:	Maintained
2045F:	drivers/net/ethernet/cirrus/ep93xx_eth.c
2046
2047CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
2048M:	Lennert Buytenhek <kernel@wantstofly.org>
2049L:	linux-usb@vger.kernel.org
2050S:	Maintained
2051F:	drivers/usb/host/ohci-ep93xx.c
2052
2053CIRRUS LOGIC CS4270 SOUND DRIVER
2054M:	Timur Tabi <timur@tabi.org>
2055L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2056S:	Odd Fixes
2057F:	sound/soc/codecs/cs4270*
2058
2059CLEANCACHE API
2060M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2061L:	linux-kernel@vger.kernel.org
2062S:	Maintained
2063F:	mm/cleancache.c
2064F:	include/linux/cleancache.h
2065
2066CLK API
2067M:	Russell King <linux@arm.linux.org.uk>
2068S:	Maintained
2069F:	include/linux/clk.h
2070
2071CISCO FCOE HBA DRIVER
2072M:	Hiral Patel <hiralpat@cisco.com>
2073M:	Suma Ramars <sramars@cisco.com>
2074M:	Brian Uchino <buchino@cisco.com>
2075L:	linux-scsi@vger.kernel.org
2076S:	Supported
2077F:	drivers/scsi/fnic/
2078
2079CMPC ACPI DRIVER
2080M:	Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2081M:	Daniel Oliveira Nascimento <don@syst.com.br>
2082L:	platform-driver-x86@vger.kernel.org
2083S:	Supported
2084F:	drivers/platform/x86/classmate-laptop.c
2085
2086COCCINELLE/Semantic Patches (SmPL)
2087M:	Julia Lawall <Julia.Lawall@lip6.fr>
2088M:	Gilles Muller <Gilles.Muller@lip6.fr>
2089M:	Nicolas Palix <nicolas.palix@imag.fr>
2090L:	cocci@systeme.lip6.fr (moderated for non-subscribers)
2091W:	http://coccinelle.lip6.fr/
2092S:	Supported
2093F:	scripts/coccinelle/
2094F:	scripts/coccicheck
2095
2096CODA FILE SYSTEM
2097M:	Jan Harkes <jaharkes@cs.cmu.edu>
2098M:	coda@cs.cmu.edu
2099L:	codalist@coda.cs.cmu.edu
2100W:	http://www.coda.cs.cmu.edu/
2101S:	Maintained
2102F:	Documentation/filesystems/coda.txt
2103F:	fs/coda/
2104F:	include/linux/coda*.h
2105F:	include/uapi/linux/coda*.h
2106
2107COMMON CLK FRAMEWORK
2108M:	Mike Turquette <mturquette@linaro.org>
2109L:	linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2110T:	git git://git.linaro.org/people/mturquette/linux.git
2111S:	Maintained
2112F:	drivers/clk/clk.c
2113F:	drivers/clk/clk-*
2114F:	include/linux/clk-pr*
2115
2116COMMON INTERNET FILE SYSTEM (CIFS)
2117M:	Steve French <sfrench@samba.org>
2118L:	linux-cifs@vger.kernel.org
2119L:	samba-technical@lists.samba.org (moderated for non-subscribers)
2120W:	http://linux-cifs.samba.org/
2121Q:	http://patchwork.ozlabs.org/project/linux-cifs-client/list/
2122T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
2123S:	Supported
2124F:	Documentation/filesystems/cifs.txt
2125F:	fs/cifs/
2126
2127COMPACTPCI HOTPLUG CORE
2128M:	Scott Murray <scott@spiteful.org>
2129L:	linux-pci@vger.kernel.org
2130S:	Maintained
2131F:	drivers/pci/hotplug/cpci_hotplug*
2132
2133COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2134M:	Scott Murray <scott@spiteful.org>
2135L:	linux-pci@vger.kernel.org
2136S:	Maintained
2137F:	drivers/pci/hotplug/cpcihp_zt5550.*
2138
2139COMPACTPCI HOTPLUG GENERIC DRIVER
2140M:	Scott Murray <scott@spiteful.org>
2141L:	linux-pci@vger.kernel.org
2142S:	Maintained
2143F:	drivers/pci/hotplug/cpcihp_generic.c
2144
2145COMPAL LAPTOP SUPPORT
2146M:	Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2147L:	platform-driver-x86@vger.kernel.org
2148S:	Maintained
2149F:	drivers/platform/x86/compal-laptop.c
2150
2151CONEXANT ACCESSRUNNER USB DRIVER
2152M:	Simon Arlott <cxacru@fire.lp0.eu>
2153L:	accessrunner-general@lists.sourceforge.net
2154W:	http://accessrunner.sourceforge.net/
2155S:	Maintained
2156F:	drivers/usb/atm/cxacru.c
2157
2158CONFIGFS
2159M:	Joel Becker <jlbec@evilplan.org>
2160T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2161S:	Supported
2162F:	fs/configfs/
2163F:	include/linux/configfs.h
2164
2165CONNECTOR
2166M:	Evgeniy Polyakov <zbr@ioremap.net>
2167L:	netdev@vger.kernel.org
2168S:	Maintained
2169F:	drivers/connector/
2170
2171CONTROL GROUPS (CGROUPS)
2172M:	Tejun Heo <tj@kernel.org>
2173M:	Li Zefan <lizefan@huawei.com>
2174L:	containers@lists.linux-foundation.org
2175L:	cgroups@vger.kernel.org
2176T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2177S:	Maintained
2178F:	include/linux/cgroup*
2179F:	kernel/cgroup*
2180F:	mm/*cgroup*
2181
2182CORETEMP HARDWARE MONITORING DRIVER
2183M:	Fenghua Yu <fenghua.yu@intel.com>
2184L:	lm-sensors@lm-sensors.org
2185S:	Maintained
2186F:	Documentation/hwmon/coretemp
2187F:	drivers/hwmon/coretemp.c
2188
2189COSA/SRP SYNC SERIAL DRIVER
2190M:	Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2191W:	http://www.fi.muni.cz/~kas/cosa/
2192S:	Maintained
2193F:	drivers/net/wan/cosa*
2194
2195CPMAC ETHERNET DRIVER
2196M:	Florian Fainelli <florian@openwrt.org>
2197L:	netdev@vger.kernel.org
2198S:	Maintained
2199F:	drivers/net/ethernet/ti/cpmac.c
2200
2201CPU FREQUENCY DRIVERS
2202M:	Rafael J. Wysocki <rjw@sisk.pl>
2203L:	cpufreq@vger.kernel.org
2204L:	linux-pm@vger.kernel.org
2205S:	Maintained
2206F:	drivers/cpufreq/
2207F:	include/linux/cpufreq.h
2208
2209CPUID/MSR DRIVER
2210M:	"H. Peter Anvin" <hpa@zytor.com>
2211S:	Maintained
2212F:	arch/x86/kernel/cpuid.c
2213F:	arch/x86/kernel/msr.c
2214
2215CPU POWER MONITORING SUBSYSTEM
2216M:	Dominik Brodowski <linux@dominikbrodowski.net>
2217M:	Thomas Renninger <trenn@suse.de>
2218S:	Maintained
2219F:	tools/power/cpupower
2220
2221CPUSETS
2222M:	Li Zefan <lizefan@huawei.com>
2223W:	http://www.bullopensource.org/cpuset/
2224W:	http://oss.sgi.com/projects/cpusets/
2225S:	Maintained
2226F:	Documentation/cgroups/cpusets.txt
2227F:	include/linux/cpuset.h
2228F:	kernel/cpuset.c
2229
2230CRAMFS FILESYSTEM
2231W:	http://sourceforge.net/projects/cramfs/
2232S:	Orphan
2233F:	Documentation/filesystems/cramfs.txt
2234F:	fs/cramfs/
2235
2236CRIS PORT
2237M:	Mikael Starvik <starvik@axis.com>
2238M:	Jesper Nilsson <jesper.nilsson@axis.com>
2239L:	linux-cris-kernel@axis.com
2240W:	http://developer.axis.com
2241S:	Maintained
2242F:	arch/cris/
2243F:	drivers/tty/serial/crisv10.*
2244
2245CRYPTO API
2246M:	Herbert Xu <herbert@gondor.apana.org.au>
2247M:	"David S. Miller" <davem@davemloft.net>
2248L:	linux-crypto@vger.kernel.org
2249T:	git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2250S:	Maintained
2251F:	Documentation/crypto/
2252F:	arch/*/crypto/
2253F:	crypto/
2254F:	drivers/crypto/
2255F:	include/crypto/
2256
2257CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2258M:	Neil Horman <nhorman@tuxdriver.com>
2259L:	linux-crypto@vger.kernel.org
2260S:	Maintained
2261F:	crypto/ansi_cprng.c
2262F:	crypto/rng.c
2263
2264CS5535 Audio ALSA driver
2265M:	Jaya Kumar <jayakumar.alsa@gmail.com>
2266S:	Maintained
2267F:	sound/pci/cs5535audio/
2268
2269CX18 VIDEO4LINUX DRIVER
2270M:	Andy Walls <awalls@md.metrocast.net>
2271L:	ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
2272L:	linux-media@vger.kernel.org
2273T:	git git://linuxtv.org/media_tree.git
2274W:	http://linuxtv.org
2275W:	http://www.ivtvdriver.org/index.php/Cx18
2276S:	Maintained
2277F:	Documentation/video4linux/cx18.txt
2278F:	drivers/media/pci/cx18/
2279F:	include/uapi/linux/ivtv*
2280
2281CX2341X MPEG ENCODER HELPER MODULE
2282M:	Hans Verkuil <hverkuil@xs4all.nl>
2283L:	linux-media@vger.kernel.org
2284T:	git git://linuxtv.org/media_tree.git
2285W:	http://linuxtv.org
2286S:	Maintained
2287F:	drivers/media/i2c/cx2341x*
2288F:	include/media/cx2341x*
2289
2290CX88 VIDEO4LINUX DRIVER
2291M:	Mauro Carvalho Chehab <mchehab@redhat.com>
2292L:	linux-media@vger.kernel.org
2293W:	http://linuxtv.org
2294T:	git git://linuxtv.org/media_tree.git
2295S:	Odd fixes
2296F:	Documentation/video4linux/cx88/
2297F:	drivers/media/pci/cx88/
2298
2299CXD2820R MEDIA DRIVER
2300M:	Antti Palosaari <crope@iki.fi>
2301L:	linux-media@vger.kernel.org
2302W:	http://linuxtv.org/
2303W:	http://palosaari.fi/linux/
2304Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2305T:	git git://linuxtv.org/anttip/media_tree.git
2306S:	Maintained
2307F:	drivers/media/dvb-frontends/cxd2820r*
2308
2309CXGB3 ETHERNET DRIVER (CXGB3)
2310M:	Divy Le Ray <divy@chelsio.com>
2311L:	netdev@vger.kernel.org
2312W:	http://www.chelsio.com
2313S:	Supported
2314F:	drivers/net/ethernet/chelsio/cxgb3/
2315
2316CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2317M:	Steve Wise <swise@chelsio.com>
2318L:	linux-rdma@vger.kernel.org
2319W:	http://www.openfabrics.org
2320S:	Supported
2321F:	drivers/infiniband/hw/cxgb3/
2322
2323CXGB4 ETHERNET DRIVER (CXGB4)
2324M:	Dimitris Michailidis <dm@chelsio.com>
2325L:	netdev@vger.kernel.org
2326W:	http://www.chelsio.com
2327S:	Supported
2328F:	drivers/net/ethernet/chelsio/cxgb4/
2329
2330CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2331M:	Steve Wise <swise@chelsio.com>
2332L:	linux-rdma@vger.kernel.org
2333W:	http://www.openfabrics.org
2334S:	Supported
2335F:	drivers/infiniband/hw/cxgb4/
2336
2337CXGB4VF ETHERNET DRIVER (CXGB4VF)
2338M:	Casey Leedom <leedom@chelsio.com>
2339L:	netdev@vger.kernel.org
2340W:	http://www.chelsio.com
2341S:	Supported
2342F:	drivers/net/ethernet/chelsio/cxgb4vf/
2343
2344STMMAC ETHERNET DRIVER
2345M:	Giuseppe Cavallaro <peppe.cavallaro@st.com>
2346L:	netdev@vger.kernel.org
2347W:	http://www.stlinux.com
2348S:	Supported
2349F:	drivers/net/ethernet/stmicro/stmmac/
2350
2351CYBERPRO FB DRIVER
2352M:	Russell King <linux@arm.linux.org.uk>
2353L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2354W:	http://www.arm.linux.org.uk/
2355S:	Maintained
2356F:	drivers/video/cyber2000fb.*
2357
2358CYCLADES ASYNC MUX DRIVER
2359W:	http://www.cyclades.com/
2360S:	Orphan
2361F:	drivers/tty/cyclades.c
2362F:	include/linux/cyclades.h
2363F:	include/uapi/linux/cyclades.h
2364
2365CYCLADES PC300 DRIVER
2366W:	http://www.cyclades.com/
2367S:	Orphan
2368F:	drivers/net/wan/pc300*
2369
2370CYTTSP TOUCHSCREEN DRIVER
2371M:	Javier Martinez Canillas <javier@dowhile0.org>
2372L:	linux-input@vger.kernel.org
2373S:	Maintained
2374F:	drivers/input/touchscreen/cyttsp*
2375F:	include/linux/input/cyttsp.h
2376
2377DAMA SLAVE for AX.25
2378M:	Joerg Reuter <jreuter@yaina.de>
2379W:	http://yaina.de/jreuter/
2380W:	http://www.qsl.net/dl1bke/
2381L:	linux-hams@vger.kernel.org
2382S:	Maintained
2383F:	net/ax25/af_ax25.c
2384F:	net/ax25/ax25_dev.c
2385F:	net/ax25/ax25_ds_*
2386F:	net/ax25/ax25_in.c
2387F:	net/ax25/ax25_out.c
2388F:	net/ax25/ax25_timer.c
2389F:	net/ax25/sysctl_net_ax25.c
2390
2391DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2392L:	netdev@vger.kernel.org
2393S:	Orphan
2394F:	Documentation/networking/dmfe.txt
2395F:	drivers/net/ethernet/dec/tulip/dmfe.c
2396
2397DC390/AM53C974 SCSI driver
2398M:	Kurt Garloff <garloff@suse.de>
2399W:	http://www.garloff.de/kurt/linux/dc390/
2400M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2401S:	Maintained
2402F:	drivers/scsi/tmscsim.*
2403
2404DC395x SCSI driver
2405M:	Oliver Neukum <oliver@neukum.org>
2406M:	Ali Akcaagac <aliakc@web.de>
2407M:	Jamie Lenehan <lenehan@twibble.org>
2408W:	http://twibble.org/dist/dc395x/
2409L:	dc395x@twibble.org
2410L:	http://lists.twibble.org/mailman/listinfo/dc395x/
2411S:	Maintained
2412F:	Documentation/scsi/dc395x.txt
2413F:	drivers/scsi/dc395x.*
2414
2415DCCP PROTOCOL
2416M:	Gerrit Renker <gerrit@erg.abdn.ac.uk>
2417L:	dccp@vger.kernel.org
2418W:	http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2419S:	Maintained
2420F:	include/linux/dccp.h
2421F:	include/uapi/linux/dccp.h
2422F:	include/linux/tfrc.h
2423F:	net/dccp/
2424
2425DECnet NETWORK LAYER
2426W:	http://linux-decnet.sourceforge.net
2427L:	linux-decnet-user@lists.sourceforge.net
2428S:	Orphan
2429F:	Documentation/networking/decnet.txt
2430F:	net/decnet/
2431
2432DEFXX FDDI NETWORK DRIVER
2433M:	"Maciej W. Rozycki" <macro@linux-mips.org>
2434S:	Maintained
2435F:	drivers/net/fddi/defxx.*
2436
2437DELL LAPTOP DRIVER
2438M:	Matthew Garrett <mjg59@srcf.ucam.org>
2439L:	platform-driver-x86@vger.kernel.org
2440S:	Maintained
2441F:	drivers/platform/x86/dell-laptop.c
2442
2443DELL LAPTOP SMM DRIVER
2444M:	Massimo Dal Zotto <dz@debian.org>
2445W:	http://www.debian.org/~dz/i8k/
2446S:	Maintained
2447F:	drivers/char/i8k.c
2448F:	include/uapi/linux/i8k.h
2449
2450DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
2451M:	Doug Warzecha <Douglas_Warzecha@dell.com>
2452S:	Maintained
2453F:	Documentation/dcdbas.txt
2454F:	drivers/firmware/dcdbas.*
2455
2456DELL WMI EXTRAS DRIVER
2457M:	Matthew Garrett <mjg59@srcf.ucam.org>
2458S:	Maintained
2459F:	drivers/platform/x86/dell-wmi.c
2460
2461DESIGNWARE USB3 DRD IP DRIVER
2462M:	Felipe Balbi <balbi@ti.com>
2463L:	linux-usb@vger.kernel.org
2464L:	linux-omap@vger.kernel.org
2465T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2466S:	Maintained
2467F:	drivers/usb/dwc3/
2468
2469DEVICE FREQUENCY (DEVFREQ)
2470M:	MyungJoo Ham <myungjoo.ham@samsung.com>
2471M:	Kyungmin Park <kyungmin.park@samsung.com>
2472L:	linux-kernel@vger.kernel.org
2473S:	Maintained
2474F:	drivers/devfreq/
2475
2476DEVICE NUMBER REGISTRY
2477M:	Torben Mathiasen <device@lanana.org>
2478W:	http://lanana.org/docs/device-list/index.html
2479S:	Maintained
2480
2481DEVICE-MAPPER  (LVM)
2482M:	Alasdair Kergon <agk@redhat.com>
2483M:	dm-devel@redhat.com
2484L:	dm-devel@redhat.com
2485W:	http://sources.redhat.com/dm
2486Q:	http://patchwork.kernel.org/project/dm-devel/list/
2487T:	quilt http://people.redhat.com/agk/patches/linux/editing/
2488S:	Maintained
2489F:	Documentation/device-mapper/
2490F:	drivers/md/dm*
2491F:	drivers/md/persistent-data/
2492F:	include/linux/device-mapper.h
2493F:	include/linux/dm-*.h
2494
2495DIOLAN U2C-12 I2C DRIVER
2496M:	Guenter Roeck <linux@roeck-us.net>
2497L:	linux-i2c@vger.kernel.org
2498S:	Maintained
2499F:	drivers/i2c/busses/i2c-diolan-u2c.c
2500
2501DIRECTORY NOTIFICATION (DNOTIFY)
2502M:	Eric Paris <eparis@parisplace.org>
2503S:	Maintained
2504F:	Documentation/filesystems/dnotify.txt
2505F:	fs/notify/dnotify/
2506F:	include/linux/dnotify.h
2507
2508DISK GEOMETRY AND PARTITION HANDLING
2509M:	Andries Brouwer <aeb@cwi.nl>
2510W:	http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2511W:	http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2512W:	http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2513S:	Maintained
2514
2515DISKQUOTA
2516M:	Jan Kara <jack@suse.cz>
2517S:	Maintained
2518F:	Documentation/filesystems/quota.txt
2519F:	fs/quota/
2520F:	include/linux/quota*.h
2521F:	include/uapi/linux/quota*.h
2522
2523DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2524M:	Bernie Thompson <bernie@plugable.com>
2525L:	linux-fbdev@vger.kernel.org
2526S:	Maintained
2527W:	http://plugable.com/category/projects/udlfb/
2528F:	drivers/video/udlfb.c
2529F:	include/video/udlfb.h
2530F:	Documentation/fb/udlfb.txt
2531
2532DISTRIBUTED LOCK MANAGER (DLM)
2533M:	Christine Caulfield <ccaulfie@redhat.com>
2534M:	David Teigland <teigland@redhat.com>
2535L:	cluster-devel@redhat.com
2536W:	http://sources.redhat.com/cluster/
2537T:	git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
2538S:	Supported
2539F:	fs/dlm/
2540
2541DMA BUFFER SHARING FRAMEWORK
2542M:	Sumit Semwal <sumit.semwal@linaro.org>
2543S:	Maintained
2544L:	linux-media@vger.kernel.org
2545L:	dri-devel@lists.freedesktop.org
2546L:	linaro-mm-sig@lists.linaro.org
2547F:	drivers/base/dma-buf*
2548F:	include/linux/dma-buf*
2549F:	Documentation/dma-buf-sharing.txt
2550T:	git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2551
2552DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
2553M:	Vinod Koul <vinod.koul@intel.com>
2554M:	Dan Williams <djbw@fb.com>
2555S:	Supported
2556F:	drivers/dma/
2557F:	include/linux/dma*
2558T:	git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2559T:	git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2560
2561DME1737 HARDWARE MONITOR DRIVER
2562M:	Juerg Haefliger <juergh@gmail.com>
2563L:	lm-sensors@lm-sensors.org
2564S:	Maintained
2565F:	Documentation/hwmon/dme1737
2566F:	drivers/hwmon/dme1737.c
2567
2568DOCKING STATION DRIVER
2569M:	Shaohua Li <shaohua.li@intel.com>
2570L:	linux-acpi@vger.kernel.org
2571S:	Supported
2572F:	drivers/acpi/dock.c
2573
2574DOCUMENTATION
2575M:	Rob Landley <rob@landley.net>
2576L:	linux-doc@vger.kernel.org
2577T:	TBD
2578S:	Maintained
2579F:	Documentation/
2580
2581DOUBLETALK DRIVER
2582M:	"James R. Van Zandt" <jrv@vanzandt.mv.com>
2583L:	blinux-list@redhat.com
2584S:	Maintained
2585F:	drivers/char/dtlk.c
2586F:	include/linux/dtlk.h
2587
2588DPT_I2O SCSI RAID DRIVER
2589M:	Adaptec OEM Raid Solutions <aacraid@adaptec.com>
2590L:	linux-scsi@vger.kernel.org
2591W:	http://www.adaptec.com/
2592S:	Maintained
2593F:	drivers/scsi/dpt*
2594F:	drivers/scsi/dpt/
2595
2596DRBD DRIVER
2597P:	Philipp Reisner
2598P:	Lars Ellenberg
2599M:	drbd-dev@lists.linbit.com
2600L:	drbd-user@lists.linbit.com
2601W:	http://www.drbd.org
2602T:	git git://git.drbd.org/linux-2.6-drbd.git drbd
2603T:	git git://git.drbd.org/drbd-8.3.git
2604S:	Supported
2605F:	drivers/block/drbd/
2606F:	lib/lru_cache.c
2607F:	Documentation/blockdev/drbd/
2608
2609DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
2610M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2611T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
2612S:	Supported
2613F:	Documentation/kobject.txt
2614F:	drivers/base/
2615F:	fs/sysfs/
2616F:	fs/debugfs/
2617F:	include/linux/kobj*
2618F:	include/linux/debugfs.h
2619F:	lib/kobj*
2620
2621DRM DRIVERS
2622M:	David Airlie <airlied@linux.ie>
2623L:	dri-devel@lists.freedesktop.org
2624T:	git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
2625S:	Maintained
2626F:	drivers/gpu/drm/
2627F:	include/drm/
2628F:	include/uapi/drm/
2629
2630INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
2631M:	Daniel Vetter <daniel.vetter@ffwll.ch>
2632L:	intel-gfx@lists.freedesktop.org
2633L:	dri-devel@lists.freedesktop.org
2634T:	git git://people.freedesktop.org/~danvet/drm-intel
2635S:	Supported
2636F:	drivers/gpu/drm/i915
2637F:	include/drm/i915*
2638F:	include/uapi/drm/i915*
2639
2640DRM DRIVERS FOR EXYNOS
2641M:	Inki Dae <inki.dae@samsung.com>
2642M:	Joonyoung Shim <jy0922.shim@samsung.com>
2643M:	Seung-Woo Kim <sw0312.kim@samsung.com>
2644M:	Kyungmin Park <kyungmin.park@samsung.com>
2645L:	dri-devel@lists.freedesktop.org
2646T:	git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
2647S:	Supported
2648F:	drivers/gpu/drm/exynos
2649F:	include/drm/exynos*
2650F:	include/uapi/drm/exynos*
2651
2652DRM DRIVERS FOR NVIDIA TEGRA
2653M:	Thierry Reding <thierry.reding@avionic-design.de>
2654L:	dri-devel@lists.freedesktop.org
2655L:	linux-tegra@vger.kernel.org
2656T:	git git://gitorious.org/thierryreding/linux.git
2657S:	Maintained
2658F:	drivers/gpu/drm/tegra/
2659F:	Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2660
2661DSBR100 USB FM RADIO DRIVER
2662M:	Alexey Klimov <klimov.linux@gmail.com>
2663L:	linux-media@vger.kernel.org
2664T:	git git://linuxtv.org/media_tree.git
2665S:	Maintained
2666F:	drivers/media/radio/dsbr100.c
2667
2668DSCC4 DRIVER
2669M:	Francois Romieu <romieu@fr.zoreil.com>
2670L:	netdev@vger.kernel.org
2671S:	Maintained
2672F:	drivers/net/wan/dscc4.c
2673
2674DVB_USB_AF9015 MEDIA DRIVER
2675M:	Antti Palosaari <crope@iki.fi>
2676L:	linux-media@vger.kernel.org
2677W:	http://linuxtv.org/
2678W:	http://palosaari.fi/linux/
2679Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2680T:	git git://linuxtv.org/anttip/media_tree.git
2681S:	Maintained
2682F:	drivers/media/usb/dvb-usb-v2/af9015*
2683
2684DVB_USB_AF9035 MEDIA DRIVER
2685M:	Antti Palosaari <crope@iki.fi>
2686L:	linux-media@vger.kernel.org
2687W:	http://linuxtv.org/
2688W:	http://palosaari.fi/linux/
2689Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2690T:	git git://linuxtv.org/anttip/media_tree.git
2691S:	Maintained
2692F:	drivers/media/usb/dvb-usb-v2/af9035*
2693
2694DVB_USB_ANYSEE MEDIA DRIVER
2695M:	Antti Palosaari <crope@iki.fi>
2696L:	linux-media@vger.kernel.org
2697W:	http://linuxtv.org/
2698W:	http://palosaari.fi/linux/
2699Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2700T:	git git://linuxtv.org/anttip/media_tree.git
2701S:	Maintained
2702F:	drivers/media/usb/dvb-usb-v2/anysee*
2703
2704DVB_USB_AU6610 MEDIA DRIVER
2705M:	Antti Palosaari <crope@iki.fi>
2706L:	linux-media@vger.kernel.org
2707W:	http://linuxtv.org/
2708W:	http://palosaari.fi/linux/
2709Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2710T:	git git://linuxtv.org/anttip/media_tree.git
2711S:	Maintained
2712F:	drivers/media/usb/dvb-usb-v2/au6610*
2713
2714DVB_USB_CE6230 MEDIA DRIVER
2715M:	Antti Palosaari <crope@iki.fi>
2716L:	linux-media@vger.kernel.org
2717W:	http://linuxtv.org/
2718W:	http://palosaari.fi/linux/
2719Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2720T:	git git://linuxtv.org/anttip/media_tree.git
2721S:	Maintained
2722F:	drivers/media/usb/dvb-usb-v2/ce6230*
2723
2724DVB_USB_CXUSB MEDIA DRIVER
2725M:	Michael Krufky <mkrufky@linuxtv.org>
2726L:	linux-media@vger.kernel.org
2727W:	http://linuxtv.org/
2728W:	http://github.com/mkrufky
2729Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2730T:	git git://linuxtv.org/media_tree.git
2731S:	Maintained
2732F:	drivers/media/usb/dvb-usb/cxusb*
2733
2734DVB_USB_CYPRESS_FIRMWARE MEDIA DRIVER
2735M:	Antti Palosaari <crope@iki.fi>
2736L:	linux-media@vger.kernel.org
2737W:	http://linuxtv.org/
2738W:	http://palosaari.fi/linux/
2739Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2740T:	git git://linuxtv.org/anttip/media_tree.git
2741S:	Maintained
2742F:	drivers/media/usb/dvb-usb-v2/cypress_firmware*
2743
2744DVB_USB_EC168 MEDIA DRIVER
2745M:	Antti Palosaari <crope@iki.fi>
2746L:	linux-media@vger.kernel.org
2747W:	http://linuxtv.org/
2748W:	http://palosaari.fi/linux/
2749Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2750T:	git git://linuxtv.org/anttip/media_tree.git
2751S:	Maintained
2752F:	drivers/media/usb/dvb-usb-v2/ec168*
2753
2754DVB_USB_MXL111SF MEDIA DRIVER
2755M:	Michael Krufky <mkrufky@linuxtv.org>
2756L:	linux-media@vger.kernel.org
2757W:	http://linuxtv.org/
2758W:	http://github.com/mkrufky
2759Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2760T:	git git://linuxtv.org/mkrufky/mxl111sf.git
2761S:	Maintained
2762F:	drivers/media/usb/dvb-usb-v2/mxl111sf*
2763
2764DVB_USB_RTL28XXU MEDIA DRIVER
2765M:	Antti Palosaari <crope@iki.fi>
2766L:	linux-media@vger.kernel.org
2767W:	http://linuxtv.org/
2768W:	http://palosaari.fi/linux/
2769Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2770T:	git git://linuxtv.org/anttip/media_tree.git
2771S:	Maintained
2772F:	drivers/media/usb/dvb-usb-v2/rtl28xxu*
2773
2774DVB_USB_V2 MEDIA DRIVER
2775M:	Antti Palosaari <crope@iki.fi>
2776L:	linux-media@vger.kernel.org
2777W:	http://linuxtv.org/
2778W:	http://palosaari.fi/linux/
2779Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2780T:	git git://linuxtv.org/anttip/media_tree.git
2781S:	Maintained
2782F:	drivers/media/usb/dvb-usb-v2/dvb_usb*
2783F:	drivers/media/usb/dvb-usb-v2/usb_urb.c
2784
2785DYNAMIC DEBUG
2786M:	Jason Baron <jbaron@redhat.com>
2787S:	Maintained
2788F:	lib/dynamic_debug.c
2789F:	include/linux/dynamic_debug.h
2790
2791DZ DECSTATION DZ11 SERIAL DRIVER
2792M:	"Maciej W. Rozycki" <macro@linux-mips.org>
2793S:	Maintained
2794F:	drivers/tty/serial/dz.*
2795
2796E4000 MEDIA DRIVER
2797M:	Antti Palosaari <crope@iki.fi>
2798L:	linux-media@vger.kernel.org
2799W:	http://linuxtv.org/
2800W:	http://palosaari.fi/linux/
2801Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2802T:	git git://linuxtv.org/anttip/media_tree.git
2803S:	Maintained
2804F:	drivers/media/tuners/e4000*
2805
2806EATA-DMA SCSI DRIVER
2807M:	Michael Neuffer <mike@i-Connect.Net>
2808L:	linux-eata@i-connect.net
2809L:	linux-scsi@vger.kernel.org
2810S:	Maintained
2811F:	drivers/scsi/eata*
2812
2813EATA ISA/EISA/PCI SCSI DRIVER
2814M:	Dario Ballabio <ballabio_dario@emc.com>
2815L:	linux-scsi@vger.kernel.org
2816S:	Maintained
2817F:	drivers/scsi/eata.c
2818
2819EATA-PIO SCSI DRIVER
2820M:	Michael Neuffer <mike@i-Connect.Net>
2821L:	linux-eata@i-connect.net
2822L:	linux-scsi@vger.kernel.org
2823S:	Maintained
2824F:	drivers/scsi/eata_pio.*
2825
2826EBTABLES
2827M:	Bart De Schuymer <bart.de.schuymer@pandora.be>
2828L:	netfilter-devel@vger.kernel.org
2829W:	http://ebtables.sourceforge.net/
2830S:	Maintained
2831F:	include/linux/netfilter_bridge/ebt_*.h
2832F:	include/uapi/linux/netfilter_bridge/ebt_*.h
2833F:	net/bridge/netfilter/ebt*.c
2834
2835EC100 MEDIA DRIVER
2836M:	Antti Palosaari <crope@iki.fi>
2837L:	linux-media@vger.kernel.org
2838W:	http://linuxtv.org/
2839W:	http://palosaari.fi/linux/
2840Q:	http://patchwork.linuxtv.org/project/linux-media/list/
2841T:	git git://linuxtv.org/anttip/media_tree.git
2842S:	Maintained
2843F:	drivers/media/dvb-frontends/ec100*
2844
2845ECRYPT FILE SYSTEM
2846M:	Tyler Hicks <tyhicks@canonical.com>
2847M:	Dustin Kirkland <dustin.kirkland@gazzang.com>
2848L:	ecryptfs@vger.kernel.org
2849W:	https://launchpad.net/ecryptfs
2850S:	Supported
2851F:	Documentation/filesystems/ecryptfs.txt
2852F:	fs/ecryptfs/
2853
2854EDAC-CORE
2855M:	Doug Thompson <dougthompson@xmission.com>
2856L:	linux-edac@vger.kernel.org
2857W:	bluesmoke.sourceforge.net
2858S:	Supported
2859F:	Documentation/edac.txt
2860F:	drivers/edac/
2861F:	include/linux/edac.h
2862
2863EDAC-AMD64
2864M:	Doug Thompson <dougthompson@xmission.com>
2865M:	Borislav Petkov <bp@alien8.de>
2866L:	linux-edac@vger.kernel.org
2867W:	bluesmoke.sourceforge.net
2868S:	Maintained
2869F:	drivers/edac/amd64_edac*
2870
2871EDAC-CAVIUM
2872M:	Ralf Baechle <ralf@linux-mips.org>
2873M:	David Daney <david.daney@cavium.com>
2874L:	linux-edac@vger.kernel.org
2875L:	linux-mips@linux-mips.org
2876W:	bluesmoke.sourceforge.net
2877S:	Supported
2878F:	drivers/edac/octeon_edac*
2879
2880EDAC-E752X
2881M:	Mark Gross <mark.gross@intel.com>
2882M:	Doug Thompson <dougthompson@xmission.com>
2883L:	linux-edac@vger.kernel.org
2884W:	bluesmoke.sourceforge.net
2885S:	Maintained
2886F:	drivers/edac/e752x_edac.c
2887
2888EDAC-E7XXX
2889M:	Doug Thompson <dougthompson@xmission.com>
2890L:	linux-edac@vger.kernel.org
2891W:	bluesmoke.sourceforge.net
2892S:	Maintained
2893F:	drivers/edac/e7xxx_edac.c
2894
2895EDAC-GHES
2896M:	Mauro Carvalho Chehab <mchehab@redhat.com>
2897L:	linux-edac@vger.kernel.org
2898W:	bluesmoke.sourceforge.net
2899S:	Maintained
2900F:	drivers/edac/ghes-edac.c
2901
2902EDAC-I82443BXGX
2903M:	Tim Small <tim@buttersideup.com>
2904L:	linux-edac@vger.kernel.org
2905W:	bluesmoke.sourceforge.net
2906S:	Maintained
2907F:	drivers/edac/i82443bxgx_edac.c
2908
2909EDAC-I3000
2910M:	Jason Uhlenkott <juhlenko@akamai.com>
2911L:	linux-edac@vger.kernel.org
2912W:	bluesmoke.sourceforge.net
2913S:	Maintained
2914F:	drivers/edac/i3000_edac.c
2915
2916EDAC-I5000
2917M:	Doug Thompson <dougthompson@xmission.com>
2918L:	linux-edac@vger.kernel.org
2919W:	bluesmoke.sourceforge.net
2920S:	Maintained
2921F:	drivers/edac/i5000_edac.c
2922
2923EDAC-I5400
2924M:	Mauro Carvalho Chehab <mchehab@redhat.com>
2925L:	linux-edac@vger.kernel.org
2926W:	bluesmoke.sourceforge.net
2927S:	Maintained
2928F:	drivers/edac/i5400_edac.c
2929
2930EDAC-I7300
2931M:	Mauro Carvalho Chehab <mchehab@redhat.com>
2932L:	linux-edac@vger.kernel.org
2933W:	bluesmoke.sourceforge.net
2934S:	Maintained
2935F:	drivers/edac/i7300_edac.c
2936
2937EDAC-I7CORE
2938M:	Mauro Carvalho Chehab <mchehab@redhat.com>
2939L:	linux-edac@vger.kernel.org
2940W:	bluesmoke.sourceforge.net
2941S:	Maintained
2942F:	drivers/edac/i7core_edac.c
2943
2944EDAC-I82975X
2945M:	Ranganathan Desikan <ravi@jetztechnologies.com>
2946M:	"Arvind R." <arvino55@gmail.com>
2947L:	linux-edac@vger.kernel.org
2948W:	bluesmoke.sourceforge.net
2949S:	Maintained
2950F:	drivers/edac/i82975x_edac.c
2951
2952EDAC-PASEMI
2953M:	Egor Martovetsky <egor@pasemi.com>
2954L:	linux-edac@vger.kernel.org
2955W:	bluesmoke.sourceforge.net
2956S:	Maintained
2957F:	drivers/edac/pasemi_edac.c
2958
2959EDAC-R82600
2960M:	Tim Small <tim@buttersideup.com>
2961L:	linux-edac@vger.kernel.org
2962W:	bluesmoke.sourceforge.net
2963S:	Maintained
2964F:	drivers/edac/r82600_edac.c
2965
2966EDAC-SBRIDGE
2967M:	Mauro Carvalho Chehab <mchehab@redhat.com>
2968L:	linux-edac@vger.kernel.org
2969W:	bluesmoke.sourceforge.net
2970S:	Maintained
2971F:	drivers/edac/sb_edac.c
2972
2973EDIROL UA-101/UA-1000 DRIVER
2974M:	Clemens Ladisch <clemens@ladisch.de>
2975L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
2976T:	git git://git.alsa-project.org/alsa-kernel.git
2977S:	Maintained
2978F:	sound/usb/misc/ua101.c
2979
2980EXTENSIBLE FIRMWARE INTERFACE (EFI)
2981M:	Matt Fleming <matt.fleming@intel.com>
2982L:	linux-efi@vger.kernel.org
2983T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
2984S:	Maintained
2985F:	Documentation/x86/efi-stub.txt
2986F:	arch/ia64/kernel/efi.c
2987F:	arch/x86/boot/compressed/eboot.[ch]
2988F:	arch/x86/include/asm/efi.h
2989F:	arch/x86/platform/efi/*
2990F:	drivers/firmware/efivars.c
2991F:	include/linux/efi*.h
2992
2993EFIFB FRAMEBUFFER DRIVER
2994L:	linux-fbdev@vger.kernel.org
2995M:	Peter Jones <pjones@redhat.com>
2996S:	Maintained
2997F:	drivers/video/efifb.c
2998
2999EFS FILESYSTEM
3000W:	http://aeschi.ch.eu.org/efs/
3001S:	Orphan
3002F:	fs/efs/
3003
3004EHCA (IBM GX bus InfiniBand adapter) DRIVER
3005M:	Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3006M:	Christoph Raisch <raisch@de.ibm.com>
3007L:	linux-rdma@vger.kernel.org
3008S:	Supported
3009F:	drivers/infiniband/hw/ehca/
3010
3011EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3012M:	Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3013L:	netdev@vger.kernel.org
3014S:	Maintained
3015F:	drivers/net/ethernet/ibm/ehea/
3016
3017EM28XX VIDEO4LINUX DRIVER
3018M:	Mauro Carvalho Chehab <mchehab@redhat.com>
3019L:	linux-media@vger.kernel.org
3020W:	http://linuxtv.org
3021T:	git git://linuxtv.org/media_tree.git
3022S:	Maintained
3023F:	drivers/media/usb/em28xx/
3024
3025EMBEDDED LINUX
3026M:	Paul Gortmaker <paul.gortmaker@windriver.com>
3027M:	Matt Mackall <mpm@selenic.com>
3028M:	David Woodhouse <dwmw2@infradead.org>
3029L:	linux-embedded@vger.kernel.org
3030S:	Maintained
3031
3032EMULEX LPFC FC SCSI DRIVER
3033M:	James Smart <james.smart@emulex.com>
3034L:	linux-scsi@vger.kernel.org
3035W:	http://sourceforge.net/projects/lpfcxxxx
3036S:	Supported
3037F:	drivers/scsi/lpfc/
3038
3039ENE CB710 FLASH CARD READER DRIVER
3040M:	Michał Mirosław <mirq-linux@rere.qmqm.pl>
3041S:	Maintained
3042F:	drivers/misc/cb710/
3043F:	drivers/mmc/host/cb710-mmc.*
3044F:	include/linux/cb710.h
3045
3046ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3047M:	Maxim Levitsky <maximlevitsky@gmail.com>
3048S:	Maintained
3049F:	drivers/media/rc/ene_ir.*
3050
3051EPSON S1D13XXX FRAMEBUFFER DRIVER
3052M:	Kristoffer Ericson <kristoffer.ericson@gmail.com>
3053S:	Maintained
3054T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3055F:	drivers/video/s1d13xxxfb.c
3056F:	include/video/s1d13xxxfb.h
3057
3058ETHERNET BRIDGE
3059M:	Stephen Hemminger <stephen@networkplumber.org>
3060L:	bridge@lists.linux-foundation.org
3061L:	netdev@vger.kernel.org
3062W:	http://www.linuxfoundation.org/en/Net:Bridge
3063S:	Maintained
3064F:	include/linux/netfilter_bridge/
3065F:	net/bridge/
3066
3067EXT2 FILE SYSTEM
3068M:	Jan Kara <jack@suse.cz>
3069L:	linux-ext4@vger.kernel.org
3070S:	Maintained
3071F:	Documentation/filesystems/ext2.txt
3072F:	fs/ext2/
3073F:	include/linux/ext2*
3074
3075EXT3 FILE SYSTEM
3076M:	Jan Kara <jack@suse.cz>
3077M:	Andrew Morton <akpm@linux-foundation.org>
3078M:	Andreas Dilger <adilger.kernel@dilger.ca>
3079L:	linux-ext4@vger.kernel.org
3080S:	Maintained
3081F:	Documentation/filesystems/ext3.txt
3082F:	fs/ext3/
3083
3084EXT4 FILE SYSTEM
3085M:	"Theodore Ts'o" <tytso@mit.edu>
3086M:	Andreas Dilger <adilger.kernel@dilger.ca>
3087L:	linux-ext4@vger.kernel.org
3088W:	http://ext4.wiki.kernel.org
3089Q:	http://patchwork.ozlabs.org/project/linux-ext4/list/
3090S:	Maintained
3091F:	Documentation/filesystems/ext4.txt
3092F:	fs/ext4/
3093
3094Extended Verification Module (EVM)
3095M:	Mimi Zohar <zohar@us.ibm.com>
3096S:	Supported
3097F:	security/integrity/evm/
3098
3099EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3100M:	MyungJoo Ham <myungjoo.ham@samsung.com>
3101M:	Chanwoo Choi <cw00.choi@samsung.com>
3102L:	linux-kernel@vger.kernel.org
3103S:	Maintained
3104F:	drivers/extcon/
3105F:	Documentation/extcon/
3106
3107EXYNOS DP DRIVER
3108M:	Jingoo Han <jg1.han@samsung.com>
3109L:	linux-fbdev@vger.kernel.org
3110S:	Maintained
3111F:	drivers/video/exynos/exynos_dp*
3112F:	include/video/exynos_dp*
3113
3114EXYNOS MIPI DISPLAY DRIVERS
3115M:	Inki Dae <inki.dae@samsung.com>
3116M:	Donghwa Lee <dh09.lee@samsung.com>
3117M:	Kyungmin Park <kyungmin.park@samsung.com>
3118L:	linux-fbdev@vger.kernel.org
3119S:	Maintained
3120F:	drivers/video/exynos/exynos_mipi*
3121F:	include/video/exynos_mipi*
3122
3123F71805F HARDWARE MONITORING DRIVER
3124M:	Jean Delvare <khali@linux-fr.org>
3125L:	lm-sensors@lm-sensors.org
3126S:	Maintained
3127F:	Documentation/hwmon/f71805f
3128F:	drivers/hwmon/f71805f.c
3129
3130FC0011 TUNER DRIVER
3131M:	Michael Buesch <m@bues.ch>
3132L:	linux-media@vger.kernel.org
3133S:	Maintained
3134F:	drivers/media/tuners/fc0011.h
3135F:	drivers/media/tuners/fc0011.c
3136
3137FC2580 MEDIA DRIVER
3138M:	Antti Palosaari <crope@iki.fi>
3139L:	linux-media@vger.kernel.org
3140W:	http://linuxtv.org/
3141W:	http://palosaari.fi/linux/
3142Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3143T:	git git://linuxtv.org/anttip/media_tree.git
3144S:	Maintained
3145F:	drivers/media/tuners/fc2580*
3146
3147FANOTIFY
3148M:	Eric Paris <eparis@redhat.com>
3149S:	Maintained
3150F:	fs/notify/fanotify/
3151F:	include/linux/fanotify.h
3152F:	include/uapi/linux/fanotify.h
3153
3154FARSYNC SYNCHRONOUS DRIVER
3155M:	Kevin Curtis <kevin.curtis@farsite.co.uk>
3156W:	http://www.farsite.co.uk/
3157S:	Supported
3158F:	drivers/net/wan/farsync.*
3159
3160FAULT INJECTION SUPPORT
3161M:	Akinobu Mita <akinobu.mita@gmail.com>
3162S:	Supported
3163F:	Documentation/fault-injection/
3164F:	lib/fault-inject.c
3165
3166FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3167M:	Robert Love <robert.w.love@intel.com>
3168L:	devel@open-fcoe.org
3169W:	www.Open-FCoE.org
3170S:	Supported
3171F:	drivers/scsi/libfc/
3172F:	drivers/scsi/fcoe/
3173F:	include/scsi/fc/
3174F:	include/scsi/libfc.h
3175F:	include/scsi/libfcoe.h
3176F:	include/uapi/scsi/fc/
3177
3178FILE LOCKING (flock() and fcntl()/lockf())
3179M:	Matthew Wilcox <matthew@wil.cx>
3180L:	linux-fsdevel@vger.kernel.org
3181S:	Maintained
3182F:	include/linux/fcntl.h
3183F:	include/linux/fs.h
3184F:	include/uapi/linux/fcntl.h
3185F:	include/uapi/linux/fs.h
3186F:	fs/fcntl.c
3187F:	fs/locks.c
3188
3189FILESYSTEMS (VFS and infrastructure)
3190M:	Alexander Viro <viro@zeniv.linux.org.uk>
3191L:	linux-fsdevel@vger.kernel.org
3192S:	Maintained
3193F:	fs/*
3194
3195FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3196M:	Riku Voipio <riku.voipio@iki.fi>
3197L:	lm-sensors@lm-sensors.org
3198S:	Maintained
3199F:	drivers/hwmon/f75375s.c
3200F:	include/linux/f75375s.h
3201
3202FIREWIRE AUDIO DRIVERS
3203M:	Clemens Ladisch <clemens@ladisch.de>
3204L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3205T:	git git://git.alsa-project.org/alsa-kernel.git
3206S:	Maintained
3207F:	sound/firewire/
3208
3209FIREWIRE MEDIA DRIVERS (firedtv)
3210M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
3211L:	linux-media@vger.kernel.org
3212L:	linux1394-devel@lists.sourceforge.net
3213T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3214S:	Maintained
3215F:	drivers/media/firewire/
3216
3217FIREWIRE SBP-2 TARGET
3218M:	Chris Boot <bootc@bootc.net>
3219L:	linux-scsi@vger.kernel.org
3220L:	target-devel@vger.kernel.org
3221L:	linux1394-devel@lists.sourceforge.net
3222T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3223S:	Maintained
3224F:	drivers/target/sbp/
3225
3226FIREWIRE SUBSYSTEM
3227M:	Stefan Richter <stefanr@s5r6.in-berlin.de>
3228L:	linux1394-devel@lists.sourceforge.net
3229W:	http://ieee1394.wiki.kernel.org/
3230T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3231S:	Maintained
3232F:	drivers/firewire/
3233F:	include/linux/firewire.h
3234F:	include/uapi/linux/firewire*.h
3235F:	tools/firewire/
3236
3237FIRMWARE LOADER (request_firmware)
3238M:	Ming Lei <ming.lei@canonical.com>
3239L:	linux-kernel@vger.kernel.org
3240S:	Maintained
3241F:	Documentation/firmware_class/
3242F:	drivers/base/firmware*.c
3243F:	include/linux/firmware.h
3244
3245FLOPPY DRIVER
3246M:	Jiri Kosina <jkosina@suse.cz>
3247T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3248S:	Odd fixes
3249F:	drivers/block/floppy.c
3250
3251FPU EMULATOR
3252M:	Bill Metzenthen <billm@melbpc.org.au>
3253W:	http://floatingpoint.sourceforge.net/emulator/index.html
3254S:	Maintained
3255F:	arch/x86/math-emu/
3256
3257FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3258L:	netdev@vger.kernel.org
3259S:	Orphan
3260F:	drivers/net/wan/dlci.c
3261F:	drivers/net/wan/sdla.c
3262
3263FRAMEBUFFER LAYER
3264M:	Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
3265L:	linux-fbdev@vger.kernel.org
3266W:	http://linux-fbdev.sourceforge.net/
3267Q:	http://patchwork.kernel.org/project/linux-fbdev/list/
3268T:	git git://github.com/schandinat/linux-2.6.git fbdev-next
3269S:	Maintained
3270F:	Documentation/fb/
3271F:	Documentation/devicetree/bindings/fb/
3272F:	drivers/video/
3273F:	include/video/
3274F:	include/linux/fb.h
3275F:	include/uapi/video/
3276F:	include/uapi/linux/fb.h
3277
3278FREESCALE DIU FRAMEBUFFER DRIVER
3279M:	Timur Tabi <timur@tabi.org>
3280L:	linux-fbdev@vger.kernel.org
3281S:	Maintained
3282F:	drivers/video/fsl-diu-fb.*
3283
3284FREESCALE DMA DRIVER
3285M:	Li Yang <leoli@freescale.com>
3286M:	Zhang Wei <zw@zh-kernel.org>
3287L:	linuxppc-dev@lists.ozlabs.org
3288S:	Maintained
3289F:	drivers/dma/fsldma.*
3290
3291FREESCALE I2C CPM DRIVER
3292M:	Jochen Friedrich <jochen@scram.de>
3293L:	linuxppc-dev@lists.ozlabs.org
3294L:	linux-i2c@vger.kernel.org
3295S:	Maintained
3296F:	drivers/i2c/busses/i2c-cpm.c
3297
3298FREESCALE IMX / MXC FRAMEBUFFER DRIVER
3299M:	Sascha Hauer <kernel@pengutronix.de>
3300L:	linux-fbdev@vger.kernel.org
3301L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3302S:	Maintained
3303F:	include/linux/platform_data/video-imxfb.h
3304F:	drivers/video/imxfb.c
3305
3306FREESCALE SOC FS_ENET DRIVER
3307M:	Pantelis Antoniou <pantelis.antoniou@gmail.com>
3308M:	Vitaly Bordug <vbordug@ru.mvista.com>
3309L:	linuxppc-dev@lists.ozlabs.org
3310L:	netdev@vger.kernel.org
3311S:	Maintained
3312F:	drivers/net/ethernet/freescale/fs_enet/
3313F:	include/linux/fs_enet_pd.h
3314
3315FREESCALE QUICC ENGINE LIBRARY
3316L:	linuxppc-dev@lists.ozlabs.org
3317S:	Orphan
3318F:	arch/powerpc/sysdev/qe_lib/
3319F:	arch/powerpc/include/asm/*qe.h
3320
3321FREESCALE USB PERIPHERAL DRIVERS
3322M:	Li Yang <leoli@freescale.com>
3323L:	linux-usb@vger.kernel.org
3324L:	linuxppc-dev@lists.ozlabs.org
3325S:	Maintained
3326F:	drivers/usb/gadget/fsl*
3327
3328FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
3329M:	Li Yang <leoli@freescale.com>
3330L:	netdev@vger.kernel.org
3331L:	linuxppc-dev@lists.ozlabs.org
3332S:	Maintained
3333F:	drivers/net/ethernet/freescale/ucc_geth*
3334
3335FREESCALE QUICC ENGINE UCC UART DRIVER
3336M:	Timur Tabi <timur@tabi.org>
3337L:	linuxppc-dev@lists.ozlabs.org
3338S:	Maintained
3339F:	drivers/tty/serial/ucc_uart.c
3340
3341FREESCALE SOC SOUND DRIVERS
3342M:	Timur Tabi <timur@tabi.org>
3343L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
3344L:	linuxppc-dev@lists.ozlabs.org
3345S:	Maintained
3346F:	sound/soc/fsl/fsl*
3347F:	sound/soc/fsl/mpc8610_hpcd.c
3348
3349FREEVXFS FILESYSTEM
3350M:	Christoph Hellwig <hch@infradead.org>
3351W:	ftp://ftp.openlinux.org/pub/people/hch/vxfs
3352S:	Maintained
3353F:	fs/freevxfs/
3354
3355FREEZER
3356M:	Pavel Machek <pavel@ucw.cz>
3357M:	"Rafael J. Wysocki" <rjw@sisk.pl>
3358L:	linux-pm@vger.kernel.org
3359S:	Supported
3360F:	Documentation/power/freezing-of-tasks.txt
3361F:	include/linux/freezer.h
3362F:	kernel/freezer.c
3363
3364FRONTSWAP API
3365M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3366L:	linux-kernel@vger.kernel.org
3367S:	Maintained
3368F:	mm/frontswap.c
3369F:	include/linux/frontswap.h
3370
3371FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
3372M:	David Howells <dhowells@redhat.com>
3373L:	linux-cachefs@redhat.com
3374S:	Supported
3375F:	Documentation/filesystems/caching/
3376F:	fs/fscache/
3377F:	include/linux/fscache*.h
3378
3379F2FS FILE SYSTEM
3380M:	Jaegeuk Kim <jaegeuk.kim@samsung.com>
3381L:	linux-f2fs-devel@lists.sourceforge.net
3382W:	http://en.wikipedia.org/wiki/F2FS
3383T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3384S:	Maintained
3385F:	Documentation/filesystems/f2fs.txt
3386F:	fs/f2fs/
3387F:	include/linux/f2fs_fs.h
3388
3389FUJITSU FR-V (FRV) PORT
3390M:	David Howells <dhowells@redhat.com>
3391S:	Maintained
3392F:	arch/frv/
3393
3394FUJITSU LAPTOP EXTRAS
3395M:	Jonathan Woithe <jwoithe@just42.net>
3396L:	platform-driver-x86@vger.kernel.org
3397S:	Maintained
3398F:	drivers/platform/x86/fujitsu-laptop.c
3399
3400FUJITSU M-5MO LS CAMERA ISP DRIVER
3401M:	Kyungmin Park <kyungmin.park@samsung.com>
3402M:	Heungjun Kim <riverful.kim@samsung.com>
3403L:	linux-media@vger.kernel.org
3404S:	Maintained
3405F:	drivers/media/i2c/m5mols/
3406F:	include/media/m5mols.h
3407
3408FUJITSU TABLET EXTRAS
3409M:	Robert Gerlach <khnz@gmx.de>
3410L:	platform-driver-x86@vger.kernel.org
3411S:	Maintained
3412F:	drivers/platform/x86/fujitsu-tablet.c
3413
3414FUSE: FILESYSTEM IN USERSPACE
3415M:	Miklos Szeredi <miklos@szeredi.hu>
3416L:	fuse-devel@lists.sourceforge.net
3417W:	http://fuse.sourceforge.net/
3418S:	Maintained
3419F:	fs/fuse/
3420F:	include/uapi/linux/fuse.h
3421
3422FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
3423M:	Rik Faith <faith@cs.unc.edu>
3424L:	linux-scsi@vger.kernel.org
3425S:	Odd Fixes (e.g., new signatures)
3426F:	drivers/scsi/fdomain.*
3427
3428GDT SCSI DISK ARRAY CONTROLLER DRIVER
3429M:	Achim Leubner <achim_leubner@adaptec.com>
3430L:	linux-scsi@vger.kernel.org
3431W:	http://www.icp-vortex.com/
3432S:	Supported
3433F:	drivers/scsi/gdt*
3434
3435GEMTEK FM RADIO RECEIVER DRIVER
3436M:	Hans Verkuil <hverkuil@xs4all.nl>
3437L:	linux-media@vger.kernel.org
3438T:	git git://linuxtv.org/media_tree.git
3439W:	http://linuxtv.org
3440S:	Maintained
3441F:	drivers/media/radio/radio-gemtek*
3442
3443GENERIC GPIO I2C DRIVER
3444M:	Haavard Skinnemoen <hskinnemoen@gmail.com>
3445S:	Supported
3446F:	drivers/i2c/busses/i2c-gpio.c
3447F:	include/linux/i2c-gpio.h
3448
3449GENERIC GPIO I2C MULTIPLEXER DRIVER
3450M:	Peter Korsgaard <peter.korsgaard@barco.com>
3451L:	linux-i2c@vger.kernel.org
3452S:	Supported
3453F:	drivers/i2c/muxes/i2c-mux-gpio.c
3454F:	include/linux/i2c-mux-gpio.h
3455F:	Documentation/i2c/muxes/i2c-mux-gpio
3456
3457GENERIC HDLC (WAN) DRIVERS
3458M:	Krzysztof Halasa <khc@pm.waw.pl>
3459W:	http://www.kernel.org/pub/linux/utils/net/hdlc/
3460S:	Maintained
3461F:	drivers/net/wan/c101.c
3462F:	drivers/net/wan/hd6457*
3463F:	drivers/net/wan/hdlc*
3464F:	drivers/net/wan/n2.c
3465F:	drivers/net/wan/pc300too.c
3466F:	drivers/net/wan/pci200syn.c
3467F:	drivers/net/wan/wanxl*
3468
3469GENERIC INCLUDE/ASM HEADER FILES
3470M:	Arnd Bergmann <arnd@arndb.de>
3471L:	linux-arch@vger.kernel.org
3472T:	git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3473S:	Maintained
3474F:	include/asm-generic
3475F:	include/uapi/asm-generic
3476
3477GENERIC UIO DRIVER FOR PCI DEVICES
3478M:	"Michael S. Tsirkin" <mst@redhat.com>
3479L:	kvm@vger.kernel.org
3480S:	Supported
3481F:	drivers/uio/uio_pci_generic.c
3482
3483GFS2 FILE SYSTEM
3484M:	Steven Whitehouse <swhiteho@redhat.com>
3485L:	cluster-devel@redhat.com
3486W:	http://sources.redhat.com/cluster/
3487T:	git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3488T:	git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
3489S:	Supported
3490F:	Documentation/filesystems/gfs2*.txt
3491F:	fs/gfs2/
3492F:	include/uapi/linux/gfs2_ondisk.h
3493
3494GIGASET ISDN DRIVERS
3495M:	Hansjoerg Lipp <hjlipp@web.de>
3496M:	Tilman Schmidt <tilman@imap.cc>
3497L:	gigaset307x-common@lists.sourceforge.net
3498W:	http://gigaset307x.sourceforge.net/
3499S:	Maintained
3500F:	Documentation/isdn/README.gigaset
3501F:	drivers/isdn/gigaset/
3502F:	include/uapi/linux/gigaset_dev.h
3503
3504GPIO SUBSYSTEM
3505M:	Grant Likely <grant.likely@secretlab.ca>
3506M:	Linus Walleij <linus.walleij@linaro.org>
3507S:	Maintained
3508T:	git git://git.secretlab.ca/git/linux-2.6.git
3509F:	Documentation/gpio.txt
3510F:	drivers/gpio/
3511F:	include/linux/gpio*
3512F:	include/asm-generic/gpio.h
3513
3514GRE DEMULTIPLEXER DRIVER
3515M:	Dmitry Kozlov <xeb@mail.ru>
3516L:	netdev@vger.kernel.org
3517S:	Maintained
3518F:	net/ipv4/gre.c
3519F:	include/net/gre.h
3520
3521GRETH 10/100/1G Ethernet MAC device driver
3522M:	Kristoffer Glembo <kristoffer@gaisler.com>
3523L:	netdev@vger.kernel.org
3524S:	Maintained
3525F:	drivers/net/ethernet/aeroflex/
3526
3527GSPCA FINEPIX SUBDRIVER
3528M:	Frank Zago <frank@zago.net>
3529L:	linux-media@vger.kernel.org
3530T:	git git://linuxtv.org/media_tree.git
3531S:	Maintained
3532F:	drivers/media/usb/gspca/finepix.c
3533
3534GSPCA GL860 SUBDRIVER
3535M:	Olivier Lorin <o.lorin@laposte.net>
3536L:	linux-media@vger.kernel.org
3537T:	git git://linuxtv.org/media_tree.git
3538S:	Maintained
3539F:	drivers/media/usb/gspca/gl860/
3540
3541GSPCA M5602 SUBDRIVER
3542M:	Erik Andren <erik.andren@gmail.com>
3543L:	linux-media@vger.kernel.org
3544T:	git git://linuxtv.org/media_tree.git
3545S:	Maintained
3546F:	drivers/media/usb/gspca/m5602/
3547
3548GSPCA PAC207 SONIXB SUBDRIVER
3549M:	Hans de Goede <hdegoede@redhat.com>
3550L:	linux-media@vger.kernel.org
3551T:	git git://linuxtv.org/media_tree.git
3552S:	Maintained
3553F:	drivers/media/usb/gspca/pac207.c
3554
3555GSPCA SN9C20X SUBDRIVER
3556M:	Brian Johnson <brijohn@gmail.com>
3557L:	linux-media@vger.kernel.org
3558T:	git git://linuxtv.org/media_tree.git
3559S:	Maintained
3560F:	drivers/media/usb/gspca/sn9c20x.c
3561
3562GSPCA T613 SUBDRIVER
3563M:	Leandro Costantino <lcostantino@gmail.com>
3564L:	linux-media@vger.kernel.org
3565T:	git git://linuxtv.org/media_tree.git
3566S:	Maintained
3567F:	drivers/media/usb/gspca/t613.c
3568
3569GSPCA USB WEBCAM DRIVER
3570M:	Hans de Goede <hdegoede@redhat.com>
3571L:	linux-media@vger.kernel.org
3572T:	git git://linuxtv.org/media_tree.git
3573S:	Maintained
3574F:	drivers/media/usb/gspca/
3575
3576STK1160 USB VIDEO CAPTURE DRIVER
3577M:	Ezequiel Garcia <elezegarcia@gmail.com>
3578L:	linux-media@vger.kernel.org
3579T:	git git://linuxtv.org/media_tree.git
3580S:	Maintained
3581F:	drivers/media/usb/stk1160/
3582
3583HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3584M:	Frank Seidel <frank@f-seidel.de>
3585L:	platform-driver-x86@vger.kernel.org
3586W:	http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3587S:	Maintained
3588F:	drivers/platform/x86/hdaps.c
3589
3590HWPOISON MEMORY FAILURE HANDLING
3591M:	Andi Kleen <andi@firstfloor.org>
3592L:	linux-mm@kvack.org
3593T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3594S:	Maintained
3595F:	mm/memory-failure.c
3596F:	mm/hwpoison-inject.c
3597
3598HYPERVISOR VIRTUAL CONSOLE DRIVER
3599L:	linuxppc-dev@lists.ozlabs.org
3600S:	Odd Fixes
3601F:	drivers/tty/hvc/
3602
3603HARDWARE MONITORING
3604M:	Jean Delvare <khali@linux-fr.org>
3605M:	Guenter Roeck <linux@roeck-us.net>
3606L:	lm-sensors@lm-sensors.org
3607W:	http://www.lm-sensors.org/
3608T:	quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
3609T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
3610S:	Maintained
3611F:	Documentation/hwmon/
3612F:	drivers/hwmon/
3613F:	include/linux/hwmon*.h
3614
3615HARDWARE RANDOM NUMBER GENERATOR CORE
3616M:	Matt Mackall <mpm@selenic.com>
3617M:	Herbert Xu <herbert@gondor.apana.org.au>
3618S:	Odd fixes
3619F:	Documentation/hw_random.txt
3620F:	drivers/char/hw_random/
3621F:	include/linux/hw_random.h
3622
3623HARDWARE SPINLOCK CORE
3624M:	Ohad Ben-Cohen <ohad@wizery.com>
3625S:	Maintained
3626F:	Documentation/hwspinlock.txt
3627F:	drivers/hwspinlock/hwspinlock_*
3628F:	include/linux/hwspinlock.h
3629
3630HARMONY SOUND DRIVER
3631L:	linux-parisc@vger.kernel.org
3632S:	Maintained
3633F:	sound/parisc/harmony.*
3634
3635HD29L2 MEDIA DRIVER
3636M:	Antti Palosaari <crope@iki.fi>
3637L:	linux-media@vger.kernel.org
3638W:	http://linuxtv.org/
3639W:	http://palosaari.fi/linux/
3640Q:	http://patchwork.linuxtv.org/project/linux-media/list/
3641T:	git git://linuxtv.org/anttip/media_tree.git
3642S:	Maintained
3643F:	drivers/media/dvb-frontends/hd29l2*
3644
3645HEWLETT-PACKARD SMART2 RAID DRIVER
3646M:	Chirag Kantharia <chirag.kantharia@hp.com>
3647L:	iss_storagedev@hp.com
3648S:	Maintained
3649F:	Documentation/blockdev/cpqarray.txt
3650F:	drivers/block/cpqarray.*
3651
3652HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
3653M:	"Stephen M. Cameron" <scameron@beardog.cce.hp.com>
3654L:	iss_storagedev@hp.com
3655S:	Supported
3656F:	Documentation/scsi/hpsa.txt
3657F:	drivers/scsi/hpsa*.[ch]
3658F:	include/linux/cciss*.h
3659F:	include/uapi/linux/cciss*.h
3660
3661HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
3662M:	Mike Miller <mike.miller@hp.com>
3663L:	iss_storagedev@hp.com
3664S:	Supported
3665F:	Documentation/blockdev/cciss.txt
3666F:	drivers/block/cciss*
3667F:	include/linux/cciss_ioctl.h
3668F:	include/uapi/linux/cciss_ioctl.h
3669
3670HFS FILESYSTEM
3671L:	linux-fsdevel@vger.kernel.org
3672S:	Orphan
3673F:	Documentation/filesystems/hfs.txt
3674F:	fs/hfs/
3675
3676HGA FRAMEBUFFER DRIVER
3677M:	Ferenc Bakonyi <fero@drama.obuda.kando.hu>
3678L:	linux-nvidia@lists.surfsouth.com
3679W:	http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3680S:	Maintained
3681F:	drivers/video/hgafb.c
3682
3683HIBERNATION (aka Software Suspend, aka swsusp)
3684M:	Pavel Machek <pavel@ucw.cz>
3685M:	"Rafael J. Wysocki" <rjw@sisk.pl>
3686L:	linux-pm@vger.kernel.org
3687S:	Supported
3688F:	arch/x86/power/
3689F:	drivers/base/power/
3690F:	kernel/power/
3691F:	include/linux/suspend.h
3692F:	include/linux/freezer.h
3693F:	include/linux/pm.h
3694F:	arch/*/include/asm/suspend*.h
3695
3696HID CORE LAYER
3697M:	Jiri Kosina <jkosina@suse.cz>
3698L:	linux-input@vger.kernel.org
3699T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
3700S:	Maintained
3701F:	drivers/hid/
3702F:	include/linux/hid*
3703F:	include/uapi/linux/hid*
3704
3705HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
3706M:	Thomas Gleixner <tglx@linutronix.de>
3707T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3708S:	Maintained
3709F:	Documentation/timers/
3710F:	kernel/hrtimer.c
3711F:	kernel/time/clockevents.c
3712F:	kernel/time/tick*.*
3713F:	kernel/time/timer_*.c
3714F:	include/linux/clockchips.h
3715F:	include/linux/hrtimer.h
3716
3717HIGH-SPEED SCC DRIVER FOR AX.25
3718L:	linux-hams@vger.kernel.org
3719S:	Orphan
3720F:	drivers/net/hamradio/dmascc.c
3721F:	drivers/net/hamradio/scc.c
3722
3723HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
3724M:	HighPoint Linux Team <linux@highpoint-tech.com>
3725W:	http://www.highpoint-tech.com
3726S:	Supported
3727F:	Documentation/scsi/hptiop.txt
3728F:	drivers/scsi/hptiop.c
3729
3730HIPPI
3731M:	Jes Sorensen <jes@trained-monkey.org>
3732L:	linux-hippi@sunsite.dk
3733S:	Maintained
3734F:	include/linux/hippidevice.h
3735F:	include/uapi/linux/if_hippi.h
3736F:	net/802/hippi.c
3737F:	drivers/net/hippi/
3738
3739HOST AP DRIVER
3740M:	Jouni Malinen <j@w1.fi>
3741L:	hostap@shmoo.com (subscribers-only)
3742L:	linux-wireless@vger.kernel.org
3743W:	http://hostap.epitest.fi/
3744S:	Maintained
3745F:	drivers/net/wireless/hostap/
3746
3747HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
3748L:	platform-driver-x86@vger.kernel.org
3749S:	Orphan
3750F:	drivers/platform/x86/tc1100-wmi.c
3751
3752HP100:	Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
3753M:	Jaroslav Kysela <perex@perex.cz>
3754S:	Maintained
3755F:	drivers/net/ethernet/hp/hp100.*
3756
3757HPET:	High Precision Event Timers driver
3758M:	Clemens Ladisch <clemens@ladisch.de>
3759S:	Maintained
3760F:	Documentation/timers/hpet.txt
3761F:	drivers/char/hpet.c
3762F:	include/linux/hpet.h
3763F:	include/uapi/linux/hpet.h
3764
3765HPET:	x86
3766M:	"Venkatesh Pallipadi (Venki)" <venki@google.com>
3767S:	Maintained
3768F:	arch/x86/kernel/hpet.c
3769F:	arch/x86/include/asm/hpet.h
3770
3771HPFS FILESYSTEM
3772M:	Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
3773W:	http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
3774S:	Maintained
3775F:	fs/hpfs/
3776
3777HSO 3G MODEM DRIVER
3778M:	Jan Dumon <j.dumon@option.com>
3779W:	http://www.pharscape.org
3780S:	Maintained
3781F:	drivers/net/usb/hso.c
3782
3783HTCPEN TOUCHSCREEN DRIVER
3784M:	Pau Oliva Fora <pof@eslack.org>
3785L:	linux-input@vger.kernel.org
3786S:	Maintained
3787F:	drivers/input/touchscreen/htcpen.c
3788
3789HUGETLB FILESYSTEM
3790M:	Nadia Yvette Chambers <nyc@holomorphy.com>
3791S:	Maintained
3792F:	fs/hugetlbfs/
3793
3794Hyper-V CORE AND DRIVERS
3795M:	K. Y. Srinivasan <kys@microsoft.com>
3796M:	Haiyang Zhang <haiyangz@microsoft.com>
3797L:	devel@linuxdriverproject.org
3798S:	Maintained
3799F:	drivers/hv/
3800F:	drivers/hid/hid-hyperv.c
3801F:	drivers/net/hyperv/
3802
3803I2C OVER PARALLEL PORT
3804M:	Jean Delvare <khali@linux-fr.org>
3805L:	linux-i2c@vger.kernel.org
3806S:	Maintained
3807F:	Documentation/i2c/busses/i2c-parport
3808F:	Documentation/i2c/busses/i2c-parport-light
3809F:	drivers/i2c/busses/i2c-parport.c
3810F:	drivers/i2c/busses/i2c-parport-light.c
3811
3812I2C/SMBUS CONTROLLER DRIVERS FOR PC
3813M:	Jean Delvare <khali@linux-fr.org>
3814L:	linux-i2c@vger.kernel.org
3815S:	Maintained
3816F:	Documentation/i2c/busses/i2c-ali1535
3817F:	Documentation/i2c/busses/i2c-ali1563
3818F:	Documentation/i2c/busses/i2c-ali15x3
3819F:	Documentation/i2c/busses/i2c-amd756
3820F:	Documentation/i2c/busses/i2c-amd8111
3821F:	Documentation/i2c/busses/i2c-i801
3822F:	Documentation/i2c/busses/i2c-nforce2
3823F:	Documentation/i2c/busses/i2c-piix4
3824F:	Documentation/i2c/busses/i2c-sis5595
3825F:	Documentation/i2c/busses/i2c-sis630
3826F:	Documentation/i2c/busses/i2c-sis96x
3827F:	Documentation/i2c/busses/i2c-via
3828F:	Documentation/i2c/busses/i2c-viapro
3829F:	drivers/i2c/busses/i2c-ali1535.c
3830F:	drivers/i2c/busses/i2c-ali1563.c
3831F:	drivers/i2c/busses/i2c-ali15x3.c
3832F:	drivers/i2c/busses/i2c-amd756.c
3833F:	drivers/i2c/busses/i2c-amd756-s4882.c
3834F:	drivers/i2c/busses/i2c-amd8111.c
3835F:	drivers/i2c/busses/i2c-i801.c
3836F:	drivers/i2c/busses/i2c-isch.c
3837F:	drivers/i2c/busses/i2c-nforce2.c
3838F:	drivers/i2c/busses/i2c-nforce2-s4985.c
3839F:	drivers/i2c/busses/i2c-piix4.c
3840F:	drivers/i2c/busses/i2c-sis5595.c
3841F:	drivers/i2c/busses/i2c-sis630.c
3842F:	drivers/i2c/busses/i2c-sis96x.c
3843F:	drivers/i2c/busses/i2c-via.c
3844F:	drivers/i2c/busses/i2c-viapro.c
3845
3846I2C/SMBUS ISMT DRIVER
3847M:	Seth Heasley <seth.heasley@intel.com>
3848M:	Neil Horman <nhorman@tuxdriver.com>
3849L:	linux-i2c@vger.kernel.org
3850F:	drivers/i2c/busses/i2c-ismt.c
3851F:	Documentation/i2c/busses/i2c-ismt
3852
3853I2C/SMBUS STUB DRIVER
3854M:	Jean Delvare <khali@linux-fr.org>
3855L:	linux-i2c@vger.kernel.org
3856S:	Maintained
3857F:	drivers/i2c/i2c-stub.c
3858
3859I2C SUBSYSTEM
3860M:	Wolfram Sang <wsa@the-dreams.de>
3861M:	"Ben Dooks (embedded platforms)" <ben-linux@fluff.org>
3862L:	linux-i2c@vger.kernel.org
3863W:	http://i2c.wiki.kernel.org/
3864T:	git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
3865S:	Maintained
3866F:	Documentation/i2c/
3867F:	drivers/i2c/
3868F:	include/linux/i2c.h
3869F:	include/linux/i2c-*.h
3870F:	include/uapi/linux/i2c.h
3871F:	include/uapi/linux/i2c-*.h
3872
3873I2C-TAOS-EVM DRIVER
3874M:	Jean Delvare <khali@linux-fr.org>
3875L:	linux-i2c@vger.kernel.org
3876S:	Maintained
3877F:	Documentation/i2c/busses/i2c-taos-evm
3878F:	drivers/i2c/busses/i2c-taos-evm.c
3879
3880I2C-TINY-USB DRIVER
3881M:	Till Harbaum <till@harbaum.org>
3882L:	linux-i2c@vger.kernel.org
3883W:	http://www.harbaum.org/till/i2c_tiny_usb
3884S:	Maintained
3885F:	drivers/i2c/busses/i2c-tiny-usb.c
3886
3887i386 BOOT CODE
3888M:	"H. Peter Anvin" <hpa@zytor.com>
3889S:	Maintained
3890F:	arch/x86/boot/
3891
3892i386 SETUP CODE / CPU ERRATA WORKAROUNDS
3893M:	"H. Peter Anvin" <hpa@zytor.com>
3894T:	git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
3895S:	Maintained
3896
3897IA64 (Itanium) PLATFORM
3898M:	Tony Luck <tony.luck@intel.com>
3899M:	Fenghua Yu <fenghua.yu@intel.com>
3900L:	linux-ia64@vger.kernel.org
3901T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
3902S:	Maintained
3903F:	arch/ia64/
3904
3905IBM Power in-Nest Crypto Acceleration
3906M:	Kent Yoder <key@linux.vnet.ibm.com>
3907L:	linux-crypto@vger.kernel.org
3908S:	Supported
3909F:	drivers/crypto/nx/
3910
3911IBM Power 842 compression accelerator
3912M:	Robert Jennings <rcj@linux.vnet.ibm.com>
3913S:	Supported
3914F:	drivers/crypto/nx/nx-842.c
3915F:	include/linux/nx842.h
3916
3917IBM Power Linux RAID adapter
3918M:	Brian King <brking@us.ibm.com>
3919S:	Supported
3920F:	drivers/scsi/ipr.*
3921
3922IBM Power Virtual Ethernet Device Driver
3923M:	Santiago Leon <santil@linux.vnet.ibm.com>
3924L:	netdev@vger.kernel.org
3925S:	Supported
3926F:	drivers/net/ethernet/ibm/ibmveth.*
3927
3928IBM Power Virtual SCSI/FC Device Drivers
3929M:	Robert Jennings <rcj@linux.vnet.ibm.com>
3930L:	linux-scsi@vger.kernel.org
3931S:	Supported
3932F:	drivers/scsi/ibmvscsi/
3933X:	drivers/scsi/ibmvscsi/ibmvstgt.c
3934
3935IBM ServeRAID RAID DRIVER
3936P:	Jack Hammer
3937M:	Dave Jeffery <ipslinux@adaptec.com>
3938W:	http://www.developer.ibm.com/welcome/netfinity/serveraid.html
3939S:	Supported
3940F:	drivers/scsi/ips.*
3941
3942ICH LPC AND GPIO DRIVER
3943M:	Peter Tyser <ptyser@xes-inc.com>
3944S:	Maintained
3945F:	drivers/mfd/lpc_ich.c
3946F:	drivers/gpio/gpio-ich.c
3947
3948IDE SUBSYSTEM
3949M:	"David S. Miller" <davem@davemloft.net>
3950L:	linux-ide@vger.kernel.org
3951Q:	http://patchwork.ozlabs.org/project/linux-ide/list/
3952T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
3953S:	Maintained
3954F:	Documentation/ide/
3955F:	drivers/ide/
3956F:	include/linux/ide.h
3957
3958IDEAPAD LAPTOP EXTRAS DRIVER
3959M:	Ike Panhc <ike.pan@canonical.com>
3960L:	platform-driver-x86@vger.kernel.org
3961W:	http://launchpad.net/ideapad-laptop
3962S:	Maintained
3963F:	drivers/platform/x86/ideapad-laptop.c
3964
3965IDE/ATAPI DRIVERS
3966M:	Borislav Petkov <bp@alien8.de>
3967L:	linux-ide@vger.kernel.org
3968S:	Maintained
3969F:	Documentation/cdrom/ide-cd
3970F:	drivers/ide/ide-cd*
3971
3972IDLE-I7300
3973M:	Andy Henroid <andrew.d.henroid@intel.com>
3974L:	linux-pm@vger.kernel.org
3975S:	Supported
3976F:	drivers/idle/i7300_idle.c
3977
3978IEEE 802.15.4 SUBSYSTEM
3979M:	Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
3980M:	Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3981L:	linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
3982W:	http://apps.sourceforge.net/trac/linux-zigbee
3983T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
3984S:	Maintained
3985F:	net/ieee802154/
3986F:	net/mac802154/
3987F:	drivers/net/ieee802154/
3988
3989IGUANAWORKS USB IR TRANSCEIVER
3990M:	Sean Young <sean@mess.org>
3991L:	linux-media@vger.kernel.org
3992S:	Maintained
3993F:	drivers/media/rc/iguanair.c
3994
3995IIO SUBSYSTEM AND DRIVERS
3996M:	Jonathan Cameron <jic23@cam.ac.uk>
3997L:	linux-iio@vger.kernel.org
3998S:	Maintained
3999F:	drivers/iio/
4000F:	drivers/staging/iio/
4001
4002IKANOS/ADI EAGLE ADSL USB DRIVER
4003M:	Matthieu Castet <castet.matthieu@free.fr>
4004M:	Stanislaw Gruszka <stf_xl@wp.pl>
4005S:	Maintained
4006F:	drivers/usb/atm/ueagle-atm.c
4007
4008INA209 HARDWARE MONITOR DRIVER
4009M:	Guenter Roeck <linux@roeck-us.net>
4010L:	lm-sensors@lm-sensors.org
4011S:	Maintained
4012F:	Documentation/hwmon/ina209
4013F:	Documentation/devicetree/bindings/i2c/ina209.txt
4014F:	drivers/hwmon/ina209.c
4015
4016INA2XX HARDWARE MONITOR DRIVER
4017M:	Guenter Roeck <linux@roeck-us.net>
4018L:	lm-sensors@lm-sensors.org
4019S:	Maintained
4020F:	Documentation/hwmon/ina2xx
4021F:	drivers/hwmon/ina2xx.c
4022F:	include/linux/platform_data/ina2xx.h
4023
4024INDUSTRY PACK SUBSYSTEM (IPACK)
4025M:	Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4026M:	Jens Taprogge <jens.taprogge@taprogge.org>
4027M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4028L:	industrypack-devel@lists.sourceforge.net
4029W:	http://industrypack.sourceforge.net
4030S:	Maintained
4031F:	drivers/ipack/
4032
4033INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4034M:	Mimi Zohar <zohar@us.ibm.com>
4035S:	Supported
4036F:	security/integrity/ima/
4037
4038IMS TWINTURBO FRAMEBUFFER DRIVER
4039L:	linux-fbdev@vger.kernel.org
4040S:	Orphan
4041F:	drivers/video/imsttfb.c
4042
4043INFINIBAND SUBSYSTEM
4044M:	Roland Dreier <roland@kernel.org>
4045M:	Sean Hefty <sean.hefty@intel.com>
4046M:	Hal Rosenstock <hal.rosenstock@gmail.com>
4047L:	linux-rdma@vger.kernel.org
4048W:	http://www.openfabrics.org/
4049Q:	http://patchwork.kernel.org/project/linux-rdma/list/
4050T:	git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4051S:	Supported
4052F:	Documentation/infiniband/
4053F:	drivers/infiniband/
4054F:	include/uapi/linux/if_infiniband.h
4055
4056INOTIFY
4057M:	John McCutchan <john@johnmccutchan.com>
4058M:	Robert Love <rlove@rlove.org>
4059M:	Eric Paris <eparis@parisplace.org>
4060S:	Maintained
4061F:	Documentation/filesystems/inotify.txt
4062F:	fs/notify/inotify/
4063F:	include/linux/inotify.h
4064F:	include/uapi/linux/inotify.h
4065
4066INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4067M:	Dmitry Torokhov <dmitry.torokhov@gmail.com>
4068M:	Dmitry Torokhov <dtor@mail.ru>
4069L:	linux-input@vger.kernel.org
4070Q:	http://patchwork.kernel.org/project/linux-input/list/
4071T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4072S:	Maintained
4073F:	drivers/input/
4074F:	include/linux/input.h
4075F:	include/uapi/linux/input.h
4076F:	include/linux/input/
4077
4078INPUT MULTITOUCH (MT) PROTOCOL
4079M:	Henrik Rydberg <rydberg@euromail.se>
4080L:	linux-input@vger.kernel.org
4081T:	git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4082S:	Maintained
4083F:	Documentation/input/multi-touch-protocol.txt
4084F:	drivers/input/input-mt.c
4085K:	\b(ABS|SYN)_MT_
4086
4087INTEL C600 SERIES SAS CONTROLLER DRIVER
4088M:	Intel SCU Linux support <intel-linux-scu@intel.com>
4089M:	Lukasz Dorau <lukasz.dorau@intel.com>
4090M:	Maciej Patelczyk <maciej.patelczyk@intel.com>
4091M:	Dave Jiang <dave.jiang@intel.com>
4092L:	linux-scsi@vger.kernel.org
4093T:	git git://git.code.sf.net/p/intel-sas/isci
4094S:	Supported
4095F:	drivers/scsi/isci/
4096
4097INTEL IDLE DRIVER
4098M:	Len Brown <lenb@kernel.org>
4099L:	linux-pm@vger.kernel.org
4100T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4101S:	Supported
4102F:	drivers/idle/intel_idle.c
4103
4104INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4105M:	Maik Broemme <mbroemme@plusserver.de>
4106L:	linux-fbdev@vger.kernel.org
4107S:	Maintained
4108F:	Documentation/fb/intelfb.txt
4109F:	drivers/video/intelfb/
4110
4111INTEL 810/815 FRAMEBUFFER DRIVER
4112M:	Antonino Daplas <adaplas@gmail.com>
4113L:	linux-fbdev@vger.kernel.org
4114S:	Maintained
4115F:	drivers/video/i810/
4116
4117INTEL MENLOW THERMAL DRIVER
4118M:	Sujith Thomas <sujith.thomas@intel.com>
4119L:	platform-driver-x86@vger.kernel.org
4120W:	http://www.lesswatts.org/projects/acpi/
4121S:	Supported
4122F:	drivers/platform/x86/intel_menlow.c
4123
4124INTEL IA32 MICROCODE UPDATE SUPPORT
4125M:	Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
4126S:	Maintained
4127F:	arch/x86/kernel/microcode_core.c
4128F:	arch/x86/kernel/microcode_intel.c
4129
4130INTEL I/OAT DMA DRIVER
4131M:	Dan Williams <djbw@fb.com>
4132S:	Maintained
4133F:	drivers/dma/ioat*
4134
4135INTEL IOMMU (VT-d)
4136M:	David Woodhouse <dwmw2@infradead.org>
4137L:	iommu@lists.linux-foundation.org
4138T:	git git://git.infradead.org/iommu-2.6.git
4139S:	Supported
4140F:	drivers/iommu/intel-iommu.c
4141F:	include/linux/intel-iommu.h
4142
4143INTEL IOP-ADMA DMA DRIVER
4144M:	Dan Williams <djbw@fb.com>
4145S:	Odd fixes
4146F:	drivers/dma/iop-adma.c
4147
4148INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
4149M:	Krzysztof Halasa <khc@pm.waw.pl>
4150S:	Maintained
4151F:	arch/arm/mach-ixp4xx/include/mach/qmgr.h
4152F:	arch/arm/mach-ixp4xx/include/mach/npe.h
4153F:	arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4154F:	arch/arm/mach-ixp4xx/ixp4xx_npe.c
4155F:	drivers/net/ethernet/xscale/ixp4xx_eth.c
4156F:	drivers/net/wan/ixp4xx_hss.c
4157
4158INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
4159M:	Deepak Saxena <dsaxena@plexity.net>
4160S:	Maintained
4161F:	drivers/char/hw_random/ixp4xx-rng.c
4162
4163INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf)
4164M:	Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4165M:	Jesse Brandeburg <jesse.brandeburg@intel.com>
4166M:	Bruce Allan <bruce.w.allan@intel.com>
4167M:	Carolyn Wyborny <carolyn.wyborny@intel.com>
4168M:	Don Skidmore <donald.c.skidmore@intel.com>
4169M:	Greg Rose <gregory.v.rose@intel.com>
4170M:	Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
4171M:	Alex Duyck <alexander.h.duyck@intel.com>
4172M:	John Ronciak <john.ronciak@intel.com>
4173M:	Tushar Dave <tushar.n.dave@intel.com>
4174L:	e1000-devel@lists.sourceforge.net
4175W:	http://www.intel.com/support/feedback.htm
4176W:	http://e1000.sourceforge.net/
4177T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4178T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
4179S:	Supported
4180F:	Documentation/networking/e100.txt
4181F:	Documentation/networking/e1000.txt
4182F:	Documentation/networking/e1000e.txt
4183F:	Documentation/networking/igb.txt
4184F:	Documentation/networking/igbvf.txt
4185F:	Documentation/networking/ixgb.txt
4186F:	Documentation/networking/ixgbe.txt
4187F:	Documentation/networking/ixgbevf.txt
4188F:	drivers/net/ethernet/intel/
4189
4190INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4191M:	Stanislav Yakovlev <stas.yakovlev@gmail.com>
4192L:	linux-wireless@vger.kernel.org
4193S:	Maintained
4194F:	Documentation/networking/README.ipw2100
4195F:	Documentation/networking/README.ipw2200
4196F:	drivers/net/wireless/ipw2x00/
4197
4198INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
4199M:	Richard L Maliszewski <richard.l.maliszewski@intel.com>
4200M:	Gang Wei <gang.wei@intel.com>
4201M:	Shane Wang <shane.wang@intel.com>
4202L:	tboot-devel@lists.sourceforge.net
4203W:	http://tboot.sourceforge.net
4204T:	hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
4205S:	Supported
4206F:	Documentation/intel_txt.txt
4207F:	include/linux/tboot.h
4208F:	arch/x86/kernel/tboot.c
4209
4210INTEL WIRELESS WIMAX CONNECTION 2400
4211M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
4212M:	linux-wimax@intel.com
4213L:	wimax@linuxwimax.org
4214S:	Supported
4215W:	http://linuxwimax.org
4216F:	Documentation/wimax/README.i2400m
4217F:	drivers/net/wimax/i2400m/
4218F:	include/uapi/linux/wimax/i2400m.h
4219
4220INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4221M:	Stanislaw Gruszka <sgruszka@redhat.com>
4222L:	linux-wireless@vger.kernel.org
4223S:	Supported
4224F:	drivers/net/wireless/iwlegacy/
4225
4226INTEL WIRELESS WIFI LINK (iwlwifi)
4227M:	Johannes Berg <johannes.berg@intel.com>
4228M:	Wey-Yi Guy <wey-yi.w.guy@intel.com>
4229M:	Intel Linux Wireless <ilw@linux.intel.com>
4230L:	linux-wireless@vger.kernel.org
4231W:	http://intellinuxwireless.org
4232T:	git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
4233S:	Supported
4234F:	drivers/net/wireless/iwlwifi/
4235
4236INTEL MANAGEMENT ENGINE (mei)
4237M:	Tomas Winkler <tomas.winkler@intel.com>
4238L:	linux-kernel@vger.kernel.org
4239S:	Supported
4240F:	include/uapi/linux/mei.h
4241F:	drivers/misc/mei/*
4242F:	Documentation/misc-devices/mei/*
4243
4244IOC3 ETHERNET DRIVER
4245M:	Ralf Baechle <ralf@linux-mips.org>
4246L:	linux-mips@linux-mips.org
4247S:	Maintained
4248F:	drivers/net/ethernet/sgi/ioc3-eth.c
4249
4250IOC3 SERIAL DRIVER
4251M:	Pat Gefre <pfg@sgi.com>
4252L:	linux-serial@vger.kernel.org
4253S:	Maintained
4254F:	drivers/tty/serial/ioc3_serial.c
4255
4256IP MASQUERADING
4257M:	Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
4258S:	Maintained
4259F:	net/ipv4/netfilter/ipt_MASQUERADE.c
4260
4261IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
4262M:	Francois Romieu <romieu@fr.zoreil.com>
4263M:	Sorbica Shieh <sorbica@icplus.com.tw>
4264L:	netdev@vger.kernel.org
4265S:	Maintained
4266F:	drivers/net/ethernet/icplus/ipg.*
4267
4268IPATH DRIVER
4269M:	Mike Marciniszyn <infinipath@intel.com>
4270L:	linux-rdma@vger.kernel.org
4271S:	Maintained
4272F:	drivers/infiniband/hw/ipath/
4273
4274IPMI SUBSYSTEM
4275M:	Corey Minyard <minyard@acm.org>
4276L:	openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
4277W:	http://openipmi.sourceforge.net/
4278S:	Supported
4279F:	Documentation/IPMI.txt
4280F:	drivers/char/ipmi/
4281F:	include/linux/ipmi*
4282F:	include/uapi/linux/ipmi*
4283
4284IPS SCSI RAID DRIVER
4285M:	Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4286L:	linux-scsi@vger.kernel.org
4287W:	http://www.adaptec.com/
4288S:	Maintained
4289F:	drivers/scsi/ips*
4290
4291IPVS
4292M:	Wensong Zhang <wensong@linux-vs.org>
4293M:	Simon Horman <horms@verge.net.au>
4294M:	Julian Anastasov <ja@ssi.bg>
4295L:	netdev@vger.kernel.org
4296L:	lvs-devel@vger.kernel.org
4297S:	Maintained
4298F:	Documentation/networking/ipvs-sysctl.txt
4299F:	include/net/ip_vs.h
4300F:	include/uapi/linux/ip_vs.h
4301F:	net/netfilter/ipvs/
4302
4303IPWIRELESS DRIVER
4304M:	Jiri Kosina <jkosina@suse.cz>
4305M:	David Sterba <dsterba@suse.cz>
4306S:	Odd Fixes
4307F:	drivers/tty/ipwireless/
4308
4309IPX NETWORK LAYER
4310M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4311L:	netdev@vger.kernel.org
4312S:	Maintained
4313F:	include/net/ipx.h
4314F:	include/uapi/linux/ipx.h
4315F:	net/ipx/
4316
4317IRDA SUBSYSTEM
4318M:	Samuel Ortiz <samuel@sortiz.org>
4319L:	irda-users@lists.sourceforge.net (subscribers-only)
4320L:	netdev@vger.kernel.org
4321W:	http://irda.sourceforge.net/
4322S:	Maintained
4323T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
4324F:	Documentation/networking/irda.txt
4325F:	drivers/net/irda/
4326F:	include/net/irda/
4327F:	net/irda/
4328
4329IRQ SUBSYSTEM
4330M:	Thomas Gleixner <tglx@linutronix.de>
4331S:	Maintained
4332T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4333F:	kernel/irq/
4334F:	drivers/irqchip/
4335
4336IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4337M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
4338M:	Grant Likely <grant.likely@secretlab.ca>
4339T:	git git://git.secretlab.ca/git/linux-2.6.git irqdomain/next
4340S:	Maintained
4341F:	Documentation/IRQ-domain.txt
4342F:	include/linux/irqdomain.h
4343F:	kernel/irq/irqdomain.c
4344
4345ISAPNP
4346M:	Jaroslav Kysela <perex@perex.cz>
4347S:	Maintained
4348F:	Documentation/isapnp.txt
4349F:	drivers/pnp/isapnp/
4350F:	include/linux/isapnp.h
4351
4352ISA RADIO MODULE
4353M:	Hans Verkuil <hverkuil@xs4all.nl>
4354L:	linux-media@vger.kernel.org
4355T:	git git://linuxtv.org/media_tree.git
4356W:	http://linuxtv.org
4357S:	Maintained
4358F:	drivers/media/radio/radio-isa*
4359
4360iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4361M:	Peter Jones <pjones@redhat.com>
4362M:	Konrad Rzeszutek Wilk <konrad@kernel.org>
4363S:	Maintained
4364F:	drivers/firmware/iscsi_ibft*
4365
4366ISCSI
4367M:	Mike Christie <michaelc@cs.wisc.edu>
4368L:	open-iscsi@googlegroups.com
4369W:	www.open-iscsi.org
4370T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
4371S:	Maintained
4372F:	drivers/scsi/*iscsi*
4373F:	include/scsi/*iscsi*
4374
4375ISDN SUBSYSTEM
4376M:	Karsten Keil <isdn@linux-pingi.de>
4377L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
4378L:	netdev@vger.kernel.org
4379W:	http://www.isdn4linux.de
4380T:	git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
4381S:	Maintained
4382F:	Documentation/isdn/
4383F:	drivers/isdn/
4384F:	include/linux/isdn.h
4385F:	include/linux/isdn/
4386F:	include/uapi/linux/isdn.h
4387F:	include/uapi/linux/isdn/
4388
4389ISDN SUBSYSTEM (Eicon active card driver)
4390M:	Armin Schindler <mac@melware.de>
4391L:	isdn4linux@listserv.isdn4linux.de (subscribers-only)
4392W:	http://www.melware.de
4393S:	Maintained
4394F:	drivers/isdn/hardware/eicon/
4395
4396IT87 HARDWARE MONITORING DRIVER
4397M:	Jean Delvare <khali@linux-fr.org>
4398L:	lm-sensors@lm-sensors.org
4399S:	Maintained
4400F:	Documentation/hwmon/it87
4401F:	drivers/hwmon/it87.c
4402
4403IT913X MEDIA DRIVER
4404M:	Malcolm Priestley <tvboxspy@gmail.com>
4405L:	linux-media@vger.kernel.org
4406W:	http://linuxtv.org/
4407Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4408S:	Maintained
4409F:	drivers/media/usb/dvb-usb-v2/it913x*
4410
4411IT913X FE MEDIA DRIVER
4412M:	Malcolm Priestley <tvboxspy@gmail.com>
4413L:	linux-media@vger.kernel.org
4414W:	http://linuxtv.org/
4415Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4416S:	Maintained
4417F:	drivers/media/dvb-frontends/it913x-fe*
4418
4419IVTV VIDEO4LINUX DRIVER
4420M:	Andy Walls <awalls@md.metrocast.net>
4421L:	ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
4422L:	linux-media@vger.kernel.org
4423T:	git git://linuxtv.org/media_tree.git
4424W:	http://www.ivtvdriver.org
4425S:	Maintained
4426F:	Documentation/video4linux/*.ivtv
4427F:	drivers/media/pci/ivtv/
4428F:	include/uapi/linux/ivtv*
4429
4430IX2505V MEDIA DRIVER
4431M:	Malcolm Priestley <tvboxspy@gmail.com>
4432L:	linux-media@vger.kernel.org
4433W:	http://linuxtv.org/
4434Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4435S:	Maintained
4436F:	drivers/media/dvb-frontends/ix2505v*
4437
4438JC42.4 TEMPERATURE SENSOR DRIVER
4439M:	Guenter Roeck <linux@roeck-us.net>
4440L:	lm-sensors@lm-sensors.org
4441S:	Maintained
4442F:	drivers/hwmon/jc42.c
4443F:	Documentation/hwmon/jc42
4444
4445JFS FILESYSTEM
4446M:	Dave Kleikamp <shaggy@kernel.org>
4447L:	jfs-discussion@lists.sourceforge.net
4448W:	http://jfs.sourceforge.net/
4449T:	git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
4450S:	Maintained
4451F:	Documentation/filesystems/jfs.txt
4452F:	fs/jfs/
4453
4454JME NETWORK DRIVER
4455M:	Guo-Fu Tseng <cooldavid@cooldavid.org>
4456L:	netdev@vger.kernel.org
4457S:	Maintained
4458F:	drivers/net/ethernet/jme.*
4459
4460JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
4461M:	David Woodhouse <dwmw2@infradead.org>
4462L:	linux-mtd@lists.infradead.org
4463W:	http://www.linux-mtd.infradead.org/doc/jffs2.html
4464S:	Maintained
4465F:	fs/jffs2/
4466F:	include/uapi/linux/jffs2.h
4467
4468JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
4469M:	Andrew Morton <akpm@linux-foundation.org>
4470M:	Jan Kara <jack@suse.cz>
4471L:	linux-ext4@vger.kernel.org
4472S:	Maintained
4473F:	fs/jbd/
4474F:	include/linux/jbd.h
4475
4476JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4477M:	"Theodore Ts'o" <tytso@mit.edu>
4478L:	linux-ext4@vger.kernel.org
4479S:	Maintained
4480F:	fs/jbd2/
4481F:	include/linux/jbd2.h
4482
4483JSM Neo PCI based serial card
4484M:	Lucas Tavares <lucaskt@linux.vnet.ibm.com>
4485L:	linux-serial@vger.kernel.org
4486S:	Maintained
4487F:	drivers/tty/serial/jsm/
4488
4489K10TEMP HARDWARE MONITORING DRIVER
4490M:	Clemens Ladisch <clemens@ladisch.de>
4491L:	lm-sensors@lm-sensors.org
4492S:	Maintained
4493F:	Documentation/hwmon/k10temp
4494F:	drivers/hwmon/k10temp.c
4495
4496K8TEMP HARDWARE MONITORING DRIVER
4497M:	Rudolf Marek <r.marek@assembler.cz>
4498L:	lm-sensors@lm-sensors.org
4499S:	Maintained
4500F:	Documentation/hwmon/k8temp
4501F:	drivers/hwmon/k8temp.c
4502
4503KCONFIG
4504M:	Michal Marek <mmarek@suse.cz>
4505L:	linux-kbuild@vger.kernel.org
4506S:	Odd Fixes
4507F:	Documentation/kbuild/kconfig-language.txt
4508F:	scripts/kconfig/
4509
4510KDUMP
4511M:	Vivek Goyal <vgoyal@redhat.com>
4512M:	Haren Myneni <hbabu@us.ibm.com>
4513L:	kexec@lists.infradead.org
4514W:	http://lse.sourceforge.net/kdump/
4515S:	Maintained
4516F:	Documentation/kdump/
4517
4518KEENE FM RADIO TRANSMITTER DRIVER
4519M:	Hans Verkuil <hverkuil@xs4all.nl>
4520L:	linux-media@vger.kernel.org
4521T:	git git://linuxtv.org/media_tree.git
4522W:	http://linuxtv.org
4523S:	Maintained
4524F:	drivers/media/radio/radio-keene*
4525
4526KERNEL AUTOMOUNTER v4 (AUTOFS4)
4527M:	Ian Kent <raven@themaw.net>
4528L:	autofs@vger.kernel.org
4529S:	Maintained
4530F:	fs/autofs4/
4531
4532KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
4533M:	Michal Marek <mmarek@suse.cz>
4534T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4535T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
4536L:	linux-kbuild@vger.kernel.org
4537S:	Maintained
4538F:	Documentation/kbuild/
4539F:	Makefile
4540F:	scripts/Makefile.*
4541F:	scripts/basic/
4542F:	scripts/mk*
4543F:	scripts/package/
4544
4545KERNEL JANITORS
4546L:	kernel-janitors@vger.kernel.org
4547W:	http://kernelnewbies.org/KernelJanitors
4548S:	Odd Fixes
4549
4550KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
4551M:	"J. Bruce Fields" <bfields@fieldses.org>
4552L:	linux-nfs@vger.kernel.org
4553W:	http://nfs.sourceforge.net/
4554S:	Supported
4555F:	fs/nfsd/
4556F:	include/linux/nfsd/
4557F:	include/uapi/linux/nfsd/
4558F:	fs/lockd/
4559F:	fs/nfs_common/
4560F:	net/sunrpc/
4561F:	include/linux/lockd/
4562F:	include/linux/sunrpc/
4563F:	include/uapi/linux/sunrpc/
4564
4565KERNEL VIRTUAL MACHINE (KVM)
4566M:	Marcelo Tosatti <mtosatti@redhat.com>
4567M:	Gleb Natapov <gleb@redhat.com>
4568L:	kvm@vger.kernel.org
4569W:	http://kvm.qumranet.com
4570S:	Supported
4571F:	Documentation/*/kvm.txt
4572F:	arch/*/kvm/
4573F:	arch/*/include/asm/kvm*
4574F:	include/linux/kvm*
4575F:	include/uapi/linux/kvm*
4576F:	virt/kvm/
4577
4578KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
4579M:	Joerg Roedel <joro@8bytes.org>
4580L:	kvm@vger.kernel.org
4581W:	http://kvm.qumranet.com
4582S:	Maintained
4583F:	arch/x86/include/asm/svm.h
4584F:	arch/x86/kvm/svm.c
4585
4586KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
4587M:	Alexander Graf <agraf@suse.de>
4588L:	kvm-ppc@vger.kernel.org
4589W:	http://kvm.qumranet.com
4590T:	git git://github.com/agraf/linux-2.6.git
4591S:	Supported
4592F:	arch/powerpc/include/asm/kvm*
4593F:	arch/powerpc/kvm/
4594
4595KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
4596M:	Xiantao Zhang <xiantao.zhang@intel.com>
4597L:	kvm-ia64@vger.kernel.org
4598W:	http://kvm.qumranet.com
4599S:	Supported
4600F:	Documentation/ia64/kvm.txt
4601F:	arch/ia64/include/asm/kvm*
4602F:	arch/ia64/kvm/
4603
4604KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
4605M:	Christian Borntraeger <borntraeger@de.ibm.com>
4606M:	Cornelia Huck <cornelia.huck@de.ibm.com>
4607M:	linux390@de.ibm.com
4608L:	linux-s390@vger.kernel.org
4609W:	http://www.ibm.com/developerworks/linux/linux390/
4610S:	Supported
4611F:	Documentation/s390/kvm.txt
4612F:	arch/s390/include/asm/kvm*
4613F:	arch/s390/kvm/
4614F:	drivers/s390/kvm/
4615
4616KERNEL VIRTUAL MACHINE (KVM) FOR ARM
4617M:	Christoffer Dall <cdall@cs.columbia.edu>
4618L:	kvmarm@lists.cs.columbia.edu
4619W:	http://systems.cs.columbia.edu/projects/kvm-arm
4620S:	Maintained
4621F:	arch/arm/include/uapi/asm/kvm*
4622F:	arch/arm/include/asm/kvm*
4623F:	arch/arm/kvm/
4624
4625KEXEC
4626M:	Eric Biederman <ebiederm@xmission.com>
4627W:	http://kernel.org/pub/linux/utils/kernel/kexec/
4628L:	kexec@lists.infradead.org
4629S:	Maintained
4630F:	include/linux/kexec.h
4631F:	include/uapi/linux/kexec.h
4632F:	kernel/kexec.c
4633
4634KEYS/KEYRINGS:
4635M:	David Howells <dhowells@redhat.com>
4636L:	keyrings@linux-nfs.org
4637S:	Maintained
4638F:	Documentation/security/keys.txt
4639F:	include/linux/key.h
4640F:	include/linux/key-type.h
4641F:	include/keys/
4642F:	security/keys/
4643
4644KEYS-TRUSTED
4645M:	David Safford <safford@watson.ibm.com>
4646M:	Mimi Zohar <zohar@us.ibm.com>
4647L:	linux-security-module@vger.kernel.org
4648L:	keyrings@linux-nfs.org
4649S:	Supported
4650F:	Documentation/security/keys-trusted-encrypted.txt
4651F:	include/keys/trusted-type.h
4652F:	security/keys/trusted.c
4653F:	security/keys/trusted.h
4654
4655KEYS-ENCRYPTED
4656M:	Mimi Zohar <zohar@us.ibm.com>
4657M:	David Safford <safford@watson.ibm.com>
4658L:	linux-security-module@vger.kernel.org
4659L:	keyrings@linux-nfs.org
4660S:	Supported
4661F:	Documentation/security/keys-trusted-encrypted.txt
4662F:	include/keys/encrypted-type.h
4663F:	security/keys/encrypted-keys/
4664
4665KGDB / KDB /debug_core
4666M:	Jason Wessel <jason.wessel@windriver.com>
4667W:	http://kgdb.wiki.kernel.org/
4668L:	kgdb-bugreport@lists.sourceforge.net
4669S:	Maintained
4670F:	Documentation/DocBook/kgdb.tmpl
4671F:	drivers/misc/kgdbts.c
4672F:	drivers/tty/serial/kgdboc.c
4673F:	include/linux/kdb.h
4674F:	include/linux/kgdb.h
4675F:	kernel/debug/
4676
4677KMEMCHECK
4678M:	Vegard Nossum <vegardno@ifi.uio.no>
4679M:	Pekka Enberg <penberg@kernel.org>
4680S:	Maintained
4681F:	Documentation/kmemcheck.txt
4682F:	arch/x86/include/asm/kmemcheck.h
4683F:	arch/x86/mm/kmemcheck/
4684F:	include/linux/kmemcheck.h
4685F:	mm/kmemcheck.c
4686
4687KMEMLEAK
4688M:	Catalin Marinas <catalin.marinas@arm.com>
4689S:	Maintained
4690F:	Documentation/kmemleak.txt
4691F:	include/linux/kmemleak.h
4692F:	mm/kmemleak.c
4693F:	mm/kmemleak-test.c
4694
4695KPROBES
4696M:	Ananth N Mavinakayanahalli <ananth@in.ibm.com>
4697M:	Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
4698M:	"David S. Miller" <davem@davemloft.net>
4699M:	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
4700S:	Maintained
4701F:	Documentation/kprobes.txt
4702F:	include/linux/kprobes.h
4703F:	kernel/kprobes.c
4704
4705KS0108 LCD CONTROLLER DRIVER
4706M:	Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
4707W:	http://miguelojeda.es/auxdisplay.htm
4708W:	http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
4709S:	Maintained
4710F:	Documentation/auxdisplay/ks0108
4711F:	drivers/auxdisplay/ks0108.c
4712F:	include/linux/ks0108.h
4713
4714LAPB module
4715L:	linux-x25@vger.kernel.org
4716S:	Orphan
4717F:	Documentation/networking/lapb-module.txt
4718F:	include/*/lapb.h
4719F:	net/lapb/
4720
4721LASI 53c700 driver for PARISC
4722M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
4723L:	linux-scsi@vger.kernel.org
4724S:	Maintained
4725F:	Documentation/scsi/53c700.txt
4726F:	drivers/scsi/53c700*
4727
4728LED SUBSYSTEM
4729M:	Bryan Wu <cooloney@gmail.com>
4730M:	Richard Purdie <rpurdie@rpsys.net>
4731L:	linux-leds@vger.kernel.org
4732T:	git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
4733S:	Maintained
4734F:	drivers/leds/
4735F:	include/linux/leds.h
4736
4737LEGACY EEPROM DRIVER
4738M:	Jean Delvare <khali@linux-fr.org>
4739S:	Maintained
4740F:	Documentation/misc-devices/eeprom
4741F:	drivers/misc/eeprom/eeprom.c
4742
4743LEGO USB Tower driver
4744M:	Juergen Stuber <starblue@users.sourceforge.net>
4745L:	legousb-devel@lists.sourceforge.net
4746W:	http://legousb.sourceforge.net/
4747S:	Maintained
4748F:	drivers/usb/misc/legousbtower.c
4749
4750LG2160 MEDIA DRIVER
4751M:	Michael Krufky <mkrufky@linuxtv.org>
4752L:	linux-media@vger.kernel.org
4753W:	http://linuxtv.org/
4754W:	http://github.com/mkrufky
4755Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4756T:	git git://linuxtv.org/mkrufky/tuners.git
4757S:	Maintained
4758F:	drivers/media/dvb-frontends/lg2160.*
4759
4760LGDT3305 MEDIA DRIVER
4761M:	Michael Krufky <mkrufky@linuxtv.org>
4762L:	linux-media@vger.kernel.org
4763W:	http://linuxtv.org/
4764W:	http://github.com/mkrufky
4765Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4766T:	git git://linuxtv.org/mkrufky/tuners.git
4767S:	Maintained
4768F:	drivers/media/dvb-frontends/lgdt3305.*
4769
4770LGUEST
4771M:	Rusty Russell <rusty@rustcorp.com.au>
4772L:	lguest@lists.ozlabs.org
4773W:	http://lguest.ozlabs.org/
4774S:	Odd Fixes
4775F:	arch/x86/include/asm/lguest*.h
4776F:	arch/x86/lguest/
4777F:	drivers/lguest/
4778F:	include/linux/lguest*.h
4779F:	tools/lguest/
4780
4781LINUX FOR IBM pSERIES (RS/6000)
4782M:	Paul Mackerras <paulus@au.ibm.com>
4783W:	http://www.ibm.com/linux/ltc/projects/ppc
4784S:	Supported
4785F:	arch/powerpc/boot/rs6000.h
4786
4787LINUX FOR POWERPC (32-BIT AND 64-BIT)
4788M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
4789M:	Paul Mackerras <paulus@samba.org>
4790W:	http://www.penguinppc.org/
4791L:	linuxppc-dev@lists.ozlabs.org
4792Q:	http://patchwork.ozlabs.org/project/linuxppc-dev/list/
4793T:	git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
4794S:	Supported
4795F:	Documentation/powerpc/
4796F:	arch/powerpc/
4797
4798LINUX FOR POWER MACINTOSH
4799M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
4800W:	http://www.penguinppc.org/
4801L:	linuxppc-dev@lists.ozlabs.org
4802S:	Maintained
4803F:	arch/powerpc/platforms/powermac/
4804F:	drivers/macintosh/
4805
4806LINUX FOR POWERPC EMBEDDED MPC5XXX
4807M:	Anatolij Gustschin <agust@denx.de>
4808L:	linuxppc-dev@lists.ozlabs.org
4809T:	git git://git.denx.de/linux-2.6-agust.git
4810S:	Maintained
4811F:	arch/powerpc/platforms/512x/
4812F:	arch/powerpc/platforms/52xx/
4813
4814LINUX FOR POWERPC EMBEDDED PPC4XX
4815M:	Josh Boyer <jwboyer@gmail.com>
4816M:	Matt Porter <mporter@kernel.crashing.org>
4817W:	http://www.penguinppc.org/
4818L:	linuxppc-dev@lists.ozlabs.org
4819T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
4820S:	Maintained
4821F:	arch/powerpc/platforms/40x/
4822F:	arch/powerpc/platforms/44x/
4823
4824LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
4825M:	Grant Likely <grant.likely@secretlab.ca>
4826W:	http://wiki.secretlab.ca/index.php/Linux_on_Xilinx_Virtex
4827L:	linuxppc-dev@lists.ozlabs.org
4828T:	git git://git.secretlab.ca/git/linux-2.6.git
4829S:	Maintained
4830F:	arch/powerpc/*/*virtex*
4831F:	arch/powerpc/*/*/*virtex*
4832
4833LINUX FOR POWERPC EMBEDDED PPC8XX
4834M:	Vitaly Bordug <vitb@kernel.crashing.org>
4835M:	Marcelo Tosatti <marcelo@kvack.org>
4836W:	http://www.penguinppc.org/
4837L:	linuxppc-dev@lists.ozlabs.org
4838S:	Maintained
4839F:	arch/powerpc/platforms/8xx/
4840
4841LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
4842M:	Kumar Gala <galak@kernel.crashing.org>
4843W:	http://www.penguinppc.org/
4844L:	linuxppc-dev@lists.ozlabs.org
4845S:	Maintained
4846F:	arch/powerpc/platforms/83xx/
4847F:	arch/powerpc/platforms/85xx/
4848
4849LINUX FOR POWERPC PA SEMI PWRFICIENT
4850M:	Olof Johansson <olof@lixom.net>
4851L:	linuxppc-dev@lists.ozlabs.org
4852S:	Maintained
4853F:	arch/powerpc/platforms/pasemi/
4854F:	drivers/*/*pasemi*
4855F:	drivers/*/*/*pasemi*
4856
4857LINUX SECURITY MODULE (LSM) FRAMEWORK
4858M:	Chris Wright <chrisw@sous-sol.org>
4859L:	linux-security-module@vger.kernel.org
4860S:	Supported
4861
4862LIS3LV02D ACCELEROMETER DRIVER
4863M:	Eric Piel <eric.piel@tremplin-utc.net>
4864S:	Maintained
4865F:	Documentation/misc-devices/lis3lv02d
4866F:	drivers/misc/lis3lv02d/
4867F:	drivers/platform/x86/hp_accel.c
4868
4869LLC (802.2)
4870M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4871S:	Maintained
4872F:	include/linux/llc.h
4873F:	include/uapi/linux/llc.h
4874F:	include/net/llc*
4875F:	net/llc/
4876
4877LM73 HARDWARE MONITOR DRIVER
4878M:	Guillaume Ligneul <guillaume.ligneul@gmail.com>
4879L:	lm-sensors@lm-sensors.org
4880S:	Maintained
4881F:	drivers/hwmon/lm73.c
4882
4883LM78 HARDWARE MONITOR DRIVER
4884M:	Jean Delvare <khali@linux-fr.org>
4885L:	lm-sensors@lm-sensors.org
4886S:	Maintained
4887F:	Documentation/hwmon/lm78
4888F:	drivers/hwmon/lm78.c
4889
4890LM83 HARDWARE MONITOR DRIVER
4891M:	Jean Delvare <khali@linux-fr.org>
4892L:	lm-sensors@lm-sensors.org
4893S:	Maintained
4894F:	Documentation/hwmon/lm83
4895F:	drivers/hwmon/lm83.c
4896
4897LM90 HARDWARE MONITOR DRIVER
4898M:	Jean Delvare <khali@linux-fr.org>
4899L:	lm-sensors@lm-sensors.org
4900S:	Maintained
4901F:	Documentation/hwmon/lm90
4902F:	drivers/hwmon/lm90.c
4903
4904LME2510 MEDIA DRIVER
4905M:	Malcolm Priestley <tvboxspy@gmail.com>
4906L:	linux-media@vger.kernel.org
4907W:	http://linuxtv.org/
4908Q:	http://patchwork.linuxtv.org/project/linux-media/list/
4909S:	Maintained
4910F:	drivers/media/usb/dvb-usb-v2/lmedm04*
4911
4912LOCKDEP AND LOCKSTAT
4913M:	Peter Zijlstra <peterz@infradead.org>
4914M:	Ingo Molnar <mingo@redhat.com>
4915T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
4916S:	Maintained
4917F:	Documentation/lockdep*.txt
4918F:	Documentation/lockstat.txt
4919F:	include/linux/lockdep.h
4920F:	kernel/lockdep*
4921
4922LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
4923M:	"Richard Russon (FlatCap)" <ldm@flatcap.org>
4924L:	linux-ntfs-dev@lists.sourceforge.net
4925W:	http://www.linux-ntfs.org/content/view/19/37/
4926S:	Maintained
4927F:	Documentation/ldm.txt
4928F:	block/partitions/ldm.*
4929
4930LogFS
4931M:	Joern Engel <joern@logfs.org>
4932M:	Prasad Joshi <prasadjoshi.linux@gmail.com>
4933L:	logfs@logfs.org
4934W:	logfs.org
4935S:	Maintained
4936F:	fs/logfs/
4937
4938LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
4939M:	Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
4940M:	Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
4941M:	support@lsi.com
4942L:	DL-MPTFusionLinux@lsi.com
4943L:	linux-scsi@vger.kernel.org
4944W:	http://www.lsilogic.com/support
4945S:	Supported
4946F:	drivers/message/fusion/
4947F:	drivers/scsi/mpt2sas/
4948F:	drivers/scsi/mpt3sas/
4949
4950LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
4951M:	Matthew Wilcox <matthew@wil.cx>
4952L:	linux-scsi@vger.kernel.org
4953S:	Maintained
4954F:	drivers/scsi/sym53c8xx_2/
4955
4956LTC4261 HARDWARE MONITOR DRIVER
4957M:	Guenter Roeck <linux@roeck-us.net>
4958L:	lm-sensors@lm-sensors.org
4959S:	Maintained
4960F:	Documentation/hwmon/ltc4261
4961F:	drivers/hwmon/ltc4261.c
4962
4963LTP (Linux Test Project)
4964M:	Shubham Goyal <shubham@linux.vnet.ibm.com>
4965M:	Mike Frysinger <vapier@gentoo.org>
4966M:	Cyril Hrubis <chrubis@suse.cz>
4967M:	Caspar Zhang <caspar@casparzhang.com>
4968M:	Wanlong Gao <gaowanlong@cn.fujitsu.com>
4969L:	ltp-list@lists.sourceforge.net (subscribers-only)
4970W:	http://ltp.sourceforge.net/
4971T:	git git://github.com/linux-test-project/ltp.git
4972T:	git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
4973S:	Maintained
4974
4975M32R ARCHITECTURE
4976M:	Hirokazu Takata <takata@linux-m32r.org>
4977L:	linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
4978L:	linux-m32r-ja@ml.linux-m32r.org (in Japanese)
4979W:	http://www.linux-m32r.org/
4980S:	Maintained
4981F:	arch/m32r/
4982
4983M68K ARCHITECTURE
4984M:	Geert Uytterhoeven <geert@linux-m68k.org>
4985L:	linux-m68k@lists.linux-m68k.org
4986W:	http://www.linux-m68k.org/
4987T:	git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
4988S:	Maintained
4989F:	arch/m68k/
4990F:	drivers/zorro/
4991
4992M68K ON APPLE MACINTOSH
4993M:	Joshua Thompson <funaho@jurai.org>
4994W:	http://www.mac.linux-m68k.org/
4995L:	linux-m68k@lists.linux-m68k.org
4996S:	Maintained
4997F:	arch/m68k/mac/
4998
4999M68K ON HP9000/300
5000M:	Philip Blundell <philb@gnu.org>
5001W:	http://www.tazenda.demon.co.uk/phil/linux-hp
5002S:	Maintained
5003F:	arch/m68k/hp300/
5004
5005M88RS2000 MEDIA DRIVER
5006M:	Malcolm Priestley <tvboxspy@gmail.com>
5007L:	linux-media@vger.kernel.org
5008W:	http://linuxtv.org/
5009Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5010S:	Maintained
5011F:	drivers/media/dvb-frontends/m88rs2000*
5012
5013MA901 MASTERKIT USB FM RADIO DRIVER
5014M:      Alexey Klimov <klimov.linux@gmail.com>
5015L:      linux-media@vger.kernel.org
5016T:      git git://linuxtv.org/media_tree.git
5017S:      Maintained
5018F:      drivers/media/radio/radio-ma901.c
5019
5020MAC80211
5021M:	Johannes Berg <johannes@sipsolutions.net>
5022L:	linux-wireless@vger.kernel.org
5023W:	http://wireless.kernel.org/
5024T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5025T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5026S:	Maintained
5027F:	Documentation/networking/mac80211-injection.txt
5028F:	include/net/mac80211.h
5029F:	net/mac80211/
5030
5031MAC80211 PID RATE CONTROL
5032M:	Stefano Brivio <stefano.brivio@polimi.it>
5033M:	Mattias Nissler <mattias.nissler@gmx.de>
5034L:	linux-wireless@vger.kernel.org
5035W:	http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
5036T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5037T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5038S:	Maintained
5039F:	net/mac80211/rc80211_pid*
5040
5041MACVLAN DRIVER
5042M:	Patrick McHardy <kaber@trash.net>
5043L:	netdev@vger.kernel.org
5044S:	Maintained
5045F:	drivers/net/macvlan.c
5046F:	include/linux/if_macvlan.h
5047
5048MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
5049M:	Michael Kerrisk <mtk.manpages@gmail.com>
5050W:	http://www.kernel.org/doc/man-pages
5051L:	linux-man@vger.kernel.org
5052S:	Maintained
5053
5054MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5055M:	Mirko Lindner <mlindner@marvell.com>
5056M:	Stephen Hemminger <stephen@networkplumber.org>
5057L:	netdev@vger.kernel.org
5058S:	Maintained
5059F:	drivers/net/ethernet/marvell/sk*
5060
5061MARVELL LIBERTAS WIRELESS DRIVER
5062M:	Dan Williams <dcbw@redhat.com>
5063L:	libertas-dev@lists.infradead.org
5064S:	Maintained
5065F:	drivers/net/wireless/libertas/
5066
5067MARVELL MV643XX ETHERNET DRIVER
5068M:	Lennert Buytenhek <buytenh@wantstofly.org>
5069L:	netdev@vger.kernel.org
5070S:	Maintained
5071F:	drivers/net/ethernet/marvell/mv643xx_eth.*
5072F:	include/linux/mv643xx.h
5073
5074MARVELL MVNETA ETHERNET DRIVER
5075M:	Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5076L:	netdev@vger.kernel.org
5077S:	Maintained
5078F:	drivers/net/ethernet/marvell/mvneta.*
5079
5080MARVELL MWIFIEX WIRELESS DRIVER
5081M:	Bing Zhao <bzhao@marvell.com>
5082L:	linux-wireless@vger.kernel.org
5083S:	Maintained
5084F:	drivers/net/wireless/mwifiex/
5085
5086MARVELL MWL8K WIRELESS DRIVER
5087M:	Lennert Buytenhek <buytenh@wantstofly.org>
5088L:	linux-wireless@vger.kernel.org
5089S:	Odd Fixes
5090F:	drivers/net/wireless/mwl8k.c
5091
5092MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
5093M:	Nicolas Pitre <nico@fluxnic.net>
5094S:	Odd Fixes
5095F:	drivers/mmc/host/mvsdio.*
5096
5097MATROX FRAMEBUFFER DRIVER
5098L:	linux-fbdev@vger.kernel.org
5099S:	Orphan
5100F:	drivers/video/matrox/matroxfb_*
5101F:	include/uapi/linux/matroxfb.h
5102
5103MAX16065 HARDWARE MONITOR DRIVER
5104M:	Guenter Roeck <linux@roeck-us.net>
5105L:	lm-sensors@lm-sensors.org
5106S:	Maintained
5107F:	Documentation/hwmon/max16065
5108F:	drivers/hwmon/max16065.c
5109
5110MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5111M:	"Hans J. Koch" <hjk@hansjkoch.de>
5112L:	lm-sensors@lm-sensors.org
5113S:	Maintained
5114F:	Documentation/hwmon/max6650
5115F:	drivers/hwmon/max6650.c
5116
5117MAX6697 HARDWARE MONITOR DRIVER
5118M:	Guenter Roeck <linux@roeck-us.net>
5119L:	lm-sensors@lm-sensors.org
5120S:	Maintained
5121F:	Documentation/hwmon/max6697
5122F:	Documentation/devicetree/bindings/i2c/max6697.txt
5123F:	drivers/hwmon/max6697.c
5124F:	include/linux/platform_data/max6697.h
5125
5126MAXIRADIO FM RADIO RECEIVER DRIVER
5127M:	Hans Verkuil <hverkuil@xs4all.nl>
5128L:	linux-media@vger.kernel.org
5129T:	git git://linuxtv.org/media_tree.git
5130W:	http://linuxtv.org
5131S:	Maintained
5132F:	drivers/media/radio/radio-maxiradio*
5133
5134MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
5135M:	Mauro Carvalho Chehab <mchehab@redhat.com>
5136P:	LinuxTV.org Project
5137L:	linux-media@vger.kernel.org
5138W:	http://linuxtv.org
5139Q:	http://patchwork.kernel.org/project/linux-media/list/
5140T:	git git://linuxtv.org/media_tree.git
5141S:	Maintained
5142F:	Documentation/dvb/
5143F:	Documentation/video4linux/
5144F:	Documentation/DocBook/media/
5145F:	drivers/media/
5146F:	drivers/staging/media/
5147F:	include/media/
5148F:	include/uapi/linux/dvb/
5149F:	include/uapi/linux/videodev2.h
5150F:	include/uapi/linux/media.h
5151F:	include/uapi/linux/v4l2-*
5152F:	include/uapi/linux/meye.h
5153F:	include/uapi/linux/ivtv*
5154F:	include/uapi/linux/uvcvideo.h
5155
5156MEDIAVISION PRO MOVIE STUDIO DRIVER
5157M:	Hans Verkuil <hverkuil@xs4all.nl>
5158L:	linux-media@vger.kernel.org
5159T:	git git://linuxtv.org/media_tree.git
5160W:	http://linuxtv.org
5161S:	Odd Fixes
5162F:	drivers/media/parport/pms*
5163
5164MEGARAID SCSI DRIVERS
5165M:	Neela Syam Kolli <megaraidlinux@lsi.com>
5166L:	linux-scsi@vger.kernel.org
5167W:	http://megaraid.lsilogic.com
5168S:	Maintained
5169F:	Documentation/scsi/megaraid.txt
5170F:	drivers/scsi/megaraid.*
5171F:	drivers/scsi/megaraid/
5172
5173MELLANOX ETHERNET DRIVER (mlx4_en)
5174M:	Amir Vadai <amirv@mellanox.com>
5175L: 	netdev@vger.kernel.org
5176S:	Supported
5177W:	http://www.mellanox.com
5178Q:	http://patchwork.ozlabs.org/project/netdev/list/
5179F:	drivers/net/ethernet/mellanox/mlx4/en_*
5180
5181MEMORY MANAGEMENT
5182L:	linux-mm@kvack.org
5183W:	http://www.linux-mm.org
5184S:	Maintained
5185F:	include/linux/mm.h
5186F:	include/linux/gfp.h
5187F:	include/linux/mmzone.h
5188F:	include/linux/memory_hotplug.h
5189F:	include/linux/vmalloc.h
5190F:	mm/
5191
5192MEMORY RESOURCE CONTROLLER
5193M:	Johannes Weiner <hannes@cmpxchg.org>
5194M:	Michal Hocko <mhocko@suse.cz>
5195M:	Balbir Singh <bsingharora@gmail.com>
5196M:	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
5197L:	cgroups@vger.kernel.org
5198L:	linux-mm@kvack.org
5199S:	Maintained
5200F:	mm/memcontrol.c
5201F:	mm/page_cgroup.c
5202
5203MEMORY TECHNOLOGY DEVICES (MTD)
5204M:	David Woodhouse <dwmw2@infradead.org>
5205L:	linux-mtd@lists.infradead.org
5206W:	http://www.linux-mtd.infradead.org/
5207Q:	http://patchwork.ozlabs.org/project/linux-mtd/list/
5208T:	git git://git.infradead.org/mtd-2.6.git
5209S:	Maintained
5210F:	drivers/mtd/
5211F:	include/linux/mtd/
5212F:	include/uapi/mtd/
5213
5214METAG ARCHITECTURE
5215M:	James Hogan <james.hogan@imgtec.com>
5216S:	Supported
5217F:	arch/metag/
5218F:	Documentation/metag/
5219F:	Documentation/devicetree/bindings/metag/
5220F:	drivers/clocksource/metag_generic.c
5221F:	drivers/irqchip/irq-metag.c
5222F:	drivers/irqchip/irq-metag-ext.c
5223F:	drivers/tty/metag_da.c
5224F:	fs/imgdafs/
5225
5226MICROBLAZE ARCHITECTURE
5227M:	Michal Simek <monstr@monstr.eu>
5228L:	microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
5229W:	http://www.monstr.eu/fdt/
5230T:	git git://git.monstr.eu/linux-2.6-microblaze.git
5231S:	Supported
5232F:	arch/microblaze/
5233
5234MICROTEK X6 SCANNER
5235M:	Oliver Neukum <oliver@neukum.org>
5236S:	Maintained
5237F:	drivers/usb/image/microtek.*
5238
5239MIPS
5240M:	Ralf Baechle <ralf@linux-mips.org>
5241L:	linux-mips@linux-mips.org
5242W:	http://www.linux-mips.org/
5243T:	git git://git.linux-mips.org/pub/scm/ralf/linux.git
5244Q:	http://patchwork.linux-mips.org/project/linux-mips/list/
5245S:	Supported
5246F:	Documentation/mips/
5247F:	arch/mips/
5248
5249MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5250M:	Hans Verkuil <hverkuil@xs4all.nl>
5251L:	linux-media@vger.kernel.org
5252T:	git git://linuxtv.org/media_tree.git
5253W:	http://linuxtv.org
5254S:	Odd Fixes
5255F:	drivers/media/radio/radio-miropcm20*
5256
5257MODULE SUPPORT
5258M:	Rusty Russell <rusty@rustcorp.com.au>
5259S:	Maintained
5260F:	include/linux/module.h
5261F:	kernel/module.c
5262
5263MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
5264W:	http://popies.net/meye/
5265S:	Orphan
5266F:	Documentation/video4linux/meye.txt
5267F:	drivers/media/pci/meye/
5268F:	include/uapi/linux/meye.h
5269
5270MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
5271M:	Jiri Slaby <jirislaby@gmail.com>
5272S:	Maintained
5273F:	Documentation/serial/moxa-smartio
5274F:	drivers/tty/mxser.*
5275
5276MR800 AVERMEDIA USB FM RADIO DRIVER
5277M:	Alexey Klimov <klimov.linux@gmail.com>
5278L:	linux-media@vger.kernel.org
5279T:	git git://linuxtv.org/media_tree.git
5280S:	Maintained
5281F:	drivers/media/radio/radio-mr800.c
5282
5283MSI LAPTOP SUPPORT
5284M:	"Lee, Chun-Yi" <jlee@suse.com>
5285L:	platform-driver-x86@vger.kernel.org
5286S:	Maintained
5287F:	drivers/platform/x86/msi-laptop.c
5288
5289MSI WMI SUPPORT
5290M:	Anisse Astier <anisse@astier.eu>
5291L:	platform-driver-x86@vger.kernel.org
5292S:	Supported
5293F:	drivers/platform/x86/msi-wmi.c
5294
5295MT9M032 SENSOR DRIVER
5296M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5297L:	linux-media@vger.kernel.org
5298T:	git git://linuxtv.org/media_tree.git
5299S:	Maintained
5300F:	drivers/media/i2c/mt9m032.c
5301F:	include/media/mt9m032.h
5302
5303MT9P031 SENSOR DRIVER
5304M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5305L:	linux-media@vger.kernel.org
5306T:	git git://linuxtv.org/media_tree.git
5307S:	Maintained
5308F:	drivers/media/i2c/mt9p031.c
5309F:	include/media/mt9p031.h
5310
5311MT9T001 SENSOR DRIVER
5312M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5313L:	linux-media@vger.kernel.org
5314T:	git git://linuxtv.org/media_tree.git
5315S:	Maintained
5316F:	drivers/media/i2c/mt9t001.c
5317F:	include/media/mt9t001.h
5318
5319MT9V032 SENSOR DRIVER
5320M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5321L:	linux-media@vger.kernel.org
5322T:	git git://linuxtv.org/media_tree.git
5323S:	Maintained
5324F:	drivers/media/i2c/mt9v032.c
5325F:	include/media/mt9v032.h
5326
5327MULTIFUNCTION DEVICES (MFD)
5328M:	Samuel Ortiz <sameo@linux.intel.com>
5329T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-2.6.git
5330S:	Supported
5331F:	drivers/mfd/
5332
5333MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
5334M:	Chris Ball <cjb@laptop.org>
5335L:	linux-mmc@vger.kernel.org
5336T:	git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5337S:	Maintained
5338F:	drivers/mmc/
5339F:	include/linux/mmc/
5340F:	include/uapi/linux/mmc/
5341
5342MULTIMEDIA CARD (MMC) ETC. OVER SPI
5343S:	Orphan
5344F:	drivers/mmc/host/mmc_spi.c
5345F:	include/linux/spi/mmc_spi.h
5346
5347MULTISOUND SOUND DRIVER
5348M:	Andrew Veliath <andrewtv@usa.net>
5349S:	Maintained
5350F:	Documentation/sound/oss/MultiSound
5351F:	sound/oss/msnd*
5352
5353MULTITECH MULTIPORT CARD (ISICOM)
5354S:	Orphan
5355F:	drivers/tty/isicom.c
5356F:	include/linux/isicom.h
5357
5358MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
5359M:	Felipe Balbi <balbi@ti.com>
5360L:	linux-usb@vger.kernel.org
5361T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5362S:	Maintained
5363F:	drivers/usb/musb/
5364
5365MXL5007T MEDIA DRIVER
5366M:	Michael Krufky <mkrufky@linuxtv.org>
5367L:	linux-media@vger.kernel.org
5368W:	http://linuxtv.org/
5369W:	http://github.com/mkrufky
5370Q:	http://patchwork.linuxtv.org/project/linux-media/list/
5371T:	git git://linuxtv.org/mkrufky/tuners.git
5372S:	Maintained
5373F:	drivers/media/tuners/mxl5007t.*
5374
5375MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
5376M:	Andrew Gallatin <gallatin@myri.com>
5377L:	netdev@vger.kernel.org
5378W:	http://www.myri.com/scs/download-Myri10GE.html
5379S:	Supported
5380F:	drivers/net/ethernet/myricom/myri10ge/
5381
5382NATSEMI ETHERNET DRIVER (DP8381x)
5383S:	Orphan
5384F:	drivers/net/ethernet/natsemi/natsemi.c
5385
5386NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5387M:	Daniel Mack <zonque@gmail.com>
5388S:	Maintained
5389L:	alsa-devel@alsa-project.org
5390W:	http://www.native-instruments.com
5391F:	sound/usb/caiaq/
5392
5393NCP FILESYSTEM
5394M:	Petr Vandrovec <petr@vandrovec.name>
5395S:	Odd Fixes
5396F:	fs/ncpfs/
5397
5398NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
5399M:	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5400L:	linux-scsi@vger.kernel.org
5401S:	Maintained
5402F:	drivers/scsi/NCR_D700.*
5403
5404NETEFFECT IWARP RNIC DRIVER (IW_NES)
5405M:	Faisal Latif <faisal.latif@intel.com>
5406L:	linux-rdma@vger.kernel.org
5407W:	http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
5408S:	Supported
5409F:	drivers/infiniband/hw/nes/
5410
5411NETEM NETWORK EMULATOR
5412M:	Stephen Hemminger <stephen@networkplumber.org>
5413L:	netem@lists.linux-foundation.org
5414S:	Maintained
5415F:	net/sched/sch_netem.c
5416
5417NETERION 10GbE DRIVERS (s2io/vxge)
5418M:	Jon Mason <jdmason@kudzu.us>
5419L:	netdev@vger.kernel.org
5420S:	Supported
5421F:	Documentation/networking/s2io.txt
5422F:	Documentation/networking/vxge.txt
5423F:	drivers/net/ethernet/neterion/
5424
5425NETFILTER/IPTABLES/IPCHAINS
5426P:	Harald Welte
5427P:	Jozsef Kadlecsik
5428M:	Pablo Neira Ayuso <pablo@netfilter.org>
5429M:	Patrick McHardy <kaber@trash.net>
5430L:	netfilter-devel@vger.kernel.org
5431L:	netfilter@vger.kernel.org
5432L:	coreteam@netfilter.org
5433W:	http://www.netfilter.org/
5434W:	http://www.iptables.org/
5435T:	git git://1984.lsi.us.es/nf
5436T:	git git://1984.lsi.us.es/nf-next
5437S:	Supported
5438F:	include/linux/netfilter*
5439F:	include/linux/netfilter/
5440F:	include/net/netfilter/
5441F:	include/uapi/linux/netfilter*
5442F:	include/uapi/linux/netfilter/
5443F:	net/*/netfilter.c
5444F:	net/*/netfilter/
5445F:	net/netfilter/
5446
5447NETLABEL
5448M:	Paul Moore <paul@paul-moore.com>
5449W:	http://netlabel.sf.net
5450L:	netdev@vger.kernel.org
5451S:	Maintained
5452F:	Documentation/netlabel/
5453F:	include/net/netlabel.h
5454F:	net/netlabel/
5455
5456NETROM NETWORK LAYER
5457M:	Ralf Baechle <ralf@linux-mips.org>
5458L:	linux-hams@vger.kernel.org
5459W:	http://www.linux-ax25.org/
5460S:	Maintained
5461F:	include/net/netrom.h
5462F:	include/uapi/linux/netrom.h
5463F:	net/netrom/
5464
5465NETWORK BLOCK DEVICE (NBD)
5466M:	Paul Clements <Paul.Clements@steeleye.com>
5467S:	Maintained
5468L:	nbd-general@lists.sourceforge.net
5469F:	Documentation/blockdev/nbd.txt
5470F:	drivers/block/nbd.c
5471F:	include/linux/nbd.h
5472F:	include/uapi/linux/nbd.h
5473
5474NETWORK DROP MONITOR
5475M:	Neil Horman <nhorman@tuxdriver.com>
5476L:	netdev@vger.kernel.org
5477S:	Maintained
5478W:	https://fedorahosted.org/dropwatch/
5479F:	net/core/drop_monitor.c
5480
5481NETWORKING [GENERAL]
5482M:	"David S. Miller" <davem@davemloft.net>
5483L:	netdev@vger.kernel.org
5484W:	http://www.linuxfoundation.org/en/Net
5485Q:	http://patchwork.ozlabs.org/project/netdev/list/
5486T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5487T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
5488S:	Maintained
5489F:	net/
5490F:	include/net/
5491F:	include/linux/in.h
5492F:	include/linux/net.h
5493F:	include/linux/netdevice.h
5494F:	include/uapi/linux/in.h
5495F:	include/uapi/linux/net.h
5496F:	include/uapi/linux/netdevice.h
5497
5498NETWORKING [IPv4/IPv6]
5499M:	"David S. Miller" <davem@davemloft.net>
5500M:	Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
5501M:	James Morris <jmorris@namei.org>
5502M:	Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5503M:	Patrick McHardy <kaber@trash.net>
5504L:	netdev@vger.kernel.org
5505T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5506S:	Maintained
5507F:	net/ipv4/
5508F:	net/ipv6/
5509F:	include/net/ip*
5510F:	arch/x86/net/*
5511
5512NETWORKING [IPSEC]
5513M:	Steffen Klassert <steffen.klassert@secunet.com>
5514M:	Herbert Xu <herbert@gondor.apana.org.au>
5515M:	"David S. Miller" <davem@davemloft.net>
5516L:	netdev@vger.kernel.org
5517T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5518S:	Maintained
5519F:	net/xfrm/
5520F:	net/key/
5521F:	net/ipv4/xfrm*
5522F:	net/ipv6/xfrm*
5523F:	include/uapi/linux/xfrm.h
5524F:	include/net/xfrm.h
5525
5526NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
5527M:	Paul Moore <paul@paul-moore.com>
5528L:	netdev@vger.kernel.org
5529S:	Maintained
5530
5531NETWORKING [WIRELESS]
5532M:	"John W. Linville" <linville@tuxdriver.com>
5533L:	linux-wireless@vger.kernel.org
5534Q:	http://patchwork.kernel.org/project/linux-wireless/list/
5535T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
5536S:	Maintained
5537F:	net/mac80211/
5538F:	net/rfkill/
5539F:	net/wireless/
5540F:	include/net/ieee80211*
5541F:	include/linux/wireless.h
5542F:	include/uapi/linux/wireless.h
5543F:	include/net/iw_handler.h
5544F:	drivers/net/wireless/
5545
5546NETWORKING DRIVERS
5547L:	netdev@vger.kernel.org
5548W:	http://www.linuxfoundation.org/en/Net
5549Q:	http://patchwork.ozlabs.org/project/netdev/list/
5550T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5551T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
5552S:	Odd Fixes
5553F:	drivers/net/
5554F:	include/linux/if_*
5555F:	include/linux/netdevice.h
5556F:	include/linux/arcdevice.h
5557F:	include/linux/etherdevice.h
5558F:	include/linux/fcdevice.h
5559F:	include/linux/fddidevice.h
5560F:	include/linux/hippidevice.h
5561F:	include/linux/inetdevice.h
5562F:	include/uapi/linux/if_*
5563F:	include/uapi/linux/netdevice.h
5564
5565NETXEN (1/10) GbE SUPPORT
5566M:	Sony Chacko <sony.chacko@qlogic.com>
5567M:	Rajesh Borundia <rajesh.borundia@qlogic.com>
5568L:	netdev@vger.kernel.org
5569W:	http://www.qlogic.com
5570S:	Supported
5571F:	drivers/net/ethernet/qlogic/netxen/
5572
5573NFC SUBSYSTEM
5574M:	Lauro Ramos Venancio <lauro.venancio@openbossa.org>
5575M:	Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
5576M:	Samuel Ortiz <sameo@linux.intel.com>
5577L:	linux-wireless@vger.kernel.org
5578L:	linux-nfc@lists.01.org (moderated for non-subscribers)
5579S:	Maintained
5580F:	net/nfc/
5581F:	include/net/nfc/
5582F:	include/uapi/linux/nfc.h
5583F:	drivers/nfc/
5584F:	include/linux/platform_data/pn544.h
5585
5586NFS, SUNRPC, AND LOCKD CLIENTS
5587M:	Trond Myklebust <Trond.Myklebust@netapp.com>
5588L:	linux-nfs@vger.kernel.org
5589W:	http://client.linux-nfs.org
5590T:	git git://git.linux-nfs.org/pub/linux/nfs-2.6.git
5591S:	Maintained
5592F:	fs/lockd/
5593F:	fs/nfs/
5594F:	fs/nfs_common/
5595F:	net/sunrpc/
5596F:	include/linux/lockd/
5597F:	include/linux/nfs*
5598F:	include/linux/sunrpc/
5599F:	include/uapi/linux/nfs*
5600F:	include/uapi/linux/sunrpc/
5601
5602NILFS2 FILESYSTEM
5603M:	KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
5604L:	linux-nilfs@vger.kernel.org
5605W:	http://www.nilfs.org/en/
5606T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
5607S:	Supported
5608F:	Documentation/filesystems/nilfs2.txt
5609F:	fs/nilfs2/
5610F:	include/linux/nilfs2_fs.h
5611
5612NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
5613M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
5614W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5615S:	Maintained
5616F:	Documentation/scsi/NinjaSCSI.txt
5617F:	drivers/scsi/pcmcia/nsp_*
5618
5619NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
5620M:	GOTO Masanori <gotom@debian.or.jp>
5621M:	YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
5622W:	http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
5623S:	Maintained
5624F:	Documentation/scsi/NinjaSCSI.txt
5625F:	drivers/scsi/nsp32*
5626
5627NTB DRIVER
5628M:	Jon Mason <jon.mason@intel.com>
5629S:	Supported
5630F:	drivers/ntb/
5631F:	drivers/net/ntb_netdev.c
5632F:	include/linux/ntb.h
5633
5634NTFS FILESYSTEM
5635M:	Anton Altaparmakov <anton@tuxera.com>
5636L:	linux-ntfs-dev@lists.sourceforge.net
5637W:	http://www.tuxera.com/
5638T:	git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
5639S:	Supported
5640F:	Documentation/filesystems/ntfs.txt
5641F:	fs/ntfs/
5642
5643NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
5644M:	Antonino Daplas <adaplas@gmail.com>
5645L:	linux-fbdev@vger.kernel.org
5646S:	Maintained
5647F:	drivers/video/riva/
5648F:	drivers/video/nvidia/
5649
5650NVM EXPRESS DRIVER
5651M:	Matthew Wilcox <willy@linux.intel.com>
5652L:	linux-nvme@lists.infradead.org
5653T:	git git://git.infradead.org/users/willy/linux-nvme.git
5654S:	Supported
5655F:	drivers/block/nvme.c
5656F:	include/linux/nvme.h
5657
5658OMAP SUPPORT
5659M:	Tony Lindgren <tony@atomide.com>
5660L:	linux-omap@vger.kernel.org
5661W:	http://www.muru.com/linux/omap/
5662W:	http://linux.omap.com/
5663Q:	http://patchwork.kernel.org/project/linux-omap/list/
5664T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
5665S:	Maintained
5666F:	arch/arm/*omap*/
5667F:	drivers/i2c/busses/i2c-omap.c
5668F:	include/linux/i2c-omap.h
5669
5670OMAP DEVICE TREE SUPPORT
5671M:	Benoît Cousson <b-cousson@ti.com>
5672M:	Tony Lindgren <tony@atomide.com>
5673L:	linux-omap@vger.kernel.org
5674L:	devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5675S:	Maintained
5676F:	arch/arm/boot/dts/*omap*
5677F:	arch/arm/boot/dts/*am3*
5678
5679OMAP CLOCK FRAMEWORK SUPPORT
5680M:	Paul Walmsley <paul@pwsan.com>
5681L:	linux-omap@vger.kernel.org
5682S:	Maintained
5683F:	arch/arm/*omap*/*clock*
5684
5685OMAP POWER MANAGEMENT SUPPORT
5686M:	Kevin Hilman <khilman@deeprootsystems.com>
5687L:	linux-omap@vger.kernel.org
5688S:	Maintained
5689F:	arch/arm/*omap*/*pm*
5690F:	drivers/cpufreq/omap-cpufreq.c
5691
5692OMAP POWERDOMAIN/CLOCKDOMAIN SOC ADAPTATION LAYER SUPPORT
5693M:	Rajendra Nayak <rnayak@ti.com>
5694M:	Paul Walmsley <paul@pwsan.com>
5695L:	linux-omap@vger.kernel.org
5696S:	Maintained
5697F:	arch/arm/mach-omap2/powerdomain2xxx_3xxx.c
5698F:	arch/arm/mach-omap2/powerdomain44xx.c
5699F:	arch/arm/mach-omap2/clockdomain2xxx_3xxx.c
5700F:	arch/arm/mach-omap2/clockdomain44xx.c
5701
5702OMAP AUDIO SUPPORT
5703M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
5704M:	Jarkko Nikula <jarkko.nikula@bitmer.com>
5705L:	alsa-devel@alsa-project.org (subscribers-only)
5706L:	linux-omap@vger.kernel.org
5707S:	Maintained
5708F:	sound/soc/omap/
5709
5710OMAP FRAMEBUFFER SUPPORT
5711M:	Tomi Valkeinen <tomi.valkeinen@ti.com>
5712L:	linux-fbdev@vger.kernel.org
5713L:	linux-omap@vger.kernel.org
5714S:	Maintained
5715F:	drivers/video/omap/
5716
5717OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
5718M:	Tomi Valkeinen <tomi.valkeinen@ti.com>
5719L:	linux-omap@vger.kernel.org
5720L:	linux-fbdev@vger.kernel.org
5721S:	Maintained
5722F:	drivers/video/omap2/
5723F:	Documentation/arm/OMAP/DSS
5724
5725OMAP HARDWARE SPINLOCK SUPPORT
5726M:	Ohad Ben-Cohen <ohad@wizery.com>
5727L:	linux-omap@vger.kernel.org
5728S:	Maintained
5729F:	drivers/hwspinlock/omap_hwspinlock.c
5730F:	arch/arm/mach-omap2/hwspinlock.c
5731
5732OMAP MMC SUPPORT
5733M:	Jarkko Lavinen <jarkko.lavinen@nokia.com>
5734L:	linux-omap@vger.kernel.org
5735S:	Maintained
5736F:	drivers/mmc/host/omap.c
5737
5738OMAP HS MMC SUPPORT
5739M:	Balaji T K <balajitk@ti.com>
5740L:	linux-mmc@vger.kernel.org
5741L:	linux-omap@vger.kernel.org
5742S:	Maintained
5743F:	drivers/mmc/host/omap_hsmmc.c
5744
5745OMAP RANDOM NUMBER GENERATOR SUPPORT
5746M:	Deepak Saxena <dsaxena@plexity.net>
5747S:	Maintained
5748F:	drivers/char/hw_random/omap-rng.c
5749
5750OMAP HWMOD SUPPORT
5751M:	Benoît Cousson <b-cousson@ti.com>
5752M:	Paul Walmsley <paul@pwsan.com>
5753L:	linux-omap@vger.kernel.org
5754S:	Maintained
5755F:	arch/arm/mach-omap2/omap_hwmod.*
5756
5757OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
5758M:	Benoît Cousson <b-cousson@ti.com>
5759L:	linux-omap@vger.kernel.org
5760S:	Maintained
5761F:	arch/arm/mach-omap2/omap_hwmod_44xx_data.c
5762
5763OMAP IMAGE SIGNAL PROCESSOR (ISP)
5764M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5765L:	linux-media@vger.kernel.org
5766S:	Maintained
5767F:	drivers/media/platform/omap3isp/
5768
5769OMAP USB SUPPORT
5770M:	Felipe Balbi <balbi@ti.com>
5771L:	linux-usb@vger.kernel.org
5772L:	linux-omap@vger.kernel.org
5773T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5774S:	Maintained
5775F:	drivers/usb/*/*omap*
5776F:	arch/arm/*omap*/usb*
5777
5778OMAP GPIO DRIVER
5779M:	Santosh Shilimkar <santosh.shilimkar@ti.com>
5780M:	Kevin Hilman <khilman@deeprootsystems.com>
5781L:	linux-omap@vger.kernel.org
5782S:	Maintained
5783F:	drivers/gpio/gpio-omap.c
5784
5785OMFS FILESYSTEM
5786M:	Bob Copeland <me@bobcopeland.com>
5787L:	linux-karma-devel@lists.sourceforge.net
5788S:	Maintained
5789F:	Documentation/filesystems/omfs.txt
5790F:	fs/omfs/
5791
5792OMNIKEY CARDMAN 4000 DRIVER
5793M:	Harald Welte <laforge@gnumonks.org>
5794S:	Maintained
5795F:	drivers/char/pcmcia/cm4000_cs.c
5796F:	include/linux/cm4000_cs.h
5797F:	include/uapi/linux/cm4000_cs.h
5798
5799OMNIKEY CARDMAN 4040 DRIVER
5800M:	Harald Welte <laforge@gnumonks.org>
5801S:	Maintained
5802F:	drivers/char/pcmcia/cm4040_cs.*
5803
5804OMNIVISION OV7670 SENSOR DRIVER
5805M:	Jonathan Corbet <corbet@lwn.net>
5806L:	linux-media@vger.kernel.org
5807T:	git git://linuxtv.org/media_tree.git
5808S:	Maintained
5809F:	drivers/media/i2c/ov7670.c
5810
5811ONENAND FLASH DRIVER
5812M:	Kyungmin Park <kyungmin.park@samsung.com>
5813L:	linux-mtd@lists.infradead.org
5814S:	Maintained
5815F:	drivers/mtd/onenand/
5816F:	include/linux/mtd/onenand*.h
5817
5818ONSTREAM SCSI TAPE DRIVER
5819M:	Willem Riede <osst@riede.org>
5820L:	osst-users@lists.sourceforge.net
5821L:	linux-scsi@vger.kernel.org
5822S:	Maintained
5823F:	drivers/scsi/osst*
5824F:	drivers/scsi/st*
5825
5826OPENCORES I2C BUS DRIVER
5827M:	Peter Korsgaard <jacmet@sunsite.dk>
5828L:	linux-i2c@vger.kernel.org
5829S:	Maintained
5830F:	Documentation/i2c/busses/i2c-ocores
5831F:	drivers/i2c/busses/i2c-ocores.c
5832
5833OPEN FIRMWARE AND FLATTENED DEVICE TREE
5834M:	Grant Likely <grant.likely@secretlab.ca>
5835M:	Rob Herring <rob.herring@calxeda.com>
5836L:	devicetree-discuss@lists.ozlabs.org (moderated for non-subscribers)
5837W:	http://fdt.secretlab.ca
5838T:	git git://git.secretlab.ca/git/linux-2.6.git
5839S:	Maintained
5840F:	Documentation/devicetree
5841F:	drivers/of
5842F:	include/linux/of*.h
5843F:	scripts/dtc
5844K:	of_get_property
5845K:	of_match_table
5846
5847OPENRISC ARCHITECTURE
5848M:	Jonas Bonn <jonas@southpole.se>
5849W:	http://openrisc.net
5850L:	linux@lists.openrisc.net (moderated for non-subscribers)
5851S:	Maintained
5852T:	git git://openrisc.net/~jonas/linux
5853F:	arch/openrisc
5854
5855OPENVSWITCH
5856M:	Jesse Gross <jesse@nicira.com>
5857L:	dev@openvswitch.org
5858W:	http://openvswitch.org
5859T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
5860S:	Maintained
5861F:	net/openvswitch/
5862
5863OPL4 DRIVER
5864M:	Clemens Ladisch <clemens@ladisch.de>
5865L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
5866T:	git git://git.alsa-project.org/alsa-kernel.git
5867S:	Maintained
5868F:	sound/drivers/opl4/
5869
5870OPROFILE
5871M:	Robert Richter <rric@kernel.org>
5872L:	oprofile-list@lists.sf.net
5873S:	Maintained
5874F:	arch/*/include/asm/oprofile*.h
5875F:	arch/*/oprofile/
5876F:	drivers/oprofile/
5877F:	include/linux/oprofile.h
5878
5879ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
5880M:	Mark Fasheh <mfasheh@suse.com>
5881M:	Joel Becker <jlbec@evilplan.org>
5882L:	ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
5883W:	http://oss.oracle.com/projects/ocfs2/
5884T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
5885S:	Supported
5886F:	Documentation/filesystems/ocfs2.txt
5887F:	Documentation/filesystems/dlmfs.txt
5888F:	fs/ocfs2/
5889
5890ORINOCO DRIVER
5891L:	linux-wireless@vger.kernel.org
5892W:	http://wireless.kernel.org/en/users/Drivers/orinoco
5893W:	http://www.nongnu.org/orinoco/
5894S:	Orphan
5895F:	drivers/net/wireless/orinoco/
5896
5897OSD LIBRARY and FILESYSTEM
5898M:	Boaz Harrosh <bharrosh@panasas.com>
5899M:	Benny Halevy <bhalevy@tonian.com>
5900L:	osd-dev@open-osd.org
5901W:	http://open-osd.org
5902T:	git git://git.open-osd.org/open-osd.git
5903S:	Maintained
5904F:	drivers/scsi/osd/
5905F:	include/scsi/osd_*
5906F:	fs/exofs/
5907
5908P54 WIRELESS DRIVER
5909M:	Christian Lamparter <chunkeey@googlemail.com>
5910L:	linux-wireless@vger.kernel.org
5911W:	http://wireless.kernel.org/en/users/Drivers/p54
5912S:	Maintained
5913F:	drivers/net/wireless/p54/
5914
5915PA SEMI ETHERNET DRIVER
5916M:	Olof Johansson <olof@lixom.net>
5917L:	netdev@vger.kernel.org
5918S:	Maintained
5919F:	drivers/net/ethernet/pasemi/*
5920
5921PA SEMI SMBUS DRIVER
5922M:	Olof Johansson <olof@lixom.net>
5923L:	linux-i2c@vger.kernel.org
5924S:	Maintained
5925F:	drivers/i2c/busses/i2c-pasemi.c
5926
5927PADATA PARALLEL EXECUTION MECHANISM
5928M:	Steffen Klassert <steffen.klassert@secunet.com>
5929L:	linux-crypto@vger.kernel.org
5930S:	Maintained
5931F:	kernel/padata.c
5932F:	include/linux/padata.h
5933F:	Documentation/padata.txt
5934
5935PANASONIC LAPTOP ACPI EXTRAS DRIVER
5936M:	Harald Welte <laforge@gnumonks.org>
5937L:	platform-driver-x86@vger.kernel.org
5938S:	Maintained
5939F:	drivers/platform/x86/panasonic-laptop.c
5940
5941PANASONIC MN10300/AM33/AM34 PORT
5942M:	David Howells <dhowells@redhat.com>
5943M:	Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
5944L:	linux-am33-list@redhat.com (moderated for non-subscribers)
5945W:	ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
5946S:	Maintained
5947F:	Documentation/mn10300/
5948F:	arch/mn10300/
5949
5950PARALLEL PORT SUPPORT
5951L:	linux-parport@lists.infradead.org (subscribers-only)
5952S:	Orphan
5953F:	drivers/parport/
5954F:	include/linux/parport*.h
5955F:	drivers/char/ppdev.c
5956F:	include/uapi/linux/ppdev.h
5957
5958PARAVIRT_OPS INTERFACE
5959M:	Jeremy Fitzhardinge <jeremy@goop.org>
5960M:	Chris Wright <chrisw@sous-sol.org>
5961M:	Alok Kataria <akataria@vmware.com>
5962M:	Rusty Russell <rusty@rustcorp.com.au>
5963L:	virtualization@lists.linux-foundation.org
5964S:	Supported
5965F:	Documentation/ia64/paravirt_ops.txt
5966F:	arch/*/kernel/paravirt*
5967F:	arch/*/include/asm/paravirt.h
5968
5969PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
5970M:	Tim Waugh <tim@cyberelk.net>
5971L:	linux-parport@lists.infradead.org (subscribers-only)
5972W:	http://www.torque.net/linux-pp.html
5973S:	Maintained
5974F:	Documentation/blockdev/paride.txt
5975F:	drivers/block/paride/
5976
5977PARISC ARCHITECTURE
5978M:	"James E.J. Bottomley" <jejb@parisc-linux.org>
5979M:	Helge Deller <deller@gmx.de>
5980L:	linux-parisc@vger.kernel.org
5981W:	http://www.parisc-linux.org/
5982Q:	http://patchwork.kernel.org/project/linux-parisc/list/
5983T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
5984S:	Maintained
5985F:	arch/parisc/
5986F:	drivers/parisc/
5987
5988PC87360 HARDWARE MONITORING DRIVER
5989M:	Jim Cromie <jim.cromie@gmail.com>
5990L:	lm-sensors@lm-sensors.org
5991S:	Maintained
5992F:	Documentation/hwmon/pc87360
5993F:	drivers/hwmon/pc87360.c
5994
5995PC8736x GPIO DRIVER
5996M:	Jim Cromie <jim.cromie@gmail.com>
5997S:	Maintained
5998F:	drivers/char/pc8736x_gpio.c
5999
6000PC87427 HARDWARE MONITORING DRIVER
6001M:	Jean Delvare <khali@linux-fr.org>
6002L:	lm-sensors@lm-sensors.org
6003S:	Maintained
6004F:	Documentation/hwmon/pc87427
6005F:	drivers/hwmon/pc87427.c
6006
6007PCA9532 LED DRIVER
6008M:	Riku Voipio <riku.voipio@iki.fi>
6009S:	Maintained
6010F:	drivers/leds/leds-pca9532.c
6011F:	include/linux/leds-pca9532.h
6012
6013PCA9541 I2C BUS MASTER SELECTOR DRIVER
6014M:	Guenter Roeck <linux@roeck-us.net>
6015L:	linux-i2c@vger.kernel.org
6016S:	Maintained
6017F:	drivers/i2c/muxes/i2c-mux-pca9541.c
6018
6019PCDP - PRIMARY CONSOLE AND DEBUG PORT
6020M:	Khalid Aziz <khalid@gonehiking.org>
6021S:	Maintained
6022F:	drivers/firmware/pcdp.*
6023
6024PCI ERROR RECOVERY
6025M:	Linas Vepstas <linasvepstas@gmail.com>
6026L:	linux-pci@vger.kernel.org
6027S:	Supported
6028F:	Documentation/PCI/pci-error-recovery.txt
6029F:	Documentation/powerpc/eeh-pci-error-recovery.txt
6030
6031PCI SUBSYSTEM
6032M:	Bjorn Helgaas <bhelgaas@google.com>
6033L:	linux-pci@vger.kernel.org
6034Q:	http://patchwork.ozlabs.org/project/linux-pci/list/
6035T:	git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
6036S:	Supported
6037F:	Documentation/PCI/
6038F:	drivers/pci/
6039F:	include/linux/pci*
6040
6041PCMCIA SUBSYSTEM
6042P:	Linux PCMCIA Team
6043L:	linux-pcmcia@lists.infradead.org
6044W:	http://lists.infradead.org/mailman/listinfo/linux-pcmcia
6045T:	git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
6046S:	Maintained
6047F:	Documentation/pcmcia/
6048F:	drivers/pcmcia/
6049F:	include/pcmcia/
6050
6051PCNET32 NETWORK DRIVER
6052M:	Don Fry <pcnet32@frontier.com>
6053L:	netdev@vger.kernel.org
6054S:	Maintained
6055F:	drivers/net/ethernet/amd/pcnet32.c
6056
6057PCRYPT PARALLEL CRYPTO ENGINE
6058M:	Steffen Klassert <steffen.klassert@secunet.com>
6059L:	linux-crypto@vger.kernel.org
6060S:	Maintained
6061F:	crypto/pcrypt.c
6062F:	include/crypto/pcrypt.h
6063
6064PER-CPU MEMORY ALLOCATOR
6065M:	Tejun Heo <tj@kernel.org>
6066M:	Christoph Lameter <cl@linux-foundation.org>
6067T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6068S:	Maintained
6069F:	include/linux/percpu*.h
6070F:	mm/percpu*.c
6071F:	arch/*/include/asm/percpu.h
6072
6073PER-TASK DELAY ACCOUNTING
6074M:	Balbir Singh <bsingharora@gmail.com>
6075S:	Maintained
6076F:	include/linux/delayacct.h
6077F:	kernel/delayacct.c
6078
6079PERFORMANCE EVENTS SUBSYSTEM
6080M:	Peter Zijlstra <a.p.zijlstra@chello.nl>
6081M:	Paul Mackerras <paulus@samba.org>
6082M:	Ingo Molnar <mingo@redhat.com>
6083M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6084T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
6085S:	Supported
6086F:	kernel/events/*
6087F:	include/linux/perf_event.h
6088F:	include/uapi/linux/perf_event.h
6089F:	arch/*/kernel/perf_event*.c
6090F:	arch/*/kernel/*/perf_event*.c
6091F:	arch/*/kernel/*/*/perf_event*.c
6092F:	arch/*/include/asm/perf_event.h
6093F:	arch/*/kernel/perf_callchain.c
6094F:	tools/perf/
6095
6096PERSONALITY HANDLING
6097M:	Christoph Hellwig <hch@infradead.org>
6098L:	linux-abi-devel@lists.sourceforge.net
6099S:	Maintained
6100F:	include/linux/personality.h
6101F:	include/uapi/linux/personality.h
6102
6103PHONET PROTOCOL
6104M:	Remi Denis-Courmont <courmisch@gmail.com>
6105S:	Supported
6106F:	Documentation/networking/phonet.txt
6107F:	include/linux/phonet.h
6108F:	include/net/phonet/
6109F:	include/uapi/linux/phonet.h
6110F:	net/phonet/
6111
6112PHRAM MTD DRIVER
6113M:	Joern Engel <joern@lazybastard.org>
6114L:	linux-mtd@lists.infradead.org
6115S:	Maintained
6116F:	drivers/mtd/devices/phram.c
6117
6118PICOLCD HID DRIVER
6119M:	Bruno Prémont <bonbons@linux-vserver.org>
6120L:	linux-input@vger.kernel.org
6121S:	Maintained
6122F:	drivers/hid/hid-picolcd*
6123
6124PICOXCELL SUPPORT
6125M:	Jamie Iles <jamie@jamieiles.com>
6126L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6127T:	git git://github.com/jamieiles/linux-2.6-ji.git
6128S:	Supported
6129F:	arch/arm/mach-picoxcell
6130F:	drivers/*/picoxcell*
6131F:	drivers/*/*/picoxcell*
6132
6133PIN CONTROL SUBSYSTEM
6134M:	Linus Walleij <linus.walleij@linaro.org>
6135S:	Maintained
6136F:	drivers/pinctrl/
6137F:	include/linux/pinctrl/
6138
6139PIN CONTROLLER - ATMEL AT91
6140M:	Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6141L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6142S:	Maintained
6143F:	drivers/pinctrl/pinctrl-at91.c
6144
6145PIN CONTROLLER - ST SPEAR
6146M:	Viresh Kumar <viresh.linux@gmail.com>
6147L:	spear-devel@list.st.com
6148L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6149W:	http://www.st.com/spear
6150S:	Maintained
6151F:	drivers/pinctrl/spear/
6152
6153PKTCDVD DRIVER
6154M:	Jiri Kosina <jkosina@suse.cz>
6155S:	Maintained
6156F:	drivers/block/pktcdvd.c
6157F:	include/linux/pktcdvd.h
6158F:	include/uapi/linux/pktcdvd.h
6159
6160PKUNITY SOC DRIVERS
6161M:	Guan Xuetao <gxt@mprc.pku.edu.cn>
6162W:	http://mprc.pku.edu.cn/~guanxuetao/linux
6163S:	Maintained
6164T:	git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6165F:	drivers/input/serio/i8042-unicore32io.h
6166F:	drivers/i2c/busses/i2c-puv3.c
6167F:	drivers/video/fb-puv3.c
6168F:	drivers/rtc/rtc-puv3.c
6169
6170PMBUS HARDWARE MONITORING DRIVERS
6171M:	Guenter Roeck <linux@roeck-us.net>
6172L:	lm-sensors@lm-sensors.org
6173W:	http://www.lm-sensors.org/
6174W:	http://www.roeck-us.net/linux/drivers/
6175T:	git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6176S:	Maintained
6177F:	Documentation/hwmon/pmbus
6178F:	drivers/hwmon/pmbus/
6179F:	include/linux/i2c/pmbus.h
6180
6181PMC SIERRA MaxRAID DRIVER
6182M:	Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
6183L:	linux-scsi@vger.kernel.org
6184W:	http://www.pmc-sierra.com/
6185S:	Supported
6186F:	drivers/scsi/pmcraid.*
6187
6188PMC SIERRA PM8001 DRIVER
6189M:	jack_wang@usish.com
6190M:	lindar_liu@usish.com
6191L:	linux-scsi@vger.kernel.org
6192S:	Supported
6193F:	drivers/scsi/pm8001/
6194
6195POSIX CLOCKS and TIMERS
6196M:	Thomas Gleixner <tglx@linutronix.de>
6197T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6198S:	Supported
6199F:	fs/timerfd.c
6200F:	include/linux/timer*
6201F:	kernel/*timer*
6202
6203POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
6204M:	Anton Vorontsov <cbou@mail.ru>
6205M:	David Woodhouse <dwmw2@infradead.org>
6206T:	git git://git.infradead.org/battery-2.6.git
6207S:	Maintained
6208F:	include/linux/power_supply.h
6209F:	drivers/power/
6210
6211PNP SUPPORT
6212M:	Adam Belay <abelay@mit.edu>
6213M:	Bjorn Helgaas <bhelgaas@google.com>
6214S:	Maintained
6215F:	drivers/pnp/
6216
6217PNXxxxx I2C DRIVER
6218M:	Vitaly Wool <vitalywool@gmail.com>
6219L:	linux-i2c@vger.kernel.org
6220S:	Maintained
6221F:	drivers/i2c/busses/i2c-pnx.c
6222
6223PPP PROTOCOL DRIVERS AND COMPRESSORS
6224M:	Paul Mackerras <paulus@samba.org>
6225L:	linux-ppp@vger.kernel.org
6226S:	Maintained
6227F:	drivers/net/ppp/ppp_*
6228
6229PPP OVER ATM (RFC 2364)
6230M:	Mitchell Blank Jr <mitch@sfgoth.com>
6231S:	Maintained
6232F:	net/atm/pppoatm.c
6233F:	include/uapi/linux/atmppp.h
6234
6235PPP OVER ETHERNET
6236M:	Michal Ostrowski <mostrows@earthlink.net>
6237S:	Maintained
6238F:	drivers/net/ppp/pppoe.c
6239F:	drivers/net/ppp/pppox.c
6240
6241PPP OVER L2TP
6242M:	James Chapman <jchapman@katalix.com>
6243S:	Maintained
6244F:	net/l2tp/l2tp_ppp.c
6245F:	include/linux/if_pppol2tp.h
6246F:	include/uapi/linux/if_pppol2tp.h
6247
6248PPS SUPPORT
6249M:	Rodolfo Giometti <giometti@enneenne.com>
6250W:	http://wiki.enneenne.com/index.php/LinuxPPS_support
6251L:	linuxpps@ml.enneenne.com (subscribers-only)
6252S:	Maintained
6253F:	Documentation/pps/
6254F:	drivers/pps/
6255F:	include/linux/pps*.h
6256
6257PPTP DRIVER
6258M:	Dmitry Kozlov <xeb@mail.ru>
6259L:	netdev@vger.kernel.org
6260S:	Maintained
6261F:	drivers/net/ppp/pptp.c
6262W:	http://sourceforge.net/projects/accel-pptp
6263
6264PREEMPTIBLE KERNEL
6265M:	Robert Love <rml@tech9.net>
6266L:	kpreempt-tech@lists.sourceforge.net
6267W:	ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6268S:	Supported
6269F:	Documentation/preempt-locking.txt
6270F:	include/linux/preempt.h
6271
6272PRISM54 WIRELESS DRIVER
6273M:	"Luis R. Rodriguez" <mcgrof@gmail.com>
6274L:	linux-wireless@vger.kernel.org
6275W:	http://wireless.kernel.org/en/users/Drivers/p54
6276S:	Obsolete
6277F:	drivers/net/wireless/prism54/
6278
6279PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
6280M:	Mikael Pettersson <mikpe@it.uu.se>
6281L:	linux-ide@vger.kernel.org
6282S:	Maintained
6283F:	drivers/ata/sata_promise.*
6284
6285PS3 NETWORK SUPPORT
6286M:	Geoff Levand <geoff@infradead.org>
6287L:	netdev@vger.kernel.org
6288L:	cbe-oss-dev@lists.ozlabs.org
6289S:	Maintained
6290F:	drivers/net/ethernet/toshiba/ps3_gelic_net.*
6291
6292PS3 PLATFORM SUPPORT
6293M:	Geoff Levand <geoff@infradead.org>
6294L:	linuxppc-dev@lists.ozlabs.org
6295L:	cbe-oss-dev@lists.ozlabs.org
6296S:	Maintained
6297F:	arch/powerpc/boot/ps3*
6298F:	arch/powerpc/include/asm/lv1call.h
6299F:	arch/powerpc/include/asm/ps3*.h
6300F:	arch/powerpc/platforms/ps3/
6301F:	drivers/*/ps3*
6302F:	drivers/ps3/
6303F:	drivers/rtc/rtc-ps3.c
6304F:	drivers/usb/host/*ps3.c
6305F:	sound/ppc/snd_ps3*
6306
6307PS3VRAM DRIVER
6308M:	Jim Paris <jim@jtan.com>
6309L:	cbe-oss-dev@lists.ozlabs.org
6310S:	Maintained
6311F:	drivers/block/ps3vram.c
6312
6313PSTORE FILESYSTEM
6314M:	Anton Vorontsov <cbouatmailru@gmail.com>
6315M:	Colin Cross <ccross@android.com>
6316M:	Kees Cook <keescook@chromium.org>
6317M:	Tony Luck <tony.luck@intel.com>
6318S:	Maintained
6319T:	git git://git.infradead.org/users/cbou/linux-pstore.git
6320F:	fs/pstore/
6321F:	include/linux/pstore*
6322F:	drivers/firmware/efivars.c
6323F:	drivers/acpi/apei/erst.c
6324
6325PTP HARDWARE CLOCK SUPPORT
6326M:	Richard Cochran <richardcochran@gmail.com>
6327L:	netdev@vger.kernel.org
6328S:	Maintained
6329W:	http://linuxptp.sourceforge.net/
6330F:	Documentation/ABI/testing/sysfs-ptp
6331F:	Documentation/ptp/*
6332F:	drivers/net/ethernet/freescale/gianfar_ptp.c
6333F:	drivers/net/phy/dp83640*
6334F:	drivers/ptp/*
6335F:	include/linux/ptp_cl*
6336
6337PTRACE SUPPORT
6338M:	Roland McGrath <roland@redhat.com>
6339M:	Oleg Nesterov <oleg@redhat.com>
6340S:	Maintained
6341F:	include/asm-generic/syscall.h
6342F:	include/linux/ptrace.h
6343F:	include/linux/regset.h
6344F:	include/linux/tracehook.h
6345F:	include/uapi/linux/ptrace.h
6346F:	kernel/ptrace.c
6347
6348PVRUSB2 VIDEO4LINUX DRIVER
6349M:	Mike Isely <isely@pobox.com>
6350L:	pvrusb2@isely.net	(subscribers-only)
6351L:	linux-media@vger.kernel.org
6352W:	http://www.isely.net/pvrusb2/
6353T:	git git://linuxtv.org/media_tree.git
6354S:	Maintained
6355F:	Documentation/video4linux/README.pvrusb2
6356F:	drivers/media/usb/pvrusb2/
6357
6358PWC WEBCAM DRIVER
6359M:	Hans de Goede <hdegoede@redhat.com>
6360L:	linux-media@vger.kernel.org
6361T:	git git://linuxtv.org/media_tree.git
6362S:	Maintained
6363F:	drivers/media/usb/pwc/*
6364
6365PWM SUBSYSTEM
6366M:	Thierry Reding <thierry.reding@avionic-design.de>
6367L:	linux-kernel@vger.kernel.org
6368S:	Maintained
6369W:	http://gitorious.org/linux-pwm
6370T:	git git://gitorious.org/linux-pwm/linux-pwm.git
6371F:	Documentation/pwm.txt
6372F:	Documentation/devicetree/bindings/pwm/
6373F:	include/linux/pwm.h
6374F:	drivers/pwm/
6375F:	drivers/video/backlight/pwm_bl.c
6376F:	include/linux/pwm_backlight.h
6377
6378PXA2xx/PXA3xx SUPPORT
6379M:	Eric Miao <eric.y.miao@gmail.com>
6380M:	Russell King <linux@arm.linux.org.uk>
6381M:	Haojian Zhuang <haojian.zhuang@gmail.com>
6382L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6383T:	git git://github.com/hzhuang1/linux.git
6384T:	git git://git.linaro.org/people/ycmiao/pxa-linux.git
6385S:	Maintained
6386F:	arch/arm/mach-pxa/
6387F:	drivers/pcmcia/pxa2xx*
6388F:	drivers/spi/spi-pxa2xx*
6389F:	drivers/usb/gadget/pxa2*
6390F:	include/sound/pxa2xx-lib.h
6391F:	sound/arm/pxa*
6392F:	sound/soc/pxa
6393
6394MMP SUPPORT
6395M:	Eric Miao <eric.y.miao@gmail.com>
6396M:	Haojian Zhuang <haojian.zhuang@gmail.com>
6397L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6398T:	git git://github.com/hzhuang1/linux.git
6399T:	git git://git.linaro.org/people/ycmiao/pxa-linux.git
6400S:	Maintained
6401F:	arch/arm/mach-mmp/
6402
6403PXA MMCI DRIVER
6404S:	Orphan
6405
6406PXA RTC DRIVER
6407M:	Robert Jarzmik <robert.jarzmik@free.fr>
6408L:	rtc-linux@googlegroups.com
6409S:	Maintained
6410
6411QIB DRIVER
6412M:	Mike Marciniszyn <infinipath@intel.com>
6413L:	linux-rdma@vger.kernel.org
6414S:	Supported
6415F:	drivers/infiniband/hw/qib/
6416
6417QLOGIC QLA1280 SCSI DRIVER
6418M:	Michael Reed <mdr@sgi.com>
6419L:	linux-scsi@vger.kernel.org
6420S:	Maintained
6421F:	drivers/scsi/qla1280.[ch]
6422
6423QLOGIC QLA2XXX FC-SCSI DRIVER
6424M:	Andrew Vasquez <andrew.vasquez@qlogic.com>
6425M:	linux-driver@qlogic.com
6426L:	linux-scsi@vger.kernel.org
6427S:	Supported
6428F:	Documentation/scsi/LICENSE.qla2xxx
6429F:	drivers/scsi/qla2xxx/
6430
6431QLOGIC QLA4XXX iSCSI DRIVER
6432M:	Ravi Anand <ravi.anand@qlogic.com>
6433M:	Vikas Chaudhary <vikas.chaudhary@qlogic.com>
6434M:	iscsi-driver@qlogic.com
6435L:	linux-scsi@vger.kernel.org
6436S:	Supported
6437F:	drivers/scsi/qla4xxx/
6438
6439QLOGIC QLA3XXX NETWORK DRIVER
6440M:	Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
6441M:	Ron Mercer <ron.mercer@qlogic.com>
6442M:	linux-driver@qlogic.com
6443L:	netdev@vger.kernel.org
6444S:	Supported
6445F:	Documentation/networking/LICENSE.qla3xxx
6446F:	drivers/net/ethernet/qlogic/qla3xxx.*
6447
6448QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
6449M:	Rajesh Borundia <rajesh.borundia@qlogic.com>
6450M:	Shahed Shaikh <shahed.shaikh@qlogic.com>
6451M:	Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
6452M:	Sony Chacko <sony.chacko@qlogic.com>
6453M:	linux-driver@qlogic.com
6454L:	netdev@vger.kernel.org
6455S:	Supported
6456F:	drivers/net/ethernet/qlogic/qlcnic/
6457
6458QLOGIC QLGE 10Gb ETHERNET DRIVER
6459M:	Shahed Shaikh <shahed.shaikh@qlogic.com>
6460M:	Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
6461M:	Ron Mercer <ron.mercer@qlogic.com>
6462M:	linux-driver@qlogic.com
6463L:	netdev@vger.kernel.org
6464S:	Supported
6465F:	drivers/net/ethernet/qlogic/qlge/
6466
6467QNX4 FILESYSTEM
6468M:	Anders Larsen <al@alarsen.net>
6469W:	http://www.alarsen.net/linux/qnx4fs/
6470S:	Maintained
6471F:	fs/qnx4/
6472F:	include/uapi/linux/qnx4_fs.h
6473F:	include/uapi/linux/qnxtypes.h
6474
6475QT1010 MEDIA DRIVER
6476M:	Antti Palosaari <crope@iki.fi>
6477L:	linux-media@vger.kernel.org
6478W:	http://linuxtv.org/
6479W:	http://palosaari.fi/linux/
6480Q:	http://patchwork.linuxtv.org/project/linux-media/list/
6481T:	git git://linuxtv.org/anttip/media_tree.git
6482S:	Maintained
6483F:	drivers/media/tuners/qt1010*
6484
6485QUALCOMM HEXAGON ARCHITECTURE
6486M:	Richard Kuo <rkuo@codeaurora.org>
6487L:	linux-hexagon@vger.kernel.org
6488S:	Supported
6489F:	arch/hexagon/
6490
6491QUICKCAM PARALLEL PORT WEBCAMS
6492M:	Hans Verkuil <hverkuil@xs4all.nl>
6493L:	linux-media@vger.kernel.org
6494T:	git git://linuxtv.org/media_tree.git
6495W:	http://linuxtv.org
6496S:	Odd Fixes
6497F:	drivers/media/parport/*-qcam*
6498
6499RADOS BLOCK DEVICE (RBD)
6500M:	Yehuda Sadeh <yehuda@inktank.com>
6501M:	Sage Weil <sage@inktank.com>
6502M:	Alex Elder <elder@inktank.com>
6503M:	ceph-devel@vger.kernel.org
6504W:	http://ceph.com/
6505T:	git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
6506S:	Supported
6507F:	drivers/block/rbd.c
6508F:	drivers/block/rbd_types.h
6509
6510RADEON FRAMEBUFFER DISPLAY DRIVER
6511M:	Benjamin Herrenschmidt <benh@kernel.crashing.org>
6512L:	linux-fbdev@vger.kernel.org
6513S:	Maintained
6514F:	drivers/video/aty/radeon*
6515F:	include/uapi/linux/radeonfb.h
6516
6517RADIOSHARK RADIO DRIVER
6518M:	Hans de Goede <hdegoede@redhat.com>
6519L:	linux-media@vger.kernel.org
6520T:	git git://linuxtv.org/media_tree.git
6521S:	Maintained
6522F:	drivers/media/radio/radio-shark.c
6523
6524RADIOSHARK2 RADIO DRIVER
6525M:	Hans de Goede <hdegoede@redhat.com>
6526L:	linux-media@vger.kernel.org
6527T:	git git://linuxtv.org/media_tree.git
6528S:	Maintained
6529F:	drivers/media/radio/radio-shark2.c
6530F:	drivers/media/radio/radio-tea5777.c
6531
6532RAGE128 FRAMEBUFFER DISPLAY DRIVER
6533M:	Paul Mackerras <paulus@samba.org>
6534L:	linux-fbdev@vger.kernel.org
6535S:	Maintained
6536F:	drivers/video/aty/aty128fb.c
6537
6538RALINK RT2X00 WIRELESS LAN DRIVER
6539P:	rt2x00 project
6540M:	Ivo van Doorn <IvDoorn@gmail.com>
6541M:	Gertjan van Wingerde <gwingerde@gmail.com>
6542M:	Helmut Schaa <helmut.schaa@googlemail.com>
6543L:	linux-wireless@vger.kernel.org
6544L:	users@rt2x00.serialmonkey.com (moderated for non-subscribers)
6545W:	http://rt2x00.serialmonkey.com/
6546S:	Maintained
6547T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
6548F:	drivers/net/wireless/rt2x00/
6549
6550RAMDISK RAM BLOCK DEVICE DRIVER
6551M:	Nick Piggin <npiggin@kernel.dk>
6552S:	Maintained
6553F:	Documentation/blockdev/ramdisk.txt
6554F:	drivers/block/brd.c
6555
6556RAMSAM DRIVER (IBM RamSan 70/80 PCI SSD Flash Card)
6557M:	Joshua Morris <josh.h.morris@us.ibm.com>
6558M:	Philip Kelleher <pjk1939@linux.vnet.ibm.com>
6559S:	Maintained
6560F:	drivers/block/rsxx/
6561
6562RANDOM NUMBER DRIVER
6563M:	Theodore Ts'o" <tytso@mit.edu>
6564S:	Maintained
6565F:	drivers/char/random.c
6566
6567RAPIDIO SUBSYSTEM
6568M:	Matt Porter <mporter@kernel.crashing.org>
6569M:	Alexandre Bounine <alexandre.bounine@idt.com>
6570S:	Maintained
6571F:	drivers/rapidio/
6572
6573RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
6574L:	linux-wireless@vger.kernel.org
6575S:	Orphan
6576F:	drivers/net/wireless/ray*
6577
6578RCUTORTURE MODULE
6579M:	Josh Triplett <josh@freedesktop.org>
6580M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6581S:	Supported
6582T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6583F:	Documentation/RCU/torture.txt
6584F:	kernel/rcutorture.c
6585
6586RDC R-321X SoC
6587M:	Florian Fainelli <florian@openwrt.org>
6588S:	Maintained
6589
6590RDC R6040 FAST ETHERNET DRIVER
6591M:	Florian Fainelli <florian@openwrt.org>
6592L:	netdev@vger.kernel.org
6593S:	Maintained
6594F:	drivers/net/ethernet/rdc/r6040.c
6595
6596RDS - RELIABLE DATAGRAM SOCKETS
6597M:	Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
6598L:	rds-devel@oss.oracle.com (moderated for non-subscribers)
6599S:	Supported
6600F:	net/rds/
6601
6602READ-COPY UPDATE (RCU)
6603M:	Dipankar Sarma <dipankar@in.ibm.com>
6604M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
6605W:	http://www.rdrop.com/users/paulmck/RCU/
6606S:	Supported
6607T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
6608F:	Documentation/RCU/
6609X:	Documentation/RCU/torture.txt
6610F:	include/linux/rcu*
6611F:	kernel/rcu*
6612X:	kernel/rcutorture.c
6613
6614REAL TIME CLOCK (RTC) SUBSYSTEM
6615M:	Alessandro Zummo <a.zummo@towertech.it>
6616L:	rtc-linux@googlegroups.com
6617Q:	http://patchwork.ozlabs.org/project/rtc-linux/list/
6618S:	Maintained
6619F:	Documentation/rtc.txt
6620F:	drivers/rtc/
6621F:	include/linux/rtc.h
6622F:	include/uapi/linux/rtc.h
6623
6624REISERFS FILE SYSTEM
6625L:	reiserfs-devel@vger.kernel.org
6626S:	Supported
6627F:	fs/reiserfs/
6628
6629REGISTER MAP ABSTRACTION
6630M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
6631T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
6632S:	Supported
6633F:	drivers/base/regmap/
6634F:	include/linux/regmap.h
6635
6636REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
6637M:	Ohad Ben-Cohen <ohad@wizery.com>
6638T:	git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
6639S:	Maintained
6640F:	drivers/remoteproc/
6641F:	Documentation/remoteproc.txt
6642F:	include/linux/remoteproc.h
6643
6644RFKILL
6645M:	Johannes Berg <johannes@sipsolutions.net>
6646L:	linux-wireless@vger.kernel.org
6647W:	http://wireless.kernel.org/
6648T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6649T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6650S:	Maintained
6651F:	Documentation/rfkill.txt
6652F:	net/rfkill/
6653
6654RICOH SMARTMEDIA/XD DRIVER
6655M:	Maxim Levitsky <maximlevitsky@gmail.com>
6656S:	Maintained
6657F:	drivers/mtd/nand/r852.c
6658F:	drivers/mtd/nand/r852.h
6659
6660RICOH R5C592 MEMORYSTICK DRIVER
6661M:	Maxim Levitsky <maximlevitsky@gmail.com>
6662S:	Maintained
6663F:	drivers/memstick/host/r592.*
6664
6665ROCKETPORT DRIVER
6666P:	Comtrol Corp.
6667W:	http://www.comtrol.com
6668S:	Maintained
6669F:	Documentation/serial/rocket.txt
6670F:	drivers/tty/rocket*
6671
6672ROSE NETWORK LAYER
6673M:	Ralf Baechle <ralf@linux-mips.org>
6674L:	linux-hams@vger.kernel.org
6675W:	http://www.linux-ax25.org/
6676S:	Maintained
6677F:	include/net/rose.h
6678F:	include/uapi/linux/rose.h
6679F:	net/rose/
6680
6681RTL2830 MEDIA DRIVER
6682M:	Antti Palosaari <crope@iki.fi>
6683L:	linux-media@vger.kernel.org
6684W:	http://linuxtv.org/
6685W:	http://palosaari.fi/linux/
6686Q:	http://patchwork.linuxtv.org/project/linux-media/list/
6687T:	git git://linuxtv.org/anttip/media_tree.git
6688S:	Maintained
6689F:	drivers/media/dvb-frontends/rtl2830*
6690
6691RTL8180 WIRELESS DRIVER
6692M:	"John W. Linville" <linville@tuxdriver.com>
6693L:	linux-wireless@vger.kernel.org
6694W:	http://wireless.kernel.org/
6695T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6696S:	Maintained
6697F:	drivers/net/wireless/rtl818x/rtl8180/
6698
6699RTL8187 WIRELESS DRIVER
6700M:	Herton Ronaldo Krzesinski <herton@canonical.com>
6701M:	Hin-Tak Leung <htl10@users.sourceforge.net>
6702M:	Larry Finger <Larry.Finger@lwfinger.net>
6703L:	linux-wireless@vger.kernel.org
6704W:	http://wireless.kernel.org/
6705T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6706S:	Maintained
6707F:	drivers/net/wireless/rtl818x/rtl8187/
6708
6709RTL8192CE WIRELESS DRIVER
6710M:	Larry Finger <Larry.Finger@lwfinger.net>
6711M:	Chaoming Li <chaoming_li@realsil.com.cn>
6712L:	linux-wireless@vger.kernel.org
6713W:	http://wireless.kernel.org/
6714T:	git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
6715S:	Maintained
6716F:	drivers/net/wireless/rtlwifi/
6717F:	drivers/net/wireless/rtlwifi/rtl8192ce/
6718
6719S3 SAVAGE FRAMEBUFFER DRIVER
6720M:	Antonino Daplas <adaplas@gmail.com>
6721L:	linux-fbdev@vger.kernel.org
6722S:	Maintained
6723F:	drivers/video/savage/
6724
6725S390
6726M:	Martin Schwidefsky <schwidefsky@de.ibm.com>
6727M:	Heiko Carstens <heiko.carstens@de.ibm.com>
6728M:	linux390@de.ibm.com
6729L:	linux-s390@vger.kernel.org
6730W:	http://www.ibm.com/developerworks/linux/linux390/
6731S:	Supported
6732F:	arch/s390/
6733F:	drivers/s390/
6734F:	block/partitions/ibm.c
6735F:	Documentation/s390/
6736F:	Documentation/DocBook/s390*
6737
6738S390 NETWORK DRIVERS
6739M:	Ursula Braun <ursula.braun@de.ibm.com>
6740M:	Frank Blaschka <blaschka@linux.vnet.ibm.com>
6741M:	linux390@de.ibm.com
6742L:	linux-s390@vger.kernel.org
6743W:	http://www.ibm.com/developerworks/linux/linux390/
6744S:	Supported
6745F:	drivers/s390/net/
6746
6747S390 ZCRYPT DRIVER
6748M:	Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
6749M:	linux390@de.ibm.com
6750L:	linux-s390@vger.kernel.org
6751W:	http://www.ibm.com/developerworks/linux/linux390/
6752S:	Supported
6753F:	drivers/s390/crypto/
6754
6755S390 ZFCP DRIVER
6756M:	Steffen Maier <maier@linux.vnet.ibm.com>
6757M:	linux390@de.ibm.com
6758L:	linux-s390@vger.kernel.org
6759W:	http://www.ibm.com/developerworks/linux/linux390/
6760S:	Supported
6761F:	drivers/s390/scsi/zfcp_*
6762
6763S390 IUCV NETWORK LAYER
6764M:	Ursula Braun <ursula.braun@de.ibm.com>
6765M:	linux390@de.ibm.com
6766L:	linux-s390@vger.kernel.org
6767W:	http://www.ibm.com/developerworks/linux/linux390/
6768S:	Supported
6769F:	drivers/s390/net/*iucv*
6770F:	include/net/iucv/
6771F:	net/iucv/
6772
6773S3C24XX SD/MMC Driver
6774M:	Ben Dooks <ben-linux@fluff.org>
6775L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6776S:	Supported
6777F:	drivers/mmc/host/s3cmci.*
6778
6779SAA6588 RDS RECEIVER DRIVER
6780M:	Hans Verkuil <hverkuil@xs4all.nl>
6781L:	linux-media@vger.kernel.org
6782T:	git git://linuxtv.org/media_tree.git
6783W:	http://linuxtv.org
6784S:	Odd Fixes
6785F:	drivers/media/i2c/saa6588*
6786
6787SAA7134 VIDEO4LINUX DRIVER
6788M:	Mauro Carvalho Chehab <mchehab@redhat.com>
6789L:	linux-media@vger.kernel.org
6790W:	http://linuxtv.org
6791T:	git git://linuxtv.org/media_tree.git
6792S:	Odd fixes
6793F:	Documentation/video4linux/saa7134/
6794F:	drivers/media/pci/saa7134/
6795
6796SAA7146 VIDEO4LINUX-2 DRIVER
6797M:	Hans Verkuil <hverkuil@xs4all.nl>
6798L:	linux-media@vger.kernel.org
6799T:	git git://linuxtv.org/media_tree.git
6800S:	Maintained
6801F:	drivers/media/common/saa7146/
6802F:	drivers/media/pci/saa7146/
6803F:	include/media/saa7146*
6804
6805SAMSUNG LAPTOP DRIVER
6806M:	Corentin Chary <corentin.chary@gmail.com>
6807L:	platform-driver-x86@vger.kernel.org
6808S:	Maintained
6809F:	drivers/platform/x86/samsung-laptop.c
6810
6811SAMSUNG AUDIO (ASoC) DRIVERS
6812M:	Sangbeom Kim <sbkim73@samsung.com>
6813L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
6814S:	Supported
6815F:	sound/soc/samsung
6816
6817SAMSUNG FRAMEBUFFER DRIVER
6818M:	Jingoo Han <jg1.han@samsung.com>
6819L:	linux-fbdev@vger.kernel.org
6820S:	Maintained
6821F:	drivers/video/s3c-fb.c
6822
6823SAMSUNG MULTIFUNCTION DEVICE DRIVERS
6824M:	Sangbeom Kim <sbkim73@samsung.com>
6825L:	linux-kernel@vger.kernel.org
6826S:	Supported
6827F:	drivers/mfd/sec*.c
6828F:	drivers/regulator/s2m*.c
6829F:	drivers/regulator/s5m*.c
6830F:	drivers/rtc/rtc-sec.c
6831F:	include/linux/mfd/samsung/
6832
6833SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
6834M:	Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
6835L:	linux-media@vger.kernel.org
6836L:	linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6837S:	Maintained
6838F:	drivers/media/platform/s3c-camif/
6839F:	include/media/s3c_camif.h
6840
6841SAMSUNG S5C73M3 CAMERA DRIVER
6842M:	Kyungmin Park <kyungmin.park@samsung.com>
6843M:	Andrzej Hajda <a.hajda@samsung.com>
6844L:	linux-media@vger.kernel.org
6845S:	Supported
6846F:	drivers/media/i2c/s5c73m3/*
6847
6848SERIAL DRIVERS
6849M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6850L:	linux-serial@vger.kernel.org
6851S:	Maintained
6852F:	drivers/tty/serial
6853
6854SYNOPSYS DESIGNWARE DMAC DRIVER
6855M:	Viresh Kumar <viresh.linux@gmail.com>
6856S:	Maintained
6857F:	include/linux/dw_dmac.h
6858F:	drivers/dma/dw_dmac_regs.h
6859F:	drivers/dma/dw_dmac.c
6860
6861SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
6862M:	Seungwon Jeon <tgih.jun@samsung.com>
6863M:	Jaehoon Chung <jh80.chung@samsung.com>
6864L:	linux-mmc@vger.kernel.org
6865S:	Maintained
6866F:	include/linux/mmc/dw_mmc.h
6867F:	drivers/mmc/host/dw_mmc*
6868
6869TIMEKEEPING, NTP
6870M:	John Stultz <john.stultz@linaro.org>
6871M:	Thomas Gleixner <tglx@linutronix.de>
6872T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6873S:	Supported
6874F:	include/linux/clocksource.h
6875F:	include/linux/time.h
6876F:	include/linux/timex.h
6877F:	include/uapi/linux/time.h
6878F:	include/uapi/linux/timex.h
6879F:	kernel/time/clocksource.c
6880F:	kernel/time/time*.c
6881F:	kernel/time/ntp.c
6882F:	drivers/clocksource
6883
6884TLG2300 VIDEO4LINUX-2 DRIVER
6885M:	Huang Shijie <shijie8@gmail.com>
6886M:	Kang Yong <kangyong@telegent.com>
6887M:	Zhang Xiaobing <xbzhang@telegent.com>
6888S:	Supported
6889F:	drivers/media/usb/tlg2300
6890
6891SC1200 WDT DRIVER
6892M:	Zwane Mwaikambo <zwane@arm.linux.org.uk>
6893S:	Maintained
6894F:	drivers/watchdog/sc1200wdt.c
6895
6896SCHEDULER
6897M:	Ingo Molnar <mingo@redhat.com>
6898M:	Peter Zijlstra <peterz@infradead.org>
6899T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
6900S:	Maintained
6901F:	kernel/sched/
6902F:	include/linux/sched.h
6903F:	include/uapi/linux/sched.h
6904
6905SCORE ARCHITECTURE
6906M:	Chen Liqin <liqin.chen@sunplusct.com>
6907M:	Lennox Wu <lennox.wu@gmail.com>
6908W:	http://www.sunplusct.com
6909S:	Supported
6910F:	arch/score/
6911
6912SCSI CDROM DRIVER
6913M:	Jens Axboe <axboe@kernel.dk>
6914L:	linux-scsi@vger.kernel.org
6915W:	http://www.kernel.dk
6916S:	Maintained
6917F:	drivers/scsi/sr*
6918
6919SCSI RDMA PROTOCOL (SRP) INITIATOR
6920M:	David Dillow <dillowda@ornl.gov>
6921L:	linux-rdma@vger.kernel.org
6922S:	Supported
6923W:	http://www.openfabrics.org
6924Q:	http://patchwork.kernel.org/project/linux-rdma/list/
6925T:	git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
6926F:	drivers/infiniband/ulp/srp/
6927F:	include/scsi/srp.h
6928
6929SCSI SG DRIVER
6930M:	Doug Gilbert <dgilbert@interlog.com>
6931L:	linux-scsi@vger.kernel.org
6932W:	http://www.torque.net/sg
6933S:	Maintained
6934F:	drivers/scsi/sg.c
6935F:	include/scsi/sg.h
6936
6937SCSI SUBSYSTEM
6938M:	"James E.J. Bottomley" <JBottomley@parallels.com>
6939L:	linux-scsi@vger.kernel.org
6940T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
6941T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
6942T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
6943S:	Maintained
6944F:	drivers/scsi/
6945F:	include/scsi/
6946
6947SCSI TAPE DRIVER
6948M:	Kai Mäkisara <Kai.Makisara@kolumbus.fi>
6949L:	linux-scsi@vger.kernel.org
6950S:	Maintained
6951F:	Documentation/scsi/st.txt
6952F:	drivers/scsi/st*
6953
6954SCTP PROTOCOL
6955M:	Vlad Yasevich <vyasevich@gmail.com>
6956M:	Sridhar Samudrala <sri@us.ibm.com>
6957M:	Neil Horman <nhorman@tuxdriver.com>
6958L:	linux-sctp@vger.kernel.org
6959W:	http://lksctp.sourceforge.net
6960S:	Maintained
6961F:	Documentation/networking/sctp.txt
6962F:	include/linux/sctp.h
6963F:	include/net/sctp/
6964F:	net/sctp/
6965
6966SCx200 CPU SUPPORT
6967M:	Jim Cromie <jim.cromie@gmail.com>
6968S:	Odd Fixes
6969F:	Documentation/i2c/busses/scx200_acb
6970F:	arch/x86/platform/scx200/
6971F:	drivers/watchdog/scx200_wdt.c
6972F:	drivers/i2c/busses/scx200*
6973F:	drivers/mtd/maps/scx200_docflash.c
6974F:	include/linux/scx200.h
6975
6976SCx200 GPIO DRIVER
6977M:	Jim Cromie <jim.cromie@gmail.com>
6978S:	Maintained
6979F:	drivers/char/scx200_gpio.c
6980F:	include/linux/scx200_gpio.h
6981
6982SCx200 HRT CLOCKSOURCE DRIVER
6983M:	Jim Cromie <jim.cromie@gmail.com>
6984S:	Maintained
6985F:	drivers/clocksource/scx200_hrt.c
6986
6987SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
6988M:	Sascha Sommer <saschasommer@freenet.de>
6989L:	sdricohcs-devel@lists.sourceforge.net (subscribers-only)
6990S:	Maintained
6991F:	drivers/mmc/host/sdricoh_cs.c
6992
6993SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
6994M:	Chris Ball <cjb@laptop.org>
6995L:	linux-mmc@vger.kernel.org
6996T:	git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
6997S:	Maintained
6998F:	drivers/mmc/host/sdhci.*
6999F:	drivers/mmc/host/sdhci-pltfm.[ch]
7000
7001SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
7002M:	Anton Vorontsov <avorontsov@ru.mvista.com>
7003L:	linuxppc-dev@lists.ozlabs.org
7004L:	linux-mmc@vger.kernel.org
7005S:	Maintained
7006F:	drivers/mmc/host/sdhci-pltfm.[ch]
7007
7008SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
7009M:	Ben Dooks <ben-linux@fluff.org>
7010L:	linux-mmc@vger.kernel.org
7011S:	Maintained
7012F:	drivers/mmc/host/sdhci-s3c.c
7013
7014SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
7015M:	Viresh Kumar <viresh.linux@gmail.com>
7016L:	spear-devel@list.st.com
7017L:	linux-mmc@vger.kernel.org
7018S:	Maintained
7019F:	drivers/mmc/host/sdhci-spear.c
7020
7021SECURITY SUBSYSTEM
7022M:	James Morris <james.l.morris@oracle.com>
7023L:	linux-security-module@vger.kernel.org (suggested Cc:)
7024T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
7025W:	http://kernsec.org/
7026S:	Supported
7027F:	security/
7028
7029SECURITY CONTACT
7030M:	Security Officers <security@kernel.org>
7031S:	Supported
7032
7033SELINUX SECURITY MODULE
7034M:	Stephen Smalley <sds@tycho.nsa.gov>
7035M:	James Morris <james.l.morris@oracle.com>
7036M:	Eric Paris <eparis@parisplace.org>
7037L:	selinux@tycho.nsa.gov (subscribers-only, general discussion)
7038W:	http://selinuxproject.org
7039T:	git git://git.infradead.org/users/eparis/selinux.git
7040S:	Supported
7041F:	include/linux/selinux*
7042F:	security/selinux/
7043F:	scripts/selinux/
7044
7045APPARMOR SECURITY MODULE
7046M:	John Johansen <john.johansen@canonical.com>
7047L:	apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7048W:	apparmor.wiki.kernel.org
7049T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7050S:	Supported
7051F:	security/apparmor/
7052
7053SENSABLE PHANTOM
7054M:	Jiri Slaby <jirislaby@gmail.com>
7055S:	Maintained
7056F:	drivers/misc/phantom.c
7057F:	include/uapi/linux/phantom.h
7058
7059SERIAL ATA (SATA) SUBSYSTEM
7060M:	Jeff Garzik <jgarzik@pobox.com>
7061L:	linux-ide@vger.kernel.org
7062T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/libata-dev.git
7063S:	Supported
7064F:	drivers/ata/
7065F:	include/linux/ata.h
7066F:	include/linux/libata.h
7067
7068SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
7069M:	Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
7070L:	linux-scsi@vger.kernel.org
7071W:	http://www.emulex.com
7072S:	Supported
7073F:	drivers/scsi/be2iscsi/
7074
7075SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
7076M:	Sathya Perla <sathya.perla@emulex.com>
7077M:	Subbu Seetharaman <subbu.seetharaman@emulex.com>
7078M:	Ajit Khaparde <ajit.khaparde@emulex.com>
7079L:	netdev@vger.kernel.org
7080W:	http://www.emulex.com
7081S:	Supported
7082F:	drivers/net/ethernet/emulex/benet/
7083
7084SFC NETWORK DRIVER
7085M:	Solarflare linux maintainers <linux-net-drivers@solarflare.com>
7086M:	Ben Hutchings <bhutchings@solarflare.com>
7087L:	netdev@vger.kernel.org
7088S:	Supported
7089F:	drivers/net/ethernet/sfc/
7090
7091SGI GRU DRIVER
7092M:	Dimitri Sivanich <sivanich@sgi.com>
7093M:	Robin Holt <holt@sgi.com>
7094S:	Maintained
7095F:	drivers/misc/sgi-gru/
7096
7097SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
7098M:	Pat Gefre <pfg@sgi.com>
7099L:	linux-ia64@vger.kernel.org
7100S:	Supported
7101F:	Documentation/ia64/serial.txt
7102F:	drivers/tty/serial/ioc?_serial.c
7103F:	include/linux/ioc?.h
7104
7105SGI VISUAL WORKSTATION 320 AND 540
7106M:	Andrey Panin <pazke@donpac.ru>
7107L:	linux-visws-devel@lists.sf.net
7108W:	http://linux-visws.sf.net
7109S:	Maintained for 2.6.
7110F:	Documentation/sgi-visws.txt
7111
7112SGI XP/XPC/XPNET DRIVER
7113M:	Robin Holt <holt@sgi.com>
7114S:	Maintained
7115F:	drivers/misc/sgi-xp/
7116
7117SI470X FM RADIO RECEIVER I2C DRIVER
7118M:	Hans Verkuil <hverkuil@xs4all.nl>
7119L:	linux-media@vger.kernel.org
7120T:	git git://linuxtv.org/media_tree.git
7121W:	http://linuxtv.org
7122S:	Odd Fixes
7123F:	drivers/media/radio/si470x/radio-si470x-i2c.c
7124
7125SI470X FM RADIO RECEIVER USB DRIVER
7126M:	Hans Verkuil <hverkuil@xs4all.nl>
7127L:	linux-media@vger.kernel.org
7128T:	git git://linuxtv.org/media_tree.git
7129W:	http://linuxtv.org
7130S:	Maintained
7131F:	drivers/media/radio/si470x/radio-si470x-common.c
7132F:	drivers/media/radio/si470x/radio-si470x.h
7133F:	drivers/media/radio/si470x/radio-si470x-usb.c
7134
7135SH_VEU V4L2 MEM2MEM DRIVER
7136M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7137L:	linux-media@vger.kernel.org
7138S:	Maintained
7139F:	drivers/media/platform/sh_veu.c
7140F:	include/media/sh_veu.h
7141
7142SH_VOU V4L2 OUTPUT DRIVER
7143M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7144L:	linux-media@vger.kernel.org
7145S:	Maintained
7146F:	drivers/media/platform/sh_vou.c
7147F:	include/media/sh_vou.h
7148
7149SIMPLE FIRMWARE INTERFACE (SFI)
7150M:	Len Brown <lenb@kernel.org>
7151L:	sfi-devel@simplefirmware.org
7152W:	http://simplefirmware.org/
7153T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
7154S:	Supported
7155F:	arch/x86/platform/sfi/
7156F:	drivers/sfi/
7157F:	include/linux/sfi*.h
7158
7159SIMTEC EB110ATX (Chalice CATS)
7160P:	Ben Dooks
7161P:	Vincent Sanders <vince@simtec.co.uk>
7162M:	Simtec Linux Team <linux@simtec.co.uk>
7163W:	http://www.simtec.co.uk/products/EB110ATX/
7164S:	Supported
7165
7166SIMTEC EB2410ITX (BAST)
7167P:	Ben Dooks
7168P:	Vincent Sanders <vince@simtec.co.uk>
7169M:	Simtec Linux Team <linux@simtec.co.uk>
7170W:	http://www.simtec.co.uk/products/EB2410ITX/
7171S:	Supported
7172F:	arch/arm/mach-s3c2410/mach-bast.c
7173F:	arch/arm/mach-s3c2410/bast-ide.c
7174F:	arch/arm/mach-s3c2410/bast-irq.c
7175
7176TI DAVINCI MACHINE SUPPORT
7177M:	Sekhar Nori <nsekhar@ti.com>
7178M:	Kevin Hilman <khilman@deeprootsystems.com>
7179L:	davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7180T:	git git://gitorious.org/linux-davinci/linux-davinci.git
7181Q:	http://patchwork.kernel.org/project/linux-davinci/list/
7182S:	Supported
7183F:	arch/arm/mach-davinci
7184F:	drivers/i2c/busses/i2c-davinci.c
7185
7186TI DAVINCI SERIES MEDIA DRIVER
7187M:	Manjunath Hadli <manjunath.hadli@ti.com>
7188M:	Prabhakar Lad <prabhakar.lad@ti.com>
7189L:	linux-media@vger.kernel.org
7190L:	davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7191W:	http://linuxtv.org/
7192Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7193T:	git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7194S:	Supported
7195F:	drivers/media/platform/davinci/
7196F:	include/media/davinci/
7197
7198SIS 190 ETHERNET DRIVER
7199M:	Francois Romieu <romieu@fr.zoreil.com>
7200L:	netdev@vger.kernel.org
7201S:	Maintained
7202F:	drivers/net/ethernet/sis/sis190.c
7203
7204SIS 900/7016 FAST ETHERNET DRIVER
7205M:	Daniele Venzano <venza@brownhat.org>
7206W:	http://www.brownhat.org/sis900.html
7207L:	netdev@vger.kernel.org
7208S:	Maintained
7209F:	drivers/net/ethernet/sis/sis900.*
7210
7211SIS FRAMEBUFFER DRIVER
7212M:	Thomas Winischhofer <thomas@winischhofer.net>
7213W:	http://www.winischhofer.net/linuxsisvga.shtml
7214S:	Maintained
7215F:	Documentation/fb/sisfb.txt
7216F:	drivers/video/sis/
7217F:	include/video/sisfb.h
7218
7219SIS USB2VGA DRIVER
7220M:	Thomas Winischhofer <thomas@winischhofer.net>
7221W:	http://www.winischhofer.at/linuxsisusbvga.shtml
7222S:	Maintained
7223F:	drivers/usb/misc/sisusbvga/
7224
7225SLAB ALLOCATOR
7226M:	Christoph Lameter <cl@linux-foundation.org>
7227M:	Pekka Enberg <penberg@kernel.org>
7228M:	Matt Mackall <mpm@selenic.com>
7229L:	linux-mm@kvack.org
7230S:	Maintained
7231F:	include/linux/sl?b*.h
7232F:	mm/sl?b.c
7233
7234SLEEPABLE READ-COPY UPDATE (SRCU)
7235M:	Lai Jiangshan <laijs@cn.fujitsu.com>
7236M:	"Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7237W:	http://www.rdrop.com/users/paulmck/RCU/
7238S:	Supported
7239T:	git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7240F:	include/linux/srcu*
7241F:	kernel/srcu*
7242
7243SMACK SECURITY MODULE
7244M:	Casey Schaufler <casey@schaufler-ca.com>
7245L:	linux-security-module@vger.kernel.org
7246W:	http://schaufler-ca.com
7247T:	git git://git.gitorious.org/smack-next/kernel.git
7248S:	Maintained
7249F:	Documentation/security/Smack.txt
7250F:	security/smack/
7251
7252SMC91x ETHERNET DRIVER
7253M:	Nicolas Pitre <nico@fluxnic.net>
7254S:	Odd Fixes
7255F:	drivers/net/ethernet/smsc/smc91x.*
7256
7257SMIA AND SMIA++ IMAGE SENSOR DRIVER
7258M:	Sakari Ailus <sakari.ailus@iki.fi>
7259L:	linux-media@vger.kernel.org
7260S:	Maintained
7261F:	drivers/media/i2c/smiapp
7262F:	include/media/smiapp.h
7263F:	drivers/media/i2c/smiapp-pll.c
7264F:	drivers/media/i2c/smiapp-pll.h
7265
7266SMM665 HARDWARE MONITOR DRIVER
7267M:	Guenter Roeck <linux@roeck-us.net>
7268L:	lm-sensors@lm-sensors.org
7269S:	Maintained
7270F:	Documentation/hwmon/smm665
7271F:	drivers/hwmon/smm665.c
7272
7273SMSC EMC2103 HARDWARE MONITOR DRIVER
7274M:	Steve Glendinning <steve.glendinning@shawell.net>
7275L:	lm-sensors@lm-sensors.org
7276S:	Maintained
7277F:	Documentation/hwmon/emc2103
7278F:	drivers/hwmon/emc2103.c
7279
7280SMSC SCH5627 HARDWARE MONITOR DRIVER
7281M:	Hans de Goede <hdegoede@redhat.com>
7282L:	lm-sensors@lm-sensors.org
7283S:	Supported
7284F:	Documentation/hwmon/sch5627
7285F:	drivers/hwmon/sch5627.c
7286
7287SMSC47B397 HARDWARE MONITOR DRIVER
7288M:	Jean Delvare <khali@linux-fr.org>
7289L:	lm-sensors@lm-sensors.org
7290S:	Maintained
7291F:	Documentation/hwmon/smsc47b397
7292F:	drivers/hwmon/smsc47b397.c
7293
7294SMSC911x ETHERNET DRIVER
7295M:	Steve Glendinning <steve.glendinning@shawell.net>
7296L:	netdev@vger.kernel.org
7297S:	Maintained
7298F:	include/linux/smsc911x.h
7299F:	drivers/net/ethernet/smsc/smsc911x.*
7300
7301SMSC9420 PCI ETHERNET DRIVER
7302M:	Steve Glendinning <steve.glendinning@shawell.net>
7303L:	netdev@vger.kernel.org
7304S:	Maintained
7305F:	drivers/net/ethernet/smsc/smsc9420.*
7306
7307SMSC UFX6000 and UFX7000 USB to VGA DRIVER
7308M:	Steve Glendinning <steve.glendinning@shawell.net>
7309L:	linux-fbdev@vger.kernel.org
7310S:	Maintained
7311F:	drivers/video/smscufx.c
7312
7313SOC-CAMERA V4L2 SUBSYSTEM
7314M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7315L:	linux-media@vger.kernel.org
7316T:	git git://linuxtv.org/media_tree.git
7317S:	Maintained
7318F:	include/media/soc*
7319F:	drivers/media/i2c/soc_camera/
7320F:	drivers/media/platform/soc_camera/
7321
7322SOEKRIS NET48XX LED SUPPORT
7323M:	Chris Boot <bootc@bootc.net>
7324S:	Maintained
7325F:	drivers/leds/leds-net48xx.c
7326
7327SOFTWARE RAID (Multiple Disks) SUPPORT
7328M:	Neil Brown <neilb@suse.de>
7329L:	linux-raid@vger.kernel.org
7330S:	Supported
7331F:	drivers/md/
7332F:	include/linux/raid/
7333F:	include/uapi/linux/raid/
7334
7335SONIC NETWORK DRIVER
7336M:	Thomas Bogendoerfer <tsbogend@alpha.franken.de>
7337L:	netdev@vger.kernel.org
7338S:	Maintained
7339F:	drivers/net/ethernet/natsemi/sonic.*
7340
7341SONICS SILICON BACKPLANE DRIVER (SSB)
7342M:	Michael Buesch <m@bues.ch>
7343L:	netdev@vger.kernel.org
7344S:	Maintained
7345F:	drivers/ssb/
7346F:	include/linux/ssb/
7347
7348SONY VAIO CONTROL DEVICE DRIVER
7349M:	Mattia Dongili <malattia@linux.it>
7350L:	platform-driver-x86@vger.kernel.org
7351W:	http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
7352S:	Maintained
7353F:	Documentation/laptops/sony-laptop.txt
7354F:	drivers/char/sonypi.c
7355F:	drivers/platform/x86/sony-laptop.c
7356F:	include/linux/sony-laptop.h
7357
7358SONY MEMORYSTICK CARD SUPPORT
7359M:	Alex Dubov <oakad@yahoo.com>
7360W:	http://tifmxx.berlios.de/
7361S:	Maintained
7362F:	drivers/memstick/host/tifm_ms.c
7363
7364SOUND
7365M:	Jaroslav Kysela <perex@perex.cz>
7366M:	Takashi Iwai <tiwai@suse.de>
7367L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7368W:	http://www.alsa-project.org/
7369T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7370T:	git git://git.alsa-project.org/alsa-kernel.git
7371S:	Maintained
7372F:	Documentation/sound/
7373F:	include/sound/
7374F:	include/uapi/sound/
7375F:	sound/
7376
7377SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
7378M:	Liam Girdwood <lgirdwood@gmail.com>
7379M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
7380T:	git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
7381L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7382W:	http://alsa-project.org/main/index.php/ASoC
7383S:	Supported
7384F:	sound/soc/
7385F:	include/sound/soc*
7386
7387SPARC + UltraSPARC (sparc/sparc64)
7388M:	"David S. Miller" <davem@davemloft.net>
7389L:	sparclinux@vger.kernel.org
7390Q:	http://patchwork.ozlabs.org/project/sparclinux/list/
7391T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7392T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
7393S:	Maintained
7394F:	arch/sparc/
7395F:	drivers/sbus/
7396
7397SPARC SERIAL DRIVERS
7398M:	"David S. Miller" <davem@davemloft.net>
7399L:	sparclinux@vger.kernel.org
7400T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
7401T:	git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
7402S:	Maintained
7403F:	include/linux/sunserialcore.h
7404F:	drivers/tty/serial/suncore.c
7405F:	drivers/tty/serial/sunhv.c
7406F:	drivers/tty/serial/sunsab.c
7407F:	drivers/tty/serial/sunsab.h
7408F:	drivers/tty/serial/sunsu.c
7409F:	drivers/tty/serial/sunzilog.c
7410F:	drivers/tty/serial/sunzilog.h
7411
7412SPARSE CHECKER
7413M:	"Christopher Li" <sparse@chrisli.org>
7414L:	linux-sparse@vger.kernel.org
7415W:	https://sparse.wiki.kernel.org/
7416T:	git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
7417T:	git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
7418S:	Maintained
7419F:	include/linux/compiler.h
7420
7421SPEAR PLATFORM SUPPORT
7422M:	Viresh Kumar <viresh.linux@gmail.com>
7423M:	Shiraz Hashim <shiraz.hashim@st.com>
7424L:	spear-devel@list.st.com
7425L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7426W:	http://www.st.com/spear
7427S:	Maintained
7428F:	arch/arm/plat-spear/
7429
7430SPEAR13XX MACHINE SUPPORT
7431M:	Viresh Kumar <viresh.linux@gmail.com>
7432M:	Shiraz Hashim <shiraz.hashim@st.com>
7433L:	spear-devel@list.st.com
7434L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7435W:	http://www.st.com/spear
7436S:	Maintained
7437F:	arch/arm/mach-spear13xx/
7438
7439SPEAR3XX MACHINE SUPPORT
7440M:	Viresh Kumar <viresh.linux@gmail.com>
7441M:	Shiraz Hashim <shiraz.hashim@st.com>
7442L:	spear-devel@list.st.com
7443L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7444W:	http://www.st.com/spear
7445S:	Maintained
7446F:	arch/arm/mach-spear3xx/
7447
7448SPEAR6XX MACHINE SUPPORT
7449M:	Rajeev Kumar <rajeev-dlh.kumar@st.com>
7450M:	Shiraz Hashim <shiraz.hashim@st.com>
7451M:	Viresh Kumar <viresh.linux@gmail.com>
7452L:	spear-devel@list.st.com
7453L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7454W:	http://www.st.com/spear
7455S:	Maintained
7456F:	arch/arm/mach-spear6xx/
7457
7458SPEAR CLOCK FRAMEWORK SUPPORT
7459M:	Viresh Kumar <viresh.linux@gmail.com>
7460L:	spear-devel@list.st.com
7461L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7462W:	http://www.st.com/spear
7463S:	Maintained
7464F:	drivers/clk/spear/
7465
7466SPI SUBSYSTEM
7467M:	Grant Likely <grant.likely@secretlab.ca>
7468M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
7469L:	spi-devel-general@lists.sourceforge.net
7470Q:	http://patchwork.kernel.org/project/spi-devel-general/list/
7471T:	git git://git.secretlab.ca/git/linux-2.6.git
7472S:	Maintained
7473F:	Documentation/spi/
7474F:	drivers/spi/
7475F:	include/linux/spi/
7476F:	include/uapi/linux/spi/
7477
7478SPIDERNET NETWORK DRIVER for CELL
7479M:	Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
7480M:	Jens Osterkamp <jens@de.ibm.com>
7481L:	netdev@vger.kernel.org
7482S:	Supported
7483F:	Documentation/networking/spider_net.txt
7484F:	drivers/net/ethernet/toshiba/spider_net*
7485
7486SPU FILE SYSTEM
7487M:	Jeremy Kerr <jk@ozlabs.org>
7488L:	linuxppc-dev@lists.ozlabs.org
7489L:	cbe-oss-dev@lists.ozlabs.org
7490W:	http://www.ibm.com/developerworks/power/cell/
7491S:	Supported
7492F:	Documentation/filesystems/spufs.txt
7493F:	arch/powerpc/platforms/cell/spufs/
7494
7495SQUASHFS FILE SYSTEM
7496M:	Phillip Lougher <phillip@squashfs.org.uk>
7497L:	squashfs-devel@lists.sourceforge.net (subscribers-only)
7498W:	http://squashfs.org.uk
7499S:	Maintained
7500F:	Documentation/filesystems/squashfs.txt
7501F:	fs/squashfs/
7502
7503SRM (Alpha) environment access
7504M:	Jan-Benedict Glaw <jbglaw@lug-owl.de>
7505S:	Maintained
7506F:	arch/alpha/kernel/srm_env.c
7507
7508STABLE BRANCH
7509M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7510L:	stable@vger.kernel.org
7511S:	Supported
7512
7513STAGING SUBSYSTEM
7514M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7515T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
7516L:	devel@driverdev.osuosl.org
7517S:	Supported
7518F:	drivers/staging/
7519
7520STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
7521M:	Henk de Groot <pe1dnn@amsat.org>
7522S:	Odd Fixes
7523F:	drivers/staging/wlags49_h2/
7524F:	drivers/staging/wlags49_h25/
7525
7526STAGING - ASUS OLED
7527M:	Jakub Schmidtke <sjakub@gmail.com>
7528S:	Odd Fixes
7529F:	drivers/staging/asus_oled/
7530
7531STAGING - COMEDI
7532M:	Ian Abbott <abbotti@mev.co.uk>
7533M:	Mori Hess <fmhess@users.sourceforge.net>
7534S:	Odd Fixes
7535F:	drivers/staging/comedi/
7536
7537STAGING - CRYSTAL HD VIDEO DECODER
7538M:	Naren Sankar <nsankar@broadcom.com>
7539M:	Jarod Wilson <jarod@wilsonet.com>
7540M:	Scott Davilla <davilla@4pi.com>
7541M:	Manu Abraham <abraham.manu@gmail.com>
7542S:	Odd Fixes
7543F:	drivers/staging/crystalhd/
7544
7545STAGING - ECHO CANCELLER
7546M:	Steve Underwood <steveu@coppice.org>
7547M:	David Rowe <david@rowetel.com>
7548S:	Odd Fixes
7549F:	drivers/staging/echo/
7550
7551STAGING - ET131X NETWORK DRIVER
7552M:	Mark Einon <mark.einon@gmail.com>
7553S:	Odd Fixes
7554F:	drivers/staging/et131x/
7555
7556STAGING - FLARION FT1000 DRIVERS
7557M:	Marek Belisko <marek.belisko@gmail.com>
7558S:	Odd Fixes
7559F:	drivers/staging/ft1000/
7560
7561STAGING - FRONTIER TRANZPORT AND ALPHATRACK
7562M:	David Täht <d@teklibre.com>
7563S:	Odd Fixes
7564F:	drivers/staging/frontier/
7565
7566STAGING - INDUSTRIAL IO
7567M:	Jonathan Cameron <jic23@cam.ac.uk>
7568L:	linux-iio@vger.kernel.org
7569S:	Odd Fixes
7570F:	drivers/staging/iio/
7571
7572STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
7573M:	Jarod Wilson <jarod@wilsonet.com>
7574W:	http://www.lirc.org/
7575S:	Odd Fixes
7576F:	drivers/staging/media/lirc/
7577
7578STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
7579M:	Julian Andres Klode <jak@jak-linux.org>
7580M:	Marc Dietrich <marvin24@gmx.de>
7581L:	ac100@lists.launchpad.net (moderated for non-subscribers)
7582L:	linux-tegra@vger.kernel.org
7583S:	Maintained
7584F:	drivers/staging/nvec/
7585
7586STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
7587M:	Andres Salomon <dilinger@queued.net>
7588M:	Chris Ball <cjb@laptop.org>
7589M:	Jon Nettleton <jon.nettleton@gmail.com>
7590W:	http://wiki.laptop.org/go/DCON
7591S:	Odd Fixes
7592F:	drivers/staging/olpc_dcon/
7593
7594STAGING - OZMO DEVICES USB OVER WIFI DRIVER
7595M:	Rupesh Gujare <rupesh.gujare@atmel.com>
7596S:	Maintained
7597F:	drivers/staging/ozwpan/
7598
7599STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
7600M:	Willy Tarreau <willy@meta-x.org>
7601S:	Odd Fixes
7602F:	drivers/staging/panel/
7603
7604STAGING - REALTEK RTL8712U DRIVERS
7605M:	Larry Finger <Larry.Finger@lwfinger.net>
7606M:	Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
7607S:	Odd Fixes
7608F:	drivers/staging/rtl8712/
7609
7610STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
7611M:	Teddy Wang <teddy.wang@siliconmotion.com.cn>
7612S:	Odd Fixes
7613F:	drivers/staging/sm7xxfb/
7614
7615STAGING - SOFTLOGIC 6x10 MPEG CODEC
7616M:	Ben Collins <bcollins@bluecherry.net>
7617S:	Odd Fixes
7618F:	drivers/staging/media/solo6x10/
7619
7620STAGING - SPEAKUP CONSOLE SPEECH DRIVER
7621M:	William Hubbs <w.d.hubbs@gmail.com>
7622M:	Chris Brannon <chris@the-brannons.com>
7623M:	Kirk Reiser <kirk@braille.uwo.ca>
7624M:	Samuel Thibault <samuel.thibault@ens-lyon.org>
7625L:	speakup@braille.uwo.ca
7626W:	http://www.linux-speakup.org/
7627S:	Odd Fixes
7628F:	drivers/staging/speakup/
7629
7630STAGING - TI DSP BRIDGE DRIVERS
7631M:	Omar Ramirez Luna <omar.ramirez@copitl.com>
7632S:	Odd Fixes
7633F:	drivers/staging/tidspbridge/
7634
7635STAGING - USB ENE SM/MS CARD READER DRIVER
7636M:	Al Cho <acho@novell.com>
7637S:	Odd Fixes
7638F:	drivers/staging/keucr/
7639
7640STAGING - VIA VT665X DRIVERS
7641M:	Forest Bond <forest@alittletooquiet.net>
7642S:	Odd Fixes
7643F:	drivers/staging/vt665?/
7644
7645STAGING - WINBOND IS89C35 WLAN USB DRIVER
7646M:	Pavel Machek <pavel@ucw.cz>
7647S:	Odd Fixes
7648F:	drivers/staging/winbond/
7649
7650STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
7651M:	Arnaud Patard <arnaud.patard@rtp-net.org>
7652S:	Odd Fixes
7653F:	drivers/staging/xgifb/
7654
7655STARFIRE/DURALAN NETWORK DRIVER
7656M:	Ion Badulescu <ionut@badula.org>
7657S:	Odd Fixes
7658F:	drivers/net/ethernet/adaptec/starfire*
7659
7660SUN3/3X
7661M:	Sam Creasey <sammy@sammy.net>
7662W:	http://sammy.net/sun3/
7663S:	Maintained
7664F:	arch/m68k/kernel/*sun3*
7665F:	arch/m68k/sun3*/
7666F:	arch/m68k/include/asm/sun3*
7667F:	drivers/net/ethernet/i825xx/sun3*
7668
7669SUPERH
7670M:	Paul Mundt <lethal@linux-sh.org>
7671L:	linux-sh@vger.kernel.org
7672W:	http://www.linux-sh.org
7673Q:	http://patchwork.kernel.org/project/linux-sh/list/
7674T:	git git://github.com/pmundt/linux-sh.git sh-latest
7675S:	Supported
7676F:	Documentation/sh/
7677F:	arch/sh/
7678F:	drivers/sh/
7679
7680SUSPEND TO RAM
7681M:	Len Brown <len.brown@intel.com>
7682M:	Pavel Machek <pavel@ucw.cz>
7683M:	"Rafael J. Wysocki" <rjw@sisk.pl>
7684L:	linux-pm@vger.kernel.org
7685S:	Supported
7686F:	Documentation/power/
7687F:	arch/x86/kernel/acpi/
7688F:	drivers/base/power/
7689F:	kernel/power/
7690F:	include/linux/suspend.h
7691F:	include/linux/freezer.h
7692F:	include/linux/pm.h
7693
7694SVGA HANDLING
7695M:	Martin Mares <mj@ucw.cz>
7696L:	linux-video@atrey.karlin.mff.cuni.cz
7697S:	Maintained
7698F:	Documentation/svga.txt
7699F:	arch/x86/boot/video*
7700
7701SWIOTLB SUBSYSTEM
7702M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7703L:	linux-kernel@vger.kernel.org
7704S:	Supported
7705F:	lib/swiotlb.c
7706F:	arch/*/kernel/pci-swiotlb.c
7707F:	include/linux/swiotlb.h
7708
7709SYNOPSYS ARC ARCHITECTURE
7710M:	Vineet Gupta <vgupta@synopsys.com>
7711L:	linux-snps-arc@vger.kernel.org
7712S:	Supported
7713F:	arch/arc/
7714
7715SYSV FILESYSTEM
7716M:	Christoph Hellwig <hch@infradead.org>
7717S:	Maintained
7718F:	Documentation/filesystems/sysv-fs.txt
7719F:	fs/sysv/
7720F:	include/linux/sysv_fs.h
7721
7722TARGET SUBSYSTEM
7723M:	Nicholas A. Bellinger <nab@linux-iscsi.org>
7724L:	linux-scsi@vger.kernel.org
7725L:	target-devel@vger.kernel.org
7726L:	http://groups.google.com/group/linux-iscsi-target-dev
7727W:	http://www.linux-iscsi.org
7728T:	git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core.git master
7729S:	Supported
7730F:	drivers/target/
7731F:	include/target/
7732F:	Documentation/target/
7733
7734TASKSTATS STATISTICS INTERFACE
7735M:	Balbir Singh <bsingharora@gmail.com>
7736S:	Maintained
7737F:	Documentation/accounting/taskstats*
7738F:	include/linux/taskstats*
7739F:	kernel/taskstats.c
7740
7741TC CLASSIFIER
7742M:	Jamal Hadi Salim <jhs@mojatatu.com>
7743L:	netdev@vger.kernel.org
7744S:	Maintained
7745F:	include/net/pkt_cls.h
7746F:	include/uapi/linux/pkt_cls.h
7747F:	net/sched/
7748
7749TCP LOW PRIORITY MODULE
7750M:	"Wong Hoi Sing, Edison" <hswong3i@gmail.com>
7751M:	"Hung Hing Lun, Mike" <hlhung3i@gmail.com>
7752W:	http://tcp-lp-mod.sourceforge.net/
7753S:	Maintained
7754F:	net/ipv4/tcp_lp.c
7755
7756TDA10071 MEDIA DRIVER
7757M:	Antti Palosaari <crope@iki.fi>
7758L:	linux-media@vger.kernel.org
7759W:	http://linuxtv.org/
7760W:	http://palosaari.fi/linux/
7761Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7762T:	git git://linuxtv.org/anttip/media_tree.git
7763S:	Maintained
7764F:	drivers/media/dvb-frontends/tda10071*
7765
7766TDA18212 MEDIA DRIVER
7767M:	Antti Palosaari <crope@iki.fi>
7768L:	linux-media@vger.kernel.org
7769W:	http://linuxtv.org/
7770W:	http://palosaari.fi/linux/
7771Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7772T:	git git://linuxtv.org/anttip/media_tree.git
7773S:	Maintained
7774F:	drivers/media/tuners/tda18212*
7775
7776TDA18218 MEDIA DRIVER
7777M:	Antti Palosaari <crope@iki.fi>
7778L:	linux-media@vger.kernel.org
7779W:	http://linuxtv.org/
7780W:	http://palosaari.fi/linux/
7781Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7782T:	git git://linuxtv.org/anttip/media_tree.git
7783S:	Maintained
7784F:	drivers/media/tuners/tda18218*
7785
7786TDA18271 MEDIA DRIVER
7787M:	Michael Krufky <mkrufky@linuxtv.org>
7788L:	linux-media@vger.kernel.org
7789W:	http://linuxtv.org/
7790W:	http://github.com/mkrufky
7791Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7792T:	git git://linuxtv.org/mkrufky/tuners.git
7793S:	Maintained
7794F:	drivers/media/tuners/tda18271*
7795
7796TDA827x MEDIA DRIVER
7797M:	Michael Krufky <mkrufky@linuxtv.org>
7798L:	linux-media@vger.kernel.org
7799W:	http://linuxtv.org/
7800W:	http://github.com/mkrufky
7801Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7802T:	git git://linuxtv.org/mkrufky/tuners.git
7803S:	Maintained
7804F:	drivers/media/tuners/tda8290.*
7805
7806TDA8290 MEDIA DRIVER
7807M:	Michael Krufky <mkrufky@linuxtv.org>
7808L:	linux-media@vger.kernel.org
7809W:	http://linuxtv.org/
7810W:	http://github.com/mkrufky
7811Q:	http://patchwork.linuxtv.org/project/linux-media/list/
7812T:	git git://linuxtv.org/mkrufky/tuners.git
7813S:	Maintained
7814F:	drivers/media/tuners/tda8290.*
7815
7816TDA9840 MEDIA DRIVER
7817M:	Hans Verkuil <hverkuil@xs4all.nl>
7818L:	linux-media@vger.kernel.org
7819T:	git git://linuxtv.org/media_tree.git
7820W:	http://linuxtv.org
7821S:	Maintained
7822F:	drivers/media/i2c/tda9840*
7823
7824TEA5761 TUNER DRIVER
7825M:	Mauro Carvalho Chehab <mchehab@redhat.com>
7826L:	linux-media@vger.kernel.org
7827W:	http://linuxtv.org
7828T:	git git://linuxtv.org/media_tree.git
7829S:	Odd fixes
7830F:	drivers/media/tuners/tea5761.*
7831
7832TEA5767 TUNER DRIVER
7833M:	Mauro Carvalho Chehab <mchehab@redhat.com>
7834L:	linux-media@vger.kernel.org
7835W:	http://linuxtv.org
7836T:	git git://linuxtv.org/media_tree.git
7837S:	Maintained
7838F:	drivers/media/tuners/tea5767.*
7839
7840TEA6415C MEDIA DRIVER
7841M:	Hans Verkuil <hverkuil@xs4all.nl>
7842L:	linux-media@vger.kernel.org
7843T:	git git://linuxtv.org/media_tree.git
7844W:	http://linuxtv.org
7845S:	Maintained
7846F:	drivers/media/i2c/tea6415c*
7847
7848TEA6420 MEDIA DRIVER
7849M:	Hans Verkuil <hverkuil@xs4all.nl>
7850L:	linux-media@vger.kernel.org
7851T:	git git://linuxtv.org/media_tree.git
7852W:	http://linuxtv.org
7853S:	Maintained
7854F:	drivers/media/i2c/tea6420*
7855
7856TEAM DRIVER
7857M:	Jiri Pirko <jiri@resnulli.us>
7858L:	netdev@vger.kernel.org
7859S:	Supported
7860F:	drivers/net/team/
7861F:	include/linux/if_team.h
7862F:	include/uapi/linux/if_team.h
7863
7864TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
7865M:	Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
7866S:	Maintained
7867F:	arch/x86/platform/ts5500/
7868
7869TECHNOTREND USB IR RECEIVER
7870M:	Sean Young <sean@mess.org>
7871L:	linux-media@vger.kernel.org
7872S:	Maintained
7873F:	drivers/media/rc/ttusbir.c
7874
7875TEGRA SUPPORT
7876M:	Stephen Warren <swarren@wwwdotorg.org>
7877L:	linux-tegra@vger.kernel.org
7878Q:	http://patchwork.ozlabs.org/project/linux-tegra/list/
7879T:	git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
7880S:	Supported
7881K:	(?i)[^a-z]tegra
7882
7883TEHUTI ETHERNET DRIVER
7884M:	Andy Gospodarek <andy@greyhouse.net>
7885L:	netdev@vger.kernel.org
7886S:	Supported
7887F:	drivers/net/ethernet/tehuti/*
7888
7889Telecom Clock Driver for MCPL0010
7890M:	Mark Gross <mark.gross@intel.com>
7891S:	Supported
7892F:	drivers/char/tlclk.c
7893
7894TENSILICA XTENSA PORT (xtensa)
7895M:	Chris Zankel <chris@zankel.net>
7896M:	Max Filippov <jcmvbkbc@gmail.com>
7897L:	linux-xtensa@linux-xtensa.org
7898S:	Maintained
7899F:	arch/xtensa/
7900
7901THERMAL
7902M:      Zhang Rui <rui.zhang@intel.com>
7903L:      linux-pm@vger.kernel.org
7904T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
7905S:      Supported
7906F:      drivers/thermal/
7907F:      include/linux/thermal.h
7908
7909THINGM BLINK(1) USB RGB LED DRIVER
7910M:	Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7911S:	Maintained
7912F:	drivers/hid/hid-thingm.c
7913
7914THINKPAD ACPI EXTRAS DRIVER
7915M:	Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
7916L:	ibm-acpi-devel@lists.sourceforge.net
7917L:	platform-driver-x86@vger.kernel.org
7918W:	http://ibm-acpi.sourceforge.net
7919W:	http://thinkwiki.org/wiki/Ibm-acpi
7920T:	git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
7921S:	Maintained
7922F:	drivers/platform/x86/thinkpad_acpi.c
7923
7924TI FLASH MEDIA INTERFACE DRIVER
7925M:	Alex Dubov <oakad@yahoo.com>
7926S:	Maintained
7927F:	drivers/misc/tifm*
7928F:	drivers/mmc/host/tifm_sd.c
7929F:	include/linux/tifm.h
7930
7931TI LM49xxx FAMILY ASoC CODEC DRIVERS
7932M:	M R Swami Reddy <mr.swami.reddy@ti.com>
7933M:	Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
7934L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7935S:	Maintained
7936F:	sound/soc/codecs/lm49453*
7937F:	sound/soc/codecs/isabelle*
7938
7939TI LP855x BACKLIGHT DRIVER
7940M:	Milo Kim <milo.kim@ti.com>
7941S:	Maintained
7942F:	Documentation/backlight/lp855x-driver.txt
7943F:	drivers/video/backlight/lp855x_bl.c
7944F:	include/linux/platform_data/lp855x.h
7945
7946TI LP8727 CHARGER DRIVER
7947M:	Milo Kim <milo.kim@ti.com>
7948S:	Maintained
7949F:	drivers/power/lp8727_charger.c
7950F:	include/linux/platform_data/lp8727.h
7951
7952TI LP8788 MFD DRIVER
7953M:	Milo Kim <milo.kim@ti.com>
7954S:	Maintained
7955F:	drivers/iio/adc/lp8788_adc.c
7956F:	drivers/leds/leds-lp8788.c
7957F:	drivers/mfd/lp8788*.c
7958F:	drivers/power/lp8788-charger.c
7959F:	drivers/regulator/lp8788-*.c
7960F:	include/linux/mfd/lp8788*.h
7961
7962TI TWL4030 SERIES SOC CODEC DRIVER
7963M:	Peter Ujfalusi <peter.ujfalusi@ti.com>
7964L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
7965S:	Maintained
7966F:	sound/soc/codecs/twl4030*
7967
7968TI WILINK WIRELESS DRIVERS
7969M:	Luciano Coelho <coelho@ti.com>
7970L:	linux-wireless@vger.kernel.org
7971W:	http://wireless.kernel.org/en/users/Drivers/wl12xx
7972W:	http://wireless.kernel.org/en/users/Drivers/wl1251
7973T:	git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
7974S:	Maintained
7975F:	drivers/net/wireless/ti/
7976F:	include/linux/wl12xx.h
7977
7978TIPC NETWORK LAYER
7979M:	Jon Maloy <jon.maloy@ericsson.com>
7980M:	Allan Stephens <allan.stephens@windriver.com>
7981L:	netdev@vger.kernel.org (core kernel code)
7982L:	tipc-discussion@lists.sourceforge.net (user apps, general discussion)
7983W:	http://tipc.sourceforge.net/
7984S:	Maintained
7985F:	include/uapi/linux/tipc*.h
7986F:	net/tipc/
7987
7988TILE ARCHITECTURE
7989M:	Chris Metcalf <cmetcalf@tilera.com>
7990W:	http://www.tilera.com/scm/
7991S:	Supported
7992F:	arch/tile/
7993F:	drivers/tty/hvc/hvc_tile.c
7994F:	drivers/net/ethernet/tile/
7995F:	drivers/edac/tile_edac.c
7996
7997TLAN NETWORK DRIVER
7998M:	Samuel Chessman <chessman@tux.org>
7999L:	tlan-devel@lists.sourceforge.net (subscribers-only)
8000W:	http://sourceforge.net/projects/tlan/
8001S:	Maintained
8002F:	Documentation/networking/tlan.txt
8003F:	drivers/net/ethernet/ti/tlan.*
8004
8005TOMOYO SECURITY MODULE
8006M:	Kentaro Takeda <takedakn@nttdata.co.jp>
8007M:	Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
8008L:	tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8009L:	tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
8010L:	tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8011L:	tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8012W:	http://tomoyo.sourceforge.jp/
8013T:	quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
8014S:	Maintained
8015F:	security/tomoyo/
8016
8017TOPSTAR LAPTOP EXTRAS DRIVER
8018M:	Herton Ronaldo Krzesinski <herton@canonical.com>
8019L:	platform-driver-x86@vger.kernel.org
8020S:	Maintained
8021F:	drivers/platform/x86/topstar-laptop.c
8022
8023TOSHIBA ACPI EXTRAS DRIVER
8024L:	platform-driver-x86@vger.kernel.org
8025S:	Orphan
8026F:	drivers/platform/x86/toshiba_acpi.c
8027
8028TOSHIBA SMM DRIVER
8029M:	Jonathan Buzzard <jonathan@buzzard.org.uk>
8030L:	tlinux-users@tce.toshiba-dme.co.jp
8031W:	http://www.buzzard.org.uk/toshiba/
8032S:	Maintained
8033F:	drivers/char/toshiba.c
8034F:	include/linux/toshiba.h
8035F:	include/uapi/linux/toshiba.h
8036
8037TMIO MMC DRIVER
8038M:	Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8039M:	Ian Molton <ian@mnementh.co.uk>
8040L:	linux-mmc@vger.kernel.org
8041S:	Maintained
8042F:	drivers/mmc/host/tmio_mmc*
8043F:	drivers/mmc/host/sh_mobile_sdhi.c
8044F:	include/linux/mmc/tmio.h
8045F:	include/linux/mmc/sh_mobile_sdhi.h
8046
8047TMPFS (SHMEM FILESYSTEM)
8048M:	Hugh Dickins <hughd@google.com>
8049L:	linux-mm@kvack.org
8050S:	Maintained
8051F:	include/linux/shmem_fs.h
8052F:	mm/shmem.c
8053
8054TM6000 VIDEO4LINUX DRIVER
8055M:	Mauro Carvalho Chehab <mchehab@redhat.com>
8056L:	linux-media@vger.kernel.org
8057W:	http://linuxtv.org
8058T:	git git://linuxtv.org/media_tree.git
8059S:	Odd fixes
8060F:	drivers/media/usb/tm6000/
8061
8062TPM DEVICE DRIVER
8063M:	Kent Yoder <key@linux.vnet.ibm.com>
8064M:	Rajiv Andrade <mail@srajiv.net>
8065W:	http://tpmdd.sourceforge.net
8066M:	Marcel Selhorst <tpmdd@selhorst.net>
8067M:	Sirrix AG <tpmdd@sirrix.com>
8068W:	http://www.sirrix.com
8069L:	tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
8070S:	Maintained
8071F:	drivers/char/tpm/
8072
8073TRACING
8074M:	Steven Rostedt <rostedt@goodmis.org>
8075M:	Frederic Weisbecker <fweisbec@gmail.com>
8076M:	Ingo Molnar <mingo@redhat.com>
8077T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8078S:	Maintained
8079F:	Documentation/trace/ftrace.txt
8080F:	arch/*/*/*/ftrace.h
8081F:	arch/*/kernel/ftrace.c
8082F:	include/*/ftrace.h
8083F:	include/linux/trace*.h
8084F:	include/trace/
8085F:	kernel/trace/
8086
8087TRIVIAL PATCHES
8088M:	Jiri Kosina <trivial@kernel.org>
8089T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
8090S:	Maintained
8091K:	^Subject:.*(?i)trivial
8092
8093TTY LAYER
8094M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8095M:	Jiri Slaby <jslaby@suse.cz>
8096S:	Supported
8097T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
8098F:	drivers/tty/
8099F:	drivers/tty/serial/serial_core.c
8100F:	include/linux/serial_core.h
8101F:	include/linux/serial.h
8102F:	include/linux/tty.h
8103F:	include/uapi/linux/serial_core.h
8104F:	include/uapi/linux/serial.h
8105F:	include/uapi/linux/tty.h
8106
8107TUA9001 MEDIA DRIVER
8108M:	Antti Palosaari <crope@iki.fi>
8109L:	linux-media@vger.kernel.org
8110W:	http://linuxtv.org/
8111W:	http://palosaari.fi/linux/
8112Q:	http://patchwork.linuxtv.org/project/linux-media/list/
8113T:	git git://linuxtv.org/anttip/media_tree.git
8114S:	Maintained
8115F:	drivers/media/tuners/tua9001*
8116
8117TULIP NETWORK DRIVERS
8118M:	Grant Grundler <grundler@parisc-linux.org>
8119L:	netdev@vger.kernel.org
8120S:	Maintained
8121F:	drivers/net/ethernet/dec/tulip/
8122
8123TUN/TAP driver
8124M:	Maxim Krasnyansky <maxk@qti.qualcomm.com>
8125W:	http://vtun.sourceforge.net/tun
8126S:	Maintained
8127F:	Documentation/networking/tuntap.txt
8128F:	arch/um/os-Linux/drivers/
8129
8130TURBOCHANNEL SUBSYSTEM
8131M:	"Maciej W. Rozycki" <macro@linux-mips.org>
8132S:	Maintained
8133F:	drivers/tc/
8134F:	include/linux/tc.h
8135
8136U14-34F SCSI DRIVER
8137M:	Dario Ballabio <ballabio_dario@emc.com>
8138L:	linux-scsi@vger.kernel.org
8139S:	Maintained
8140F:	drivers/scsi/u14-34f.c
8141
8142UBI FILE SYSTEM (UBIFS)
8143M:	Artem Bityutskiy <dedekind1@gmail.com>
8144M:	Adrian Hunter <adrian.hunter@intel.com>
8145L:	linux-mtd@lists.infradead.org
8146T:	git git://git.infradead.org/ubifs-2.6.git
8147W:	http://www.linux-mtd.infradead.org/doc/ubifs.html
8148S:	Maintained
8149F:	Documentation/filesystems/ubifs.txt
8150F:	fs/ubifs/
8151
8152UCLINUX (AND M68KNOMMU)
8153M:	Greg Ungerer <gerg@uclinux.org>
8154W:	http://www.uclinux.org/
8155L:	uclinux-dev@uclinux.org  (subscribers-only)
8156S:	Maintained
8157F:	arch/m68k/*/*_no.*
8158F:	arch/m68k/include/asm/*_no.*
8159
8160UCLINUX FOR RENESAS H8/300 (H8300)
8161M:	Yoshinori Sato <ysato@users.sourceforge.jp>
8162W:	http://uclinux-h8.sourceforge.jp/
8163S:	Supported
8164F:	arch/h8300/
8165F:	drivers/ide/ide-h8300.c
8166F:	drivers/net/ethernet/8390/ne-h8300.c
8167
8168UDF FILESYSTEM
8169M:	Jan Kara <jack@suse.cz>
8170S:	Maintained
8171F:	Documentation/filesystems/udf.txt
8172F:	fs/udf/
8173
8174UFS FILESYSTEM
8175M:	Evgeniy Dushistov <dushistov@mail.ru>
8176S:	Maintained
8177F:	Documentation/filesystems/ufs.txt
8178F:	fs/ufs/
8179
8180UHID USERSPACE HID IO DRIVER:
8181M:	David Herrmann <dh.herrmann@googlemail.com>
8182L:	linux-input@vger.kernel.org
8183S:	Maintained
8184F:	drivers/hid/uhid.c
8185F:	include/uapi/linux/uhid.h
8186
8187ULTRA-WIDEBAND (UWB) SUBSYSTEM:
8188L:	linux-usb@vger.kernel.org
8189S:	Orphan
8190F:	drivers/uwb/
8191F:	include/linux/uwb.h
8192F:	include/linux/uwb/
8193
8194UNICORE32 ARCHITECTURE:
8195M:	Guan Xuetao <gxt@mprc.pku.edu.cn>
8196W:	http://mprc.pku.edu.cn/~guanxuetao/linux
8197S:	Maintained
8198T:	git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8199F:	arch/unicore32/
8200
8201UNIFDEF
8202M:	Tony Finch <dot@dotat.at>
8203W:	http://dotat.at/prog/unifdef
8204S:	Maintained
8205F:	scripts/unifdef.c
8206
8207UNIFORM CDROM DRIVER
8208M:	Jens Axboe <axboe@kernel.dk>
8209W:	http://www.kernel.dk
8210S:	Maintained
8211F:	Documentation/cdrom/
8212F:	drivers/cdrom/cdrom.c
8213F:	include/linux/cdrom.h
8214F:	include/uapi/linux/cdrom.h
8215
8216UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
8217M:	Vinayak Holikatti <vinholikatti@gmail.com>
8218M:	Santosh Y <santoshsy@gmail.com>
8219L:	linux-scsi@vger.kernel.org
8220S:	Supported
8221F:	Documentation/scsi/ufs.txt
8222F:	drivers/scsi/ufs/
8223
8224UNSORTED BLOCK IMAGES (UBI)
8225M:	Artem Bityutskiy <dedekind1@gmail.com>
8226W:	http://www.linux-mtd.infradead.org/
8227L:	linux-mtd@lists.infradead.org
8228T:	git git://git.infradead.org/ubi-2.6.git
8229S:	Maintained
8230F:	drivers/mtd/ubi/
8231F:	include/linux/mtd/ubi.h
8232F:	include/uapi/mtd/ubi-user.h
8233
8234UNSORTED BLOCK IMAGES (UBI) Fastmap
8235M:	Richard Weinberger <richard@nod.at>
8236L:	linux-mtd@lists.infradead.org
8237S:	Maintained
8238F:	drivers/mtd/ubi/fastmap.c
8239
8240USB ACM DRIVER
8241M:	Oliver Neukum <oliver@neukum.org>
8242L:	linux-usb@vger.kernel.org
8243S:	Maintained
8244F:	Documentation/usb/acm.txt
8245F:	drivers/usb/class/cdc-acm.*
8246
8247USB AR5523 WIRELESS DRIVER
8248M:	Pontus Fuchs <pontus.fuchs@gmail.com>
8249L:	linux-wireless@vger.kernel.org
8250S:	Maintained
8251F:	drivers/net/wireless/ath/ar5523/
8252
8253USB ATTACHED SCSI
8254M:	Matthew Wilcox <willy@linux.intel.com>
8255M:	Sarah Sharp <sarah.a.sharp@linux.intel.com>
8256M:	Gerd Hoffmann <kraxel@redhat.com>
8257L:	linux-usb@vger.kernel.org
8258L:	linux-scsi@vger.kernel.org
8259S:	Maintained
8260F:	drivers/usb/storage/uas.c
8261
8262USB CDC ETHERNET DRIVER
8263M:	Oliver Neukum <oliver@neukum.org>
8264L:	linux-usb@vger.kernel.org
8265S:	Maintained
8266F:	drivers/net/usb/cdc_*.c
8267F:	include/uapi/linux/usb/cdc.h
8268
8269USB CYPRESS C67X00 DRIVER
8270M:	Peter Korsgaard <jacmet@sunsite.dk>
8271L:	linux-usb@vger.kernel.org
8272S:	Maintained
8273F:	drivers/usb/c67x00/
8274
8275USB DAVICOM DM9601 DRIVER
8276M:	Peter Korsgaard <jacmet@sunsite.dk>
8277L:	netdev@vger.kernel.org
8278W:	http://www.linux-usb.org/usbnet
8279S:	Maintained
8280F:	drivers/net/usb/dm9601.c
8281
8282USB DIAMOND RIO500 DRIVER
8283M:	Cesar Miquel <miquel@df.uba.ar>
8284L:	rio500-users@lists.sourceforge.net
8285W:	http://rio500.sourceforge.net
8286S:	Maintained
8287F:	drivers/usb/misc/rio500*
8288
8289USB EHCI DRIVER
8290M:	Alan Stern <stern@rowland.harvard.edu>
8291L:	linux-usb@vger.kernel.org
8292S:	Maintained
8293F:	Documentation/usb/ehci.txt
8294F:	drivers/usb/host/ehci*
8295
8296USB GADGET/PERIPHERAL SUBSYSTEM
8297M:	Felipe Balbi <balbi@ti.com>
8298L:	linux-usb@vger.kernel.org
8299W:	http://www.linux-usb.org/gadget
8300T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8301S:	Maintained
8302F:	drivers/usb/gadget/
8303F:	include/linux/usb/gadget*
8304
8305USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
8306M:	Jiri Kosina <jkosina@suse.cz>
8307L:	linux-usb@vger.kernel.org
8308T:	git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
8309S:	Maintained
8310F:	Documentation/hid/hiddev.txt
8311F:	drivers/hid/usbhid/
8312
8313USB/IP DRIVERS
8314M:	Matt Mooney <mfm@muteddisk.com>
8315L:	linux-usb@vger.kernel.org
8316S:	Maintained
8317F:	drivers/staging/usbip/
8318
8319USB ISP116X DRIVER
8320M:	Olav Kongas <ok@artecdesign.ee>
8321L:	linux-usb@vger.kernel.org
8322S:	Maintained
8323F:	drivers/usb/host/isp116x*
8324F:	include/linux/usb/isp116x.h
8325
8326USB KAWASAKI LSI DRIVER
8327M:	Oliver Neukum <oliver@neukum.org>
8328L:	linux-usb@vger.kernel.org
8329S:	Maintained
8330F:	drivers/usb/serial/kl5kusb105.*
8331
8332USB MASS STORAGE DRIVER
8333M:	Matthew Dharm <mdharm-usb@one-eyed-alien.net>
8334L:	linux-usb@vger.kernel.org
8335L:	usb-storage@lists.one-eyed-alien.net
8336S:	Maintained
8337W:	http://www.one-eyed-alien.net/~mdharm/linux-usb/
8338F:	drivers/usb/storage/
8339
8340USB MIDI DRIVER
8341M:	Clemens Ladisch <clemens@ladisch.de>
8342L:	alsa-devel@alsa-project.org (moderated for non-subscribers)
8343T:	git git://git.alsa-project.org/alsa-kernel.git
8344S:	Maintained
8345F:	sound/usb/midi.*
8346
8347USB OHCI DRIVER
8348M:	Alan Stern <stern@rowland.harvard.edu>
8349L:	linux-usb@vger.kernel.org
8350S:	Maintained
8351F:	Documentation/usb/ohci.txt
8352F:	drivers/usb/host/ohci*
8353
8354USB OPTION-CARD DRIVER
8355M:	Matthias Urlichs <smurf@smurf.noris.de>
8356L:	linux-usb@vger.kernel.org
8357S:	Maintained
8358F:	drivers/usb/serial/option.c
8359
8360USB PEGASUS DRIVER
8361M:	Petko Manolov <petkan@users.sourceforge.net>
8362L:	linux-usb@vger.kernel.org
8363L:	netdev@vger.kernel.org
8364W:	http://pegasus2.sourceforge.net/
8365S:	Maintained
8366F:	drivers/net/usb/pegasus.*
8367
8368USB PHY LAYER
8369M:	Felipe Balbi <balbi@ti.com>
8370L:	linux-usb@vger.kernel.org
8371T:	git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8372S:	Maintained
8373F:	drivers/usb/phy/
8374F:	drivers/usb/otg/
8375
8376USB PRINTER DRIVER (usblp)
8377M:	Pete Zaitcev <zaitcev@redhat.com>
8378L:	linux-usb@vger.kernel.org
8379S:	Supported
8380F:	drivers/usb/class/usblp.c
8381
8382USB RTL8150 DRIVER
8383M:	Petko Manolov <petkan@users.sourceforge.net>
8384L:	linux-usb@vger.kernel.org
8385L:	netdev@vger.kernel.org
8386W:	http://pegasus2.sourceforge.net/
8387S:	Maintained
8388F:	drivers/net/usb/rtl8150.c
8389
8390USB SERIAL BELKIN F5U103 DRIVER
8391M:	William Greathouse <wgreathouse@smva.com>
8392L:	linux-usb@vger.kernel.org
8393S:	Maintained
8394F:	drivers/usb/serial/belkin_sa.*
8395
8396USB SERIAL CYPRESS M8 DRIVER
8397M:	Lonnie Mendez <dignome@gmail.com>
8398L:	linux-usb@vger.kernel.org
8399S:	Maintained
8400W:	http://geocities.com/i0xox0i
8401W:	http://firstlight.net/cvs
8402F:	drivers/usb/serial/cypress_m8.*
8403
8404USB SERIAL CYBERJACK DRIVER
8405M:	Matthias Bruestle and Harald Welte <support@reiner-sct.com>
8406W:	http://www.reiner-sct.de/support/treiber_cyberjack.php
8407S:	Maintained
8408F:	drivers/usb/serial/cyberjack.c
8409
8410USB SERIAL DIGI ACCELEPORT DRIVER
8411M:	Peter Berger <pberger@brimson.com>
8412M:	Al Borchers <alborchers@steinerpoint.com>
8413L:	linux-usb@vger.kernel.org
8414S:	Maintained
8415F:	drivers/usb/serial/digi_acceleport.c
8416
8417USB SERIAL DRIVER
8418M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8419L:	linux-usb@vger.kernel.org
8420S:	Supported
8421F:	Documentation/usb/usb-serial.txt
8422F:	drivers/usb/serial/generic.c
8423F:	drivers/usb/serial/usb-serial.c
8424F:	include/linux/usb/serial.h
8425
8426USB SERIAL EMPEG EMPEG-CAR MARK I/II DRIVER
8427M:	Gary Brubaker <xavyer@ix.netcom.com>
8428L:	linux-usb@vger.kernel.org
8429S:	Maintained
8430F:	drivers/usb/serial/empeg.c
8431
8432USB SERIAL KEYSPAN DRIVER
8433M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8434L:	linux-usb@vger.kernel.org
8435S:	Maintained
8436F:	drivers/usb/serial/*keyspan*
8437
8438USB SERIAL WHITEHEAT DRIVER
8439M:	Support Department <support@connecttech.com>
8440L:	linux-usb@vger.kernel.org
8441W:	http://www.connecttech.com
8442S:	Supported
8443F:	drivers/usb/serial/whiteheat*
8444
8445USB SMSC75XX ETHERNET DRIVER
8446M:	Steve Glendinning <steve.glendinning@shawell.net>
8447L:	netdev@vger.kernel.org
8448S:	Maintained
8449F:	drivers/net/usb/smsc75xx.*
8450
8451USB SMSC95XX ETHERNET DRIVER
8452M:	Steve Glendinning <steve.glendinning@shawell.net>
8453L:	netdev@vger.kernel.org
8454S:	Maintained
8455F:	drivers/net/usb/smsc95xx.*
8456
8457USB SN9C1xx DRIVER
8458M:	Luca Risolia <luca.risolia@studio.unibo.it>
8459L:	linux-usb@vger.kernel.org
8460L:	linux-media@vger.kernel.org
8461T:	git git://linuxtv.org/media_tree.git
8462W:	http://www.linux-projects.org
8463S:	Maintained
8464F:	Documentation/video4linux/sn9c102.txt
8465F:	drivers/media/usb/sn9c102/
8466
8467USB SUBSYSTEM
8468M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8469L:	linux-usb@vger.kernel.org
8470W:	http://www.linux-usb.org
8471T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
8472S:	Supported
8473F:	Documentation/usb/
8474F:	drivers/net/usb/
8475F:	drivers/usb/
8476F:	include/linux/usb.h
8477F:	include/linux/usb/
8478
8479USB UHCI DRIVER
8480M:	Alan Stern <stern@rowland.harvard.edu>
8481L:	linux-usb@vger.kernel.org
8482S:	Maintained
8483F:	drivers/usb/host/uhci*
8484
8485USB "USBNET" DRIVER FRAMEWORK
8486M:	Oliver Neukum <oneukum@suse.de>
8487L:	netdev@vger.kernel.org
8488W:	http://www.linux-usb.org/usbnet
8489S:	Maintained
8490F:	drivers/net/usb/usbnet.c
8491F:	include/linux/usb/usbnet.h
8492
8493USB VIDEO CLASS
8494M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8495L:	linux-uvc-devel@lists.sourceforge.net (subscribers-only)
8496L:	linux-media@vger.kernel.org
8497T:	git git://linuxtv.org/media_tree.git
8498W:	http://www.ideasonboard.org/uvc/
8499S:	Maintained
8500F:	drivers/media/usb/uvc/
8501F:	include/uapi/linux/uvcvideo.h
8502
8503USB VISION DRIVER
8504M:	Hans Verkuil <hverkuil@xs4all.nl>
8505L:	linux-media@vger.kernel.org
8506T:	git git://linuxtv.org/media_tree.git
8507W:	http://linuxtv.org
8508S:	Odd Fixes
8509F:	drivers/media/usb/usbvision/
8510
8511USB WEBCAM GADGET
8512M:	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8513L:	linux-usb@vger.kernel.org
8514S:	Maintained
8515F:	drivers/usb/gadget/*uvc*.c
8516F:	drivers/usb/gadget/webcam.c
8517
8518USB WIRELESS RNDIS DRIVER (rndis_wlan)
8519M:	Jussi Kivilinna <jussi.kivilinna@iki.fi>
8520L:	linux-wireless@vger.kernel.org
8521S:	Maintained
8522F:	drivers/net/wireless/rndis_wlan.c
8523
8524USB XHCI DRIVER
8525M:	Sarah Sharp <sarah.a.sharp@linux.intel.com>
8526L:	linux-usb@vger.kernel.org
8527S:	Supported
8528F:	drivers/usb/host/xhci*
8529F:	drivers/usb/host/pci-quirks*
8530
8531USB ZD1201 DRIVER
8532L:	linux-wireless@vger.kernel.org
8533W:	http://linux-lc100020.sourceforge.net
8534S:	Orphan
8535F:	drivers/net/wireless/zd1201.*
8536
8537USB ZR364XX DRIVER
8538M:	Antoine Jacquet <royale@zerezo.com>
8539L:	linux-usb@vger.kernel.org
8540L:	linux-media@vger.kernel.org
8541T:	git git://linuxtv.org/media_tree.git
8542W:	http://royale.zerezo.com/zr364xx/
8543S:	Maintained
8544F:	Documentation/video4linux/zr364xx.txt
8545F:	drivers/media/usb/zr364xx/
8546
8547USER-MODE LINUX (UML)
8548M:	Jeff Dike <jdike@addtoit.com>
8549M:	Richard Weinberger <richard@nod.at>
8550L:	user-mode-linux-devel@lists.sourceforge.net
8551L:	user-mode-linux-user@lists.sourceforge.net
8552W:	http://user-mode-linux.sourceforge.net
8553S:	Maintained
8554F:	Documentation/virtual/uml/
8555F:	arch/um/
8556F:	arch/x86/um/
8557F:	fs/hostfs/
8558F:	fs/hppfs/
8559
8560USERSPACE I/O (UIO)
8561M:	"Hans J. Koch" <hjk@hansjkoch.de>
8562M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8563S:	Maintained
8564F:	Documentation/DocBook/uio-howto.tmpl
8565F:	drivers/uio/
8566F:	include/linux/uio*.h
8567
8568UTIL-LINUX PACKAGE
8569M:	Karel Zak <kzak@redhat.com>
8570L:	util-linux@vger.kernel.org
8571W:	http://en.wikipedia.org/wiki/Util-linux
8572T:	git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
8573S:	Maintained
8574
8575UVESAFB DRIVER
8576M:	Michal Januszewski <spock@gentoo.org>
8577L:	linux-fbdev@vger.kernel.org
8578W:	http://dev.gentoo.org/~spock/projects/uvesafb/
8579S:	Maintained
8580F:	Documentation/fb/uvesafb.txt
8581F:	drivers/video/uvesafb.*
8582
8583VFAT/FAT/MSDOS FILESYSTEM
8584M:	OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
8585S:	Maintained
8586F:	Documentation/filesystems/vfat.txt
8587F:	fs/fat/
8588
8589VFIO DRIVER
8590M:	Alex Williamson <alex.williamson@redhat.com>
8591L:	kvm@vger.kernel.org
8592S:	Maintained
8593F:	Documentation/vfio.txt
8594F:	drivers/vfio/
8595F:	include/linux/vfio.h
8596F:	include/uapi/linux/vfio.h
8597
8598VIDEOBUF2 FRAMEWORK
8599M:	Pawel Osciak <pawel@osciak.com>
8600M:	Marek Szyprowski <m.szyprowski@samsung.com>
8601M:	Kyungmin Park <kyungmin.park@samsung.com>
8602L:	linux-media@vger.kernel.org
8603S:	Maintained
8604F:	drivers/media/v4l2-core/videobuf2-*
8605F:	include/media/videobuf2-*
8606
8607VIRTIO CONSOLE DRIVER
8608M:	Amit Shah <amit.shah@redhat.com>
8609L:	virtualization@lists.linux-foundation.org
8610S:	Maintained
8611F:	drivers/char/virtio_console.c
8612F:	include/linux/virtio_console.h
8613F:	include/uapi/linux/virtio_console.h
8614
8615VIRTIO CORE, NET AND BLOCK DRIVERS
8616M:	Rusty Russell <rusty@rustcorp.com.au>
8617M:	"Michael S. Tsirkin" <mst@redhat.com>
8618L:	virtualization@lists.linux-foundation.org
8619S:	Maintained
8620F:	drivers/virtio/
8621F:	drivers/net/virtio_net.c
8622F:	drivers/block/virtio_blk.c
8623F:	include/linux/virtio_*.h
8624
8625VIRTIO HOST (VHOST)
8626M:	"Michael S. Tsirkin" <mst@redhat.com>
8627L:	kvm@vger.kernel.org
8628L:	virtualization@lists.linux-foundation.org
8629L:	netdev@vger.kernel.org
8630S:	Maintained
8631F:	drivers/vhost/
8632F:	include/uapi/linux/vhost.h
8633
8634VIA RHINE NETWORK DRIVER
8635M:	Roger Luethi <rl@hellgate.ch>
8636S:	Maintained
8637F:	drivers/net/ethernet/via/via-rhine.c
8638
8639VIA SD/MMC CARD CONTROLLER DRIVER
8640M:	Bruce Chang <brucechang@via.com.tw>
8641M:	Harald Welte <HaraldWelte@viatech.com>
8642S:	Maintained
8643F:	drivers/mmc/host/via-sdmmc.c
8644
8645VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
8646M:	Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
8647L:	linux-fbdev@vger.kernel.org
8648S:	Maintained
8649F:	include/linux/via-core.h
8650F:	include/linux/via-gpio.h
8651F:	include/linux/via_i2c.h
8652F:	drivers/video/via/
8653
8654VIA VELOCITY NETWORK DRIVER
8655M:	Francois Romieu <romieu@fr.zoreil.com>
8656L:	netdev@vger.kernel.org
8657S:	Maintained
8658F:	drivers/net/ethernet/via/via-velocity.*
8659
8660VIVI VIRTUAL VIDEO DRIVER
8661M:	Hans Verkuil <hverkuil@xs4all.nl>
8662L:	linux-media@vger.kernel.org
8663T:	git git://linuxtv.org/media_tree.git
8664W:	http://linuxtv.org
8665S:	Maintained
8666F:	drivers/media/platform/vivi*
8667
8668VLAN (802.1Q)
8669M:	Patrick McHardy <kaber@trash.net>
8670L:	netdev@vger.kernel.org
8671S:	Maintained
8672F:	drivers/net/macvlan.c
8673F:	include/linux/if_*vlan.h
8674F:	net/8021q/
8675
8676VLYNQ BUS
8677M:	Florian Fainelli <florian@openwrt.org>
8678L:	openwrt-devel@lists.openwrt.org (subscribers-only)
8679S:	Maintained
8680F:	drivers/vlynq/vlynq.c
8681F:	include/linux/vlynq.h
8682
8683VME SUBSYSTEM
8684M:	Martyn Welch <martyn.welch@ge.com>
8685M:	Manohar Vanga <manohar.vanga@gmail.com>
8686M:	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8687L:	devel@driverdev.osuosl.org
8688S:	Maintained
8689T:	git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
8690F:	Documentation/vme_api.txt
8691F:	drivers/staging/vme/
8692F:	drivers/vme/
8693F:	include/linux/vme*
8694
8695VMWARE VMXNET3 ETHERNET DRIVER
8696M:	Shreyas Bhatewara <sbhatewara@vmware.com>
8697M:	"VMware, Inc." <pv-drivers@vmware.com>
8698L:	netdev@vger.kernel.org
8699S:	Maintained
8700F:	drivers/net/vmxnet3/
8701
8702VMware PVSCSI driver
8703M:	Arvind Kumar <arvindkumar@vmware.com>
8704M:	VMware PV-Drivers <pv-drivers@vmware.com>
8705L:	linux-scsi@vger.kernel.org
8706S:	Maintained
8707F:	drivers/scsi/vmw_pvscsi.c
8708F:	drivers/scsi/vmw_pvscsi.h
8709
8710VOLTAGE AND CURRENT REGULATOR FRAMEWORK
8711M:	Liam Girdwood <lrg@ti.com>
8712M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
8713W:	http://opensource.wolfsonmicro.com/node/15
8714W:	http://www.slimlogic.co.uk/?p=48
8715T:	git git://git.kernel.org/pub/scm/linux/kernel/git/lrg/regulator.git
8716S:	Supported
8717F:	drivers/regulator/
8718F:	include/linux/regulator/
8719
8720VT1211 HARDWARE MONITOR DRIVER
8721M:	Juerg Haefliger <juergh@gmail.com>
8722L:	lm-sensors@lm-sensors.org
8723S:	Maintained
8724F:	Documentation/hwmon/vt1211
8725F:	drivers/hwmon/vt1211.c
8726
8727VT8231 HARDWARE MONITOR DRIVER
8728M:	Roger Lucas <vt8231@hiddenengine.co.uk>
8729L:	lm-sensors@lm-sensors.org
8730S:	Maintained
8731F:	drivers/hwmon/vt8231.c
8732
8733VUB300 USB to SDIO/SD/MMC bridge chip
8734M:	Tony Olech <tony.olech@elandigitalsystems.com>
8735L:	linux-mmc@vger.kernel.org
8736L:	linux-usb@vger.kernel.org
8737S:	Supported
8738F:	drivers/mmc/host/vub300.c
8739
8740W1 DALLAS'S 1-WIRE BUS
8741M:	Evgeniy Polyakov <zbr@ioremap.net>
8742S:	Maintained
8743F:	Documentation/w1/
8744F:	drivers/w1/
8745
8746W83791D HARDWARE MONITORING DRIVER
8747M:	Marc Hulsman <m.hulsman@tudelft.nl>
8748L:	lm-sensors@lm-sensors.org
8749S:	Maintained
8750F:	Documentation/hwmon/w83791d
8751F:	drivers/hwmon/w83791d.c
8752
8753W83793 HARDWARE MONITORING DRIVER
8754M:	Rudolf Marek <r.marek@assembler.cz>
8755L:	lm-sensors@lm-sensors.org
8756S:	Maintained
8757F:	Documentation/hwmon/w83793
8758F:	drivers/hwmon/w83793.c
8759
8760W83795 HARDWARE MONITORING DRIVER
8761M:	Jean Delvare <khali@linux-fr.org>
8762L:	lm-sensors@lm-sensors.org
8763S:	Maintained
8764F:	drivers/hwmon/w83795.c
8765
8766W83L51xD SD/MMC CARD INTERFACE DRIVER
8767M:	Pierre Ossman <pierre@ossman.eu>
8768S:	Maintained
8769F:	drivers/mmc/host/wbsd.*
8770
8771WATCHDOG DEVICE DRIVERS
8772M:	Wim Van Sebroeck <wim@iguana.be>
8773L:	linux-watchdog@vger.kernel.org
8774W:	http://www.linux-watchdog.org/
8775T:	git git://www.linux-watchdog.org/linux-watchdog.git
8776S:	Maintained
8777F:	Documentation/watchdog/
8778F:	drivers/watchdog/
8779F:	include/linux/watchdog.h
8780F:	include/uapi/linux/watchdog.h
8781
8782WD7000 SCSI DRIVER
8783M:	Miroslav Zagorac <zaga@fly.cc.fer.hr>
8784L:	linux-scsi@vger.kernel.org
8785S:	Maintained
8786F:	drivers/scsi/wd7000.c
8787
8788WIIMOTE HID DRIVER
8789M:	David Herrmann <dh.herrmann@googlemail.com>
8790L:	linux-input@vger.kernel.org
8791S:	Maintained
8792F:	drivers/hid/hid-wiimote*
8793
8794WINBOND CIR DRIVER
8795M:	David Härdeman <david@hardeman.nu>
8796S:	Maintained
8797F:	drivers/media/rc/winbond-cir.c
8798
8799WIMAX STACK
8800M:	Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
8801M:	linux-wimax@intel.com
8802L:	wimax@linuxwimax.org
8803S:	Supported
8804W:	http://linuxwimax.org
8805F:	Documentation/wimax/README.wimax
8806F:	include/linux/wimax/debug.h
8807F:	include/net/wimax.h
8808F:	include/uapi/linux/wimax.h
8809F:	net/wimax/
8810
8811WISTRON LAPTOP BUTTON DRIVER
8812M:	Miloslav Trmac <mitr@volny.cz>
8813S:	Maintained
8814F:	drivers/input/misc/wistron_btns.c
8815
8816WL3501 WIRELESS PCMCIA CARD DRIVER
8817M:	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
8818L:	linux-wireless@vger.kernel.org
8819W:	http://oops.ghostprotocols.net:81/blog
8820S:	Maintained
8821F:	drivers/net/wireless/wl3501*
8822
8823WM97XX TOUCHSCREEN DRIVERS
8824M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
8825M:	Liam Girdwood <lrg@slimlogic.co.uk>
8826L:	linux-input@vger.kernel.org
8827T:	git git://opensource.wolfsonmicro.com/linux-2.6-touch
8828W:	http://opensource.wolfsonmicro.com/node/7
8829S:	Supported
8830F:	drivers/input/touchscreen/*wm97*
8831F:	include/linux/wm97xx.h
8832
8833WOLFSON MICROELECTRONICS DRIVERS
8834M:	Mark Brown <broonie@opensource.wolfsonmicro.com>
8835L:	patches@opensource.wolfsonmicro.com
8836T:	git git://opensource.wolfsonmicro.com/linux-2.6-asoc
8837T:	git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
8838W:	http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
8839S:	Supported
8840F:	Documentation/hwmon/wm83??
8841F:	arch/arm/mach-s3c64xx/mach-crag6410*
8842F:	drivers/clk/clk-wm83*.c
8843F:	drivers/extcon/extcon-arizona.c
8844F:	drivers/leds/leds-wm83*.c
8845F:	drivers/gpio/gpio-*wm*.c
8846F:	drivers/gpio/gpio-arizona.c
8847F:	drivers/hwmon/wm83??-hwmon.c
8848F:	drivers/input/misc/wm831x-on.c
8849F:	drivers/input/touchscreen/wm831x-ts.c
8850F:	drivers/input/touchscreen/wm97*.c
8851F:	drivers/mfd/arizona*
8852F:	drivers/mfd/wm*.c
8853F:	drivers/power/wm83*.c
8854F:	drivers/rtc/rtc-wm83*.c
8855F:	drivers/regulator/wm8*.c
8856F:	drivers/video/backlight/wm83*_bl.c
8857F:	drivers/watchdog/wm83*_wdt.c
8858F:	include/linux/mfd/arizona/
8859F:	include/linux/mfd/wm831x/
8860F:	include/linux/mfd/wm8350/
8861F:	include/linux/mfd/wm8400*
8862F:	include/linux/wm97xx.h
8863F:	include/sound/wm????.h
8864F:	sound/soc/codecs/arizona.?
8865F:	sound/soc/codecs/wm*
8866
8867WORKQUEUE
8868M:	Tejun Heo <tj@kernel.org>
8869T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
8870S:	Maintained
8871F:	include/linux/workqueue.h
8872F:	kernel/workqueue.c
8873F:	Documentation/workqueue.txt
8874
8875X.25 NETWORK LAYER
8876M:	Andrew Hendry <andrew.hendry@gmail.com>
8877L:	linux-x25@vger.kernel.org
8878S:	Odd Fixes
8879F:	Documentation/networking/x25*
8880F:	include/net/x25*
8881F:	net/x25/
8882
8883X86 ARCHITECTURE (32-BIT AND 64-BIT)
8884M:	Thomas Gleixner <tglx@linutronix.de>
8885M:	Ingo Molnar <mingo@redhat.com>
8886M:	"H. Peter Anvin" <hpa@zytor.com>
8887M:	x86@kernel.org
8888T:	git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
8889S:	Maintained
8890F:	Documentation/x86/
8891F:	arch/x86/
8892
8893X86 PLATFORM DRIVERS
8894M:	Matthew Garrett <matthew.garrett@nebula.com>
8895L:	platform-driver-x86@vger.kernel.org
8896T:	git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
8897S:	Maintained
8898F:	drivers/platform/x86
8899
8900X86 MCE INFRASTRUCTURE
8901M:	Tony Luck <tony.luck@intel.com>
8902M:	Borislav Petkov <bp@alien8.de>
8903L:	linux-edac@vger.kernel.org
8904S:	Maintained
8905F:	arch/x86/kernel/cpu/mcheck/*
8906
8907XC2028/3028 TUNER DRIVER
8908M:	Mauro Carvalho Chehab <mchehab@redhat.com>
8909L:	linux-media@vger.kernel.org
8910W:	http://linuxtv.org
8911T:	git git://linuxtv.org/media_tree.git
8912S:	Maintained
8913F:	drivers/media/tuners/tuner-xc2028.*
8914
8915XEN HYPERVISOR INTERFACE
8916M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8917M:	Jeremy Fitzhardinge <jeremy@goop.org>
8918L:	xen-devel@lists.xensource.com (moderated for non-subscribers)
8919L:	virtualization@lists.linux-foundation.org
8920S:	Supported
8921F:	arch/x86/xen/
8922F:	drivers/*/xen-*front.c
8923F:	drivers/xen/
8924F:	arch/x86/include/asm/xen/
8925F:	include/xen/
8926F:	include/uapi/xen/
8927
8928XEN HYPERVISOR ARM
8929M:	Stefano Stabellini <stefano.stabellini@eu.citrix.com>
8930L:	xen-devel@lists.xensource.com (moderated for non-subscribers)
8931S:	Supported
8932F:	arch/arm/xen/
8933F:	arch/arm/include/asm/xen/
8934
8935XEN NETWORK BACKEND DRIVER
8936M:	Ian Campbell <ian.campbell@citrix.com>
8937L:	xen-devel@lists.xensource.com (moderated for non-subscribers)
8938L:	netdev@vger.kernel.org
8939S:	Supported
8940F:	drivers/net/xen-netback/*
8941
8942XEN PCI SUBSYSTEM
8943M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8944L:	xen-devel@lists.xensource.com (moderated for non-subscribers)
8945S:	Supported
8946F:	arch/x86/pci/*xen*
8947F:	drivers/pci/*xen*
8948
8949XEN SWIOTLB SUBSYSTEM
8950M:	Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8951L:	xen-devel@lists.xensource.com (moderated for non-subscribers)
8952S:	Supported
8953F:	arch/x86/xen/*swiotlb*
8954F:	drivers/xen/*swiotlb*
8955
8956XFS FILESYSTEM
8957P:	Silicon Graphics Inc
8958M:	Ben Myers <bpm@sgi.com>
8959M:	Alex Elder <elder@kernel.org>
8960M:	xfs@oss.sgi.com
8961L:	xfs@oss.sgi.com
8962W:	http://oss.sgi.com/projects/xfs
8963T:	git git://oss.sgi.com/xfs/xfs.git
8964S:	Supported
8965F:	Documentation/filesystems/xfs.txt
8966F:	fs/xfs/
8967
8968XILINX AXI ETHERNET DRIVER
8969M:	Anirudha Sarangi <anirudh@xilinx.com>
8970M:	John Linn <John.Linn@xilinx.com>
8971S:	Maintained
8972F:	drivers/net/ethernet/xilinx/xilinx_axienet*
8973
8974XILINX SYSTEMACE DRIVER
8975M:	Grant Likely <grant.likely@secretlab.ca>
8976W:	http://www.secretlab.ca/
8977S:	Maintained
8978F:	drivers/block/xsysace.c
8979
8980XILINX UARTLITE SERIAL DRIVER
8981M:	Peter Korsgaard <jacmet@sunsite.dk>
8982L:	linux-serial@vger.kernel.org
8983S:	Maintained
8984F:	drivers/tty/serial/uartlite.c
8985
8986YAM DRIVER FOR AX.25
8987M:	Jean-Paul Roubelat <jpr@f6fbb.org>
8988L:	linux-hams@vger.kernel.org
8989S:	Maintained
8990F:	drivers/net/hamradio/yam*
8991F:	include/linux/yam.h
8992
8993YEALINK PHONE DRIVER
8994M:	Henk Vergonet <Henk.Vergonet@gmail.com>
8995L:	usbb2k-api-dev@nongnu.org
8996S:	Maintained
8997F:	Documentation/input/yealink.txt
8998F:	drivers/input/misc/yealink.*
8999
9000Z8530 DRIVER FOR AX.25
9001M:	Joerg Reuter <jreuter@yaina.de>
9002W:	http://yaina.de/jreuter/
9003W:	http://www.qsl.net/dl1bke/
9004L:	linux-hams@vger.kernel.org
9005S:	Maintained
9006F:	Documentation/networking/z8530drv.txt
9007F:	drivers/net/hamradio/*scc.c
9008F:	drivers/net/hamradio/z8530.h
9009
9010ZD1211RW WIRELESS DRIVER
9011M:	Daniel Drake <dsd@gentoo.org>
9012M:	Ulrich Kunitz <kune@deine-taler.de>
9013W:	http://zd1211.ath.cx/wiki/DriverRewrite
9014L:	linux-wireless@vger.kernel.org
9015L:	zd1211-devs@lists.sourceforge.net (subscribers-only)
9016S:	Maintained
9017F:	drivers/net/wireless/zd1211rw/
9018
9019ZR36067 VIDEO FOR LINUX DRIVER
9020L:	mjpeg-users@lists.sourceforge.net
9021L:	linux-media@vger.kernel.org
9022W:	http://mjpeg.sourceforge.net/driver-zoran/
9023T:	Mercurial http://linuxtv.org/hg/v4l-dvb
9024S:	Odd Fixes
9025F:	drivers/media/pci/zoran/
9026
9027ZS DECSTATION Z85C30 SERIAL DRIVER
9028M:	"Maciej W. Rozycki" <macro@linux-mips.org>
9029S:	Maintained
9030F:	drivers/tty/serial/zs.*
9031
9032THE REST
9033M:	Linus Torvalds <torvalds@linux-foundation.org>
9034L:	linux-kernel@vger.kernel.org
9035Q:	http://patchwork.kernel.org/project/LKML/list/
9036T:	git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
9037S:	Buried alive in reporters
9038F:	*
9039F:	*/
9040