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.
77 Type is one of: git, hg, quilt, stgit, topgit
78 S: Status, one of the following:
79 Supported: Someone is actually paid to look after this.
80 Maintained: Someone actually looks after it.
81 Odd Fixes: It has a maintainer but they don't have time to do
82 much other than throw the odd patch in. See below..
83 Orphan: No current maintainer [but maybe you could take the
84 role as you write your new code].
85 Obsolete: Old code. Something tagged obsolete generally means
86 it has been replaced by a better system and you
88 F: Files and directories with wildcard patterns.
89 A trailing slash includes all files and subdirectory files.
90 F: drivers/net/ all files in and below drivers/net
91 F: drivers/net/* all files in drivers/net, but not below
92 F: */net/* all files in "any top level directory"/net
93 One pattern per line. Multiple F: lines acceptable.
94 N: Files and directories with regex patterns.
95 N: [^a-z]tegra all files whose path contains the word tegra
96 One pattern per line. Multiple N: lines acceptable.
97 scripts/get_maintainer.pl has different behavior for files that
98 match F: pattern and matches of N: patterns. By default,
99 get_maintainer will not look at git log history when an F: pattern
100 match occurs. When an N: match occurs, git log history is used
101 to also notify the people that have git commit signatures.
102 X: Files and directories that are NOT maintained, same rules as F:
103 Files exclusions are tested before file matches.
104 Can be useful for excluding a specific subdirectory, for instance:
107 matches all files in and below net excluding net/ipv6/
108 K: Keyword perl extended regex pattern to match content in a
109 patch or file. For instance:
111 matches patches or files that contain "of_get_profile"
112 K: \b(printk|pr_(info|err))\b
113 matches patches or files that contain one or more of the words
114 printk, pr_info or pr_err
115 One regex pattern per line. Multiple K: lines acceptable.
117 Note: For the hard of thinking, this list is meant to remain in alphabetical
118 order. If you could add yourselves to it in alphabetical order that would be
121 Maintainers List (try to look for most precise areas first)
123 -----------------------------------
126 M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
127 L: netdev@vger.kernel.org
129 F: Documentation/networking/vortex.txt
130 F: drivers/net/ethernet/3com/3c59x.c
132 3CR990 NETWORK DRIVER
133 M: David Dillow <dave@thedillows.org>
134 L: netdev@vger.kernel.org
136 F: drivers/net/ethernet/3com/typhoon*
138 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
139 M: Adam Radford <linuxraid@lsi.com>
140 L: linux-scsi@vger.kernel.org
141 W: http://www.lsi.com
145 53C700 AND 53C700-66 SCSI DRIVER
146 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
147 L: linux-scsi@vger.kernel.org
149 F: drivers/scsi/53c700*
151 6PACK NETWORK DRIVER FOR AX.25
152 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
153 L: linux-hams@vger.kernel.org
155 F: drivers/net/hamradio/6pack.c
157 8169 10/100/1000 GIGABIT ETHERNET DRIVER
158 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
159 M: Francois Romieu <romieu@fr.zoreil.com>
160 L: netdev@vger.kernel.org
162 F: drivers/net/ethernet/realtek/r8169.c
164 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
165 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
166 L: linux-serial@vger.kernel.org
167 W: http://serial.sourceforge.net
169 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
170 F: drivers/tty/serial/8250*
171 F: include/linux/serial_8250.h
173 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
174 L: netdev@vger.kernel.org
176 F: drivers/net/ethernet/8390/
179 M: Eric Van Hensbergen <ericvh@gmail.com>
180 M: Ron Minnich <rminnich@sandia.gov>
181 M: Latchesar Ionkov <lucho@ionkov.net>
182 L: v9fs-developer@lists.sourceforge.net
183 W: http://swik.net/v9fs
184 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
185 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
187 F: Documentation/filesystems/9p.txt
191 F: include/uapi/linux/virtio_9p.h
192 F: include/trace/events/9p.h
196 M: Antti Palosaari <crope@iki.fi>
197 L: linux-media@vger.kernel.org
198 W: http://linuxtv.org/
199 W: http://palosaari.fi/linux/
200 Q: http://patchwork.linuxtv.org/project/linux-media/list/
201 T: git git://linuxtv.org/anttip/media_tree.git
203 F: drivers/media/dvb-frontends/a8293*
205 AACRAID SCSI RAID DRIVER
206 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
207 L: linux-scsi@vger.kernel.org
208 W: http://www.adaptec.com/
210 F: Documentation/scsi/aacraid.txt
211 F: drivers/scsi/aacraid/
214 L: linux-api@vger.kernel.org
215 F: Documentation/ABI/
216 F: include/linux/syscalls.h
220 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
221 M: Hans de Goede <hdegoede@redhat.com>
222 L: lm-sensors@lm-sensors.org
224 F: drivers/hwmon/abituguru.c
226 ABIT UGURU 3 HARDWARE MONITOR DRIVER
227 M: Alistair John Strachan <alistair@devzero.co.uk>
228 L: lm-sensors@lm-sensors.org
230 F: drivers/hwmon/abituguru3.c
233 M: Jes Sorensen <jes@trained-monkey.org>
234 L: linux-acenic@sunsite.dk
236 F: drivers/net/ethernet/alteon/acenic*
238 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
239 M: Peter Feuerer <peter@piie.net>
240 L: platform-driver-x86@vger.kernel.org
241 W: http://piie.net/?section=acerhdf
243 F: drivers/platform/x86/acerhdf.c
245 ACER WMI LAPTOP EXTRAS
246 M: "Lee, Chun-Yi" <jlee@suse.com>
247 L: platform-driver-x86@vger.kernel.org
249 F: drivers/platform/x86/acer-wmi.c
252 M: Rafael J. Wysocki <rjw@rjwysocki.net>
253 M: Len Brown <lenb@kernel.org>
254 L: linux-acpi@vger.kernel.org
255 W: https://01.org/linux-acpi
256 Q: https://patchwork.kernel.org/project/linux-acpi/list/
257 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
260 F: drivers/pnp/pnpacpi/
261 F: include/linux/acpi.h
263 F: Documentation/acpi
264 F: Documentation/ABI/testing/sysfs-bus-acpi
265 F: drivers/pci/*acpi*
266 F: drivers/pci/*/*acpi*
267 F: drivers/pci/*/*/*acpi*
270 ACPI COMPONENT ARCHITECTURE (ACPICA)
271 M: Robert Moore <robert.moore@intel.com>
272 M: Lv Zheng <lv.zheng@intel.com>
273 M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
274 L: linux-acpi@vger.kernel.org
276 W: https://acpica.org/
277 W: https://github.com/acpica/acpica/
278 Q: https://patchwork.kernel.org/project/linux-acpi/list/
279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
281 F: drivers/acpi/acpica/
286 M: Zhang Rui <rui.zhang@intel.com>
287 L: linux-acpi@vger.kernel.org
288 W: https://01.org/linux-acpi
290 F: drivers/acpi/fan.c
293 M: Zhang Rui <rui.zhang@intel.com>
294 L: linux-acpi@vger.kernel.org
295 W: https://01.org/linux-acpi
297 F: drivers/acpi/*thermal*
300 M: Zhang Rui <rui.zhang@intel.com>
301 L: linux-acpi@vger.kernel.org
302 W: https://01.org/linux-acpi
304 F: drivers/acpi/video.c
307 L: platform-driver-x86@vger.kernel.org
309 F: drivers/platform/x86/wmi.c
311 AD1889 ALSA SOUND DRIVER
312 M: Thibaut Varene <T-Bone@parisc-linux.org>
313 W: http://wiki.parisc-linux.org/AD1889
314 L: linux-parisc@vger.kernel.org
316 F: sound/pci/ad1889.*
318 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
319 M: Michael Hennerich <michael.hennerich@analog.com>
320 W: http://wiki.analog.com/AD5254
321 W: http://ez.analog.com/community/linux-device-drivers
323 F: drivers/misc/ad525x_dpot.c
325 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
326 M: Michael Hennerich <michael.hennerich@analog.com>
327 W: http://wiki.analog.com/AD5398
328 W: http://ez.analog.com/community/linux-device-drivers
330 F: drivers/regulator/ad5398.c
332 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
333 M: Michael Hennerich <michael.hennerich@analog.com>
334 W: http://wiki.analog.com/AD7142
335 W: http://ez.analog.com/community/linux-device-drivers
337 F: drivers/input/misc/ad714x.c
339 AD7877 TOUCHSCREEN DRIVER
340 M: Michael Hennerich <michael.hennerich@analog.com>
341 W: http://wiki.analog.com/AD7877
342 W: http://ez.analog.com/community/linux-device-drivers
344 F: drivers/input/touchscreen/ad7877.c
346 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
347 M: Michael Hennerich <michael.hennerich@analog.com>
348 W: http://wiki.analog.com/AD7879
349 W: http://ez.analog.com/community/linux-device-drivers
351 F: drivers/input/touchscreen/ad7879.c
353 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
354 M: Jiri Kosina <jkosina@suse.cz>
357 ADM1025 HARDWARE MONITOR DRIVER
358 M: Jean Delvare <jdelvare@suse.de>
359 L: lm-sensors@lm-sensors.org
361 F: Documentation/hwmon/adm1025
362 F: drivers/hwmon/adm1025.c
364 ADM1029 HARDWARE MONITOR DRIVER
365 M: Corentin Labbe <clabbe.montjoie@gmail.com>
366 L: lm-sensors@lm-sensors.org
368 F: drivers/hwmon/adm1029.c
370 ADM8211 WIRELESS DRIVER
371 L: linux-wireless@vger.kernel.org
372 W: http://wireless.kernel.org/
374 F: drivers/net/wireless/adm8211.*
376 ADP1653 FLASH CONTROLLER DRIVER
377 M: Sakari Ailus <sakari.ailus@iki.fi>
378 L: linux-media@vger.kernel.org
380 F: drivers/media/i2c/adp1653.c
381 F: include/media/adp1653.h
383 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
384 M: Michael Hennerich <michael.hennerich@analog.com>
385 W: http://wiki.analog.com/ADP5520
386 W: http://ez.analog.com/community/linux-device-drivers
388 F: drivers/mfd/adp5520.c
389 F: drivers/video/backlight/adp5520_bl.c
390 F: drivers/leds/leds-adp5520.c
391 F: drivers/gpio/gpio-adp5520.c
392 F: drivers/input/keyboard/adp5520-keys.c
394 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
395 M: Michael Hennerich <michael.hennerich@analog.com>
396 W: http://wiki.analog.com/ADP5588
397 W: http://ez.analog.com/community/linux-device-drivers
399 F: drivers/input/keyboard/adp5588-keys.c
400 F: drivers/gpio/gpio-adp5588.c
402 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
403 M: Michael Hennerich <michael.hennerich@analog.com>
404 W: http://wiki.analog.com/ADP8860
405 W: http://ez.analog.com/community/linux-device-drivers
407 F: drivers/video/backlight/adp8860_bl.c
409 ADS1015 HARDWARE MONITOR DRIVER
410 M: Dirk Eibach <eibach@gdsys.de>
411 L: lm-sensors@lm-sensors.org
413 F: Documentation/hwmon/ads1015
414 F: drivers/hwmon/ads1015.c
415 F: include/linux/i2c/ads1015.h
418 M: Colin Leroy <colin@colino.net>
420 F: drivers/macintosh/therm_adt746x.c
422 ADT7475 HARDWARE MONITOR DRIVER
423 M: Jean Delvare <jdelvare@suse.de>
424 L: lm-sensors@lm-sensors.org
426 F: Documentation/hwmon/adt7475
427 F: drivers/hwmon/adt7475.c
429 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
430 M: Michael Hennerich <michael.hennerich@analog.com>
431 W: http://wiki.analog.com/ADXL345
432 W: http://ez.analog.com/community/linux-device-drivers
434 F: drivers/input/misc/adxl34x.c
437 M: Matthew Wilcox <matthew@wil.cx>
438 L: linux-scsi@vger.kernel.org
440 F: Documentation/scsi/advansys.txt
441 F: drivers/scsi/advansys.c
444 M: Riccardo Facchetti <fizban@tin.it>
446 F: sound/oss/aedsp16.c
449 M: Antti Palosaari <crope@iki.fi>
450 L: linux-media@vger.kernel.org
451 W: http://linuxtv.org/
452 W: http://palosaari.fi/linux/
453 Q: http://patchwork.linuxtv.org/project/linux-media/list/
454 T: git git://linuxtv.org/anttip/media_tree.git
456 F: drivers/media/dvb-frontends/af9013*
459 M: Antti Palosaari <crope@iki.fi>
460 L: linux-media@vger.kernel.org
461 W: http://linuxtv.org/
462 W: http://palosaari.fi/linux/
463 Q: http://patchwork.linuxtv.org/project/linux-media/list/
464 T: git git://linuxtv.org/anttip/media_tree.git
466 F: drivers/media/dvb-frontends/af9033*
469 L: linux-fsdevel@vger.kernel.org
471 F: Documentation/filesystems/affs.txt
474 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
475 M: David Howells <dhowells@redhat.com>
476 L: linux-afs@lists.infradead.org
479 F: include/net/af_rxrpc.h
480 F: net/rxrpc/af_rxrpc.c
483 M: David Airlie <airlied@linux.ie>
484 T: git git://people.freedesktop.org/~airlied/linux (part of drm maint)
487 F: include/linux/agp*
488 F: include/uapi/linux/agp*
491 M: "Juergen E. Fischer" <fischer@norbit.de>
492 L: linux-scsi@vger.kernel.org
494 F: drivers/scsi/aha152x*
495 F: drivers/scsi/pcmcia/aha152x*
497 AIC7XXX / AIC79XX SCSI DRIVER
498 M: Hannes Reinecke <hare@suse.de>
499 L: linux-scsi@vger.kernel.org
501 F: drivers/scsi/aic7xxx/
503 AIMSLAB FM RADIO RECEIVER DRIVER
504 M: Hans Verkuil <hverkuil@xs4all.nl>
505 L: linux-media@vger.kernel.org
506 T: git git://linuxtv.org/media_tree.git
507 W: http://linuxtv.org
509 F: drivers/media/radio/radio-aimslab*
512 M: Benjamin LaHaise <bcrl@kvack.org>
513 L: linux-aio@kvack.org
516 F: include/linux/*aio*.h
518 ALCATEL SPEEDTOUCH USB DRIVER
519 M: Duncan Sands <duncan.sands@free.fr>
520 L: linux-usb@vger.kernel.org
521 W: http://www.linux-usb.org/SpeedTouch/
523 F: drivers/usb/atm/speedtch.c
524 F: drivers/usb/atm/usbatm.c
526 ALCHEMY AU1XX0 MMC DRIVER
527 M: Manuel Lauss <manuel.lauss@gmail.com>
529 F: drivers/mmc/host/au1xmmc.c
532 M: Rudolf Marek <r.marek@assembler.cz>
533 L: linux-i2c@vger.kernel.org
535 F: Documentation/i2c/busses/i2c-ali1563
536 F: drivers/i2c/busses/i2c-ali1563.c
539 M: Richard Henderson <rth@twiddle.net>
540 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
541 M: Matt Turner <mattst88@gmail.com>
543 L: linux-alpha@vger.kernel.org
546 ALTERA TRIPLE SPEED ETHERNET DRIVER
547 M: Vince Bridgers <vbridgers2013@gmail.com>
548 L: netdev@vger.kernel.org
549 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
551 F: drivers/net/ethernet/altera/
553 ALTERA UART/JTAG UART SERIAL DRIVERS
554 M: Tobias Klauser <tklauser@distanz.ch>
555 L: linux-serial@vger.kernel.org
556 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
558 F: drivers/tty/serial/altera_uart.c
559 F: drivers/tty/serial/altera_jtaguart.c
560 F: include/linux/altera_uart.h
561 F: include/linux/altera_jtaguart.h
563 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
564 M: Tom Lendacky <thomas.lendacky@amd.com>
565 L: linux-crypto@vger.kernel.org
567 F: drivers/crypto/ccp/
568 F: include/linux/ccp.h
570 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
571 M: Andreas Herrmann <herrmann.der.user@googlemail.com>
572 L: lm-sensors@lm-sensors.org
574 F: Documentation/hwmon/fam15h_power
575 F: drivers/hwmon/fam15h_power.c
577 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
578 M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
579 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
581 F: drivers/usb/gadget/amd5536udc.*
583 AMD GEODE PROCESSOR/CHIPSET SUPPORT
584 P: Andres Salomon <dilinger@queued.net>
585 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
586 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
588 F: drivers/char/hw_random/geode-rng.c
589 F: drivers/crypto/geode*
590 F: drivers/video/geode/
591 F: arch/x86/include/asm/geode.h
594 M: Joerg Roedel <joro@8bytes.org>
595 L: iommu@lists.linux-foundation.org
596 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
598 F: drivers/iommu/amd_iommu*.[ch]
599 F: include/linux/amd-iommu.h
601 AMD MICROCODE UPDATE SUPPORT
602 M: Andreas Herrmann <herrmann.der.user@googlemail.com>
603 L: amd64-microcode@amd64.org
605 F: arch/x86/kernel/microcode_amd.c
608 M: Tom Lendacky <thomas.lendacky@amd.com>
609 L: netdev@vger.kernel.org
611 F: drivers/net/ethernet/amd/xgbe/
612 F: drivers/net/phy/amd-xgbe-phy.c
614 AMS (Apple Motion Sensor) DRIVER
615 M: Michael Hanselmann <linux-kernel@hansmi.ch>
617 F: drivers/macintosh/ams/
620 M: Tom Tucker <tom@opengridcomputing.com>
621 M: Steve Wise <swise@opengridcomputing.com>
622 L: linux-rdma@vger.kernel.org
624 F: drivers/infiniband/hw/amso1100/
626 ANALOG DEVICES INC AD9389B DRIVER
627 M: Hans Verkuil <hans.verkuil@cisco.com>
628 L: linux-media@vger.kernel.org
630 F: drivers/media/i2c/ad9389b*
632 ANALOG DEVICES INC ADV7511 DRIVER
633 M: Hans Verkuil <hans.verkuil@cisco.com>
634 L: linux-media@vger.kernel.org
636 F: drivers/media/i2c/adv7511*
638 ANALOG DEVICES INC ADV7604 DRIVER
639 M: Hans Verkuil <hans.verkuil@cisco.com>
640 L: linux-media@vger.kernel.org
642 F: drivers/media/i2c/adv7604*
644 ANALOG DEVICES INC ADV7842 DRIVER
645 M: Hans Verkuil <hans.verkuil@cisco.com>
646 L: linux-media@vger.kernel.org
648 F: drivers/media/i2c/adv7842*
650 ANALOG DEVICES INC ASOC CODEC DRIVERS
651 M: Lars-Peter Clausen <lars@metafoo.de>
652 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
653 W: http://wiki.analog.com/
654 W: http://ez.analog.com/community/linux-device-drivers
656 F: sound/soc/codecs/adau*
657 F: sound/soc/codecs/adav*
658 F: sound/soc/codecs/ad1*
659 F: sound/soc/codecs/ad7*
660 F: sound/soc/codecs/ssm*
661 F: sound/soc/codecs/sigmadsp.*
663 ANALOG DEVICES INC ASOC DRIVERS
664 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
665 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
666 W: http://blackfin.uclinux.org/
668 F: sound/soc/blackfin/*
670 AOA (Apple Onboard Audio) ALSA DRIVER
671 M: Johannes Berg <johannes@sipsolutions.net>
672 L: linuxppc-dev@lists.ozlabs.org
673 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
678 M: Jiri Kosina <jkosina@suse.cz>
680 F: arch/x86/kernel/apm_32.c
681 F: include/linux/apm_bios.h
682 F: include/uapi/linux/apm_bios.h
683 F: drivers/char/apm-emulation.c
685 APPLE BCM5974 MULTITOUCH DRIVER
686 M: Henrik Rydberg <rydberg@euromail.se>
687 L: linux-input@vger.kernel.org
689 F: drivers/input/mouse/bcm5974.c
692 M: Henrik Rydberg <rydberg@euromail.se>
693 L: lm-sensors@lm-sensors.org
695 F: drivers/hwmon/applesmc.c
697 APPLETALK NETWORK LAYER
698 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
700 F: drivers/net/appletalk/
703 APTINA CAMERA SENSOR PLL
704 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
705 L: linux-media@vger.kernel.org
707 F: drivers/media/i2c/aptina-pll.*
709 ARASAN COMPACT FLASH PATA CONTROLLER
710 M: Viresh Kumar <viresh.linux@gmail.com>
711 L: linux-ide@vger.kernel.org
713 F: include/linux/pata_arasan_cf_data.h
714 F: drivers/ata/pata_arasan_cf.c
716 ARC FRAMEBUFFER DRIVER
717 M: Jaya Kumar <jayalk@intworks.biz>
719 F: drivers/video/arcfb.c
720 F: drivers/video/fb_defio.c
722 ARM MFM AND FLOPPY DRIVERS
723 M: Ian Molton <spyro@f2s.com>
725 F: arch/arm/lib/floppydma.S
726 F: arch/arm/include/asm/floppy.h
728 ARM PMU PROFILING AND DEBUGGING
729 M: Will Deacon <will.deacon@arm.com>
731 F: arch/arm/kernel/perf_event*
732 F: arch/arm/oprofile/common.c
733 F: arch/arm/include/asm/pmu.h
734 F: arch/arm/kernel/hw_breakpoint.c
735 F: arch/arm/include/asm/hw_breakpoint.h
738 M: Russell King <linux@arm.linux.org.uk>
739 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
740 W: http://www.arm.linux.org.uk/
744 ARM SUB-ARCHITECTURES
745 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
749 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
751 ARM PRIMECELL AACI PL041 DRIVER
752 M: Russell King <linux@arm.linux.org.uk>
756 ARM PRIMECELL CLCD PL110 DRIVER
757 M: Russell King <linux@arm.linux.org.uk>
759 F: drivers/video/amba-clcd.*
761 ARM PRIMECELL KMI PL050 DRIVER
762 M: Russell King <linux@arm.linux.org.uk>
764 F: drivers/input/serio/ambakmi.*
765 F: include/linux/amba/kmi.h
767 ARM PRIMECELL MMCI PL180/1 DRIVER
768 M: Russell King <linux@arm.linux.org.uk>
770 F: drivers/mmc/host/mmci.*
771 F: include/linux/amba/mmci.h
773 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
774 M: Russell King <linux@arm.linux.org.uk>
776 F: drivers/tty/serial/amba-pl01*.c
777 F: include/linux/amba/serial.h
779 ARM PRIMECELL BUS SUPPORT
780 M: Russell King <linux@arm.linux.org.uk>
783 F: include/linux/amba/bus.h
785 ARM/ADS SPHERE MACHINE SUPPORT
786 M: Lennert Buytenhek <kernel@wantstofly.org>
787 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
790 ARM/AFEB9260 MACHINE SUPPORT
791 M: Sergey Lapin <slapin@ossfans.org>
792 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
795 ARM/AJECO 1ARM MACHINE SUPPORT
796 M: Lennert Buytenhek <kernel@wantstofly.org>
797 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
800 ARM/Allwinner A1X SoC support
801 M: Maxime Ripard <maxime.ripard@free-electrons.com>
802 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
806 ARM/Allwinner SoC Clock Support
807 M: Emilio López <emilio@elopez.com.ar>
809 F: drivers/clk/sunxi/
811 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
812 M: Andrew Victor <linux@maxim.org.za>
813 M: Nicolas Ferre <nicolas.ferre@atmel.com>
814 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
815 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
816 W: http://maxim.org.za/at91_26.html
817 W: http://www.linux4sam.org
819 F: arch/arm/mach-at91/
820 F: arch/arm/boot/dts/at91*.dts
821 F: arch/arm/boot/dts/at91*.dtsi
822 F: arch/arm/boot/dts/sama*.dts
823 F: arch/arm/boot/dts/sama*.dtsi
825 ARM/ATMEL AT91 Clock Support
826 M: Boris Brezillon <boris.brezillon@free-electrons.com>
830 ARM/CALXEDA HIGHBANK ARCHITECTURE
831 M: Rob Herring <robh@kernel.org>
832 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
834 F: arch/arm/mach-highbank/
836 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
837 M: Anton Vorontsov <anton@enomsg.org>
839 F: arch/arm/mach-cns3xxx/
840 T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
842 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
843 M: Alexander Shiyan <shc_work@mail.ru>
844 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
848 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
849 M: Hartley Sweeten <hsweeten@visionengravers.com>
850 M: Ryan Mallon <rmallon@gmail.com>
851 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
853 F: arch/arm/mach-ep93xx/
854 F: arch/arm/mach-ep93xx/include/mach/
856 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
857 M: Lennert Buytenhek <kernel@wantstofly.org>
858 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
862 M: Russell King <linux@arm.linux.org.uk>
863 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 F: arch/arm/include/asm/clkdev.h
866 F: drivers/clk/clkdev.c
868 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
869 M: Mike Rapoport <mike@compulab.co.il>
870 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
873 ARM/CONTEC MICRO9 MACHINE SUPPORT
874 M: Hubert Feurstein <hubert.feurstein@contec.at>
876 F: arch/arm/mach-ep93xx/micro9.c
878 ARM/CORGI MACHINE SUPPORT
879 M: Richard Purdie <rpurdie@rpsys.net>
882 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
883 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
884 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
885 T: git git://git.berlios.de/gemini-board
887 F: arch/arm/mach-gemini/
889 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
890 M: Barry Song <baohua@kernel.org>
891 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
894 F: arch/arm/mach-prima2/
895 F: drivers/clk/clk-prima2.c
896 F: drivers/clocksource/timer-prima2.c
897 F: drivers/clocksource/timer-marco.c
900 ARM/EBSA110 MACHINE SUPPORT
901 M: Russell King <linux@arm.linux.org.uk>
902 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
903 W: http://www.arm.linux.org.uk/
905 F: arch/arm/mach-ebsa110/
906 F: drivers/net/ethernet/amd/am79c961a.*
908 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
909 M: Uwe Kleine-König <kernel@pengutronix.de>
910 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
914 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
915 M: Daniel Ribeiro <drwyrm@gmail.com>
916 M: Stefan Schmidt <stefan@openezx.org>
917 M: Harald Welte <laforge@openezx.org>
918 L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
919 W: http://www.openezx.org/
921 T: topgit git://git.openezx.org/openezx.git
922 F: arch/arm/mach-pxa/ezx.c
924 ARM/FARADAY FA526 PORT
925 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
926 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
928 T: git git://git.berlios.de/gemini-board
931 ARM/FOOTBRIDGE ARCHITECTURE
932 M: Russell King <linux@arm.linux.org.uk>
933 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 W: http://www.arm.linux.org.uk/
936 F: arch/arm/include/asm/hardware/dec21285.h
937 F: arch/arm/mach-footbridge/
939 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
940 M: Shawn Guo <shawn.guo@freescale.com>
941 M: Sascha Hauer <kernel@pengutronix.de>
942 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
945 F: arch/arm/mach-imx/
946 F: arch/arm/boot/dts/imx*
947 F: arch/arm/configs/imx*_defconfig
949 ARM/FREESCALE MXS ARM ARCHITECTURE
950 M: Shawn Guo <shawn.guo@linaro.org>
951 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953 T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
954 F: arch/arm/mach-mxs/
956 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
957 M: Lennert Buytenhek <kernel@wantstofly.org>
958 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
961 ARM/GUMSTIX MACHINE SUPPORT
962 M: Steve Sakoman <sakoman@gmail.com>
963 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
966 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
967 M: Philipp Zabel <philipp.zabel@gmail.com>
968 M: Paul Parsons <lost.distance@yahoo.com>
969 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
971 F: arch/arm/mach-pxa/hx4700.c
972 F: arch/arm/mach-pxa/include/mach/hx4700.h
973 F: sound/soc/pxa/hx4700.c
975 ARM/HP JORNADA 7XX MACHINE SUPPORT
976 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
979 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
980 F: arch/arm/mach-sa1100/jornada720.c
981 F: arch/arm/mach-sa1100/include/mach/jornada720.h
983 ARM/IGEP MACHINE SUPPORT
984 M: Enric Balletbo i Serra <eballetbo@gmail.com>
985 M: Javier Martinez Canillas <javier@dowhile0.org>
986 L: linux-omap@vger.kernel.org
987 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989 F: arch/arm/boot/dts/omap3-igep*
991 ARM/INCOME PXA270 SUPPORT
992 M: Marek Vasut <marek.vasut@gmail.com>
993 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995 F: arch/arm/mach-pxa/colibri-pxa270-income.c
997 ARM/INTEL IOP32X ARM ARCHITECTURE
998 M: Lennert Buytenhek <kernel@wantstofly.org>
999 M: Dan Williams <dan.j.williams@intel.com>
1000 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 ARM/INTEL IOP33X ARM ARCHITECTURE
1004 M: Dan Williams <dan.j.williams@intel.com>
1005 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1008 ARM/INTEL IOP13XX ARM ARCHITECTURE
1009 M: Lennert Buytenhek <kernel@wantstofly.org>
1010 M: Dan Williams <dan.j.williams@intel.com>
1011 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1014 ARM/INTEL IQ81342EX MACHINE SUPPORT
1015 M: Lennert Buytenhek <kernel@wantstofly.org>
1016 M: Dan Williams <dan.j.williams@intel.com>
1017 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 ARM/INTEL IXDP2850 MACHINE SUPPORT
1021 M: Lennert Buytenhek <kernel@wantstofly.org>
1022 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1025 ARM/INTEL IXP4XX ARM ARCHITECTURE
1026 M: Imre Kaloz <kaloz@openwrt.org>
1027 M: Krzysztof Halasa <khc@pm.waw.pl>
1028 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1030 F: arch/arm/mach-ixp4xx/
1032 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1033 M: Jonathan Cameron <jic23@cam.ac.uk>
1034 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 F: arch/arm/mach-pxa/stargate2.c
1037 F: drivers/pcmcia/pxa2xx_stargate2.c
1039 ARM/INTEL XSC3 (MANZANO) ARM CORE
1040 M: Lennert Buytenhek <kernel@wantstofly.org>
1041 M: Dan Williams <dan.j.williams@intel.com>
1042 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1045 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1046 M: Lennert Buytenhek <kernel@wantstofly.org>
1047 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1050 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1051 M: Santosh Shilimkar <santosh.shilimkar@ti.com>
1052 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 F: arch/arm/mach-keystone/
1055 F: drivers/clk/keystone/
1056 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1058 ARM/LOGICPD PXA270 MACHINE SUPPORT
1059 M: Lennert Buytenhek <kernel@wantstofly.org>
1060 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1063 ARM/MAGICIAN MACHINE SUPPORT
1064 M: Philipp Zabel <philipp.zabel@gmail.com>
1067 ARM/Marvell Armada 370 and Armada XP SOC support
1068 M: Jason Cooper <jason@lakedaemon.net>
1069 M: Andrew Lunn <andrew@lunn.ch>
1070 M: Gregory Clement <gregory.clement@free-electrons.com>
1071 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1072 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1074 F: arch/arm/mach-mvebu/
1076 ARM/Marvell Berlin SoC support
1077 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1078 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1080 F: arch/arm/mach-berlin/
1082 ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
1083 M: Jason Cooper <jason@lakedaemon.net>
1084 M: Andrew Lunn <andrew@lunn.ch>
1085 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1086 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1088 F: arch/arm/mach-dove/
1089 F: arch/arm/mach-kirkwood/
1090 F: arch/arm/mach-mv78xx0/
1091 F: arch/arm/mach-orion5x/
1092 F: arch/arm/plat-orion/
1094 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1095 M: Alexander Clouter <alex@digriz.org.uk>
1096 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 W: http://www.digriz.org.uk/ts78xx/kernel
1099 F: arch/arm/mach-orion5x/ts78xx-*
1101 ARM/MICREL KS8695 ARCHITECTURE
1102 M: Greg Ungerer <gerg@uclinux.org>
1103 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1104 F: arch/arm/mach-ks8695/
1107 ARM/MIOA701 MACHINE SUPPORT
1108 M: Robert Jarzmik <robert.jarzmik@free.fr>
1109 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 F: arch/arm/mach-pxa/mioa701.c
1113 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1114 M: Michael Petchkovsky <mkpetch@internode.on.net>
1117 ARM/NOMADIK ARCHITECTURE
1118 M: Alessandro Rubini <rubini@unipv.it>
1119 M: Linus Walleij <linus.walleij@linaro.org>
1120 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1122 F: arch/arm/mach-nomadik/
1123 F: drivers/i2c/busses/i2c-nomadik.c
1124 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1126 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1127 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1128 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1129 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1132 ARM/QUALCOMM MSM MACHINE SUPPORT
1133 M: David Brown <davidb@codeaurora.org>
1134 M: Daniel Walker <dwalker@fifo99.com>
1135 M: Bryan Huntsman <bryanh@codeaurora.org>
1136 L: linux-arm-msm@vger.kernel.org
1137 F: arch/arm/mach-msm/
1138 F: drivers/video/msm/
1139 F: drivers/mmc/host/msm_sdcc.c
1140 F: drivers/mmc/host/msm_sdcc.h
1141 F: drivers/tty/serial/msm_serial.h
1142 F: drivers/tty/serial/msm_serial.c
1143 F: drivers/*/pm8???-*
1144 F: drivers/mfd/ssbi/
1145 F: include/linux/mfd/pm8xxx/
1146 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1149 ARM/TOSA MACHINE SUPPORT
1150 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1151 M: Dirk Opfer <dirk@opfer-online.de>
1154 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1155 M: Marek Vasut <marek.vasut@gmail.com>
1156 L: linux-arm-kernel@lists.infradead.org
1157 W: http://hackndev.com
1159 F: arch/arm/mach-pxa/include/mach/palmtx.h
1160 F: arch/arm/mach-pxa/palmtx.c
1161 F: arch/arm/mach-pxa/include/mach/palmt5.h
1162 F: arch/arm/mach-pxa/palmt5.c
1163 F: arch/arm/mach-pxa/include/mach/palmld.h
1164 F: arch/arm/mach-pxa/palmld.c
1165 F: arch/arm/mach-pxa/include/mach/palmte2.h
1166 F: arch/arm/mach-pxa/palmte2.c
1167 F: arch/arm/mach-pxa/include/mach/palmtc.h
1168 F: arch/arm/mach-pxa/palmtc.c
1170 ARM/PALM TREO SUPPORT
1171 M: Tomas Cech <sleep_walker@suse.cz>
1172 L: linux-arm-kernel@lists.infradead.org
1173 W: http://hackndev.com
1175 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1176 F: arch/arm/mach-pxa/palmtreo.c
1179 M: Sergey Lapin <slapin@ossfans.org>
1180 L: linux-arm-kernel@lists.infradead.org
1181 W: http://hackndev.com
1183 F: arch/arm/mach-pxa/include/mach/palmz72.h
1184 F: arch/arm/mach-pxa/palmz72.c
1187 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1188 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1191 ARM/PT DIGITAL BOARD PORT
1192 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1193 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194 W: http://www.arm.linux.org.uk/
1197 ARM/QUALCOMM SUPPORT
1198 M: Kumar Gala <galak@codeaurora.org>
1199 M: David Brown <davidb@codeaurora.org>
1200 L: linux-arm-msm@vger.kernel.org
1202 F: arch/arm/mach-qcom/
1203 T: git git://git.kernel.org/pub/scm/linux/kernel/git/galak/linux-qcom.git
1205 ARM/RADISYS ENP2611 MACHINE SUPPORT
1206 M: Lennert Buytenhek <kernel@wantstofly.org>
1207 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1210 ARM/RISCPC ARCHITECTURE
1211 M: Russell King <linux@arm.linux.org.uk>
1212 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 W: http://www.arm.linux.org.uk/
1215 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1216 F: arch/arm/include/asm/hardware/ioc.h
1217 F: arch/arm/include/asm/hardware/iomd.h
1218 F: arch/arm/include/asm/hardware/memc.h
1219 F: arch/arm/mach-rpc/
1220 F: drivers/net/ethernet/8390/etherh.c
1221 F: drivers/net/ethernet/i825xx/ether1*
1222 F: drivers/net/ethernet/seeq/ether3*
1223 F: drivers/scsi/arm/
1225 ARM/Rockchip SoC support
1226 M: Heiko Stuebner <heiko@sntech.de>
1227 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1229 F: arch/arm/mach-rockchip/
1230 F: drivers/*/*rockchip*
1232 ARM/SAMSUNG ARM ARCHITECTURES
1233 M: Ben Dooks <ben-linux@fluff.org>
1234 M: Kukjin Kim <kgene.kim@samsung.com>
1235 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1237 W: http://www.fluff.org/ben/linux/
1239 F: arch/arm/boot/dts/s3c*
1240 F: arch/arm/boot/dts/exynos*
1241 F: arch/arm/plat-samsung/
1242 F: arch/arm/mach-s3c24*/
1243 F: arch/arm/mach-s3c64xx/
1244 F: drivers/*/*s3c2410*
1245 F: drivers/*/*/*s3c2410*
1246 F: drivers/spi/spi-s3c*
1247 F: sound/soc/samsung/*
1249 ARM/S5P EXYNOS ARM ARCHITECTURES
1250 M: Kukjin Kim <kgene.kim@samsung.com>
1251 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1252 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1254 F: arch/arm/mach-s5p*/
1255 F: arch/arm/mach-exynos*/
1258 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1259 M: Kyungmin Park <kyungmin.park@samsung.com>
1260 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 F: arch/arm/mach-s5pv210/mach-aquila.c
1263 F: arch/arm/mach-s5pv210/mach-goni.c
1265 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1266 M: Kyungmin Park <kyungmin.park@samsung.com>
1267 M: Kamil Debski <k.debski@samsung.com>
1268 L: linux-arm-kernel@lists.infradead.org
1269 L: linux-media@vger.kernel.org
1271 F: drivers/media/platform/s5p-g2d/
1273 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1274 M: Kyungmin Park <kyungmin.park@samsung.com>
1275 M: Kamil Debski <k.debski@samsung.com>
1276 M: Jeongtae Park <jtp.park@samsung.com>
1277 L: linux-arm-kernel@lists.infradead.org
1278 L: linux-media@vger.kernel.org
1280 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1281 F: drivers/media/platform/s5p-mfc/
1283 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1284 M: Kyungmin Park <kyungmin.park@samsung.com>
1285 M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1286 L: linux-arm-kernel@lists.infradead.org
1287 L: linux-media@vger.kernel.org
1289 F: drivers/media/platform/s5p-tv/
1291 ARM/SHMOBILE ARM ARCHITECTURE
1292 M: Simon Horman <horms@verge.net.au>
1293 M: Magnus Damm <magnus.damm@gmail.com>
1294 L: linux-sh@vger.kernel.org
1295 W: http://oss.renesas.com
1296 Q: http://patchwork.kernel.org/project/linux-sh/list/
1297 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1299 F: arch/arm/mach-shmobile/
1302 ARM/SOCFPGA ARCHITECTURE
1303 M: Dinh Nguyen <dinguyen@altera.com>
1305 F: arch/arm/mach-socfpga/
1307 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1308 M: Dinh Nguyen <dinguyen@altera.com>
1310 F: drivers/clk/socfpga/
1312 ARM/STI ARCHITECTURE
1313 M: Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1314 M: Maxime Coquelin <maxime.coquelin@st.com>
1315 M: Patrice Chotard <patrice.chotard@st.com>
1316 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1317 L: kernel@stlinux.com
1318 W: http://www.stlinux.com
1320 F: arch/arm/mach-sti/
1321 F: arch/arm/boot/dts/sti*
1322 F: drivers/clocksource/arm_global_timer.c
1323 F: drivers/reset/sti/
1324 F: drivers/pinctrl/pinctrl-st.c
1325 F: drivers/media/rc/st_rc.c
1326 F: drivers/i2c/busses/i2c-st.c
1327 F: drivers/tty/serial/st-asc.c
1329 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1330 M: Lennert Buytenhek <kernel@wantstofly.org>
1331 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1334 ARM/TETON BGA MACHINE SUPPORT
1335 M: "Mark F. Brown" <mark.brown314@gmail.com>
1336 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1339 ARM/THECUS N2100 MACHINE SUPPORT
1340 M: Lennert Buytenhek <kernel@wantstofly.org>
1341 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1344 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1345 M: Wan ZongShun <mcuos.com@gmail.com>
1346 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1347 W: http://www.mcuos.com
1349 F: arch/arm/mach-w90x900/
1350 F: drivers/input/keyboard/w90p910_keypad.c
1351 F: drivers/input/touchscreen/w90p910_ts.c
1352 F: drivers/watchdog/nuc900_wdt.c
1353 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1354 F: drivers/mtd/nand/nuc900_nand.c
1355 F: drivers/rtc/rtc-nuc900.c
1356 F: drivers/spi/spi-nuc900.c
1357 F: drivers/usb/host/ehci-w90x900.c
1358 F: drivers/video/nuc900fb.c
1360 ARM/U300 MACHINE SUPPORT
1361 M: Linus Walleij <linus.walleij@linaro.org>
1362 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1364 F: arch/arm/mach-u300/
1365 F: drivers/clocksource/timer-u300.c
1366 F: drivers/i2c/busses/i2c-stu300.c
1367 F: drivers/rtc/rtc-coh901331.c
1368 F: drivers/watchdog/coh901327_wdt.c
1369 F: drivers/dma/coh901318*
1370 F: drivers/mfd/ab3100*
1371 F: drivers/rtc/rtc-ab3100.c
1372 F: drivers/rtc/rtc-coh901331.c
1373 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1375 ARM/Ux500 ARM ARCHITECTURE
1376 M: Linus Walleij <linus.walleij@linaro.org>
1377 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1379 F: arch/arm/mach-ux500/
1380 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1381 F: drivers/dma/ste_dma40*
1382 F: drivers/hwspinlock/u8500_hsem.c
1383 F: drivers/mfd/abx500*
1384 F: drivers/mfd/ab8500*
1385 F: drivers/mfd/dbx500*
1386 F: drivers/mfd/db8500*
1387 F: drivers/pinctrl/pinctrl-nomadik*
1388 F: drivers/rtc/rtc-ab8500.c
1389 F: drivers/rtc/rtc-pl031.c
1390 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1392 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1393 M: Ulf Hansson <ulf.hansson@linaro.org>
1394 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1395 T: git git://git.linaro.org/people/ulfh/clk.git
1397 F: drivers/clk/ux500/
1398 F: include/linux/platform_data/clk-ux500.h
1401 M: Russell King <linux@arm.linux.org.uk>
1402 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1403 W: http://www.arm.linux.org.uk/
1407 ARM/VOIPAC PXA270 SUPPORT
1408 M: Marek Vasut <marek.vasut@gmail.com>
1409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 F: arch/arm/mach-pxa/vpac270.c
1412 F: arch/arm/mach-pxa/include/mach/vpac270.h
1414 ARM/VT8500 ARM ARCHITECTURE
1415 M: Tony Prisk <linux@prisktech.co.nz>
1416 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1418 F: arch/arm/mach-vt8500/
1419 F: drivers/clocksource/vt8500_timer.c
1420 F: drivers/i2c/busses/i2c-wmt.c
1421 F: drivers/mmc/host/wmt-sdmmc.c
1422 F: drivers/pwm/pwm-vt8500.c
1423 F: drivers/rtc/rtc-vt8500.c
1424 F: drivers/tty/serial/vt8500_serial.c
1425 F: drivers/usb/host/ehci-platform.c
1426 F: drivers/usb/host/uhci-platform.c
1427 F: drivers/video/vt8500lcdfb.*
1428 F: drivers/video/wm8505fb*
1429 F: drivers/video/wmt_ge_rops.*
1431 ARM/ZIPIT Z2 SUPPORT
1432 M: Marek Vasut <marek.vasut@gmail.com>
1433 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 F: arch/arm/mach-pxa/z2.c
1436 F: arch/arm/mach-pxa/include/mach/z2.h
1438 ARM/ZYNQ ARCHITECTURE
1439 M: Michal Simek <michal.simek@xilinx.com>
1440 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 W: http://wiki.xilinx.com
1442 T: git git://git.xilinx.com/linux-xlnx.git
1444 F: arch/arm/mach-zynq/
1445 F: drivers/cpuidle/cpuidle-zynq.c
1448 F: drivers/clocksource/cadence_ttc_timer.c
1449 F: drivers/i2c/busses/i2c-cadence.c
1450 F: drivers/mmc/host/sdhci-of-arasan.c
1453 M: Will Deacon <will.deacon@arm.com>
1454 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1456 F: drivers/iommu/arm-smmu.c
1458 ARM64 PORT (AARCH64 ARCHITECTURE)
1459 M: Catalin Marinas <catalin.marinas@arm.com>
1460 M: Will Deacon <will.deacon@arm.com>
1461 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1464 F: Documentation/arm64/
1466 AS3645A LED FLASH CONTROLLER DRIVER
1467 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1468 L: linux-media@vger.kernel.org
1469 T: git git://linuxtv.org/media_tree.git
1471 F: drivers/media/i2c/as3645a.c
1472 F: include/media/as3645a.h
1474 ASC7621 HARDWARE MONITOR DRIVER
1475 M: George Joseph <george.joseph@fairview5.com>
1476 L: lm-sensors@lm-sensors.org
1478 F: Documentation/hwmon/asc7621
1479 F: drivers/hwmon/asc7621.c
1481 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1482 M: Corentin Chary <corentin.chary@gmail.com>
1483 L: acpi4asus-user@lists.sourceforge.net
1484 L: platform-driver-x86@vger.kernel.org
1485 W: http://acpi4asus.sf.net
1487 F: drivers/platform/x86/asus*.c
1488 F: drivers/platform/x86/eeepc*.c
1490 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1491 M: Dan Williams <dan.j.williams@intel.com>
1492 W: http://sourceforge.net/projects/xscaleiop
1494 F: Documentation/crypto/async-tx-api.txt
1497 F: include/linux/dmaengine.h
1498 F: include/linux/async_tx.h
1501 M: Wolfram Sang <wsa@the-dreams.de>
1502 L: linux-i2c@vger.kernel.org
1504 F: drivers/misc/eeprom/at24.c
1505 F: include/linux/platform_data/at24.h
1507 ATA OVER ETHERNET (AOE) DRIVER
1508 M: "Ed L. Cashin" <ecashin@coraid.com>
1509 W: http://support.coraid.com/support/linux
1511 F: Documentation/aoe/
1512 F: drivers/block/aoe/
1514 ATHEROS ATH GENERIC UTILITIES
1515 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1516 L: linux-wireless@vger.kernel.org
1518 F: drivers/net/wireless/ath/*
1520 ATHEROS ATH5K WIRELESS DRIVER
1521 M: Jiri Slaby <jirislaby@gmail.com>
1522 M: Nick Kossifidis <mickflemm@gmail.com>
1523 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1524 L: linux-wireless@vger.kernel.org
1525 L: ath5k-devel@lists.ath5k.org
1526 W: http://wireless.kernel.org/en/users/Drivers/ath5k
1528 F: drivers/net/wireless/ath/ath5k/
1530 ATHEROS ATH6KL WIRELESS DRIVER
1531 M: Kalle Valo <kvalo@qca.qualcomm.com>
1532 L: linux-wireless@vger.kernel.org
1533 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1534 T: git git://github.com/kvalo/ath.git
1536 F: drivers/net/wireless/ath/ath6kl/
1538 WILOCITY WIL6210 WIRELESS DRIVER
1539 M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1540 L: linux-wireless@vger.kernel.org
1541 L: wil6210@qca.qualcomm.com
1543 W: http://wireless.kernel.org/en/users/Drivers/wil6210
1544 F: drivers/net/wireless/ath/wil6210/
1546 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1547 M: Christian Lamparter <chunkeey@googlemail.com>
1548 L: linux-wireless@vger.kernel.org
1549 W: http://wireless.kernel.org/en/users/Drivers/carl9170
1551 F: drivers/net/wireless/ath/carl9170/
1553 ATK0110 HWMON DRIVER
1554 M: Luca Tettamanti <kronos.it@gmail.com>
1555 L: lm-sensors@lm-sensors.org
1557 F: drivers/hwmon/asus_atk0110.c
1560 M: Ville Syrjala <syrjala@sci.fi>
1562 F: drivers/input/misc/ati_remote2.c
1564 ATLX ETHERNET DRIVERS
1565 M: Jay Cliburn <jcliburn@gmail.com>
1566 M: Chris Snook <chris.snook@gmail.com>
1567 L: netdev@vger.kernel.org
1568 W: http://sourceforge.net/projects/atl1
1569 W: http://atl1.sourceforge.net
1571 F: drivers/net/ethernet/atheros/
1574 M: Chas Williams <chas@cmf.nrl.navy.mil>
1575 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1576 L: netdev@vger.kernel.org
1577 W: http://linux-atm.sourceforge.net
1580 F: include/linux/atm*
1581 F: include/uapi/linux/atm*
1583 ATMEL AT91 / AT32 MCI DRIVER
1584 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1586 F: drivers/mmc/host/atmel-mci.c
1587 F: drivers/mmc/host/atmel-mci-regs.h
1589 ATMEL AT91 / AT32 SERIAL DRIVER
1590 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1592 F: drivers/tty/serial/atmel_serial.c
1595 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1596 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 F: drivers/dma/at_hdmac.c
1599 F: drivers/dma/at_hdmac_regs.h
1600 F: include/linux/platform_data/dma-atmel.h
1603 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1604 L: linux-i2c@vger.kernel.org
1606 F: drivers/i2c/busses/i2c-at91.c
1609 M: Josh Wu <josh.wu@atmel.com>
1610 L: linux-media@vger.kernel.org
1612 F: drivers/media/platform/soc_camera/atmel-isi.c
1613 F: include/media/atmel-isi.h
1616 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1617 L: linux-fbdev@vger.kernel.org
1619 F: drivers/video/atmel_lcdfb.c
1620 F: include/video/atmel_lcdc.h
1622 ATMEL MACB ETHERNET DRIVER
1623 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1625 F: drivers/net/ethernet/cadence/
1628 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1630 F: drivers/spi/spi-atmel.*
1632 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1633 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1634 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1636 F: drivers/misc/atmel_tclib.c
1637 F: drivers/clocksource/tcb_clksrc.c
1639 ATMEL USBA UDC DRIVER
1640 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1641 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 F: drivers/usb/gadget/atmel_usba_udc.*
1645 ATMEL WIRELESS DRIVER
1646 M: Simon Kelley <simon@thekelleys.org.uk>
1647 L: linux-wireless@vger.kernel.org
1648 W: http://www.thekelleys.org.uk/atmel
1649 W: http://atmelwlandriver.sourceforge.net/
1651 F: drivers/net/wireless/atmel*
1653 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1654 M: Bradley Grove <linuxdrivers@attotech.com>
1655 L: linux-scsi@vger.kernel.org
1656 W: http://www.attotech.com
1658 F: drivers/scsi/esas2r
1661 M: Eric Paris <eparis@redhat.com>
1662 L: linux-audit@redhat.com (subscribers-only)
1663 W: http://people.redhat.com/sgrubb/audit/
1664 T: git git://git.infradead.org/users/eparis/audit.git
1666 F: include/linux/audit.h
1667 F: include/uapi/linux/audit.h
1670 AUXILIARY DISPLAY DRIVERS
1671 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1672 W: http://miguelojeda.es/auxdisplay.htm
1673 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1675 F: drivers/auxdisplay/
1676 F: include/linux/cfag12864b.h
1679 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1680 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1681 W: http://www.atmel.com/products/AVR32/
1682 W: http://mirror.egtvedt.no/avr32linux.org/
1683 W: http://avrfreaks.net/
1687 AVR32/AT32AP MACHINE SUPPORT
1688 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1689 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1691 F: arch/avr32/mach-at32ap/
1694 M: Ralf Baechle <ralf@linux-mips.org>
1695 L: linux-hams@vger.kernel.org
1696 W: http://www.linux-ax25.org/
1698 F: include/uapi/linux/ax25.h
1699 F: include/net/ax25.h
1703 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
1704 L: linux-media@vger.kernel.org
1705 W: http://linuxtv.org
1706 T: git git://linuxtv.org/media_tree.git
1708 F: drivers/media/usb/dvb-usb-v2/az6007.c
1710 AZTECH FM RADIO RECEIVER DRIVER
1711 M: Hans Verkuil <hverkuil@xs4all.nl>
1712 L: linux-media@vger.kernel.org
1713 T: git git://linuxtv.org/media_tree.git
1714 W: http://linuxtv.org
1716 F: drivers/media/radio/radio-aztech*
1719 M: Stefano Brivio <stefano.brivio@polimi.it>
1720 L: linux-wireless@vger.kernel.org
1721 L: b43-dev@lists.infradead.org
1722 W: http://wireless.kernel.org/en/users/Drivers/b43
1724 F: drivers/net/wireless/b43/
1726 B43LEGACY WIRELESS DRIVER
1727 M: Larry Finger <Larry.Finger@lwfinger.net>
1728 M: Stefano Brivio <stefano.brivio@polimi.it>
1729 L: linux-wireless@vger.kernel.org
1730 L: b43-dev@lists.infradead.org
1731 W: http://wireless.kernel.org/en/users/Drivers/b43
1733 F: drivers/net/wireless/b43legacy/
1735 BACKLIGHT CLASS/SUBSYSTEM
1736 M: Jingoo Han <jg1.han@samsung.com>
1737 M: Bryan Wu <cooloney@gmail.com>
1738 M: Lee Jones <lee.jones@linaro.org>
1740 F: drivers/video/backlight/
1741 F: include/linux/backlight.h
1744 M: Marek Lindner <mareklindner@neomailbox.ch>
1745 M: Simon Wunderlich <sw@simonwunderlich.de>
1746 M: Antonio Quartulli <antonio@meshcoding.com>
1747 L: b.a.t.m.a.n@lists.open-mesh.org
1748 W: http://www.open-mesh.org/
1752 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1753 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
1754 L: linux-hams@vger.kernel.org
1755 W: http://www.baycom.org/~tom/ham/ham.html
1757 F: drivers/net/hamradio/baycom*
1759 BCACHE (BLOCK LAYER CACHE)
1760 M: Kent Overstreet <kmo@daterainc.com>
1761 L: linux-bcache@vger.kernel.org
1762 W: http://bcache.evilpiepirate.org
1764 F: drivers/md/bcache/
1768 F: Documentation/filesystems/befs.txt
1772 M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1774 F: Documentation/filesystems/bfs.txt
1776 F: include/uapi/linux/bfs_fs.h
1778 BLACKFIN ARCHITECTURE
1779 M: Steven Miao <realmz6@gmail.com>
1780 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1781 T: git git://git.code.sf.net/p/adi-linux/code
1782 W: http://blackfin.uclinux.org
1786 BLACKFIN EMAC DRIVER
1787 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1788 W: http://blackfin.uclinux.org
1790 F: drivers/net/ethernet/adi/
1793 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1794 W: http://blackfin.uclinux.org
1796 F: drivers/rtc/rtc-bfin.c
1799 M: Sonic Zhang <sonic.zhang@analog.com>
1800 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1801 W: http://blackfin.uclinux.org
1803 F: drivers/mmc/host/bfin_sdh.c
1805 BLACKFIN SERIAL DRIVER
1806 M: Sonic Zhang <sonic.zhang@analog.com>
1807 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1808 W: http://blackfin.uclinux.org
1810 F: drivers/tty/serial/bfin_uart.c
1812 BLACKFIN WATCHDOG DRIVER
1813 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1814 W: http://blackfin.uclinux.org
1816 F: drivers/watchdog/bfin_wdt.c
1818 BLACKFIN I2C TWI DRIVER
1819 M: Sonic Zhang <sonic.zhang@analog.com>
1820 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1821 W: http://blackfin.uclinux.org/
1823 F: drivers/i2c/busses/i2c-bfin-twi.c
1825 BLACKFIN MEDIA DRIVER
1826 M: Scott Jiang <scott.jiang.linux@gmail.com>
1827 L: adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
1828 W: http://blackfin.uclinux.org/
1830 F: drivers/media/platform/blackfin/
1831 F: drivers/media/i2c/adv7183*
1832 F: drivers/media/i2c/vs6624*
1834 BLINKM RGB LED DRIVER
1835 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1837 F: drivers/leds/leds-blinkm.c
1840 M: Jens Axboe <axboe@kernel.dk>
1841 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
1846 M: Joern Engel <joern@lazybastard.org>
1847 L: linux-mtd@lists.infradead.org
1849 F: drivers/mtd/devices/block2mtd.c
1852 M: Marcel Holtmann <marcel@holtmann.org>
1853 M: Gustavo Padovan <gustavo@padovan.org>
1854 M: Johan Hedberg <johan.hedberg@gmail.com>
1855 L: linux-bluetooth@vger.kernel.org
1856 W: http://www.bluez.org/
1857 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1858 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1860 F: drivers/bluetooth/
1863 M: Marcel Holtmann <marcel@holtmann.org>
1864 M: Gustavo Padovan <gustavo@padovan.org>
1865 M: Johan Hedberg <johan.hedberg@gmail.com>
1866 L: linux-bluetooth@vger.kernel.org
1867 W: http://www.bluez.org/
1868 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1869 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1872 F: include/net/bluetooth/
1875 M: Jay Vosburgh <j.vosburgh@gmail.com>
1876 M: Veaceslav Falico <vfalico@gmail.com>
1877 M: Andy Gospodarek <andy@greyhouse.net>
1878 L: netdev@vger.kernel.org
1879 W: http://sourceforge.net/projects/bonding/
1881 F: drivers/net/bonding/
1882 F: include/uapi/linux/if_bonding.h
1884 BROADCOM B44 10/100 ETHERNET DRIVER
1885 M: Gary Zambrano <zambrano@broadcom.com>
1886 L: netdev@vger.kernel.org
1888 F: drivers/net/ethernet/broadcom/b44.*
1890 BROADCOM GENET ETHERNET DRIVER
1891 M: Florian Fainelli <f.fainelli@gmail.com>
1892 L: netdev@vger.kernel.org
1894 F: drivers/net/ethernet/broadcom/genet/
1896 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1897 M: Michael Chan <mchan@broadcom.com>
1898 L: netdev@vger.kernel.org
1900 F: drivers/net/ethernet/broadcom/bnx2.*
1901 F: drivers/net/ethernet/broadcom/bnx2_*
1903 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1904 M: Ariel Elior <ariel.elior@qlogic.com>
1905 L: netdev@vger.kernel.org
1907 F: drivers/net/ethernet/broadcom/bnx2x/
1909 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
1910 M: Christian Daudt <bcm@fixthebug.org>
1911 M: Matt Porter <mporter@linaro.org>
1912 L: bcm-kernel-feedback-list@broadcom.com
1913 T: git git://github.com/broadcom/mach-bcm
1915 F: arch/arm/mach-bcm/
1916 F: arch/arm/boot/dts/bcm113*
1917 F: arch/arm/boot/dts/bcm216*
1918 F: arch/arm/boot/dts/bcm281*
1919 F: arch/arm/configs/bcm_defconfig
1920 F: drivers/mmc/host/sdhci_bcm_kona.c
1921 F: drivers/clocksource/bcm_kona_timer.c
1923 BROADCOM BCM2835 ARM ARCHICTURE
1924 M: Stephen Warren <swarren@wwwdotorg.org>
1925 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1926 T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1928 F: arch/arm/mach-bcm/board_bcm2835.c
1929 F: arch/arm/boot/dts/bcm2835*
1930 F: arch/arm/configs/bcm2835_defconfig
1931 F: drivers/*/*bcm2835*
1933 BROADCOM BCM5301X ARM ARCHICTURE
1934 M: Hauke Mehrtens <hauke@hauke-m.de>
1935 L: linux-arm-kernel@lists.infradead.org
1937 F: arch/arm/mach-bcm/bcm_5301x.c
1938 F: arch/arm/boot/dts/bcm5301x.dtsi
1939 F: arch/arm/boot/dts/bcm470*
1941 BROADCOM TG3 GIGABIT ETHERNET DRIVER
1942 M: Nithin Nayak Sujir <nsujir@broadcom.com>
1943 M: Michael Chan <mchan@broadcom.com>
1944 L: netdev@vger.kernel.org
1946 F: drivers/net/ethernet/broadcom/tg3.*
1948 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1949 M: Brett Rudley <brudley@broadcom.com>
1950 M: Arend van Spriel <arend@broadcom.com>
1951 M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1952 M: Hante Meuleman <meuleman@broadcom.com>
1953 L: linux-wireless@vger.kernel.org
1954 L: brcm80211-dev-list@broadcom.com
1956 F: drivers/net/wireless/brcm80211/
1958 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1959 M: Eddie Wai <eddie.wai@broadcom.com>
1960 L: linux-scsi@vger.kernel.org
1962 F: drivers/scsi/bnx2fc/
1964 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
1965 M: Eddie Wai <eddie.wai@broadcom.com>
1966 L: linux-scsi@vger.kernel.org
1968 F: drivers/scsi/bnx2i/
1970 BROADCOM KONA GPIO DRIVER
1971 M: Markus Mayer <markus.mayer@linaro.org>
1972 L: bcm-kernel-feedback-list@broadcom.com
1974 F: drivers/gpio/gpio-bcm-kona.c
1975 F: Documentation/devicetree/bindings/gpio/gpio-bcm-kona.txt
1977 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1978 M: Rafał Miłecki <zajec5@gmail.com>
1979 L: linux-wireless@vger.kernel.org
1982 F: include/linux/bcma/
1984 BROADCOM SYSTEMPORT ETHERNET DRIVER
1985 M: Florian Fainelli <f.fainelli@gmail.com>
1986 L: netdev@vger.kernel.org
1988 F: drivers/net/ethernet/broadcom/bcmsysport.*
1990 BROCADE BFA FC SCSI DRIVER
1991 M: Anil Gurumurthy <anil.gurumurthy@qlogic.com>
1992 M: Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
1993 L: linux-scsi@vger.kernel.org
1995 F: drivers/scsi/bfa/
1997 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1998 M: Rasesh Mody <rmody@brocade.com>
1999 L: netdev@vger.kernel.org
2001 F: drivers/net/ethernet/brocade/bna/
2003 BSG (block layer generic sg v4 driver)
2004 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2005 L: linux-scsi@vger.kernel.org
2008 F: include/linux/bsg.h
2009 F: include/uapi/linux/bsg.h
2012 M: Clemens Ladisch <clemens@ladisch.de>
2013 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2014 T: git git://git.alsa-project.org/alsa-kernel.git
2016 F: Documentation/sound/alsa/Bt87x.txt
2017 F: sound/pci/bt87x.c
2020 M: Michael Buesch <m@bues.ch>
2021 W: http://bu3sch.de/btgpio.php
2023 F: drivers/gpio/gpio-bt8xx.c
2026 M: Chris Mason <clm@fb.com>
2027 M: Josef Bacik <jbacik@fb.com>
2028 L: linux-btrfs@vger.kernel.org
2029 W: http://btrfs.wiki.kernel.org/
2030 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
2031 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2033 F: Documentation/filesystems/btrfs.txt
2036 BTTV VIDEO4LINUX DRIVER
2037 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
2038 L: linux-media@vger.kernel.org
2039 W: http://linuxtv.org
2040 T: git git://linuxtv.org/media_tree.git
2042 F: Documentation/video4linux/bttv/
2043 F: drivers/media/pci/bt8xx/bttv*
2045 BUSLOGIC SCSI DRIVER
2046 M: Khalid Aziz <khalid@gonehiking.org>
2047 L: linux-scsi@vger.kernel.org
2049 F: drivers/scsi/BusLogic.*
2050 F: drivers/scsi/FlashPoint.*
2052 C-MEDIA CMI8788 DRIVER
2053 M: Clemens Ladisch <clemens@ladisch.de>
2054 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2055 T: git git://git.alsa-project.org/alsa-kernel.git
2057 F: sound/pci/oxygen/
2060 M: Mark Salter <msalter@redhat.com>
2061 M: Aurelien Jacquiot <a-jacquiot@ti.com>
2062 L: linux-c6x-dev@linux-c6x.org
2063 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
2067 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2068 M: David Howells <dhowells@redhat.com>
2069 L: linux-cachefs@redhat.com
2071 F: Documentation/filesystems/caching/cachefiles.txt
2074 CADET FM/AM RADIO RECEIVER DRIVER
2075 M: Hans Verkuil <hverkuil@xs4all.nl>
2076 L: linux-media@vger.kernel.org
2077 T: git git://linuxtv.org/media_tree.git
2078 W: http://linuxtv.org
2080 F: drivers/media/radio/radio-cadet*
2082 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2083 M: Jonathan Corbet <corbet@lwn.net>
2084 L: linux-media@vger.kernel.org
2085 T: git git://linuxtv.org/media_tree.git
2087 F: Documentation/video4linux/cafe_ccic
2088 F: drivers/media/platform/marvell-ccic/
2091 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2092 L: netdev@vger.kernel.org
2094 F: Documentation/networking/caif/
2095 F: drivers/net/caif/
2096 F: include/uapi/linux/caif/
2097 F: include/net/caif/
2100 CALGARY x86-64 IOMMU
2101 M: Muli Ben-Yehuda <muli@il.ibm.com>
2102 M: "Jon D. Mason" <jdmason@kudzu.us>
2103 L: discuss@x86-64.org
2105 F: arch/x86/kernel/pci-calgary_64.c
2106 F: arch/x86/kernel/tce_64.c
2107 F: arch/x86/include/asm/calgary.h
2108 F: arch/x86/include/asm/tce.h
2111 M: Oliver Hartkopp <socketcan@hartkopp.net>
2112 L: linux-can@vger.kernel.org
2113 W: http://gitorious.org/linux-can
2114 T: git git://gitorious.org/linux-can/linux-can-next.git
2116 F: Documentation/networking/can.txt
2118 F: include/linux/can/core.h
2119 F: include/uapi/linux/can.h
2120 F: include/uapi/linux/can/bcm.h
2121 F: include/uapi/linux/can/raw.h
2122 F: include/uapi/linux/can/gw.h
2125 M: Wolfgang Grandegger <wg@grandegger.com>
2126 M: Marc Kleine-Budde <mkl@pengutronix.de>
2127 L: linux-can@vger.kernel.org
2128 W: http://gitorious.org/linux-can
2129 T: git git://gitorious.org/linux-can/linux-can-next.git
2132 F: include/linux/can/dev.h
2133 F: include/linux/can/platform/
2134 F: include/uapi/linux/can/error.h
2135 F: include/uapi/linux/can/netlink.h
2138 M: Serge Hallyn <serge.hallyn@canonical.com>
2139 L: linux-security-module@vger.kernel.org
2141 F: include/linux/capability.h
2142 F: include/uapi/linux/capability.h
2143 F: security/capability.c
2144 F: security/commoncap.c
2145 F: kernel/capability.c
2147 CELL BROADBAND ENGINE ARCHITECTURE
2148 M: Arnd Bergmann <arnd@arndb.de>
2149 L: linuxppc-dev@lists.ozlabs.org
2150 L: cbe-oss-dev@lists.ozlabs.org
2151 W: http://www.ibm.com/developerworks/power/cell/
2153 F: arch/powerpc/include/asm/cell*.h
2154 F: arch/powerpc/include/asm/spu*.h
2155 F: arch/powerpc/include/uapi/asm/spu*.h
2156 F: arch/powerpc/oprofile/*cell*
2157 F: arch/powerpc/platforms/cell/
2159 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2160 M: Sage Weil <sage@inktank.com>
2161 L: ceph-devel@vger.kernel.org
2163 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2165 F: Documentation/filesystems/ceph.txt
2168 F: include/linux/ceph/
2169 F: include/linux/crush/
2171 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2172 L: linux-usb@vger.kernel.org
2174 F: Documentation/usb/WUSB-Design-overview.txt
2175 F: Documentation/usb/wusb-cbaf
2176 F: drivers/usb/host/hwa-hc.c
2177 F: drivers/usb/host/whci/
2178 F: drivers/usb/wusbcore/
2179 F: include/linux/usb/wusb*
2181 CFAG12864B LCD DRIVER
2182 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2183 W: http://miguelojeda.es/auxdisplay.htm
2184 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2186 F: drivers/auxdisplay/cfag12864b.c
2187 F: include/linux/cfag12864b.h
2189 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2190 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2191 W: http://miguelojeda.es/auxdisplay.htm
2192 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2194 F: drivers/auxdisplay/cfag12864bfb.c
2195 F: include/linux/cfag12864b.h
2197 CFG80211 and NL80211
2198 M: Johannes Berg <johannes@sipsolutions.net>
2199 L: linux-wireless@vger.kernel.org
2200 W: http://wireless.kernel.org/
2201 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2202 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2204 F: include/uapi/linux/nl80211.h
2205 F: include/net/cfg80211.h
2207 X: net/wireless/wext*
2209 CHAR and MISC DRIVERS
2210 M: Arnd Bergmann <arnd@arndb.de>
2211 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2212 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2216 F: include/linux/miscdevice.h
2219 M: Andy Whitcroft <apw@canonical.com>
2220 M: Joe Perches <joe@perches.com>
2222 F: scripts/checkpatch.pl
2224 CHINESE DOCUMENTATION
2225 M: Harry Wei <harryxiyou@gmail.com>
2226 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2227 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2229 F: Documentation/zh_CN/
2231 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2232 M: Peter Chen <Peter.Chen@freescale.com>
2233 T: git git://github.com/hzpeterchen/linux-usb.git
2234 L: linux-usb@vger.kernel.org
2236 F: drivers/usb/chipidea/
2238 CHROME HARDWARE PLATFORM SUPPORT
2239 M: Olof Johansson <olof@lixom.net>
2241 F: drivers/platform/chrome/
2243 CISCO VIC ETHERNET NIC DRIVER
2244 M: Christian Benvenuti <benve@cisco.com>
2245 M: Sujith Sankar <ssujith@cisco.com>
2246 M: Govindarajulu Varadarajan <_govind@gmx.com>
2247 M: Neel Patel <neepatel@cisco.com>
2249 F: drivers/net/ethernet/cisco/enic/
2251 CISCO VIC LOW LATENCY NIC DRIVER
2252 M: Upinder Malhi <umalhi@cisco.com>
2254 F: drivers/infiniband/hw/usnic
2256 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2257 M: Hartley Sweeten <hsweeten@visionengravers.com>
2258 L: netdev@vger.kernel.org
2260 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
2262 CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
2263 M: Lennert Buytenhek <kernel@wantstofly.org>
2264 L: linux-usb@vger.kernel.org
2266 F: drivers/usb/host/ohci-ep93xx.c
2268 CIRRUS LOGIC AUDIO CODEC DRIVERS
2269 M: Brian Austin <brian.austin@cirrus.com>
2270 M: Paul Handrigan <Paul.Handrigan@cirrus.com>
2271 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2273 F: sound/soc/codecs/cs*
2276 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2277 L: linux-kernel@vger.kernel.org
2280 F: include/linux/cleancache.h
2283 M: Russell King <linux@arm.linux.org.uk>
2285 F: include/linux/clk.h
2287 CLOCKSOURCE, CLOCKEVENT DRIVERS
2288 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2289 M: Thomas Gleixner <tglx@linutronix.de>
2290 L: linux-kernel@vger.kernel.org
2291 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2293 F: drivers/clocksource
2295 CISCO FCOE HBA DRIVER
2296 M: Hiral Patel <hiralpat@cisco.com>
2297 M: Suma Ramars <sramars@cisco.com>
2298 M: Brian Uchino <buchino@cisco.com>
2299 L: linux-scsi@vger.kernel.org
2301 F: drivers/scsi/fnic/
2304 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2305 M: Daniel Oliveira Nascimento <don@syst.com.br>
2306 L: platform-driver-x86@vger.kernel.org
2308 F: drivers/platform/x86/classmate-laptop.c
2310 COCCINELLE/Semantic Patches (SmPL)
2311 M: Julia Lawall <Julia.Lawall@lip6.fr>
2312 M: Gilles Muller <Gilles.Muller@lip6.fr>
2313 M: Nicolas Palix <nicolas.palix@imag.fr>
2314 M: Michal Marek <mmarek@suse.cz>
2315 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
2316 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2317 W: http://coccinelle.lip6.fr/
2319 F: Documentation/coccinelle.txt
2320 F: scripts/coccinelle/
2321 F: scripts/coccicheck
2324 M: Jan Harkes <jaharkes@cs.cmu.edu>
2326 L: codalist@coda.cs.cmu.edu
2327 W: http://www.coda.cs.cmu.edu/
2329 F: Documentation/filesystems/coda.txt
2331 F: include/linux/coda*.h
2332 F: include/uapi/linux/coda*.h
2334 COMMON CLK FRAMEWORK
2335 M: Mike Turquette <mturquette@linaro.org>
2336 L: linux-kernel@vger.kernel.org
2337 T: git git://git.linaro.org/people/mturquette/linux.git
2340 X: drivers/clk/clkdev.c
2341 F: include/linux/clk-pr*
2342 F: include/linux/clk/
2344 COMMON INTERNET FILE SYSTEM (CIFS)
2345 M: Steve French <sfrench@samba.org>
2346 L: linux-cifs@vger.kernel.org
2347 L: samba-technical@lists.samba.org (moderated for non-subscribers)
2348 W: http://linux-cifs.samba.org/
2349 Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
2350 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
2352 F: Documentation/filesystems/cifs.txt
2355 COMPACTPCI HOTPLUG CORE
2356 M: Scott Murray <scott@spiteful.org>
2357 L: linux-pci@vger.kernel.org
2359 F: drivers/pci/hotplug/cpci_hotplug*
2361 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2362 M: Scott Murray <scott@spiteful.org>
2363 L: linux-pci@vger.kernel.org
2365 F: drivers/pci/hotplug/cpcihp_zt5550.*
2367 COMPACTPCI HOTPLUG GENERIC DRIVER
2368 M: Scott Murray <scott@spiteful.org>
2369 L: linux-pci@vger.kernel.org
2371 F: drivers/pci/hotplug/cpcihp_generic.c
2373 COMPAL LAPTOP SUPPORT
2374 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2375 L: platform-driver-x86@vger.kernel.org
2377 F: drivers/platform/x86/compal-laptop.c
2379 CONEXANT ACCESSRUNNER USB DRIVER
2380 M: Simon Arlott <cxacru@fire.lp0.eu>
2381 L: accessrunner-general@lists.sourceforge.net
2382 W: http://accessrunner.sourceforge.net/
2384 F: drivers/usb/atm/cxacru.c
2387 M: Joel Becker <jlbec@evilplan.org>
2388 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2391 F: include/linux/configfs.h
2394 M: Evgeniy Polyakov <zbr@ioremap.net>
2395 L: netdev@vger.kernel.org
2397 F: drivers/connector/
2399 CONTROL GROUP (CGROUP)
2400 M: Tejun Heo <tj@kernel.org>
2401 M: Li Zefan <lizefan@huawei.com>
2402 L: cgroups@vger.kernel.org
2403 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2405 F: Documentation/cgroups/
2406 F: include/linux/cgroup*
2409 CONTROL GROUP - CPUSET
2410 M: Li Zefan <lizefan@huawei.com>
2411 L: cgroups@vger.kernel.org
2412 W: http://www.bullopensource.org/cpuset/
2413 W: http://oss.sgi.com/projects/cpusets/
2414 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2416 F: Documentation/cgroups/cpusets.txt
2417 F: include/linux/cpuset.h
2420 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
2421 M: Johannes Weiner <hannes@cmpxchg.org>
2422 M: Michal Hocko <mhocko@suse.cz>
2423 L: cgroups@vger.kernel.org
2424 L: linux-mm@kvack.org
2429 CORETEMP HARDWARE MONITORING DRIVER
2430 M: Fenghua Yu <fenghua.yu@intel.com>
2431 L: lm-sensors@lm-sensors.org
2433 F: Documentation/hwmon/coretemp
2434 F: drivers/hwmon/coretemp.c
2436 COSA/SRP SYNC SERIAL DRIVER
2437 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2438 W: http://www.fi.muni.cz/~kas/cosa/
2440 F: drivers/net/wan/cosa*
2442 CPMAC ETHERNET DRIVER
2443 M: Florian Fainelli <florian@openwrt.org>
2444 L: netdev@vger.kernel.org
2446 F: drivers/net/ethernet/ti/cpmac.c
2448 CPU FREQUENCY DRIVERS
2449 M: Rafael J. Wysocki <rjw@rjwysocki.net>
2450 M: Viresh Kumar <viresh.kumar@linaro.org>
2451 L: linux-pm@vger.kernel.org
2453 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2454 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2456 F: include/linux/cpufreq.h
2458 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2459 M: Viresh Kumar <viresh.kumar@linaro.org>
2460 M: Sudeep Holla <sudeep.holla@arm.com>
2461 L: linux-pm@vger.kernel.org
2462 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2464 F: drivers/cpufreq/arm_big_little.h
2465 F: drivers/cpufreq/arm_big_little.c
2466 F: drivers/cpufreq/arm_big_little_dt.c
2468 CPUIDLE DRIVER - ARM BIG LITTLE
2469 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2470 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2471 L: linux-pm@vger.kernel.org
2472 L: linux-arm-kernel@lists.infradead.org
2473 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2475 F: drivers/cpuidle/cpuidle-big_little.c
2478 M: Rafael J. Wysocki <rjw@rjwysocki.net>
2479 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2480 L: linux-pm@vger.kernel.org
2482 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2483 F: drivers/cpuidle/*
2484 F: include/linux/cpuidle.h
2487 M: "H. Peter Anvin" <hpa@zytor.com>
2489 F: arch/x86/kernel/cpuid.c
2490 F: arch/x86/kernel/msr.c
2492 CPU POWER MONITORING SUBSYSTEM
2493 M: Dominik Brodowski <linux@dominikbrodowski.net>
2494 M: Thomas Renninger <trenn@suse.de>
2496 F: tools/power/cpupower/
2499 W: http://sourceforge.net/projects/cramfs/
2500 S: Orphan / Obsolete
2501 F: Documentation/filesystems/cramfs.txt
2505 M: Mikael Starvik <starvik@axis.com>
2506 M: Jesper Nilsson <jesper.nilsson@axis.com>
2507 L: linux-cris-kernel@axis.com
2508 W: http://developer.axis.com
2511 F: drivers/tty/serial/crisv10.*
2514 M: Herbert Xu <herbert@gondor.apana.org.au>
2515 M: "David S. Miller" <davem@davemloft.net>
2516 L: linux-crypto@vger.kernel.org
2517 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2519 F: Documentation/crypto/
2525 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2526 M: Neil Horman <nhorman@tuxdriver.com>
2527 L: linux-crypto@vger.kernel.org
2529 F: crypto/ansi_cprng.c
2532 CS5535 Audio ALSA driver
2533 M: Jaya Kumar <jayakumar.alsa@gmail.com>
2535 F: sound/pci/cs5535audio/
2538 M: Solomon Peachy <pizza@shaftnet.org>
2540 F: drivers/net/wireless/cw1200/
2542 CX18 VIDEO4LINUX DRIVER
2543 M: Andy Walls <awalls@md.metrocast.net>
2544 L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
2545 L: linux-media@vger.kernel.org
2546 T: git git://linuxtv.org/media_tree.git
2547 W: http://linuxtv.org
2548 W: http://www.ivtvdriver.org/index.php/Cx18
2550 F: Documentation/video4linux/cx18.txt
2551 F: drivers/media/pci/cx18/
2552 F: include/uapi/linux/ivtv*
2554 CX2341X MPEG ENCODER HELPER MODULE
2555 M: Hans Verkuil <hverkuil@xs4all.nl>
2556 L: linux-media@vger.kernel.org
2557 T: git git://linuxtv.org/media_tree.git
2558 W: http://linuxtv.org
2560 F: drivers/media/common/cx2341x*
2561 F: include/media/cx2341x*
2563 CX88 VIDEO4LINUX DRIVER
2564 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
2565 L: linux-media@vger.kernel.org
2566 W: http://linuxtv.org
2567 T: git git://linuxtv.org/media_tree.git
2569 F: Documentation/video4linux/cx88/
2570 F: drivers/media/pci/cx88/
2572 CXD2820R MEDIA DRIVER
2573 M: Antti Palosaari <crope@iki.fi>
2574 L: linux-media@vger.kernel.org
2575 W: http://linuxtv.org/
2576 W: http://palosaari.fi/linux/
2577 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2578 T: git git://linuxtv.org/anttip/media_tree.git
2580 F: drivers/media/dvb-frontends/cxd2820r*
2582 CXGB3 ETHERNET DRIVER (CXGB3)
2583 M: Santosh Raspatur <santosh@chelsio.com>
2584 L: netdev@vger.kernel.org
2585 W: http://www.chelsio.com
2587 F: drivers/net/ethernet/chelsio/cxgb3/
2589 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2590 M: Steve Wise <swise@chelsio.com>
2591 L: linux-rdma@vger.kernel.org
2592 W: http://www.openfabrics.org
2594 F: drivers/infiniband/hw/cxgb3/
2596 CXGB4 ETHERNET DRIVER (CXGB4)
2597 M: Hariprasad S <hariprasad@chelsio.com>
2598 L: netdev@vger.kernel.org
2599 W: http://www.chelsio.com
2601 F: drivers/net/ethernet/chelsio/cxgb4/
2603 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2604 M: Steve Wise <swise@chelsio.com>
2605 L: linux-rdma@vger.kernel.org
2606 W: http://www.openfabrics.org
2608 F: drivers/infiniband/hw/cxgb4/
2610 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2611 M: Casey Leedom <leedom@chelsio.com>
2612 L: netdev@vger.kernel.org
2613 W: http://www.chelsio.com
2615 F: drivers/net/ethernet/chelsio/cxgb4vf/
2617 STMMAC ETHERNET DRIVER
2618 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2619 L: netdev@vger.kernel.org
2620 W: http://www.stlinux.com
2622 F: drivers/net/ethernet/stmicro/stmmac/
2625 M: Russell King <linux@arm.linux.org.uk>
2626 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 W: http://www.arm.linux.org.uk/
2629 F: drivers/video/cyber2000fb.*
2631 CYCLADES ASYNC MUX DRIVER
2632 W: http://www.cyclades.com/
2634 F: drivers/tty/cyclades.c
2635 F: include/linux/cyclades.h
2636 F: include/uapi/linux/cyclades.h
2638 CYCLADES PC300 DRIVER
2639 W: http://www.cyclades.com/
2641 F: drivers/net/wan/pc300*
2643 CYPRESS_FIRMWARE MEDIA DRIVER
2644 M: Antti Palosaari <crope@iki.fi>
2645 L: linux-media@vger.kernel.org
2646 W: http://linuxtv.org/
2647 W: http://palosaari.fi/linux/
2648 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2649 T: git git://linuxtv.org/anttip/media_tree.git
2651 F: drivers/media/common/cypress_firmware*
2653 CYTTSP TOUCHSCREEN DRIVER
2654 M: Ferruh Yigit <fery@cypress.com>
2655 L: linux-input@vger.kernel.org
2657 F: drivers/input/touchscreen/cyttsp*
2658 F: include/linux/input/cyttsp.h
2660 DAMA SLAVE for AX.25
2661 M: Joerg Reuter <jreuter@yaina.de>
2662 W: http://yaina.de/jreuter/
2663 W: http://www.qsl.net/dl1bke/
2664 L: linux-hams@vger.kernel.org
2666 F: net/ax25/af_ax25.c
2667 F: net/ax25/ax25_dev.c
2668 F: net/ax25/ax25_ds_*
2669 F: net/ax25/ax25_in.c
2670 F: net/ax25/ax25_out.c
2671 F: net/ax25/ax25_timer.c
2672 F: net/ax25/sysctl_net_ax25.c
2674 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2675 L: netdev@vger.kernel.org
2677 F: Documentation/networking/dmfe.txt
2678 F: drivers/net/ethernet/dec/tulip/dmfe.c
2680 DC390/AM53C974 SCSI driver
2681 M: Kurt Garloff <garloff@suse.de>
2682 W: http://www.garloff.de/kurt/linux/dc390/
2683 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2685 F: drivers/scsi/tmscsim.*
2688 M: Oliver Neukum <oliver@neukum.org>
2689 M: Ali Akcaagac <aliakc@web.de>
2690 M: Jamie Lenehan <lenehan@twibble.org>
2691 L: dc395x@twibble.org
2692 W: http://twibble.org/dist/dc395x/
2693 W: http://lists.twibble.org/mailman/listinfo/dc395x/
2695 F: Documentation/scsi/dc395x.txt
2696 F: drivers/scsi/dc395x.*
2699 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
2700 L: dccp@vger.kernel.org
2701 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2703 F: include/linux/dccp.h
2704 F: include/uapi/linux/dccp.h
2705 F: include/linux/tfrc.h
2708 DECnet NETWORK LAYER
2709 W: http://linux-decnet.sourceforge.net
2710 L: linux-decnet-user@lists.sourceforge.net
2712 F: Documentation/networking/decnet.txt
2715 DECSTATION PLATFORM SUPPORT
2716 M: "Maciej W. Rozycki" <macro@linux-mips.org>
2717 L: linux-mips@linux-mips.org
2718 W: http://www.linux-mips.org/wiki/DECstation
2721 F: arch/mips/include/asm/dec/
2722 F: arch/mips/include/asm/mach-dec/
2724 DEFXX FDDI NETWORK DRIVER
2725 M: "Maciej W. Rozycki" <macro@linux-mips.org>
2727 F: drivers/net/fddi/defxx.*
2730 M: Matthew Garrett <mjg59@srcf.ucam.org>
2731 L: platform-driver-x86@vger.kernel.org
2733 F: drivers/platform/x86/dell-laptop.c
2735 DELL LAPTOP SMM DRIVER
2736 M: Guenter Roeck <linux@roeck-us.net>
2737 F: drivers/char/i8k.c
2738 F: include/uapi/linux/i8k.h
2740 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
2741 M: Doug Warzecha <Douglas_Warzecha@dell.com>
2743 F: Documentation/dcdbas.txt
2744 F: drivers/firmware/dcdbas.*
2746 DELL WMI EXTRAS DRIVER
2747 M: Matthew Garrett <mjg59@srcf.ucam.org>
2749 F: drivers/platform/x86/dell-wmi.c
2751 DESIGNWARE USB2 DRD IP DRIVER
2752 M: Paul Zimmerman <paulz@synopsys.com>
2753 L: linux-usb@vger.kernel.org
2755 F: drivers/usb/dwc2/
2757 DESIGNWARE USB3 DRD IP DRIVER
2758 M: Felipe Balbi <balbi@ti.com>
2759 L: linux-usb@vger.kernel.org
2760 L: linux-omap@vger.kernel.org
2761 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2763 F: drivers/usb/dwc3/
2765 DEVICE FREQUENCY (DEVFREQ)
2766 M: MyungJoo Ham <myungjoo.ham@samsung.com>
2767 M: Kyungmin Park <kyungmin.park@samsung.com>
2768 L: linux-pm@vger.kernel.org
2772 DEVICE NUMBER REGISTRY
2773 M: Torben Mathiasen <device@lanana.org>
2774 W: http://lanana.org/docs/device-list/index.html
2778 M: Alasdair Kergon <agk@redhat.com>
2779 M: Mike Snitzer <snitzer@redhat.com>
2780 M: dm-devel@redhat.com
2781 L: dm-devel@redhat.com
2782 W: http://sources.redhat.com/dm
2783 Q: http://patchwork.kernel.org/project/dm-devel/list/
2784 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
2785 T: quilt http://people.redhat.com/agk/patches/linux/editing/
2787 F: Documentation/device-mapper/
2789 F: drivers/md/persistent-data/
2790 F: include/linux/device-mapper.h
2791 F: include/linux/dm-*.h
2792 F: include/uapi/linux/dm-*.h
2794 DIALOG SEMICONDUCTOR DRIVERS
2795 M: Support Opensource <support.opensource@diasemi.com>
2796 W: http://www.dialog-semiconductor.com/products
2798 F: Documentation/hwmon/da90??
2799 F: drivers/gpio/gpio-da90??.c
2800 F: drivers/hwmon/da90??-hwmon.c
2801 F: drivers/input/misc/da90??_onkey.c
2802 F: drivers/input/touchscreen/da9052_tsi.c
2803 F: drivers/leds/leds-da90??.c
2804 F: drivers/mfd/da903x.c
2805 F: drivers/mfd/da90??-*.c
2806 F: drivers/power/da9052-battery.c
2807 F: drivers/regulator/da903x.c
2808 F: drivers/regulator/da9???-regulator.[ch]
2809 F: drivers/rtc/rtc-da90??.c
2810 F: drivers/video/backlight/da90??_bl.c
2811 F: drivers/watchdog/da90??_wdt.c
2812 F: include/linux/mfd/da903x.h
2813 F: include/linux/mfd/da9052/
2814 F: include/linux/mfd/da9055/
2815 F: include/linux/mfd/da9063/
2816 F: include/sound/da[79]*.h
2817 F: sound/soc/codecs/da[79]*.[ch]
2819 DIGI NEO AND CLASSIC PCI PRODUCTS
2820 M: Lidza Louina <lidza.louina@gmail.com>
2821 M: Mark Hounschell <markh@compro.net>
2822 L: driverdev-devel@linuxdriverproject.org
2824 F: drivers/staging/dgnc/
2826 DIGI EPCA PCI PRODUCTS
2827 M: Lidza Louina <lidza.louina@gmail.com>
2828 M: Mark Hounschell <markh@compro.net>
2829 L: driverdev-devel@linuxdriverproject.org
2831 F: drivers/staging/dgap/
2833 DIOLAN U2C-12 I2C DRIVER
2834 M: Guenter Roeck <linux@roeck-us.net>
2835 L: linux-i2c@vger.kernel.org
2837 F: drivers/i2c/busses/i2c-diolan-u2c.c
2839 DIRECTORY NOTIFICATION (DNOTIFY)
2840 M: Eric Paris <eparis@parisplace.org>
2842 F: Documentation/filesystems/dnotify.txt
2843 F: fs/notify/dnotify/
2844 F: include/linux/dnotify.h
2846 DISK GEOMETRY AND PARTITION HANDLING
2847 M: Andries Brouwer <aeb@cwi.nl>
2848 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2849 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2850 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2854 M: Jan Kara <jack@suse.cz>
2856 F: Documentation/filesystems/quota.txt
2858 F: include/linux/quota*.h
2859 F: include/uapi/linux/quota*.h
2861 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2862 M: Bernie Thompson <bernie@plugable.com>
2863 L: linux-fbdev@vger.kernel.org
2865 W: http://plugable.com/category/projects/udlfb/
2866 F: drivers/video/udlfb.c
2867 F: include/video/udlfb.h
2868 F: Documentation/fb/udlfb.txt
2870 DISTRIBUTED LOCK MANAGER (DLM)
2871 M: Christine Caulfield <ccaulfie@redhat.com>
2872 M: David Teigland <teigland@redhat.com>
2873 L: cluster-devel@redhat.com
2874 W: http://sources.redhat.com/cluster/
2875 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
2879 DMA BUFFER SHARING FRAMEWORK
2880 M: Sumit Semwal <sumit.semwal@linaro.org>
2882 L: linux-media@vger.kernel.org
2883 L: dri-devel@lists.freedesktop.org
2884 L: linaro-mm-sig@lists.linaro.org
2885 F: drivers/base/dma-buf*
2886 F: include/linux/dma-buf*
2887 F: Documentation/dma-buf-sharing.txt
2888 T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2890 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
2891 M: Vinod Koul <vinod.koul@intel.com>
2892 M: Dan Williams <dan.j.williams@intel.com>
2893 L: dmaengine@vger.kernel.org
2894 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
2897 F: include/linux/dma*
2898 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2899 T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2901 DME1737 HARDWARE MONITOR DRIVER
2902 M: Juerg Haefliger <juergh@gmail.com>
2903 L: lm-sensors@lm-sensors.org
2905 F: Documentation/hwmon/dme1737
2906 F: drivers/hwmon/dme1737.c
2908 DOCKING STATION DRIVER
2909 M: Shaohua Li <shaohua.li@intel.com>
2910 L: linux-acpi@vger.kernel.org
2912 F: drivers/acpi/dock.c
2915 M: Randy Dunlap <rdunlap@infradead.org>
2916 L: linux-doc@vger.kernel.org
2917 T: quilt http://www.infradead.org/~rdunlap/Doc/patches/
2922 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
2923 L: blinux-list@redhat.com
2925 F: drivers/char/dtlk.c
2926 F: include/linux/dtlk.h
2928 DPT_I2O SCSI RAID DRIVER
2929 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
2930 L: linux-scsi@vger.kernel.org
2931 W: http://www.adaptec.com/
2933 F: drivers/scsi/dpt*
2934 F: drivers/scsi/dpt/
2939 M: drbd-dev@lists.linbit.com
2940 L: drbd-user@lists.linbit.com
2941 W: http://www.drbd.org
2942 T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2943 T: git git://git.drbd.org/drbd-8.3.git
2945 F: drivers/block/drbd/
2947 F: Documentation/blockdev/drbd/
2949 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
2950 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2951 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
2953 F: Documentation/kobject.txt
2957 F: include/linux/kobj*
2958 F: include/linux/debugfs.h
2962 M: David Airlie <airlied@linux.ie>
2963 L: dri-devel@lists.freedesktop.org
2964 T: git git://people.freedesktop.org/~airlied/linux
2969 F: include/uapi/drm/
2972 M: Alex Deucher <alexander.deucher@amd.com>
2973 M: Christian König <christian.koenig@amd.com>
2974 L: dri-devel@lists.freedesktop.org
2975 T: git git://people.freedesktop.org/~agd5f/linux
2977 F: drivers/gpu/drm/radeon/
2978 F: include/drm/radeon*
2979 F: include/uapi/drm/radeon*
2982 M: Thierry Reding <thierry.reding@gmail.com>
2983 L: dri-devel@lists.freedesktop.org
2984 T: git git://anongit.freedesktop.org/tegra/linux.git
2986 F: drivers/gpu/drm/drm_panel.c
2987 F: drivers/gpu/drm/panel/
2988 F: include/drm/drm_panel.h
2989 F: Documentation/devicetree/bindings/panel/
2991 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
2992 M: Daniel Vetter <daniel.vetter@ffwll.ch>
2993 M: Jani Nikula <jani.nikula@linux.intel.com>
2994 L: intel-gfx@lists.freedesktop.org
2995 L: dri-devel@lists.freedesktop.org
2996 Q: http://patchwork.freedesktop.org/project/intel-gfx/
2997 T: git git://anongit.freedesktop.org/drm-intel
2999 F: drivers/gpu/drm/i915/
3000 F: include/drm/i915*
3001 F: include/uapi/drm/i915*
3003 DRM DRIVERS FOR EXYNOS
3004 M: Inki Dae <inki.dae@samsung.com>
3005 M: Joonyoung Shim <jy0922.shim@samsung.com>
3006 M: Seung-Woo Kim <sw0312.kim@samsung.com>
3007 M: Kyungmin Park <kyungmin.park@samsung.com>
3008 L: dri-devel@lists.freedesktop.org
3009 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3011 F: drivers/gpu/drm/exynos/
3012 F: include/drm/exynos*
3013 F: include/uapi/drm/exynos*
3015 DRM DRIVERS FOR NVIDIA TEGRA
3016 M: Thierry Reding <thierry.reding@gmail.com>
3017 M: Terje Bergström <tbergstrom@nvidia.com>
3018 L: dri-devel@lists.freedesktop.org
3019 L: linux-tegra@vger.kernel.org
3020 T: git git://anongit.freedesktop.org/tegra/linux.git
3022 F: drivers/gpu/drm/tegra/
3023 F: drivers/gpu/host1x/
3024 F: include/linux/host1x.h
3025 F: include/uapi/drm/tegra_drm.h
3026 F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
3028 DSBR100 USB FM RADIO DRIVER
3029 M: Alexey Klimov <klimov.linux@gmail.com>
3030 L: linux-media@vger.kernel.org
3031 T: git git://linuxtv.org/media_tree.git
3033 F: drivers/media/radio/dsbr100.c
3036 M: Francois Romieu <romieu@fr.zoreil.com>
3037 L: netdev@vger.kernel.org
3039 F: drivers/net/wan/dscc4.c
3041 DVB_USB_AF9015 MEDIA DRIVER
3042 M: Antti Palosaari <crope@iki.fi>
3043 L: linux-media@vger.kernel.org
3044 W: http://linuxtv.org/
3045 W: http://palosaari.fi/linux/
3046 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3047 T: git git://linuxtv.org/anttip/media_tree.git
3049 F: drivers/media/usb/dvb-usb-v2/af9015*
3051 DVB_USB_AF9035 MEDIA DRIVER
3052 M: Antti Palosaari <crope@iki.fi>
3053 L: linux-media@vger.kernel.org
3054 W: http://linuxtv.org/
3055 W: http://palosaari.fi/linux/
3056 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3057 T: git git://linuxtv.org/anttip/media_tree.git
3059 F: drivers/media/usb/dvb-usb-v2/af9035*
3061 DVB_USB_ANYSEE MEDIA DRIVER
3062 M: Antti Palosaari <crope@iki.fi>
3063 L: linux-media@vger.kernel.org
3064 W: http://linuxtv.org/
3065 W: http://palosaari.fi/linux/
3066 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3067 T: git git://linuxtv.org/anttip/media_tree.git
3069 F: drivers/media/usb/dvb-usb-v2/anysee*
3071 DVB_USB_AU6610 MEDIA DRIVER
3072 M: Antti Palosaari <crope@iki.fi>
3073 L: linux-media@vger.kernel.org
3074 W: http://linuxtv.org/
3075 W: http://palosaari.fi/linux/
3076 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3077 T: git git://linuxtv.org/anttip/media_tree.git
3079 F: drivers/media/usb/dvb-usb-v2/au6610*
3081 DVB_USB_CE6230 MEDIA DRIVER
3082 M: Antti Palosaari <crope@iki.fi>
3083 L: linux-media@vger.kernel.org
3084 W: http://linuxtv.org/
3085 W: http://palosaari.fi/linux/
3086 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3087 T: git git://linuxtv.org/anttip/media_tree.git
3089 F: drivers/media/usb/dvb-usb-v2/ce6230*
3091 DVB_USB_CXUSB MEDIA DRIVER
3092 M: Michael Krufky <mkrufky@linuxtv.org>
3093 L: linux-media@vger.kernel.org
3094 W: http://linuxtv.org/
3095 W: http://github.com/mkrufky
3096 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3097 T: git git://linuxtv.org/media_tree.git
3099 F: drivers/media/usb/dvb-usb/cxusb*
3101 DVB_USB_EC168 MEDIA DRIVER
3102 M: Antti Palosaari <crope@iki.fi>
3103 L: linux-media@vger.kernel.org
3104 W: http://linuxtv.org/
3105 W: http://palosaari.fi/linux/
3106 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3107 T: git git://linuxtv.org/anttip/media_tree.git
3109 F: drivers/media/usb/dvb-usb-v2/ec168*
3111 DVB_USB_GL861 MEDIA DRIVER
3112 M: Antti Palosaari <crope@iki.fi>
3113 L: linux-media@vger.kernel.org
3114 W: http://linuxtv.org/
3115 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3116 T: git git://linuxtv.org/anttip/media_tree.git
3118 F: drivers/media/usb/dvb-usb-v2/gl861*
3120 DVB_USB_MXL111SF MEDIA DRIVER
3121 M: Michael Krufky <mkrufky@linuxtv.org>
3122 L: linux-media@vger.kernel.org
3123 W: http://linuxtv.org/
3124 W: http://github.com/mkrufky
3125 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3126 T: git git://linuxtv.org/mkrufky/mxl111sf.git
3128 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3130 DVB_USB_RTL28XXU MEDIA DRIVER
3131 M: Antti Palosaari <crope@iki.fi>
3132 L: linux-media@vger.kernel.org
3133 W: http://linuxtv.org/
3134 W: http://palosaari.fi/linux/
3135 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3136 T: git git://linuxtv.org/anttip/media_tree.git
3138 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3140 DVB_USB_V2 MEDIA DRIVER
3141 M: Antti Palosaari <crope@iki.fi>
3142 L: linux-media@vger.kernel.org
3143 W: http://linuxtv.org/
3144 W: http://palosaari.fi/linux/
3145 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3146 T: git git://linuxtv.org/anttip/media_tree.git
3148 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3149 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3152 M: Jason Baron <jbaron@akamai.com>
3154 F: lib/dynamic_debug.c
3155 F: include/linux/dynamic_debug.h
3157 DZ DECSTATION DZ11 SERIAL DRIVER
3158 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3160 F: drivers/tty/serial/dz.*
3163 M: Antti Palosaari <crope@iki.fi>
3164 L: linux-media@vger.kernel.org
3165 W: http://linuxtv.org/
3166 W: http://palosaari.fi/linux/
3167 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3168 T: git git://linuxtv.org/anttip/media_tree.git
3170 F: drivers/media/tuners/e4000*
3172 EATA-DMA SCSI DRIVER
3173 M: Michael Neuffer <mike@i-Connect.Net>
3174 L: linux-eata@i-connect.net
3175 L: linux-scsi@vger.kernel.org
3177 F: drivers/scsi/eata*
3179 EATA ISA/EISA/PCI SCSI DRIVER
3180 M: Dario Ballabio <ballabio_dario@emc.com>
3181 L: linux-scsi@vger.kernel.org
3183 F: drivers/scsi/eata.c
3185 EATA-PIO SCSI DRIVER
3186 M: Michael Neuffer <mike@i-Connect.Net>
3187 L: linux-eata@i-connect.net
3188 L: linux-scsi@vger.kernel.org
3190 F: drivers/scsi/eata_pio.*
3193 L: netfilter-devel@vger.kernel.org
3194 W: http://ebtables.sourceforge.net/
3196 F: include/linux/netfilter_bridge/ebt_*.h
3197 F: include/uapi/linux/netfilter_bridge/ebt_*.h
3198 F: net/bridge/netfilter/ebt*.c
3201 M: Antti Palosaari <crope@iki.fi>
3202 L: linux-media@vger.kernel.org
3203 W: http://linuxtv.org/
3204 W: http://palosaari.fi/linux/
3205 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3206 T: git git://linuxtv.org/anttip/media_tree.git
3208 F: drivers/media/dvb-frontends/ec100*
3211 M: Tyler Hicks <tyhicks@canonical.com>
3212 L: ecryptfs@vger.kernel.org
3213 W: http://ecryptfs.org
3214 W: https://launchpad.net/ecryptfs
3216 F: Documentation/filesystems/ecryptfs.txt
3220 M: Doug Thompson <dougthompson@xmission.com>
3221 M: Borislav Petkov <bp@alien8.de>
3222 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3223 L: linux-edac@vger.kernel.org
3224 W: bluesmoke.sourceforge.net
3226 F: Documentation/edac.txt
3228 F: include/linux/edac.h
3231 M: Doug Thompson <dougthompson@xmission.com>
3232 M: Borislav Petkov <bp@alien8.de>
3233 L: linux-edac@vger.kernel.org
3234 W: bluesmoke.sourceforge.net
3236 F: drivers/edac/amd64_edac*
3239 M: Doug Thompson <dougthompson@xmission.com>
3240 M: Robert Richter <rric@kernel.org>
3241 L: linux-edac@vger.kernel.org
3242 W: bluesmoke.sourceforge.net
3244 F: drivers/edac/highbank*
3247 M: Ralf Baechle <ralf@linux-mips.org>
3248 M: David Daney <david.daney@cavium.com>
3249 L: linux-edac@vger.kernel.org
3250 L: linux-mips@linux-mips.org
3251 W: bluesmoke.sourceforge.net
3253 F: drivers/edac/octeon_edac*
3256 M: Mark Gross <mark.gross@intel.com>
3257 M: Doug Thompson <dougthompson@xmission.com>
3258 L: linux-edac@vger.kernel.org
3259 W: bluesmoke.sourceforge.net
3261 F: drivers/edac/e752x_edac.c
3264 M: Doug Thompson <dougthompson@xmission.com>
3265 L: linux-edac@vger.kernel.org
3266 W: bluesmoke.sourceforge.net
3268 F: drivers/edac/e7xxx_edac.c
3271 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3272 L: linux-edac@vger.kernel.org
3273 W: bluesmoke.sourceforge.net
3275 F: drivers/edac/ghes_edac.c
3278 M: Tim Small <tim@buttersideup.com>
3279 L: linux-edac@vger.kernel.org
3280 W: bluesmoke.sourceforge.net
3282 F: drivers/edac/i82443bxgx_edac.c
3285 M: Jason Uhlenkott <juhlenko@akamai.com>
3286 L: linux-edac@vger.kernel.org
3287 W: bluesmoke.sourceforge.net
3289 F: drivers/edac/i3000_edac.c
3292 M: Doug Thompson <dougthompson@xmission.com>
3293 L: linux-edac@vger.kernel.org
3294 W: bluesmoke.sourceforge.net
3296 F: drivers/edac/i5000_edac.c
3299 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3300 L: linux-edac@vger.kernel.org
3301 W: bluesmoke.sourceforge.net
3303 F: drivers/edac/i5400_edac.c
3306 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3307 L: linux-edac@vger.kernel.org
3308 W: bluesmoke.sourceforge.net
3310 F: drivers/edac/i7300_edac.c
3313 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3314 L: linux-edac@vger.kernel.org
3315 W: bluesmoke.sourceforge.net
3317 F: drivers/edac/i7core_edac.c
3320 M: Ranganathan Desikan <ravi@jetztechnologies.com>
3321 M: "Arvind R." <arvino55@gmail.com>
3322 L: linux-edac@vger.kernel.org
3323 W: bluesmoke.sourceforge.net
3325 F: drivers/edac/i82975x_edac.c
3328 M: Johannes Thumshirn <johannes.thumshirn@men.de>
3329 L: linux-edac@vger.kernel.org
3330 W: bluesmoke.sourceforge.net
3332 F: drivers/edac/mpc85xx_edac.[ch]
3335 M: Egor Martovetsky <egor@pasemi.com>
3336 L: linux-edac@vger.kernel.org
3337 W: bluesmoke.sourceforge.net
3339 F: drivers/edac/pasemi_edac.c
3342 M: Tim Small <tim@buttersideup.com>
3343 L: linux-edac@vger.kernel.org
3344 W: bluesmoke.sourceforge.net
3346 F: drivers/edac/r82600_edac.c
3349 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3350 L: linux-edac@vger.kernel.org
3351 W: bluesmoke.sourceforge.net
3353 F: drivers/edac/sb_edac.c
3355 EDIROL UA-101/UA-1000 DRIVER
3356 M: Clemens Ladisch <clemens@ladisch.de>
3357 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3358 T: git git://git.alsa-project.org/alsa-kernel.git
3360 F: sound/usb/misc/ua101.c
3362 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3363 M: Matt Fleming <matt.fleming@intel.com>
3364 L: linux-efi@vger.kernel.org
3365 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3367 F: Documentation/x86/efi-stub.txt
3368 F: arch/ia64/kernel/efi.c
3369 F: arch/x86/boot/compressed/eboot.[ch]
3370 F: arch/x86/include/asm/efi.h
3371 F: arch/x86/platform/efi/*
3372 F: drivers/firmware/efi/*
3373 F: include/linux/efi*.h
3375 EFI VARIABLE FILESYSTEM
3376 M: Matthew Garrett <matthew.garrett@nebula.com>
3377 M: Jeremy Kerr <jk@ozlabs.org>
3378 M: Matt Fleming <matt.fleming@intel.com>
3379 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3380 L: linux-efi@vger.kernel.org
3384 EFIFB FRAMEBUFFER DRIVER
3385 L: linux-fbdev@vger.kernel.org
3386 M: Peter Jones <pjones@redhat.com>
3388 F: drivers/video/efifb.c
3391 W: http://aeschi.ch.eu.org/efs/
3395 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3396 M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3397 M: Christoph Raisch <raisch@de.ibm.com>
3398 L: linux-rdma@vger.kernel.org
3400 F: drivers/infiniband/hw/ehca/
3402 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3403 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3404 L: netdev@vger.kernel.org
3406 F: drivers/net/ethernet/ibm/ehea/
3408 EM28XX VIDEO4LINUX DRIVER
3409 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3410 L: linux-media@vger.kernel.org
3411 W: http://linuxtv.org
3412 T: git git://linuxtv.org/media_tree.git
3414 F: drivers/media/usb/em28xx/
3417 M: Paul Gortmaker <paul.gortmaker@windriver.com>
3418 M: Matt Mackall <mpm@selenic.com>
3419 M: David Woodhouse <dwmw2@infradead.org>
3420 L: linux-embedded@vger.kernel.org
3423 EMULEX LPFC FC SCSI DRIVER
3424 M: James Smart <james.smart@emulex.com>
3425 L: linux-scsi@vger.kernel.org
3426 W: http://sourceforge.net/projects/lpfcxxxx
3428 F: drivers/scsi/lpfc/
3430 ENE CB710 FLASH CARD READER DRIVER
3431 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
3433 F: drivers/misc/cb710/
3434 F: drivers/mmc/host/cb710-mmc.*
3435 F: include/linux/cb710.h
3437 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3438 M: Maxim Levitsky <maximlevitsky@gmail.com>
3440 F: drivers/media/rc/ene_ir.*
3442 ENHANCED ERROR HANDLING (EEH)
3443 M: Gavin Shan <shangw@linux.vnet.ibm.com>
3444 L: linuxppc-dev@lists.ozlabs.org
3446 F: Documentation/powerpc/eeh-pci-error-recovery.txt
3447 F: arch/powerpc/kernel/eeh*.c
3449 EPSON S1D13XXX FRAMEBUFFER DRIVER
3450 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
3452 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3453 F: drivers/video/s1d13xxxfb.c
3454 F: include/video/s1d13xxxfb.h
3457 M: Stephen Hemminger <stephen@networkplumber.org>
3458 L: bridge@lists.linux-foundation.org
3459 L: netdev@vger.kernel.org
3460 W: http://www.linuxfoundation.org/en/Net:Bridge
3462 F: include/linux/netfilter_bridge/
3465 ETHERNET PHY LIBRARY
3466 M: Florian Fainelli <f.fainelli@gmail.com>
3467 L: netdev@vger.kernel.org
3469 F: include/linux/phy.h
3470 F: include/linux/phy_fixed.h
3472 F: Documentation/networking/phy.txt
3473 F: drivers/of/of_mdio.c
3474 F: drivers/of/of_net.c
3477 M: Jan Kara <jack@suse.cz>
3478 L: linux-ext4@vger.kernel.org
3480 F: Documentation/filesystems/ext2.txt
3482 F: include/linux/ext2*
3485 M: Jan Kara <jack@suse.cz>
3486 M: Andrew Morton <akpm@linux-foundation.org>
3487 M: Andreas Dilger <adilger.kernel@dilger.ca>
3488 L: linux-ext4@vger.kernel.org
3490 F: Documentation/filesystems/ext3.txt
3494 M: "Theodore Ts'o" <tytso@mit.edu>
3495 M: Andreas Dilger <adilger.kernel@dilger.ca>
3496 L: linux-ext4@vger.kernel.org
3497 W: http://ext4.wiki.kernel.org
3498 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
3500 F: Documentation/filesystems/ext4.txt
3503 Extended Verification Module (EVM)
3504 M: Mimi Zohar <zohar@linux.vnet.ibm.com>
3505 L: linux-ima-devel@lists.sourceforge.net
3506 L: linux-security-module@vger.kernel.org
3508 F: security/integrity/evm/
3510 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3511 M: MyungJoo Ham <myungjoo.ham@samsung.com>
3512 M: Chanwoo Choi <cw00.choi@samsung.com>
3513 L: linux-kernel@vger.kernel.org
3514 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3517 F: Documentation/extcon/
3520 M: Jingoo Han <jg1.han@samsung.com>
3521 L: dri-devel@lists.freedesktop.org
3523 F: drivers/gpu/drm/exynos/exynos_dp*
3525 EXYNOS MIPI DISPLAY DRIVERS
3526 M: Inki Dae <inki.dae@samsung.com>
3527 M: Donghwa Lee <dh09.lee@samsung.com>
3528 M: Kyungmin Park <kyungmin.park@samsung.com>
3529 L: linux-fbdev@vger.kernel.org
3531 F: drivers/video/exynos/exynos_mipi*
3532 F: include/video/exynos_mipi*
3534 F71805F HARDWARE MONITORING DRIVER
3535 M: Jean Delvare <jdelvare@suse.de>
3536 L: lm-sensors@lm-sensors.org
3538 F: Documentation/hwmon/f71805f
3539 F: drivers/hwmon/f71805f.c
3542 M: Michael Buesch <m@bues.ch>
3543 L: linux-media@vger.kernel.org
3545 F: drivers/media/tuners/fc0011.h
3546 F: drivers/media/tuners/fc0011.c
3549 M: Antti Palosaari <crope@iki.fi>
3550 L: linux-media@vger.kernel.org
3551 W: http://linuxtv.org/
3552 W: http://palosaari.fi/linux/
3553 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3554 T: git git://linuxtv.org/anttip/media_tree.git
3556 F: drivers/media/tuners/fc2580*
3559 M: Eric Paris <eparis@redhat.com>
3561 F: fs/notify/fanotify/
3562 F: include/linux/fanotify.h
3563 F: include/uapi/linux/fanotify.h
3565 FARSYNC SYNCHRONOUS DRIVER
3566 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
3567 W: http://www.farsite.co.uk/
3569 F: drivers/net/wan/farsync.*
3571 FAULT INJECTION SUPPORT
3572 M: Akinobu Mita <akinobu.mita@gmail.com>
3574 F: Documentation/fault-injection/
3575 F: lib/fault-inject.c
3577 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3578 M: Robert Love <robert.w.love@intel.com>
3579 L: fcoe-devel@open-fcoe.org
3580 W: www.Open-FCoE.org
3582 F: drivers/scsi/libfc/
3583 F: drivers/scsi/fcoe/
3585 F: include/scsi/libfc.h
3586 F: include/scsi/libfcoe.h
3587 F: include/uapi/scsi/fc/
3589 FILE LOCKING (flock() and fcntl()/lockf())
3590 M: Jeff Layton <jlayton@poochiereds.net>
3591 M: J. Bruce Fields <bfields@fieldses.org>
3592 L: linux-fsdevel@vger.kernel.org
3594 F: include/linux/fcntl.h
3595 F: include/linux/fs.h
3596 F: include/uapi/linux/fcntl.h
3597 F: include/uapi/linux/fs.h
3601 FILESYSTEMS (VFS and infrastructure)
3602 M: Alexander Viro <viro@zeniv.linux.org.uk>
3603 L: linux-fsdevel@vger.kernel.org
3607 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3608 M: Riku Voipio <riku.voipio@iki.fi>
3609 L: lm-sensors@lm-sensors.org
3611 F: drivers/hwmon/f75375s.c
3612 F: include/linux/f75375s.h
3614 FIREWIRE AUDIO DRIVERS
3615 M: Clemens Ladisch <clemens@ladisch.de>
3616 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3617 T: git git://git.alsa-project.org/alsa-kernel.git
3621 FIREWIRE MEDIA DRIVERS (firedtv)
3622 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3623 L: linux-media@vger.kernel.org
3624 L: linux1394-devel@lists.sourceforge.net
3625 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3627 F: drivers/media/firewire/
3629 FIREWIRE SBP-2 TARGET
3630 M: Chris Boot <bootc@bootc.net>
3631 L: linux-scsi@vger.kernel.org
3632 L: target-devel@vger.kernel.org
3633 L: linux1394-devel@lists.sourceforge.net
3634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3636 F: drivers/target/sbp/
3639 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3640 L: linux1394-devel@lists.sourceforge.net
3641 W: http://ieee1394.wiki.kernel.org/
3642 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3644 F: drivers/firewire/
3645 F: include/linux/firewire.h
3646 F: include/uapi/linux/firewire*.h
3649 FIRMWARE LOADER (request_firmware)
3650 M: Ming Lei <ming.lei@canonical.com>
3651 L: linux-kernel@vger.kernel.org
3653 F: Documentation/firmware_class/
3654 F: drivers/base/firmware*.c
3655 F: include/linux/firmware.h
3657 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3658 M: Joshua Morris <josh.h.morris@us.ibm.com>
3659 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3661 F: drivers/block/rsxx/
3664 M: Jiri Kosina <jkosina@suse.cz>
3665 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3667 F: drivers/block/floppy.c
3670 M: Alessandro Rubini <rubini@gnudd.com>
3671 W: http://www.ohwr.org/projects/fmc-bus
3674 F: include/linux/fmc*.h
3675 F: include/linux/ipmi-fru.h
3679 M: Bill Metzenthen <billm@melbpc.org.au>
3680 W: http://floatingpoint.sourceforge.net/emulator/index.html
3682 F: arch/x86/math-emu/
3684 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3685 L: netdev@vger.kernel.org
3687 F: drivers/net/wan/dlci.c
3688 F: drivers/net/wan/sdla.c
3691 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3692 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
3693 L: linux-fbdev@vger.kernel.org
3694 W: http://linux-fbdev.sourceforge.net/
3695 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
3696 T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
3698 F: Documentation/fb/
3699 F: Documentation/devicetree/bindings/fb/
3702 F: include/linux/fb.h
3703 F: include/uapi/video/
3704 F: include/uapi/linux/fb.h
3706 FREESCALE DIU FRAMEBUFFER DRIVER
3707 M: Timur Tabi <timur@tabi.org>
3708 L: linux-fbdev@vger.kernel.org
3710 F: drivers/video/fsl-diu-fb.*
3712 FREESCALE DMA DRIVER
3713 M: Li Yang <leoli@freescale.com>
3714 M: Zhang Wei <zw@zh-kernel.org>
3715 L: linuxppc-dev@lists.ozlabs.org
3717 F: drivers/dma/fsldma.*
3719 FREESCALE I2C CPM DRIVER
3720 M: Jochen Friedrich <jochen@scram.de>
3721 L: linuxppc-dev@lists.ozlabs.org
3722 L: linux-i2c@vger.kernel.org
3724 F: drivers/i2c/busses/i2c-cpm.c
3726 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
3727 M: Sascha Hauer <kernel@pengutronix.de>
3728 L: linux-fbdev@vger.kernel.org
3729 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3731 F: include/linux/platform_data/video-imxfb.h
3732 F: drivers/video/imxfb.c
3734 FREESCALE SOC FS_ENET DRIVER
3735 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3736 M: Vitaly Bordug <vbordug@ru.mvista.com>
3737 L: linuxppc-dev@lists.ozlabs.org
3738 L: netdev@vger.kernel.org
3740 F: drivers/net/ethernet/freescale/fs_enet/
3741 F: include/linux/fs_enet_pd.h
3743 FREESCALE QUICC ENGINE LIBRARY
3744 L: linuxppc-dev@lists.ozlabs.org
3746 F: arch/powerpc/sysdev/qe_lib/
3747 F: arch/powerpc/include/asm/*qe.h
3749 FREESCALE USB PERIPHERAL DRIVERS
3750 M: Li Yang <leoli@freescale.com>
3751 L: linux-usb@vger.kernel.org
3752 L: linuxppc-dev@lists.ozlabs.org
3754 F: drivers/usb/gadget/fsl*
3756 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
3757 M: Li Yang <leoli@freescale.com>
3758 L: netdev@vger.kernel.org
3759 L: linuxppc-dev@lists.ozlabs.org