3 List of maintainers and how to submit kernel changes
5 Please try to follow the guidelines below. This will make things
6 easier on the maintainers. Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
9 1. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
12 2. 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.)
20 3. 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.
24 4. When you are happy with a change make it generally available for
25 testing and await feedback.
27 5. 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.
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.
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.
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.
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
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.
59 6. 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
63 7. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
69 Descriptions of section entries:
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
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 scripts/get_maintainer.pl has different behavior for files that
97 match F: pattern and matches of N: patterns. By default,
98 get_maintainer will not look at git log history when an F: pattern
99 match occurs. When an N: match occurs, git log history is used
100 to also notify the people that have git commit signatures.
101 X: Files and directories that are NOT maintained, same rules as F:
102 Files exclusions are tested before file matches.
103 Can be useful for excluding a specific subdirectory, for instance:
106 matches all files in and below net excluding net/ipv6/
107 K: Keyword perl extended regex pattern to match content in a
108 patch or file. For instance:
110 matches patches or files that contain "of_get_profile"
111 K: \b(printk|pr_(info|err))\b
112 matches patches or files that contain one or more of the words
113 printk, pr_info or pr_err
114 One regex pattern per line. Multiple K: lines acceptable.
116 Note: For the hard of thinking, this list is meant to remain in alphabetical
117 order. If you could add yourselves to it in alphabetical order that would be
120 Maintainers List (try to look for most precise areas first)
122 -----------------------------------
125 M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
126 L: netdev@vger.kernel.org
128 F: Documentation/networking/vortex.txt
129 F: drivers/net/ethernet/3com/3c59x.c
131 3CR990 NETWORK DRIVER
132 M: David Dillow <dave@thedillows.org>
133 L: netdev@vger.kernel.org
135 F: drivers/net/ethernet/3com/typhoon*
137 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
138 M: Adam Radford <linuxraid@lsi.com>
139 L: linux-scsi@vger.kernel.org
140 W: http://www.lsi.com
144 53C700 AND 53C700-66 SCSI DRIVER
145 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
146 L: linux-scsi@vger.kernel.org
148 F: drivers/scsi/53c700*
150 6PACK NETWORK DRIVER FOR AX.25
151 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
152 L: linux-hams@vger.kernel.org
154 F: drivers/net/hamradio/6pack.c
156 8169 10/100/1000 GIGABIT ETHERNET DRIVER
157 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
158 M: Francois Romieu <romieu@fr.zoreil.com>
159 L: netdev@vger.kernel.org
161 F: drivers/net/ethernet/realtek/r8169.c
163 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
164 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
165 L: linux-serial@vger.kernel.org
166 W: http://serial.sourceforge.net
168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
169 F: drivers/tty/serial/8250*
170 F: include/linux/serial_8250.h
172 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
173 L: netdev@vger.kernel.org
175 F: drivers/net/ethernet/8390/
178 M: Eric Van Hensbergen <ericvh@gmail.com>
179 M: Ron Minnich <rminnich@sandia.gov>
180 M: Latchesar Ionkov <lucho@ionkov.net>
181 L: v9fs-developer@lists.sourceforge.net
182 W: http://swik.net/v9fs
183 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
186 F: Documentation/filesystems/9p.txt
190 F: include/uapi/linux/virtio_9p.h
191 F: include/trace/events/9p.h
195 M: Antti Palosaari <crope@iki.fi>
196 L: linux-media@vger.kernel.org
197 W: http://linuxtv.org/
198 W: http://palosaari.fi/linux/
199 Q: http://patchwork.linuxtv.org/project/linux-media/list/
200 T: git git://linuxtv.org/anttip/media_tree.git
202 F: drivers/media/dvb-frontends/a8293*
204 AACRAID SCSI RAID DRIVER
205 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
206 L: linux-scsi@vger.kernel.org
207 W: http://www.adaptec.com/
209 F: Documentation/scsi/aacraid.txt
210 F: drivers/scsi/aacraid/
212 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
213 M: Hans de Goede <hdegoede@redhat.com>
214 L: lm-sensors@lm-sensors.org
216 F: drivers/hwmon/abituguru.c
218 ABIT UGURU 3 HARDWARE MONITOR DRIVER
219 M: Alistair John Strachan <alistair@devzero.co.uk>
220 L: lm-sensors@lm-sensors.org
222 F: drivers/hwmon/abituguru3.c
225 M: Jes Sorensen <jes@trained-monkey.org>
226 L: linux-acenic@sunsite.dk
228 F: drivers/net/ethernet/alteon/acenic*
230 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
231 M: Peter Feuerer <peter@piie.net>
232 L: platform-driver-x86@vger.kernel.org
233 W: http://piie.net/?section=acerhdf
235 F: drivers/platform/x86/acerhdf.c
237 ACER WMI LAPTOP EXTRAS
238 M: "Lee, Chun-Yi" <jlee@suse.com>
239 L: platform-driver-x86@vger.kernel.org
241 F: drivers/platform/x86/acer-wmi.c
244 M: Len Brown <lenb@kernel.org>
245 M: Rafael J. Wysocki <rjw@rjwysocki.net>
246 L: linux-acpi@vger.kernel.org
247 W: https://01.org/linux-acpi
248 Q: https://patchwork.kernel.org/project/linux-acpi/list/
249 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
252 F: drivers/pnp/pnpacpi/
253 F: include/linux/acpi.h
255 F: Documentation/acpi
256 F: Documentation/ABI/testing/sysfs-bus-acpi
257 F: drivers/pci/*acpi*
258 F: drivers/pci/*/*acpi*
259 F: drivers/pci/*/*/*acpi*
262 ACPI COMPONENT ARCHITECTURE (ACPICA)
263 M: Robert Moore <robert.moore@intel.com>
264 M: Lv Zheng <lv.zheng@intel.com>
265 M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
266 L: linux-acpi@vger.kernel.org
268 W: https://acpica.org/
269 W: https://github.com/acpica/acpica/
270 Q: https://patchwork.kernel.org/project/linux-acpi/list/
271 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
273 F: drivers/acpi/acpica/
278 M: Zhang Rui <rui.zhang@intel.com>
279 L: linux-acpi@vger.kernel.org
280 W: https://01.org/linux-acpi
282 F: drivers/acpi/fan.c
285 M: Zhang Rui <rui.zhang@intel.com>
286 L: linux-acpi@vger.kernel.org
287 W: https://01.org/linux-acpi
289 F: drivers/acpi/*thermal*
292 M: Zhang Rui <rui.zhang@intel.com>
293 L: linux-acpi@vger.kernel.org
294 W: https://01.org/linux-acpi
296 F: drivers/acpi/video.c
299 L: platform-driver-x86@vger.kernel.org
301 F: drivers/platform/x86/wmi.c
303 AD1889 ALSA SOUND DRIVER
304 M: Thibaut Varene <T-Bone@parisc-linux.org>
305 W: http://wiki.parisc-linux.org/AD1889
306 L: linux-parisc@vger.kernel.org
308 F: sound/pci/ad1889.*
310 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
311 M: Michael Hennerich <michael.hennerich@analog.com>
312 W: http://wiki.analog.com/AD5254
313 W: http://ez.analog.com/community/linux-device-drivers
315 F: drivers/misc/ad525x_dpot.c
317 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
318 M: Michael Hennerich <michael.hennerich@analog.com>
319 W: http://wiki.analog.com/AD5398
320 W: http://ez.analog.com/community/linux-device-drivers
322 F: drivers/regulator/ad5398.c
324 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
325 M: Michael Hennerich <michael.hennerich@analog.com>
326 W: http://wiki.analog.com/AD7142
327 W: http://ez.analog.com/community/linux-device-drivers
329 F: drivers/input/misc/ad714x.c
331 AD7877 TOUCHSCREEN DRIVER
332 M: Michael Hennerich <michael.hennerich@analog.com>
333 W: http://wiki.analog.com/AD7877
334 W: http://ez.analog.com/community/linux-device-drivers
336 F: drivers/input/touchscreen/ad7877.c
338 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
339 M: Michael Hennerich <michael.hennerich@analog.com>
340 W: http://wiki.analog.com/AD7879
341 W: http://ez.analog.com/community/linux-device-drivers
343 F: drivers/input/touchscreen/ad7879.c
345 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
346 M: Jiri Kosina <jkosina@suse.cz>
349 ADM1025 HARDWARE MONITOR DRIVER
350 M: Jean Delvare <jdelvare@suse.de>
351 L: lm-sensors@lm-sensors.org
353 F: Documentation/hwmon/adm1025
354 F: drivers/hwmon/adm1025.c
356 ADM1029 HARDWARE MONITOR DRIVER
357 M: Corentin Labbe <corentin.labbe@geomatys.fr>
358 L: lm-sensors@lm-sensors.org
360 F: drivers/hwmon/adm1029.c
362 ADM8211 WIRELESS DRIVER
363 L: linux-wireless@vger.kernel.org
364 W: http://wireless.kernel.org/
366 F: drivers/net/wireless/adm8211.*
368 ADP1653 FLASH CONTROLLER DRIVER
369 M: Sakari Ailus <sakari.ailus@iki.fi>
370 L: linux-media@vger.kernel.org
372 F: drivers/media/i2c/adp1653.c
373 F: include/media/adp1653.h
375 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
376 M: Michael Hennerich <michael.hennerich@analog.com>
377 W: http://wiki.analog.com/ADP5520
378 W: http://ez.analog.com/community/linux-device-drivers
380 F: drivers/mfd/adp5520.c
381 F: drivers/video/backlight/adp5520_bl.c
382 F: drivers/leds/leds-adp5520.c
383 F: drivers/gpio/gpio-adp5520.c
384 F: drivers/input/keyboard/adp5520-keys.c
386 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
387 M: Michael Hennerich <michael.hennerich@analog.com>
388 W: http://wiki.analog.com/ADP5588
389 W: http://ez.analog.com/community/linux-device-drivers
391 F: drivers/input/keyboard/adp5588-keys.c
392 F: drivers/gpio/gpio-adp5588.c
394 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
395 M: Michael Hennerich <michael.hennerich@analog.com>
396 W: http://wiki.analog.com/ADP8860
397 W: http://ez.analog.com/community/linux-device-drivers
399 F: drivers/video/backlight/adp8860_bl.c
401 ADS1015 HARDWARE MONITOR DRIVER
402 M: Dirk Eibach <eibach@gdsys.de>
403 L: lm-sensors@lm-sensors.org
405 F: Documentation/hwmon/ads1015
406 F: drivers/hwmon/ads1015.c
407 F: include/linux/i2c/ads1015.h
410 M: Colin Leroy <colin@colino.net>
412 F: drivers/macintosh/therm_adt746x.c
414 ADT7475 HARDWARE MONITOR DRIVER
415 M: Jean Delvare <jdelvare@suse.de>
416 L: lm-sensors@lm-sensors.org
418 F: Documentation/hwmon/adt7475
419 F: drivers/hwmon/adt7475.c
421 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
422 M: Michael Hennerich <michael.hennerich@analog.com>
423 W: http://wiki.analog.com/ADXL345
424 W: http://ez.analog.com/community/linux-device-drivers
426 F: drivers/input/misc/adxl34x.c
429 M: Matthew Wilcox <matthew@wil.cx>
430 L: linux-scsi@vger.kernel.org
432 F: Documentation/scsi/advansys.txt
433 F: drivers/scsi/advansys.c
436 M: Riccardo Facchetti <fizban@tin.it>
438 F: sound/oss/aedsp16.c
441 M: Antti Palosaari <crope@iki.fi>
442 L: linux-media@vger.kernel.org
443 W: http://linuxtv.org/
444 W: http://palosaari.fi/linux/
445 Q: http://patchwork.linuxtv.org/project/linux-media/list/
446 T: git git://linuxtv.org/anttip/media_tree.git
448 F: drivers/media/dvb-frontends/af9013*
451 M: Antti Palosaari <crope@iki.fi>
452 L: linux-media@vger.kernel.org
453 W: http://linuxtv.org/
454 W: http://palosaari.fi/linux/
455 Q: http://patchwork.linuxtv.org/project/linux-media/list/
456 T: git git://linuxtv.org/anttip/media_tree.git
458 F: drivers/media/dvb-frontends/af9033*
461 L: linux-fsdevel@vger.kernel.org
463 F: Documentation/filesystems/affs.txt
466 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
467 M: David Howells <dhowells@redhat.com>
468 L: linux-afs@lists.infradead.org
471 F: include/net/af_rxrpc.h
472 F: net/rxrpc/af_rxrpc.c
475 M: David Airlie <airlied@linux.ie>
476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
479 F: include/linux/agp*
480 F: include/uapi/linux/agp*
483 M: "Juergen E. Fischer" <fischer@norbit.de>
484 L: linux-scsi@vger.kernel.org
486 F: drivers/scsi/aha152x*
487 F: drivers/scsi/pcmcia/aha152x*
489 AIC7XXX / AIC79XX SCSI DRIVER
490 M: Hannes Reinecke <hare@suse.de>
491 L: linux-scsi@vger.kernel.org
493 F: drivers/scsi/aic7xxx/
495 AIMSLAB FM RADIO RECEIVER DRIVER
496 M: Hans Verkuil <hverkuil@xs4all.nl>
497 L: linux-media@vger.kernel.org
498 T: git git://linuxtv.org/media_tree.git
499 W: http://linuxtv.org
501 F: drivers/media/radio/radio-aimslab*
504 M: Benjamin LaHaise <bcrl@kvack.org>
505 L: linux-aio@kvack.org
508 F: include/linux/*aio*.h
510 ALCATEL SPEEDTOUCH USB DRIVER
511 M: Duncan Sands <duncan.sands@free.fr>
512 L: linux-usb@vger.kernel.org
513 W: http://www.linux-usb.org/SpeedTouch/
515 F: drivers/usb/atm/speedtch.c
516 F: drivers/usb/atm/usbatm.c
518 ALCHEMY AU1XX0 MMC DRIVER
519 M: Manuel Lauss <manuel.lauss@gmail.com>
521 F: drivers/mmc/host/au1xmmc.c
524 M: Rudolf Marek <r.marek@assembler.cz>
525 L: linux-i2c@vger.kernel.org
527 F: Documentation/i2c/busses/i2c-ali1563
528 F: drivers/i2c/busses/i2c-ali1563.c
531 M: Richard Henderson <rth@twiddle.net>
532 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
533 M: Matt Turner <mattst88@gmail.com>
535 L: linux-alpha@vger.kernel.org
538 ALTERA UART/JTAG UART SERIAL DRIVERS
539 M: Tobias Klauser <tklauser@distanz.ch>
540 L: linux-serial@vger.kernel.org
541 L: nios2-dev@sopc.et.ntust.edu.tw (moderated for non-subscribers)
543 F: drivers/tty/serial/altera_uart.c
544 F: drivers/tty/serial/altera_jtaguart.c
545 F: include/linux/altera_uart.h
546 F: include/linux/altera_jtaguart.h
548 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
549 M: Tom Lendacky <thomas.lendacky@amd.com>
550 L: linux-crypto@vger.kernel.org
552 F: drivers/crypto/ccp/
553 F: include/linux/ccp.h
555 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
556 M: Andreas Herrmann <herrmann.der.user@googlemail.com>
557 L: lm-sensors@lm-sensors.org
559 F: Documentation/hwmon/fam15h_power
560 F: drivers/hwmon/fam15h_power.c
562 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
563 M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
564 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
566 F: drivers/usb/gadget/amd5536udc.*
568 AMD GEODE PROCESSOR/CHIPSET SUPPORT
569 P: Andres Salomon <dilinger@queued.net>
570 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
571 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
573 F: drivers/char/hw_random/geode-rng.c
574 F: drivers/crypto/geode*
575 F: drivers/video/geode/
576 F: arch/x86/include/asm/geode.h
579 M: Joerg Roedel <joro@8bytes.org>
580 L: iommu@lists.linux-foundation.org
581 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
583 F: drivers/iommu/amd_iommu*.[ch]
584 F: include/linux/amd-iommu.h
586 AMD MICROCODE UPDATE SUPPORT
587 M: Andreas Herrmann <herrmann.der.user@googlemail.com>
588 L: amd64-microcode@amd64.org
590 F: arch/x86/kernel/microcode_amd.c
592 AMS (Apple Motion Sensor) DRIVER
593 M: Michael Hanselmann <linux-kernel@hansmi.ch>
595 F: drivers/macintosh/ams/
598 M: Tom Tucker <tom@opengridcomputing.com>
599 M: Steve Wise <swise@opengridcomputing.com>
600 L: linux-rdma@vger.kernel.org
602 F: drivers/infiniband/hw/amso1100/
604 ANALOG DEVICES INC AD9389B DRIVER
605 M: Hans Verkuil <hans.verkuil@cisco.com>
606 L: linux-media@vger.kernel.org
608 F: drivers/media/i2c/ad9389b*
610 ANALOG DEVICES INC ADV7511 DRIVER
611 M: Hans Verkuil <hans.verkuil@cisco.com>
612 L: linux-media@vger.kernel.org
614 F: drivers/media/i2c/adv7511*
616 ANALOG DEVICES INC ADV7604 DRIVER
617 M: Hans Verkuil <hans.verkuil@cisco.com>
618 L: linux-media@vger.kernel.org
620 F: drivers/media/i2c/adv7604*
622 ANALOG DEVICES INC ADV7842 DRIVER
623 M: Hans Verkuil <hans.verkuil@cisco.com>
624 L: linux-media@vger.kernel.org
626 F: drivers/media/i2c/adv7842*
628 ANALOG DEVICES INC ASOC CODEC DRIVERS
629 M: Lars-Peter Clausen <lars@metafoo.de>
630 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
631 W: http://wiki.analog.com/
632 W: http://ez.analog.com/community/linux-device-drivers
634 F: sound/soc/codecs/adau*
635 F: sound/soc/codecs/adav*
636 F: sound/soc/codecs/ad1*
637 F: sound/soc/codecs/ad7*
638 F: sound/soc/codecs/ssm*
639 F: sound/soc/codecs/sigmadsp.*
641 ANALOG DEVICES INC ASOC DRIVERS
642 L: adi-buildroot-devel@lists.sourceforge.net
643 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
644 W: http://blackfin.uclinux.org/
646 F: sound/soc/blackfin/*
648 AOA (Apple Onboard Audio) ALSA DRIVER
649 M: Johannes Berg <johannes@sipsolutions.net>
650 L: linuxppc-dev@lists.ozlabs.org
651 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
656 M: Jiri Kosina <jkosina@suse.cz>
658 F: arch/x86/kernel/apm_32.c
659 F: include/linux/apm_bios.h
660 F: include/uapi/linux/apm_bios.h
661 F: drivers/char/apm-emulation.c
663 APPLE BCM5974 MULTITOUCH DRIVER
664 M: Henrik Rydberg <rydberg@euromail.se>
665 L: linux-input@vger.kernel.org
667 F: drivers/input/mouse/bcm5974.c
670 M: Henrik Rydberg <rydberg@euromail.se>
671 L: lm-sensors@lm-sensors.org
673 F: drivers/hwmon/applesmc.c
675 APPLETALK NETWORK LAYER
676 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
678 F: drivers/net/appletalk/
681 APTINA CAMERA SENSOR PLL
682 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
683 L: linux-media@vger.kernel.org
685 F: drivers/media/i2c/aptina-pll.*
687 ARASAN COMPACT FLASH PATA CONTROLLER
688 M: Viresh Kumar <viresh.linux@gmail.com>
689 L: linux-ide@vger.kernel.org
691 F: include/linux/pata_arasan_cf_data.h
692 F: drivers/ata/pata_arasan_cf.c
694 ARC FRAMEBUFFER DRIVER
695 M: Jaya Kumar <jayalk@intworks.biz>
697 F: drivers/video/arcfb.c
698 F: drivers/video/fb_defio.c
700 ARM MFM AND FLOPPY DRIVERS
701 M: Ian Molton <spyro@f2s.com>
703 F: arch/arm/lib/floppydma.S
704 F: arch/arm/include/asm/floppy.h
706 ARM PMU PROFILING AND DEBUGGING
707 M: Will Deacon <will.deacon@arm.com>
709 F: arch/arm/kernel/perf_event*
710 F: arch/arm/oprofile/common.c
711 F: arch/arm/include/asm/pmu.h
712 F: arch/arm/kernel/hw_breakpoint.c
713 F: arch/arm/include/asm/hw_breakpoint.h
716 M: Russell King <linux@arm.linux.org.uk>
717 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
718 W: http://www.arm.linux.org.uk/
722 ARM SUB-ARCHITECTURES
723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
727 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
729 ARM PRIMECELL AACI PL041 DRIVER
730 M: Russell King <linux@arm.linux.org.uk>
734 ARM PRIMECELL CLCD PL110 DRIVER
735 M: Russell King <linux@arm.linux.org.uk>
737 F: drivers/video/amba-clcd.*
739 ARM PRIMECELL KMI PL050 DRIVER
740 M: Russell King <linux@arm.linux.org.uk>
742 F: drivers/input/serio/ambakmi.*
743 F: include/linux/amba/kmi.h
745 ARM PRIMECELL MMCI PL180/1 DRIVER
746 M: Russell King <linux@arm.linux.org.uk>
748 F: drivers/mmc/host/mmci.*
749 F: include/linux/amba/mmci.h
751 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
752 M: Russell King <linux@arm.linux.org.uk>
754 F: drivers/tty/serial/amba-pl01*.c
755 F: include/linux/amba/serial.h
757 ARM PRIMECELL BUS SUPPORT
758 M: Russell King <linux@arm.linux.org.uk>
761 F: include/linux/amba/bus.h
763 ARM/ADS SPHERE MACHINE SUPPORT
764 M: Lennert Buytenhek <kernel@wantstofly.org>
765 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
768 ARM/AFEB9260 MACHINE SUPPORT
769 M: Sergey Lapin <slapin@ossfans.org>
770 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
773 ARM/AJECO 1ARM MACHINE SUPPORT
774 M: Lennert Buytenhek <kernel@wantstofly.org>
775 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
778 ARM/Allwinner A1X SoC support
779 M: Maxime Ripard <maxime.ripard@free-electrons.com>
780 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
784 ARM/Allwinner SoC Clock Support
785 M: Emilio López <emilio@elopez.com.ar>
787 F: drivers/clk/sunxi/
789 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
790 M: Andrew Victor <linux@maxim.org.za>
791 M: Nicolas Ferre <nicolas.ferre@atmel.com>
792 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
793 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
794 W: http://maxim.org.za/at91_26.html
795 W: http://www.linux4sam.org
797 F: arch/arm/mach-at91/
798 F: arch/arm/boot/dts/at91*.dts
799 F: arch/arm/boot/dts/at91*.dtsi
800 F: arch/arm/boot/dts/sama*.dts
801 F: arch/arm/boot/dts/sama*.dtsi
803 ARM/CALXEDA HIGHBANK ARCHITECTURE
804 M: Rob Herring <robh@kernel.org>
805 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
807 F: arch/arm/mach-highbank/
809 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
810 M: Anton Vorontsov <anton@enomsg.org>
812 F: arch/arm/mach-cns3xxx/
813 T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
815 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
816 M: Alexander Shiyan <shc_work@mail.ru>
817 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
819 F: arch/arm/mach-clps711x/
821 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
822 M: Hartley Sweeten <hsweeten@visionengravers.com>
823 M: Ryan Mallon <rmallon@gmail.com>
824 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
826 F: arch/arm/mach-ep93xx/
827 F: arch/arm/mach-ep93xx/include/mach/
829 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
830 M: Lennert Buytenhek <kernel@wantstofly.org>
831 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
835 M: Russell King <linux@arm.linux.org.uk>
836 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
838 F: arch/arm/include/asm/clkdev.h
839 F: drivers/clk/clkdev.c
841 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
842 M: Mike Rapoport <mike@compulab.co.il>
843 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
846 ARM/CONTEC MICRO9 MACHINE SUPPORT
847 M: Hubert Feurstein <hubert.feurstein@contec.at>
849 F: arch/arm/mach-ep93xx/micro9.c
851 ARM/CORGI MACHINE SUPPORT
852 M: Richard Purdie <rpurdie@rpsys.net>
855 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
856 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
857 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
858 T: git git://git.berlios.de/gemini-board
860 F: arch/arm/mach-gemini/
862 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
863 M: Barry Song <baohua@kernel.org>
864 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
867 F: arch/arm/mach-prima2/
868 F: drivers/clk/clk-prima2.c
869 F: drivers/clocksource/timer-prima2.c
870 F: drivers/clocksource/timer-marco.c
873 ARM/EBSA110 MACHINE SUPPORT
874 M: Russell King <linux@arm.linux.org.uk>
875 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
876 W: http://www.arm.linux.org.uk/
878 F: arch/arm/mach-ebsa110/
879 F: drivers/net/ethernet/amd/am79c961a.*
881 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
882 M: Uwe Kleine-König <kernel@pengutronix.de>
883 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
887 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
888 M: Daniel Ribeiro <drwyrm@gmail.com>
889 M: Stefan Schmidt <stefan@openezx.org>
890 M: Harald Welte <laforge@openezx.org>
891 L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
892 W: http://www.openezx.org/
894 T: topgit git://git.openezx.org/openezx.git
895 F: arch/arm/mach-pxa/ezx.c
897 ARM/FARADAY FA526 PORT
898 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
899 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901 T: git git://git.berlios.de/gemini-board
904 ARM/FOOTBRIDGE ARCHITECTURE
905 M: Russell King <linux@arm.linux.org.uk>
906 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 W: http://www.arm.linux.org.uk/
909 F: arch/arm/include/asm/hardware/dec21285.h
910 F: arch/arm/mach-footbridge/
912 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
913 M: Shawn Guo <shawn.guo@linaro.org>
914 M: Sascha Hauer <kernel@pengutronix.de>
915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
918 F: arch/arm/mach-imx/
919 F: arch/arm/boot/dts/imx*
920 F: arch/arm/configs/imx*_defconfig
922 ARM/FREESCALE MXS ARM ARCHITECTURE
923 M: Shawn Guo <shawn.guo@linaro.org>
924 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926 T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
927 F: arch/arm/mach-mxs/
929 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
930 M: Lennert Buytenhek <kernel@wantstofly.org>
931 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 ARM/GUMSTIX MACHINE SUPPORT
935 M: Steve Sakoman <sakoman@gmail.com>
936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
940 M: Philipp Zabel <philipp.zabel@gmail.com>
941 M: Paul Parsons <lost.distance@yahoo.com>
942 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 F: arch/arm/mach-pxa/hx4700.c
945 F: arch/arm/mach-pxa/include/mach/hx4700.h
946 F: sound/soc/pxa/hx4700.c
948 ARM/HP JORNADA 7XX MACHINE SUPPORT
949 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
952 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
953 F: arch/arm/mach-sa1100/jornada720.c
954 F: arch/arm/mach-sa1100/include/mach/jornada720.h
956 ARM/IGEP MACHINE SUPPORT
957 M: Enric Balletbo i Serra <eballetbo@gmail.com>
958 M: Javier Martinez Canillas <javier@dowhile0.org>
959 L: linux-omap@vger.kernel.org
960 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 F: arch/arm/boot/dts/omap3-igep*
964 ARM/INCOME PXA270 SUPPORT
965 M: Marek Vasut <marek.vasut@gmail.com>
966 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 F: arch/arm/mach-pxa/colibri-pxa270-income.c
970 ARM/INTEL IOP32X ARM ARCHITECTURE
971 M: Lennert Buytenhek <kernel@wantstofly.org>
972 M: Dan Williams <dan.j.williams@intel.com>
973 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
976 ARM/INTEL IOP33X ARM ARCHITECTURE
977 M: Dan Williams <dan.j.williams@intel.com>
978 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 ARM/INTEL IOP13XX ARM ARCHITECTURE
982 M: Lennert Buytenhek <kernel@wantstofly.org>
983 M: Dan Williams <dan.j.williams@intel.com>
984 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 ARM/INTEL IQ81342EX MACHINE SUPPORT
988 M: Lennert Buytenhek <kernel@wantstofly.org>
989 M: Dan Williams <dan.j.williams@intel.com>
990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 ARM/INTEL IXDP2850 MACHINE SUPPORT
994 M: Lennert Buytenhek <kernel@wantstofly.org>
995 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 ARM/INTEL IXP4XX ARM ARCHITECTURE
999 M: Imre Kaloz <kaloz@openwrt.org>
1000 M: Krzysztof Halasa <khc@pm.waw.pl>
1001 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 F: arch/arm/mach-ixp4xx/
1005 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1006 M: Jonathan Cameron <jic23@cam.ac.uk>
1007 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1009 F: arch/arm/mach-pxa/stargate2.c
1010 F: drivers/pcmcia/pxa2xx_stargate2.c
1012 ARM/INTEL XSC3 (MANZANO) ARM CORE
1013 M: Lennert Buytenhek <kernel@wantstofly.org>
1014 M: Dan Williams <dan.j.williams@intel.com>
1015 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1019 M: Lennert Buytenhek <kernel@wantstofly.org>
1020 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1024 M: Santosh Shilimkar <santosh.shilimkar@ti.com>
1025 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1027 F: arch/arm/mach-keystone/
1028 F: drivers/clk/keystone/
1029 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1031 ARM/LOGICPD PXA270 MACHINE SUPPORT
1032 M: Lennert Buytenhek <kernel@wantstofly.org>
1033 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 ARM/MAGICIAN MACHINE SUPPORT
1037 M: Philipp Zabel <philipp.zabel@gmail.com>
1040 ARM/Marvell Armada 370 and Armada XP SOC support
1041 M: Jason Cooper <jason@lakedaemon.net>
1042 M: Andrew Lunn <andrew@lunn.ch>
1043 M: Gregory Clement <gregory.clement@free-electrons.com>
1044 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1045 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1047 F: arch/arm/mach-mvebu/
1049 ARM/Marvell Berlin SoC support
1050 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1051 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 F: arch/arm/mach-berlin/
1055 ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
1056 M: Jason Cooper <jason@lakedaemon.net>
1057 M: Andrew Lunn <andrew@lunn.ch>
1058 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1059 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 F: arch/arm/mach-dove/
1062 F: arch/arm/mach-kirkwood/
1063 F: arch/arm/mach-mv78xx0/
1064 F: arch/arm/mach-orion5x/
1065 F: arch/arm/plat-orion/
1067 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1068 M: Alexander Clouter <alex@digriz.org.uk>
1069 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 W: http://www.digriz.org.uk/ts78xx/kernel
1072 F: arch/arm/mach-orion5x/ts78xx-*
1074 ARM/MICREL KS8695 ARCHITECTURE
1075 M: Greg Ungerer <gerg@uclinux.org>
1076 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 F: arch/arm/mach-ks8695/
1080 ARM/MIOA701 MACHINE SUPPORT
1081 M: Robert Jarzmik <robert.jarzmik@free.fr>
1082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 F: arch/arm/mach-pxa/mioa701.c
1086 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1087 M: Michael Petchkovsky <mkpetch@internode.on.net>
1090 ARM/NOMADIK ARCHITECTURE
1091 M: Alessandro Rubini <rubini@unipv.it>
1092 M: Linus Walleij <linus.walleij@linaro.org>
1093 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1095 F: arch/arm/mach-nomadik/
1096 F: drivers/i2c/busses/i2c-nomadik.c
1097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1099 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1100 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1101 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1102 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1105 ARM/QUALCOMM MSM MACHINE SUPPORT
1106 M: David Brown <davidb@codeaurora.org>
1107 M: Daniel Walker <dwalker@fifo99.com>
1108 M: Bryan Huntsman <bryanh@codeaurora.org>
1109 L: linux-arm-msm@vger.kernel.org
1110 F: arch/arm/mach-msm/
1111 F: drivers/video/msm/
1112 F: drivers/mmc/host/msm_sdcc.c
1113 F: drivers/mmc/host/msm_sdcc.h
1114 F: drivers/tty/serial/msm_serial.h
1115 F: drivers/tty/serial/msm_serial.c
1116 F: drivers/*/pm8???-*
1117 F: drivers/mfd/ssbi/
1118 F: include/linux/mfd/pm8xxx/
1119 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1122 ARM/TOSA MACHINE SUPPORT
1123 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1124 M: Dirk Opfer <dirk@opfer-online.de>
1127 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1128 M: Marek Vasut <marek.vasut@gmail.com>
1129 L: linux-arm-kernel@lists.infradead.org
1130 W: http://hackndev.com
1132 F: arch/arm/mach-pxa/include/mach/palmtx.h
1133 F: arch/arm/mach-pxa/palmtx.c
1134 F: arch/arm/mach-pxa/include/mach/palmt5.h
1135 F: arch/arm/mach-pxa/palmt5.c
1136 F: arch/arm/mach-pxa/include/mach/palmld.h
1137 F: arch/arm/mach-pxa/palmld.c
1138 F: arch/arm/mach-pxa/include/mach/palmte2.h
1139 F: arch/arm/mach-pxa/palmte2.c
1140 F: arch/arm/mach-pxa/include/mach/palmtc.h
1141 F: arch/arm/mach-pxa/palmtc.c
1143 ARM/PALM TREO SUPPORT
1144 M: Tomas Cech <sleep_walker@suse.cz>
1145 L: linux-arm-kernel@lists.infradead.org
1146 W: http://hackndev.com
1148 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1149 F: arch/arm/mach-pxa/palmtreo.c
1152 M: Sergey Lapin <slapin@ossfans.org>
1153 L: linux-arm-kernel@lists.infradead.org
1154 W: http://hackndev.com
1156 F: arch/arm/mach-pxa/include/mach/palmz72.h
1157 F: arch/arm/mach-pxa/palmz72.c
1160 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1161 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1164 ARM/PT DIGITAL BOARD PORT
1165 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1166 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 W: http://www.arm.linux.org.uk/
1170 ARM/RADISYS ENP2611 MACHINE SUPPORT
1171 M: Lennert Buytenhek <kernel@wantstofly.org>
1172 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 ARM/RISCPC ARCHITECTURE
1176 M: Russell King <linux@arm.linux.org.uk>
1177 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178 W: http://www.arm.linux.org.uk/
1180 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1181 F: arch/arm/include/asm/hardware/ioc.h
1182 F: arch/arm/include/asm/hardware/iomd.h
1183 F: arch/arm/include/asm/hardware/memc.h
1184 F: arch/arm/mach-rpc/
1185 F: drivers/net/ethernet/8390/etherh.c
1186 F: drivers/net/ethernet/i825xx/ether1*
1187 F: drivers/net/ethernet/seeq/ether3*
1188 F: drivers/scsi/arm/
1190 ARM/Rockchip SoC support
1191 M: Heiko Stuebner <heiko@sntech.de>
1192 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194 F: arch/arm/mach-rockchip/
1195 F: drivers/*/*rockchip*
1197 ARM/SAMSUNG ARM ARCHITECTURES
1198 M: Ben Dooks <ben-linux@fluff.org>
1199 M: Kukjin Kim <kgene.kim@samsung.com>
1200 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1202 W: http://www.fluff.org/ben/linux/
1204 F: arch/arm/boot/dts/s3c*
1205 F: arch/arm/boot/dts/exynos*
1206 F: arch/arm/plat-samsung/
1207 F: arch/arm/mach-s3c24*/
1208 F: arch/arm/mach-s3c64xx/
1209 F: drivers/*/*s3c2410*
1210 F: drivers/*/*/*s3c2410*
1211 F: drivers/spi/spi-s3c*
1212 F: sound/soc/samsung/*
1214 ARM/S5P EXYNOS ARM ARCHITECTURES
1215 M: Kukjin Kim <kgene.kim@samsung.com>
1216 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1219 F: arch/arm/mach-s5p*/
1220 F: arch/arm/mach-exynos*/
1223 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1224 M: Kyungmin Park <kyungmin.park@samsung.com>
1225 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 F: arch/arm/mach-s5pv210/mach-aquila.c
1228 F: arch/arm/mach-s5pv210/mach-goni.c
1230 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1231 M: Kyungmin Park <kyungmin.park@samsung.com>
1232 M: Kamil Debski <k.debski@samsung.com>
1233 L: linux-arm-kernel@lists.infradead.org
1234 L: linux-media@vger.kernel.org
1236 F: drivers/media/platform/s5p-g2d/
1238 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1239 M: Kyungmin Park <kyungmin.park@samsung.com>
1240 M: Kamil Debski <k.debski@samsung.com>
1241 M: Jeongtae Park <jtp.park@samsung.com>
1242 L: linux-arm-kernel@lists.infradead.org
1243 L: linux-media@vger.kernel.org
1245 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1246 F: drivers/media/platform/s5p-mfc/
1248 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1249 M: Kyungmin Park <kyungmin.park@samsung.com>
1250 M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1251 L: linux-arm-kernel@lists.infradead.org
1252 L: linux-media@vger.kernel.org
1254 F: drivers/media/platform/s5p-tv/
1256 ARM/SHMOBILE ARM ARCHITECTURE
1257 M: Simon Horman <horms@verge.net.au>
1258 M: Magnus Damm <magnus.damm@gmail.com>
1259 L: linux-sh@vger.kernel.org
1260 W: http://oss.renesas.com
1261 Q: http://patchwork.kernel.org/project/linux-sh/list/
1262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1264 F: arch/arm/mach-shmobile/
1267 ARM/SOCFPGA ARCHITECTURE
1268 M: Dinh Nguyen <dinguyen@altera.com>
1270 F: arch/arm/mach-socfpga/
1272 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1273 M: Dinh Nguyen <dinguyen@altera.com>
1275 F: drivers/clk/socfpga/
1277 ARM/STI ARCHITECTURE
1278 M: Srinivas Kandagatla <srinivas.kandagatla@st.com>
1279 M: Stuart Menefy <stuart.menefy@st.com>
1280 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 L: kernel@stlinux.com
1282 W: http://www.stlinux.com
1284 F: arch/arm/mach-sti/
1286 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1287 M: Lennert Buytenhek <kernel@wantstofly.org>
1288 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 ARM/TETON BGA MACHINE SUPPORT
1292 M: "Mark F. Brown" <mark.brown314@gmail.com>
1293 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 ARM/THECUS N2100 MACHINE SUPPORT
1297 M: Lennert Buytenhek <kernel@wantstofly.org>
1298 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1302 M: Wan ZongShun <mcuos.com@gmail.com>
1303 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304 W: http://www.mcuos.com
1306 F: arch/arm/mach-w90x900/
1307 F: drivers/input/keyboard/w90p910_keypad.c
1308 F: drivers/input/touchscreen/w90p910_ts.c
1309 F: drivers/watchdog/nuc900_wdt.c
1310 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1311 F: drivers/mtd/nand/nuc900_nand.c
1312 F: drivers/rtc/rtc-nuc900.c
1313 F: drivers/spi/spi-nuc900.c
1314 F: drivers/usb/host/ehci-w90x900.c
1315 F: drivers/video/nuc900fb.c
1317 ARM/U300 MACHINE SUPPORT
1318 M: Linus Walleij <linus.walleij@linaro.org>
1319 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 F: arch/arm/mach-u300/
1322 F: drivers/i2c/busses/i2c-stu300.c
1323 F: drivers/rtc/rtc-coh901331.c
1324 F: drivers/watchdog/coh901327_wdt.c
1325 F: drivers/dma/coh901318*
1326 F: drivers/mfd/ab3100*
1327 F: drivers/rtc/rtc-ab3100.c
1328 F: drivers/rtc/rtc-coh901331.c
1329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1331 ARM/Ux500 ARM ARCHITECTURE
1332 M: Linus Walleij <linus.walleij@linaro.org>
1333 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 F: arch/arm/mach-ux500/
1336 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1337 F: drivers/dma/ste_dma40*
1338 F: drivers/hwspinlock/u8500_hsem.c
1339 F: drivers/mfd/abx500*
1340 F: drivers/mfd/ab8500*
1341 F: drivers/mfd/dbx500*
1342 F: drivers/mfd/db8500*
1343 F: drivers/pinctrl/pinctrl-nomadik*
1344 F: drivers/rtc/rtc-ab8500.c
1345 F: drivers/rtc/rtc-pl031.c
1346 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1348 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1349 M: Ulf Hansson <ulf.hansson@linaro.org>
1350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1351 T: git git://git.linaro.org/people/ulfh/clk.git
1353 F: drivers/clk/ux500/
1354 F: include/linux/platform_data/clk-ux500.h
1357 M: Russell King <linux@arm.linux.org.uk>
1358 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1359 W: http://www.arm.linux.org.uk/
1363 ARM/VOIPAC PXA270 SUPPORT
1364 M: Marek Vasut <marek.vasut@gmail.com>
1365 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1367 F: arch/arm/mach-pxa/vpac270.c
1368 F: arch/arm/mach-pxa/include/mach/vpac270.h
1370 ARM/VT8500 ARM ARCHITECTURE
1371 M: Tony Prisk <linux@prisktech.co.nz>
1372 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 F: arch/arm/mach-vt8500/
1375 F: drivers/clocksource/vt8500_timer.c
1376 F: drivers/i2c/busses/i2c-wmt.c
1377 F: drivers/mmc/host/wmt-sdmmc.c
1378 F: drivers/pwm/pwm-vt8500.c
1379 F: drivers/rtc/rtc-vt8500.c
1380 F: drivers/tty/serial/vt8500_serial.c
1381 F: drivers/usb/host/ehci-platform.c
1382 F: drivers/usb/host/uhci-platform.c
1383 F: drivers/video/vt8500lcdfb.*
1384 F: drivers/video/wm8505fb*
1385 F: drivers/video/wmt_ge_rops.*
1387 ARM/ZIPIT Z2 SUPPORT
1388 M: Marek Vasut <marek.vasut@gmail.com>
1389 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391 F: arch/arm/mach-pxa/z2.c
1392 F: arch/arm/mach-pxa/include/mach/z2.h
1394 ARM/ZYNQ ARCHITECTURE
1395 M: Michal Simek <michal.simek@xilinx.com>
1396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1397 W: http://wiki.xilinx.com
1398 T: git git://git.xilinx.com/linux-xlnx.git
1400 F: arch/arm/mach-zynq/
1401 F: drivers/cpuidle/cpuidle-zynq.c
1404 F: drivers/clocksource/cadence_ttc_timer.c
1405 F: drivers/mmc/host/sdhci-of-arasan.c
1408 M: Will Deacon <will.deacon@arm.com>
1409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 F: drivers/iommu/arm-smmu.c
1413 ARM64 PORT (AARCH64 ARCHITECTURE)
1414 M: Catalin Marinas <catalin.marinas@arm.com>
1415 M: Will Deacon <will.deacon@arm.com>
1416 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 F: Documentation/arm64/
1421 AS3645A LED FLASH CONTROLLER DRIVER
1422 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1423 L: linux-media@vger.kernel.org
1424 T: git git://linuxtv.org/media_tree.git
1426 F: drivers/media/i2c/as3645a.c
1427 F: include/media/as3645a.h
1429 ASC7621 HARDWARE MONITOR DRIVER
1430 M: George Joseph <george.joseph@fairview5.com>
1431 L: lm-sensors@lm-sensors.org
1433 F: Documentation/hwmon/asc7621
1434 F: drivers/hwmon/asc7621.c
1436 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1437 M: Corentin Chary <corentin.chary@gmail.com>
1438 L: acpi4asus-user@lists.sourceforge.net
1439 L: platform-driver-x86@vger.kernel.org
1440 W: http://acpi4asus.sf.net
1442 F: drivers/platform/x86/asus*.c
1443 F: drivers/platform/x86/eeepc*.c
1445 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1446 M: Dan Williams <dan.j.williams@intel.com>
1447 W: http://sourceforge.net/projects/xscaleiop
1449 F: Documentation/crypto/async-tx-api.txt
1452 F: include/linux/dmaengine.h
1453 F: include/linux/async_tx.h
1456 M: Wolfram Sang <wsa@the-dreams.de>
1457 L: linux-i2c@vger.kernel.org
1459 F: drivers/misc/eeprom/at24.c
1460 F: include/linux/platform_data/at24.h
1462 ATA OVER ETHERNET (AOE) DRIVER
1463 M: "Ed L. Cashin" <ecashin@coraid.com>
1464 W: http://support.coraid.com/support/linux
1466 F: Documentation/aoe/
1467 F: drivers/block/aoe/
1469 ATHEROS ATH GENERIC UTILITIES
1470 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1471 L: linux-wireless@vger.kernel.org
1473 F: drivers/net/wireless/ath/*
1475 ATHEROS ATH5K WIRELESS DRIVER
1476 M: Jiri Slaby <jirislaby@gmail.com>
1477 M: Nick Kossifidis <mickflemm@gmail.com>
1478 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1479 L: linux-wireless@vger.kernel.org
1480 L: ath5k-devel@lists.ath5k.org
1481 W: http://wireless.kernel.org/en/users/Drivers/ath5k
1483 F: drivers/net/wireless/ath/ath5k/
1485 ATHEROS ATH6KL WIRELESS DRIVER
1486 M: Kalle Valo <kvalo@qca.qualcomm.com>
1487 L: linux-wireless@vger.kernel.org
1488 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1489 T: git git://github.com/kvalo/ath.git
1491 F: drivers/net/wireless/ath/ath6kl/
1493 WILOCITY WIL6210 WIRELESS DRIVER
1494 M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1495 L: linux-wireless@vger.kernel.org
1496 L: wil6210@qca.qualcomm.com
1498 W: http://wireless.kernel.org/en/users/Drivers/wil6210
1499 F: drivers/net/wireless/ath/wil6210/
1501 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1502 M: Christian Lamparter <chunkeey@googlemail.com>
1503 L: linux-wireless@vger.kernel.org
1504 W: http://wireless.kernel.org/en/users/Drivers/carl9170
1506 F: drivers/net/wireless/ath/carl9170/
1508 ATK0110 HWMON DRIVER
1509 M: Luca Tettamanti <kronos.it@gmail.com>
1510 L: lm-sensors@lm-sensors.org
1512 F: drivers/hwmon/asus_atk0110.c
1515 M: Ville Syrjala <syrjala@sci.fi>
1517 F: drivers/input/misc/ati_remote2.c
1519 ATLX ETHERNET DRIVERS
1520 M: Jay Cliburn <jcliburn@gmail.com>
1521 M: Chris Snook <chris.snook@gmail.com>
1522 L: netdev@vger.kernel.org
1523 W: http://sourceforge.net/projects/atl1
1524 W: http://atl1.sourceforge.net
1526 F: drivers/net/ethernet/atheros/
1529 M: Chas Williams <chas@cmf.nrl.navy.mil>
1530 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1531 L: netdev@vger.kernel.org
1532 W: http://linux-atm.sourceforge.net
1535 F: include/linux/atm*
1536 F: include/uapi/linux/atm*
1538 ATMEL AT91 / AT32 MCI DRIVER
1539 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1541 F: drivers/mmc/host/atmel-mci.c
1542 F: drivers/mmc/host/atmel-mci-regs.h
1544 ATMEL AT91 / AT32 SERIAL DRIVER
1545 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1547 F: drivers/tty/serial/atmel_serial.c
1550 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1551 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 F: drivers/dma/at_hdmac.c
1554 F: drivers/dma/at_hdmac_regs.h
1555 F: include/linux/platform_data/dma-atmel.h
1558 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1559 L: linux-i2c@vger.kernel.org
1561 F: drivers/i2c/busses/i2c-at91.c
1564 M: Josh Wu <josh.wu@atmel.com>
1565 L: linux-media@vger.kernel.org
1567 F: drivers/media/platform/soc_camera/atmel-isi.c
1568 F: include/media/atmel-isi.h
1571 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1572 L: linux-fbdev@vger.kernel.org
1574 F: drivers/video/atmel_lcdfb.c
1575 F: include/video/atmel_lcdc.h
1577 ATMEL MACB ETHERNET DRIVER
1578 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1580 F: drivers/net/ethernet/cadence/
1583 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1585 F: drivers/spi/spi-atmel.*
1587 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1588 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1589 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 F: drivers/misc/atmel_tclib.c
1592 F: drivers/clocksource/tcb_clksrc.c
1595 M: Josh Wu <josh.wu@atmel.com>
1596 L: linux-input@vger.kernel.org
1598 F: drivers/input/touchscreen/atmel_tsadcc.c
1600 ATMEL USBA UDC DRIVER
1601 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1602 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 F: drivers/usb/gadget/atmel_usba_udc.*
1606 ATMEL WIRELESS DRIVER
1607 M: Simon Kelley <simon@thekelleys.org.uk>
1608 L: linux-wireless@vger.kernel.org
1609 W: http://www.thekelleys.org.uk/atmel
1610 W: http://atmelwlandriver.sourceforge.net/
1612 F: drivers/net/wireless/atmel*
1614 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1615 M: Bradley Grove <linuxdrivers@attotech.com>
1616 L: linux-scsi@vger.kernel.org
1617 W: http://www.attotech.com
1619 F: drivers/scsi/esas2r
1622 M: Eric Paris <eparis@redhat.com>
1623 L: linux-audit@redhat.com (subscribers-only)
1624 W: http://people.redhat.com/sgrubb/audit/
1625 T: git git://git.infradead.org/users/eparis/audit.git
1627 F: include/linux/audit.h
1628 F: include/uapi/linux/audit.h
1631 AUXILIARY DISPLAY DRIVERS
1632 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1633 W: http://miguelojeda.es/auxdisplay.htm
1634 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1636 F: drivers/auxdisplay/
1637 F: include/linux/cfag12864b.h
1640 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1641 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1642 W: http://www.atmel.com/products/AVR32/
1643 W: http://mirror.egtvedt.no/avr32linux.org/
1644 W: http://avrfreaks.net/
1648 AVR32/AT32AP MACHINE SUPPORT
1649 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1650 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1652 F: arch/avr32/mach-at32ap/
1655 M: Ralf Baechle <ralf@linux-mips.org>
1656 L: linux-hams@vger.kernel.org
1657 W: http://www.linux-ax25.org/
1659 F: include/uapi/linux/ax25.h
1660 F: include/net/ax25.h
1664 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
1665 L: linux-media@vger.kernel.org
1666 W: http://linuxtv.org
1667 T: git git://linuxtv.org/media_tree.git
1669 F: drivers/media/usb/dvb-usb-v2/az6007.c
1671 AZTECH FM RADIO RECEIVER DRIVER
1672 M: Hans Verkuil <hverkuil@xs4all.nl>
1673 L: linux-media@vger.kernel.org
1674 T: git git://linuxtv.org/media_tree.git
1675 W: http://linuxtv.org
1677 F: drivers/media/radio/radio-aztech*
1680 M: Stefano Brivio <stefano.brivio@polimi.it>
1681 L: linux-wireless@vger.kernel.org
1682 L: b43-dev@lists.infradead.org
1683 W: http://wireless.kernel.org/en/users/Drivers/b43
1685 F: drivers/net/wireless/b43/
1687 B43LEGACY WIRELESS DRIVER
1688 M: Larry Finger <Larry.Finger@lwfinger.net>
1689 M: Stefano Brivio <stefano.brivio@polimi.it>
1690 L: linux-wireless@vger.kernel.org
1691 L: b43-dev@lists.infradead.org
1692 W: http://wireless.kernel.org/en/users/Drivers/b43
1694 F: drivers/net/wireless/b43legacy/
1696 BACKLIGHT CLASS/SUBSYSTEM
1697 M: Jingoo Han <jg1.han@samsung.com>
1699 F: drivers/video/backlight/
1700 F: include/linux/backlight.h
1703 M: Marek Lindner <mareklindner@neomailbox.ch>
1704 M: Simon Wunderlich <sw@simonwunderlich.de>
1705 M: Antonio Quartulli <antonio@meshcoding.com>
1706 L: b.a.t.m.a.n@lists.open-mesh.org
1707 W: http://www.open-mesh.org/
1711 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1712 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
1713 L: linux-hams@vger.kernel.org
1714 W: http://www.baycom.org/~tom/ham/ham.html
1716 F: drivers/net/hamradio/baycom*
1718 BCACHE (BLOCK LAYER CACHE)
1719 M: Kent Overstreet <kmo@daterainc.com>
1720 L: linux-bcache@vger.kernel.org
1721 W: http://bcache.evilpiepirate.org
1723 F: drivers/md/bcache/
1727 F: Documentation/filesystems/befs.txt
1731 M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1733 F: Documentation/filesystems/bfs.txt
1735 F: include/uapi/linux/bfs_fs.h
1737 BLACKFIN ARCHITECTURE
1738 M: Steven Miao <realmz6@gmail.com>
1739 L: adi-buildroot-devel@lists.sourceforge.net
1740 W: http://blackfin.uclinux.org
1744 BLACKFIN EMAC DRIVER
1745 L: adi-buildroot-devel@lists.sourceforge.net
1746 W: http://blackfin.uclinux.org
1748 F: drivers/net/ethernet/adi/
1751 L: adi-buildroot-devel@lists.sourceforge.net
1752 W: http://blackfin.uclinux.org
1754 F: drivers/rtc/rtc-bfin.c
1757 M: Sonic Zhang <sonic.zhang@analog.com>
1758 L: adi-buildroot-devel@lists.sourceforge.net
1759 W: http://blackfin.uclinux.org
1761 F: drivers/mmc/host/bfin_sdh.c
1763 BLACKFIN SERIAL DRIVER
1764 M: Sonic Zhang <sonic.zhang@analog.com>
1765 L: adi-buildroot-devel@lists.sourceforge.net
1766 W: http://blackfin.uclinux.org
1768 F: drivers/tty/serial/bfin_uart.c
1770 BLACKFIN WATCHDOG DRIVER
1771 L: adi-buildroot-devel@lists.sourceforge.net
1772 W: http://blackfin.uclinux.org
1774 F: drivers/watchdog/bfin_wdt.c
1776 BLACKFIN I2C TWI DRIVER
1777 M: Sonic Zhang <sonic.zhang@analog.com>
1778 L: adi-buildroot-devel@lists.sourceforge.net
1779 W: http://blackfin.uclinux.org/
1781 F: drivers/i2c/busses/i2c-bfin-twi.c
1783 BLACKFIN MEDIA DRIVER
1784 M: Scott Jiang <scott.jiang.linux@gmail.com>
1785 L: adi-buildroot-devel@lists.sourceforge.net
1786 W: http://blackfin.uclinux.org/
1788 F: drivers/media/platform/blackfin/
1789 F: drivers/media/i2c/adv7183*
1790 F: drivers/media/i2c/vs6624*
1792 BLINKM RGB LED DRIVER
1793 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1795 F: drivers/leds/leds-blinkm.c
1798 M: Jens Axboe <axboe@kernel.dk>
1799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
1804 M: Joern Engel <joern@lazybastard.org>
1805 L: linux-mtd@lists.infradead.org
1807 F: drivers/mtd/devices/block2mtd.c
1810 M: Marcel Holtmann <marcel@holtmann.org>
1811 M: Gustavo Padovan <gustavo@padovan.org>
1812 M: Johan Hedberg <johan.hedberg@gmail.com>
1813 L: linux-bluetooth@vger.kernel.org
1814 W: http://www.bluez.org/
1815 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1818 F: drivers/bluetooth/
1821 M: Marcel Holtmann <marcel@holtmann.org>
1822 M: Gustavo Padovan <gustavo@padovan.org>
1823 M: Johan Hedberg <johan.hedberg@gmail.com>
1824 L: linux-bluetooth@vger.kernel.org
1825 W: http://www.bluez.org/
1826 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1830 F: include/net/bluetooth/
1833 M: Jay Vosburgh <fubar@us.ibm.com>
1834 M: Veaceslav Falico <vfalico@redhat.com>
1835 M: Andy Gospodarek <andy@greyhouse.net>
1836 L: netdev@vger.kernel.org
1837 W: http://sourceforge.net/projects/bonding/
1839 F: drivers/net/bonding/
1840 F: include/uapi/linux/if_bonding.h
1842 BROADCOM B44 10/100 ETHERNET DRIVER
1843 M: Gary Zambrano <zambrano@broadcom.com>
1844 L: netdev@vger.kernel.org
1846 F: drivers/net/ethernet/broadcom/b44.*
1848 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1849 M: Michael Chan <mchan@broadcom.com>
1850 L: netdev@vger.kernel.org
1852 F: drivers/net/ethernet/broadcom/bnx2.*
1853 F: drivers/net/ethernet/broadcom/bnx2_*
1855 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1856 M: Ariel Elior <ariele@broadcom.com>
1857 L: netdev@vger.kernel.org
1859 F: drivers/net/ethernet/broadcom/bnx2x/
1861 BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE
1862 M: Christian Daudt <bcm@fixthebug.org>
1863 L: bcm-kernel-feedback-list@broadcom.com
1864 T: git git://git.github.com/broadcom/bcm11351
1866 F: arch/arm/mach-bcm/
1867 F: arch/arm/boot/dts/bcm113*
1868 F: arch/arm/boot/dts/bcm281*
1869 F: arch/arm/configs/bcm_defconfig
1870 F: drivers/mmc/host/sdhci_bcm_kona.c
1871 F: drivers/clocksource/bcm_kona_timer.c
1873 BROADCOM BCM2835 ARM ARCHICTURE
1874 M: Stephen Warren <swarren@wwwdotorg.org>
1875 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1876 T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1878 F: arch/arm/mach-bcm2835/
1879 F: arch/arm/boot/dts/bcm2835*
1880 F: arch/arm/configs/bcm2835_defconfig
1881 F: drivers/*/*bcm2835*
1883 BROADCOM TG3 GIGABIT ETHERNET DRIVER
1884 M: Nithin Nayak Sujir <nsujir@broadcom.com>
1885 M: Michael Chan <mchan@broadcom.com>
1886 L: netdev@vger.kernel.org
1888 F: drivers/net/ethernet/broadcom/tg3.*
1890 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1891 M: Brett Rudley <brudley@broadcom.com>
1892 M: Arend van Spriel <arend@broadcom.com>
1893 M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1894 M: Hante Meuleman <meuleman@broadcom.com>
1895 L: linux-wireless@vger.kernel.org
1896 L: brcm80211-dev-list@broadcom.com
1898 F: drivers/net/wireless/brcm80211/
1900 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1901 M: Eddie Wai <eddie.wai@broadcom.com>
1902 L: linux-scsi@vger.kernel.org
1904 F: drivers/scsi/bnx2fc/
1906 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
1907 M: Eddie Wai <eddie.wai@broadcom.com>
1908 L: linux-scsi@vger.kernel.org
1910 F: drivers/scsi/bnx2i/
1912 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1913 M: Rafał Miłecki <zajec5@gmail.com>
1914 L: linux-wireless@vger.kernel.org
1917 F: include/linux/bcma/
1919 BROCADE BFA FC SCSI DRIVER
1920 M: Anil Gurumurthy <agurumur@brocade.com>
1921 M: Vijaya Mohan Guvva <vmohan@brocade.com>
1922 L: linux-scsi@vger.kernel.org
1924 F: drivers/scsi/bfa/
1926 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1927 M: Rasesh Mody <rmody@brocade.com>
1928 L: netdev@vger.kernel.org
1930 F: drivers/net/ethernet/brocade/bna/
1932 BSG (block layer generic sg v4 driver)
1933 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
1934 L: linux-scsi@vger.kernel.org
1937 F: include/linux/bsg.h
1938 F: include/uapi/linux/bsg.h
1941 M: Clemens Ladisch <clemens@ladisch.de>
1942 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1943 T: git git://git.alsa-project.org/alsa-kernel.git
1945 F: Documentation/sound/alsa/Bt87x.txt
1946 F: sound/pci/bt87x.c
1949 M: Michael Buesch <m@bues.ch>
1950 W: http://bu3sch.de/btgpio.php
1952 F: drivers/gpio/gpio-bt8xx.c
1955 M: Chris Mason <clm@fb.com>
1956 M: Josef Bacik <jbacik@fb.com>
1957 L: linux-btrfs@vger.kernel.org
1958 W: http://btrfs.wiki.kernel.org/
1959 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
1960 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
1962 F: Documentation/filesystems/btrfs.txt
1965 BTTV VIDEO4LINUX DRIVER
1966 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
1967 L: linux-media@vger.kernel.org
1968 W: http://linuxtv.org
1969 T: git git://linuxtv.org/media_tree.git
1971 F: Documentation/video4linux/bttv/
1972 F: drivers/media/pci/bt8xx/bttv*
1974 BUSLOGIC SCSI DRIVER
1975 M: Khalid Aziz <khalid@gonehiking.org>
1976 L: linux-scsi@vger.kernel.org
1978 F: drivers/scsi/BusLogic.*
1979 F: drivers/scsi/FlashPoint.*
1981 C-MEDIA CMI8788 DRIVER
1982 M: Clemens Ladisch <clemens@ladisch.de>
1983 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1984 T: git git://git.alsa-project.org/alsa-kernel.git
1986 F: sound/pci/oxygen/
1989 M: Mark Salter <msalter@redhat.com>
1990 M: Aurelien Jacquiot <a-jacquiot@ti.com>
1991 L: linux-c6x-dev@linux-c6x.org
1992 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1996 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1997 M: David Howells <dhowells@redhat.com>
1998 L: linux-cachefs@redhat.com
2000 F: Documentation/filesystems/caching/cachefiles.txt
2003 CADET FM/AM RADIO RECEIVER DRIVER
2004 M: Hans Verkuil <hverkuil@xs4all.nl>
2005 L: linux-media@vger.kernel.org
2006 T: git git://linuxtv.org/media_tree.git
2007 W: http://linuxtv.org
2009 F: drivers/media/radio/radio-cadet*
2011 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2012 M: Jonathan Corbet <corbet@lwn.net>
2013 L: linux-media@vger.kernel.org
2014 T: git git://linuxtv.org/media_tree.git
2016 F: Documentation/video4linux/cafe_ccic
2017 F: drivers/media/platform/marvell-ccic/
2020 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2021 L: netdev@vger.kernel.org
2023 F: Documentation/networking/caif/
2024 F: drivers/net/caif/
2025 F: include/uapi/linux/caif/
2026 F: include/net/caif/
2029 CALGARY x86-64 IOMMU
2030 M: Muli Ben-Yehuda <muli@il.ibm.com>
2031 M: "Jon D. Mason" <jdmason@kudzu.us>
2032 L: discuss@x86-64.org
2034 F: arch/x86/kernel/pci-calgary_64.c
2035 F: arch/x86/kernel/tce_64.c
2036 F: arch/x86/include/asm/calgary.h
2037 F: arch/x86/include/asm/tce.h
2040 M: Oliver Hartkopp <socketcan@hartkopp.net>
2041 L: linux-can@vger.kernel.org
2042 W: http://gitorious.org/linux-can
2043 T: git git://gitorious.org/linux-can/linux-can-next.git
2045 F: Documentation/networking/can.txt
2047 F: include/linux/can/core.h
2048 F: include/uapi/linux/can.h
2049 F: include/uapi/linux/can/bcm.h
2050 F: include/uapi/linux/can/raw.h
2051 F: include/uapi/linux/can/gw.h
2054 M: Wolfgang Grandegger <wg@grandegger.com>
2055 M: Marc Kleine-Budde <mkl@pengutronix.de>
2056 L: linux-can@vger.kernel.org
2057 W: http://gitorious.org/linux-can
2058 T: git git://gitorious.org/linux-can/linux-can-next.git
2061 F: include/linux/can/dev.h
2062 F: include/linux/can/platform/
2063 F: include/uapi/linux/can/error.h
2064 F: include/uapi/linux/can/netlink.h
2067 M: Serge Hallyn <serge.hallyn@canonical.com>
2068 L: linux-security-module@vger.kernel.org
2070 F: include/linux/capability.h
2071 F: include/uapi/linux/capability.h
2072 F: security/capability.c
2073 F: security/commoncap.c
2074 F: kernel/capability.c
2076 CELL BROADBAND ENGINE ARCHITECTURE
2077 M: Arnd Bergmann <arnd@arndb.de>
2078 L: linuxppc-dev@lists.ozlabs.org
2079 L: cbe-oss-dev@lists.ozlabs.org
2080 W: http://www.ibm.com/developerworks/power/cell/
2082 F: arch/powerpc/include/asm/cell*.h
2083 F: arch/powerpc/include/asm/spu*.h
2084 F: arch/powerpc/include/uapi/asm/spu*.h
2085 F: arch/powerpc/oprofile/*cell*
2086 F: arch/powerpc/platforms/cell/
2088 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2089 M: Sage Weil <sage@inktank.com>
2090 L: ceph-devel@vger.kernel.org
2092 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2094 F: Documentation/filesystems/ceph.txt
2097 F: include/linux/ceph/
2098 F: include/linux/crush/
2100 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2101 L: linux-usb@vger.kernel.org
2103 F: Documentation/usb/WUSB-Design-overview.txt
2104 F: Documentation/usb/wusb-cbaf
2105 F: drivers/usb/host/hwa-hc.c
2106 F: drivers/usb/host/whci/
2107 F: drivers/usb/wusbcore/
2108 F: include/linux/usb/wusb*
2110 CFAG12864B LCD DRIVER
2111 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2112 W: http://miguelojeda.es/auxdisplay.htm
2113 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2115 F: drivers/auxdisplay/cfag12864b.c
2116 F: include/linux/cfag12864b.h
2118 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2119 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2120 W: http://miguelojeda.es/auxdisplay.htm
2121 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2123 F: drivers/auxdisplay/cfag12864bfb.c
2124 F: include/linux/cfag12864b.h
2126 CFG80211 and NL80211
2127 M: Johannes Berg <johannes@sipsolutions.net>
2128 L: linux-wireless@vger.kernel.org
2129 W: http://wireless.kernel.org/
2130 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2131 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2133 F: include/uapi/linux/nl80211.h
2134 F: include/net/cfg80211.h
2136 X: net/wireless/wext*
2138 CHAR and MISC DRIVERS
2139 M: Arnd Bergmann <arnd@arndb.de>
2140 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2141 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2147 M: Andy Whitcroft <apw@canonical.com>
2148 M: Joe Perches <joe@perches.com>
2150 F: scripts/checkpatch.pl
2152 CHINESE DOCUMENTATION
2153 M: Harry Wei <harryxiyou@gmail.com>
2154 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2155 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2157 F: Documentation/zh_CN/
2159 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2160 M: Peter Chen <Peter.Chen@freescale.com>
2161 T: git://github.com/hzpeterchen/linux-usb.git
2162 L: linux-usb@vger.kernel.org
2164 F: drivers/usb/chipidea/
2166 CHROME HARDWARE PLATFORM SUPPORT
2167 M: Olof Johansson <olof@lixom.net>
2169 F: drivers/platform/chrome/
2171 CISCO VIC ETHERNET NIC DRIVER
2172 M: Christian Benvenuti <benve@cisco.com>
2173 M: Sujith Sankar <ssujith@cisco.com>
2174 M: Govindarajulu Varadarajan <govindarajulu90@gmail.com>
2175 M: Neel Patel <neepatel@cisco.com>
2176 M: Nishank Trivedi <nistrive@cisco.com>
2178 F: drivers/net/ethernet/cisco/enic/
2180 CISCO VIC LOW LATENCY NIC DRIVER
2181 M: Upinder Malhi <umalhi@cisco.com>
2183 F: drivers/infiniband/hw/usnic
2185 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2186 M: Hartley Sweeten <hsweeten@visionengravers.com>
2187 L: netdev@vger.kernel.org
2189 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
2191 CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
2192 M: Lennert Buytenhek <kernel@wantstofly.org>
2193 L: linux-usb@vger.kernel.org
2195 F: drivers/usb/host/ohci-ep93xx.c
2197 CIRRUS LOGIC CS4270 SOUND DRIVER
2198 M: Timur Tabi <timur@tabi.org>
2199 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2201 F: sound/soc/codecs/cs4270*
2204 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2205 L: linux-kernel@vger.kernel.org
2208 F: include/linux/cleancache.h
2211 M: Russell King <linux@arm.linux.org.uk>
2213 F: include/linux/clk.h
2215 CLOCKSOURCE, CLOCKEVENT DRIVERS
2216 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2217 M: Thomas Gleixner <tglx@linutronix.de>
2218 L: linux-kernel@vger.kernel.org
2219 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2221 F: drivers/clocksource
2223 CISCO FCOE HBA DRIVER
2224 M: Hiral Patel <hiralpat@cisco.com>
2225 M: Suma Ramars <sramars@cisco.com>
2226 M: Brian Uchino <buchino@cisco.com>
2227 L: linux-scsi@vger.kernel.org
2229 F: drivers/scsi/fnic/
2232 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2233 M: Daniel Oliveira Nascimento <don@syst.com.br>
2234 L: platform-driver-x86@vger.kernel.org
2236 F: drivers/platform/x86/classmate-laptop.c
2238 COCCINELLE/Semantic Patches (SmPL)
2239 M: Julia Lawall <Julia.Lawall@lip6.fr>
2240 M: Gilles Muller <Gilles.Muller@lip6.fr>
2241 M: Nicolas Palix <nicolas.palix@imag.fr>
2242 M: Michal Marek <mmarek@suse.cz>
2243 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
2244 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2245 W: http://coccinelle.lip6.fr/
2247 F: Documentation/coccinelle.txt
2248 F: scripts/coccinelle/
2249 F: scripts/coccicheck
2252 M: Jan Harkes <jaharkes@cs.cmu.edu>
2254 L: codalist@coda.cs.cmu.edu
2255 W: http://www.coda.cs.cmu.edu/
2257 F: Documentation/filesystems/coda.txt
2259 F: include/linux/coda*.h
2260 F: include/uapi/linux/coda*.h
2262 COMMON CLK FRAMEWORK
2263 M: Mike Turquette <mturquette@linaro.org>
2264 L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2265 T: git git://git.linaro.org/people/mturquette/linux.git
2268 X: drivers/clk/clkdev.c
2269 F: include/linux/clk-pr*
2270 F: include/linux/clk/
2272 COMMON INTERNET FILE SYSTEM (CIFS)
2273 M: Steve French <sfrench@samba.org>
2274 L: linux-cifs@vger.kernel.org
2275 L: samba-technical@lists.samba.org (moderated for non-subscribers)
2276 W: http://linux-cifs.samba.org/
2277 Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
2278 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
2280 F: Documentation/filesystems/cifs.txt
2283 COMPACTPCI HOTPLUG CORE
2284 M: Scott Murray <scott@spiteful.org>
2285 L: linux-pci@vger.kernel.org
2287 F: drivers/pci/hotplug/cpci_hotplug*
2289 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2290 M: Scott Murray <scott@spiteful.org>
2291 L: linux-pci@vger.kernel.org
2293 F: drivers/pci/hotplug/cpcihp_zt5550.*
2295 COMPACTPCI HOTPLUG GENERIC DRIVER
2296 M: Scott Murray <scott@spiteful.org>
2297 L: linux-pci@vger.kernel.org
2299 F: drivers/pci/hotplug/cpcihp_generic.c
2301 COMPAL LAPTOP SUPPORT
2302 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2303 L: platform-driver-x86@vger.kernel.org
2305 F: drivers/platform/x86/compal-laptop.c
2307 CONEXANT ACCESSRUNNER USB DRIVER
2308 M: Simon Arlott <cxacru@fire.lp0.eu>
2309 L: accessrunner-general@lists.sourceforge.net
2310 W: http://accessrunner.sourceforge.net/
2312 F: drivers/usb/atm/cxacru.c
2315 M: Joel Becker <jlbec@evilplan.org>
2316 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2319 F: include/linux/configfs.h
2322 M: Evgeniy Polyakov <zbr@ioremap.net>
2323 L: netdev@vger.kernel.org
2325 F: drivers/connector/
2327 CONTROL GROUPS (CGROUPS)
2328 M: Tejun Heo <tj@kernel.org>
2329 M: Li Zefan <lizefan@huawei.com>
2330 L: containers@lists.linux-foundation.org
2331 L: cgroups@vger.kernel.org
2332 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2334 F: include/linux/cgroup*
2338 CORETEMP HARDWARE MONITORING DRIVER
2339 M: Fenghua Yu <fenghua.yu@intel.com>
2340 L: lm-sensors@lm-sensors.org
2342 F: Documentation/hwmon/coretemp
2343 F: drivers/hwmon/coretemp.c
2345 COSA/SRP SYNC SERIAL DRIVER
2346 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2347 W: http://www.fi.muni.cz/~kas/cosa/
2349 F: drivers/net/wan/cosa*
2351 CPMAC ETHERNET DRIVER
2352 M: Florian Fainelli <florian@openwrt.org>
2353 L: netdev@vger.kernel.org
2355 F: drivers/net/ethernet/ti/cpmac.c
2357 CPU FREQUENCY DRIVERS
2358 M: Rafael J. Wysocki <rjw@rjwysocki.net>
2359 M: Viresh Kumar <viresh.kumar@linaro.org>
2360 L: cpufreq@vger.kernel.org
2361 L: linux-pm@vger.kernel.org
2363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2364 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2366 F: include/linux/cpufreq.h
2368 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2369 M: Viresh Kumar <viresh.kumar@linaro.org>
2370 M: Sudeep KarkadaNagesha <sudeep.karkadanagesha@arm.com>
2371 L: cpufreq@vger.kernel.org
2372 L: linux-pm@vger.kernel.org
2373 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2375 F: drivers/cpufreq/arm_big_little.h
2376 F: drivers/cpufreq/arm_big_little.c
2377 F: drivers/cpufreq/arm_big_little_dt.c
2379 CPUIDLE DRIVER - ARM BIG LITTLE
2380 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2381 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2382 L: linux-pm@vger.kernel.org
2383 L: linux-arm-kernel@lists.infradead.org
2384 T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2386 F: drivers/cpuidle/cpuidle-big_little.c
2389 M: Rafael J. Wysocki <rjw@rjwysocki.net>
2390 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2391 L: linux-pm@vger.kernel.org
2393 T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2394 F: drivers/cpuidle/*
2395 F: include/linux/cpuidle.h
2398 M: "H. Peter Anvin" <hpa@zytor.com>
2400 F: arch/x86/kernel/cpuid.c
2401 F: arch/x86/kernel/msr.c
2403 CPU POWER MONITORING SUBSYSTEM
2404 M: Dominik Brodowski <linux@dominikbrodowski.net>
2405 M: Thomas Renninger <trenn@suse.de>
2407 F: tools/power/cpupower/
2410 M: Li Zefan <lizefan@huawei.com>
2411 W: http://www.bullopensource.org/cpuset/
2412 W: http://oss.sgi.com/projects/cpusets/
2414 F: Documentation/cgroups/cpusets.txt
2415 F: include/linux/cpuset.h
2419 W: http://sourceforge.net/projects/cramfs/
2420 S: Orphan / Obsolete
2421 F: Documentation/filesystems/cramfs.txt
2425 M: Mikael Starvik <starvik@axis.com>
2426 M: Jesper Nilsson <jesper.nilsson@axis.com>
2427 L: linux-cris-kernel@axis.com
2428 W: http://developer.axis.com
2431 F: drivers/tty/serial/crisv10.*
2434 M: Herbert Xu <herbert@gondor.apana.org.au>
2435 M: "David S. Miller" <davem@davemloft.net>
2436 L: linux-crypto@vger.kernel.org
2437 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2439 F: Documentation/crypto/
2445 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2446 M: Neil Horman <nhorman@tuxdriver.com>
2447 L: linux-crypto@vger.kernel.org
2449 F: crypto/ansi_cprng.c
2452 CS5535 Audio ALSA driver
2453 M: Jaya Kumar <jayakumar.alsa@gmail.com>
2455 F: sound/pci/cs5535audio/
2458 M: Solomon Peachy <pizza@shaftnet.org>
2460 F: drivers/net/wireless/cw1200/
2462 CX18 VIDEO4LINUX DRIVER
2463 M: Andy Walls <awalls@md.metrocast.net>
2464 L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
2465 L: linux-media@vger.kernel.org
2466 T: git git://linuxtv.org/media_tree.git
2467 W: http://linuxtv.org
2468 W: http://www.ivtvdriver.org/index.php/Cx18
2470 F: Documentation/video4linux/cx18.txt
2471 F: drivers/media/pci/cx18/
2472 F: include/uapi/linux/ivtv*
2474 CX2341X MPEG ENCODER HELPER MODULE
2475 M: Hans Verkuil <hverkuil@xs4all.nl>
2476 L: linux-media@vger.kernel.org
2477 T: git git://linuxtv.org/media_tree.git
2478 W: http://linuxtv.org
2480 F: drivers/media/common/cx2341x*
2481 F: include/media/cx2341x*
2483 CX88 VIDEO4LINUX DRIVER
2484 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
2485 L: linux-media@vger.kernel.org
2486 W: http://linuxtv.org
2487 T: git git://linuxtv.org/media_tree.git
2489 F: Documentation/video4linux/cx88/
2490 F: drivers/media/pci/cx88/
2492 CXD2820R MEDIA DRIVER
2493 M: Antti Palosaari <crope@iki.fi>
2494 L: linux-media@vger.kernel.org
2495 W: http://linuxtv.org/
2496 W: http://palosaari.fi/linux/
2497 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2498 T: git git://linuxtv.org/anttip/media_tree.git
2500 F: drivers/media/dvb-frontends/cxd2820r*
2502 CXGB3 ETHERNET DRIVER (CXGB3)
2503 M: Santosh Raspatur <santosh@chelsio.com>
2504 L: netdev@vger.kernel.org
2505 W: http://www.chelsio.com
2507 F: drivers/net/ethernet/chelsio/cxgb3/
2509 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2510 M: Steve Wise <swise@chelsio.com>
2511 L: linux-rdma@vger.kernel.org
2512 W: http://www.openfabrics.org
2514 F: drivers/infiniband/hw/cxgb3/
2516 CXGB4 ETHERNET DRIVER (CXGB4)
2517 M: Dimitris Michailidis <dm@chelsio.com>
2518 L: netdev@vger.kernel.org
2519 W: http://www.chelsio.com
2521 F: drivers/net/ethernet/chelsio/cxgb4/
2523 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2524 M: Steve Wise <swise@chelsio.com>
2525 L: linux-rdma@vger.kernel.org
2526 W: http://www.openfabrics.org
2528 F: drivers/infiniband/hw/cxgb4/
2530 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2531 M: Casey Leedom <leedom@chelsio.com>
2532 L: netdev@vger.kernel.org
2533 W: http://www.chelsio.com
2535 F: drivers/net/ethernet/chelsio/cxgb4vf/
2537 STMMAC ETHERNET DRIVER
2538 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2539 L: netdev@vger.kernel.org
2540 W: http://www.stlinux.com
2542 F: drivers/net/ethernet/stmicro/stmmac/
2545 M: Russell King <linux@arm.linux.org.uk>
2546 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 W: http://www.arm.linux.org.uk/
2549 F: drivers/video/cyber2000fb.*
2551 CYCLADES ASYNC MUX DRIVER
2552 W: http://www.cyclades.com/
2554 F: drivers/tty/cyclades.c
2555 F: include/linux/cyclades.h
2556 F: include/uapi/linux/cyclades.h
2558 CYCLADES PC300 DRIVER
2559 W: http://www.cyclades.com/
2561 F: drivers/net/wan/pc300*
2563 CYPRESS_FIRMWARE MEDIA DRIVER
2564 M: Antti Palosaari <crope@iki.fi>
2565 L: linux-media@vger.kernel.org
2566 W: http://linuxtv.org/
2567 W: http://palosaari.fi/linux/
2568 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2569 T: git git://linuxtv.org/anttip/media_tree.git
2571 F: drivers/media/common/cypress_firmware*
2573 CYTTSP TOUCHSCREEN DRIVER
2574 M: Ferruh Yigit <fery@cypress.com>
2575 L: linux-input@vger.kernel.org
2577 F: drivers/input/touchscreen/cyttsp*
2578 F: include/linux/input/cyttsp.h
2580 DAMA SLAVE for AX.25
2581 M: Joerg Reuter <jreuter@yaina.de>
2582 W: http://yaina.de/jreuter/
2583 W: http://www.qsl.net/dl1bke/
2584 L: linux-hams@vger.kernel.org
2586 F: net/ax25/af_ax25.c
2587 F: net/ax25/ax25_dev.c
2588 F: net/ax25/ax25_ds_*
2589 F: net/ax25/ax25_in.c
2590 F: net/ax25/ax25_out.c
2591 F: net/ax25/ax25_timer.c
2592 F: net/ax25/sysctl_net_ax25.c
2594 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2595 L: netdev@vger.kernel.org
2597 F: Documentation/networking/dmfe.txt
2598 F: drivers/net/ethernet/dec/tulip/dmfe.c
2600 DC390/AM53C974 SCSI driver
2601 M: Kurt Garloff <garloff@suse.de>
2602 W: http://www.garloff.de/kurt/linux/dc390/
2603 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2605 F: drivers/scsi/tmscsim.*
2608 M: Oliver Neukum <oliver@neukum.org>
2609 M: Ali Akcaagac <aliakc@web.de>
2610 M: Jamie Lenehan <lenehan@twibble.org>
2611 W: http://twibble.org/dist/dc395x/
2612 L: dc395x@twibble.org
2613 L: http://lists.twibble.org/mailman/listinfo/dc395x/
2615 F: Documentation/scsi/dc395x.txt
2616 F: drivers/scsi/dc395x.*
2619 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
2620 L: dccp@vger.kernel.org
2621 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2623 F: include/linux/dccp.h
2624 F: include/uapi/linux/dccp.h
2625 F: include/linux/tfrc.h
2628 DECnet NETWORK LAYER
2629 W: http://linux-decnet.sourceforge.net
2630 L: linux-decnet-user@lists.sourceforge.net
2632 F: Documentation/networking/decnet.txt
2635 DEFXX FDDI NETWORK DRIVER
2636 M: "Maciej W. Rozycki" <macro@linux-mips.org>
2638 F: drivers/net/fddi/defxx.*
2641 M: Matthew Garrett <mjg59@srcf.ucam.org>
2642 L: platform-driver-x86@vger.kernel.org
2644 F: drivers/platform/x86/dell-laptop.c
2646 DELL LAPTOP SMM DRIVER
2647 M: Guenter Roeck <linux@roeck-us.net>
2648 F: drivers/char/i8k.c
2649 F: include/uapi/linux/i8k.h
2651 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
2652 M: Doug Warzecha <Douglas_Warzecha@dell.com>
2654 F: Documentation/dcdbas.txt
2655 F: drivers/firmware/dcdbas.*
2657 DELL WMI EXTRAS DRIVER
2658 M: Matthew Garrett <mjg59@srcf.ucam.org>
2660 F: drivers/platform/x86/dell-wmi.c
2662 DESIGNWARE USB2 DRD IP DRIVER
2663 M: Paul Zimmerman <paulz@synopsys.com>
2664 L: linux-usb@vger.kernel.org
2666 F: drivers/usb/dwc2/
2668 DESIGNWARE USB3 DRD IP DRIVER
2669 M: Felipe Balbi <balbi@ti.com>
2670 L: linux-usb@vger.kernel.org
2671 L: linux-omap@vger.kernel.org
2672 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2674 F: drivers/usb/dwc3/
2676 DEVICE FREQUENCY (DEVFREQ)
2677 M: MyungJoo Ham <myungjoo.ham@samsung.com>
2678 M: Kyungmin Park <kyungmin.park@samsung.com>
2679 L: linux-pm@vger.kernel.org
2683 DEVICE NUMBER REGISTRY
2684 M: Torben Mathiasen <device@lanana.org>
2685 W: http://lanana.org/docs/device-list/index.html
2689 M: Alasdair Kergon <agk@redhat.com>
2690 M: Mike Snitzer <snitzer@redhat.com>
2691 M: dm-devel@redhat.com
2692 L: dm-devel@redhat.com
2693 W: http://sources.redhat.com/dm
2694 Q: http://patchwork.kernel.org/project/dm-devel/list/
2695 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
2696 T: quilt http://people.redhat.com/agk/patches/linux/editing/
2698 F: Documentation/device-mapper/
2700 F: drivers/md/persistent-data/
2701 F: include/linux/device-mapper.h
2702 F: include/linux/dm-*.h
2703 F: include/uapi/linux/dm-*.h
2705 DIGI NEO AND CLASSIC PCI PRODUCTS
2706 M: Lidza Louina <lidza.louina@gmail.com>
2707 L: driverdev-devel@linuxdriverproject.org
2709 F: drivers/staging/dgnc/
2711 DIGI EPCA PCI PRODUCTS
2712 M: Lidza Louina <lidza.louina@gmail.com>
2713 L: driverdev-devel@linuxdriverproject.org
2715 F: drivers/staging/dgap/
2717 DIOLAN U2C-12 I2C DRIVER
2718 M: Guenter Roeck <linux@roeck-us.net>
2719 L: linux-i2c@vger.kernel.org
2721 F: drivers/i2c/busses/i2c-diolan-u2c.c
2723 DIRECTORY NOTIFICATION (DNOTIFY)
2724 M: Eric Paris <eparis@parisplace.org>
2726 F: Documentation/filesystems/dnotify.txt
2727 F: fs/notify/dnotify/
2728 F: include/linux/dnotify.h
2730 DISK GEOMETRY AND PARTITION HANDLING
2731 M: Andries Brouwer <aeb@cwi.nl>
2732 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2733 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2734 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2738 M: Jan Kara <jack@suse.cz>
2740 F: Documentation/filesystems/quota.txt
2742 F: include/linux/quota*.h
2743 F: include/uapi/linux/quota*.h
2745 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2746 M: Bernie Thompson <bernie@plugable.com>
2747 L: linux-fbdev@vger.kernel.org
2749 W: http://plugable.com/category/projects/udlfb/
2750 F: drivers/video/udlfb.c
2751 F: include/video/udlfb.h
2752 F: Documentation/fb/udlfb.txt
2754 DISTRIBUTED LOCK MANAGER (DLM)
2755 M: Christine Caulfield <ccaulfie@redhat.com>
2756 M: David Teigland <teigland@redhat.com>
2757 L: cluster-devel@redhat.com
2758 W: http://sources.redhat.com/cluster/
2759 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
2763 DMA BUFFER SHARING FRAMEWORK
2764 M: Sumit Semwal <sumit.semwal@linaro.org>
2766 L: linux-media@vger.kernel.org
2767 L: dri-devel@lists.freedesktop.org
2768 L: linaro-mm-sig@lists.linaro.org
2769 F: drivers/base/dma-buf*
2770 F: include/linux/dma-buf*
2771 F: Documentation/dma-buf-sharing.txt
2772 T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2774 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
2775 M: Vinod Koul <vinod.koul@intel.com>
2776 M: Dan Williams <dan.j.williams@intel.com>
2777 L: dmaengine@vger.kernel.org
2778 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
2781 F: include/linux/dma*
2782 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2783 T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2785 DME1737 HARDWARE MONITOR DRIVER
2786 M: Juerg Haefliger <juergh@gmail.com>
2787 L: lm-sensors@lm-sensors.org
2789 F: Documentation/hwmon/dme1737
2790 F: drivers/hwmon/dme1737.c
2792 DOCKING STATION DRIVER
2793 M: Shaohua Li <shaohua.li@intel.com>
2794 L: linux-acpi@vger.kernel.org
2796 F: drivers/acpi/dock.c
2799 M: Rob Landley <rob@landley.net>
2800 L: linux-doc@vger.kernel.org
2806 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
2807 L: blinux-list@redhat.com
2809 F: drivers/char/dtlk.c
2810 F: include/linux/dtlk.h
2812 DPT_I2O SCSI RAID DRIVER
2813 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
2814 L: linux-scsi@vger.kernel.org
2815 W: http://www.adaptec.com/
2817 F: drivers/scsi/dpt*
2818 F: drivers/scsi/dpt/
2823 M: drbd-dev@lists.linbit.com
2824 L: drbd-user@lists.linbit.com
2825 W: http://www.drbd.org
2826 T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2827 T: git git://git.drbd.org/drbd-8.3.git
2829 F: drivers/block/drbd/
2831 F: Documentation/blockdev/drbd/
2833 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
2834 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2835 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
2837 F: Documentation/kobject.txt
2841 F: include/linux/kobj*
2842 F: include/linux/debugfs.h
2846 M: David Airlie <airlied@linux.ie>
2847 L: dri-devel@lists.freedesktop.org
2848 T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
2852 F: include/uapi/drm/
2854 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
2855 M: Daniel Vetter <daniel.vetter@ffwll.ch>
2856 M: Jani Nikula <jani.nikula@linux.intel.com>
2857 L: intel-gfx@lists.freedesktop.org
2858 L: dri-devel@lists.freedesktop.org
2859 Q: http://patchwork.freedesktop.org/project/intel-gfx/
2860 T: git git://people.freedesktop.org/~danvet/drm-intel
2862 F: drivers/gpu/drm/i915/
2863 F: include/drm/i915*
2864 F: include/uapi/drm/i915*
2866 DRM DRIVERS FOR EXYNOS
2867 M: Inki Dae <inki.dae@samsung.com>
2868 M: Joonyoung Shim <jy0922.shim@samsung.com>
2869 M: Seung-Woo Kim <sw0312.kim@samsung.com>
2870 M: Kyungmin Park <kyungmin.park@samsung.com>
2871 L: dri-devel@lists.freedesktop.org
2872 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
2874 F: drivers/gpu/drm/exynos/
2875 F: include/drm/exynos*
2876 F: include/uapi/drm/exynos*
2878 DRM DRIVERS FOR NVIDIA TEGRA
2879 M: Thierry Reding <thierry.reding@gmail.com>
2880 M: Terje Bergström <tbergstrom@nvidia.com>
2881 L: dri-devel@lists.freedesktop.org
2882 L: linux-tegra@vger.kernel.org
2883 T: git git://anongit.freedesktop.org/tegra/linux.git
2885 F: drivers/gpu/drm/tegra/
2886 F: drivers/gpu/host1x/
2887 F: include/linux/host1x.h
2888 F: include/uapi/drm/tegra_drm.h
2889 F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2891 DSBR100 USB FM RADIO DRIVER
2892 M: Alexey Klimov <klimov.linux@gmail.com>
2893 L: linux-media@vger.kernel.org
2894 T: git git://linuxtv.org/media_tree.git
2896 F: drivers/media/radio/dsbr100.c
2899 M: Francois Romieu <romieu@fr.zoreil.com>
2900 L: netdev@vger.kernel.org
2902 F: drivers/net/wan/dscc4.c
2904 DVB_USB_AF9015 MEDIA DRIVER
2905 M: Antti Palosaari <crope@iki.fi>
2906 L: linux-media@vger.kernel.org
2907 W: http://linuxtv.org/
2908 W: http://palosaari.fi/linux/
2909 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2910 T: git git://linuxtv.org/anttip/media_tree.git
2912 F: drivers/media/usb/dvb-usb-v2/af9015*
2914 DVB_USB_AF9035 MEDIA DRIVER
2915 M: Antti Palosaari <crope@iki.fi>
2916 L: linux-media@vger.kernel.org
2917 W: http://linuxtv.org/
2918 W: http://palosaari.fi/linux/
2919 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2920 T: git git://linuxtv.org/anttip/media_tree.git
2922 F: drivers/media/usb/dvb-usb-v2/af9035*
2924 DVB_USB_ANYSEE MEDIA DRIVER
2925 M: Antti Palosaari <crope@iki.fi>
2926 L: linux-media@vger.kernel.org
2927 W: http://linuxtv.org/
2928 W: http://palosaari.fi/linux/
2929 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2930 T: git git://linuxtv.org/anttip/media_tree.git
2932 F: drivers/media/usb/dvb-usb-v2/anysee*
2934 DVB_USB_AU6610 MEDIA DRIVER
2935 M: Antti Palosaari <crope@iki.fi>
2936 L: linux-media@vger.kernel.org
2937 W: http://linuxtv.org/
2938 W: http://palosaari.fi/linux/
2939 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2940 T: git git://linuxtv.org/anttip/media_tree.git
2942 F: drivers/media/usb/dvb-usb-v2/au6610*
2944 DVB_USB_CE6230 MEDIA DRIVER
2945 M: Antti Palosaari <crope@iki.fi>
2946 L: linux-media@vger.kernel.org
2947 W: http://linuxtv.org/
2948 W: http://palosaari.fi/linux/
2949 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2950 T: git git://linuxtv.org/anttip/media_tree.git
2952 F: drivers/media/usb/dvb-usb-v2/ce6230*
2954 DVB_USB_CXUSB MEDIA DRIVER
2955 M: Michael Krufky <mkrufky@linuxtv.org>
2956 L: linux-media@vger.kernel.org
2957 W: http://linuxtv.org/
2958 W: http://github.com/mkrufky
2959 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2960 T: git git://linuxtv.org/media_tree.git
2962 F: drivers/media/usb/dvb-usb/cxusb*
2964 DVB_USB_EC168 MEDIA DRIVER
2965 M: Antti Palosaari <crope@iki.fi>
2966 L: linux-media@vger.kernel.org
2967 W: http://linuxtv.org/
2968 W: http://palosaari.fi/linux/
2969 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2970 T: git git://linuxtv.org/anttip/media_tree.git
2972 F: drivers/media/usb/dvb-usb-v2/ec168*
2974 DVB_USB_GL861 MEDIA DRIVER
2975 M: Antti Palosaari <crope@iki.fi>
2976 L: linux-media@vger.kernel.org
2977 W: http://linuxtv.org/
2978 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2979 T: git git://linuxtv.org/anttip/media_tree.git
2981 F: drivers/media/usb/dvb-usb-v2/gl861*
2983 DVB_USB_MXL111SF MEDIA DRIVER
2984 M: Michael Krufky <mkrufky@linuxtv.org>
2985 L: linux-media@vger.kernel.org
2986 W: http://linuxtv.org/
2987 W: http://github.com/mkrufky
2988 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2989 T: git git://linuxtv.org/mkrufky/mxl111sf.git
2991 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
2993 DVB_USB_RTL28XXU MEDIA DRIVER
2994 M: Antti Palosaari <crope@iki.fi>
2995 L: linux-media@vger.kernel.org
2996 W: http://linuxtv.org/
2997 W: http://palosaari.fi/linux/
2998 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2999 T: git git://linuxtv.org/anttip/media_tree.git
3001 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3003 DVB_USB_V2 MEDIA DRIVER
3004 M: Antti Palosaari <crope@iki.fi>
3005 L: linux-media@vger.kernel.org
3006 W: http://linuxtv.org/
3007 W: http://palosaari.fi/linux/
3008 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3009 T: git git://linuxtv.org/anttip/media_tree.git
3011 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3012 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3015 M: Jason Baron <jbaron@akamai.com>
3017 F: lib/dynamic_debug.c
3018 F: include/linux/dynamic_debug.h
3020 DZ DECSTATION DZ11 SERIAL DRIVER
3021 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3023 F: drivers/tty/serial/dz.*
3026 M: Antti Palosaari <crope@iki.fi>
3027 L: linux-media@vger.kernel.org
3028 W: http://linuxtv.org/
3029 W: http://palosaari.fi/linux/
3030 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3031 T: git git://linuxtv.org/anttip/media_tree.git
3033 F: drivers/media/tuners/e4000*
3035 EATA-DMA SCSI DRIVER
3036 M: Michael Neuffer <mike@i-Connect.Net>
3037 L: linux-eata@i-connect.net
3038 L: linux-scsi@vger.kernel.org
3040 F: drivers/scsi/eata*
3042 EATA ISA/EISA/PCI SCSI DRIVER
3043 M: Dario Ballabio <ballabio_dario@emc.com>
3044 L: linux-scsi@vger.kernel.org
3046 F: drivers/scsi/eata.c
3048 EATA-PIO SCSI DRIVER
3049 M: Michael Neuffer <mike@i-Connect.Net>
3050 L: linux-eata@i-connect.net
3051 L: linux-scsi@vger.kernel.org
3053 F: drivers/scsi/eata_pio.*
3056 M: Bart De Schuymer <bart.de.schuymer@pandora.be>
3057 L: netfilter-devel@vger.kernel.org
3058 W: http://ebtables.sourceforge.net/
3060 F: include/linux/netfilter_bridge/ebt_*.h
3061 F: include/uapi/linux/netfilter_bridge/ebt_*.h
3062 F: net/bridge/netfilter/ebt*.c
3065 M: Antti Palosaari <crope@iki.fi>
3066 L: linux-media@vger.kernel.org
3067 W: http://linuxtv.org/
3068 W: http://palosaari.fi/linux/
3069 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3070 T: git git://linuxtv.org/anttip/media_tree.git
3072 F: drivers/media/dvb-frontends/ec100*
3075 M: Tyler Hicks <tyhicks@canonical.com>
3076 L: ecryptfs@vger.kernel.org
3077 W: http://ecryptfs.org
3078 W: https://launchpad.net/ecryptfs
3080 F: Documentation/filesystems/ecryptfs.txt
3084 M: Doug Thompson <dougthompson@xmission.com>
3085 L: linux-edac@vger.kernel.org
3086 W: bluesmoke.sourceforge.net
3088 F: Documentation/edac.txt
3090 F: include/linux/edac.h
3093 M: Doug Thompson <dougthompson@xmission.com>
3094 M: Borislav Petkov <bp@alien8.de>
3095 L: linux-edac@vger.kernel.org
3096 W: bluesmoke.sourceforge.net
3098 F: drivers/edac/amd64_edac*
3101 M: Doug Thompson <dougthompson@xmission.com>
3102 M: Robert Richter <rric@kernel.org>
3103 L: linux-edac@vger.kernel.org
3104 W: bluesmoke.sourceforge.net
3106 F: drivers/edac/highbank*
3109 M: Ralf Baechle <ralf@linux-mips.org>
3110 M: David Daney <david.daney@cavium.com>
3111 L: linux-edac@vger.kernel.org
3112 L: linux-mips@linux-mips.org
3113 W: bluesmoke.sourceforge.net
3115 F: drivers/edac/octeon_edac*
3118 M: Mark Gross <mark.gross@intel.com>
3119 M: Doug Thompson <dougthompson@xmission.com>
3120 L: linux-edac@vger.kernel.org
3121 W: bluesmoke.sourceforge.net
3123 F: drivers/edac/e752x_edac.c
3126 M: Doug Thompson <dougthompson@xmission.com>
3127 L: linux-edac@vger.kernel.org
3128 W: bluesmoke.sourceforge.net
3130 F: drivers/edac/e7xxx_edac.c
3133 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3134 L: linux-edac@vger.kernel.org
3135 W: bluesmoke.sourceforge.net
3137 F: drivers/edac/ghes_edac.c
3140 M: Tim Small <tim@buttersideup.com>
3141 L: linux-edac@vger.kernel.org
3142 W: bluesmoke.sourceforge.net
3144 F: drivers/edac/i82443bxgx_edac.c
3147 M: Jason Uhlenkott <juhlenko@akamai.com>
3148 L: linux-edac@vger.kernel.org
3149 W: bluesmoke.sourceforge.net
3151 F: drivers/edac/i3000_edac.c
3154 M: Doug Thompson <dougthompson@xmission.com>
3155 L: linux-edac@vger.kernel.org
3156 W: bluesmoke.sourceforge.net
3158 F: drivers/edac/i5000_edac.c
3161 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3162 L: linux-edac@vger.kernel.org
3163 W: bluesmoke.sourceforge.net
3165 F: drivers/edac/i5400_edac.c
3168 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3169 L: linux-edac@vger.kernel.org
3170 W: bluesmoke.sourceforge.net
3172 F: drivers/edac/i7300_edac.c
3175 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3176 L: linux-edac@vger.kernel.org
3177 W: bluesmoke.sourceforge.net
3179 F: drivers/edac/i7core_edac.c
3182 M: Ranganathan Desikan <ravi@jetztechnologies.com>
3183 M: "Arvind R." <arvino55@gmail.com>
3184 L: linux-edac@vger.kernel.org
3185 W: bluesmoke.sourceforge.net
3187 F: drivers/edac/i82975x_edac.c
3190 M: Johannes Thumshirn <johannes.thumshirn@men.de>
3191 L: linux-edac@vger.kernel.org
3192 W: bluesmoke.sourceforge.net
3194 F: drivers/edac/mpc85xx_edac.[ch]
3197 M: Egor Martovetsky <egor@pasemi.com>
3198 L: linux-edac@vger.kernel.org
3199 W: bluesmoke.sourceforge.net
3201 F: drivers/edac/pasemi_edac.c
3204 M: Tim Small <tim@buttersideup.com>
3205 L: linux-edac@vger.kernel.org
3206 W: bluesmoke.sourceforge.net
3208 F: drivers/edac/r82600_edac.c
3211 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3212 L: linux-edac@vger.kernel.org
3213 W: bluesmoke.sourceforge.net
3215 F: drivers/edac/sb_edac.c
3217 EDIROL UA-101/UA-1000 DRIVER
3218 M: Clemens Ladisch <clemens@ladisch.de>
3219 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3220 T: git git://git.alsa-project.org/alsa-kernel.git
3222 F: sound/usb/misc/ua101.c
3224 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3225 M: Matt Fleming <matt.fleming@intel.com>
3226 L: linux-efi@vger.kernel.org
3227 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3229 F: Documentation/x86/efi-stub.txt
3230 F: arch/ia64/kernel/efi.c
3231 F: arch/x86/boot/compressed/eboot.[ch]
3232 F: arch/x86/include/asm/efi.h
3233 F: arch/x86/platform/efi/*
3234 F: drivers/firmware/efi/*
3235 F: include/linux/efi*.h
3237 EFI VARIABLE FILESYSTEM
3238 M: Matthew Garrett <matthew.garrett@nebula.com>
3239 M: Jeremy Kerr <jk@ozlabs.org>
3240 M: Matt Fleming <matt.fleming@intel.com>
3241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3242 L: linux-efi@vger.kernel.org
3246 EFIFB FRAMEBUFFER DRIVER
3247 L: linux-fbdev@vger.kernel.org
3248 M: Peter Jones <pjones@redhat.com>
3250 F: drivers/video/efifb.c
3253 W: http://aeschi.ch.eu.org/efs/
3257 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3258 M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3259 M: Christoph Raisch <raisch@de.ibm.com>
3260 L: linux-rdma@vger.kernel.org
3262 F: drivers/infiniband/hw/ehca/
3264 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3265 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3266 L: netdev@vger.kernel.org
3268 F: drivers/net/ethernet/ibm/ehea/
3270 EM28XX VIDEO4LINUX DRIVER
3271 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3272 L: linux-media@vger.kernel.org
3273 W: http://linuxtv.org
3274 T: git git://linuxtv.org/media_tree.git
3276 F: drivers/media/usb/em28xx/
3279 M: Paul Gortmaker <paul.gortmaker@windriver.com>
3280 M: Matt Mackall <mpm@selenic.com>
3281 M: David Woodhouse <dwmw2@infradead.org>
3282 L: linux-embedded@vger.kernel.org
3285 EMULEX LPFC FC SCSI DRIVER
3286 M: James Smart <james.smart@emulex.com>
3287 L: linux-scsi@vger.kernel.org
3288 W: http://sourceforge.net/projects/lpfcxxxx
3290 F: drivers/scsi/lpfc/
3292 ENE CB710 FLASH CARD READER DRIVER
3293 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
3295 F: drivers/misc/cb710/
3296 F: drivers/mmc/host/cb710-mmc.*
3297 F: include/linux/cb710.h
3299 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3300 M: Maxim Levitsky <maximlevitsky@gmail.com>
3302 F: drivers/media/rc/ene_ir.*
3304 ENHANCED ERROR HANDLING (EEH)
3305 M: Gavin Shan <shangw@linux.vnet.ibm.com>
3306 L: linuxppc-dev@lists.ozlabs.org
3308 F: Documentation/powerpc/eeh-pci-error-recovery.txt
3309 F: arch/powerpc/kernel/eeh*.c
3311 EPSON S1D13XXX FRAMEBUFFER DRIVER
3312 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
3314 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3315 F: drivers/video/s1d13xxxfb.c
3316 F: include/video/s1d13xxxfb.h
3319 M: Stephen Hemminger <stephen@networkplumber.org>
3320 L: bridge@lists.linux-foundation.org
3321 L: netdev@vger.kernel.org
3322 W: http://www.linuxfoundation.org/en/Net:Bridge
3324 F: include/linux/netfilter_bridge/
3328 M: Jan Kara <jack@suse.cz>
3329 L: linux-ext4@vger.kernel.org
3331 F: Documentation/filesystems/ext2.txt
3333 F: include/linux/ext2*
3336 M: Jan Kara <jack@suse.cz>
3337 M: Andrew Morton <akpm@linux-foundation.org>
3338 M: Andreas Dilger <adilger.kernel@dilger.ca>
3339 L: linux-ext4@vger.kernel.org
3341 F: Documentation/filesystems/ext3.txt
3345 M: "Theodore Ts'o" <tytso@mit.edu>
3346 M: Andreas Dilger <adilger.kernel@dilger.ca>
3347 L: linux-ext4@vger.kernel.org
3348 W: http://ext4.wiki.kernel.org
3349 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
3351 F: Documentation/filesystems/ext4.txt
3354 Extended Verification Module (EVM)
3355 M: Mimi Zohar <zohar@us.ibm.com>
3357 F: security/integrity/evm/
3359 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3360 M: MyungJoo Ham <myungjoo.ham@samsung.com>
3361 M: Chanwoo Choi <cw00.choi@samsung.com>
3362 L: linux-kernel@vger.kernel.org
3363 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3366 F: Documentation/extcon/
3369 M: Jingoo Han <jg1.han@samsung.com>
3370 L: linux-fbdev@vger.kernel.org
3372 F: drivers/video/exynos/exynos_dp*
3374 EXYNOS MIPI DISPLAY DRIVERS
3375 M: Inki Dae <inki.dae@samsung.com>
3376 M: Donghwa Lee <dh09.lee@samsung.com>
3377 M: Kyungmin Park <kyungmin.park@samsung.com>
3378 L: linux-fbdev@vger.kernel.org
3380 F: drivers/video/exynos/exynos_mipi*
3381 F: include/video/exynos_mipi*
3383 F71805F HARDWARE MONITORING DRIVER
3384 M: Jean Delvare <jdelvare@suse.de>
3385 L: lm-sensors@lm-sensors.org
3387 F: Documentation/hwmon/f71805f
3388 F: drivers/hwmon/f71805f.c
3391 M: Michael Buesch <m@bues.ch>
3392 L: linux-media@vger.kernel.org
3394 F: drivers/media/tuners/fc0011.h
3395 F: drivers/media/tuners/fc0011.c
3398 M: Antti Palosaari <crope@iki.fi>
3399 L: linux-media@vger.kernel.org
3400 W: http://linuxtv.org/
3401 W: http://palosaari.fi/linux/
3402 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3403 T: git git://linuxtv.org/anttip/media_tree.git
3405 F: drivers/media/tuners/fc2580*
3408 M: Eric Paris <eparis@redhat.com>
3410 F: fs/notify/fanotify/
3411 F: include/linux/fanotify.h
3412 F: include/uapi/linux/fanotify.h
3414 FARSYNC SYNCHRONOUS DRIVER
3415 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
3416 W: http://www.farsite.co.uk/
3418 F: drivers/net/wan/farsync.*
3420 FAULT INJECTION SUPPORT
3421 M: Akinobu Mita <akinobu.mita@gmail.com>
3423 F: Documentation/fault-injection/
3424 F: lib/fault-inject.c
3426 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3427 M: Robert Love <robert.w.love@intel.com>
3428 L: fcoe-devel@open-fcoe.org
3429 W: www.Open-FCoE.org
3431 F: drivers/scsi/libfc/
3432 F: drivers/scsi/fcoe/
3434 F: include/scsi/libfc.h
3435 F: include/scsi/libfcoe.h
3436 F: include/uapi/scsi/fc/
3438 FILE LOCKING (flock() and fcntl()/lockf())
3439 M: Matthew Wilcox <matthew@wil.cx>
3440 L: linux-fsdevel@vger.kernel.org
3442 F: include/linux/fcntl.h
3443 F: include/linux/fs.h
3444 F: include/uapi/linux/fcntl.h
3445 F: include/uapi/linux/fs.h
3449 FILESYSTEMS (VFS and infrastructure)
3450 M: Alexander Viro <viro@zeniv.linux.org.uk>
3451 L: linux-fsdevel@vger.kernel.org
3455 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3456 M: Riku Voipio <riku.voipio@iki.fi>
3457 L: lm-sensors@lm-sensors.org
3459 F: drivers/hwmon/f75375s.c
3460 F: include/linux/f75375s.h
3462 FIREWIRE AUDIO DRIVERS
3463 M: Clemens Ladisch <clemens@ladisch.de>
3464 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3465 T: git git://git.alsa-project.org/alsa-kernel.git
3469 FIREWIRE MEDIA DRIVERS (firedtv)
3470 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3471 L: linux-media@vger.kernel.org
3472 L: linux1394-devel@lists.sourceforge.net
3473 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3475 F: drivers/media/firewire/
3477 FIREWIRE SBP-2 TARGET
3478 M: Chris Boot <bootc@bootc.net>
3479 L: linux-scsi@vger.kernel.org
3480 L: target-devel@vger.kernel.org
3481 L: linux1394-devel@lists.sourceforge.net
3482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3484 F: drivers/target/sbp/
3487 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3488 L: linux1394-devel@lists.sourceforge.net
3489 W: http://ieee1394.wiki.kernel.org/
3490 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3492 F: drivers/firewire/
3493 F: include/linux/firewire.h
3494 F: include/uapi/linux/firewire*.h
3497 FIRMWARE LOADER (request_firmware)
3498 M: Ming Lei <ming.lei@canonical.com>
3499 L: linux-kernel@vger.kernel.org
3501 F: Documentation/firmware_class/
3502 F: drivers/base/firmware*.c
3503 F: include/linux/firmware.h
3505 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3506 M: Joshua Morris <josh.h.morris@us.ibm.com>
3507 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3509 F: drivers/block/rsxx/
3512 M: Jiri Kosina <jkosina@suse.cz>
3513 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3515 F: drivers/block/floppy.c
3518 M: Alessandro Rubini <rubini@gnudd.com>
3519 W: http://www.ohwr.org/projects/fmc-bus
3522 F: include/linux/fmc*.h
3523 F: include/linux/ipmi-fru.h
3527 M: Bill Metzenthen <billm@melbpc.org.au>
3528 W: http://floatingpoint.sourceforge.net/emulator/index.html
3530 F: arch/x86/math-emu/
3532 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3533 L: netdev@vger.kernel.org
3535 F: drivers/net/wan/dlci.c
3536 F: drivers/net/wan/sdla.c
3539 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3540 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
3541 L: linux-fbdev@vger.kernel.org
3542 W: http://linux-fbdev.sourceforge.net/
3543 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
3544 T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
3546 F: Documentation/fb/
3547 F: Documentation/devicetree/bindings/fb/
3550 F: include/linux/fb.h
3551 F: include/uapi/video/
3552 F: include/uapi/linux/fb.h
3554 FREESCALE DIU FRAMEBUFFER DRIVER
3555 M: Timur Tabi <timur@tabi.org>
3556 L: linux-fbdev@vger.kernel.org
3558 F: drivers/video/fsl-diu-fb.*
3560 FREESCALE DMA DRIVER
3561 M: Li Yang <leoli@freescale.com>
3562 M: Zhang Wei <zw@zh-kernel.org>
3563 L: linuxppc-dev@lists.ozlabs.org
3565 F: drivers/dma/fsldma.*
3567 FREESCALE I2C CPM DRIVER
3568 M: Jochen Friedrich <jochen@scram.de>
3569 L: linuxppc-dev@lists.ozlabs.org
3570 L: linux-i2c@vger.kernel.org
3572 F: drivers/i2c/busses/i2c-cpm.c
3574 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
3575 M: Sascha Hauer <kernel@pengutronix.de>
3576 L: linux-fbdev@vger.kernel.org
3577 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3579 F: include/linux/platform_data/video-imxfb.h
3580 F: drivers/video/imxfb.c
3582 FREESCALE SOC FS_ENET DRIVER
3583 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3584 M: Vitaly Bordug <vbordug@ru.mvista.com>
3585 L: linuxppc-dev@lists.ozlabs.org
3586 L: netdev@vger.kernel.org
3588 F: drivers/net/ethernet/freescale/fs_enet/
3589 F: include/linux/fs_enet_pd.h
3591 FREESCALE QUICC ENGINE LIBRARY
3592 L: linuxppc-dev@lists.ozlabs.org
3594 F: arch/powerpc/sysdev/qe_lib/
3595 F: arch/powerpc/include/asm/*qe.h
3597 FREESCALE USB PERIPHERAL DRIVERS
3598 M: Li Yang <leoli@freescale.com>
3599 L: linux-usb@vger.kernel.org
3600 L: linuxppc-dev@lists.ozlabs.org
3602 F: drivers/usb/gadget/fsl*
3604 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
3605 M: Li Yang <leoli@freescale.com>
3606 L: netdev@vger.kernel.org
3607 L: linuxppc-dev@lists.ozlabs.org
3609 F: drivers/net/ethernet/freescale/ucc_geth*
3611 FREESCALE QUICC ENGINE UCC UART DRIVER
3612 M: Timur Tabi <timur@tabi.org>
3613 L: linuxppc-dev@lists.ozlabs.org
3615 F: drivers/tty/serial/ucc_uart.c
3617 FREESCALE SOC SOUND DRIVERS
3618 M: Timur Tabi <timur@tabi.org>
3619 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3620 L: linuxppc-dev@lists.ozlabs.org
3622 F: sound/soc/fsl/fsl*
3623 F: sound/soc/fsl/mpc8610_hpcd.c
3626 M: Christoph Hellwig <hch@infradead.org>
3627 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3632 M: Pavel Machek <pavel@ucw.cz>
3633 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3634 L: linux-pm@vger.kernel.org
3636 F: Documentation/power/freezing-of-tasks.txt
3637 F: include/linux/freezer.h
3641 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3642 L: linux-kernel@vger.kernel.org
3645 F: include/linux/frontswap.h
3647 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
3648 M: David Howells <dhowells@redhat.com>
3649 L: linux-cachefs@redhat.com
3651 F: Documentation/filesystems/caching/
3653 F: include/linux/fscache*.h
3656 M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3657 L: linux-f2fs-devel@lists.sourceforge.net
3658 W: http://en.wikipedia.org/wiki/F2FS
3659 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3661 F: Documentation/filesystems/f2fs.txt
3662 F: Documentation/ABI/testing/sysfs-fs-f2fs
3664 F: include/linux/f2fs_fs.h
3666 FUJITSU FR-V (FRV) PORT
3667 M: David Howells <dhowells@redhat.com>
3671 FUJITSU LAPTOP EXTRAS
3672 M: Jonathan Woithe <jwoithe@just42.net>
3673 L: platform-driver-x86@vger.kernel.org
3675 F: drivers/platform/x86/fujitsu-laptop.c
3677 FUJITSU M-5MO LS CAMERA ISP DRIVER
3678 M: Kyungmin Park <kyungmin.park@samsung.com>
3679 M: Heungjun Kim <riverful.kim@samsung.com>
3680 L: linux-media@vger.kernel.org
3682 F: drivers/media/i2c/m5mols/
3683 F: include/media/m5mols.h
3685 FUJITSU TABLET EXTRAS
3686 M: Robert Gerlach <khnz@gmx.de>
3687 L: platform-driver-x86@vger.kernel.org
3689 F: drivers/platform/x86/fujitsu-tablet.c
3691 FUSE: FILESYSTEM IN USERSPACE
3692 M: Miklos Szeredi <miklos@szeredi.hu>
3693 L: fuse-devel@lists.sourceforge.net
3694 W: http://fuse.sourceforge.net/
3697 F: include/uapi/linux/fuse.h
3699 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
3700 M: Rik Faith <faith@cs.unc.edu>
3701 L: linux-scsi@vger.kernel.org
3702 S: Odd Fixes (e.g., new signatures)
3703 F: drivers/scsi/fdomain.*
3705 GCOV BASED KERNEL PROFILING
3706 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
3709 F: Documentation/gcov.txt
3711 GDT SCSI DISK ARRAY CONTROLLER DRIVER
3712 M: Achim Leubner <achim_leubner@adaptec.com>
3713 L: linux-scsi@vger.kernel.org
3714 W: http://www.icp-vortex.com/
3716 F: drivers/scsi/gdt*
3718 GEMTEK FM RADIO RECEIVER DRIVER
3719 M: Hans Verkuil <hverkuil@xs4all.nl>
3720 L: linux-media@vger.kernel.org
3721 T: git git://linuxtv.org/media_tree.git
3722 W: http://linuxtv.org
3724 F: drivers/media/radio/radio-gemtek*
3726 GENERIC GPIO I2C DRIVER
3727 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
3729 F: drivers/i2c/busses/i2c-gpio.c
3730 F: include/linux/i2c-gpio.h
3732 GENERIC GPIO I2C MULTIPLEXER DRIVER
3733 M: Peter Korsgaard <peter.korsgaard@barco.com>
3734 L: linux-i2c@vger.kernel.org
3736 F: drivers/i2c/muxes/i2c-mux-gpio.c
3737 F: include/linux/i2c-mux-gpio.h
3738 F: Documentation/i2c/muxes/i2c-mux-gpio
3740 GENERIC HDLC (WAN) DRIVERS
3741 M: Krzysztof Halasa <khc@pm.waw.pl>
3742 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3744 F: drivers/net/wan/c101.c
3745 F: drivers/net/wan/hd6457*
3746 F: drivers/net/wan/hdlc*
3747 F: drivers/net/wan/n2.c
3748 F: drivers/net/wan/pc300too.c
3749 F: drivers/net/wan/pci200syn.c
3750 F: drivers/net/wan/wanxl*
3752 GENERIC INCLUDE/ASM HEADER FILES
3753 M: Arnd Bergmann <arnd@arndb.de>
3754 L: linux-arch@vger.kernel.org
3755 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3757 F: include/asm-generic/
3758 F: include/uapi/asm-generic/
3760 GENERIC PHY FRAMEWORK
3761 M: Kishon Vijay Abraham I <kishon@ti.com>
3762 L: linux-kernel@vger.kernel.org
3763 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
3766 F: include/linux/phy/
3768 GENERIC UIO DRIVER FOR PCI DEVICES
3769 M: "Michael S. Tsirkin" <mst@redhat.com>
3770 L: kvm@vger.kernel.org
3772 F: drivers/uio/uio_pci_generic.c
3775 M: Steven Whitehouse <swhiteho@redhat.com>
3776 L: cluster-devel@redhat.com
3777 W: http://sources.redhat.com/cluster/
3778 T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3779 T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
3781 F: Documentation/filesystems/gfs2*.txt
3783 F: include/uapi/linux/gfs2_ondisk.h
3785 GIGASET ISDN DRIVERS
3786 M: Hansjoerg Lipp <hjlipp@web.de>
3787 M: Tilman Schmidt <tilman@imap.cc>
3788 L: gigaset307x-common@lists.sourceforge.net
3789 W: http://gigaset307x.sourceforge.net/
3791 F: Documentation/isdn/README.gigaset
3792 F: drivers/isdn/gigaset/
3793 F: include/uapi/linux/gigaset_dev.h
3796 M: Linus Walleij <linus.walleij@linaro.org>
3797 M: Alexandre Courbot <gnurou@gmail.com>
3798 L: linux-gpio@vger.kernel.org
3799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
3801 F: Documentation/gpio/
3803 F: include/linux/gpio*
3804 F: include/asm-generic/gpio.h
3806 GRE DEMULTIPLEXER DRIVER
3807 M: Dmitry Kozlov <xeb@mail.ru>
3808 L: netdev@vger.kernel.org
3810 F: net/ipv4/gre_demux.c
3811 F: net/ipv4/gre_offload.c
3812 F: include/net/gre.h
3814 GRETH 10/100/1G Ethernet MAC device driver
3815 M: Kristoffer Glembo <kristoffer@gaisler.com>
3816 L: netdev@vger.kernel.org
3818 F: drivers/net/ethernet/aeroflex/
3820 GSPCA FINEPIX SUBDRIVER
3821 M: Frank Zago <frank@zago.net>
3822 L: linux-media@vger.kernel.org
3823 T: git git://linuxtv.org/media_tree.git
3825 F: drivers/media/usb/gspca/finepix.c
3827 GSPCA GL860 SUBDRIVER
3828 M: Olivier Lorin <o.lorin@laposte.net>
3829 L: linux-media@vger.kernel.org
3830 T: git git://linuxtv.org/media_tree.git
3832 F: drivers/media/usb/gspca/gl860/
3834 GSPCA M5602 SUBDRIVER
3835 M: Erik Andren <erik.andren@gmail.com>
3836 L: linux-media@vger.kernel.org
3837 T: git git://linuxtv.org/media_tree.git
3839 F: drivers/media/usb/gspca/m5602/
3841 GSPCA PAC207 SONIXB SUBDRIVER
3842 M: Hans de Goede <hdegoede@redhat.com>
3843 L: linux-media@vger.kernel.org
3844 T: git git://linuxtv.org/media_tree.git
3846 F: drivers/media/usb/gspca/pac207.c
3848 GSPCA SN9C20X SUBDRIVER
3849 M: Brian Johnson <brijohn@gmail.com>
3850 L: linux-media@vger.kernel.org
3851 T: git git://linuxtv.org/media_tree.git
3853 F: drivers/media/usb/gspca/sn9c20x.c
3855 GSPCA T613 SUBDRIVER
3856 M: Leandro Costantino <lcostantino@gmail.com>
3857 L: linux-media@vger.kernel.org
3858 T: git git://linuxtv.org/media_tree.git
3860 F: drivers/media/usb/gspca/t613.c
3862 GSPCA USB WEBCAM DRIVER
3863 M: Hans de Goede <hdegoede@redhat.com>
3864 L: linux-media@vger.kernel.org
3865 T: git git://linuxtv.org/media_tree.git
3867 F: drivers/media/usb/gspca/
3869 GUID PARTITION TABLE (GPT)
3870 M: Davidlohr Bueso <davidlohr@hp.com>
3871 L: linux-efi@vger.kernel.org
3873 F: block/partitions/efi.*
3875 STK1160 USB VIDEO CAPTURE DRIVER
3876 M: Ezequiel Garcia <elezegarcia@gmail.com>
3877 L: linux-media@vger.kernel.org
3878 T: git git://linuxtv.org/media_tree.git
3880 F: drivers/media/usb/stk1160/
3882 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3883 M: Frank Seidel <frank@f-seidel.de>
3884 L: platform-driver-x86@vger.kernel.org
3885 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3887 F: drivers/platform/x86/hdaps.c
3889 HDPVR USB VIDEO ENCODER DRIVER
3890 M: Hans Verkuil <hverkuil@xs4all.nl>
3891 L: linux-media@vger.kernel.org
3892 T: git git://linuxtv.org/media_tree.git
3893 W: http://linuxtv.org
3895 F: drivers/media/usb/hdpvr/
3897 HWPOISON MEMORY FAILURE HANDLING
3898 M: Andi Kleen <andi@firstfloor.org>
3899 L: linux-mm@kvack.org
3900 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3902 F: mm/memory-failure.c
3903 F: mm/hwpoison-inject.c
3905 HYPERVISOR VIRTUAL CONSOLE DRIVER
3906 L: linuxppc-dev@lists.ozlabs.org
3911 M: Jean Delvare <jdelvare@suse.de>
3912 M: Guenter Roeck <linux@roeck-us.net>
3913 L: lm-sensors@lm-sensors.org
3914 W: http://www.lm-sensors.org/
3915 T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
3916 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
3918 F: Documentation/hwmon/
3920 F: include/linux/hwmon*.h
3922 HARDWARE RANDOM NUMBER GENERATOR CORE
3923 M: Matt Mackall <mpm@selenic.com>
3924 M: Herbert Xu <herbert@gondor.apana.org.au>
3926 F: Documentation/hw_random.txt
3927 F: drivers/char/hw_random/
3928 F: include/linux/hw_random.h
3930 HARDWARE SPINLOCK CORE
3931 M: Ohad Ben-Cohen <ohad@wizery.com>
3933 F: Documentation/hwspinlock.txt
3934 F: drivers/hwspinlock/hwspinlock_*
3935 F: include/linux/hwspinlock.h
3937 HARMONY SOUND DRIVER
3938 L: linux-parisc@vger.kernel.org
3940 F: sound/parisc/harmony.*
3943 M: Antti Palosaari <crope@iki.fi>
3944 L: linux-media@vger.kernel.org
3945 W: http://linuxtv.org/
3946 W: http://palosaari.fi/linux/
3947 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3948 T: git git://linuxtv.org/anttip/media_tree.git
3950 F: drivers/media/dvb-frontends/hd29l2*
3952 HEWLETT-PACKARD SMART2 RAID DRIVER
3953 M: Chirag Kantharia <chirag.kantharia@hp.com>
3954 L: iss_storagedev@hp.com
3956 F: Documentation/blockdev/cpqarray.txt
3957 F: drivers/block/cpqarray.*
3959 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
3960 M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
3961 L: iss_storagedev@hp.com
3963 F: Documentation/scsi/hpsa.txt
3964 F: drivers/scsi/hpsa*.[ch]
3965 F: include/linux/cciss*.h
3966 F: include/uapi/linux/cciss*.h
3968 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
3969 M: Mike Miller <mike.miller@hp.com>
3970 L: iss_storagedev@hp.com
3972 F: Documentation/blockdev/cciss.txt
3973 F: drivers/block/cciss*
3974 F: include/linux/cciss_ioctl.h
3975 F: include/uapi/linux/cciss_ioctl.h
3978 L: linux-fsdevel@vger.kernel.org
3980 F: Documentation/filesystems/hfs.txt
3984 L: linux-fsdevel@vger.kernel.org
3986 F: Documentation/filesystems/hfsplus.txt
3989 HGA FRAMEBUFFER DRIVER
3990 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
3991 L: linux-nvidia@lists.surfsouth.com
3992 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
3994 F: drivers/video/hgafb.c
3996 HIBERNATION (aka Software Suspend, aka swsusp)
3997 M: Pavel Machek <pavel@ucw.cz>
3998 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3999 L: linux-pm@vger.kernel.org
4002 F: drivers/base/power/
4004 F: include/linux/suspend.h
4005 F: include/linux/freezer.h
4006 F: include/linux/pm.h
4007 F: arch/*/include/asm/suspend*.h
4010 M: Jiri Kosina <jkosina@suse.cz>
4011 L: linux-input@vger.kernel.org
4012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4015 F: include/linux/hid*
4016 F: include/uapi/linux/hid*
4018 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4019 M: Thomas Gleixner <tglx@linutronix.de>
4020 L: linux-kernel@vger.kernel.org
4021 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4023 F: Documentation/timers/
4025 F: kernel/time/clockevents.c
4026 F: kernel/time/tick*.*
4027 F: kernel/time/timer_*.c
4028 F: include/linux/clockchips.h
4029 F: include/linux/hrtimer.h
4031 HIGH-SPEED SCC DRIVER FOR AX.25
4032 L: linux-hams@vger.kernel.org
4034 F: drivers/net/hamradio/dmascc.c
4035 F: drivers/net/hamradio/scc.c
4037 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4038 M: HighPoint Linux Team <linux@highpoint-tech.com>
4039 W: http://www.highpoint-tech.com
4041 F: Documentation/scsi/hptiop.txt
4042 F: drivers/scsi/hptiop.c
4045 M: Jes Sorensen <jes@trained-monkey.org>
4046 L: linux-hippi@sunsite.dk
4048 F: include/linux/hippidevice.h
4049 F: include/uapi/linux/if_hippi.h
4051 F: drivers/net/hippi/
4054 M: Jouni Malinen <j@w1.fi>
4055 L: hostap@shmoo.com (subscribers-only)
4056 L: linux-wireless@vger.kernel.org
4057 W: http://hostap.epitest.fi/
4059 F: drivers/net/wireless/hostap/
4061 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4062 L: platform-driver-x86@vger.kernel.org
4064 F: drivers/platform/x86/tc1100-wmi.c
4066 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4067 M: Jaroslav Kysela <perex@perex.cz>
4069 F: drivers/net/ethernet/hp/hp100.*
4071 HPET: High Precision Event Timers driver
4072 M: Clemens Ladisch <clemens@ladisch.de>
4074 F: Documentation/timers/hpet.txt
4075 F: drivers/char/hpet.c
4076 F: include/linux/hpet.h
4077 F: include/uapi/linux/hpet.h
4080 M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
4082 F: arch/x86/kernel/hpet.c
4083 F: arch/x86/include/asm/hpet.h
4086 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4087 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4092 M: Sebastian Reichel <sre@debian.org>
4094 F: Documentation/ABI/testing/sysfs-bus-hsi
4096 F: include/linux/hsi/
4097 F: include/uapi/linux/hsi/
4100 M: Jan Dumon <j.dumon@option.com>
4101 W: http://www.pharscape.org
4103 F: drivers/net/usb/hso.c
4105 HSR NETWORK PROTOCOL
4106 M: Arvid Brodin <arvid.brodin@alten.se>
4107 L: netdev@vger.kernel.org
4111 HTCPEN TOUCHSCREEN DRIVER
4112 M: Pau Oliva Fora <pof@eslack.org>
4113 L: linux-input@vger.kernel.org
4115 F: drivers/input/touchscreen/htcpen.c
4118 M: Nadia Yvette Chambers <nyc@holomorphy.com>
4122 Hyper-V CORE AND DRIVERS
4123 M: K. Y. Srinivasan <kys@microsoft.com>
4124 M: Haiyang Zhang <haiyangz@microsoft.com>
4125 L: devel@linuxdriverproject.org
4127 F: arch/x86/include/asm/mshyperv.h
4128 F: arch/x86/include/uapi/asm/hyperv.h
4129 F: arch/x86/kernel/cpu/mshyperv.c
4130 F: drivers/hid/hid-hyperv.c
4132 F: drivers/input/serio/hyperv-keyboard.c
4133 F: drivers/net/hyperv/
4134 F: drivers/scsi/storvsc_drv.c
4135 F: drivers/video/hyperv_fb.c
4136 F: include/linux/hyperv.h
4139 I2C OVER PARALLEL PORT
4140 M: Jean Delvare <jdelvare@suse.de>
4141 L: linux-i2c@vger.kernel.org
4143 F: Documentation/i2c/busses/i2c-parport
4144 F: Documentation/i2c/busses/i2c-parport-light
4145 F: drivers/i2c/busses/i2c-parport.c
4146 F: drivers/i2c/busses/i2c-parport-light.c
4148 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4149 M: Jean Delvare <jdelvare@suse.de>
4150 L: linux-i2c@vger.kernel.org
4152 F: Documentation/i2c/busses/i2c-ali1535
4153 F: Documentation/i2c/busses/i2c-ali1563
4154 F: Documentation/i2c/busses/i2c-ali15x3
4155 F: Documentation/i2c/busses/i2c-amd756
4156 F: Documentation/i2c/busses/i2c-amd8111
4157 F: Documentation/i2c/busses/i2c-i801
4158 F: Documentation/i2c/busses/i2c-nforce2
4159 F: Documentation/i2c/busses/i2c-piix4
4160 F: Documentation/i2c/busses/i2c-sis5595
4161 F: Documentation/i2c/busses/i2c-sis630
4162 F: Documentation/i2c/busses/i2c-sis96x
4163 F: Documentation/i2c/busses/i2c-via
4164 F: Documentation/i2c/busses/i2c-viapro
4165 F: drivers/i2c/busses/i2c-ali1535.c
4166 F: drivers/i2c/busses/i2c-ali1563.c
4167 F: drivers/i2c/busses/i2c-ali15x3.c
4168 F: drivers/i2c/busses/i2c-amd756.c
4169 F: drivers/i2c/busses/i2c-amd756-s4882.c
4170 F: drivers/i2c/busses/i2c-amd8111.c
4171 F: drivers/i2c/busses/i2c-i801.c
4172 F: drivers/i2c/busses/i2c-isch.c
4173 F: drivers/i2c/busses/i2c-nforce2.c
4174 F: drivers/i2c/busses/i2c-nforce2-s4985.c
4175 F: drivers/i2c/busses/i2c-piix4.c
4176 F: drivers/i2c/busses/i2c-sis5595.c
4177 F: drivers/i2c/busses/i2c-sis630.c
4178 F: drivers/i2c/busses/i2c-sis96x.c
4179 F: drivers/i2c/busses/i2c-via.c
4180 F: drivers/i2c/busses/i2c-viapro.c
4182 I2C/SMBUS ISMT DRIVER
4183 M: Seth Heasley <seth.heasley@intel.com>
4184 M: Neil Horman <nhorman@tuxdriver.com>
4185 L: linux-i2c@vger.kernel.org
4186 F: drivers/i2c/busses/i2c-ismt.c
4187 F: Documentation/i2c/busses/i2c-ismt
4189 I2C/SMBUS STUB DRIVER
4190 M: Jean Delvare <jdelvare@suse.de>
4191 L: linux-i2c@vger.kernel.org
4193 F: drivers/i2c/i2c-stub.c
4196 M: Wolfram Sang <wsa@the-dreams.de>
4197 L: linux-i2c@vger.kernel.org
4198 W: http://i2c.wiki.kernel.org/
4199 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4201 F: Documentation/i2c/
4203 F: include/linux/i2c.h
4204 F: include/linux/i2c-*.h
4205 F: include/uapi/linux/i2c.h
4206 F: include/uapi/linux/i2c-*.h
4209 M: Jean Delvare <jdelvare@suse.de>
4210 L: linux-i2c@vger.kernel.org
4212 F: Documentation/i2c/busses/i2c-taos-evm
4213 F: drivers/i2c/busses/i2c-taos-evm.c
4216 M: Till Harbaum <till@harbaum.org>
4217 L: linux-i2c@vger.kernel.org
4218 W: http://www.harbaum.org/till/i2c_tiny_usb
4220 F: drivers/i2c/busses/i2c-tiny-usb.c
4223 M: "H. Peter Anvin" <hpa@zytor.com>
4227 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4228 M: "H. Peter Anvin" <hpa@zytor.com>
4229 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4232 IA64 (Itanium) PLATFORM
4233 M: Tony Luck <tony.luck@intel.com>
4234 M: Fenghua Yu <fenghua.yu@intel.com>
4235 L: linux-ia64@vger.kernel.org
4236 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4240 IBM Power in-Nest Crypto Acceleration
4241 M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4242 M: Fionnuala Gunter <fin@linux.vnet.ibm.com>
4243 L: linux-crypto@vger.kernel.org
4245 F: drivers/crypto/nx/
4247 IBM Power 842 compression accelerator
4248 M: Robert Jennings <rcj@linux.vnet.ibm.com>
4250 F: drivers/crypto/nx/nx-842.c
4251 F: include/linux/nx842.h
4253 IBM Power Linux RAID adapter
4254 M: Brian King <brking@us.ibm.com>
4256 F: drivers/scsi/ipr.*
4258 IBM Power Virtual Ethernet Device Driver
4259 M: Santiago Leon <santil@linux.vnet.ibm.com>
4260 L: netdev@vger.kernel.org
4262 F: drivers/net/ethernet/ibm/ibmveth.*
4264 IBM Power Virtual SCSI/FC Device Drivers
4265 M: Robert Jennings <rcj@linux.vnet.ibm.com>
4266 L: linux-scsi@vger.kernel.org
4268 F: drivers/scsi/ibmvscsi/
4269 X: drivers/scsi/ibmvscsi/ibmvstgt.c
4271 IBM ServeRAID RAID DRIVER
4273 M: Dave Jeffery <ipslinux@adaptec.com>
4274 W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
4276 F: drivers/scsi/ips.*
4278 ICH LPC AND GPIO DRIVER
4279 M: Peter Tyser <ptyser@xes-inc.com>
4281 F: drivers/mfd/lpc_ich.c
4282 F: drivers/gpio/gpio-ich.c
4285 M: "David S. Miller" <davem@davemloft.net>
4286 L: linux-ide@vger.kernel.org
4287 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
4288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4290 F: Documentation/ide/
4292 F: include/linux/ide.h
4294 IDEAPAD LAPTOP EXTRAS DRIVER
4295 M: Ike Panhc <ike.pan@canonical.com>
4296 L: platform-driver-x86@vger.kernel.org
4297 W: http://launchpad.net/ideapad-laptop
4299 F: drivers/platform/x86/ideapad-laptop.c
4301 IDEAPAD LAPTOP SLIDEBAR DRIVER
4302 M: Andrey Moiseev <o2g.org.ru@gmail.com>
4303 L: linux-input@vger.kernel.org
4304 W: https://github.com/o2genum/ideapad-slidebar
4306 F: drivers/input/misc/ideapad_slidebar.c
4309 M: Borislav Petkov <bp@alien8.de>
4310 L: linux-ide@vger.kernel.org
4312 F: Documentation/cdrom/ide-cd
4313 F: drivers/ide/ide-cd*
4316 M: Andy Henroid <andrew.d.henroid@intel.com>
4317 L: linux-pm@vger.kernel.org
4319 F: drivers/idle/i7300_idle.c
4321 IEEE 802.15.4 SUBSYSTEM
4322 M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
4323 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
4324 L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
4325 W: http://apps.sourceforge.net/trac/linux-zigbee
4326 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
4330 F: drivers/net/ieee802154/
4332 IGUANAWORKS USB IR TRANSCEIVER
4333 M: Sean Young <sean@mess.org>
4334 L: linux-media@vger.kernel.org
4336 F: drivers/media/rc/iguanair.c
4338 IIO SUBSYSTEM AND DRIVERS
4339 M: Jonathan Cameron <jic23@kernel.org>
4340 L: linux-iio@vger.kernel.org
4343 F: drivers/staging/iio/
4345 IKANOS/ADI EAGLE ADSL USB DRIVER
4346 M: Matthieu Castet <castet.matthieu@free.fr>
4347 M: Stanislaw Gruszka <stf_xl@wp.pl>
4349 F: drivers/usb/atm/ueagle-atm.c
4351 INA209 HARDWARE MONITOR DRIVER
4352 M: Guenter Roeck <linux@roeck-us.net>
4353 L: lm-sensors@lm-sensors.org
4355 F: Documentation/hwmon/ina209
4356 F: Documentation/devicetree/bindings/i2c/ina209.txt
4357 F: drivers/hwmon/ina209.c
4359 INA2XX HARDWARE MONITOR DRIVER
4360 M: Guenter Roeck <linux@roeck-us.net>
4361 L: lm-sensors@lm-sensors.org
4363 F: Documentation/hwmon/ina2xx
4364 F: drivers/hwmon/ina2xx.c
4365 F: include/linux/platform_data/ina2xx.h
4367 INDUSTRY PACK SUBSYSTEM (IPACK)
4368 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4369 M: Jens Taprogge <jens.taprogge@taprogge.org>
4370 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4371 L: industrypack-devel@lists.sourceforge.net
4372 W: http://industrypack.sourceforge.net
4376 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4377 M: Mimi Zohar <zohar@us.ibm.com>
4378 M: Dmitry Kasatkin <d.kasatkin@samsung.com>
4380 F: security/integrity/ima/
4382 IMS TWINTURBO FRAMEBUFFER DRIVER
4383 L: linux-fbdev@vger.kernel.org
4385 F: drivers/video/imsttfb.c
4387 INFINIBAND SUBSYSTEM
4388 M: Roland Dreier <roland@kernel.org>
4389 M: Sean Hefty <sean.hefty@intel.com>
4390 M: Hal Rosenstock <hal.rosenstock@gmail.com>
4391 L: linux-rdma@vger.kernel.org
4392 W: http://www.openfabrics.org/
4393 Q: http://patchwork.kernel.org/project/linux-rdma/list/
4394 T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4396 F: Documentation/infiniband/
4397 F: drivers/infiniband/
4398 F: include/uapi/linux/if_infiniband.h
4401 M: John McCutchan <john@johnmccutchan.com>
4402 M: Robert Love <rlove@rlove.org>
4403 M: Eric Paris <eparis@parisplace.org>
4405 F: Documentation/filesystems/inotify.txt
4406 F: fs/notify/inotify/
4407 F: include/linux/inotify.h
4408 F: include/uapi/linux/inotify.h
4410 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4411 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4412 M: Dmitry Torokhov <dtor@mail.ru>
4413 L: linux-input@vger.kernel.org
4414 Q: http://patchwork.kernel.org/project/linux-input/list/
4415 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4418 F: include/linux/input.h
4419 F: include/uapi/linux/input.h
4420 F: include/linux/input/
4422 INPUT MULTITOUCH (MT) PROTOCOL
4423 M: Henrik Rydberg <rydberg@euromail.se>
4424 L: linux-input@vger.kernel.org
4425 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4427 F: Documentation/input/multi-touch-protocol.txt
4428 F: drivers/input/input-mt.c
4431 INTEL C600 SERIES SAS CONTROLLER DRIVER
4432 M: Intel SCU Linux support <intel-linux-scu@intel.com>
4433 M: Lukasz Dorau <lukasz.dorau@intel.com>
4434 M: Maciej Patelczyk <maciej.patelczyk@intel.com>
4435 M: Dave Jiang <dave.jiang@intel.com>
4436 L: linux-scsi@vger.kernel.org
4437 T: git git://git.code.sf.net/p/intel-sas/isci
4439 F: drivers/scsi/isci/
4442 M: Len Brown <lenb@kernel.org>
4443 L: linux-pm@vger.kernel.org
4444 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4446 F: drivers/idle/intel_idle.c
4448 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4449 M: Maik Broemme <mbroemme@plusserver.de>
4450 L: linux-fbdev@vger.kernel.org
4452 F: Documentation/fb/intelfb.txt
4453 F: drivers/video/intelfb/
4455 INTEL 810/815 FRAMEBUFFER DRIVER
4456 M: Antonino Daplas <adaplas@gmail.com>
4457 L: linux-fbdev@vger.kernel.org
4459 F: drivers/video/i810/
4461 INTEL MENLOW THERMAL DRIVER
4462 M: Sujith Thomas <sujith.thomas@intel.com>
4463 L: platform-driver-x86@vger.kernel.org
4464 W: https://01.org/linux-acpi
4466 F: drivers/platform/x86/intel_menlow.c
4468 INTEL IA32 MICROCODE UPDATE SUPPORT
4469 M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
4471 F: arch/x86/kernel/microcode_core.c
4472 F: arch/x86/kernel/microcode_intel.c
4474 INTEL I/OAT DMA DRIVER
4475 M: Dan Williams <dan.j.williams@intel.com>
4476 M: Dave Jiang <dave.jiang@intel.com>
4477 L: dmaengine@vger.kernel.org
4478 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
4480 F: drivers/dma/ioat*
4483 M: David Woodhouse <dwmw2@infradead.org>
4484 L: iommu@lists.linux-foundation.org
4485 T: git git://git.infradead.org/iommu-2.6.git
4487 F: drivers/iommu/intel-iommu.c
4488 F: include/linux/intel-iommu.h
4490 INTEL IOP-ADMA DMA DRIVER
4491 M: Dan Williams <dan.j.williams@intel.com>
4493 F: drivers/dma/iop-adma.c
4495 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
4496 M: Krzysztof Halasa <khc@pm.waw.pl>
4498 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4499 F: arch/arm/mach-ixp4xx/include/mach/npe.h
4500 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4501 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
4502 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
4503 F: drivers/net/wan/ixp4xx_hss.c
4505 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
4506 M: Deepak Saxena <dsaxena@plexity.net>
4508 F: drivers/char/hw_random/ixp4xx-rng.c
4510 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
4511 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4512 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4513 M: Bruce Allan <bruce.w.allan@intel.com>
4514 M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4515 M: Don Skidmore <donald.c.skidmore@intel.com>
4516 M: Greg Rose <gregory.v.rose@intel.com>
4517 M: Alex Duyck <alexander.h.duyck@intel.com>
4518 M: John Ronciak <john.ronciak@intel.com>
4519 M: Mitch Williams <mitch.a.williams@intel.com>
4520 L: e1000-devel@lists.sourceforge.net
4521 W: http://www.intel.com/support/feedback.htm
4522 W: http://e1000.sourceforge.net/
4523 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4524 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
4526 F: Documentation/networking/e100.txt
4527 F: Documentation/networking/e1000.txt
4528 F: Documentation/networking/e1000e.txt
4529 F: Documentation/networking/igb.txt
4530 F: Documentation/networking/igbvf.txt
4531 F: Documentation/networking/ixgb.txt
4532 F: Documentation/networking/ixgbe.txt
4533 F: Documentation/networking/ixgbevf.txt
4534 F: Documentation/networking/i40e.txt
4535 F: Documentation/networking/i40evf.txt
4536 F: drivers/net/ethernet/intel/
4538 INTEL-MID GPIO DRIVER
4539 M: David Cohen <david.a.cohen@linux.intel.com>
4540 L: linux-gpio@vger.kernel.org
4542 F: drivers/gpio/gpio-intel-mid.c
4544 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4545 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
4546 L: linux-wireless@vger.kernel.org
4548 F: Documentation/networking/README.ipw2100
4549 F: Documentation/networking/README.ipw2200
4550 F: drivers/net/wireless/ipw2x00/
4552 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
4553 M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4554 M: Gang Wei <gang.wei@intel.com>
4555 M: Shane Wang <shane.wang@intel.com>
4556 L: tboot-devel@lists.sourceforge.net
4557 W: http://tboot.sourceforge.net
4558 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
4560 F: Documentation/intel_txt.txt
4561 F: include/linux/tboot.h
4562 F: arch/x86/kernel/tboot.c
4564 INTEL WIRELESS WIMAX CONNECTION 2400
4565 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
4566 M: linux-wimax@intel.com
4567 L: wimax@linuxwimax.org
4569 W: http://linuxwimax.org
4570 F: Documentation/wimax/README.i2400m
4571 F: drivers/net/wimax/i2400m/
4572 F: include/uapi/linux/wimax/i2400m.h
4574 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4575 M: Stanislaw Gruszka <sgruszka@redhat.com>
4576 L: linux-wireless@vger.kernel.org
4578 F: drivers/net/wireless/iwlegacy/
4580 INTEL WIRELESS WIFI LINK (iwlwifi)
4581 M: Johannes Berg <johannes.berg@intel.com>
4582 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
4583 M: Intel Linux Wireless <ilw@linux.intel.com>
4584 L: linux-wireless@vger.kernel.org
4585 W: http://intellinuxwireless.org
4586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
4588 F: drivers/net/wireless/iwlwifi/
4590 INTEL MANAGEMENT ENGINE (mei)
4591 M: Tomas Winkler <tomas.winkler@intel.com>
4592 L: linux-kernel@vger.kernel.org
4594 F: include/uapi/linux/mei.h
4595 F: drivers/misc/mei/*
4596 F: Documentation/misc-devices/mei/*
4598 IOC3 ETHERNET DRIVER
4599 M: Ralf Baechle <ralf@linux-mips.org>
4600 L: linux-mips@linux-mips.org
4602 F: drivers/net/ethernet/sgi/ioc3-eth.c
4605 M: Pat Gefre <pfg@sgi.com>
4606 L: linux-serial@vger.kernel.org
4608 F: drivers/tty/serial/ioc3_serial.c
4611 M: Joerg Roedel <joro@8bytes.org>
4612 L: iommu@lists.linux-foundation.org
4613 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
4618 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
4620 F: net/ipv4/netfilter/ipt_MASQUERADE.c
4622 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
4623 M: Francois Romieu <romieu@fr.zoreil.com>
4624 M: Sorbica Shieh <sorbica@icplus.com.tw>
4625 L: netdev@vger.kernel.org
4627 F: drivers/net/ethernet/icplus/ipg.*
4630 M: Mike Marciniszyn <infinipath@intel.com>
4631 L: linux-rdma@vger.kernel.org
4633 F: drivers/infiniband/hw/ipath/
4636 M: Corey Minyard <minyard@acm.org>
4637 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
4638 W: http://openipmi.sourceforge.net/
4640 F: Documentation/IPMI.txt
4641 F: drivers/char/ipmi/
4642 F: include/linux/ipmi*
4643 F: include/uapi/linux/ipmi*
4645 IPS SCSI RAID DRIVER
4646 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4647 L: linux-scsi@vger.kernel.org
4648 W: http://www.adaptec.com/
4650 F: drivers/scsi/ips*
4653 M: Wensong Zhang <wensong@linux-vs.org>
4654 M: Simon Horman <horms@verge.net.au>
4655 M: Julian Anastasov <ja@ssi.bg>
4656 L: netdev@vger.kernel.org
4657 L: lvs-devel@vger.kernel.org
4659 F: Documentation/networking/ipvs-sysctl.txt
4660 F: include/net/ip_vs.h
4661 F: include/uapi/linux/ip_vs.h
4662 F: net/netfilter/ipvs/
4665 M: Jiri Kosina <jkosina@suse.cz>
4666 M: David Sterba <dsterba@suse.cz>
4668 F: drivers/tty/ipwireless/
4671 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4672 L: netdev@vger.kernel.org
4674 F: include/net/ipx.h
4675 F: include/uapi/linux/ipx.h
4679 M: Samuel Ortiz <samuel@sortiz.org>
4680 L: irda-users@lists.sourceforge.net (subscribers-only)
4681 L: netdev@vger.kernel.org
4682 W: http://irda.sourceforge.net/
4684 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
4685 F: Documentation/networking/irda.txt
4686 F: drivers/net/irda/
4687 F: include/net/irda/
4691 M: Thomas Gleixner <tglx@linutronix.de>
4692 L: linux-kernel@vger.kernel.org
4694 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4698 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4699 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4701 F: Documentation/IRQ-domain.txt
4702 F: include/linux/irqdomain.h
4703 F: kernel/irq/irqdomain.c
4706 M: Jaroslav Kysela <perex@perex.cz>
4708 F: Documentation/isapnp.txt
4709 F: drivers/pnp/isapnp/
4710 F: include/linux/isapnp.h
4713 M: Hans Verkuil <hverkuil@xs4all.nl>
4714 L: linux-media@vger.kernel.org
4715 T: git git://linuxtv.org/media_tree.git
4716 W: http://linuxtv.org
4718 F: drivers/media/radio/radio-isa*
4720 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4721 M: Peter Jones <pjones@redhat.com>
4722 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4724 F: drivers/firmware/iscsi_ibft*
4727 M: Mike Christie <michaelc@cs.wisc.edu>
4728 L: open-iscsi@googlegroups.com
4729 W: www.open-iscsi.org
4730 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
4732 F: drivers/scsi/*iscsi*
4733 F: include/scsi/*iscsi*
4735 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
4736 M: Or Gerlitz <ogerlitz@mellanox.com>
4737 M: Roi Dayan <roid@mellanox.com>
4738 L: linux-rdma@vger.kernel.org
4740 W: http://www.openfabrics.org
4741 W: www.open-iscsi.org
4742 Q: http://patchwork.kernel.org/project/linux-rdma/list/
4743 F: drivers/infiniband/ulp/iser/
4746 M: Karsten Keil <isdn@linux-pingi.de>
4747 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
4748 L: netdev@vger.kernel.org
4749 W: http://www.isdn4linux.de
4750 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
4752 F: Documentation/isdn/
4754 F: include/linux/isdn.h
4755 F: include/linux/isdn/
4756 F: include/uapi/linux/isdn.h
4757 F: include/uapi/linux/isdn/
4759 ISDN SUBSYSTEM (Eicon active card driver)
4760 M: Armin Schindler <mac@melware.de>
4761 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
4762 W: http://www.melware.de
4764 F: drivers/isdn/hardware/eicon/
4766 IT87 HARDWARE MONITORING DRIVER
4767 M: Jean Delvare <jdelvare@suse.de>
4768 L: lm-sensors@lm-sensors.org
4770 F: Documentation/hwmon/it87
4771 F: drivers/hwmon/it87.c
4774 M: Malcolm Priestley <tvboxspy@gmail.com>
4775 L: linux-media@vger.kernel.org
4776 W: http://linuxtv.org/
4777 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4779 F: drivers/media/usb/dvb-usb-v2/it913x*
4781 IT913X FE MEDIA DRIVER
4782 M: Malcolm Priestley <tvboxspy@gmail.com>
4783 L: linux-media@vger.kernel.org
4784 W: http://linuxtv.org/
4785 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4787 F: drivers/media/dvb-frontends/it913x-fe*
4790 M: Antti Palosaari <crope@iki.fi>
4791 L: linux-media@vger.kernel.org
4792 W: http://linuxtv.org/
4793 W: http://palosaari.fi/linux/
4794 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4795 T: git git://linuxtv.org/anttip/media_tree.git
4797 F: drivers/media/tuners/tuner_it913x*
4799 IVTV VIDEO4LINUX DRIVER
4800 M: Andy Walls <awalls@md.metrocast.net>
4801 L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
4802 L: linux-media@vger.kernel.org
4803 T: git git://linuxtv.org/media_tree.git
4804 W: http://www.ivtvdriver.org
4806 F: Documentation/video4linux/*.ivtv
4807 F: drivers/media/pci/ivtv/
4808 F: include/uapi/linux/ivtv*
4810 IX2505V MEDIA DRIVER
4811 M: Malcolm Priestley <tvboxspy@gmail.com>
4812 L: linux-media@vger.kernel.org
4813 W: http://linuxtv.org/
4814 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4816 F: drivers/media/dvb-frontends/ix2505v*
4818 JC42.4 TEMPERATURE SENSOR DRIVER
4819 M: Guenter Roeck <linux@roeck-us.net>
4820 L: lm-sensors@lm-sensors.org
4822 F: drivers/hwmon/jc42.c
4823 F: Documentation/hwmon/jc42
4826 M: Dave Kleikamp <shaggy@kernel.org>
4827 L: jfs-discussion@lists.sourceforge.net
4828 W: http://jfs.sourceforge.net/
4829 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
4831 F: Documentation/filesystems/jfs.txt
4835 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
4836 L: netdev@vger.kernel.org
4838 F: drivers/net/ethernet/jme.*
4840 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
4841 M: David Woodhouse <dwmw2@infradead.org>
4842 L: linux-mtd@lists.infradead.org
4843 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
4846 F: include/uapi/linux/jffs2.h
4848 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
4849 M: Andrew Morton <akpm@linux-foundation.org>
4850 M: Jan Kara <jack@suse.cz>
4851 L: linux-ext4@vger.kernel.org
4854 F: include/linux/jbd.h
4856 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4857 M: "Theodore Ts'o" <tytso@mit.edu>
4858 L: linux-ext4@vger.kernel.org
4861 F: include/linux/jbd2.h
4863 JSM Neo PCI based serial card
4864 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4865 L: linux-serial@vger.kernel.org
4867 F: drivers/tty/serial/jsm/
4869 K10TEMP HARDWARE MONITORING DRIVER
4870 M: Clemens Ladisch <clemens@ladisch.de>
4871 L: lm-sensors@lm-sensors.org
4873 F: Documentation/hwmon/k10temp
4874 F: drivers/hwmon/k10temp.c
4876 K8TEMP HARDWARE MONITORING DRIVER
4877 M: Rudolf Marek <r.marek@assembler.cz>
4878 L: lm-sensors@lm-sensors.org
4880 F: Documentation/hwmon/k8temp
4881 F: drivers/hwmon/k8temp.c
4884 M: Jovi Zhangwei <jovi.zhangwei@gmail.com>
4885 W: http://www.ktap.org
4886 L: ktap@freelists.org
4888 F: drivers/staging/ktap/
4891 M: "Yann E. MORIN" <yann.morin.1998@free.fr>
4892 L: linux-kbuild@vger.kernel.org
4893 T: git://gitorious.org/linux-kconfig/linux-kconfig
4895 F: Documentation/kbuild/kconfig-language.txt
4899 M: Vivek Goyal <vgoyal@redhat.com>
4900 M: Haren Myneni <hbabu@us.ibm.com>
4901 L: kexec@lists.infradead.org
4902 W: http://lse.sourceforge.net/kdump/
4904 F: Documentation/kdump/
4906 KEENE FM RADIO TRANSMITTER DRIVER
4907 M: Hans Verkuil <hverkuil@xs4all.nl>
4908 L: linux-media@vger.kernel.org
4909 T: git git://linuxtv.org/media_tree.git
4910 W: http://linuxtv.org
4912 F: drivers/media/radio/radio-keene*
4914 KERNEL AUTOMOUNTER v4 (AUTOFS4)
4915 M: Ian Kent <raven@themaw.net>
4916 L: autofs@vger.kernel.org
4920 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
4921 M: Michal Marek <mmarek@suse.cz>
4922 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4923 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
4924 L: linux-kbuild@vger.kernel.org
4926 F: Documentation/kbuild/
4928 F: scripts/Makefile.*
4934 L: kernel-janitors@vger.kernel.org
4935 W: http://kernelnewbies.org/KernelJanitors
4938 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
4939 M: "J. Bruce Fields" <bfields@fieldses.org>
4940 L: linux-nfs@vger.kernel.org
4941 W: http://nfs.sourceforge.net/
4944 F: include/linux/nfsd/
4945 F: include/uapi/linux/nfsd/
4949 F: include/linux/lockd/
4950 F: include/linux/sunrpc/
4951 F: include/uapi/linux/sunrpc/
4953 KERNEL VIRTUAL MACHINE (KVM)
4954 M: Gleb Natapov <gleb@kernel.org>
4955 M: Paolo Bonzini <pbonzini@redhat.com>
4956 L: kvm@vger.kernel.org
4957 W: http://www.linux-kvm.org
4958 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
4960 F: Documentation/*/kvm*.txt
4961 F: Documentation/virtual/kvm/
4963 F: arch/*/include/asm/kvm*
4964 F: include/linux/kvm*
4965 F: include/uapi/linux/kvm*
4968 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
4969 M: Joerg Roedel <joro@8bytes.org>
4970 L: kvm@vger.kernel.org
4971 W: http://kvm.qumranet.com
4973 F: arch/x86/include/asm/svm.h
4974 F: arch/x86/kvm/svm.c
4976 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
4977 M: Alexander Graf <agraf@suse.de>
4978 L: kvm-ppc@vger.kernel.org
4979 W: http://kvm.qumranet.com
4980 T: git git://github.com/agraf/linux-2.6.git
4982 F: arch/powerpc/include/asm/kvm*
4983 F: arch/powerpc/kvm/
4985 KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
4986 M: Xiantao Zhang <xiantao.zhang@intel.com>
4987 L: kvm-ia64@vger.kernel.org
4988 W: http://kvm.qumranet.com
4990 F: Documentation/ia64/kvm.txt
4991 F: arch/ia64/include/asm/kvm*
4994 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
4995 M: Christian Borntraeger <borntraeger@de.ibm.com>
4996 M: Cornelia Huck <cornelia.huck@de.ibm.com>
4997 M: linux390@de.ibm.com
4998 L: linux-s390@vger.kernel.org
4999 W: http://www.ibm.com/developerworks/linux/linux390/
5001 F: Documentation/s390/kvm.txt
5002 F: arch/s390/include/asm/kvm*
5004 F: drivers/s390/kvm/
5006 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5007 M: Christoffer Dall <christoffer.dall@linaro.org>
5008 L: kvmarm@lists.cs.columbia.edu
5009 W: http://systems.cs.columbia.edu/projects/kvm-arm
5011 F: arch/arm/include/uapi/asm/kvm*
5012 F: arch/arm/include/asm/kvm*
5015 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5016 M: Marc Zyngier <marc.zyngier@arm.com>
5017 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5018 L: kvmarm@lists.cs.columbia.edu
5020 F: arch/arm64/include/uapi/asm/kvm*
5021 F: arch/arm64/include/asm/kvm*
5025 M: Eric Biederman <ebiederm@xmission.com>
5026 W: http://kernel.org/pub/linux/utils/kernel/kexec/
5027 L: kexec@lists.infradead.org
5029 F: include/linux/kexec.h
5030 F: include/uapi/linux/kexec.h
5034 M: David Howells <dhowells@redhat.com>
5035 L: keyrings@linux-nfs.org
5037 F: Documentation/security/keys.txt
5038 F: include/linux/key.h
5039 F: include/linux/key-type.h
5044 M: David Safford <safford@watson.ibm.com>
5045 M: Mimi Zohar <zohar@us.ibm.com>
5046 L: linux-security-module@vger.kernel.org
5047 L: keyrings@linux-nfs.org
5049 F: Documentation/security/keys-trusted-encrypted.txt
5050 F: include/keys/trusted-type.h
5051 F: security/keys/trusted.c
5052 F: security/keys/trusted.h
5055 M: Mimi Zohar <zohar@us.ibm.com>
5056 M: David Safford <safford@watson.ibm.com>
5057 L: linux-security-module@vger.kernel.org
5058 L: keyrings@linux-nfs.org
5060 F: Documentation/security/keys-trusted-encrypted.txt
5061 F: include/keys/encrypted-type.h
5062 F: security/keys/encrypted-keys/
5064 KGDB / KDB /debug_core
5065 M: Jason Wessel <jason.wessel@windriver.com>
5066 W: http://kgdb.wiki.kernel.org/
5067 L: kgdb-bugreport@lists.sourceforge.net
5069 F: Documentation/DocBook/kgdb.tmpl
5070 F: drivers/misc/kgdbts.c
5071 F: drivers/tty/serial/kgdboc.c
5072 F: include/linux/kdb.h
5073 F: include/linux/kgdb.h
5077 M: Vegard Nossum <vegardno@ifi.uio.no>
5078 M: Pekka Enberg <penberg@kernel.org>
5080 F: Documentation/kmemcheck.txt
5081 F: arch/x86/include/asm/kmemcheck.h
5082 F: arch/x86/mm/kmemcheck/
5083 F: include/linux/kmemcheck.h
5087 M: Catalin Marinas <catalin.marinas@arm.com>
5089 F: Documentation/kmemleak.txt
5090 F: include/linux/kmemleak.h
5092 F: mm/kmemleak-test.c
5095 M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5096 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5097 M: "David S. Miller" <davem@davemloft.net>
5098 M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5100 F: Documentation/kprobes.txt
5101 F: include/linux/kprobes.h
5104 KS0108 LCD CONTROLLER DRIVER
5105 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5106 W: http://miguelojeda.es/auxdisplay.htm
5107 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5109 F: Documentation/auxdisplay/ks0108
5110 F: drivers/auxdisplay/ks0108.c
5111 F: include/linux/ks0108.h
5114 L: linux-x25@vger.kernel.org
5116 F: Documentation/networking/lapb-module.txt
5120 LASI 53c700 driver for PARISC
5121 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5122 L: linux-scsi@vger.kernel.org
5124 F: Documentation/scsi/53c700.txt
5125 F: drivers/scsi/53c700*
5128 M: Bryan Wu <cooloney@gmail.com>
5129 M: Richard Purdie <rpurdie@rpsys.net>
5130 L: linux-leds@vger.kernel.org
5131 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5134 F: include/linux/leds.h
5136 LEGACY EEPROM DRIVER
5137 M: Jean Delvare <jdelvare@suse.de>
5139 F: Documentation/misc-devices/eeprom
5140 F: drivers/misc/eeprom/eeprom.c
5142 LEGO USB Tower driver
5143 M: Juergen Stuber <starblue@users.sourceforge.net>
5144 L: legousb-devel@lists.sourceforge.net
5145 W: http://legousb.sourceforge.net/
5147 F: drivers/usb/misc/legousbtower.c
5150 M: Michael Krufky <mkrufky@linuxtv.org>
5151 L: linux-media@vger.kernel.org
5152 W: http://linuxtv.org/
5153 W: http://github.com/mkrufky
5154 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5155 T: git git://linuxtv.org/mkrufky/tuners.git
5157 F: drivers/media/dvb-frontends/lg2160.*
5159 LGDT3305 MEDIA DRIVER
5160 M: Michael Krufky <mkrufky@linuxtv.org>
5161 L: linux-media@vger.kernel.org
5162 W: http://linuxtv.org/
5163 W: http://github.com/mkrufky
5164 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5165 T: git git://linuxtv.org/mkrufky/tuners.git
5167 F: drivers/media/dvb-frontends/lgdt3305.*
5170 M: Rusty Russell <rusty@rustcorp.com.au>
5171 L: lguest@lists.ozlabs.org
5172 W: http://lguest.ozlabs.org/
5174 F: arch/x86/include/asm/lguest*.h
5177 F: include/linux/lguest*.h
5181 M: Sasha Levin <sasha.levin@oracle.com>
5183 F: tools/lib/lockdep/
5185 LINUX FOR IBM pSERIES (RS/6000)
5186 M: Paul Mackerras <paulus@au.ibm.com>
5187 W: http://www.ibm.com/linux/ltc/projects/ppc
5189 F: arch/powerpc/boot/rs6000.h
5191 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5192 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
5193 M: Paul Mackerras <paulus@samba.org>
5194 W: http://www.penguinppc.org/
5195 L: linuxppc-dev@lists.ozlabs.org
5196 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5197 T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5199 F: Documentation/powerpc/
5202 LINUX FOR POWER MACINTOSH
5203 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
5204 W: http://www.penguinppc.org/
5205 L: linuxppc-dev@lists.ozlabs.org
5207 F: arch/powerpc/platforms/powermac/
5208 F: drivers/macintosh/
5210 LINUX FOR POWERPC EMBEDDED MPC5XXX
5211 M: Anatolij Gustschin <agust@denx.de>
5212 L: linuxppc-dev@lists.ozlabs.org
5213 T: git git://git.denx.de/linux-2.6-agust.git
5215 F: arch/powerpc/platforms/512x/
5216 F: arch/powerpc/platforms/52xx/
5218 LINUX FOR POWERPC EMBEDDED PPC4XX
5219 M: Josh Boyer <jwboyer@gmail.com>
5220 M: Matt Porter <mporter@kernel.crashing.org>
5221 W: http://www.penguinppc.org/
5222 L: linuxppc-dev@lists.ozlabs.org
5223 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
5225 F: arch/powerpc/platforms/40x/
5226 F: arch/powerpc/platforms/44x/
5228 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5229 L: linuxppc-dev@lists.ozlabs.org
5231 F: arch/powerpc/*/*virtex*
5232 F: arch/powerpc/*/*/*virtex*
5234 LINUX FOR POWERPC EMBEDDED PPC8XX
5235 M: Vitaly Bordug <vitb@kernel.crashing.org>
5236 M: Marcelo Tosatti <marcelo@kvack.org>
5237 W: http://www.penguinppc.org/
5238 L: linuxppc-dev@lists.ozlabs.org
5240 F: arch/powerpc/platforms/8xx/
5242 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5243 M: Kumar Gala <galak@kernel.crashing.org>
5244 W: http://www.penguinppc.org/
5245 L: linuxppc-dev@lists.ozlabs.org
5247 F: arch/powerpc/platforms/83xx/
5248 F: arch/powerpc/platforms/85xx/
5250 LINUX FOR POWERPC PA SEMI PWRFICIENT
5251 M: Olof Johansson <olof@lixom.net>
5252 L: linuxppc-dev@lists.ozlabs.org
5254 F: arch/powerpc/platforms/pasemi/
5255 F: drivers/*/*pasemi*
5256 F: drivers/*/*/*pasemi*
5258 LINUX SECURITY MODULE (LSM) FRAMEWORK
5259 M: Chris Wright <chrisw@sous-sol.org>
5260 L: linux-security-module@vger.kernel.org
5263 LIS3LV02D ACCELEROMETER DRIVER
5264 M: Eric Piel <eric.piel@tremplin-utc.net>
5266 F: Documentation/misc-devices/lis3lv02d
5267 F: drivers/misc/lis3lv02d/
5268 F: drivers/platform/x86/hp_accel.c
5271 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5273 F: include/linux/llc.h
5274 F: include/uapi/linux/llc.h
5278 LM73 HARDWARE MONITOR DRIVER
5279 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
5280 L: lm-sensors@lm-sensors.org
5282 F: drivers/hwmon/lm73.c
5284 LM78 HARDWARE MONITOR DRIVER
5285 M: Jean Delvare <jdelvare@suse.de>
5286 L: lm-sensors@lm-sensors.org
5288 F: Documentation/hwmon/lm78
5289 F: drivers/hwmon/lm78.c
5291 LM83 HARDWARE MONITOR DRIVER
5292 M: Jean Delvare <jdelvare@suse.de>
5293 L: lm-sensors@lm-sensors.org
5295 F: Documentation/hwmon/lm83
5296 F: drivers/hwmon/lm83.c
5298 LM90 HARDWARE MONITOR DRIVER
5299 M: Jean Delvare <jdelvare@suse.de>
5300 L: lm-sensors@lm-sensors.org
5302 F: Documentation/hwmon/lm90
5303 F: Documentation/devicetree/bindings/hwmon/lm90.txt
5304 F: drivers/hwmon/lm90.c
5306 LM95234 HARDWARE MONITOR DRIVER
5307 M: Guenter Roeck <linux@roeck-us.net>
5308 L: lm-sensors@lm-sensors.org
5310 F: Documentation/hwmon/lm95234
5311 F: drivers/hwmon/lm95234.c
5313 LME2510 MEDIA DRIVER
5314 M: Malcolm Priestley <tvboxspy@gmail.com>
5315 L: linux-media@vger.kernel.org
5316 W: http://linuxtv.org/
5317 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5319 F: drivers/media/usb/dvb-usb-v2/lmedm04*
5321 LOCKDEP AND LOCKSTAT
5322 M: Peter Zijlstra <peterz@infradead.org>
5323 M: Ingo Molnar <mingo@redhat.com>
5324 L: linux-kernel@vger.kernel.org
5325 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5327 F: Documentation/lockdep*.txt
5328 F: Documentation/lockstat.txt
5329 F: include/linux/lockdep.h
5332 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5333 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
5334 L: linux-ntfs-dev@lists.sourceforge.net
5335 W: http://www.linux-ntfs.org/content/view/19/37/
5337 F: Documentation/ldm.txt
5338 F: block/partitions/ldm.*
5341 M: Joern Engel <joern@logfs.org>
5342 M: Prasad Joshi <prasadjoshi.linux@gmail.com>
5348 LPC32XX MACHINE SUPPORT
5349 M: Roland Stigge <stigge@antcom.de>
5350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5352 F: arch/arm/mach-lpc32xx/
5354 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5355 M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5356 M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
5358 L: DL-MPTFusionLinux@lsi.com
5359 L: linux-scsi@vger.kernel.org
5360 W: http://www.lsilogic.com/support
5362 F: drivers/message/fusion/
5363 F: drivers/scsi/mpt2sas/
5364 F: drivers/scsi/mpt3sas/
5366 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5367 M: Matthew Wilcox <matthew@wil.cx>
5368 L: linux-scsi@vger.kernel.org
5370 F: drivers/scsi/sym53c8xx_2/
5372 LTC4261 HARDWARE MONITOR DRIVER
5373 M: Guenter Roeck <linux@roeck-us.net>
5374 L: lm-sensors@lm-sensors.org
5376 F: Documentation/hwmon/ltc4261
5377 F: drivers/hwmon/ltc4261.c
5379 LTP (Linux Test Project)
5380 M: Shubham Goyal <shubham@linux.vnet.ibm.com>
5381 M: Mike Frysinger <vapier@gentoo.org>
5382 M: Cyril Hrubis <chrubis@suse.cz>
5383 M: Caspar Zhang <caspar@casparzhang.com>
5384 M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
5385 L: ltp-list@lists.sourceforge.net (subscribers-only)
5386 W: http://ltp.sourceforge.net/
5387 T: git git://github.com/linux-test-project/ltp.git
5388 T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
5392 M: Hirokazu Takata <takata@linux-m32r.org>
5393 L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
5394 L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5395 W: http://www.linux-m32r.org/
5400 M: Geert Uytterhoeven <geert@linux-m68k.org>
5401 L: linux-m68k@lists.linux-m68k.org
5402 W: http://www.linux-m68k.org/
5403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
5408 M68K ON APPLE MACINTOSH
5409 M: Joshua Thompson <funaho@jurai.org>
5410 W: http://www.mac.linux-m68k.org/
5411 L: linux-m68k@lists.linux-m68k.org
5416 M: Philip Blundell <philb@gnu.org>
5417 W: http://www.tazenda.demon.co.uk/phil/linux-hp
5421 M88DS3103 MEDIA DRIVER
5422 M: Antti Palosaari <crope@iki.fi>
5423 L: linux-media@vger.kernel.org
5424 W: http://linuxtv.org/
5425 W: http://palosaari.fi/linux/
5426 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5427 T: git git://linuxtv.org/anttip/media_tree.git
5429 F: drivers/media/dvb-frontends/m88ds3103*
5431 M88RS2000 MEDIA DRIVER
5432 M: Malcolm Priestley <tvboxspy@gmail.com>
5433 L: linux-media@vger.kernel.org
5434 W: http://linuxtv.org/
5435 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5437 F: drivers/media/dvb-frontends/m88rs2000*
5439 M88TS2022 MEDIA DRIVER
5440 M: Antti Palosaari <crope@iki.fi>
5441 L: linux-media@vger.kernel.org
5442 W: http://linuxtv.org/
5443 W: http://palosaari.fi/linux/
5444 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5445 T: git git://linuxtv.org/anttip/media_tree.git
5447 F: drivers/media/tuners/m88ts2022*
5449 MA901 MASTERKIT USB FM RADIO DRIVER
5450 M: Alexey Klimov <klimov.linux@gmail.com>
5451 L: linux-media@vger.kernel.org
5452 T: git git://linuxtv.org/media_tree.git
5454 F: drivers/media/radio/radio-ma901.c
5457 M: Johannes Berg <johannes@sipsolutions.net>
5458 L: linux-wireless@vger.kernel.org
5459 W: http://wireless.kernel.org/
5460 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5461 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5463 F: Documentation/networking/mac80211-injection.txt
5464 F: include/net/mac80211.h
5467 MAC80211 PID RATE CONTROL
5468 M: Stefano Brivio <stefano.brivio@polimi.it>
5469 M: Mattias Nissler <mattias.nissler@gmx.de>
5470 L: linux-wireless@vger.kernel.org
5471 W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
5472 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5473 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5475 F: net/mac80211/rc80211_pid*
5478 M: Patrick McHardy <kaber@trash.net>
5479 L: netdev@vger.kernel.org
5481 F: drivers/net/macvlan.c
5482 F: include/linux/if_macvlan.h
5484 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
5485 M: Michael Kerrisk <mtk.manpages@gmail.com>
5486 W: http://www.kernel.org/doc/man-pages
5487 L: linux-man@vger.kernel.org
5490 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5491 M: Mirko Lindner <mlindner@marvell.com>
5492 M: Stephen Hemminger <stephen@networkplumber.org>
5493 L: netdev@vger.kernel.org
5495 F: drivers/net/ethernet/marvell/sk*
5497 MARVELL LIBERTAS WIRELESS DRIVER
5498 L: libertas-dev@lists.infradead.org
5500 F: drivers/net/wireless/libertas/
5502 MARVELL MV643XX ETHERNET DRIVER
5503 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
5504 L: netdev@vger.kernel.org
5506 F: drivers/net/ethernet/marvell/mv643xx_eth.*
5507 F: include/linux/mv643xx.h
5509 MARVELL MVNETA ETHERNET DRIVER
5510 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5511 L: netdev@vger.kernel.org
5513 F: drivers/net/ethernet/marvell/mvneta.*
5515 MARVELL MWIFIEX WIRELESS DRIVER
5516 M: Bing Zhao <bzhao@marvell.com>
5517 L: linux-wireless@vger.kernel.org
5519 F: drivers/net/wireless/mwifiex/
5521 MARVELL MWL8K WIRELESS DRIVER
5522 M: Lennert Buytenhek <buytenh@wantstofly.org>
5523 L: linux-wireless@vger.kernel.org
5525 F: drivers/net/wireless/mwl8k.c
5527 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
5528 M: Nicolas Pitre <nico@fluxnic.net>
5530 F: drivers/mmc/host/mvsdio.*
5532 MATROX FRAMEBUFFER DRIVER
5533 L: linux-fbdev@vger.kernel.org
5535 F: drivers/video/matrox/matroxfb_*
5536 F: include/uapi/linux/matroxfb.h
5538 MAX16065 HARDWARE MONITOR DRIVER
5539 M: Guenter Roeck <linux@roeck-us.net>
5540 L: lm-sensors@lm-sensors.org
5542 F: Documentation/hwmon/max16065
5543 F: drivers/hwmon/max16065.c
5545 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5546 M: "Hans J. Koch" <hjk@hansjkoch.de>
5547 L: lm-sensors@lm-sensors.org
5549 F: Documentation/hwmon/max6650
5550 F: drivers/hwmon/max6650.c
5552 MAX6697 HARDWARE MONITOR DRIVER
5553 M: Guenter Roeck <linux@roeck-us.net>
5554 L: lm-sensors@lm-sensors.org
5556 F: Documentation/hwmon/max6697
5557 F: Documentation/devicetree/bindings/i2c/max6697.txt
5558 F: drivers/hwmon/max6697.c
5559 F: include/linux/platform_data/max6697.h
5561 MAXIRADIO FM RADIO RECEIVER DRIVER
5562 M: Hans Verkuil <hverkuil@xs4all.nl>
5563 L: linux-media@vger.kernel.org
5564 T: git git://linuxtv.org/media_tree.git
5565 W: http://linuxtv.org
5567 F: drivers/media/radio/radio-maxiradio*
5569 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
5570 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
5571 P: LinuxTV.org Project
5572 L: linux-media@vger.kernel.org
5573 W: http://linuxtv.org
5574 Q: http://patchwork.kernel.org/project/linux-media/list/
5575 T: git git://linuxtv.org/media_tree.git
5577 F: Documentation/dvb/
5578 F: Documentation/video4linux/
5579 F: Documentation/DocBook/media/
5581 F: drivers/staging/media/
5583 F: include/uapi/linux/dvb/
5584 F: include/uapi/linux/videodev2.h
5585 F: include/uapi/linux/media.h
5586 F: include/uapi/linux/v4l2-*
5587 F: include/uapi/linux/meye.h
5588 F: include/uapi/linux/ivtv*
5589 F: include/uapi/linux/uvcvideo.h
5591 MEDIAVISION PRO MOVIE STUDIO DRIVER
5592 M: Hans Verkuil <hverkuil@xs4all.nl>
5593 L: linux-media@vger.kernel.org
5594 T: git git://linuxtv.org/media_tree.git
5595 W: http://linuxtv.org
5597 F: drivers/media/parport/pms*
5599 MEGARAID SCSI DRIVERS
5600 M: Neela Syam Kolli <megaraidlinux@lsi.com>
5601 L: linux-scsi@vger.kernel.org
5602 W: http://megaraid.lsilogic.com
5604 F: Documentation/scsi/megaraid.txt
5605 F: drivers/scsi/megaraid.*
5606 F: drivers/scsi/megaraid/
5608 MELLANOX ETHERNET DRIVER (mlx4_en)
5609 M: Amir Vadai <amirv@mellanox.com>
5610 L: netdev@vger.kernel.org
5612 W: http://www.mellanox.com
5613 Q: http://patchwork.ozlabs.org/project/netdev/list/
5614 F: drivers/net/ethernet/mellanox/mlx4/en_*
5617 L: linux-mm@kvack.org
5618 W: http://www.linux-mm.org
5620 F: include/linux/mm.h
5621 F: include/linux/gfp.h
5622 F: include/linux/mmzone.h
5623 F: include/linux/memory_hotplug.h
5624 F: include/linux/vmalloc.h
5627 MEMORY RESOURCE CONTROLLER
5628 M: Johannes Weiner <hannes@cmpxchg.org>
5629 M: Michal Hocko <mhocko@suse.cz>
5630 M: Balbir Singh <bsingharora@gmail.com>
5631 M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
5632 L: cgroups@vger.kernel.org
5633 L: linux-mm@kvack.org
5638 MEMORY TECHNOLOGY DEVICES (MTD)
5639 M: David Woodhouse <dwmw2@infradead.org>
5640 M: Brian Norris <computersforpeace@gmail.com>
5641 L: linux-mtd@lists.infradead.org
5642 W: http://www.linux-mtd.infradead.org/
5643 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
5644 T: git git://git.infradead.org/linux-mtd.git
5647 F: include/linux/mtd/
5648 F: include/uapi/mtd/
5650 MEN A21 WATCHDOG DRIVER
5651 M: Johannes Thumshirn <johannes.thumshirn@men.de>
5652 L: linux-watchdog@vger.kernel.org
5654 F: drivers/watchdog/mena21_wdt.c
5657 M: James Hogan <james.hogan@imgtec.com>
5658 L: linux-metag@vger.kernel.org
5661 F: Documentation/metag/
5662 F: Documentation/devicetree/bindings/metag/
5663 F: drivers/clocksource/metag_generic.c
5664 F: drivers/irqchip/irq-metag.c
5665 F: drivers/irqchip/irq-metag-ext.c
5666 F: drivers/tty/metag_da.c
5669 MICROBLAZE ARCHITECTURE
5670 M: Michal Simek <monstr@monstr.eu>
5671 L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
5672 W: http://www.monstr.eu/fdt/
5673 T: git git://git.monstr.eu/linux-2.6-microblaze.git
5678 M: Oliver Neukum <oliver@neukum.org>
5680 F: drivers/usb/image/microtek.*
5683 M: Ralf Baechle <ralf@linux-mips.org>
5684 L: linux-mips@linux-mips.org
5685 W: http://www.linux-mips.org/
5686 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
5687 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
5689 F: Documentation/mips/
5692 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5693 M: Hans Verkuil <hverkuil@xs4all.nl>
5694 L: linux-media@vger.kernel.org
5695 T: git git://linuxtv.org/media_tree.git
5696 W: http://linuxtv.org
5698 F: drivers/media/radio/radio-miropcm20*
5700 Mellanox MLX5 core VPI driver
5701 M: Eli Cohen <eli@mellanox.com>
5702 L: netdev@vger.kernel.org
5703 L: linux-rdma@vger.kernel.org
5704 W: http://www.mellanox.com
5705 Q: http://patchwork.ozlabs.org/project/netdev/list/
5706 Q: http://patchwork.kernel.org/project/linux-rdma/list/
5707 T: git://openfabrics.org/~eli/connect-ib.git
5709 F: drivers/net/ethernet/mellanox/mlx5/core/
5710 F: include/linux/mlx5/
5712 Mellanox MLX5 IB driver
5713 M: Eli Cohen <eli@mellanox.com>
5714 L: linux-rdma@vger.kernel.org
5715 W: http://www.mellanox.com
5716 Q: http://patchwork.kernel.org/project/linux-rdma/list/
5717 T: git://openfabrics.org/~eli/connect-ib.git
5719 F: include/linux/mlx5/
5720 F: drivers/infiniband/hw/mlx5/
5723 M: Rusty Russell <rusty@rustcorp.com.au>
5725 F: include/linux/module.h
5728 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
5729 W: http://popies.net/meye/
5731 F: Documentation/video4linux/meye.txt
5732 F: drivers/media/pci/meye/
5733 F: include/uapi/linux/meye.h
5735 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
5736 M: Jiri Slaby <jirislaby@gmail.com>
5738 F: Documentation/serial/moxa-smartio
5739 F: drivers/tty/mxser.*
5741 MR800 AVERMEDIA USB FM RADIO DRIVER
5742 M: Alexey Klimov <klimov.linux@gmail.com>
5743 L: linux-media@vger.kernel.org
5744 T: git git://linuxtv.org/media_tree.git
5746 F: drivers/media/radio/radio-mr800.c
5749 M: "Lee, Chun-Yi" <jlee@suse.com>
5750 L: platform-driver-x86@vger.kernel.org
5752 F: drivers/platform/x86/msi-laptop.c
5755 M: Anisse Astier <anisse@astier.eu>
5756 L: platform-driver-x86@vger.kernel.org
5758 F: drivers/platform/x86/msi-wmi.c
5760 MT9M032 APTINA SENSOR DRIVER
5761 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5762 L: linux-media@vger.kernel.org
5763 T: git git://linuxtv.org/media_tree.git
5765 F: drivers/media/i2c/mt9m032.c
5766 F: include/media/mt9m032.h
5768 MT9P031 APTINA CAMERA SENSOR
5769 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5770 L: linux-media@vger.kernel.org
5771 T: git git://linuxtv.org/media_tree.git
5773 F: drivers/media/i2c/mt9p031.c
5774 F: include/media/mt9p031.h
5776 MT9T001 APTINA CAMERA SENSOR
5777 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5778 L: linux-media@vger.kernel.org
5779 T: git git://linuxtv.org/media_tree.git
5781 F: drivers/media/i2c/mt9t001.c
5782 F: include/media/mt9t001.h
5784 MT9V032 APTINA CAMERA SENSOR
5785 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5786 L: linux-media@vger.kernel.org
5787 T: git git://linuxtv.org/media_tree.git
5789 F: drivers/media/i2c/mt9v032.c
5790 F: include/media/mt9v032.h
5792 MULTIFUNCTION DEVICES (MFD)
5793 M: Samuel Ortiz <sameo@linux.intel.com>
5794 M: Lee Jones <lee.jones@linaro.org>
5795 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git
5796 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git
5799 F: include/linux/mfd/
5801 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
5802 M: Chris Ball <chris@printf.net>
5803 L: linux-mmc@vger.kernel.org
5804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5807 F: include/linux/mmc/
5808 F: include/uapi/linux/mmc/
5810 MULTIMEDIA CARD (MMC) ETC. OVER SPI
5812 F: drivers/mmc/host/mmc_spi.c
5813 F: include/linux/spi/mmc_spi.h
5815 MULTISOUND SOUND DRIVER
5816 M: Andrew Veliath <andrewtv@usa.net>
5818 F: Documentation/sound/oss/MultiSound
5821 MULTITECH MULTIPORT CARD (ISICOM)
5823 F: drivers/tty/isicom.c
5824 F: include/linux/isicom.h
5826 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
5827 M: Felipe Balbi <balbi@ti.com>
5828 L: linux-usb@vger.kernel.org
5829 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5831 F: drivers/usb/musb/
5833 MXL5007T MEDIA DRIVER
5834 M: Michael Krufky <mkrufky@linuxtv.org>
5835 L: linux-media@vger.kernel.org
5836 W: http://linuxtv.org/
5837 W: http://github.com/mkrufky
5838 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5839 T: git git://linuxtv.org/mkrufky/tuners.git
5841 F: drivers/media/tuners/mxl5007t.*
5843 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
5844 M: Hyong-Youb Kim <hykim@myri.com>
5845 L: netdev@vger.kernel.org
5846 W: https://www.myricom.com/support/downloads/myri10ge.html
5848 F: drivers/net/ethernet/myricom/myri10ge/
5850 NATSEMI ETHERNET DRIVER (DP8381x)
5852 F: drivers/net/ethernet/natsemi/natsemi.c
5854 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5855 M: Daniel Mack <zonque@gmail.com>
5857 L: alsa-devel@alsa-project.org
5858 W: http://www.native-instruments.com
5862 M: Petr Vandrovec <petr@vandrovec.name>
5866 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
5867 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5868 L: linux-scsi@vger.kernel.org
5870 F: drivers/scsi/NCR_D700.*
5872 NCT6775 HARDWARE MONITOR DRIVER
5873 M: Guenter Roeck <linux@roeck-us.net>
5874 L: lm-sensors@lm-sensors.org
5876 F: Documentation/hwmon/nct6775
5877 F: drivers/hwmon/nct6775.c
5879 NETEFFECT IWARP RNIC DRIVER (IW_NES)
5880 M: Faisal Latif <faisal.latif@intel.com>
5881 L: linux-rdma@vger.kernel.org
5882 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
5884 F: drivers/infiniband/hw/nes/
5886 NETEM NETWORK EMULATOR
5887 M: Stephen Hemminger <stephen@networkplumber.org>
5888 L: netem@lists.linux-foundation.org
5890 F: net/sched/sch_netem.c
5892 NETERION 10GbE DRIVERS (s2io/vxge)
5893 M: Jon Mason <jdmason@kudzu.us>
5894 L: netdev@vger.kernel.org
5896 F: Documentation/networking/s2io.txt
5897 F: Documentation/networking/vxge.txt
5898 F: drivers/net/ethernet/neterion/
5901 M: Pablo Neira Ayuso <pablo@netfilter.org>
5902 M: Patrick McHardy <kaber@trash.net>
5903 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
5904 L: netfilter-devel@vger.kernel.org
5905 L: netfilter@vger.kernel.org
5906 L: coreteam@netfilter.org
5907 W: http://www.netfilter.org/
5908 W: http://www.iptables.org/
5909 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
5910 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
5911 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
5913 F: include/linux/netfilter*
5914 F: include/linux/netfilter/
5915 F: include/net/netfilter/
5916 F: include/uapi/linux/netfilter*
5917 F: include/uapi/linux/netfilter/
5918 F: net/*/netfilter.c
5923 M: Paul Moore <paul@paul-moore.com>
5924 W: http://netlabel.sf.net
5925 L: netdev@vger.kernel.org
5927 F: Documentation/netlabel/
5928 F: include/net/netlabel.h
5931 NETROM NETWORK LAYER
5932 M: Ralf Baechle <ralf@linux-mips.org>
5933 L: linux-hams@vger.kernel.org
5934 W: http://www.linux-ax25.org/
5936 F: include/net/netrom.h
5937 F: include/uapi/linux/netrom.h
5940 NETWORK BLOCK DEVICE (NBD)
5941 M: Paul Clements <Paul.Clements@steeleye.com>
5943 L: nbd-general@lists.sourceforge.net
5944 F: Documentation/blockdev/nbd.txt
5945 F: drivers/block/nbd.c
5946 F: include/linux/nbd.h
5947 F: include/uapi/linux/nbd.h
5949 NETWORK DROP MONITOR
5950 M: Neil Horman <nhorman@tuxdriver.com>
5951 L: netdev@vger.kernel.org
5953 W: https://fedorahosted.org/dropwatch/
5954 F: net/core/drop_monitor.c
5956 NETWORKING [GENERAL]
5957 M: "David S. Miller" <davem@davemloft.net>
5958 L: netdev@vger.kernel.org
5959 W: http://www.linuxfoundation.org/en/Net
5960 Q: http://patchwork.ozlabs.org/project/netdev/list/
5961 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5962 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
5966 F: include/linux/in.h
5967 F: include/linux/net.h
5968 F: include/linux/netdevice.h
5969 F: include/uapi/linux/in.h
5970 F: include/uapi/linux/net.h
5971 F: include/uapi/linux/netdevice.h
5973 NETWORKING [IPv4/IPv6]
5974 M: "David S. Miller" <davem@davemloft.net>
5975 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
5976 M: James Morris <jmorris@namei.org>
5977 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
5978 M: Patrick McHardy <kaber@trash.net>
5979 L: netdev@vger.kernel.org
5980 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5988 M: Steffen Klassert <steffen.klassert@secunet.com>
5989 M: Herbert Xu <herbert@gondor.apana.org.au>
5990 M: "David S. Miller" <davem@davemloft.net>
5991 L: netdev@vger.kernel.org
5992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
5993 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6000 F: net/ipv4/ipcomp.c
6001 F: net/ipv4/ip_vti.c
6005 F: net/ipv6/ipcomp6.c
6006 F: net/ipv6/ip6_vti.c
6007 F: include/uapi/linux/xfrm.h
6008 F: include/net/xfrm.h
6010 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6011 M: Paul Moore <paul@paul-moore.com>
6012 L: netdev@vger.kernel.org
6015 NETWORKING [WIRELESS]
6016 M: "John W. Linville" <linville@tuxdriver.com>
6017 L: linux-wireless@vger.kernel.org
6018 Q: http://patchwork.kernel.org/project/linux-wireless/list/
6019 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
6024 F: include/net/ieee80211*
6025 F: include/linux/wireless.h
6026 F: include/uapi/linux/wireless.h
6027 F: include/net/iw_handler.h
6028 F: drivers/net/wireless/
6031 L: netdev@vger.kernel.org
6032 W: http://www.linuxfoundation.org/en/Net
6033 Q: http://patchwork.ozlabs.org/project/netdev/list/
6034 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6035 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6038 F: include/linux/if_*
6039 F: include/linux/netdevice.h
6040 F: include/linux/arcdevice.h
6041 F: include/linux/etherdevice.h
6042 F: include/linux/fcdevice.h
6043 F: include/linux/fddidevice.h
6044 F: include/linux/hippidevice.h
6045 F: include/linux/inetdevice.h
6046 F: include/uapi/linux/if_*
6047 F: include/uapi/linux/netdevice.h
6049 NETXEN (1/10) GbE SUPPORT
6050 M: Manish Chopra <manish.chopra@qlogic.com>
6051 M: Sony Chacko <sony.chacko@qlogic.com>
6052 M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6053 L: netdev@vger.kernel.org
6054 W: http://www.qlogic.com
6056 F: drivers/net/ethernet/qlogic/netxen/
6059 M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6060 M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6061 M: Samuel Ortiz <sameo@linux.intel.com>
6062 L: linux-wireless@vger.kernel.org
6063 L: linux-nfc@lists.01.org (moderated for non-subscribers)
6067 F: include/uapi/linux/nfc.h
6069 F: include/linux/platform_data/pn544.h
6071 NFS, SUNRPC, AND LOCKD CLIENTS
6072 M: Trond Myklebust <trond.myklebust@primarydata.com>
6073 L: linux-nfs@vger.kernel.org
6074 W: http://client.linux-nfs.org
6075 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6081 F: include/linux/lockd/
6082 F: include/linux/nfs*
6083 F: include/linux/sunrpc/
6084 F: include/uapi/linux/nfs*
6085 F: include/uapi/linux/sunrpc/
6088 M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
6089 L: linux-nilfs@vger.kernel.org
6090 W: http://www.nilfs.org/en/
6091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
6093 F: Documentation/filesystems/nilfs2.txt
6095 F: include/linux/nilfs2_fs.h
6097 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6098 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6099 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6101 F: Documentation/scsi/NinjaSCSI.txt
6102 F: drivers/scsi/pcmcia/nsp_*
6104 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6105 M: GOTO Masanori <gotom@debian.or.jp>
6106 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6107 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6109 F: Documentation/scsi/NinjaSCSI.txt
6110 F: drivers/scsi/nsp32*
6113 M: Jon Mason <jon.mason@intel.com>
6115 W: https://github.com/jonmason/ntb/wiki
6116 T: git git://github.com/jonmason/ntb.git
6118 F: drivers/net/ntb_netdev.c
6119 F: include/linux/ntb.h
6122 M: Anton Altaparmakov <anton@tuxera.com>
6123 L: linux-ntfs-dev@lists.sourceforge.net
6124 W: http://www.tuxera.com/
6125 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6127 F: Documentation/filesystems/ntfs.txt
6130 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6131 M: Antonino Daplas <adaplas@gmail.com>
6132 L: linux-fbdev@vger.kernel.org
6134 F: drivers/video/riva/
6135 F: drivers/video/nvidia/
6138 M: Matthew Wilcox <willy@linux.intel.com>
6139 L: linux-nvme@lists.infradead.org
6140 T: git git://git.infradead.org/users/willy/linux-nvme.git
6142 F: drivers/block/nvme*
6143 F: include/linux/nvme.h
6146 M: Tony Lindgren <tony@atomide.com>
6147 L: linux-omap@vger.kernel.org
6148 W: http://www.muru.com/linux/omap/
6149 W: http://linux.omap.com/
6150 Q: http://patchwork.kernel.org/project/linux-omap/list/
6151 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6154 F: drivers/i2c/busses/i2c-omap.c
6155 F: include/linux/i2c-omap.h
6157 OMAP DEVICE TREE SUPPORT
6158 M: Benoît Cousson <bcousson@baylibre.com>
6159 M: Tony Lindgren <tony@atomide.com>
6160 L: linux-omap@vger.kernel.org
6161 L: devicetree@vger.kernel.org
6163 F: arch/arm/boot/dts/*omap*
6164 F: arch/arm/boot/dts/*am3*
6166 OMAP CLOCK FRAMEWORK SUPPORT
6167 M: Paul Walmsley <paul@pwsan.com>
6168 L: linux-omap@vger.kernel.org
6170 F: arch/arm/*omap*/*clock*
6172 OMAP POWER MANAGEMENT SUPPORT
6173 M: Kevin Hilman <khilman@deeprootsystems.com>
6174 L: linux-omap@vger.kernel.org
6176 F: arch/arm/*omap*/*pm*
6177 F: drivers/cpufreq/omap-cpufreq.c
6179 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6180 M: Rajendra Nayak <rnayak@ti.com>
6181 M: Paul Walmsley <paul@pwsan.com>
6182 L: linux-omap@vger.kernel.org
6184 F: arch/arm/mach-omap2/prm*
6187 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
6188 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
6189 L: alsa-devel@alsa-project.org (subscribers-only)
6190 L: linux-omap@vger.kernel.org
6194 OMAP FRAMEBUFFER SUPPORT
6195 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
6196 L: linux-fbdev@vger.kernel.org
6197 L: linux-omap@vger.kernel.org
6199 F: drivers/video/omap/
6201 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6202 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
6203 L: linux-omap@vger.kernel.org
6204 L: linux-fbdev@vger.kernel.org
6206 F: drivers/video/omap2/
6207 F: Documentation/arm/OMAP/DSS
6209 OMAP HARDWARE SPINLOCK SUPPORT
6210 M: Ohad Ben-Cohen <ohad@wizery.com>
6211 L: linux-omap@vger.kernel.org
6213 F: drivers/hwspinlock/omap_hwspinlock.c
6214 F: arch/arm/mach-omap2/hwspinlock.c
6217 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
6218 L: linux-omap@vger.kernel.org
6220 F: drivers/mmc/host/omap.c
6223 M: Balaji T K <balajitk@ti.com>
6224 L: linux-mmc@vger.kernel.org
6225 L: linux-omap@vger.kernel.org
6227 F: drivers/mmc/host/omap_hsmmc.c
6229 OMAP RANDOM NUMBER GENERATOR SUPPORT
6230 M: Deepak Saxena <dsaxena@plexity.net>
6232 F: drivers/char/hw_random/omap-rng.c
6235 M: Benoît Cousson <bcousson@baylibre.com>
6236 M: Paul Walmsley <paul@pwsan.com>
6237 L: linux-omap@vger.kernel.org
6239 F: arch/arm/mach-omap2/omap_hwmod.*
6241 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
6242 M: Benoît Cousson <bcousson@baylibre.com>
6243 L: linux-omap@vger.kernel.org
6245 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
6247 OMAP IMAGE SIGNAL PROCESSOR (ISP)
6248 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6249 L: linux-media@vger.kernel.org
6251 F: drivers/media/platform/omap3isp/
6254 M: Felipe Balbi <balbi@ti.com>
6255 L: linux-usb@vger.kernel.org
6256 L: linux-omap@vger.kernel.org
6257 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6259 F: drivers/usb/*/*omap*
6260 F: arch/arm/*omap*/usb*
6263 M: Santosh Shilimkar <santosh.shilimkar@ti.com>
6264 M: Kevin Hilman <khilman@deeprootsystems.com>
6265 L: linux-omap@vger.kernel.org
6267 F: drivers/gpio/gpio-omap.c
6269 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
6270 M: Mark Jackson <mpfj@newflow.co.uk>
6271 L: linux-omap@vger.kernel.org
6273 F: arch/arm/boot/dts/am335x-nano.dts
6276 M: Bob Copeland <me@bobcopeland.com>
6277 L: linux-karma-devel@lists.sourceforge.net
6279 F: Documentation/filesystems/omfs.txt
6282 OMNIKEY CARDMAN 4000 DRIVER
6283 M: Harald Welte <laforge@gnumonks.org>
6285 F: drivers/char/pcmcia/cm4000_cs.c
6286 F: include/linux/cm4000_cs.h
6287 F: include/uapi/linux/cm4000_cs.h
6289 OMNIKEY CARDMAN 4040 DRIVER
6290 M: Harald Welte <laforge@gnumonks.org>
6292 F: drivers/char/pcmcia/cm4040_cs.*
6294 OMNIVISION OV7670 SENSOR DRIVER
6295 M: Jonathan Corbet <corbet@lwn.net>
6296 L: linux-media@vger.kernel.org
6297 T: git git://linuxtv.org/media_tree.git
6299 F: drivers/media/i2c/ov7670.c
6301 ONENAND FLASH DRIVER
6302 M: Kyungmin Park <kyungmin.park@samsung.com>
6303 L: linux-mtd@lists.infradead.org
6305 F: drivers/mtd/onenand/
6306 F: include/linux/mtd/onenand*.h
6308 ONSTREAM SCSI TAPE DRIVER
6309 M: Willem Riede <osst@riede.org>
6310 L: osst-users@lists.sourceforge.net
6311 L: linux-scsi@vger.kernel.org
6313 F: Documentation/scsi/osst.txt
6314 F: drivers/scsi/osst.*
6315 F: drivers/scsi/osst_*.h
6316 F: drivers/scsi/st.h
6318 OPENCORES I2C BUS DRIVER
6319 M: Peter Korsgaard <jacmet@sunsite.dk>
6320 L: linux-i2c@vger.kernel.org
6322 F: Documentation/i2c/busses/i2c-ocores
6323 F: drivers/i2c/busses/i2c-ocores.c
6325 OPEN FIRMWARE AND FLATTENED DEVICE TREE
6326 M: Grant Likely <grant.likely@linaro.org>
6327 M: Rob Herring <robh+dt@kernel.org>
6328 L: devicetree@vger.kernel.org
6329 W: http://fdt.secretlab.ca
6330 T: git git://git.secretlab.ca/git/linux-2.6.git
6333 F: include/linux/of*.h
6338 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6339 M: Rob Herring <robh+dt@kernel.org>
6340 M: Pawel Moll <pawel.moll@arm.com>
6341 M: Mark Rutland <mark.rutland@arm.com>
6342 M: Ian Campbell <ijc+devicetree@hellion.org.uk>
6343 M: Kumar Gala <galak@codeaurora.org>
6344 L: devicetree@vger.kernel.org
6346 F: Documentation/devicetree/
6348 F: include/dt-bindings/
6350 OPENRISC ARCHITECTURE
6351 M: Jonas Bonn <jonas@southpole.se>
6352 W: http://openrisc.net
6353 L: linux@lists.openrisc.net (moderated for non-subscribers)
6355 T: git git://openrisc.net/~jonas/linux
6359 M: Jesse Gross <jesse@nicira.com>
6360 L: dev@openvswitch.org
6361 W: http://openvswitch.org
6362 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
6367 M: Clemens Ladisch <clemens@ladisch.de>
6368 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6369 T: git git://git.alsa-project.org/alsa-kernel.git
6371 F: sound/drivers/opl4/
6374 M: Robert Richter <rric@kernel.org>
6375 L: oprofile-list@lists.sf.net
6377 F: arch/*/include/asm/oprofile*.h
6379 F: drivers/oprofile/
6380 F: include/linux/oprofile.h
6382 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
6383 M: Mark Fasheh <mfasheh@suse.com>
6384 M: Joel Becker <jlbec@evilplan.org>
6385 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6386 W: http://oss.oracle.com/projects/ocfs2/
6387 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
6389 F: Documentation/filesystems/ocfs2.txt
6390 F: Documentation/filesystems/dlmfs.txt
6394 L: linux-wireless@vger.kernel.org
6395 W: http://wireless.kernel.org/en/users/Drivers/orinoco
6396 W: http://www.nongnu.org/orinoco/
6398 F: drivers/net/wireless/orinoco/
6400 OSD LIBRARY and FILESYSTEM
6401 M: Boaz Harrosh <bharrosh@panasas.com>
6402 M: Benny Halevy <bhalevy@tonian.com>
6403 L: osd-dev@open-osd.org
6404 W: http://open-osd.org
6405 T: git git://git.open-osd.org/open-osd.git
6407 F: drivers/scsi/osd/
6408 F: include/scsi/osd_*
6412 M: Christian Lamparter <chunkeey@googlemail.com>
6413 L: linux-wireless@vger.kernel.org
6414 W: http://wireless.kernel.org/en/users/Drivers/p54
6416 F: drivers/net/wireless/p54/
6418 PA SEMI ETHERNET DRIVER
6419 M: Olof Johansson <olof@lixom.net>
6420 L: netdev@vger.kernel.org
6422 F: drivers/net/ethernet/pasemi/*
6424 PA SEMI SMBUS DRIVER
6425 M: Olof Johansson <olof@lixom.net>
6426 L: linux-i2c@vger.kernel.org
6428 F: drivers/i2c/busses/i2c-pasemi.c
6430 PADATA PARALLEL EXECUTION MECHANISM
6431 M: Steffen Klassert <steffen.klassert@secunet.com>
6432 L: linux-crypto@vger.kernel.org
6435 F: include/linux/padata.h
6436 F: Documentation/padata.txt
6438 PANASONIC LAPTOP ACPI EXTRAS DRIVER
6439 M: Harald Welte <laforge@gnumonks.org>
6440 L: platform-driver-x86@vger.kernel.org
6442 F: drivers/platform/x86/panasonic-laptop.c
6444 PANASONIC MN10300/AM33/AM34 PORT
6445 M: David Howells <dhowells@redhat.com>
6446 M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
6447 L: linux-am33-list@redhat.com (moderated for non-subscribers)
6448 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6450 F: Documentation/mn10300/
6453 PARALLEL PORT SUPPORT
6454 L: linux-parport@lists.infradead.org (subscribers-only)
6457 F: include/linux/parport*.h
6458 F: drivers/char/ppdev.c
6459 F: include/uapi/linux/ppdev.h
6461 PARAVIRT_OPS INTERFACE
6462 M: Jeremy Fitzhardinge <jeremy@goop.org>
6463 M: Chris Wright <chrisw@sous-sol.org>
6464 M: Alok Kataria <akataria@vmware.com>
6465 M: Rusty Russell <rusty@rustcorp.com.au>
6466 L: virtualization@lists.linux-foundation.org
6468 F: Documentation/ia64/paravirt_ops.txt
6469 F: arch/*/kernel/paravirt*
6470 F: arch/*/include/asm/paravirt.h
6472 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
6473 M: Tim Waugh <tim@cyberelk.net>
6474 L: linux-parport@lists.infradead.org (subscribers-only)
6475 W: http://www.torque.net/linux-pp.html
6477 F: Documentation/blockdev/paride.txt
6478 F: drivers/block/paride/
6481 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
6482 M: Helge Deller <deller@gmx.de>
6483 L: linux-parisc@vger.kernel.org
6484 W: http://www.parisc-linux.org/
6485 Q: http://patchwork.kernel.org/project/linux-parisc/list/
6486 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
6487 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
6490 F: Documentation/parisc/
6492 F: drivers/char/agp/parisc-agp.c
6493 F: drivers/input/serio/gscps2.c
6494 F: drivers/parport/parport_gsc.*
6495 F: drivers/tty/serial/8250/8250_gsc.c
6496 F: drivers/video/sti*
6497 F: drivers/video/console/sti*
6498 F: drivers/video/logo/logo_parisc*
6500 PC87360 HARDWARE MONITORING DRIVER
6501 M: Jim Cromie <jim.cromie@gmail.com>
6502 L: lm-sensors@lm-sensors.org
6504 F: Documentation/hwmon/pc87360
6505 F: drivers/hwmon/pc87360.c
6508 M: Jim Cromie <jim.cromie@gmail.com>
6510 F: drivers/char/pc8736x_gpio.c
6512 PC87427 HARDWARE MONITORING DRIVER
6513 M: Jean Delvare <jdelvare@suse.de>
6514 L: lm-sensors@lm-sensors.org
6516 F: Documentation/hwmon/pc87427
6517 F: drivers/hwmon/pc87427.c
6520 M: Riku Voipio <riku.voipio@iki.fi>
6522 F: drivers/leds/leds-pca9532.c
6523 F: include/linux/leds-pca9532.h
6525 PCA9541 I2C BUS MASTER SELECTOR DRIVER
6526 M: Guenter Roeck <linux@roeck-us.net>
6527 L: linux-i2c@vger.kernel.org
6529 F: drivers/i2c/muxes/i2c-mux-pca9541.c
6531 PCDP - PRIMARY CONSOLE AND DEBUG PORT
6532 M: Khalid Aziz <khalid@gonehiking.org>
6534 F: drivers/firmware/pcdp.*
6537 M: Linas Vepstas <linasvepstas@gmail.com>
6538 L: linux-pci@vger.kernel.org
6540 F: Documentation/PCI/pci-error-recovery.txt
6543 M: Bjorn Helgaas <bhelgaas@google.com>
6544 L: linux-pci@vger.kernel.org
6545 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
6546 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
6548 F: Documentation/PCI/
6550 F: include/linux/pci*
6554 M: Richard Zhu <r65037@freescale.com>
6555 M: Shawn Guo <shawn.guo@linaro.org>
6556 L: linux-pci@vger.kernel.org
6557 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6559 F: drivers/pci/host/*imx6*
6561 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
6562 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6563 M: Jason Cooper <jason@lakedaemon.net>
6564 L: linux-pci@vger.kernel.org
6565 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6567 F: drivers/pci/host/*mvebu*
6569 PCI DRIVER FOR NVIDIA TEGRA
6570 M: Thierry Reding <thierry.reding@gmail.com>
6571 L: linux-tegra@vger.kernel.org
6572 L: linux-pci@vger.kernel.org
6574 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
6575 F: drivers/pci/host/pci-tegra.c
6577 PCI DRIVER FOR RENESAS R-CAR
6578 M: Simon Horman <horms@verge.net.au>
6579 L: linux-pci@vger.kernel.org
6580 L: linux-sh@vger.kernel.org
6582 F: drivers/pci/host/*rcar*
6584 PCI DRIVER FOR SAMSUNG EXYNOS
6585 M: Jingoo Han <jg1.han@samsung.com>
6586 L: linux-pci@vger.kernel.org
6587 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6588 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6590 F: drivers/pci/host/pci-exynos.c
6592 PCI DRIVER FOR SYNOPSIS DESIGNWARE
6593 M: Mohit Kumar <mohit.kumar@st.com>
6594 M: Jingoo Han <jg1.han@samsung.com>
6595 L: linux-pci@vger.kernel.org
6597 F: drivers/pci/host/*designware*
6600 P: Linux PCMCIA Team
6601 L: linux-pcmcia@lists.infradead.org
6602 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
6603 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
6605 F: Documentation/pcmcia/
6609 PCNET32 NETWORK DRIVER
6610 M: Don Fry <pcnet32@frontier.com>
6611 L: netdev@vger.kernel.org
6613 F: drivers/net/ethernet/amd/pcnet32.c
6615 PCRYPT PARALLEL CRYPTO ENGINE
6616 M: Steffen Klassert <steffen.klassert@secunet.com>
6617 L: linux-crypto@vger.kernel.org
6620 F: include/crypto/pcrypt.h
6622 PER-CPU MEMORY ALLOCATOR
6623 M: Tejun Heo <tj@kernel.org>
6624 M: Christoph Lameter <cl@linux-foundation.org>
6625 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6627 F: include/linux/percpu*.h
6629 F: arch/*/include/asm/percpu.h
6631 PER-TASK DELAY ACCOUNTING
6632 M: Balbir Singh <bsingharora@gmail.com>
6634 F: include/linux/delayacct.h
6635 F: kernel/delayacct.c
6637 PERFORMANCE EVENTS SUBSYSTEM
6638 M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6639 M: Paul Mackerras <paulus@samba.org>
6640 M: Ingo Molnar <mingo@redhat.com>
6641 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6642 L: linux-kernel@vger.kernel.org
6643 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
6646 F: include/linux/perf_event.h
6647 F: include/uapi/linux/perf_event.h
6648 F: arch/*/kernel/perf_event*.c
6649 F: arch/*/kernel/*/perf_event*.c
6650 F: arch/*/kernel/*/*/perf_event*.c
6651 F: arch/*/include/asm/perf_event.h
6652 F: arch/*/kernel/perf_callchain.c
6655 PERSONALITY HANDLING
6656 M: Christoph Hellwig <hch@infradead.org>
6657 L: linux-abi-devel@lists.sourceforge.net
6659 F: include/linux/personality.h
6660 F: include/uapi/linux/personality.h
6663 M: Remi Denis-Courmont <courmisch@gmail.com>
6665 F: Documentation/networking/phonet.txt
6666 F: include/linux/phonet.h
6667 F: include/net/phonet/
6668 F: include/uapi/linux/phonet.h
6672 M: Joern Engel <joern@lazybastard.org>
6673 L: linux-mtd@lists.infradead.org
6675 F: drivers/mtd/devices/phram.c
6678 M: Bruno Prémont <bonbons@linux-vserver.org>
6679 L: linux-input@vger.kernel.org
6681 F: drivers/hid/hid-picolcd*
6684 M: Jamie Iles <jamie@jamieiles.com>
6685 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6686 T: git git://github.com/jamieiles/linux-2.6-ji.git
6688 F: arch/arm/mach-picoxcell/
6689 F: drivers/*/picoxcell*
6690 F: drivers/*/*/picoxcell*
6692 PIN CONTROL SUBSYSTEM
6693 M: Linus Walleij <linus.walleij@linaro.org>
6696 F: include/linux/pinctrl/
6698 PIN CONTROLLER - ATMEL AT91
6699 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6700 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6702 F: drivers/pinctrl/pinctrl-at91.c
6704 PIN CONTROLLER - SAMSUNG
6705 M: Tomasz Figa <t.figa@samsung.com>
6706 M: Thomas Abraham <thomas.abraham@linaro.org>
6707 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6708 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6710 F: drivers/pinctrl/pinctrl-exynos.*
6711 F: drivers/pinctrl/pinctrl-s3c*
6712 F: drivers/pinctrl/pinctrl-samsung.*
6714 PIN CONTROLLER - ST SPEAR
6715 M: Viresh Kumar <viresh.linux@gmail.com>
6716 L: spear-devel@list.st.com
6717 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6718 W: http://www.st.com/spear
6720 F: drivers/pinctrl/spear/
6723 M: Jiri Kosina <jkosina@suse.cz>
6725 F: drivers/block/pktcdvd.c
6726 F: include/linux/pktcdvd.h
6727 F: include/uapi/linux/pktcdvd.h
6730 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6731 W: http://mprc.pku.edu.cn/~guanxuetao/linux
6733 T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6734 F: drivers/input/serio/i8042-unicore32io.h
6735 F: drivers/i2c/busses/i2c-puv3.c
6736 F: drivers/video/fb-puv3.c
6737 F: drivers/rtc/rtc-puv3.c
6739 PMBUS HARDWARE MONITORING DRIVERS
6740 M: Guenter Roeck <linux@roeck-us.net>
6741 L: lm-sensors@lm-sensors.org
6742 W: http://www.lm-sensors.org/
6743 W: http://www.roeck-us.net/linux/drivers/
6744 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6746 F: Documentation/hwmon/pmbus
6747 F: drivers/hwmon/pmbus/
6748 F: include/linux/i2c/pmbus.h
6750 PMC SIERRA MaxRAID DRIVER
6751 M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
6752 L: linux-scsi@vger.kernel.org
6753 W: http://www.pmc-sierra.com/
6755 F: drivers/scsi/pmcraid.*
6757 PMC SIERRA PM8001 DRIVER
6758 M: xjtuwjp@gmail.com
6759 M: lindar_liu@usish.com
6760 L: linux-scsi@vger.kernel.org
6762 F: drivers/scsi/pm8001/
6764 POSIX CLOCKS and TIMERS
6765 M: Thomas Gleixner <tglx@linutronix.de>
6766 L: linux-kernel@vger.kernel.org
6767 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6770 F: include/linux/timer*
6773 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
6774 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
6775 M: David Woodhouse <dwmw2@infradead.org>
6776 T: git git://git.infradead.org/battery-2.6.git
6778 F: include/linux/power_supply.h
6782 M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
6783 M: Bjorn Helgaas <bhelgaas@google.com>
6788 M: Vitaly Wool <vitalywool@gmail.com>
6789 L: linux-i2c@vger.kernel.org
6791 F: drivers/i2c/busses/i2c-pnx.c
6793 PPP PROTOCOL DRIVERS AND COMPRESSORS
6794 M: Paul Mackerras <paulus@samba.org>
6795 L: linux-ppp@vger.kernel.org
6797 F: drivers/net/ppp/ppp_*
6799 PPP OVER ATM (RFC 2364)
6800 M: Mitchell Blank Jr <mitch@sfgoth.com>
6802 F: net/atm/pppoatm.c
6803 F: include/uapi/linux/atmppp.h
6806 M: Michal Ostrowski <mostrows@earthlink.net>
6808 F: drivers/net/ppp/pppoe.c
6809 F: drivers/net/ppp/pppox.c
6812 M: James Chapman <jchapman@katalix.com>
6814 F: net/l2tp/l2tp_ppp.c
6815 F: include/linux/if_pppol2tp.h
6816 F: include/uapi/linux/if_pppol2tp.h
6819 M: Rodolfo Giometti <giometti@enneenne.com>
6820 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6821 L: linuxpps@ml.enneenne.com (subscribers-only)
6823 F: Documentation/pps/
6825 F: include/linux/pps*.h
6828 M: Dmitry Kozlov <xeb@mail.ru>
6829 L: netdev@vger.kernel.org
6831 F: drivers/net/ppp/pptp.c
6832 W: http://sourceforge.net/projects/accel-pptp
6835 M: Robert Love <rml@tech9.net>
6836 L: kpreempt-tech@lists.sourceforge.net
6837 W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6839 F: Documentation/preempt-locking.txt
6840 F: include/linux/preempt.h
6842 PRISM54 WIRELESS DRIVER
6843 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
6844 L: linux-wireless@vger.kernel.org
6845 W: http://wireless.kernel.org/en/users/Drivers/p54
6847 F: drivers/net/wireless/prism54/
6849 PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
6850 M: Mikael Pettersson <mikpelinux@gmail.com>
6851 L: linux-ide@vger.kernel.org
6853 F: drivers/ata/sata_promise.*
6856 M: Geoff Levand <geoff@infradead.org>
6857 L: netdev@vger.kernel.org
6858 L: cbe-oss-dev@lists.ozlabs.org
6860 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
6862 PS3 PLATFORM SUPPORT
6863 M: Geoff Levand <geoff@infradead.org>
6864 L: linuxppc-dev@lists.ozlabs.org
6865 L: cbe-oss-dev@lists.ozlabs.org
6867 F: arch/powerpc/boot/ps3*
6868 F: arch/powerpc/include/asm/lv1call.h
6869 F: arch/powerpc/include/asm/ps3*.h
6870 F: arch/powerpc/platforms/ps3/
6873 F: drivers/rtc/rtc-ps3.c
6874 F: drivers/usb/host/*ps3.c
6875 F: sound/ppc/snd_ps3*
6878 M: Jim Paris <jim@jtan.com>
6879 L: cbe-oss-dev@lists.ozlabs.org
6881 F: drivers/block/ps3vram.c
6884 M: Anton Vorontsov <anton@enomsg.org>
6885 M: Colin Cross <ccross@android.com>
6886 M: Kees Cook <keescook@chromium.org>
6887 M: Tony Luck <tony.luck@intel.com>
6889 T: git git://git.infradead.org/users/cbou/linux-pstore.git
6891 F: include/linux/pstore*
6892 F: drivers/firmware/efi/efi-pstore.c
6893 F: drivers/acpi/apei/erst.c
6895 PTP HARDWARE CLOCK SUPPORT
6896 M: Richard Cochran <richardcochran@gmail.com>
6897 L: netdev@vger.kernel.org
6899 W: http://linuxptp.sourceforge.net/
6900 F: Documentation/ABI/testing/sysfs-ptp
6901 F: Documentation/ptp/*
6902 F: drivers/net/ethernet/freescale/gianfar_ptp.c
6903 F: drivers/net/phy/dp83640*
6905 F: include/linux/ptp_cl*
6908 M: Roland McGrath <roland@redhat.com>
6909 M: Oleg Nesterov <oleg@redhat.com>
6911 F: include/asm-generic/syscall.h
6912 F: include/linux/ptrace.h
6913 F: include/linux/regset.h
6914 F: include/linux/tracehook.h
6915 F: include/uapi/linux/ptrace.h
6918 PVRUSB2 VIDEO4LINUX DRIVER
6919 M: Mike Isely <isely@pobox.com>
6920 L: pvrusb2@isely.net (subscribers-only)
6921 L: linux-media@vger.kernel.org
6922 W: http://www.isely.net/pvrusb2/
6923 T: git git://linuxtv.org/media_tree.git
6925 F: Documentation/video4linux/README.pvrusb2
6926 F: drivers/media/usb/pvrusb2/
6929 M: Hans de Goede <hdegoede@redhat.com>
6930 L: linux-media@vger.kernel.org
6931 T: git git://linuxtv.org/media_tree.git
6933 F: drivers/media/usb/pwc/*
6936 M: Thierry Reding <thierry.reding@gmail.com>
6937 L: linux-pwm@vger.kernel.org
6939 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
6940 F: Documentation/pwm.txt
6941 F: Documentation/devicetree/bindings/pwm/
6942 F: include/linux/pwm.h
6944 F: drivers/video/backlight/pwm_bl.c
6945 F: include/linux/pwm_backlight.h
6947 PXA2xx/PXA3xx SUPPORT
6948 M: Eric Miao <eric.y.miao@gmail.com>
6949 M: Russell King <linux@arm.linux.org.uk>
6950 M: Haojian Zhuang <haojian.zhuang@gmail.com>
6951 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6952 T: git git://github.com/hzhuang1/linux.git
6953 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
6955 F: arch/arm/mach-pxa/
6956 F: drivers/pcmcia/pxa2xx*
6957 F: drivers/spi/spi-pxa2xx*
6958 F: drivers/usb/gadget/pxa2*
6959 F: include/sound/pxa2xx-lib.h
6963 PXA3xx NAND FLASH DRIVER
6964 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
6965 L: linux-mtd@lists.infradead.org
6967 F: drivers/mtd/nand/pxa3xx-nand.c
6970 M: Eric Miao <eric.y.miao@gmail.com>
6971 M: Haojian Zhuang <haojian.zhuang@gmail.com>
6972 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6973 T: git git://github.com/hzhuang1/linux.git
6974 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
6976 F: arch/arm/mach-mmp/
6982 M: Robert Jarzmik <robert.jarzmik@free.fr>
6983 L: rtc-linux@googlegroups.com
6987 M: Mike Marciniszyn <infinipath@intel.com>
6988 L: linux-rdma@vger.kernel.org
6990 F: drivers/infiniband/hw/qib/
6992 QLOGIC QLA1280 SCSI DRIVER
6993 M: Michael Reed <mdr@sgi.com>
6994 L: linux-scsi@vger.kernel.org
6996 F: drivers/scsi/qla1280.[ch]
6998 QLOGIC QLA2XXX FC-SCSI DRIVER
6999 M: qla2xxx-upstream@qlogic.com
7000 L: linux-scsi@vger.kernel.org
7002 F: Documentation/scsi/LICENSE.qla2xxx
7003 F: drivers/scsi/qla2xxx/
7005 QLOGIC QLA4XXX iSCSI DRIVER
7006 M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
7007 M: iscsi-driver@qlogic.com
7008 L: linux-scsi@vger.kernel.org
7010 F: Documentation/scsi/LICENSE.qla4xxx
7011 F: drivers/scsi/qla4xxx/
7013 QLOGIC QLA3XXX NETWORK DRIVER
7014 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7015 M: Ron Mercer <ron.mercer@qlogic.com>
7016 M: linux-driver@qlogic.com
7017 L: netdev@vger.kernel.org
7019 F: Documentation/networking/LICENSE.qla3xxx
7020 F: drivers/net/ethernet/qlogic/qla3xxx.*
7022 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7023 M: Himanshu Madhani <himanshu.madhani@qlogic.com>
7024 M: Rajesh Borundia <rajesh.borundia@qlogic.com>
7025 M: Shahed Shaikh <shahed.shaikh@qlogic.com>
7026 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7027 M: Sony Chacko <sony.chacko@qlogic.com>
7028 M: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
7029 M: linux-driver@qlogic.com
7030 L: netdev@vger.kernel.org
7032 F: drivers/net/ethernet/qlogic/qlcnic/
7034 QLOGIC QLGE 10Gb ETHERNET DRIVER
7035 M: Shahed Shaikh <shahed.shaikh@qlogic.com>
7036 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7037 M: Ron Mercer <ron.mercer@qlogic.com>
7038 M: linux-driver@qlogic.com
7039 L: netdev@vger.kernel.org
7041 F: drivers/net/ethernet/qlogic/qlge/
7044 M: Anders Larsen <al@alarsen.net>
7045 W: http://www.alarsen.net/linux/qnx4fs/
7048 F: include/uapi/linux/qnx4_fs.h
7049 F: include/uapi/linux/qnxtypes.h
7052 M: Antti Palosaari <crope@iki.fi>
7053 L: linux-media@vger.kernel.org
7054 W: http://linuxtv.org/
7055 W: http://palosaari.fi/linux/
7056 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7057 T: git git://linuxtv.org/anttip/media_tree.git
7059 F: drivers/media/tuners/qt1010*
7061 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7062 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7063 L: linux-wireless@vger.kernel.org
7064 L: ath9k-devel@lists.ath9k.org
7065 W: http://wireless.kernel.org/en/users/Drivers/ath9k
7067 F: drivers/net/wireless/ath/ath9k/
7069 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7070 M: Kalle Valo <kvalo@qca.qualcomm.com>
7071 L: ath10k@lists.infradead.org
7072 W: http://wireless.kernel.org/en/users/Drivers/ath10k
7073 T: git git://github.com/kvalo/ath.git
7075 F: drivers/net/wireless/ath/ath10k/
7077 QUALCOMM HEXAGON ARCHITECTURE
7078 M: Richard Kuo <rkuo@codeaurora.org>
7079 L: linux-hexagon@vger.kernel.org
7083 QUALCOMM WCN36XX WIRELESS DRIVER
7084 M: Eugene Krasnikov <k.eugene.e@gmail.com>
7085 L: wcn36xx@lists.infradead.org
7086 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
7087 T: git git://github.com/KrasnikovEugene/wcn36xx.git
7089 F: drivers/net/wireless/ath/wcn36xx/
7091 QUICKCAM PARALLEL PORT WEBCAMS
7092 M: Hans Verkuil <hverkuil@xs4all.nl>
7093 L: linux-media@vger.kernel.org
7094 T: git git://linuxtv.org/media_tree.git
7095 W: http://linuxtv.org
7097 F: drivers/media/parport/*-qcam*
7099 RADOS BLOCK DEVICE (RBD)
7100 M: Yehuda Sadeh <yehuda@inktank.com>
7101 M: Sage Weil <sage@inktank.com>
7102 M: Alex Elder <elder@kernel.org>
7103 M: ceph-devel@vger.kernel.org
7105 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7107 F: drivers/block/rbd.c
7108 F: drivers/block/rbd_types.h
7110 RADEON FRAMEBUFFER DISPLAY DRIVER
7111 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7112 L: linux-fbdev@vger.kernel.org
7114 F: drivers/video/aty/radeon*
7115 F: include/uapi/linux/radeonfb.h
7117 RADIOSHARK RADIO DRIVER
7118 M: Hans de Goede <hdegoede@redhat.com>
7119 L: linux-media@vger.kernel.org
7120 T: git git://linuxtv.org/media_tree.git
7122 F: drivers/media/radio/radio-shark.c
7124 RADIOSHARK2 RADIO DRIVER
7125 M: Hans de Goede <hdegoede@redhat.com>
7126 L: linux-media@vger.kernel.org
7127 T: git git://linuxtv.org/media_tree.git
7129 F: drivers/media/radio/radio-shark2.c
7130 F: drivers/media/radio/radio-tea5777.c
7132 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7133 M: Paul Mackerras <paulus@samba.org>
7134 L: linux-fbdev@vger.kernel.org
7136 F: drivers/video/aty/aty128fb.c
7138 RALINK RT2X00 WIRELESS LAN DRIVER
7140 M: Ivo van Doorn <IvDoorn@gmail.com>
7141 M: Gertjan van Wingerde <gwingerde@gmail.com>
7142 M: Helmut Schaa <helmut.schaa@googlemail.com>
7143 L: linux-wireless@vger.kernel.org
7144 L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7145 W: http://rt2x00.serialmonkey.com/
7147 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
7148 F: drivers/net/wireless/rt2x00/
7150 RAMDISK RAM BLOCK DEVICE DRIVER
7151 M: Nick Piggin <npiggin@kernel.dk>
7153 F: Documentation/blockdev/ramdisk.txt
7154 F: drivers/block/brd.c
7156 RANDOM NUMBER DRIVER
7157 M: Theodore Ts'o" <tytso@mit.edu>
7159 F: drivers/char/random.c
7162 M: Matt Porter <mporter@kernel.crashing.org>
7163 M: Alexandre Bounine <alexandre.bounine@idt.com>
7167 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
7168 L: linux-wireless@vger.kernel.org
7170 F: drivers/net/wireless/ray*
7173 M: Josh Triplett <josh@freedesktop.org>
7174 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7175 L: linux-kernel@vger.kernel.org
7177 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7178 F: Documentation/RCU/torture.txt
7179 F: kernel/rcu/torture.c
7181 RCUTORTURE TEST FRAMEWORK
7182 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7183 L: linux-kernel@vger.kernel.org
7185 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7186 F: tools/testing/selftests/rcutorture
7189 M: Florian Fainelli <florian@openwrt.org>
7192 RDC R6040 FAST ETHERNET DRIVER
7193 M: Florian Fainelli <florian@openwrt.org>
7194 L: netdev@vger.kernel.org
7196 F: drivers/net/ethernet/rdc/r6040.c
7198 RDS - RELIABLE DATAGRAM SOCKETS
7199 M: Venkat Venkatsubra <venkat.x.venkatsubra@oracle.com>
7200 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
7204 READ-COPY UPDATE (RCU)
7205 M: Dipankar Sarma <dipankar@in.ibm.com>
7206 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7207 L: linux-kernel@vger.kernel.org
7208 W: http://www.rdrop.com/users/paulmck/RCU/
7210 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7211 F: Documentation/RCU/
7212 X: Documentation/RCU/torture.txt
7213 F: include/linux/rcu*
7214 X: include/linux/srcu.h
7216 X: kernel/rcu/torture.c
7218 REAL TIME CLOCK (RTC) SUBSYSTEM
7219 M: Alessandro Zummo <a.zummo@towertech.it>
7220 L: rtc-linux@googlegroups.com
7221 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
7223 F: Documentation/rtc.txt
7225 F: include/linux/rtc.h
7226 F: include/uapi/linux/rtc.h
7228 REISERFS FILE SYSTEM
7229 L: reiserfs-devel@vger.kernel.org
7233 REGISTER MAP ABSTRACTION
7234 M: Mark Brown <broonie@kernel.org>
7235 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
7237 F: drivers/base/regmap/
7238 F: include/linux/regmap.h
7240 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
7241 M: Ohad Ben-Cohen <ohad@wizery.com>
7242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
7244 F: drivers/remoteproc/
7245 F: Documentation/remoteproc.txt
7246 F: include/linux/remoteproc.h
7248 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
7249 M: Ohad Ben-Cohen <ohad@wizery.com>
7250 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
7253 F: Documentation/rpmsg.txt
7254 F: include/linux/rpmsg.h
7257 M: Johannes Berg <johannes@sipsolutions.net>
7258 L: linux-wireless@vger.kernel.org
7259 W: http://wireless.kernel.org/
7260 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7261 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7263 F: Documentation/rfkill.txt
7266 RICOH SMARTMEDIA/XD DRIVER
7267 M: Maxim Levitsky <maximlevitsky@gmail.com>
7269 F: drivers/mtd/nand/r852.c
7270 F: drivers/mtd/nand/r852.h
7272 RICOH R5C592 MEMORYSTICK DRIVER
7273 M: Maxim Levitsky <maximlevitsky@gmail.com>
7275 F: drivers/memstick/host/r592.*
7278 M: Stefan Achatz <erazor_de@users.sourceforge.net>
7279 W: http://sourceforge.net/projects/roccat/
7281 F: drivers/hid/hid-roccat*
7282 F: include/linux/hid-roccat*
7283 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
7287 W: http://www.comtrol.com
7289 F: Documentation/serial/rocket.txt
7290 F: drivers/tty/rocket*
7293 M: Ralf Baechle <ralf@linux-mips.org>
7294 L: linux-hams@vger.kernel.org
7295 W: http://www.linux-ax25.org/
7297 F: include/net/rose.h
7298 F: include/uapi/linux/rose.h
7301 RTL2830 MEDIA DRIVER
7302 M: Antti Palosaari <crope@iki.fi>
7303 L: linux-media@vger.kernel.org
7304 W: http://linuxtv.org/
7305 W: http://palosaari.fi/linux/
7306 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7307 T: git git://linuxtv.org/anttip/media_tree.git
7309 F: drivers/media/dvb-frontends/rtl2830*
7311 RTL2832 MEDIA DRIVER
7312 M: Antti Palosaari <crope@iki.fi>
7313 L: linux-media@vger.kernel.org
7314 W: http://linuxtv.org/
7315 W: http://palosaari.fi/linux/
7316 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7317 T: git git://linuxtv.org/anttip/media_tree.git
7319 F: drivers/media/dvb-frontends/rtl2832*
7321 RTL8180 WIRELESS DRIVER
7322 M: "John W. Linville" <linville@tuxdriver.com>
7323 L: linux-wireless@vger.kernel.org
7324 W: http://wireless.kernel.org/
7325 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7327 F: drivers/net/wireless/rtl818x/rtl8180/
7329 RTL8187 WIRELESS DRIVER
7330 M: Herton Ronaldo Krzesinski <herton@canonical.com>
7331 M: Hin-Tak Leung <htl10@users.sourceforge.net>
7332 M: Larry Finger <Larry.Finger@lwfinger.net>
7333 L: linux-wireless@vger.kernel.org
7334 W: http://wireless.kernel.org/
7335 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7337 F: drivers/net/wireless/rtl818x/rtl8187/
7339 RTL8192CE WIRELESS DRIVER
7340 M: Larry Finger <Larry.Finger@lwfinger.net>
7341 M: Chaoming Li <chaoming_li@realsil.com.cn>
7342 L: linux-wireless@vger.kernel.org
7343 W: http://wireless.kernel.org/
7344 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7346 F: drivers/net/wireless/rtlwifi/
7347 F: drivers/net/wireless/rtlwifi/rtl8192ce/
7349 S3 SAVAGE FRAMEBUFFER DRIVER
7350 M: Antonino Daplas <adaplas@gmail.com>
7351 L: linux-fbdev@vger.kernel.org
7353 F: drivers/video/savage/
7356 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
7357 M: Heiko Carstens <heiko.carstens@de.ibm.com>
7358 M: linux390@de.ibm.com
7359 L: linux-s390@vger.kernel.org
7360 W: http://www.ibm.com/developerworks/linux/linux390/
7364 F: block/partitions/ibm.c
7365 F: Documentation/s390/
7366 F: Documentation/DocBook/s390*
7368 S390 NETWORK DRIVERS
7369 M: Ursula Braun <ursula.braun@de.ibm.com>
7370 M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
7371 M: linux390@de.ibm.com
7372 L: linux-s390@vger.kernel.org
7373 W: http://www.ibm.com/developerworks/linux/linux390/
7375 F: drivers/s390/net/
7378 M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
7379 M: linux390@de.ibm.com
7380 L: linux-s390@vger.kernel.org
7381 W: http://www.ibm.com/developerworks/linux/linux390/
7383 F: drivers/s390/crypto/
7386 M: Steffen Maier <maier@linux.vnet.ibm.com>
7387 M: linux390@de.ibm.com
7388 L: linux-s390@vger.kernel.org
7389 W: http://www.ibm.com/developerworks/linux/linux390/
7391 F: drivers/s390/scsi/zfcp_*
7393 S390 IUCV NETWORK LAYER
7394 M: Ursula Braun <ursula.braun@de.ibm.com>
7395 M: linux390@de.ibm.com
7396 L: linux-s390@vger.kernel.org
7397 W: http://www.ibm.com/developerworks/linux/linux390/
7399 F: drivers/s390/net/*iucv*
7400 F: include/net/iucv/
7403 S3C24XX SD/MMC Driver
7404 M: Ben Dooks <ben-linux@fluff.org>
7405 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7407 F: drivers/mmc/host/s3cmci.*
7409 SAA6588 RDS RECEIVER DRIVER
7410 M: Hans Verkuil <hverkuil@xs4all.nl>
7411 L: linux-media@vger.kernel.org
7412 T: git git://linuxtv.org/media_tree.git
7413 W: http://linuxtv.org
7415 F: drivers/media/i2c/saa6588*
7417 SAA7134 VIDEO4LINUX DRIVER
7418 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
7419 L: linux-media@vger.kernel.org
7420 W: http://linuxtv.org
7421 T: git git://linuxtv.org/media_tree.git
7423 F: Documentation/video4linux/*.saa7134
7424 F: drivers/media/pci/saa7134/
7426 SAA7146 VIDEO4LINUX-2 DRIVER
7427 M: Hans Verkuil <hverkuil@xs4all.nl>
7428 L: linux-media@vger.kernel.org
7429 T: git git://linuxtv.org/media_tree.git
7431 F: drivers/media/common/saa7146/
7432 F: drivers/media/pci/saa7146/
7433 F: include/media/saa7146*
7435 SAMSUNG LAPTOP DRIVER
7436 M: Corentin Chary <corentin.chary@gmail.com>
7437 L: platform-driver-x86@vger.kernel.org
7439 F: drivers/platform/x86/samsung-laptop.c
7441 SAMSUNG AUDIO (ASoC) DRIVERS
7442 M: Sangbeom Kim <sbkim73@samsung.com>
7443 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7445 F: sound/soc/samsung/
7447 SAMSUNG FRAMEBUFFER DRIVER
7448 M: Jingoo Han <jg1.han@samsung.com>
7449 L: linux-fbdev@vger.kernel.org
7451 F: drivers/video/s3c-fb.c
7453 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
7454 M: Sangbeom Kim <sbkim73@samsung.com>
7455 L: linux-kernel@vger.kernel.org
7457 F: drivers/mfd/sec*.c
7458 F: drivers/regulator/s2m*.c
7459 F: drivers/regulator/s5m*.c
7460 F: drivers/rtc/rtc-sec.c
7461 F: include/linux/mfd/samsung/
7463 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
7464 M: Kyungmin Park <kyungmin.park@samsung.com>
7465 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
7466 L: linux-media@vger.kernel.org
7467 Q: https://patchwork.linuxtv.org/project/linux-media/list/
7469 F: drivers/media/platform/exynos4-is/
7470 F: include/media/s5p_fimc.h
7472 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
7473 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
7474 L: linux-media@vger.kernel.org
7475 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7477 F: drivers/media/platform/s3c-camif/
7478 F: include/media/s3c_camif.h
7480 SAMSUNG S5C73M3 CAMERA DRIVER
7481 M: Kyungmin Park <kyungmin.park@samsung.com>
7482 M: Andrzej Hajda <a.hajda@samsung.com>
7483 L: linux-media@vger.kernel.org
7485 F: drivers/media/i2c/s5c73m3/*
7487 SAMSUNG S5K5BAF CAMERA DRIVER
7488 M: Kyungmin Park <kyungmin.park@samsung.com>
7489 M: Andrzej Hajda <a.hajda@samsung.com>
7490 L: linux-media@vger.kernel.org
7492 F: drivers/media/i2c/s5k5baf.c
7494 SAMSUNG SOC CLOCK DRIVERS
7495 M: Tomasz Figa <t.figa@samsung.com>
7497 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7498 F: drivers/clk/samsung/
7501 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7502 L: linux-serial@vger.kernel.org
7504 F: drivers/tty/serial/
7506 SYNOPSYS DESIGNWARE DMAC DRIVER
7507 M: Viresh Kumar <viresh.linux@gmail.com>
7508 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7510 F: include/linux/dw_dmac.h
7513 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
7514 M: Seungwon Jeon <tgih.jun@samsung.com>
7515 M: Jaehoon Chung <jh80.chung@samsung.com>
7516 L: linux-mmc@vger.kernel.org
7518 F: include/linux/mmc/dw_mmc.h
7519 F: drivers/mmc/host/dw_mmc*
7521 TIMEKEEPING, CLOCKSOURCE CORE, NTP
7522 M: John Stultz <john.stultz@linaro.org>
7523 M: Thomas Gleixner <tglx@linutronix.de>
7524 L: linux-kernel@vger.kernel.org
7525 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7527 F: include/linux/clocksource.h
7528 F: include/linux/time.h
7529 F: include/linux/timex.h
7530 F: include/uapi/linux/time.h
7531 F: include/uapi/linux/timex.h
7532 F: kernel/time/clocksource.c
7533 F: kernel/time/time*.c
7534 F: kernel/time/ntp.c
7536 TLG2300 VIDEO4LINUX-2 DRIVER
7537 M: Huang Shijie <shijie8@gmail.com>
7538 M: Hans Verkuil <hverkuil@xs4all.nl>
7540 F: drivers/media/usb/tlg2300/
7543 M: Zwane Mwaikambo <zwanem@gmail.com>
7545 F: drivers/watchdog/sc1200wdt.c
7548 M: Ingo Molnar <mingo@redhat.com>
7549 M: Peter Zijlstra <peterz@infradead.org>
7550 L: linux-kernel@vger.kernel.org
7551 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
7554 F: include/linux/sched.h
7555 F: include/uapi/linux/sched.h
7556 F: include/linux/wait.h
7559 M: Chen Liqin <liqin.linux@gmail.com>
7560 M: Lennox Wu <lennox.wu@gmail.com>
7561 W: http://www.sunplus.com
7566 M: Jens Axboe <axboe@kernel.dk>
7567 L: linux-scsi@vger.kernel.org
7568 W: http://www.kernel.dk
7572 SCSI RDMA PROTOCOL (SRP) INITIATOR
7573 M: Bart Van Assche <bvanassche@acm.org>
7574 L: linux-rdma@vger.kernel.org
7576 W: http://www.openfabrics.org
7577 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7578 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7579 F: drivers/infiniband/ulp/srp/
7580 F: include/scsi/srp.h
7583 M: Doug Gilbert <dgilbert@interlog.com>
7584 L: linux-scsi@vger.kernel.org
7585 W: http://sg.danny.cz/sg
7587 F: Documentation/scsi/scsi-generic.txt
7588 F: drivers/scsi/sg.c
7589 F: include/scsi/sg.h
7592 M: "James E.J. Bottomley" <JBottomley@parallels.com>
7593 L: linux-scsi@vger.kernel.org
7594 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7595 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
7602 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
7603 L: linux-scsi@vger.kernel.org
7605 F: Documentation/scsi/st.txt
7606 F: drivers/scsi/st.*
7607 F: drivers/scsi/st_*.h
7610 M: Vlad Yasevich <vyasevich@gmail.com>
7611 M: Neil Horman <nhorman@tuxdriver.com>
7612 L: linux-sctp@vger.kernel.org
7613 W: http://lksctp.sourceforge.net
7615 F: Documentation/networking/sctp.txt
7616 F: include/linux/sctp.h
7617 F: include/uapi/linux/sctp.h
7618 F: include/net/sctp/
7622 M: Jim Cromie <jim.cromie@gmail.com>
7624 F: Documentation/i2c/busses/scx200_acb
7625 F: arch/x86/platform/scx200/
7626 F: drivers/watchdog/scx200_wdt.c
7627 F: drivers/i2c/busses/scx200*
7628 F: drivers/mtd/maps/scx200_docflash.c
7629 F: include/linux/scx200.h
7632 M: Jim Cromie <jim.cromie@gmail.com>
7634 F: drivers/char/scx200_gpio.c
7635 F: include/linux/scx200_gpio.h
7637 SCx200 HRT CLOCKSOURCE DRIVER
7638 M: Jim Cromie <jim.cromie@gmail.com>
7640 F: drivers/clocksource/scx200_hrt.c
7642 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
7643 M: Sascha Sommer <saschasommer@freenet.de>
7644 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7646 F: drivers/mmc/host/sdricoh_cs.c
7648 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
7649 M: Chris Ball <chris@printf.net>
7650 L: linux-mmc@vger.kernel.org
7651 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7653 F: drivers/mmc/host/sdhci.*
7654 F: drivers/mmc/host/sdhci-pltfm.[ch]
7656 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
7657 M: Anton Vorontsov <anton@enomsg.org>
7658 L: linuxppc-dev@lists.ozlabs.org
7659 L: linux-mmc@vger.kernel.org
7661 F: drivers/mmc/host/sdhci-pltfm.[ch]
7663 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
7664 M: Ben Dooks <ben-linux@fluff.org>
7665 L: linux-mmc@vger.kernel.org
7667 F: drivers/mmc/host/sdhci-s3c.c
7669 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
7670 M: Viresh Kumar <viresh.linux@gmail.com>
7671 L: spear-devel@list.st.com
7672 L: linux-mmc@vger.kernel.org
7674 F: drivers/mmc/host/sdhci-spear.c
7677 M: James Morris <james.l.morris@oracle.com>
7678 L: linux-security-module@vger.kernel.org (suggested Cc:)
7679 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
7680 W: http://kernsec.org/
7685 M: Security Officers <security@kernel.org>
7688 SELINUX SECURITY MODULE
7689 M: Stephen Smalley <sds@tycho.nsa.gov>
7690 M: James Morris <james.l.morris@oracle.com>
7691 M: Eric Paris <eparis@parisplace.org>
7692 M: Paul Moore <paul@paul-moore.com>
7693 L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
7694 W: http://selinuxproject.org
7695 T: git git://git.infradead.org/users/pcmoore/selinux
7697 F: include/linux/selinux*
7698 F: security/selinux/
7701 APPARMOR SECURITY MODULE
7702 M: John Johansen <john.johansen@canonical.com>
7703 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7704 W: apparmor.wiki.kernel.org
7705 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7707 F: security/apparmor/
7710 M: Jiri Slaby <jirislaby@gmail.com>
7712 F: drivers/misc/phantom.c
7713 F: include/uapi/linux/phantom.h
7715 SERIAL ATA (SATA) SUBSYSTEM
7716 M: Tejun Heo <tj@kernel.org>
7717 L: linux-ide@vger.kernel.org
7718 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7721 F: include/linux/ata.h
7722 F: include/linux/libata.h
7724 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
7725 M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
7726 L: linux-scsi@vger.kernel.org
7727 W: http://www.emulex.com
7729 F: drivers/scsi/be2iscsi/
7731 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
7732 M: Sathya Perla <sathya.perla@emulex.com>
7733 M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7734 M: Ajit Khaparde <ajit.khaparde@emulex.com>
7735 L: netdev@vger.kernel.org
7736 W: http://www.emulex.com
7738 F: drivers/net/ethernet/emulex/benet/
7741 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
7742 M: Shradha Shah <sshah@solarflare.com>
7743 L: netdev@vger.kernel.org
7745 F: drivers/net/ethernet/sfc/
7748 M: Dimitri Sivanich <sivanich@sgi.com>
7750 F: drivers/misc/sgi-gru/
7752 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
7753 M: Pat Gefre <pfg@sgi.com>
7754 L: linux-ia64@vger.kernel.org
7756 F: Documentation/ia64/serial.txt
7757 F: drivers/tty/serial/ioc?_serial.c
7758 F: include/linux/ioc?.h
7760 SGI VISUAL WORKSTATION 320 AND 540
7761 M: Andrey Panin <pazke@donpac.ru>
7762 L: linux-visws-devel@lists.sf.net
7763 W: http://linux-visws.sf.net
7764 S: Maintained for 2.6.
7765 F: Documentation/sgi-visws.txt
7767 SGI XP/XPC/XPNET DRIVER
7768 M: Cliff Whickman <cpw@sgi.com>
7769 M: Robin Holt <robinmholt@gmail.com>
7771 F: drivers/misc/sgi-xp/
7773 SI470X FM RADIO RECEIVER I2C DRIVER
7774 M: Hans Verkuil <hverkuil@xs4all.nl>
7775 L: linux-media@vger.kernel.org
7776 T: git git://linuxtv.org/media_tree.git
7777 W: http://linuxtv.org
7779 F: drivers/media/radio/si470x/radio-si470x-i2c.c
7781 SI470X FM RADIO RECEIVER USB DRIVER
7782 M: Hans Verkuil <hverkuil@xs4all.nl>
7783 L: linux-media@vger.kernel.org
7784 T: git git://linuxtv.org/media_tree.git
7785 W: http://linuxtv.org
7787 F: drivers/media/radio/si470x/radio-si470x-common.c
7788 F: drivers/media/radio/si470x/radio-si470x.h
7789 F: drivers/media/radio/si470x/radio-si470x-usb.c
7791 SI4713 FM RADIO TRANSMITTER I2C DRIVER
7792 M: Eduardo Valentin <edubezval@gmail.com>
7793 L: linux-media@vger.kernel.org
7794 T: git git://linuxtv.org/media_tree.git
7795 W: http://linuxtv.org
7797 F: drivers/media/radio/si4713/si4713.?
7799 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7800 M: Eduardo Valentin <edubezval@gmail.com>
7801 L: linux-media@vger.kernel.org
7802 T: git git://linuxtv.org/media_tree.git
7803 W: http://linuxtv.org
7805 F: drivers/media/radio/si4713/radio-platform-si4713.c
7807 SI4713 FM RADIO TRANSMITTER USB DRIVER
7808 M: Hans Verkuil <hverkuil@xs4all.nl>
7809 L: linux-media@vger.kernel.org
7810 T: git git://linuxtv.org/media_tree.git
7811 W: http://linuxtv.org
7813 F: drivers/media/radio/si4713/radio-usb-si4713.c
7816 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
7817 L: linux-media@vger.kernel.org
7818 W: http://linuxtv.org
7819 T: git git://linuxtv.org/media_tree.git
7821 F: drivers/media/common/siano/
7822 F: drivers/media/usb/siano/
7823 F: drivers/media/usb/siano/
7824 F: drivers/media/mmc/siano/
7826 SH_VEU V4L2 MEM2MEM DRIVER
7827 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7828 L: linux-media@vger.kernel.org
7830 F: drivers/media/platform/sh_veu.c
7832 SH_VOU V4L2 OUTPUT DRIVER
7833 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7834 L: linux-media@vger.kernel.org
7836 F: drivers/media/platform/sh_vou.c
7837 F: include/media/sh_vou.h
7839 SIMPLE FIRMWARE INTERFACE (SFI)
7840 M: Len Brown <lenb@kernel.org>
7841 L: sfi-devel@simplefirmware.org
7842 W: http://simplefirmware.org/
7843 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
7845 F: arch/x86/platform/sfi/
7847 F: include/linux/sfi*.h
7849 SIMTEC EB110ATX (Chalice CATS)
7851 P: Vincent Sanders <vince@simtec.co.uk>
7852 M: Simtec Linux Team <linux@simtec.co.uk>
7853 W: http://www.simtec.co.uk/products/EB110ATX/
7856 SIMTEC EB2410ITX (BAST)
7858 P: Vincent Sanders <vince@simtec.co.uk>
7859 M: Simtec Linux Team <linux@simtec.co.uk>
7860 W: http://www.simtec.co.uk/products/EB2410ITX/
7862 F: arch/arm/mach-s3c24xx/mach-bast.c
7863 F: arch/arm/mach-s3c24xx/bast-ide.c
7864 F: arch/arm/mach-s3c24xx/bast-irq.c
7866 TI DAVINCI MACHINE SUPPORT
7867 M: Sekhar Nori <nsekhar@ti.com>
7868 M: Kevin Hilman <khilman@deeprootsystems.com>
7869 L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7870 T: git git://gitorious.org/linux-davinci/linux-davinci.git
7871 Q: http://patchwork.kernel.org/project/linux-davinci/list/
7873 F: arch/arm/mach-davinci/
7874 F: drivers/i2c/busses/i2c-davinci.c
7876 TI DAVINCI SERIES MEDIA DRIVER
7877 M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
7878 L: linux-media@vger.kernel.org
7879 L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7880 W: http://linuxtv.org/
7881 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7882 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7884 F: drivers/media/platform/davinci/
7885 F: include/media/davinci/
7887 SIS 190 ETHERNET DRIVER
7888 M: Francois Romieu <romieu@fr.zoreil.com>
7889 L: netdev@vger.kernel.org
7891 F: drivers/net/ethernet/sis/sis190.c
7893 SIS 900/7016 FAST ETHERNET DRIVER
7894 M: Daniele Venzano <venza@brownhat.org>
7895 W: http://www.brownhat.org/sis900.html
7896 L: netdev@vger.kernel.org
7898 F: drivers/net/ethernet/sis/sis900.*
7900 SIS FRAMEBUFFER DRIVER
7901 M: Thomas Winischhofer <thomas@winischhofer.net>
7902 W: http://www.winischhofer.net/linuxsisvga.shtml
7904 F: Documentation/fb/sisfb.txt
7905 F: drivers/video/sis/
7906 F: include/video/sisfb.h
7909 M: Thomas Winischhofer <thomas@winischhofer.net>
7910 W: http://www.winischhofer.at/linuxsisusbvga.shtml
7912 F: drivers/usb/misc/sisusbvga/
7915 M: Christoph Lameter <cl@linux-foundation.org>
7916 M: Pekka Enberg <penberg@kernel.org>
7917 M: Matt Mackall <mpm@selenic.com>
7918 L: linux-mm@kvack.org
7920 F: include/linux/sl?b*.h
7923 SLEEPABLE READ-COPY UPDATE (SRCU)
7924 M: Lai Jiangshan <laijs@cn.fujitsu.com>
7925 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7926 L: linux-kernel@vger.kernel.org
7927 W: http://www.rdrop.com/users/paulmck/RCU/
7929 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7930 F: include/linux/srcu.h
7931 F: kernel/rcu/srcu.c
7933 SMACK SECURITY MODULE
7934 M: Casey Schaufler <casey@schaufler-ca.com>
7935 L: linux-security-module@vger.kernel.org
7936 W: http://schaufler-ca.com
7937 T: git git://git.gitorious.org/smack-next/kernel.git
7939 F: Documentation/security/Smack.txt
7942 SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
7943 M: Kevin Hilman <khilman@kernel.org>
7944 M: Nishanth Menon <nm@ti.com>
7946 F: drivers/power/avs/smartreflex.c
7947 F: include/linux/power/smartreflex.h
7948 L: linux-pm@vger.kernel.org
7950 SMC91x ETHERNET DRIVER
7951 M: Nicolas Pitre <nico@fluxnic.net>
7953 F: drivers/net/ethernet/smsc/smc91x.*
7955 SMIA AND SMIA++ IMAGE SENSOR DRIVER
7956 M: Sakari Ailus <sakari.ailus@iki.fi>
7957 L: linux-media@vger.kernel.org
7959 F: drivers/media/i2c/smiapp/
7960 F: include/media/smiapp.h
7961 F: drivers/media/i2c/smiapp-pll.c
7962 F: drivers/media/i2c/smiapp-pll.h
7964 SMM665 HARDWARE MONITOR DRIVER
7965 M: Guenter Roeck <linux@roeck-us.net>
7966 L: lm-sensors@lm-sensors.org
7968 F: Documentation/hwmon/smm665
7969 F: drivers/hwmon/smm665.c
7971 SMSC EMC2103 HARDWARE MONITOR DRIVER
7972 M: Steve Glendinning <steve.glendinning@shawell.net>
7973 L: lm-sensors@lm-sensors.org
7975 F: Documentation/hwmon/emc2103
7976 F: drivers/hwmon/emc2103.c
7978 SMSC SCH5627 HARDWARE MONITOR DRIVER
7979 M: Hans de Goede <hdegoede@redhat.com>
7980 L: lm-sensors@lm-sensors.org
7982 F: Documentation/hwmon/sch5627
7983 F: drivers/hwmon/sch5627.c
7985 SMSC47B397 HARDWARE MONITOR DRIVER
7986 M: Jean Delvare <jdelvare@suse.de>
7987 L: lm-sensors@lm-sensors.org
7989 F: Documentation/hwmon/smsc47b397
7990 F: drivers/hwmon/smsc47b397.c
7992 SMSC911x ETHERNET DRIVER
7993 M: Steve Glendinning <steve.glendinning@shawell.net>
7994 L: netdev@vger.kernel.org
7996 F: include/linux/smsc911x.h
7997 F: drivers/net/ethernet/smsc/smsc911x.*
7999 SMSC9420 PCI ETHERNET DRIVER
8000 M: Steve Glendinning <steve.glendinning@shawell.net>
8001 L: netdev@vger.kernel.org
8003 F: drivers/net/ethernet/smsc/smsc9420.*
8005 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
8006 M: Steve Glendinning <steve.glendinning@shawell.net>
8007 L: linux-fbdev@vger.kernel.org
8009 F: drivers/video/smscufx.c
8011 SOC-CAMERA V4L2 SUBSYSTEM
8012 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8013 L: linux-media@vger.kernel.org
8014 T: git git://linuxtv.org/media_tree.git
8016 F: include/media/soc*
8017 F: drivers/media/i2c/soc_camera/
8018 F: drivers/media/platform/soc_camera/
8020 SOEKRIS NET48XX LED SUPPORT
8021 M: Chris Boot <bootc@bootc.net>
8023 F: drivers/leds/leds-net48xx.c
8025 SOFTWARE RAID (Multiple Disks) SUPPORT
8026 M: Neil Brown <neilb@suse.de>
8027 L: linux-raid@vger.kernel.org
8030 F: include/linux/raid/
8031 F: include/uapi/linux/raid/
8033 SONIC NETWORK DRIVER
8034 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
8035 L: netdev@vger.kernel.org
8037 F: drivers/net/ethernet/natsemi/sonic.*
8039 SONICS SILICON BACKPLANE DRIVER (SSB)
8040 M: Michael Buesch <m@bues.ch>
8041 L: netdev@vger.kernel.org
8044 F: include/linux/ssb/
8046 SONY VAIO CONTROL DEVICE DRIVER
8047 M: Mattia Dongili <malattia@linux.it>
8048 L: platform-driver-x86@vger.kernel.org
8049 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
8051 F: Documentation/laptops/sony-laptop.txt
8052 F: drivers/char/sonypi.c
8053 F: drivers/platform/x86/sony-laptop.c
8054 F: include/linux/sony-laptop.h
8056 SONY MEMORYSTICK CARD SUPPORT
8057 M: Alex Dubov <oakad@yahoo.com>
8058 W: http://tifmxx.berlios.de/
8060 F: drivers/memstick/host/tifm_ms.c
8062 SONY MEMORYSTICK STANDARD SUPPORT
8063 M: Maxim Levitsky <maximlevitsky@gmail.com>
8065 F: drivers/memstick/core/ms_block.*
8068 M: Jaroslav Kysela <perex@perex.cz>
8069 M: Takashi Iwai <tiwai@suse.de>
8070 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8071 W: http://www.alsa-project.org/
8072 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8073 T: git git://git.alsa-project.org/alsa-kernel.git
8075 F: Documentation/sound/
8077 F: include/uapi/sound/
8080 SOUND - COMPRESSED AUDIO
8081 M: Vinod Koul <vinod.koul@intel.com>
8082 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8083 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8085 F: Documentation/sound/alsa/compress_offload.txt
8086 F: include/sound/compress_driver.h
8087 F: include/uapi/sound/compress_*
8088 F: sound/core/compress_offload.c
8089 F: sound/soc/soc-compress.c
8091 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
8092 M: Liam Girdwood <lgirdwood@gmail.com>
8093 M: Mark Brown <broonie@kernel.org>
8094 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
8095 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8096 W: http://alsa-project.org/main/index.php/ASoC
8098 F: Documentation/sound/alsa/soc/
8100 F: include/sound/soc*
8102 SOUND - DMAENGINE HELPERS
8103 M: Lars-Peter Clausen <lars@metafoo.de>
8105 F: include/sound/dmaengine_pcm.h
8106 F: sound/core/pcm_dmaengine.c
8107 F: sound/soc/soc-generic-dmaengine-pcm.c
8109 SPARC + UltraSPARC (sparc/sparc64)
8110 M: "David S. Miller" <davem@davemloft.net>
8111 L: sparclinux@vger.kernel.org
8112 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
8113 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
8114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
8119 SPARC SERIAL DRIVERS
8120 M: "David S. Miller" <davem@davemloft.net>
8121 L: sparclinux@vger.kernel.org
8122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
8123 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
8125 F: include/linux/sunserialcore.h
8126 F: drivers/tty/serial/suncore.c
8127 F: drivers/tty/serial/sunhv.c
8128 F: drivers/tty/serial/sunsab.c
8129 F: drivers/tty/serial/sunsab.h
8130 F: drivers/tty/serial/sunsu.c
8131 F: drivers/tty/serial/sunzilog.c
8132 F: drivers/tty/serial/sunzilog.h
8135 M: "Christopher Li" <sparse@chrisli.org>
8136 L: linux-sparse@vger.kernel.org
8137 W: https://sparse.wiki.kernel.org/
8138 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
8139 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
8141 F: include/linux/compiler.h
8143 SPEAR PLATFORM SUPPORT
8144 M: Viresh Kumar <viresh.linux@gmail.com>
8145 M: Shiraz Hashim <shiraz.hashim@st.com>
8146 L: spear-devel@list.st.com
8147 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8148 W: http://www.st.com/spear
8150 F: arch/arm/mach-spear/
8152 SPEAR CLOCK FRAMEWORK SUPPORT
8153 M: Viresh Kumar <viresh.linux@gmail.com>
8154 L: spear-devel@list.st.com
8155 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8156 W: http://www.st.com/spear
8158 F: drivers/clk/spear/
8161 M: Mark Brown <broonie@kernel.org>
8162 L: linux-spi@vger.kernel.org
8163 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
8164 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
8166 F: Documentation/spi/
8168 F: include/linux/spi/
8169 F: include/uapi/linux/spi/
8171 SPIDERNET NETWORK DRIVER for CELL
8172 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
8173 M: Jens Osterkamp <jens@de.ibm.com>
8174 L: netdev@vger.kernel.org
8176 F: Documentation/networking/spider_net.txt
8177 F: drivers/net/ethernet/toshiba/spider_net*
8180 M: Jeremy Kerr <jk@ozlabs.org>
8181 L: linuxppc-dev@lists.ozlabs.org
8182 L: cbe-oss-dev@lists.ozlabs.org
8183 W: http://www.ibm.com/developerworks/power/cell/
8185 F: Documentation/filesystems/spufs.txt
8186 F: arch/powerpc/platforms/cell/spufs/
8188 SQUASHFS FILE SYSTEM
8189 M: Phillip Lougher <phillip@squashfs.org.uk>
8190 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
8191 W: http://squashfs.org.uk
8193 F: Documentation/filesystems/squashfs.txt
8196 SRM (Alpha) environment access
8197 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
8199 F: arch/alpha/kernel/srm_env.c
8202 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8203 L: stable@vger.kernel.org
8205 F: Documentation/stable_kernel_rules.txt
8208 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8209 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
8210 L: devel@driverdev.osuosl.org
8214 STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
8215 M: Henk de Groot <pe1dnn@amsat.org>
8217 F: drivers/staging/wlags49_h2/
8218 F: drivers/staging/wlags49_h25/
8221 M: Jakub Schmidtke <sjakub@gmail.com>
8223 F: drivers/staging/asus_oled/
8226 M: Ian Abbott <abbotti@mev.co.uk>
8227 M: H Hartley Sweeten <hsweeten@visionengravers.com>
8229 F: drivers/staging/comedi/
8231 STAGING - CRYSTAL HD VIDEO DECODER
8232 M: Naren Sankar <nsankar@broadcom.com>
8233 M: Jarod Wilson <jarod@wilsonet.com>
8234 M: Scott Davilla <davilla@4pi.com>
8235 M: Manu Abraham <abraham.manu@gmail.com>
8237 F: drivers/staging/crystalhd/
8239 STAGING - ECHO CANCELLER
8240 M: Steve Underwood <steveu@coppice.org>
8241 M: David Rowe <david@rowetel.com>
8243 F: drivers/staging/echo/
8245 STAGING - ET131X NETWORK DRIVER
8246 M: Mark Einon <mark.einon@gmail.com>
8248 F: drivers/staging/et131x/
8250 STAGING - FLARION FT1000 DRIVERS
8251 M: Marek Belisko <marek.belisko@gmail.com>
8253 F: drivers/staging/ft1000/
8255 STAGING - FRONTIER TRANZPORT AND ALPHATRACK
8256 M: David Täht <d@teklibre.com>
8258 F: drivers/staging/frontier/
8260 STAGING - GO7007 MPEG CODEC
8261 M: Hans Verkuil <hans.verkuil@cisco.com>
8263 F: drivers/staging/media/go7007/
8265 STAGING - INDUSTRIAL IO
8266 M: Jonathan Cameron <jic23@kernel.org>
8267 L: linux-iio@vger.kernel.org
8269 F: drivers/staging/iio/
8271 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
8272 M: Jarod Wilson <jarod@wilsonet.com>
8273 W: http://www.lirc.org/
8275 F: drivers/staging/media/lirc/
8277 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
8278 M: Julian Andres Klode <jak@jak-linux.org>
8279 M: Marc Dietrich <marvin24@gmx.de>
8280 L: ac100@lists.launchpad.net (moderated for non-subscribers)
8281 L: linux-tegra@vger.kernel.org
8283 F: drivers/staging/nvec/
8285 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
8286 M: Jens Frederich <jfrederich@gmail.com>
8287 M: Daniel Drake <dsd@laptop.org>
8288 M: Jon Nettleton <jon.nettleton@gmail.com>
8289 W: http://wiki.laptop.org/go/DCON
8291 F: drivers/staging/olpc_dcon/
8293 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
8294 M: Rupesh Gujare <rupesh.gujare@atmel.com>
8296 F: drivers/staging/ozwpan/
8298 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
8299 M: Willy Tarreau <willy@meta-x.org>
8301 F: drivers/staging/panel/
8303 STAGING - REALTEK RTL8712U DRIVERS
8304 M: Larry Finger <Larry.Finger@lwfinger.net>
8305 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
8307 F: drivers/staging/rtl8712/
8309 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
8310 M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
8312 F: drivers/staging/sm7xxfb/
8314 STAGING - SOFTLOGIC 6x10 MPEG CODEC
8315 M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
8317 F: drivers/staging/media/solo6x10/
8319 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
8320 M: William Hubbs <w.d.hubbs@gmail.com>
8321 M: Chris Brannon <chris@the-brannons.com>
8322 M: Kirk Reiser <kirk@reisers.ca>
8323 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
8324 L: speakup@braille.uwo.ca
8325 W: http://www.linux-speakup.org/
8327 F: drivers/staging/speakup/
8329 STAGING - TI DSP BRIDGE DRIVERS
8330 M: Omar Ramirez Luna <omar.ramirez@copitl.com>
8332 F: drivers/staging/tidspbridge/
8334 STAGING - USB ENE SM/MS CARD READER DRIVER
8335 M: Al Cho <acho@novell.com>
8337 F: drivers/staging/keucr/
8339 STAGING - VIA VT665X DRIVERS
8340 M: Forest Bond <forest@alittletooquiet.net>
8342 F: drivers/staging/vt665?/
8344 STAGING - WINBOND IS89C35 WLAN USB DRIVER
8345 M: Pavel Machek <pavel@ucw.cz>
8347 F: drivers/staging/winbond/
8349 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
8350 M: Arnaud Patard <arnaud.patard@rtp-net.org>
8352 F: drivers/staging/xgifb/
8354 STARFIRE/DURALAN NETWORK DRIVER
8355 M: Ion Badulescu <ionut@badula.org>
8357 F: drivers/net/ethernet/adaptec/starfire*
8360 M: Sam Creasey <sammy@sammy.net>
8361 W: http://sammy.net/sun3/
8363 F: arch/m68k/kernel/*sun3*
8365 F: arch/m68k/include/asm/sun3*
8366 F: drivers/net/ethernet/i825xx/sun3*
8368 SUNDANCE NETWORK DRIVER
8369 M: Denis Kirjanov <kda@linux-powerpc.org>
8370 L: netdev@vger.kernel.org
8372 F: drivers/net/ethernet/dlink/sundance.c
8375 M: Paul Mundt <lethal@linux-sh.org>
8376 L: linux-sh@vger.kernel.org
8377 W: http://www.linux-sh.org
8378 Q: http://patchwork.kernel.org/project/linux-sh/list/
8379 T: git git://github.com/pmundt/linux-sh.git sh-latest
8381 F: Documentation/sh/
8386 M: Len Brown <len.brown@intel.com>
8387 M: Pavel Machek <pavel@ucw.cz>
8388 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8389 L: linux-pm@vger.kernel.org
8391 F: Documentation/power/
8392 F: arch/x86/kernel/acpi/
8393 F: drivers/base/power/
8395 F: include/linux/suspend.h
8396 F: include/linux/freezer.h
8397 F: include/linux/pm.h
8400 M: Martin Mares <mj@ucw.cz>
8401 L: linux-video@atrey.karlin.mff.cuni.cz
8403 F: Documentation/svga.txt
8404 F: arch/x86/boot/video*
8407 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8408 L: linux-kernel@vger.kernel.org
8411 F: arch/*/kernel/pci-swiotlb.c
8412 F: include/linux/swiotlb.h
8414 SYNOPSYS ARC ARCHITECTURE
8415 M: Vineet Gupta <vgupta@synopsys.com>
8418 F: Documentation/devicetree/bindings/arc/
8419 F: drivers/tty/serial/arc_uart.c
8422 M: Christoph Hellwig <hch@infradead.org>
8424 F: Documentation/filesystems/sysv-fs.txt
8426 F: include/linux/sysv_fs.h
8429 M: Nicholas A. Bellinger <nab@linux-iscsi.org>
8430 L: linux-scsi@vger.kernel.org
8431 L: target-devel@vger.kernel.org
8432 L: http://groups.google.com/group/linux-iscsi-target-dev
8433 W: http://www.linux-iscsi.org
8434 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8438 F: Documentation/target/
8440 TASKSTATS STATISTICS INTERFACE
8441 M: Balbir Singh <bsingharora@gmail.com>
8443 F: Documentation/accounting/taskstats*
8444 F: include/linux/taskstats*
8445 F: kernel/taskstats.c
8448 M: Jamal Hadi Salim <jhs@mojatatu.com>
8449 L: netdev@vger.kernel.org
8451 F: include/net/pkt_cls.h
8452 F: include/uapi/linux/pkt_cls.h
8455 TCP LOW PRIORITY MODULE
8456 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
8457 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
8458 W: http://tcp-lp-mod.sourceforge.net/
8460 F: net/ipv4/tcp_lp.c
8462 TDA10071 MEDIA DRIVER
8463 M: Antti Palosaari <crope@iki.fi>
8464 L: linux-media@vger.kernel.org
8465 W: http://linuxtv.org/
8466 W: http://palosaari.fi/linux/
8467 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8468 T: git git://linuxtv.org/anttip/media_tree.git
8470 F: drivers/media/dvb-frontends/tda10071*
8472 TDA18212 MEDIA DRIVER
8473 M: Antti Palosaari <crope@iki.fi>
8474 L: linux-media@vger.kernel.org
8475 W: http://linuxtv.org/
8476 W: http://palosaari.fi/linux/
8477 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8478 T: git git://linuxtv.org/anttip/media_tree.git
8480 F: drivers/media/tuners/tda18212*
8482 TDA18218 MEDIA DRIVER
8483 M: Antti Palosaari <crope@iki.fi>
8484 L: linux-media@vger.kernel.org
8485 W: http://linuxtv.org/
8486 W: http://palosaari.fi/linux/
8487 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8488 T: git git://linuxtv.org/anttip/media_tree.git
8490 F: drivers/media/tuners/tda18218*
8492 TDA18271 MEDIA DRIVER
8493 M: Michael Krufky <mkrufky@linuxtv.org>
8494 L: linux-media@vger.kernel.org
8495 W: http://linuxtv.org/
8496 W: http://github.com/mkrufky
8497 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8498 T: git git://linuxtv.org/mkrufky/tuners.git
8500 F: drivers/media/tuners/tda18271*
8502 TDA827x MEDIA DRIVER
8503 M: Michael Krufky <mkrufky@linuxtv.org>
8504 L: linux-media@vger.kernel.org
8505 W: http://linuxtv.org/
8506 W: http://github.com/mkrufky
8507 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8508 T: git git://linuxtv.org/mkrufky/tuners.git
8510 F: drivers/media/tuners/tda8290.*
8512 TDA8290 MEDIA DRIVER
8513 M: Michael Krufky <mkrufky@linuxtv.org>
8514 L: linux-media@vger.kernel.org
8515 W: http://linuxtv.org/
8516 W: http://github.com/mkrufky
8517 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8518 T: git git://linuxtv.org/mkrufky/tuners.git
8520 F: drivers/media/tuners/tda8290.*
8522 TDA9840 MEDIA DRIVER
8523 M: Hans Verkuil <hverkuil@xs4all.nl>
8524 L: linux-media@vger.kernel.org
8525 T: git git://linuxtv.org/media_tree.git
8526 W: http://linuxtv.org
8528 F: drivers/media/i2c/tda9840*
8530 TEA5761 TUNER DRIVER
8531 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
8532 L: linux-media@vger.kernel.org
8533 W: http://linuxtv.org
8534 T: git git://linuxtv.org/media_tree.git
8536 F: drivers/media/tuners/tea5761.*
8538 TEA5767 TUNER DRIVER
8539 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
8540 L: linux-media@vger.kernel.org
8541 W: http://linuxtv.org
8542 T: git git://linuxtv.org/media_tree.git
8544 F: drivers/media/tuners/tea5767.*
8546 TEA6415C MEDIA DRIVER
8547 M: Hans Verkuil <hverkuil@xs4all.nl>
8548 L: linux-media@vger.kernel.org
8549 T: git git://linuxtv.org/media_tree.git
8550 W: http://linuxtv.org
8552 F: drivers/media/i2c/tea6415c*
8554 TEA6420 MEDIA DRIVER
8555 M: Hans Verkuil <hverkuil@xs4all.nl>
8556 L: linux-media@vger.kernel.org
8557 T: git git://linuxtv.org/media_tree.git
8558 W: http://linuxtv.org
8560 F: drivers/media/i2c/tea6420*
8563 M: Jiri Pirko <jiri@resnulli.us>
8564 L: netdev@vger.kernel.org
8566 F: drivers/net/team/
8567 F: include/linux/if_team.h
8568 F: include/uapi/linux/if_team.h
8570 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8571 M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8573 F: arch/x86/platform/ts5500/
8575 TECHNOTREND USB IR RECEIVER
8576 M: Sean Young <sean@mess.org>
8577 L: linux-media@vger.kernel.org
8579 F: drivers/media/rc/ttusbir.c
8581 TEGRA ARCHITECTURE SUPPORT
8582 M: Stephen Warren <swarren@wwwdotorg.org>
8583 M: Thierry Reding <thierry.reding@gmail.com>
8584 L: linux-tegra@vger.kernel.org
8585 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8586 T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
8591 M: Stephen Warren <swarren@wwwdotorg.org>
8596 M: Peter De Schrijver <pdeschrijver@nvidia.com>
8597 M: Prashant Gaikwad <pgaikwad@nvidia.com>
8599 F: drivers/clk/tegra/
8602 M: Laxman Dewangan <ldewangan@nvidia.com>
8604 F: drivers/dma/tegra20-apb-dma.c
8607 M: Stephen Warren <swarren@wwwdotorg.org>
8609 F: drivers/gpio/gpio-tegra.c
8612 M: Laxman Dewangan <ldewangan@nvidia.com>
8614 F: drivers/i2c/busses/i2c-tegra.c
8617 M: Hiroshi Doyu <hdoyu@nvidia.com>
8619 F: drivers/iommu/tegra*
8622 M: Rakesh Iyer <riyer@nvidia.com>
8623 M: Laxman Dewangan <ldewangan@nvidia.com>
8625 F: drivers/input/keyboard/tegra-kbc.c
8627 TEGRA PINCTRL DRIVER
8628 M: Stephen Warren <swarren@wwwdotorg.org>
8630 F: drivers/pinctrl/pinctrl-tegra*
8633 M: Thierry Reding <thierry.reding@gmail.com>
8635 F: drivers/pwm/pwm-tegra.c
8638 M: Laxman Dewangan <ldewangan@nvidia.com>
8640 F: drivers/tty/serial/serial-tegra.c
8643 M: Laxman Dewangan <ldewangan@nvidia.com>
8645 F: drivers/spi/spi-tegra*
8647 TEHUTI ETHERNET DRIVER
8648 M: Andy Gospodarek <andy@greyhouse.net>
8649 L: netdev@vger.kernel.org
8651 F: drivers/net/ethernet/tehuti/*
8653 Telecom Clock Driver for MCPL0010
8654 M: Mark Gross <mark.gross@intel.com>
8656 F: drivers/char/tlclk.c
8658 TENSILICA XTENSA PORT (xtensa)
8659 M: Chris Zankel <chris@zankel.net>
8660 M: Max Filippov <jcmvbkbc@gmail.com>
8661 L: linux-xtensa@linux-xtensa.org
8665 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
8666 M: Hans Verkuil <hverkuil@xs4all.nl>
8667 L: linux-media@vger.kernel.org
8668 T: git git://linuxtv.org/media_tree.git
8669 W: http://linuxtv.org
8671 F: drivers/media/radio/radio-raremono.c
8674 M: Zhang Rui <rui.zhang@intel.com>
8675 M: Eduardo Valentin <eduardo.valentin@ti.com>
8676 L: linux-pm@vger.kernel.org
8677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
8678 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
8679 Q: https://patchwork.kernel.org/project/linux-pm/list/
8682 F: include/linux/thermal.h
8683 F: include/linux/cpu_cooling.h
8684 F: Documentation/devicetree/bindings/thermal/
8686 THINGM BLINK(1) USB RGB LED DRIVER
8687 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8689 F: drivers/hid/hid-thingm.c
8691 THINKPAD ACPI EXTRAS DRIVER
8692 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
8693 L: ibm-acpi-devel@lists.sourceforge.net
8694 L: platform-driver-x86@vger.kernel.org
8695 W: http://ibm-acpi.sourceforge.net
8696 W: http://thinkwiki.org/wiki/Ibm-acpi
8697 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
8699 F: drivers/platform/x86/thinkpad_acpi.c
8701 TI BANDGAP AND THERMAL DRIVER
8702 M: Eduardo Valentin <eduardo.valentin@ti.com>
8703 L: linux-pm@vger.kernel.org
8705 F: drivers/thermal/ti-soc-thermal/
8707 TI FLASH MEDIA INTERFACE DRIVER
8708 M: Alex Dubov <oakad@yahoo.com>
8710 F: drivers/misc/tifm*
8711 F: drivers/mmc/host/tifm_sd.c
8712 F: include/linux/tifm.h
8714 TI LM49xxx FAMILY ASoC CODEC DRIVERS
8715 M: M R Swami Reddy <mr.swami.reddy@ti.com>
8716 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
8717 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8719 F: sound/soc/codecs/lm49453*
8720 F: sound/soc/codecs/isabelle*
8722 TI LP855x BACKLIGHT DRIVER
8723 M: Milo Kim <milo.kim@ti.com>
8725 F: Documentation/backlight/lp855x-driver.txt
8726 F: drivers/video/backlight/lp855x_bl.c
8727 F: include/linux/platform_data/lp855x.h
8729 TI LP8727 CHARGER DRIVER
8730 M: Milo Kim <milo.kim@ti.com>
8732 F: drivers/power/lp8727_charger.c
8733 F: include/linux/platform_data/lp8727.h
8735 TI LP8788 MFD DRIVER
8736 M: Milo Kim <milo.kim@ti.com>
8738 F: drivers/iio/adc/lp8788_adc.c
8739 F: drivers/leds/leds-lp8788.c
8740 F: drivers/mfd/lp8788*.c
8741 F: drivers/power/lp8788-charger.c
8742 F: drivers/regulator/lp8788-*.c
8743 F: include/linux/mfd/lp8788*.h
8745 TI TWL4030 SERIES SOC CODEC DRIVER
8746 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
8747 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8749 F: sound/soc/codecs/twl4030*
8751 TI WILINK WIRELESS DRIVERS
8752 L: linux-wireless@vger.kernel.org
8753 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8754 W: http://wireless.kernel.org/en/users/Drivers/wl1251
8755 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8757 F: drivers/net/wireless/ti/
8758 F: include/linux/wl12xx.h
8761 M: Jon Maloy <jon.maloy@ericsson.com>
8762 M: Allan Stephens <allan.stephens@windriver.com>
8763 L: netdev@vger.kernel.org (core kernel code)
8764 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
8765 W: http://tipc.sourceforge.net/
8767 F: include/uapi/linux/tipc*.h
8771 M: Chris Metcalf <cmetcalf@tilera.com>
8772 W: http://www.tilera.com/scm/
8775 F: drivers/char/tile-srom.c
8776 F: drivers/edac/tile_edac.c
8777 F: drivers/net/ethernet/tile/
8778 F: drivers/rtc/rtc-tile.c
8779 F: drivers/tty/hvc/hvc_tile.c
8780 F: drivers/tty/serial/tilegx.c
8781 F: drivers/usb/host/*-tilegx.c
8782 F: include/linux/usb/tilegx.h
8785 M: Samuel Chessman <chessman@tux.org>
8786 L: tlan-devel@lists.sourceforge.net (subscribers-only)
8787 W: http://sourceforge.net/projects/tlan/
8789 F: Documentation/networking/tlan.txt
8790 F: drivers/net/ethernet/ti/tlan.*
8792 TOMOYO SECURITY MODULE
8793 M: Kentaro Takeda <takedakn@nttdata.co.jp>
8794 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
8795 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8796 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
8797 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8798 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8799 W: http://tomoyo.sourceforge.jp/
8800 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
8804 TOPSTAR LAPTOP EXTRAS DRIVER
8805 M: Herton Ronaldo Krzesinski <herton@canonical.com>
8806 L: platform-driver-x86@vger.kernel.org
8808 F: drivers/platform/x86/topstar-laptop.c
8810 TOSHIBA ACPI EXTRAS DRIVER
8811 L: platform-driver-x86@vger.kernel.org
8813 F: drivers/platform/x86/toshiba_acpi.c
8816 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
8817 L: tlinux-users@tce.toshiba-dme.co.jp
8818 W: http://www.buzzard.org.uk/toshiba/
8820 F: drivers/char/toshiba.c
8821 F: include/linux/toshiba.h
8822 F: include/uapi/linux/toshiba.h
8825 M: Ian Molton <ian@mnementh.co.uk>
8826 L: linux-mmc@vger.kernel.org
8828 F: drivers/mmc/host/tmio_mmc*
8829 F: drivers/mmc/host/sh_mobile_sdhi.c
8830 F: include/linux/mmc/tmio.h
8831 F: include/linux/mmc/sh_mobile_sdhi.h
8833 TMP401 HARDWARE MONITOR DRIVER
8834 M: Guenter Roeck <linux@roeck-us.net>
8835 L: lm-sensors@lm-sensors.org
8837 F: Documentation/hwmon/tmp401
8838 F: drivers/hwmon/tmp401.c
8840 TMPFS (SHMEM FILESYSTEM)
8841 M: Hugh Dickins <hughd@google.com>
8842 L: linux-mm@kvack.org
8844 F: include/linux/shmem_fs.h
8847 TM6000 VIDEO4LINUX DRIVER
8848 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
8849 L: linux-media@vger.kernel.org
8850 W: http://linuxtv.org
8851 T: git git://linuxtv.org/media_tree.git
8853 F: drivers/media/usb/tm6000/
8856 M: Peter Huewe <peterhuewe@gmx.de>
8857 M: Ashley Lai <ashley@ashleylai.com>
8858 M: Marcel Selhorst <tpmdd@selhorst.net>
8859 W: http://tpmdd.sourceforge.net
8860 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
8862 F: drivers/char/tpm/
8865 M: Steven Rostedt <rostedt@goodmis.org>
8866 M: Frederic Weisbecker <fweisbec@gmail.com>
8867 M: Ingo Molnar <mingo@redhat.com>
8868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8870 F: Documentation/trace/ftrace.txt
8871 F: arch/*/*/*/ftrace.h
8872 F: arch/*/kernel/ftrace.c
8873 F: include/*/ftrace.h
8874 F: include/linux/trace*.h
8879 M: Jiri Kosina <trivial@kernel.org>
8880 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
8882 K: ^Subject:.*(?i)trivial
8885 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8886 M: Jiri Slaby <jslaby@suse.cz>
8888 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
8890 F: drivers/tty/serial/serial_core.c
8891 F: include/linux/serial_core.h
8892 F: include/linux/serial.h
8893 F: include/linux/tty.h
8894 F: include/uapi/linux/serial_core.h
8895 F: include/uapi/linux/serial.h
8896 F: include/uapi/linux/tty.h
8898 TUA9001 MEDIA DRIVER
8899 M: Antti Palosaari <crope@iki.fi>
8900 L: linux-media@vger.kernel.org
8901 W: http://linuxtv.org/
8902 W: http://palosaari.fi/linux/
8903 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8904 T: git git://linuxtv.org/anttip/media_tree.git
8906 F: drivers/media/tuners/tua9001*
8908 TULIP NETWORK DRIVERS
8909 M: Grant Grundler <grundler@parisc-linux.org>
8910 L: netdev@vger.kernel.org
8912 F: drivers/net/ethernet/dec/tulip/
8915 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
8916 W: http://vtun.sourceforge.net/tun
8918 F: Documentation/networking/tuntap.txt
8919 F: arch/um/os-Linux/drivers/
8921 TURBOCHANNEL SUBSYSTEM
8922 M: "Maciej W. Rozycki" <macro@linux-mips.org>
8925 F: include/linux/tc.h
8928 M: Dario Ballabio <ballabio_dario@emc.com>
8929 L: linux-scsi@vger.kernel.org
8931 F: drivers/scsi/u14-34f.c
8933 UBI FILE SYSTEM (UBIFS)
8934 M: Artem Bityutskiy <dedekind1@gmail.com>
8935 M: Adrian Hunter <adrian.hunter@intel.com>
8936 L: linux-mtd@lists.infradead.org
8937 T: git git://git.infradead.org/ubifs-2.6.git
8938 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8940 F: Documentation/filesystems/ubifs.txt
8943 UCLINUX (AND M68KNOMMU)
8944 M: Greg Ungerer <gerg@uclinux.org>
8945 W: http://www.uclinux.org/
8946 L: uclinux-dev@uclinux.org (subscribers-only)
8948 F: arch/m68k/*/*_no.*
8949 F: arch/m68k/include/asm/*_no.*
8952 M: Jan Kara <jack@suse.cz>
8954 F: Documentation/filesystems/udf.txt
8958 M: Evgeniy Dushistov <dushistov@mail.ru>
8960 F: Documentation/filesystems/ufs.txt
8963 UHID USERSPACE HID IO DRIVER:
8964 M: David Herrmann <dh.herrmann@googlemail.com>
8965 L: linux-input@vger.kernel.org
8967 F: drivers/hid/uhid.c
8968 F: include/uapi/linux/uhid.h
8970 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
8971 L: linux-usb@vger.kernel.org
8974 F: include/linux/uwb.h
8975 F: include/linux/uwb/
8977 UNICORE32 ARCHITECTURE:
8978 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
8979 W: http://mprc.pku.edu.cn/~guanxuetao/linux
8981 T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
8985 M: Tony Finch <dot@dotat.at>
8986 W: http://dotat.at/prog/unifdef
8988 F: scripts/unifdef.c
8990 UNIFORM CDROM DRIVER
8991 M: Jens Axboe <axboe@kernel.dk>
8992 W: http://www.kernel.dk
8994 F: Documentation/cdrom/
8995 F: drivers/cdrom/cdrom.c
8996 F: include/linux/cdrom.h
8997 F: include/uapi/linux/cdrom.h
8999 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
9000 M: Vinayak Holikatti <vinholikatti@gmail.com>
9001 M: Santosh Y <santoshsy@gmail.com>
9002 L: linux-scsi@vger.kernel.org
9004 F: Documentation/scsi/ufs.txt
9005 F: drivers/scsi/ufs/
9007 UNSORTED BLOCK IMAGES (UBI)
9008 M: Artem Bityutskiy <dedekind1@gmail.com>
9009 W: http://www.linux-mtd.infradead.org/
9010 L: linux-mtd@lists.infradead.org
9011 T: git git://git.infradead.org/ubifs-2.6.git
9014 F: include/linux/mtd/ubi.h
9015 F: include/uapi/mtd/ubi-user.h
9017 UNSORTED BLOCK IMAGES (UBI) Fastmap
9018 M: Richard Weinberger <richard@nod.at>
9019 L: linux-mtd@lists.infradead.org
9021 F: drivers/mtd/ubi/fastmap.c
9024 M: Oliver Neukum <oliver@neukum.org>
9025 L: linux-usb@vger.kernel.org
9027 F: Documentation/usb/acm.txt
9028 F: drivers/usb/class/cdc-acm.*
9030 USB AR5523 WIRELESS DRIVER
9031 M: Pontus Fuchs <pontus.fuchs@gmail.com>
9032 L: linux-wireless@vger.kernel.org
9034 F: drivers/net/wireless/ath/ar5523/
9037 M: Matthew Wilcox <willy@linux.intel.com>
9038 M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
9039 M: Gerd Hoffmann <kraxel@redhat.com>
9040 L: linux-usb@vger.kernel.org
9041 L: linux-scsi@vger.kernel.org
9043 F: drivers/usb/storage/uas.c
9045 USB CDC ETHERNET DRIVER
9046 M: Oliver Neukum <oliver@neukum.org>
9047 L: linux-usb@vger.kernel.org
9049 F: drivers/net/usb/cdc_*.c
9050 F: include/uapi/linux/usb/cdc.h
9052 USB CYPRESS C67X00 DRIVER
9053 M: Peter Korsgaard <jacmet@sunsite.dk>
9054 L: linux-usb@vger.kernel.org
9056 F: drivers/usb/c67x00/
9058 USB DAVICOM DM9601 DRIVER
9059 M: Peter Korsgaard <jacmet@sunsite.dk>
9060 L: netdev@vger.kernel.org
9061 W: http://www.linux-usb.org/usbnet
9063 F: drivers/net/usb/dm9601.c
9065 USB DIAMOND RIO500 DRIVER
9066 M: Cesar Miquel <miquel@df.uba.ar>
9067 L: rio500-users@lists.sourceforge.net
9068 W: http://rio500.sourceforge.net
9070 F: drivers/usb/misc/rio500*
9073 M: Alan Stern <stern@rowland.harvard.edu>
9074 L: linux-usb@vger.kernel.org
9076 F: Documentation/usb/ehci.txt
9077 F: drivers/usb/host/ehci*
9079 USB GADGET/PERIPHERAL SUBSYSTEM
9080 M: Felipe Balbi <balbi@ti.com>
9081 L: linux-usb@vger.kernel.org
9082 W: http://www.linux-usb.org/gadget
9083 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9085 F: drivers/usb/gadget/
9086 F: include/linux/usb/gadget*
9088 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
9089 M: Jiri Kosina <jkosina@suse.cz>
9090 L: linux-usb@vger.kernel.org
9091 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
9093 F: Documentation/hid/hiddev.txt
9094 F: drivers/hid/usbhid/
9097 L: linux-usb@vger.kernel.org
9099 F: drivers/staging/usbip/
9102 M: Olav Kongas <ok@artecdesign.ee>
9103 L: linux-usb@vger.kernel.org
9105 F: drivers/usb/host/isp116x*
9106 F: include/linux/usb/isp116x.h
9108 USB KAWASAKI LSI DRIVER
9109 M: Oliver Neukum <oliver@neukum.org>
9110 L: linux-usb@vger.kernel.org
9112 F: drivers/usb/serial/kl5kusb105.*
9114 USB MASS STORAGE DRIVER
9115 M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
9116 L: linux-usb@vger.kernel.org
9117 L: usb-storage@lists.one-eyed-alien.net
9119 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
9120 F: drivers/usb/storage/
9123 M: Clemens Ladisch <clemens@ladisch.de>
9124 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9125 T: git git://git.alsa-project.org/alsa-kernel.git
9129 USB NETWORKING DRIVERS
9130 L: linux-usb@vger.kernel.org
9135 M: Alan Stern <stern@rowland.harvard.edu>
9136 L: linux-usb@vger.kernel.org
9138 F: Documentation/usb/ohci.txt
9139 F: drivers/usb/host/ohci*
9141 USB OPTION-CARD DRIVER
9142 M: Matthias Urlichs <smurf@smurf.noris.de>
9143 L: linux-usb@vger.kernel.org
9145 F: drivers/usb/serial/option.c
9148 M: Petko Manolov <petkan@nucleusys.com>
9149 L: linux-usb@vger.kernel.org
9150 L: netdev@vger.kernel.org
9151 T: git git://github.com/petkan/pegasus.git
9152 W: https://github.com/petkan/pegasus
9154 F: drivers/net/usb/pegasus.*
9157 M: Felipe Balbi <balbi@ti.com>
9158 L: linux-usb@vger.kernel.org
9159 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9163 USB PRINTER DRIVER (usblp)
9164 M: Pete Zaitcev <zaitcev@redhat.com>
9165 L: linux-usb@vger.kernel.org
9167 F: drivers/usb/class/usblp.c
9170 M: Petko Manolov <petkan@nucleusys.com>
9171 L: linux-usb@vger.kernel.org
9172 L: netdev@vger.kernel.org
9173 T: git git://github.com/petkan/rtl8150.git
9174 W: https://github.com/petkan/rtl8150
9176 F: drivers/net/usb/rtl8150.c
9178 USB SERIAL SUBSYSTEM
9179 M: Johan Hovold <jhovold@gmail.com>
9180 L: linux-usb@vger.kernel.org
9182 F: Documentation/usb/usb-serial.txt
9183 F: drivers/usb/serial/
9184 F: include/linux/usb/serial.h
9186 USB SMSC75XX ETHERNET DRIVER
9187 M: Steve Glendinning <steve.glendinning@shawell.net>
9188 L: netdev@vger.kernel.org
9190 F: drivers/net/usb/smsc75xx.*
9192 USB SMSC95XX ETHERNET DRIVER
9193 M: Steve Glendinning <steve.glendinning@shawell.net>
9194 L: netdev@vger.kernel.org
9196 F: drivers/net/usb/smsc95xx.*
9199 M: Luca Risolia <luca.risolia@studio.unibo.it>
9200 L: linux-usb@vger.kernel.org
9201 L: linux-media@vger.kernel.org
9202 T: git git://linuxtv.org/media_tree.git
9203 W: http://www.linux-projects.org
9205 F: drivers/staging/media/sn9c102/
9208 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9209 L: linux-usb@vger.kernel.org
9210 W: http://www.linux-usb.org
9211 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
9213 F: Documentation/usb/
9215 F: include/linux/usb.h
9216 F: include/linux/usb/
9219 M: Alan Stern <stern@rowland.harvard.edu>
9220 L: linux-usb@vger.kernel.org
9222 F: drivers/usb/host/uhci*
9224 USB "USBNET" DRIVER FRAMEWORK
9225 M: Oliver Neukum <oneukum@suse.de>
9226 L: netdev@vger.kernel.org
9227 W: http://www.linux-usb.org/usbnet
9229 F: drivers/net/usb/usbnet.c
9230 F: include/linux/usb/usbnet.h
9233 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9234 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
9235 L: linux-media@vger.kernel.org
9236 T: git git://linuxtv.org/media_tree.git
9237 W: http://www.ideasonboard.org/uvc/
9239 F: drivers/media/usb/uvc/
9240 F: include/uapi/linux/uvcvideo.h
9243 M: Hans Verkuil <hverkuil@xs4all.nl>
9244 L: linux-media@vger.kernel.org
9245 T: git git://linuxtv.org/media_tree.git
9246 W: http://linuxtv.org
9248 F: drivers/media/usb/usbvision/
9251 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9252 L: linux-usb@vger.kernel.org
9254 F: drivers/usb/gadget/*uvc*.c
9255 F: drivers/usb/gadget/webcam.c
9257 USB WIRELESS RNDIS DRIVER (rndis_wlan)
9258 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
9259 L: linux-wireless@vger.kernel.org
9261 F: drivers/net/wireless/rndis_wlan.c
9264 M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
9265 L: linux-usb@vger.kernel.org
9267 F: drivers/usb/host/xhci*
9268 F: drivers/usb/host/pci-quirks*
9271 L: linux-wireless@vger.kernel.org
9272 W: http://linux-lc100020.sourceforge.net
9274 F: drivers/net/wireless/zd1201.*
9277 M: Antoine Jacquet <royale@zerezo.com>
9278 L: linux-usb@vger.kernel.org
9279 L: linux-media@vger.kernel.org
9280 T: git git://linuxtv.org/media_tree.git
9281 W: http://royale.zerezo.com/zr364xx/
9283 F: Documentation/video4linux/zr364xx.txt
9284 F: drivers/media/usb/zr364xx/
9286 USER-MODE LINUX (UML)
9287 M: Jeff Dike <jdike@addtoit.com>
9288 M: Richard Weinberger <richard@nod.at>
9289 L: user-mode-linux-devel@lists.sourceforge.net
9290 L: user-mode-linux-user@lists.sourceforge.net
9291 W: http://user-mode-linux.sourceforge.net
9293 F: Documentation/virtual/uml/
9300 M: "Hans J. Koch" <hjk@hansjkoch.de>
9301 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9303 F: Documentation/DocBook/uio-howto.tmpl
9305 F: include/linux/uio*.h
9308 M: Karel Zak <kzak@redhat.com>
9309 L: util-linux@vger.kernel.org
9310 W: http://en.wikipedia.org/wiki/Util-linux
9311 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
9315 M: Michal Januszewski <spock@gentoo.org>
9316 L: linux-fbdev@vger.kernel.org
9317 W: http://dev.gentoo.org/~spock/projects/uvesafb/
9319 F: Documentation/fb/uvesafb.txt
9320 F: drivers/video/uvesafb.*
9322 VFAT/FAT/MSDOS FILESYSTEM
9323 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
9325 F: Documentation/filesystems/vfat.txt
9329 M: Alex Williamson <alex.williamson@redhat.com>
9330 L: kvm@vger.kernel.org
9332 F: Documentation/vfio.txt
9334 F: include/linux/vfio.h
9335 F: include/uapi/linux/vfio.h
9338 M: Pawel Osciak <pawel@osciak.com>
9339 M: Marek Szyprowski <m.szyprowski@samsung.com>
9340 M: Kyungmin Park <kyungmin.park@samsung.com>
9341 L: linux-media@vger.kernel.org
9343 F: drivers/media/v4l2-core/videobuf2-*
9344 F: include/media/videobuf2-*
9346 VIRTIO CONSOLE DRIVER
9347 M: Amit Shah <amit.shah@redhat.com>
9348 L: virtio-dev@lists.oasis-open.org
9349 L: virtualization@lists.linux-foundation.org
9351 F: drivers/char/virtio_console.c
9352 F: include/linux/virtio_console.h
9353 F: include/uapi/linux/virtio_console.h
9355 VIRTIO CORE, NET AND BLOCK DRIVERS
9356 M: Rusty Russell <rusty@rustcorp.com.au>
9357 M: "Michael S. Tsirkin" <mst@redhat.com>
9358 L: virtio-dev@lists.oasis-open.org
9359 L: virtualization@lists.linux-foundation.org
9363 F: drivers/net/virtio_net.c
9364 F: drivers/block/virtio_blk.c
9365 F: include/linux/virtio_*.h
9366 F: include/uapi/linux/virtio_*.h
9369 M: "Michael S. Tsirkin" <mst@redhat.com>
9370 L: kvm@vger.kernel.org
9371 L: virtio-dev@lists.oasis-open.org
9372 L: virtualization@lists.linux-foundation.org
9373 L: netdev@vger.kernel.org
9376 F: include/uapi/linux/vhost.h
9378 VIA RHINE NETWORK DRIVER
9379 M: Roger Luethi <rl@hellgate.ch>
9381 F: drivers/net/ethernet/via/via-rhine.c
9383 VIA SD/MMC CARD CONTROLLER DRIVER
9384 M: Bruce Chang <brucechang@via.com.tw>
9385 M: Harald Welte <HaraldWelte@viatech.com>
9387 F: drivers/mmc/host/via-sdmmc.c
9389 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
9390 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
9391 L: linux-fbdev@vger.kernel.org
9393 F: include/linux/via-core.h
9394 F: include/linux/via-gpio.h
9395 F: include/linux/via_i2c.h
9396 F: drivers/video/via/
9398 VIA VELOCITY NETWORK DRIVER
9399 M: Francois Romieu <romieu@fr.zoreil.com>
9400 L: netdev@vger.kernel.org
9402 F: drivers/net/ethernet/via/via-velocity.*
9404 VIVI VIRTUAL VIDEO DRIVER
9405 M: Hans Verkuil <hverkuil@xs4all.nl>
9406 L: linux-media@vger.kernel.org
9407 T: git git://linuxtv.org/media_tree.git
9408 W: http://linuxtv.org
9410 F: drivers/media/platform/vivi*
9413 M: Patrick McHardy <kaber@trash.net>
9414 L: netdev@vger.kernel.org
9416 F: drivers/net/macvlan.c
9417 F: include/linux/if_*vlan.h
9421 M: Florian Fainelli <florian@openwrt.org>
9422 L: openwrt-devel@lists.openwrt.org (subscribers-only)
9424 F: drivers/vlynq/vlynq.c
9425 F: include/linux/vlynq.h
9428 M: Martyn Welch <martyn.welch@ge.com>
9429 M: Manohar Vanga <manohar.vanga@gmail.com>
9430 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9431 L: devel@driverdev.osuosl.org
9433 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9434 F: Documentation/vme_api.txt
9435 F: drivers/staging/vme/
9437 F: include/linux/vme*
9439 VMWARE HYPERVISOR INTERFACE
9440 M: Alok Kataria <akataria@vmware.com>
9441 L: virtualization@lists.linux-foundation.org
9443 F: arch/x86/kernel/cpu/vmware.c
9445 VMWARE VMXNET3 ETHERNET DRIVER
9446 M: Shreyas Bhatewara <sbhatewara@vmware.com>
9447 M: "VMware, Inc." <pv-drivers@vmware.com>
9448 L: netdev@vger.kernel.org
9450 F: drivers/net/vmxnet3/
9452 VMware PVSCSI driver
9453 M: Arvind Kumar <arvindkumar@vmware.com>
9454 M: VMware PV-Drivers <pv-drivers@vmware.com>
9455 L: linux-scsi@vger.kernel.org
9457 F: drivers/scsi/vmw_pvscsi.c
9458 F: drivers/scsi/vmw_pvscsi.h
9460 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
9461 M: Liam Girdwood <lgirdwood@gmail.com>
9462 M: Mark Brown <broonie@kernel.org>
9463 W: http://opensource.wolfsonmicro.com/node/15
9464 W: http://www.slimlogic.co.uk/?p=48
9465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
9467 F: drivers/regulator/
9468 F: include/linux/regulator/
9470 VT1211 HARDWARE MONITOR DRIVER
9471 M: Juerg Haefliger <juergh@gmail.com>
9472 L: lm-sensors@lm-sensors.org
9474 F: Documentation/hwmon/vt1211
9475 F: drivers/hwmon/vt1211.c
9477 VT8231 HARDWARE MONITOR DRIVER
9478 M: Roger Lucas <vt8231@hiddenengine.co.uk>
9479 L: lm-sensors@lm-sensors.org
9481 F: drivers/hwmon/vt8231.c
9483 VUB300 USB to SDIO/SD/MMC bridge chip
9484 M: Tony Olech <tony.olech@elandigitalsystems.com>
9485 L: linux-mmc@vger.kernel.org
9486 L: linux-usb@vger.kernel.org
9488 F: drivers/mmc/host/vub300.c
9490 W1 DALLAS'S 1-WIRE BUS
9491 M: Evgeniy Polyakov <zbr@ioremap.net>
9493 F: Documentation/w1/
9496 W83791D HARDWARE MONITORING DRIVER
9497 M: Marc Hulsman <m.hulsman@tudelft.nl>
9498 L: lm-sensors@lm-sensors.org
9500 F: Documentation/hwmon/w83791d
9501 F: drivers/hwmon/w83791d.c
9503 W83793 HARDWARE MONITORING DRIVER
9504 M: Rudolf Marek <r.marek@assembler.cz>
9505 L: lm-sensors@lm-sensors.org
9507 F: Documentation/hwmon/w83793
9508 F: drivers/hwmon/w83793.c
9510 W83795 HARDWARE MONITORING DRIVER
9511 M: Jean Delvare <jdelvare@suse.de>
9512 L: lm-sensors@lm-sensors.org
9514 F: drivers/hwmon/w83795.c
9516 W83L51xD SD/MMC CARD INTERFACE DRIVER
9517 M: Pierre Ossman <pierre@ossman.eu>
9519 F: drivers/mmc/host/wbsd.*
9521 WATCHDOG DEVICE DRIVERS
9522 M: Wim Van Sebroeck <wim@iguana.be>
9523 L: linux-watchdog@vger.kernel.org
9524 W: http://www.linux-watchdog.org/
9525 T: git git://www.linux-watchdog.org/linux-watchdog.git
9527 F: Documentation/watchdog/
9528 F: drivers/watchdog/
9529 F: include/linux/watchdog.h
9530 F: include/uapi/linux/watchdog.h
9533 M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
9534 L: linux-scsi@vger.kernel.org
9536 F: drivers/scsi/wd7000.c
9539 M: David Herrmann <dh.herrmann@googlemail.com>
9540 L: linux-input@vger.kernel.org
9542 F: drivers/hid/hid-wiimote*
9545 M: David Härdeman <david@hardeman.nu>
9547 F: drivers/media/rc/winbond-cir.c
9550 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9551 M: linux-wimax@intel.com
9552 L: wimax@linuxwimax.org
9554 W: http://linuxwimax.org
9555 F: Documentation/wimax/README.wimax
9556 F: include/linux/wimax/debug.h
9557 F: include/net/wimax.h
9558 F: include/uapi/linux/wimax.h
9561 WISTRON LAPTOP BUTTON DRIVER
9562 M: Miloslav Trmac <mitr@volny.cz>
9564 F: drivers/input/misc/wistron_btns.c
9566 WL3501 WIRELESS PCMCIA CARD DRIVER
9567 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
9568 L: linux-wireless@vger.kernel.org
9569 W: http://oops.ghostprotocols.net:81/blog
9571 F: drivers/net/wireless/wl3501*
9573 WM97XX TOUCHSCREEN DRIVERS
9574 M: Mark Brown <broonie@kernel.org>
9575 M: Liam Girdwood <lrg@slimlogic.co.uk>
9576 L: linux-input@vger.kernel.org
9577 T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
9578 W: http://opensource.wolfsonmicro.com/node/7
9580 F: drivers/input/touchscreen/*wm97*
9581 F: include/linux/wm97xx.h
9583 WOLFSON MICROELECTRONICS DRIVERS
9584 L: patches@opensource.wolfsonmicro.com
9585 T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
9586 T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
9587 W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
9589 F: Documentation/hwmon/wm83??
9590 F: arch/arm/mach-s3c64xx/mach-crag6410*
9591 F: drivers/clk/clk-wm83*.c
9592 F: drivers/extcon/extcon-arizona.c
9593 F: drivers/leds/leds-wm83*.c
9594 F: drivers/gpio/gpio-*wm*.c
9595 F: drivers/gpio/gpio-arizona.c
9596 F: drivers/hwmon/wm83??-hwmon.c
9597 F: drivers/input/misc/wm831x-on.c
9598 F: drivers/input/touchscreen/wm831x-ts.c
9599 F: drivers/input/touchscreen/wm97*.c
9600 F: drivers/mfd/arizona*
9601 F: drivers/mfd/wm*.c
9602 F: drivers/power/wm83*.c
9603 F: drivers/rtc/rtc-wm83*.c
9604 F: drivers/regulator/wm8*.c
9605 F: drivers/video/backlight/wm83*_bl.c
9606 F: drivers/watchdog/wm83*_wdt.c
9607 F: include/linux/mfd/arizona/
9608 F: include/linux/mfd/wm831x/
9609 F: include/linux/mfd/wm8350/
9610 F: include/linux/mfd/wm8400*
9611 F: include/linux/wm97xx.h
9612 F: include/sound/wm????.h
9613 F: sound/soc/codecs/arizona.?
9614 F: sound/soc/codecs/wm*
9617 M: Tejun Heo <tj@kernel.org>
9618 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9620 F: include/linux/workqueue.h
9621 F: kernel/workqueue.c
9622 F: Documentation/workqueue.txt
9625 M: Andrew Hendry <andrew.hendry@gmail.com>
9626 L: linux-x25@vger.kernel.org
9628 F: Documentation/networking/x25*
9632 X86 ARCHITECTURE (32-BIT AND 64-BIT)
9633 M: Thomas Gleixner <tglx@linutronix.de>
9634 M: Ingo Molnar <mingo@redhat.com>
9635 M: "H. Peter Anvin" <hpa@zytor.com>
9637 L: linux-kernel@vger.kernel.org
9638 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
9640 F: Documentation/x86/
9643 X86 PLATFORM DRIVERS
9644 M: Matthew Garrett <matthew.garrett@nebula.com>
9645 L: platform-driver-x86@vger.kernel.org
9646 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
9648 F: drivers/platform/x86/
9650 X86 MCE INFRASTRUCTURE
9651 M: Tony Luck <tony.luck@intel.com>
9652 M: Borislav Petkov <bp@alien8.de>
9653 L: linux-edac@vger.kernel.org
9655 F: arch/x86/kernel/cpu/mcheck/*
9657 XC2028/3028 TUNER DRIVER
9658 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
9659 L: linux-media@vger.kernel.org
9660 W: http://linuxtv.org
9661 T: git git://linuxtv.org/media_tree.git
9663 F: drivers/media/tuners/tuner-xc2028.*
9665 XEN HYPERVISOR INTERFACE
9666 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9667 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
9668 M: David Vrabel <david.vrabel@citrix.com>
9669 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9670 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
9673 F: drivers/*/xen-*front.c
9675 F: arch/x86/include/asm/xen/
9677 F: include/uapi/xen/
9680 M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9681 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9684 F: arch/arm/include/asm/xen/
9686 XEN HYPERVISOR ARM64
9687 M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9688 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9691 F: arch/arm64/include/asm/xen/
9693 XEN NETWORK BACKEND DRIVER
9694 M: Ian Campbell <ian.campbell@citrix.com>
9695 M: Wei Liu <wei.liu2@citrix.com>
9696 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9697 L: netdev@vger.kernel.org
9699 F: drivers/net/xen-netback/*
9702 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9703 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9705 F: arch/x86/pci/*xen*
9706 F: drivers/pci/*xen*
9708 XEN SWIOTLB SUBSYSTEM
9709 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9710 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9712 F: arch/x86/xen/*swiotlb*
9713 F: drivers/xen/*swiotlb*
9716 P: Silicon Graphics Inc
9717 M: Dave Chinner <david@fromorbit.com>
9718 M: Ben Myers <bpm@sgi.com>
9721 W: http://oss.sgi.com/projects/xfs
9722 T: git git://oss.sgi.com/xfs/xfs.git
9724 F: Documentation/filesystems/xfs.txt
9727 XILINX AXI ETHERNET DRIVER
9728 M: Anirudha Sarangi <anirudh@xilinx.com>
9729 M: John Linn <John.Linn@xilinx.com>
9731 F: drivers/net/ethernet/xilinx/xilinx_axienet*
9733 XILINX SYSTEMACE DRIVER
9735 F: drivers/block/xsysace.c
9737 XILINX UARTLITE SERIAL DRIVER
9738 M: Peter Korsgaard <jacmet@sunsite.dk>
9739 L: linux-serial@vger.kernel.org
9741 F: drivers/tty/serial/uartlite.c
9743 YAM DRIVER FOR AX.25
9744 M: Jean-Paul Roubelat <jpr@f6fbb.org>
9745 L: linux-hams@vger.kernel.org
9747 F: drivers/net/hamradio/yam*
9748 F: include/linux/yam.h
9750 YEALINK PHONE DRIVER
9751 M: Henk Vergonet <Henk.Vergonet@gmail.com>
9752 L: usbb2k-api-dev@nongnu.org
9754 F: Documentation/input/yealink.txt
9755 F: drivers/input/misc/yealink.*
9757 Z8530 DRIVER FOR AX.25
9758 M: Joerg Reuter <jreuter@yaina.de>
9759 W: http://yaina.de/jreuter/
9760 W: http://www.qsl.net/dl1bke/
9761 L: linux-hams@vger.kernel.org
9763 F: Documentation/networking/z8530drv.txt
9764 F: drivers/net/hamradio/*scc.c
9765 F: drivers/net/hamradio/z8530.h
9767 ZBUD COMPRESSED PAGE ALLOCATOR
9768 M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9769 L: linux-mm@kvack.org
9772 F: include/linux/zbud.h
9774 ZD1211RW WIRELESS DRIVER
9775 M: Daniel Drake <dsd@gentoo.org>
9776 M: Ulrich Kunitz <kune@deine-taler.de>
9777 W: http://zd1211.ath.cx/wiki/DriverRewrite
9778 L: linux-wireless@vger.kernel.org
9779 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9781 F: drivers/net/wireless/zd1211rw/
9783 ZR36067 VIDEO FOR LINUX DRIVER
9784 L: mjpeg-users@lists.sourceforge.net
9785 L: linux-media@vger.kernel.org
9786 W: http://mjpeg.sourceforge.net/driver-zoran/
9787 T: Mercurial http://linuxtv.org/hg/v4l-dvb
9789 F: drivers/media/pci/zoran/
9791 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
9792 M: Minchan Kim <minchan@kernel.org>
9793 M: Nitin Gupta <ngupta@vflare.org>
9794 L: linux-kernel@vger.kernel.org
9796 F: drivers/block/zram/
9797 F: Documentation/blockdev/zram.txt
9799 ZS DECSTATION Z85C30 SERIAL DRIVER
9800 M: "Maciej W. Rozycki" <macro@linux-mips.org>
9802 F: drivers/tty/serial/zs.*
9804 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
9805 M: Minchan Kim <minchan@kernel.org>
9806 M: Nitin Gupta <ngupta@vflare.org>
9807 L: linux-mm@kvack.org
9810 F: include/linux/zsmalloc.h
9812 ZSWAP COMPRESSED SWAP CACHING
9813 M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9814 L: linux-mm@kvack.org
9819 M: Linus Torvalds <torvalds@linux-foundation.org>
9820 L: linux-kernel@vger.kernel.org
9821 Q: http://patchwork.kernel.org/project/LKML/list/
9822 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
9823 S: Buried alive in reporters