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