3 List of maintainers and how to submit kernel changes
5 Please try to follow the guidelines below. This will make things
6 easier on the maintainers. Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
9 1. Always _test_ your changes, however small, on at least 4 or
10 5 people, preferably many more.
12 2. Try to release a few ALPHA test versions to the net. Announce
13 them onto the kernel channel and await results. This is especially
14 important for device drivers, because often that's the only way
15 you will find things like the fact version 3 firmware needs
16 a magic fix you didn't know about, or some clown changed the
17 chips on a board and not its name. (Don't laugh! Look at the
18 SMC etherpower for that.)
20 3. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work both as a
22 module and built into the kernel.
24 4. When you are happy with a change make it generally available for
25 testing and await feedback.
27 5. Make a patch available to the relevant maintainer in the list. Use
28 'diff -u' to make the patch easy to merge. Be prepared to get your
29 changes sent back with seemingly silly requests about formatting
30 and variable names. These aren't as silly as they seem. One
31 job the maintainers (and especially Linus) do is to keep things
32 looking the same. Sometimes this means that the clever hack in
33 your driver to get around a problem actually needs to become a
34 generalized kernel feature ready for next time.
36 PLEASE check your patch with the automated style checker
37 (scripts/checkpatch.pl) to catch trival style violations.
38 See Documentation/CodingStyle for guidance here.
40 PLEASE CC: the maintainers and mailing lists that are generated
41 by scripts/get_maintainer.pl. The results returned by the
42 script will be best if you have git installed and are making
43 your changes in a branch derived from Linus' latest git tree.
44 See Documentation/SubmittingPatches for details.
46 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
53 PLEASE remember that submissions must be made under the terms
54 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed in the file
57 Documentation/SubmittingPatches.
59 6. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
63 7. When sending security related changes or reports to a maintainer
64 please Cc: security@kernel.org, especially if the maintainer
69 Descriptions of section entries:
72 M: Mail patches to: FullName <address@domain>
73 L: Mailing list that is relevant to this area
74 W: Web-page with status/info
75 Q: Patchwork web based patch tracking system site
76 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit, topgit.
77 S: Status, one of the following:
78 Supported: Someone is actually paid to look after this.
79 Maintained: Someone actually looks after it.
80 Odd Fixes: It has a maintainer but they don't have time to do
81 much other than throw the odd patch in. See below..
82 Orphan: No current maintainer [but maybe you could take the
83 role as you write your new code].
84 Obsolete: Old code. Something tagged obsolete generally means
85 it has been replaced by a better system and you
87 F: Files and directories with wildcard patterns.
88 A trailing slash includes all files and subdirectory files.
89 F: drivers/net/ all files in and below drivers/net
90 F: drivers/net/* all files in drivers/net, but not below
91 F: */net/* all files in "any top level directory"/net
92 One pattern per line. Multiple F: lines acceptable.
93 N: Files and directories with regex patterns.
94 N: [^a-z]tegra all files whose path contains the word tegra
95 One pattern per line. Multiple N: lines acceptable.
96 scripts/get_maintainer.pl has different behavior for files that
97 match F: pattern and matches of N: patterns. By default,
98 get_maintainer will not look at git log history when an F: pattern
99 match occurs. When an N: match occurs, git log history is used
100 to also notify the people that have git commit signatures.
101 X: Files and directories that are NOT maintained, same rules as F:
102 Files exclusions are tested before file matches.
103 Can be useful for excluding a specific subdirectory, for instance:
106 matches all files in and below net excluding net/ipv6/
107 K: Keyword perl extended regex pattern to match content in a
108 patch or file. For instance:
110 matches patches or files that contain "of_get_profile"
111 K: \b(printk|pr_(info|err))\b
112 matches patches or files that contain one or more of the words
113 printk, pr_info or pr_err
114 One regex pattern per line. Multiple K: lines acceptable.
116 Note: For the hard of thinking, this list is meant to remain in alphabetical
117 order. If you could add yourselves to it in alphabetical order that would be
120 Maintainers List (try to look for most precise areas first)
122 -----------------------------------
125 M: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
126 L: netdev@vger.kernel.org
128 F: Documentation/networking/vortex.txt
129 F: drivers/net/ethernet/3com/3c59x.c
131 3CR990 NETWORK DRIVER
132 M: David Dillow <dave@thedillows.org>
133 L: netdev@vger.kernel.org
135 F: drivers/net/ethernet/3com/typhoon*
137 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
138 M: Adam Radford <linuxraid@lsi.com>
139 L: linux-scsi@vger.kernel.org
140 W: http://www.lsi.com
144 53C700 AND 53C700-66 SCSI DRIVER
145 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
146 L: linux-scsi@vger.kernel.org
148 F: drivers/scsi/53c700*
150 6PACK NETWORK DRIVER FOR AX.25
151 M: Andreas Koensgen <ajk@comnets.uni-bremen.de>
152 L: linux-hams@vger.kernel.org
154 F: drivers/net/hamradio/6pack.c
156 8169 10/100/1000 GIGABIT ETHERNET DRIVER
157 M: Realtek linux nic maintainers <nic_swsd@realtek.com>
158 M: Francois Romieu <romieu@fr.zoreil.com>
159 L: netdev@vger.kernel.org
161 F: drivers/net/ethernet/realtek/r8169.c
163 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
164 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
165 L: linux-serial@vger.kernel.org
166 W: http://serial.sourceforge.net
168 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
169 F: drivers/tty/serial/8250*
170 F: include/linux/serial_8250.h
172 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
173 L: netdev@vger.kernel.org
175 F: drivers/net/ethernet/8390/
178 M: Eric Van Hensbergen <ericvh@gmail.com>
179 M: Ron Minnich <rminnich@sandia.gov>
180 M: Latchesar Ionkov <lucho@ionkov.net>
181 L: v9fs-developer@lists.sourceforge.net
182 W: http://swik.net/v9fs
183 Q: http://patchwork.kernel.org/project/v9fs-devel/list/
184 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
186 F: Documentation/filesystems/9p.txt
190 F: include/uapi/linux/virtio_9p.h
191 F: include/trace/events/9p.h
195 M: Antti Palosaari <crope@iki.fi>
196 L: linux-media@vger.kernel.org
197 W: http://linuxtv.org/
198 W: http://palosaari.fi/linux/
199 Q: http://patchwork.linuxtv.org/project/linux-media/list/
200 T: git git://linuxtv.org/anttip/media_tree.git
202 F: drivers/media/dvb-frontends/a8293*
204 AACRAID SCSI RAID DRIVER
205 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
206 L: linux-scsi@vger.kernel.org
207 W: http://www.adaptec.com/
209 F: Documentation/scsi/aacraid.txt
210 F: drivers/scsi/aacraid/
212 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
213 M: Hans de Goede <hdegoede@redhat.com>
214 L: lm-sensors@lm-sensors.org
216 F: drivers/hwmon/abituguru.c
218 ABIT UGURU 3 HARDWARE MONITOR DRIVER
219 M: Alistair John Strachan <alistair@devzero.co.uk>
220 L: lm-sensors@lm-sensors.org
222 F: drivers/hwmon/abituguru3.c
225 M: Jes Sorensen <jes@trained-monkey.org>
226 L: linux-acenic@sunsite.dk
228 F: drivers/net/ethernet/alteon/acenic*
230 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
231 M: Peter Feuerer <peter@piie.net>
232 L: platform-driver-x86@vger.kernel.org
233 W: http://piie.net/?section=acerhdf
235 F: drivers/platform/x86/acerhdf.c
237 ACER WMI LAPTOP EXTRAS
238 M: "Lee, Chun-Yi" <jlee@suse.com>
239 L: platform-driver-x86@vger.kernel.org
241 F: drivers/platform/x86/acer-wmi.c
244 M: Len Brown <lenb@kernel.org>
245 M: Rafael J. Wysocki <rjw@rjwysocki.net>
246 L: linux-acpi@vger.kernel.org
247 W: https://01.org/linux-acpi
248 Q: https://patchwork.kernel.org/project/linux-acpi/list/
249 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
252 F: drivers/pnp/pnpacpi/
253 F: include/linux/acpi.h
255 F: Documentation/acpi
256 F: Documentation/ABI/testing/sysfs-bus-acpi
257 F: drivers/pci/*acpi*
258 F: drivers/pci/*/*acpi*
259 F: drivers/pci/*/*/*acpi*
262 ACPI COMPONENT ARCHITECTURE (ACPICA)
263 M: Robert Moore <robert.moore@intel.com>
264 M: Lv Zheng <lv.zheng@intel.com>
265 M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
266 L: linux-acpi@vger.kernel.org
268 W: https://acpica.org/
269 W: https://github.com/acpica/acpica/
270 Q: https://patchwork.kernel.org/project/linux-acpi/list/
271 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
273 F: drivers/acpi/acpica/
278 M: Zhang Rui <rui.zhang@intel.com>
279 L: linux-acpi@vger.kernel.org
280 W: https://01.org/linux-acpi
282 F: drivers/acpi/fan.c
285 M: Zhang Rui <rui.zhang@intel.com>
286 L: linux-acpi@vger.kernel.org
287 W: https://01.org/linux-acpi
289 F: drivers/acpi/*thermal*
292 M: Zhang Rui <rui.zhang@intel.com>
293 L: linux-acpi@vger.kernel.org
294 W: https://01.org/linux-acpi
296 F: drivers/acpi/video.c
299 L: platform-driver-x86@vger.kernel.org
301 F: drivers/platform/x86/wmi.c
303 AD1889 ALSA SOUND DRIVER
304 M: Thibaut Varene <T-Bone@parisc-linux.org>
305 W: http://wiki.parisc-linux.org/AD1889
306 L: linux-parisc@vger.kernel.org
308 F: sound/pci/ad1889.*
310 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
311 M: Michael Hennerich <michael.hennerich@analog.com>
312 W: http://wiki.analog.com/AD5254
313 W: http://ez.analog.com/community/linux-device-drivers
315 F: drivers/misc/ad525x_dpot.c
317 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
318 M: Michael Hennerich <michael.hennerich@analog.com>
319 W: http://wiki.analog.com/AD5398
320 W: http://ez.analog.com/community/linux-device-drivers
322 F: drivers/regulator/ad5398.c
324 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
325 M: Michael Hennerich <michael.hennerich@analog.com>
326 W: http://wiki.analog.com/AD7142
327 W: http://ez.analog.com/community/linux-device-drivers
329 F: drivers/input/misc/ad714x.c
331 AD7877 TOUCHSCREEN DRIVER
332 M: Michael Hennerich <michael.hennerich@analog.com>
333 W: http://wiki.analog.com/AD7877
334 W: http://ez.analog.com/community/linux-device-drivers
336 F: drivers/input/touchscreen/ad7877.c
338 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
339 M: Michael Hennerich <michael.hennerich@analog.com>
340 W: http://wiki.analog.com/AD7879
341 W: http://ez.analog.com/community/linux-device-drivers
343 F: drivers/input/touchscreen/ad7879.c
345 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
346 M: Jiri Kosina <jkosina@suse.cz>
349 ADM1025 HARDWARE MONITOR DRIVER
350 M: Jean Delvare <jdelvare@suse.de>
351 L: lm-sensors@lm-sensors.org
353 F: Documentation/hwmon/adm1025
354 F: drivers/hwmon/adm1025.c
356 ADM1029 HARDWARE MONITOR DRIVER
357 M: Corentin Labbe <corentin.labbe@geomatys.fr>
358 L: lm-sensors@lm-sensors.org
360 F: drivers/hwmon/adm1029.c
362 ADM8211 WIRELESS DRIVER
363 L: linux-wireless@vger.kernel.org
364 W: http://wireless.kernel.org/
366 F: drivers/net/wireless/adm8211.*
368 ADP1653 FLASH CONTROLLER DRIVER
369 M: Sakari Ailus <sakari.ailus@iki.fi>
370 L: linux-media@vger.kernel.org
372 F: drivers/media/i2c/adp1653.c
373 F: include/media/adp1653.h
375 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
376 M: Michael Hennerich <michael.hennerich@analog.com>
377 W: http://wiki.analog.com/ADP5520
378 W: http://ez.analog.com/community/linux-device-drivers
380 F: drivers/mfd/adp5520.c
381 F: drivers/video/backlight/adp5520_bl.c
382 F: drivers/leds/leds-adp5520.c
383 F: drivers/gpio/gpio-adp5520.c
384 F: drivers/input/keyboard/adp5520-keys.c
386 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
387 M: Michael Hennerich <michael.hennerich@analog.com>
388 W: http://wiki.analog.com/ADP5588
389 W: http://ez.analog.com/community/linux-device-drivers
391 F: drivers/input/keyboard/adp5588-keys.c
392 F: drivers/gpio/gpio-adp5588.c
394 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
395 M: Michael Hennerich <michael.hennerich@analog.com>
396 W: http://wiki.analog.com/ADP8860
397 W: http://ez.analog.com/community/linux-device-drivers
399 F: drivers/video/backlight/adp8860_bl.c
401 ADS1015 HARDWARE MONITOR DRIVER
402 M: Dirk Eibach <eibach@gdsys.de>
403 L: lm-sensors@lm-sensors.org
405 F: Documentation/hwmon/ads1015
406 F: drivers/hwmon/ads1015.c
407 F: include/linux/i2c/ads1015.h
410 M: Colin Leroy <colin@colino.net>
412 F: drivers/macintosh/therm_adt746x.c
414 ADT7475 HARDWARE MONITOR DRIVER
415 M: Jean Delvare <jdelvare@suse.de>
416 L: lm-sensors@lm-sensors.org
418 F: Documentation/hwmon/adt7475
419 F: drivers/hwmon/adt7475.c
421 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
422 M: Michael Hennerich <michael.hennerich@analog.com>
423 W: http://wiki.analog.com/ADXL345
424 W: http://ez.analog.com/community/linux-device-drivers
426 F: drivers/input/misc/adxl34x.c
429 M: Matthew Wilcox <matthew@wil.cx>
430 L: linux-scsi@vger.kernel.org
432 F: Documentation/scsi/advansys.txt
433 F: drivers/scsi/advansys.c
436 M: Riccardo Facchetti <fizban@tin.it>
438 F: sound/oss/aedsp16.c
441 M: Antti Palosaari <crope@iki.fi>
442 L: linux-media@vger.kernel.org
443 W: http://linuxtv.org/
444 W: http://palosaari.fi/linux/
445 Q: http://patchwork.linuxtv.org/project/linux-media/list/
446 T: git git://linuxtv.org/anttip/media_tree.git
448 F: drivers/media/dvb-frontends/af9013*
451 M: Antti Palosaari <crope@iki.fi>
452 L: linux-media@vger.kernel.org
453 W: http://linuxtv.org/
454 W: http://palosaari.fi/linux/
455 Q: http://patchwork.linuxtv.org/project/linux-media/list/
456 T: git git://linuxtv.org/anttip/media_tree.git
458 F: drivers/media/dvb-frontends/af9033*
461 L: linux-fsdevel@vger.kernel.org
463 F: Documentation/filesystems/affs.txt
466 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
467 M: David Howells <dhowells@redhat.com>
468 L: linux-afs@lists.infradead.org
471 F: include/net/af_rxrpc.h
472 F: net/rxrpc/af_rxrpc.c
475 M: David Airlie <airlied@linux.ie>
476 T: git git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6.git
479 F: include/linux/agp*
480 F: include/uapi/linux/agp*
483 M: "Juergen E. Fischer" <fischer@norbit.de>
484 L: linux-scsi@vger.kernel.org
486 F: drivers/scsi/aha152x*
487 F: drivers/scsi/pcmcia/aha152x*
489 AIC7XXX / AIC79XX SCSI DRIVER
490 M: Hannes Reinecke <hare@suse.de>
491 L: linux-scsi@vger.kernel.org
493 F: drivers/scsi/aic7xxx/
495 AIMSLAB FM RADIO RECEIVER DRIVER
496 M: Hans Verkuil <hverkuil@xs4all.nl>
497 L: linux-media@vger.kernel.org
498 T: git git://linuxtv.org/media_tree.git
499 W: http://linuxtv.org
501 F: drivers/media/radio/radio-aimslab*
504 M: Benjamin LaHaise <bcrl@kvack.org>
505 L: linux-aio@kvack.org
508 F: include/linux/*aio*.h
510 ALCATEL SPEEDTOUCH USB DRIVER
511 M: Duncan Sands <duncan.sands@free.fr>
512 L: linux-usb@vger.kernel.org
513 W: http://www.linux-usb.org/SpeedTouch/
515 F: drivers/usb/atm/speedtch.c
516 F: drivers/usb/atm/usbatm.c
518 ALCHEMY AU1XX0 MMC DRIVER
519 M: Manuel Lauss <manuel.lauss@gmail.com>
521 F: drivers/mmc/host/au1xmmc.c
524 M: Rudolf Marek <r.marek@assembler.cz>
525 L: linux-i2c@vger.kernel.org
527 F: Documentation/i2c/busses/i2c-ali1563
528 F: drivers/i2c/busses/i2c-ali1563.c
531 M: Richard Henderson <rth@twiddle.net>
532 M: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
533 M: Matt Turner <mattst88@gmail.com>
535 L: linux-alpha@vger.kernel.org
538 ALTERA UART/JTAG UART SERIAL DRIVERS
539 M: Tobias Klauser <tklauser@distanz.ch>
540 L: linux-serial@vger.kernel.org
541 L: nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
543 F: drivers/tty/serial/altera_uart.c
544 F: drivers/tty/serial/altera_jtaguart.c
545 F: include/linux/altera_uart.h
546 F: include/linux/altera_jtaguart.h
548 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
549 M: Tom Lendacky <thomas.lendacky@amd.com>
550 L: linux-crypto@vger.kernel.org
552 F: drivers/crypto/ccp/
553 F: include/linux/ccp.h
555 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
556 M: Andreas Herrmann <herrmann.der.user@googlemail.com>
557 L: lm-sensors@lm-sensors.org
559 F: Documentation/hwmon/fam15h_power
560 F: drivers/hwmon/fam15h_power.c
562 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
563 M: Thomas Dahlmann <dahlmann.thomas@arcor.de>
564 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
566 F: drivers/usb/gadget/amd5536udc.*
568 AMD GEODE PROCESSOR/CHIPSET SUPPORT
569 P: Andres Salomon <dilinger@queued.net>
570 L: linux-geode@lists.infradead.org (moderated for non-subscribers)
571 W: http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
573 F: drivers/char/hw_random/geode-rng.c
574 F: drivers/crypto/geode*
575 F: drivers/video/geode/
576 F: arch/x86/include/asm/geode.h
579 M: Joerg Roedel <joro@8bytes.org>
580 L: iommu@lists.linux-foundation.org
581 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
583 F: drivers/iommu/amd_iommu*.[ch]
584 F: include/linux/amd-iommu.h
586 AMD MICROCODE UPDATE SUPPORT
587 M: Andreas Herrmann <herrmann.der.user@googlemail.com>
588 L: amd64-microcode@amd64.org
590 F: arch/x86/kernel/microcode_amd.c
592 AMS (Apple Motion Sensor) DRIVER
593 M: Michael Hanselmann <linux-kernel@hansmi.ch>
595 F: drivers/macintosh/ams/
598 M: Tom Tucker <tom@opengridcomputing.com>
599 M: Steve Wise <swise@opengridcomputing.com>
600 L: linux-rdma@vger.kernel.org
602 F: drivers/infiniband/hw/amso1100/
604 ANALOG DEVICES INC AD9389B DRIVER
605 M: Hans Verkuil <hans.verkuil@cisco.com>
606 L: linux-media@vger.kernel.org
608 F: drivers/media/i2c/ad9389b*
610 ANALOG DEVICES INC ADV7511 DRIVER
611 M: Hans Verkuil <hans.verkuil@cisco.com>
612 L: linux-media@vger.kernel.org
614 F: drivers/media/i2c/adv7511*
616 ANALOG DEVICES INC ADV7604 DRIVER
617 M: Hans Verkuil <hans.verkuil@cisco.com>
618 L: linux-media@vger.kernel.org
620 F: drivers/media/i2c/adv7604*
622 ANALOG DEVICES INC ADV7842 DRIVER
623 M: Hans Verkuil <hans.verkuil@cisco.com>
624 L: linux-media@vger.kernel.org
626 F: drivers/media/i2c/adv7842*
628 ANALOG DEVICES INC ASOC CODEC DRIVERS
629 M: Lars-Peter Clausen <lars@metafoo.de>
630 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
631 W: http://wiki.analog.com/
632 W: http://ez.analog.com/community/linux-device-drivers
634 F: sound/soc/codecs/adau*
635 F: sound/soc/codecs/adav*
636 F: sound/soc/codecs/ad1*
637 F: sound/soc/codecs/ad7*
638 F: sound/soc/codecs/ssm*
639 F: sound/soc/codecs/sigmadsp.*
641 ANALOG DEVICES INC ASOC DRIVERS
642 L: adi-buildroot-devel@lists.sourceforge.net
643 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
644 W: http://blackfin.uclinux.org/
646 F: sound/soc/blackfin/*
648 AOA (Apple Onboard Audio) ALSA DRIVER
649 M: Johannes Berg <johannes@sipsolutions.net>
650 L: linuxppc-dev@lists.ozlabs.org
651 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
656 M: Jiri Kosina <jkosina@suse.cz>
658 F: arch/x86/kernel/apm_32.c
659 F: include/linux/apm_bios.h
660 F: include/uapi/linux/apm_bios.h
661 F: drivers/char/apm-emulation.c
663 APPLE BCM5974 MULTITOUCH DRIVER
664 M: Henrik Rydberg <rydberg@euromail.se>
665 L: linux-input@vger.kernel.org
667 F: drivers/input/mouse/bcm5974.c
670 M: Henrik Rydberg <rydberg@euromail.se>
671 L: lm-sensors@lm-sensors.org
673 F: drivers/hwmon/applesmc.c
675 APPLETALK NETWORK LAYER
676 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
678 F: drivers/net/appletalk/
681 APTINA CAMERA SENSOR PLL
682 M: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
683 L: linux-media@vger.kernel.org
685 F: drivers/media/i2c/aptina-pll.*
687 ARASAN COMPACT FLASH PATA CONTROLLER
688 M: Viresh Kumar <viresh.linux@gmail.com>
689 L: linux-ide@vger.kernel.org
691 F: include/linux/pata_arasan_cf_data.h
692 F: drivers/ata/pata_arasan_cf.c
694 ARC FRAMEBUFFER DRIVER
695 M: Jaya Kumar <jayalk@intworks.biz>
697 F: drivers/video/arcfb.c
698 F: drivers/video/fb_defio.c
700 ARM MFM AND FLOPPY DRIVERS
701 M: Ian Molton <spyro@f2s.com>
703 F: arch/arm/lib/floppydma.S
704 F: arch/arm/include/asm/floppy.h
706 ARM PMU PROFILING AND DEBUGGING
707 M: Will Deacon <will.deacon@arm.com>
709 F: arch/arm/kernel/perf_event*
710 F: arch/arm/oprofile/common.c
711 F: arch/arm/include/asm/pmu.h
712 F: arch/arm/kernel/hw_breakpoint.c
713 F: arch/arm/include/asm/hw_breakpoint.h
716 M: Russell King <linux@arm.linux.org.uk>
717 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
718 W: http://www.arm.linux.org.uk/
722 ARM SUB-ARCHITECTURES
723 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
727 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
729 ARM PRIMECELL AACI PL041 DRIVER
730 M: Russell King <linux@arm.linux.org.uk>
734 ARM PRIMECELL CLCD PL110 DRIVER
735 M: Russell King <linux@arm.linux.org.uk>
737 F: drivers/video/amba-clcd.*
739 ARM PRIMECELL KMI PL050 DRIVER
740 M: Russell King <linux@arm.linux.org.uk>
742 F: drivers/input/serio/ambakmi.*
743 F: include/linux/amba/kmi.h
745 ARM PRIMECELL MMCI PL180/1 DRIVER
746 M: Russell King <linux@arm.linux.org.uk>
748 F: drivers/mmc/host/mmci.*
749 F: include/linux/amba/mmci.h
751 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
752 M: Russell King <linux@arm.linux.org.uk>
754 F: drivers/tty/serial/amba-pl01*.c
755 F: include/linux/amba/serial.h
757 ARM PRIMECELL BUS SUPPORT
758 M: Russell King <linux@arm.linux.org.uk>
761 F: include/linux/amba/bus.h
763 ARM/ADS SPHERE MACHINE SUPPORT
764 M: Lennert Buytenhek <kernel@wantstofly.org>
765 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
768 ARM/AFEB9260 MACHINE SUPPORT
769 M: Sergey Lapin <slapin@ossfans.org>
770 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
773 ARM/AJECO 1ARM MACHINE SUPPORT
774 M: Lennert Buytenhek <kernel@wantstofly.org>
775 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
778 ARM/Allwinner A1X SoC support
779 M: Maxime Ripard <maxime.ripard@free-electrons.com>
780 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
784 ARM/Allwinner SoC Clock Support
785 M: Emilio López <emilio@elopez.com.ar>
787 F: drivers/clk/sunxi/
789 ARM/ATMEL AT91RM9200 AND AT91SAM ARM ARCHITECTURES
790 M: Andrew Victor <linux@maxim.org.za>
791 M: Nicolas Ferre <nicolas.ferre@atmel.com>
792 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
793 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
794 W: http://maxim.org.za/at91_26.html
795 W: http://www.linux4sam.org
797 F: arch/arm/mach-at91/
798 F: arch/arm/boot/dts/at91*.dts
799 F: arch/arm/boot/dts/at91*.dtsi
800 F: arch/arm/boot/dts/sama*.dts
801 F: arch/arm/boot/dts/sama*.dtsi
803 ARM/CALXEDA HIGHBANK ARCHITECTURE
804 M: Rob Herring <robh@kernel.org>
805 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
807 F: arch/arm/mach-highbank/
809 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
810 M: Anton Vorontsov <anton@enomsg.org>
812 F: arch/arm/mach-cns3xxx/
813 T: git git://git.infradead.org/users/cbou/linux-cns3xxx.git
815 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
816 M: Alexander Shiyan <shc_work@mail.ru>
817 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
819 F: arch/arm/mach-clps711x/
821 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
822 M: Hartley Sweeten <hsweeten@visionengravers.com>
823 M: Ryan Mallon <rmallon@gmail.com>
824 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
826 F: arch/arm/mach-ep93xx/
827 F: arch/arm/mach-ep93xx/include/mach/
829 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
830 M: Lennert Buytenhek <kernel@wantstofly.org>
831 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
835 M: Russell King <linux@arm.linux.org.uk>
836 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
838 F: arch/arm/include/asm/clkdev.h
839 F: drivers/clk/clkdev.c
841 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
842 M: Mike Rapoport <mike@compulab.co.il>
843 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
846 ARM/CONTEC MICRO9 MACHINE SUPPORT
847 M: Hubert Feurstein <hubert.feurstein@contec.at>
849 F: arch/arm/mach-ep93xx/micro9.c
851 ARM/CORGI MACHINE SUPPORT
852 M: Richard Purdie <rpurdie@rpsys.net>
855 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
856 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
857 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
858 T: git git://git.berlios.de/gemini-board
860 F: arch/arm/mach-gemini/
862 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
863 M: Barry Song <baohua@kernel.org>
864 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 T: git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
867 F: arch/arm/mach-prima2/
868 F: drivers/clk/clk-prima2.c
869 F: drivers/clocksource/timer-prima2.c
870 F: drivers/clocksource/timer-marco.c
873 ARM/EBSA110 MACHINE SUPPORT
874 M: Russell King <linux@arm.linux.org.uk>
875 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
876 W: http://www.arm.linux.org.uk/
878 F: arch/arm/mach-ebsa110/
879 F: drivers/net/ethernet/amd/am79c961a.*
881 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
882 M: Uwe Kleine-König <kernel@pengutronix.de>
883 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
887 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
888 M: Daniel Ribeiro <drwyrm@gmail.com>
889 M: Stefan Schmidt <stefan@openezx.org>
890 M: Harald Welte <laforge@openezx.org>
891 L: openezx-devel@lists.openezx.org (moderated for non-subscribers)
892 W: http://www.openezx.org/
894 T: topgit git://git.openezx.org/openezx.git
895 F: arch/arm/mach-pxa/ezx.c
897 ARM/FARADAY FA526 PORT
898 M: Hans Ulli Kroll <ulli.kroll@googlemail.com>
899 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
901 T: git git://git.berlios.de/gemini-board
904 ARM/FOOTBRIDGE ARCHITECTURE
905 M: Russell King <linux@arm.linux.org.uk>
906 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 W: http://www.arm.linux.org.uk/
909 F: arch/arm/include/asm/hardware/dec21285.h
910 F: arch/arm/mach-footbridge/
912 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
913 M: Shawn Guo <shawn.guo@linaro.org>
914 M: Sascha Hauer <kernel@pengutronix.de>
915 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
918 F: arch/arm/mach-imx/
919 F: arch/arm/boot/dts/imx*
920 F: arch/arm/configs/imx*_defconfig
922 ARM/FREESCALE MXS ARM ARCHITECTURE
923 M: Shawn Guo <shawn.guo@linaro.org>
924 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
926 T: git git://git.linaro.org/people/shawnguo/linux-2.6.git
927 F: arch/arm/mach-mxs/
929 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
930 M: Lennert Buytenhek <kernel@wantstofly.org>
931 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 ARM/GUMSTIX MACHINE SUPPORT
935 M: Steve Sakoman <sakoman@gmail.com>
936 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
940 M: Philipp Zabel <philipp.zabel@gmail.com>
941 M: Paul Parsons <lost.distance@yahoo.com>
942 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 F: arch/arm/mach-pxa/hx4700.c
945 F: arch/arm/mach-pxa/include/mach/hx4700.h
946 F: sound/soc/pxa/hx4700.c
948 ARM/HP JORNADA 7XX MACHINE SUPPORT
949 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
952 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
953 F: arch/arm/mach-sa1100/jornada720.c
954 F: arch/arm/mach-sa1100/include/mach/jornada720.h
956 ARM/IGEP MACHINE SUPPORT
957 M: Enric Balletbo i Serra <eballetbo@gmail.com>
958 M: Javier Martinez Canillas <javier@dowhile0.org>
959 L: linux-omap@vger.kernel.org
960 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 F: arch/arm/boot/dts/omap3-igep*
964 ARM/INCOME PXA270 SUPPORT
965 M: Marek Vasut <marek.vasut@gmail.com>
966 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
968 F: arch/arm/mach-pxa/colibri-pxa270-income.c
970 ARM/INTEL IOP32X ARM ARCHITECTURE
971 M: Lennert Buytenhek <kernel@wantstofly.org>
972 M: Dan Williams <dan.j.williams@intel.com>
973 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
976 ARM/INTEL IOP33X ARM ARCHITECTURE
977 M: Dan Williams <dan.j.williams@intel.com>
978 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
981 ARM/INTEL IOP13XX ARM ARCHITECTURE
982 M: Lennert Buytenhek <kernel@wantstofly.org>
983 M: Dan Williams <dan.j.williams@intel.com>
984 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
987 ARM/INTEL IQ81342EX MACHINE SUPPORT
988 M: Lennert Buytenhek <kernel@wantstofly.org>
989 M: Dan Williams <dan.j.williams@intel.com>
990 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 ARM/INTEL IXDP2850 MACHINE SUPPORT
994 M: Lennert Buytenhek <kernel@wantstofly.org>
995 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 ARM/INTEL IXP4XX ARM ARCHITECTURE
999 M: Imre Kaloz <kaloz@openwrt.org>
1000 M: Krzysztof Halasa <khc@pm.waw.pl>
1001 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 F: arch/arm/mach-ixp4xx/
1005 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1006 M: Jonathan Cameron <jic23@cam.ac.uk>
1007 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1009 F: arch/arm/mach-pxa/stargate2.c
1010 F: drivers/pcmcia/pxa2xx_stargate2.c
1012 ARM/INTEL XSC3 (MANZANO) ARM CORE
1013 M: Lennert Buytenhek <kernel@wantstofly.org>
1014 M: Dan Williams <dan.j.williams@intel.com>
1015 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1018 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1019 M: Lennert Buytenhek <kernel@wantstofly.org>
1020 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1023 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1024 M: Santosh Shilimkar <santosh.shilimkar@ti.com>
1025 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1027 F: arch/arm/mach-keystone/
1028 F: drivers/clk/keystone/
1029 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1031 ARM/LOGICPD PXA270 MACHINE SUPPORT
1032 M: Lennert Buytenhek <kernel@wantstofly.org>
1033 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1036 ARM/MAGICIAN MACHINE SUPPORT
1037 M: Philipp Zabel <philipp.zabel@gmail.com>
1040 ARM/Marvell Armada 370 and Armada XP SOC support
1041 M: Jason Cooper <jason@lakedaemon.net>
1042 M: Andrew Lunn <andrew@lunn.ch>
1043 M: Gregory Clement <gregory.clement@free-electrons.com>
1044 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1045 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1047 F: arch/arm/mach-mvebu/
1049 ARM/Marvell Berlin SoC support
1050 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1051 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1053 F: arch/arm/mach-berlin/
1055 ARM/Marvell Dove/Kirkwood/MV78xx0/Orion SOC support
1056 M: Jason Cooper <jason@lakedaemon.net>
1057 M: Andrew Lunn <andrew@lunn.ch>
1058 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1059 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 F: arch/arm/mach-dove/
1062 F: arch/arm/mach-kirkwood/
1063 F: arch/arm/mach-mv78xx0/
1064 F: arch/arm/mach-orion5x/
1065 F: arch/arm/plat-orion/
1067 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1068 M: Alexander Clouter <alex@digriz.org.uk>
1069 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1070 W: http://www.digriz.org.uk/ts78xx/kernel
1072 F: arch/arm/mach-orion5x/ts78xx-*
1074 ARM/MICREL KS8695 ARCHITECTURE
1075 M: Greg Ungerer <gerg@uclinux.org>
1076 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 F: arch/arm/mach-ks8695/
1080 ARM/MIOA701 MACHINE SUPPORT
1081 M: Robert Jarzmik <robert.jarzmik@free.fr>
1082 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 F: arch/arm/mach-pxa/mioa701.c
1086 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1087 M: Michael Petchkovsky <mkpetch@internode.on.net>
1090 ARM/NOMADIK ARCHITECTURE
1091 M: Alessandro Rubini <rubini@unipv.it>
1092 M: Linus Walleij <linus.walleij@linaro.org>
1093 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1095 F: arch/arm/mach-nomadik/
1096 F: drivers/i2c/busses/i2c-nomadik.c
1097 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1099 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1100 M: Nelson Castillo <arhuaco@freaks-unidos.net>
1101 L: openmoko-kernel@lists.openmoko.org (subscribers-only)
1102 W: http://wiki.openmoko.org/wiki/Neo_FreeRunner
1105 ARM/QUALCOMM MSM MACHINE SUPPORT
1106 M: David Brown <davidb@codeaurora.org>
1107 M: Daniel Walker <dwalker@fifo99.com>
1108 M: Bryan Huntsman <bryanh@codeaurora.org>
1109 L: linux-arm-msm@vger.kernel.org
1110 F: arch/arm/mach-msm/
1111 F: drivers/video/msm/
1112 F: drivers/mmc/host/msm_sdcc.c
1113 F: drivers/mmc/host/msm_sdcc.h
1114 F: drivers/tty/serial/msm_serial.h
1115 F: drivers/tty/serial/msm_serial.c
1116 F: drivers/*/pm8???-*
1117 F: drivers/mfd/ssbi/
1118 F: include/linux/mfd/pm8xxx/
1119 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davidb/linux-msm.git
1122 ARM/TOSA MACHINE SUPPORT
1123 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1124 M: Dirk Opfer <dirk@opfer-online.de>
1127 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1128 M: Marek Vasut <marek.vasut@gmail.com>
1129 L: linux-arm-kernel@lists.infradead.org
1130 W: http://hackndev.com
1132 F: arch/arm/mach-pxa/include/mach/palmtx.h
1133 F: arch/arm/mach-pxa/palmtx.c
1134 F: arch/arm/mach-pxa/include/mach/palmt5.h
1135 F: arch/arm/mach-pxa/palmt5.c
1136 F: arch/arm/mach-pxa/include/mach/palmld.h
1137 F: arch/arm/mach-pxa/palmld.c
1138 F: arch/arm/mach-pxa/include/mach/palmte2.h
1139 F: arch/arm/mach-pxa/palmte2.c
1140 F: arch/arm/mach-pxa/include/mach/palmtc.h
1141 F: arch/arm/mach-pxa/palmtc.c
1143 ARM/PALM TREO SUPPORT
1144 M: Tomas Cech <sleep_walker@suse.cz>
1145 L: linux-arm-kernel@lists.infradead.org
1146 W: http://hackndev.com
1148 F: arch/arm/mach-pxa/include/mach/palmtreo.h
1149 F: arch/arm/mach-pxa/palmtreo.c
1152 M: Sergey Lapin <slapin@ossfans.org>
1153 L: linux-arm-kernel@lists.infradead.org
1154 W: http://hackndev.com
1156 F: arch/arm/mach-pxa/include/mach/palmz72.h
1157 F: arch/arm/mach-pxa/palmz72.c
1160 M: Peter Chubb <pleb@gelato.unsw.edu.au>
1161 W: http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1164 ARM/PT DIGITAL BOARD PORT
1165 M: Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1166 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1167 W: http://www.arm.linux.org.uk/
1170 ARM/RADISYS ENP2611 MACHINE SUPPORT
1171 M: Lennert Buytenhek <kernel@wantstofly.org>
1172 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 ARM/RISCPC ARCHITECTURE
1176 M: Russell King <linux@arm.linux.org.uk>
1177 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1178 W: http://www.arm.linux.org.uk/
1180 F: arch/arm/include/asm/hardware/entry-macro-iomd.S
1181 F: arch/arm/include/asm/hardware/ioc.h
1182 F: arch/arm/include/asm/hardware/iomd.h
1183 F: arch/arm/include/asm/hardware/memc.h
1184 F: arch/arm/mach-rpc/
1185 F: drivers/net/ethernet/8390/etherh.c
1186 F: drivers/net/ethernet/i825xx/ether1*
1187 F: drivers/net/ethernet/seeq/ether3*
1188 F: drivers/scsi/arm/
1190 ARM/Rockchip SoC support
1191 M: Heiko Stuebner <heiko@sntech.de>
1192 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1194 F: arch/arm/mach-rockchip/
1195 F: drivers/*/*rockchip*
1197 ARM/SAMSUNG ARM ARCHITECTURES
1198 M: Ben Dooks <ben-linux@fluff.org>
1199 M: Kukjin Kim <kgene.kim@samsung.com>
1200 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1202 W: http://www.fluff.org/ben/linux/
1204 F: arch/arm/boot/dts/s3c*
1205 F: arch/arm/boot/dts/exynos*
1206 F: arch/arm/plat-samsung/
1207 F: arch/arm/mach-s3c24*/
1208 F: arch/arm/mach-s3c64xx/
1209 F: drivers/*/*s3c2410*
1210 F: drivers/*/*/*s3c2410*
1211 F: drivers/spi/spi-s3c*
1212 F: sound/soc/samsung/*
1214 ARM/S5P EXYNOS ARM ARCHITECTURES
1215 M: Kukjin Kim <kgene.kim@samsung.com>
1216 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1219 F: arch/arm/mach-s5p*/
1220 F: arch/arm/mach-exynos*/
1223 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1224 M: Kyungmin Park <kyungmin.park@samsung.com>
1225 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 F: arch/arm/mach-s5pv210/mach-aquila.c
1228 F: arch/arm/mach-s5pv210/mach-goni.c
1230 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1231 M: Kyungmin Park <kyungmin.park@samsung.com>
1232 M: Kamil Debski <k.debski@samsung.com>
1233 L: linux-arm-kernel@lists.infradead.org
1234 L: linux-media@vger.kernel.org
1236 F: drivers/media/platform/s5p-g2d/
1238 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1239 M: Kyungmin Park <kyungmin.park@samsung.com>
1240 M: Kamil Debski <k.debski@samsung.com>
1241 M: Jeongtae Park <jtp.park@samsung.com>
1242 L: linux-arm-kernel@lists.infradead.org
1243 L: linux-media@vger.kernel.org
1245 F: arch/arm/plat-samsung/s5p-dev-mfc.c
1246 F: drivers/media/platform/s5p-mfc/
1248 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1249 M: Kyungmin Park <kyungmin.park@samsung.com>
1250 M: Tomasz Stanislawski <t.stanislaws@samsung.com>
1251 L: linux-arm-kernel@lists.infradead.org
1252 L: linux-media@vger.kernel.org
1254 F: drivers/media/platform/s5p-tv/
1256 ARM/SHMOBILE ARM ARCHITECTURE
1257 M: Simon Horman <horms@verge.net.au>
1258 M: Magnus Damm <magnus.damm@gmail.com>
1259 L: linux-sh@vger.kernel.org
1260 W: http://oss.renesas.com
1261 Q: http://patchwork.kernel.org/project/linux-sh/list/
1262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1264 F: arch/arm/mach-shmobile/
1267 ARM/SOCFPGA ARCHITECTURE
1268 M: Dinh Nguyen <dinguyen@altera.com>
1270 F: arch/arm/mach-socfpga/
1272 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1273 M: Dinh Nguyen <dinguyen@altera.com>
1275 F: drivers/clk/socfpga/
1277 ARM/STI ARCHITECTURE
1278 M: Srinivas Kandagatla <srinivas.kandagatla@st.com>
1279 M: Stuart Menefy <stuart.menefy@st.com>
1280 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 L: kernel@stlinux.com
1282 W: http://www.stlinux.com
1284 F: arch/arm/mach-sti/
1286 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1287 M: Lennert Buytenhek <kernel@wantstofly.org>
1288 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1291 ARM/TETON BGA MACHINE SUPPORT
1292 M: "Mark F. Brown" <mark.brown314@gmail.com>
1293 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 ARM/THECUS N2100 MACHINE SUPPORT
1297 M: Lennert Buytenhek <kernel@wantstofly.org>
1298 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1301 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1302 M: Wan ZongShun <mcuos.com@gmail.com>
1303 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304 W: http://www.mcuos.com
1306 F: arch/arm/mach-w90x900/
1307 F: drivers/input/keyboard/w90p910_keypad.c
1308 F: drivers/input/touchscreen/w90p910_ts.c
1309 F: drivers/watchdog/nuc900_wdt.c
1310 F: drivers/net/ethernet/nuvoton/w90p910_ether.c
1311 F: drivers/mtd/nand/nuc900_nand.c
1312 F: drivers/rtc/rtc-nuc900.c
1313 F: drivers/spi/spi-nuc900.c
1314 F: drivers/usb/host/ehci-w90x900.c
1315 F: drivers/video/nuc900fb.c
1317 ARM/U300 MACHINE SUPPORT
1318 M: Linus Walleij <linus.walleij@linaro.org>
1319 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1321 F: arch/arm/mach-u300/
1322 F: drivers/i2c/busses/i2c-stu300.c
1323 F: drivers/rtc/rtc-coh901331.c
1324 F: drivers/watchdog/coh901327_wdt.c
1325 F: drivers/dma/coh901318*
1326 F: drivers/mfd/ab3100*
1327 F: drivers/rtc/rtc-ab3100.c
1328 F: drivers/rtc/rtc-coh901331.c
1329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1331 ARM/Ux500 ARM ARCHITECTURE
1332 M: Linus Walleij <linus.walleij@linaro.org>
1333 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1335 F: arch/arm/mach-ux500/
1336 F: drivers/clocksource/clksrc-dbx500-prcmu.c
1337 F: drivers/dma/ste_dma40*
1338 F: drivers/hwspinlock/u8500_hsem.c
1339 F: drivers/mfd/abx500*
1340 F: drivers/mfd/ab8500*
1341 F: drivers/mfd/dbx500*
1342 F: drivers/mfd/db8500*
1343 F: drivers/pinctrl/pinctrl-nomadik*
1344 F: drivers/rtc/rtc-ab8500.c
1345 F: drivers/rtc/rtc-pl031.c
1346 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1348 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1349 M: Ulf Hansson <ulf.hansson@linaro.org>
1350 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1351 T: git git://git.linaro.org/people/ulfh/clk.git
1353 F: drivers/clk/ux500/
1354 F: include/linux/platform_data/clk-ux500.h
1357 M: Russell King <linux@arm.linux.org.uk>
1358 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1359 W: http://www.arm.linux.org.uk/
1363 ARM/VOIPAC PXA270 SUPPORT
1364 M: Marek Vasut <marek.vasut@gmail.com>
1365 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1367 F: arch/arm/mach-pxa/vpac270.c
1368 F: arch/arm/mach-pxa/include/mach/vpac270.h
1370 ARM/VT8500 ARM ARCHITECTURE
1371 M: Tony Prisk <linux@prisktech.co.nz>
1372 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 F: arch/arm/mach-vt8500/
1375 F: drivers/clocksource/vt8500_timer.c
1376 F: drivers/i2c/busses/i2c-wmt.c
1377 F: drivers/mmc/host/wmt-sdmmc.c
1378 F: drivers/pwm/pwm-vt8500.c
1379 F: drivers/rtc/rtc-vt8500.c
1380 F: drivers/tty/serial/vt8500_serial.c
1381 F: drivers/usb/host/ehci-platform.c
1382 F: drivers/usb/host/uhci-platform.c
1383 F: drivers/video/vt8500lcdfb.*
1384 F: drivers/video/wm8505fb*
1385 F: drivers/video/wmt_ge_rops.*
1387 ARM/ZIPIT Z2 SUPPORT
1388 M: Marek Vasut <marek.vasut@gmail.com>
1389 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1391 F: arch/arm/mach-pxa/z2.c
1392 F: arch/arm/mach-pxa/include/mach/z2.h
1394 ARM/ZYNQ ARCHITECTURE
1395 M: Michal Simek <michal.simek@xilinx.com>
1396 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1397 W: http://wiki.xilinx.com
1398 T: git git://git.xilinx.com/linux-xlnx.git
1400 F: arch/arm/mach-zynq/
1401 F: drivers/cpuidle/cpuidle-zynq.c
1404 F: drivers/clocksource/cadence_ttc_timer.c
1405 F: drivers/mmc/host/sdhci-of-arasan.c
1408 M: Will Deacon <will.deacon@arm.com>
1409 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 F: drivers/iommu/arm-smmu.c
1413 ARM64 PORT (AARCH64 ARCHITECTURE)
1414 M: Catalin Marinas <catalin.marinas@arm.com>
1415 M: Will Deacon <will.deacon@arm.com>
1416 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 F: Documentation/arm64/
1421 AS3645A LED FLASH CONTROLLER DRIVER
1422 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1423 L: linux-media@vger.kernel.org
1424 T: git git://linuxtv.org/media_tree.git
1426 F: drivers/media/i2c/as3645a.c
1427 F: include/media/as3645a.h
1429 ASC7621 HARDWARE MONITOR DRIVER
1430 M: George Joseph <george.joseph@fairview5.com>
1431 L: lm-sensors@lm-sensors.org
1433 F: Documentation/hwmon/asc7621
1434 F: drivers/hwmon/asc7621.c
1436 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1437 M: Corentin Chary <corentin.chary@gmail.com>
1438 L: acpi4asus-user@lists.sourceforge.net
1439 L: platform-driver-x86@vger.kernel.org
1440 W: http://acpi4asus.sf.net
1442 F: drivers/platform/x86/asus*.c
1443 F: drivers/platform/x86/eeepc*.c
1445 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1446 M: Dan Williams <dan.j.williams@intel.com>
1447 W: http://sourceforge.net/projects/xscaleiop
1449 F: Documentation/crypto/async-tx-api.txt
1452 F: include/linux/dmaengine.h
1453 F: include/linux/async_tx.h
1456 M: Wolfram Sang <wsa@the-dreams.de>
1457 L: linux-i2c@vger.kernel.org
1459 F: drivers/misc/eeprom/at24.c
1460 F: include/linux/platform_data/at24.h
1462 ATA OVER ETHERNET (AOE) DRIVER
1463 M: "Ed L. Cashin" <ecashin@coraid.com>
1464 W: http://support.coraid.com/support/linux
1466 F: Documentation/aoe/
1467 F: drivers/block/aoe/
1469 ATHEROS ATH GENERIC UTILITIES
1470 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1471 L: linux-wireless@vger.kernel.org
1473 F: drivers/net/wireless/ath/*
1475 ATHEROS ATH5K WIRELESS DRIVER
1476 M: Jiri Slaby <jirislaby@gmail.com>
1477 M: Nick Kossifidis <mickflemm@gmail.com>
1478 M: "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1479 L: linux-wireless@vger.kernel.org
1480 L: ath5k-devel@lists.ath5k.org
1481 W: http://wireless.kernel.org/en/users/Drivers/ath5k
1483 F: drivers/net/wireless/ath/ath5k/
1485 ATHEROS ATH6KL WIRELESS DRIVER
1486 M: Kalle Valo <kvalo@qca.qualcomm.com>
1487 L: linux-wireless@vger.kernel.org
1488 W: http://wireless.kernel.org/en/users/Drivers/ath6kl
1489 T: git git://github.com/kvalo/ath.git
1491 F: drivers/net/wireless/ath/ath6kl/
1493 WILOCITY WIL6210 WIRELESS DRIVER
1494 M: Vladimir Kondratiev <qca_vkondrat@qca.qualcomm.com>
1495 L: linux-wireless@vger.kernel.org
1496 L: wil6210@qca.qualcomm.com
1498 W: http://wireless.kernel.org/en/users/Drivers/wil6210
1499 F: drivers/net/wireless/ath/wil6210/
1501 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1502 M: Christian Lamparter <chunkeey@googlemail.com>
1503 L: linux-wireless@vger.kernel.org
1504 W: http://wireless.kernel.org/en/users/Drivers/carl9170
1506 F: drivers/net/wireless/ath/carl9170/
1508 ATK0110 HWMON DRIVER
1509 M: Luca Tettamanti <kronos.it@gmail.com>
1510 L: lm-sensors@lm-sensors.org
1512 F: drivers/hwmon/asus_atk0110.c
1515 M: Ville Syrjala <syrjala@sci.fi>
1517 F: drivers/input/misc/ati_remote2.c
1519 ATLX ETHERNET DRIVERS
1520 M: Jay Cliburn <jcliburn@gmail.com>
1521 M: Chris Snook <chris.snook@gmail.com>
1522 L: netdev@vger.kernel.org
1523 W: http://sourceforge.net/projects/atl1
1524 W: http://atl1.sourceforge.net
1526 F: drivers/net/ethernet/atheros/
1529 M: Chas Williams <chas@cmf.nrl.navy.mil>
1530 L: linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1531 L: netdev@vger.kernel.org
1532 W: http://linux-atm.sourceforge.net
1535 F: include/linux/atm*
1536 F: include/uapi/linux/atm*
1538 ATMEL AT91 / AT32 MCI DRIVER
1539 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1541 F: drivers/mmc/host/atmel-mci.c
1542 F: drivers/mmc/host/atmel-mci-regs.h
1544 ATMEL AT91 / AT32 SERIAL DRIVER
1545 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1547 F: drivers/tty/serial/atmel_serial.c
1550 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1551 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1553 F: drivers/dma/at_hdmac.c
1554 F: drivers/dma/at_hdmac_regs.h
1555 F: include/linux/platform_data/dma-atmel.h
1558 M: Ludovic Desroches <ludovic.desroches@atmel.com>
1559 L: linux-i2c@vger.kernel.org
1561 F: drivers/i2c/busses/i2c-at91.c
1564 M: Josh Wu <josh.wu@atmel.com>
1565 L: linux-media@vger.kernel.org
1567 F: drivers/media/platform/soc_camera/atmel-isi.c
1568 F: include/media/atmel-isi.h
1571 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1572 L: linux-fbdev@vger.kernel.org
1574 F: drivers/video/atmel_lcdfb.c
1575 F: include/video/atmel_lcdc.h
1577 ATMEL MACB ETHERNET DRIVER
1578 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1580 F: drivers/net/ethernet/cadence/
1583 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1585 F: drivers/spi/spi-atmel.*
1587 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
1588 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1589 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1591 F: drivers/misc/atmel_tclib.c
1592 F: drivers/clocksource/tcb_clksrc.c
1595 M: Josh Wu <josh.wu@atmel.com>
1596 L: linux-input@vger.kernel.org
1598 F: drivers/input/touchscreen/atmel_tsadcc.c
1600 ATMEL USBA UDC DRIVER
1601 M: Nicolas Ferre <nicolas.ferre@atmel.com>
1602 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 F: drivers/usb/gadget/atmel_usba_udc.*
1606 ATMEL WIRELESS DRIVER
1607 M: Simon Kelley <simon@thekelleys.org.uk>
1608 L: linux-wireless@vger.kernel.org
1609 W: http://www.thekelleys.org.uk/atmel
1610 W: http://atmelwlandriver.sourceforge.net/
1612 F: drivers/net/wireless/atmel*
1614 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
1615 M: Bradley Grove <linuxdrivers@attotech.com>
1616 L: linux-scsi@vger.kernel.org
1617 W: http://www.attotech.com
1619 F: drivers/scsi/esas2r
1622 M: Eric Paris <eparis@redhat.com>
1623 L: linux-audit@redhat.com (subscribers-only)
1624 W: http://people.redhat.com/sgrubb/audit/
1625 T: git git://git.infradead.org/users/eparis/audit.git
1627 F: include/linux/audit.h
1628 F: include/uapi/linux/audit.h
1631 AUXILIARY DISPLAY DRIVERS
1632 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
1633 W: http://miguelojeda.es/auxdisplay.htm
1634 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
1636 F: drivers/auxdisplay/
1637 F: include/linux/cfag12864b.h
1640 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1641 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1642 W: http://www.atmel.com/products/AVR32/
1643 W: http://mirror.egtvedt.no/avr32linux.org/
1644 W: http://avrfreaks.net/
1648 AVR32/AT32AP MACHINE SUPPORT
1649 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
1650 M: Hans-Christian Egtvedt <egtvedt@samfundet.no>
1652 F: arch/avr32/mach-at32ap/
1655 M: Ralf Baechle <ralf@linux-mips.org>
1656 L: linux-hams@vger.kernel.org
1657 W: http://www.linux-ax25.org/
1659 F: include/uapi/linux/ax25.h
1660 F: include/net/ax25.h
1664 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
1665 L: linux-media@vger.kernel.org
1666 W: http://linuxtv.org
1667 T: git git://linuxtv.org/media_tree.git
1669 F: drivers/media/usb/dvb-usb-v2/az6007.c
1671 AZTECH FM RADIO RECEIVER DRIVER
1672 M: Hans Verkuil <hverkuil@xs4all.nl>
1673 L: linux-media@vger.kernel.org
1674 T: git git://linuxtv.org/media_tree.git
1675 W: http://linuxtv.org
1677 F: drivers/media/radio/radio-aztech*
1680 M: Stefano Brivio <stefano.brivio@polimi.it>
1681 L: linux-wireless@vger.kernel.org
1682 L: b43-dev@lists.infradead.org
1683 W: http://wireless.kernel.org/en/users/Drivers/b43
1685 F: drivers/net/wireless/b43/
1687 B43LEGACY WIRELESS DRIVER
1688 M: Larry Finger <Larry.Finger@lwfinger.net>
1689 M: Stefano Brivio <stefano.brivio@polimi.it>
1690 L: linux-wireless@vger.kernel.org
1691 L: b43-dev@lists.infradead.org
1692 W: http://wireless.kernel.org/en/users/Drivers/b43
1694 F: drivers/net/wireless/b43legacy/
1696 BACKLIGHT CLASS/SUBSYSTEM
1697 M: Jingoo Han <jg1.han@samsung.com>
1699 F: drivers/video/backlight/
1700 F: include/linux/backlight.h
1703 M: Marek Lindner <mareklindner@neomailbox.ch>
1704 M: Simon Wunderlich <sw@simonwunderlich.de>
1705 M: Antonio Quartulli <antonio@meshcoding.com>
1706 L: b.a.t.m.a.n@lists.open-mesh.org
1707 W: http://www.open-mesh.org/
1711 BAYCOM/HDLCDRV DRIVERS FOR AX.25
1712 M: Thomas Sailer <t.sailer@alumni.ethz.ch>
1713 L: linux-hams@vger.kernel.org
1714 W: http://www.baycom.org/~tom/ham/ham.html
1716 F: drivers/net/hamradio/baycom*
1718 BCACHE (BLOCK LAYER CACHE)
1719 M: Kent Overstreet <kmo@daterainc.com>
1720 L: linux-bcache@vger.kernel.org
1721 W: http://bcache.evilpiepirate.org
1723 F: drivers/md/bcache/
1727 F: Documentation/filesystems/befs.txt
1731 M: "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
1733 F: Documentation/filesystems/bfs.txt
1735 F: include/uapi/linux/bfs_fs.h
1737 BLACKFIN ARCHITECTURE
1738 M: Steven Miao <realmz6@gmail.com>
1739 L: adi-buildroot-devel@lists.sourceforge.net
1740 W: http://blackfin.uclinux.org
1744 BLACKFIN EMAC DRIVER
1745 L: adi-buildroot-devel@lists.sourceforge.net
1746 W: http://blackfin.uclinux.org
1748 F: drivers/net/ethernet/adi/
1751 L: adi-buildroot-devel@lists.sourceforge.net
1752 W: http://blackfin.uclinux.org
1754 F: drivers/rtc/rtc-bfin.c
1757 M: Sonic Zhang <sonic.zhang@analog.com>
1758 L: adi-buildroot-devel@lists.sourceforge.net
1759 W: http://blackfin.uclinux.org
1761 F: drivers/mmc/host/bfin_sdh.c
1763 BLACKFIN SERIAL DRIVER
1764 M: Sonic Zhang <sonic.zhang@analog.com>
1765 L: adi-buildroot-devel@lists.sourceforge.net
1766 W: http://blackfin.uclinux.org
1768 F: drivers/tty/serial/bfin_uart.c
1770 BLACKFIN WATCHDOG DRIVER
1771 L: adi-buildroot-devel@lists.sourceforge.net
1772 W: http://blackfin.uclinux.org
1774 F: drivers/watchdog/bfin_wdt.c
1776 BLACKFIN I2C TWI DRIVER
1777 M: Sonic Zhang <sonic.zhang@analog.com>
1778 L: adi-buildroot-devel@lists.sourceforge.net
1779 W: http://blackfin.uclinux.org/
1781 F: drivers/i2c/busses/i2c-bfin-twi.c
1783 BLACKFIN MEDIA DRIVER
1784 M: Scott Jiang <scott.jiang.linux@gmail.com>
1785 L: adi-buildroot-devel@lists.sourceforge.net
1786 W: http://blackfin.uclinux.org/
1788 F: drivers/media/platform/blackfin/
1789 F: drivers/media/i2c/adv7183*
1790 F: drivers/media/i2c/vs6624*
1792 BLINKM RGB LED DRIVER
1793 M: Jan-Simon Moeller <jansimon.moeller@gmx.de>
1795 F: drivers/leds/leds-blinkm.c
1798 M: Jens Axboe <axboe@kernel.dk>
1799 T: git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
1804 M: Joern Engel <joern@lazybastard.org>
1805 L: linux-mtd@lists.infradead.org
1807 F: drivers/mtd/devices/block2mtd.c
1810 M: Marcel Holtmann <marcel@holtmann.org>
1811 M: Gustavo Padovan <gustavo@padovan.org>
1812 M: Johan Hedberg <johan.hedberg@gmail.com>
1813 L: linux-bluetooth@vger.kernel.org
1814 W: http://www.bluez.org/
1815 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1816 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1818 F: drivers/bluetooth/
1821 M: Marcel Holtmann <marcel@holtmann.org>
1822 M: Gustavo Padovan <gustavo@padovan.org>
1823 M: Johan Hedberg <johan.hedberg@gmail.com>
1824 L: linux-bluetooth@vger.kernel.org
1825 W: http://www.bluez.org/
1826 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
1827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
1830 F: include/net/bluetooth/
1833 M: Jay Vosburgh <fubar@us.ibm.com>
1834 M: Veaceslav Falico <vfalico@redhat.com>
1835 M: Andy Gospodarek <andy@greyhouse.net>
1836 L: netdev@vger.kernel.org
1837 W: http://sourceforge.net/projects/bonding/
1839 F: drivers/net/bonding/
1840 F: include/uapi/linux/if_bonding.h
1842 BROADCOM B44 10/100 ETHERNET DRIVER
1843 M: Gary Zambrano <zambrano@broadcom.com>
1844 L: netdev@vger.kernel.org
1846 F: drivers/net/ethernet/broadcom/b44.*
1848 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
1849 M: Michael Chan <mchan@broadcom.com>
1850 L: netdev@vger.kernel.org
1852 F: drivers/net/ethernet/broadcom/bnx2.*
1853 F: drivers/net/ethernet/broadcom/bnx2_*
1855 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
1856 M: Ariel Elior <ariele@broadcom.com>
1857 L: netdev@vger.kernel.org
1859 F: drivers/net/ethernet/broadcom/bnx2x/
1861 BROADCOM BCM281XX/BCM11XXX ARM ARCHITECTURE
1862 M: Christian Daudt <bcm@fixthebug.org>
1863 M: Matt Porter <mporter@linaro.org>
1864 L: bcm-kernel-feedback-list@broadcom.com
1865 T: git git://git.github.com/broadcom/bcm11351
1867 F: arch/arm/mach-bcm/
1868 F: arch/arm/boot/dts/bcm113*
1869 F: arch/arm/boot/dts/bcm281*
1870 F: arch/arm/configs/bcm_defconfig
1871 F: drivers/mmc/host/sdhci_bcm_kona.c
1872 F: drivers/clocksource/bcm_kona_timer.c
1874 BROADCOM BCM2835 ARM ARCHICTURE
1875 M: Stephen Warren <swarren@wwwdotorg.org>
1876 L: linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
1877 T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-rpi.git
1879 F: arch/arm/mach-bcm2835/
1880 F: arch/arm/boot/dts/bcm2835*
1881 F: arch/arm/configs/bcm2835_defconfig
1882 F: drivers/*/*bcm2835*
1884 BROADCOM TG3 GIGABIT ETHERNET DRIVER
1885 M: Nithin Nayak Sujir <nsujir@broadcom.com>
1886 M: Michael Chan <mchan@broadcom.com>
1887 L: netdev@vger.kernel.org
1889 F: drivers/net/ethernet/broadcom/tg3.*
1891 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
1892 M: Brett Rudley <brudley@broadcom.com>
1893 M: Arend van Spriel <arend@broadcom.com>
1894 M: Franky (Zhenhui) Lin <frankyl@broadcom.com>
1895 M: Hante Meuleman <meuleman@broadcom.com>
1896 L: linux-wireless@vger.kernel.org
1897 L: brcm80211-dev-list@broadcom.com
1899 F: drivers/net/wireless/brcm80211/
1901 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
1902 M: Eddie Wai <eddie.wai@broadcom.com>
1903 L: linux-scsi@vger.kernel.org
1905 F: drivers/scsi/bnx2fc/
1907 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
1908 M: Eddie Wai <eddie.wai@broadcom.com>
1909 L: linux-scsi@vger.kernel.org
1911 F: drivers/scsi/bnx2i/
1913 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
1914 M: Rafał Miłecki <zajec5@gmail.com>
1915 L: linux-wireless@vger.kernel.org
1918 F: include/linux/bcma/
1920 BROCADE BFA FC SCSI DRIVER
1921 M: Anil Gurumurthy <agurumur@brocade.com>
1922 M: Vijaya Mohan Guvva <vmohan@brocade.com>
1923 L: linux-scsi@vger.kernel.org
1925 F: drivers/scsi/bfa/
1927 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
1928 M: Rasesh Mody <rmody@brocade.com>
1929 L: netdev@vger.kernel.org
1931 F: drivers/net/ethernet/brocade/bna/
1933 BSG (block layer generic sg v4 driver)
1934 M: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
1935 L: linux-scsi@vger.kernel.org
1938 F: include/linux/bsg.h
1939 F: include/uapi/linux/bsg.h
1942 M: Clemens Ladisch <clemens@ladisch.de>
1943 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1944 T: git git://git.alsa-project.org/alsa-kernel.git
1946 F: Documentation/sound/alsa/Bt87x.txt
1947 F: sound/pci/bt87x.c
1950 M: Michael Buesch <m@bues.ch>
1951 W: http://bu3sch.de/btgpio.php
1953 F: drivers/gpio/gpio-bt8xx.c
1956 M: Chris Mason <clm@fb.com>
1957 M: Josef Bacik <jbacik@fb.com>
1958 L: linux-btrfs@vger.kernel.org
1959 W: http://btrfs.wiki.kernel.org/
1960 Q: http://patchwork.kernel.org/project/linux-btrfs/list/
1961 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
1963 F: Documentation/filesystems/btrfs.txt
1966 BTTV VIDEO4LINUX DRIVER
1967 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
1968 L: linux-media@vger.kernel.org
1969 W: http://linuxtv.org
1970 T: git git://linuxtv.org/media_tree.git
1972 F: Documentation/video4linux/bttv/
1973 F: drivers/media/pci/bt8xx/bttv*
1975 BUSLOGIC SCSI DRIVER
1976 M: Khalid Aziz <khalid@gonehiking.org>
1977 L: linux-scsi@vger.kernel.org
1979 F: drivers/scsi/BusLogic.*
1980 F: drivers/scsi/FlashPoint.*
1982 C-MEDIA CMI8788 DRIVER
1983 M: Clemens Ladisch <clemens@ladisch.de>
1984 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
1985 T: git git://git.alsa-project.org/alsa-kernel.git
1987 F: sound/pci/oxygen/
1990 M: Mark Salter <msalter@redhat.com>
1991 M: Aurelien Jacquiot <a-jacquiot@ti.com>
1992 L: linux-c6x-dev@linux-c6x.org
1993 W: http://www.linux-c6x.org/wiki/index.php/Main_Page
1997 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
1998 M: David Howells <dhowells@redhat.com>
1999 L: linux-cachefs@redhat.com
2001 F: Documentation/filesystems/caching/cachefiles.txt
2004 CADET FM/AM RADIO RECEIVER DRIVER
2005 M: Hans Verkuil <hverkuil@xs4all.nl>
2006 L: linux-media@vger.kernel.org
2007 T: git git://linuxtv.org/media_tree.git
2008 W: http://linuxtv.org
2010 F: drivers/media/radio/radio-cadet*
2012 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2013 M: Jonathan Corbet <corbet@lwn.net>
2014 L: linux-media@vger.kernel.org
2015 T: git git://linuxtv.org/media_tree.git
2017 F: Documentation/video4linux/cafe_ccic
2018 F: drivers/media/platform/marvell-ccic/
2021 M: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2022 L: netdev@vger.kernel.org
2024 F: Documentation/networking/caif/
2025 F: drivers/net/caif/
2026 F: include/uapi/linux/caif/
2027 F: include/net/caif/
2030 CALGARY x86-64 IOMMU
2031 M: Muli Ben-Yehuda <muli@il.ibm.com>
2032 M: "Jon D. Mason" <jdmason@kudzu.us>
2033 L: discuss@x86-64.org
2035 F: arch/x86/kernel/pci-calgary_64.c
2036 F: arch/x86/kernel/tce_64.c
2037 F: arch/x86/include/asm/calgary.h
2038 F: arch/x86/include/asm/tce.h
2041 M: Oliver Hartkopp <socketcan@hartkopp.net>
2042 L: linux-can@vger.kernel.org
2043 W: http://gitorious.org/linux-can
2044 T: git git://gitorious.org/linux-can/linux-can-next.git
2046 F: Documentation/networking/can.txt
2048 F: include/linux/can/core.h
2049 F: include/uapi/linux/can.h
2050 F: include/uapi/linux/can/bcm.h
2051 F: include/uapi/linux/can/raw.h
2052 F: include/uapi/linux/can/gw.h
2055 M: Wolfgang Grandegger <wg@grandegger.com>
2056 M: Marc Kleine-Budde <mkl@pengutronix.de>
2057 L: linux-can@vger.kernel.org
2058 W: http://gitorious.org/linux-can
2059 T: git git://gitorious.org/linux-can/linux-can-next.git
2062 F: include/linux/can/dev.h
2063 F: include/linux/can/platform/
2064 F: include/uapi/linux/can/error.h
2065 F: include/uapi/linux/can/netlink.h
2068 M: Serge Hallyn <serge.hallyn@canonical.com>
2069 L: linux-security-module@vger.kernel.org
2071 F: include/linux/capability.h
2072 F: include/uapi/linux/capability.h
2073 F: security/capability.c
2074 F: security/commoncap.c
2075 F: kernel/capability.c
2077 CELL BROADBAND ENGINE ARCHITECTURE
2078 M: Arnd Bergmann <arnd@arndb.de>
2079 L: linuxppc-dev@lists.ozlabs.org
2080 L: cbe-oss-dev@lists.ozlabs.org
2081 W: http://www.ibm.com/developerworks/power/cell/
2083 F: arch/powerpc/include/asm/cell*.h
2084 F: arch/powerpc/include/asm/spu*.h
2085 F: arch/powerpc/include/uapi/asm/spu*.h
2086 F: arch/powerpc/oprofile/*cell*
2087 F: arch/powerpc/platforms/cell/
2089 CEPH DISTRIBUTED FILE SYSTEM CLIENT
2090 M: Sage Weil <sage@inktank.com>
2091 L: ceph-devel@vger.kernel.org
2093 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2095 F: Documentation/filesystems/ceph.txt
2098 F: include/linux/ceph/
2099 F: include/linux/crush/
2101 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2102 L: linux-usb@vger.kernel.org
2104 F: Documentation/usb/WUSB-Design-overview.txt
2105 F: Documentation/usb/wusb-cbaf
2106 F: drivers/usb/host/hwa-hc.c
2107 F: drivers/usb/host/whci/
2108 F: drivers/usb/wusbcore/
2109 F: include/linux/usb/wusb*
2111 CFAG12864B LCD DRIVER
2112 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2113 W: http://miguelojeda.es/auxdisplay.htm
2114 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2116 F: drivers/auxdisplay/cfag12864b.c
2117 F: include/linux/cfag12864b.h
2119 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2120 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2121 W: http://miguelojeda.es/auxdisplay.htm
2122 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2124 F: drivers/auxdisplay/cfag12864bfb.c
2125 F: include/linux/cfag12864b.h
2127 CFG80211 and NL80211
2128 M: Johannes Berg <johannes@sipsolutions.net>
2129 L: linux-wireless@vger.kernel.org
2130 W: http://wireless.kernel.org/
2131 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2132 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2134 F: include/uapi/linux/nl80211.h
2135 F: include/net/cfg80211.h
2137 X: net/wireless/wext*
2139 CHAR and MISC DRIVERS
2140 M: Arnd Bergmann <arnd@arndb.de>
2141 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2142 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2148 M: Andy Whitcroft <apw@canonical.com>
2149 M: Joe Perches <joe@perches.com>
2151 F: scripts/checkpatch.pl
2153 CHINESE DOCUMENTATION
2154 M: Harry Wei <harryxiyou@gmail.com>
2155 L: xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2156 L: linux-kernel@zh-kernel.org (moderated for non-subscribers)
2158 F: Documentation/zh_CN/
2160 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2161 M: Peter Chen <Peter.Chen@freescale.com>
2162 T: git://github.com/hzpeterchen/linux-usb.git
2163 L: linux-usb@vger.kernel.org
2165 F: drivers/usb/chipidea/
2167 CHROME HARDWARE PLATFORM SUPPORT
2168 M: Olof Johansson <olof@lixom.net>
2170 F: drivers/platform/chrome/
2172 CISCO VIC ETHERNET NIC DRIVER
2173 M: Christian Benvenuti <benve@cisco.com>
2174 M: Sujith Sankar <ssujith@cisco.com>
2175 M: Govindarajulu Varadarajan <govindarajulu90@gmail.com>
2176 M: Neel Patel <neepatel@cisco.com>
2177 M: Nishank Trivedi <nistrive@cisco.com>
2179 F: drivers/net/ethernet/cisco/enic/
2181 CISCO VIC LOW LATENCY NIC DRIVER
2182 M: Upinder Malhi <umalhi@cisco.com>
2184 F: drivers/infiniband/hw/usnic
2186 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2187 M: Hartley Sweeten <hsweeten@visionengravers.com>
2188 L: netdev@vger.kernel.org
2190 F: drivers/net/ethernet/cirrus/ep93xx_eth.c
2192 CIRRUS LOGIC EP93XX OHCI USB HOST DRIVER
2193 M: Lennert Buytenhek <kernel@wantstofly.org>
2194 L: linux-usb@vger.kernel.org
2196 F: drivers/usb/host/ohci-ep93xx.c
2198 CIRRUS LOGIC CS4270 SOUND DRIVER
2199 M: Timur Tabi <timur@tabi.org>
2200 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
2202 F: sound/soc/codecs/cs4270*
2205 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2206 L: linux-kernel@vger.kernel.org
2209 F: include/linux/cleancache.h
2212 M: Russell King <linux@arm.linux.org.uk>
2214 F: include/linux/clk.h
2216 CLOCKSOURCE, CLOCKEVENT DRIVERS
2217 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2218 M: Thomas Gleixner <tglx@linutronix.de>
2219 L: linux-kernel@vger.kernel.org
2220 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2222 F: drivers/clocksource
2224 CISCO FCOE HBA DRIVER
2225 M: Hiral Patel <hiralpat@cisco.com>
2226 M: Suma Ramars <sramars@cisco.com>
2227 M: Brian Uchino <buchino@cisco.com>
2228 L: linux-scsi@vger.kernel.org
2230 F: drivers/scsi/fnic/
2233 M: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2234 M: Daniel Oliveira Nascimento <don@syst.com.br>
2235 L: platform-driver-x86@vger.kernel.org
2237 F: drivers/platform/x86/classmate-laptop.c
2239 COCCINELLE/Semantic Patches (SmPL)
2240 M: Julia Lawall <Julia.Lawall@lip6.fr>
2241 M: Gilles Muller <Gilles.Muller@lip6.fr>
2242 M: Nicolas Palix <nicolas.palix@imag.fr>
2243 M: Michal Marek <mmarek@suse.cz>
2244 L: cocci@systeme.lip6.fr (moderated for non-subscribers)
2245 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2246 W: http://coccinelle.lip6.fr/
2248 F: Documentation/coccinelle.txt
2249 F: scripts/coccinelle/
2250 F: scripts/coccicheck
2253 M: Jan Harkes <jaharkes@cs.cmu.edu>
2255 L: codalist@coda.cs.cmu.edu
2256 W: http://www.coda.cs.cmu.edu/
2258 F: Documentation/filesystems/coda.txt
2260 F: include/linux/coda*.h
2261 F: include/uapi/linux/coda*.h
2263 COMMON CLK FRAMEWORK
2264 M: Mike Turquette <mturquette@linaro.org>
2265 L: linux-arm-kernel@lists.infradead.org (same as CLK API & CLKDEV)
2266 T: git git://git.linaro.org/people/mturquette/linux.git
2269 X: drivers/clk/clkdev.c
2270 F: include/linux/clk-pr*
2271 F: include/linux/clk/
2273 COMMON INTERNET FILE SYSTEM (CIFS)
2274 M: Steve French <sfrench@samba.org>
2275 L: linux-cifs@vger.kernel.org
2276 L: samba-technical@lists.samba.org (moderated for non-subscribers)
2277 W: http://linux-cifs.samba.org/
2278 Q: http://patchwork.ozlabs.org/project/linux-cifs-client/list/
2279 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6.git
2281 F: Documentation/filesystems/cifs.txt
2284 COMPACTPCI HOTPLUG CORE
2285 M: Scott Murray <scott@spiteful.org>
2286 L: linux-pci@vger.kernel.org
2288 F: drivers/pci/hotplug/cpci_hotplug*
2290 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2291 M: Scott Murray <scott@spiteful.org>
2292 L: linux-pci@vger.kernel.org
2294 F: drivers/pci/hotplug/cpcihp_zt5550.*
2296 COMPACTPCI HOTPLUG GENERIC DRIVER
2297 M: Scott Murray <scott@spiteful.org>
2298 L: linux-pci@vger.kernel.org
2300 F: drivers/pci/hotplug/cpcihp_generic.c
2302 COMPAL LAPTOP SUPPORT
2303 M: Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2304 L: platform-driver-x86@vger.kernel.org
2306 F: drivers/platform/x86/compal-laptop.c
2308 CONEXANT ACCESSRUNNER USB DRIVER
2309 M: Simon Arlott <cxacru@fire.lp0.eu>
2310 L: accessrunner-general@lists.sourceforge.net
2311 W: http://accessrunner.sourceforge.net/
2313 F: drivers/usb/atm/cxacru.c
2316 M: Joel Becker <jlbec@evilplan.org>
2317 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/configfs.git
2320 F: include/linux/configfs.h
2323 M: Evgeniy Polyakov <zbr@ioremap.net>
2324 L: netdev@vger.kernel.org
2326 F: drivers/connector/
2328 CONTROL GROUPS (CGROUPS)
2329 M: Tejun Heo <tj@kernel.org>
2330 M: Li Zefan <lizefan@huawei.com>
2331 L: containers@lists.linux-foundation.org
2332 L: cgroups@vger.kernel.org
2333 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2335 F: include/linux/cgroup*
2339 CORETEMP HARDWARE MONITORING DRIVER
2340 M: Fenghua Yu <fenghua.yu@intel.com>
2341 L: lm-sensors@lm-sensors.org
2343 F: Documentation/hwmon/coretemp
2344 F: drivers/hwmon/coretemp.c
2346 COSA/SRP SYNC SERIAL DRIVER
2347 M: Jan "Yenya" Kasprzak <kas@fi.muni.cz>
2348 W: http://www.fi.muni.cz/~kas/cosa/
2350 F: drivers/net/wan/cosa*
2352 CPMAC ETHERNET DRIVER
2353 M: Florian Fainelli <florian@openwrt.org>
2354 L: netdev@vger.kernel.org
2356 F: drivers/net/ethernet/ti/cpmac.c
2358 CPU FREQUENCY DRIVERS
2359 M: Rafael J. Wysocki <rjw@rjwysocki.net>
2360 M: Viresh Kumar <viresh.kumar@linaro.org>
2361 L: cpufreq@vger.kernel.org
2362 L: linux-pm@vger.kernel.org
2364 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2365 T: git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
2367 F: include/linux/cpufreq.h
2369 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
2370 M: Viresh Kumar <viresh.kumar@linaro.org>
2371 M: Sudeep Holla <sudeep.holla@arm.com>
2372 L: cpufreq@vger.kernel.org
2373 L: linux-pm@vger.kernel.org
2374 W: http://www.arm.com/products/processors/technologies/biglittleprocessing.php
2376 F: drivers/cpufreq/arm_big_little.h
2377 F: drivers/cpufreq/arm_big_little.c
2378 F: drivers/cpufreq/arm_big_little_dt.c
2380 CPUIDLE DRIVER - ARM BIG LITTLE
2381 M: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2382 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2383 L: linux-pm@vger.kernel.org
2384 L: linux-arm-kernel@lists.infradead.org
2385 T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2387 F: drivers/cpuidle/cpuidle-big_little.c
2390 M: Rafael J. Wysocki <rjw@rjwysocki.net>
2391 M: Daniel Lezcano <daniel.lezcano@linaro.org>
2392 L: linux-pm@vger.kernel.org
2394 T: git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
2395 F: drivers/cpuidle/*
2396 F: include/linux/cpuidle.h
2399 M: "H. Peter Anvin" <hpa@zytor.com>
2401 F: arch/x86/kernel/cpuid.c
2402 F: arch/x86/kernel/msr.c
2404 CPU POWER MONITORING SUBSYSTEM
2405 M: Dominik Brodowski <linux@dominikbrodowski.net>
2406 M: Thomas Renninger <trenn@suse.de>
2408 F: tools/power/cpupower/
2411 M: Li Zefan <lizefan@huawei.com>
2412 L: cgroups@vger.kernel.org
2413 W: http://www.bullopensource.org/cpuset/
2414 W: http://oss.sgi.com/projects/cpusets/
2415 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
2417 F: Documentation/cgroups/cpusets.txt
2418 F: include/linux/cpuset.h
2422 W: http://sourceforge.net/projects/cramfs/
2423 S: Orphan / Obsolete
2424 F: Documentation/filesystems/cramfs.txt
2428 M: Mikael Starvik <starvik@axis.com>
2429 M: Jesper Nilsson <jesper.nilsson@axis.com>
2430 L: linux-cris-kernel@axis.com
2431 W: http://developer.axis.com
2434 F: drivers/tty/serial/crisv10.*
2437 M: Herbert Xu <herbert@gondor.apana.org.au>
2438 M: "David S. Miller" <davem@davemloft.net>
2439 L: linux-crypto@vger.kernel.org
2440 T: git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
2442 F: Documentation/crypto/
2448 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
2449 M: Neil Horman <nhorman@tuxdriver.com>
2450 L: linux-crypto@vger.kernel.org
2452 F: crypto/ansi_cprng.c
2455 CS5535 Audio ALSA driver
2456 M: Jaya Kumar <jayakumar.alsa@gmail.com>
2458 F: sound/pci/cs5535audio/
2461 M: Solomon Peachy <pizza@shaftnet.org>
2463 F: drivers/net/wireless/cw1200/
2465 CX18 VIDEO4LINUX DRIVER
2466 M: Andy Walls <awalls@md.metrocast.net>
2467 L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
2468 L: linux-media@vger.kernel.org
2469 T: git git://linuxtv.org/media_tree.git
2470 W: http://linuxtv.org
2471 W: http://www.ivtvdriver.org/index.php/Cx18
2473 F: Documentation/video4linux/cx18.txt
2474 F: drivers/media/pci/cx18/
2475 F: include/uapi/linux/ivtv*
2477 CX2341X MPEG ENCODER HELPER MODULE
2478 M: Hans Verkuil <hverkuil@xs4all.nl>
2479 L: linux-media@vger.kernel.org
2480 T: git git://linuxtv.org/media_tree.git
2481 W: http://linuxtv.org
2483 F: drivers/media/common/cx2341x*
2484 F: include/media/cx2341x*
2486 CX88 VIDEO4LINUX DRIVER
2487 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
2488 L: linux-media@vger.kernel.org
2489 W: http://linuxtv.org
2490 T: git git://linuxtv.org/media_tree.git
2492 F: Documentation/video4linux/cx88/
2493 F: drivers/media/pci/cx88/
2495 CXD2820R MEDIA DRIVER
2496 M: Antti Palosaari <crope@iki.fi>
2497 L: linux-media@vger.kernel.org
2498 W: http://linuxtv.org/
2499 W: http://palosaari.fi/linux/
2500 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2501 T: git git://linuxtv.org/anttip/media_tree.git
2503 F: drivers/media/dvb-frontends/cxd2820r*
2505 CXGB3 ETHERNET DRIVER (CXGB3)
2506 M: Santosh Raspatur <santosh@chelsio.com>
2507 L: netdev@vger.kernel.org
2508 W: http://www.chelsio.com
2510 F: drivers/net/ethernet/chelsio/cxgb3/
2512 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
2513 M: Steve Wise <swise@chelsio.com>
2514 L: linux-rdma@vger.kernel.org
2515 W: http://www.openfabrics.org
2517 F: drivers/infiniband/hw/cxgb3/
2519 CXGB4 ETHERNET DRIVER (CXGB4)
2520 M: Dimitris Michailidis <dm@chelsio.com>
2521 L: netdev@vger.kernel.org
2522 W: http://www.chelsio.com
2524 F: drivers/net/ethernet/chelsio/cxgb4/
2526 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
2527 M: Steve Wise <swise@chelsio.com>
2528 L: linux-rdma@vger.kernel.org
2529 W: http://www.openfabrics.org
2531 F: drivers/infiniband/hw/cxgb4/
2533 CXGB4VF ETHERNET DRIVER (CXGB4VF)
2534 M: Casey Leedom <leedom@chelsio.com>
2535 L: netdev@vger.kernel.org
2536 W: http://www.chelsio.com
2538 F: drivers/net/ethernet/chelsio/cxgb4vf/
2540 STMMAC ETHERNET DRIVER
2541 M: Giuseppe Cavallaro <peppe.cavallaro@st.com>
2542 L: netdev@vger.kernel.org
2543 W: http://www.stlinux.com
2545 F: drivers/net/ethernet/stmicro/stmmac/
2548 M: Russell King <linux@arm.linux.org.uk>
2549 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2550 W: http://www.arm.linux.org.uk/
2552 F: drivers/video/cyber2000fb.*
2554 CYCLADES ASYNC MUX DRIVER
2555 W: http://www.cyclades.com/
2557 F: drivers/tty/cyclades.c
2558 F: include/linux/cyclades.h
2559 F: include/uapi/linux/cyclades.h
2561 CYCLADES PC300 DRIVER
2562 W: http://www.cyclades.com/
2564 F: drivers/net/wan/pc300*
2566 CYPRESS_FIRMWARE MEDIA DRIVER
2567 M: Antti Palosaari <crope@iki.fi>
2568 L: linux-media@vger.kernel.org
2569 W: http://linuxtv.org/
2570 W: http://palosaari.fi/linux/
2571 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2572 T: git git://linuxtv.org/anttip/media_tree.git
2574 F: drivers/media/common/cypress_firmware*
2576 CYTTSP TOUCHSCREEN DRIVER
2577 M: Ferruh Yigit <fery@cypress.com>
2578 L: linux-input@vger.kernel.org
2580 F: drivers/input/touchscreen/cyttsp*
2581 F: include/linux/input/cyttsp.h
2583 DAMA SLAVE for AX.25
2584 M: Joerg Reuter <jreuter@yaina.de>
2585 W: http://yaina.de/jreuter/
2586 W: http://www.qsl.net/dl1bke/
2587 L: linux-hams@vger.kernel.org
2589 F: net/ax25/af_ax25.c
2590 F: net/ax25/ax25_dev.c
2591 F: net/ax25/ax25_ds_*
2592 F: net/ax25/ax25_in.c
2593 F: net/ax25/ax25_out.c
2594 F: net/ax25/ax25_timer.c
2595 F: net/ax25/sysctl_net_ax25.c
2597 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
2598 L: netdev@vger.kernel.org
2600 F: Documentation/networking/dmfe.txt
2601 F: drivers/net/ethernet/dec/tulip/dmfe.c
2603 DC390/AM53C974 SCSI driver
2604 M: Kurt Garloff <garloff@suse.de>
2605 W: http://www.garloff.de/kurt/linux/dc390/
2606 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
2608 F: drivers/scsi/tmscsim.*
2611 M: Oliver Neukum <oliver@neukum.org>
2612 M: Ali Akcaagac <aliakc@web.de>
2613 M: Jamie Lenehan <lenehan@twibble.org>
2614 L: dc395x@twibble.org
2615 W: http://twibble.org/dist/dc395x/
2616 W: http://lists.twibble.org/mailman/listinfo/dc395x/
2618 F: Documentation/scsi/dc395x.txt
2619 F: drivers/scsi/dc395x.*
2622 M: Gerrit Renker <gerrit@erg.abdn.ac.uk>
2623 L: dccp@vger.kernel.org
2624 W: http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
2626 F: include/linux/dccp.h
2627 F: include/uapi/linux/dccp.h
2628 F: include/linux/tfrc.h
2631 DECnet NETWORK LAYER
2632 W: http://linux-decnet.sourceforge.net
2633 L: linux-decnet-user@lists.sourceforge.net
2635 F: Documentation/networking/decnet.txt
2638 DEFXX FDDI NETWORK DRIVER
2639 M: "Maciej W. Rozycki" <macro@linux-mips.org>
2641 F: drivers/net/fddi/defxx.*
2644 M: Matthew Garrett <mjg59@srcf.ucam.org>
2645 L: platform-driver-x86@vger.kernel.org
2647 F: drivers/platform/x86/dell-laptop.c
2649 DELL LAPTOP SMM DRIVER
2650 M: Guenter Roeck <linux@roeck-us.net>
2651 F: drivers/char/i8k.c
2652 F: include/uapi/linux/i8k.h
2654 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
2655 M: Doug Warzecha <Douglas_Warzecha@dell.com>
2657 F: Documentation/dcdbas.txt
2658 F: drivers/firmware/dcdbas.*
2660 DELL WMI EXTRAS DRIVER
2661 M: Matthew Garrett <mjg59@srcf.ucam.org>
2663 F: drivers/platform/x86/dell-wmi.c
2665 DESIGNWARE USB2 DRD IP DRIVER
2666 M: Paul Zimmerman <paulz@synopsys.com>
2667 L: linux-usb@vger.kernel.org
2669 F: drivers/usb/dwc2/
2671 DESIGNWARE USB3 DRD IP DRIVER
2672 M: Felipe Balbi <balbi@ti.com>
2673 L: linux-usb@vger.kernel.org
2674 L: linux-omap@vger.kernel.org
2675 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
2677 F: drivers/usb/dwc3/
2679 DEVICE FREQUENCY (DEVFREQ)
2680 M: MyungJoo Ham <myungjoo.ham@samsung.com>
2681 M: Kyungmin Park <kyungmin.park@samsung.com>
2682 L: linux-pm@vger.kernel.org
2686 DEVICE NUMBER REGISTRY
2687 M: Torben Mathiasen <device@lanana.org>
2688 W: http://lanana.org/docs/device-list/index.html
2692 M: Alasdair Kergon <agk@redhat.com>
2693 M: Mike Snitzer <snitzer@redhat.com>
2694 M: dm-devel@redhat.com
2695 L: dm-devel@redhat.com
2696 W: http://sources.redhat.com/dm
2697 Q: http://patchwork.kernel.org/project/dm-devel/list/
2698 T: git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
2699 T: quilt http://people.redhat.com/agk/patches/linux/editing/
2701 F: Documentation/device-mapper/
2703 F: drivers/md/persistent-data/
2704 F: include/linux/device-mapper.h
2705 F: include/linux/dm-*.h
2706 F: include/uapi/linux/dm-*.h
2708 DIGI NEO AND CLASSIC PCI PRODUCTS
2709 M: Lidza Louina <lidza.louina@gmail.com>
2710 L: driverdev-devel@linuxdriverproject.org
2712 F: drivers/staging/dgnc/
2714 DIGI EPCA PCI PRODUCTS
2715 M: Lidza Louina <lidza.louina@gmail.com>
2716 L: driverdev-devel@linuxdriverproject.org
2718 F: drivers/staging/dgap/
2720 DIOLAN U2C-12 I2C DRIVER
2721 M: Guenter Roeck <linux@roeck-us.net>
2722 L: linux-i2c@vger.kernel.org
2724 F: drivers/i2c/busses/i2c-diolan-u2c.c
2726 DIRECTORY NOTIFICATION (DNOTIFY)
2727 M: Eric Paris <eparis@parisplace.org>
2729 F: Documentation/filesystems/dnotify.txt
2730 F: fs/notify/dnotify/
2731 F: include/linux/dnotify.h
2733 DISK GEOMETRY AND PARTITION HANDLING
2734 M: Andries Brouwer <aeb@cwi.nl>
2735 W: http://www.win.tue.nl/~aeb/linux/Large-Disk.html
2736 W: http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
2737 W: http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
2741 M: Jan Kara <jack@suse.cz>
2743 F: Documentation/filesystems/quota.txt
2745 F: include/linux/quota*.h
2746 F: include/uapi/linux/quota*.h
2748 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
2749 M: Bernie Thompson <bernie@plugable.com>
2750 L: linux-fbdev@vger.kernel.org
2752 W: http://plugable.com/category/projects/udlfb/
2753 F: drivers/video/udlfb.c
2754 F: include/video/udlfb.h
2755 F: Documentation/fb/udlfb.txt
2757 DISTRIBUTED LOCK MANAGER (DLM)
2758 M: Christine Caulfield <ccaulfie@redhat.com>
2759 M: David Teigland <teigland@redhat.com>
2760 L: cluster-devel@redhat.com
2761 W: http://sources.redhat.com/cluster/
2762 T: git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
2766 DMA BUFFER SHARING FRAMEWORK
2767 M: Sumit Semwal <sumit.semwal@linaro.org>
2769 L: linux-media@vger.kernel.org
2770 L: dri-devel@lists.freedesktop.org
2771 L: linaro-mm-sig@lists.linaro.org
2772 F: drivers/base/dma-buf*
2773 F: include/linux/dma-buf*
2774 F: Documentation/dma-buf-sharing.txt
2775 T: git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
2777 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
2778 M: Vinod Koul <vinod.koul@intel.com>
2779 M: Dan Williams <dan.j.williams@intel.com>
2780 L: dmaengine@vger.kernel.org
2781 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
2784 F: include/linux/dma*
2785 T: git git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx.git
2786 T: git git://git.infradead.org/users/vkoul/slave-dma.git (slave-dma)
2788 DME1737 HARDWARE MONITOR DRIVER
2789 M: Juerg Haefliger <juergh@gmail.com>
2790 L: lm-sensors@lm-sensors.org
2792 F: Documentation/hwmon/dme1737
2793 F: drivers/hwmon/dme1737.c
2795 DOCKING STATION DRIVER
2796 M: Shaohua Li <shaohua.li@intel.com>
2797 L: linux-acpi@vger.kernel.org
2799 F: drivers/acpi/dock.c
2802 M: Rob Landley <rob@landley.net>
2803 L: linux-doc@vger.kernel.org
2809 M: "James R. Van Zandt" <jrv@vanzandt.mv.com>
2810 L: blinux-list@redhat.com
2812 F: drivers/char/dtlk.c
2813 F: include/linux/dtlk.h
2815 DPT_I2O SCSI RAID DRIVER
2816 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
2817 L: linux-scsi@vger.kernel.org
2818 W: http://www.adaptec.com/
2820 F: drivers/scsi/dpt*
2821 F: drivers/scsi/dpt/
2826 M: drbd-dev@lists.linbit.com
2827 L: drbd-user@lists.linbit.com
2828 W: http://www.drbd.org
2829 T: git git://git.drbd.org/linux-2.6-drbd.git drbd
2830 T: git git://git.drbd.org/drbd-8.3.git
2832 F: drivers/block/drbd/
2834 F: Documentation/blockdev/drbd/
2836 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
2837 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2838 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
2840 F: Documentation/kobject.txt
2844 F: include/linux/kobj*
2845 F: include/linux/debugfs.h
2849 M: David Airlie <airlied@linux.ie>
2850 L: dri-devel@lists.freedesktop.org
2851 T: git git://people.freedesktop.org/~airlied/linux
2855 F: include/uapi/drm/
2858 M: Alex Deucher <alexander.deucher@amd.com>
2859 M: Christian König <christian.koenig@amd.com>
2860 L: dri-devel@lists.freedesktop.org
2861 T: git git://people.freedesktop.org/~agd5f/linux
2863 F: drivers/gpu/drm/radeon/
2864 F: include/drm/radeon*
2865 F: include/uapi/drm/radeon*
2867 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
2868 M: Daniel Vetter <daniel.vetter@ffwll.ch>
2869 M: Jani Nikula <jani.nikula@linux.intel.com>
2870 L: intel-gfx@lists.freedesktop.org
2871 L: dri-devel@lists.freedesktop.org
2872 Q: http://patchwork.freedesktop.org/project/intel-gfx/
2873 T: git git://anongit.freedesktop.org/drm-intel
2875 F: drivers/gpu/drm/i915/
2876 F: include/drm/i915*
2877 F: include/uapi/drm/i915*
2879 DRM DRIVERS FOR EXYNOS
2880 M: Inki Dae <inki.dae@samsung.com>
2881 M: Joonyoung Shim <jy0922.shim@samsung.com>
2882 M: Seung-Woo Kim <sw0312.kim@samsung.com>
2883 M: Kyungmin Park <kyungmin.park@samsung.com>
2884 L: dri-devel@lists.freedesktop.org
2885 T: git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
2887 F: drivers/gpu/drm/exynos/
2888 F: include/drm/exynos*
2889 F: include/uapi/drm/exynos*
2891 DRM DRIVERS FOR NVIDIA TEGRA
2892 M: Thierry Reding <thierry.reding@gmail.com>
2893 M: Terje Bergström <tbergstrom@nvidia.com>
2894 L: dri-devel@lists.freedesktop.org
2895 L: linux-tegra@vger.kernel.org
2896 T: git git://anongit.freedesktop.org/tegra/linux.git
2898 F: drivers/gpu/drm/tegra/
2899 F: drivers/gpu/host1x/
2900 F: include/linux/host1x.h
2901 F: include/uapi/drm/tegra_drm.h
2902 F: Documentation/devicetree/bindings/gpu/nvidia,tegra20-host1x.txt
2904 DSBR100 USB FM RADIO DRIVER
2905 M: Alexey Klimov <klimov.linux@gmail.com>
2906 L: linux-media@vger.kernel.org
2907 T: git git://linuxtv.org/media_tree.git
2909 F: drivers/media/radio/dsbr100.c
2912 M: Francois Romieu <romieu@fr.zoreil.com>
2913 L: netdev@vger.kernel.org
2915 F: drivers/net/wan/dscc4.c
2917 DVB_USB_AF9015 MEDIA DRIVER
2918 M: Antti Palosaari <crope@iki.fi>
2919 L: linux-media@vger.kernel.org
2920 W: http://linuxtv.org/
2921 W: http://palosaari.fi/linux/
2922 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2923 T: git git://linuxtv.org/anttip/media_tree.git
2925 F: drivers/media/usb/dvb-usb-v2/af9015*
2927 DVB_USB_AF9035 MEDIA DRIVER
2928 M: Antti Palosaari <crope@iki.fi>
2929 L: linux-media@vger.kernel.org
2930 W: http://linuxtv.org/
2931 W: http://palosaari.fi/linux/
2932 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2933 T: git git://linuxtv.org/anttip/media_tree.git
2935 F: drivers/media/usb/dvb-usb-v2/af9035*
2937 DVB_USB_ANYSEE MEDIA DRIVER
2938 M: Antti Palosaari <crope@iki.fi>
2939 L: linux-media@vger.kernel.org
2940 W: http://linuxtv.org/
2941 W: http://palosaari.fi/linux/
2942 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2943 T: git git://linuxtv.org/anttip/media_tree.git
2945 F: drivers/media/usb/dvb-usb-v2/anysee*
2947 DVB_USB_AU6610 MEDIA DRIVER
2948 M: Antti Palosaari <crope@iki.fi>
2949 L: linux-media@vger.kernel.org
2950 W: http://linuxtv.org/
2951 W: http://palosaari.fi/linux/
2952 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2953 T: git git://linuxtv.org/anttip/media_tree.git
2955 F: drivers/media/usb/dvb-usb-v2/au6610*
2957 DVB_USB_CE6230 MEDIA DRIVER
2958 M: Antti Palosaari <crope@iki.fi>
2959 L: linux-media@vger.kernel.org
2960 W: http://linuxtv.org/
2961 W: http://palosaari.fi/linux/
2962 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2963 T: git git://linuxtv.org/anttip/media_tree.git
2965 F: drivers/media/usb/dvb-usb-v2/ce6230*
2967 DVB_USB_CXUSB MEDIA DRIVER
2968 M: Michael Krufky <mkrufky@linuxtv.org>
2969 L: linux-media@vger.kernel.org
2970 W: http://linuxtv.org/
2971 W: http://github.com/mkrufky
2972 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2973 T: git git://linuxtv.org/media_tree.git
2975 F: drivers/media/usb/dvb-usb/cxusb*
2977 DVB_USB_EC168 MEDIA DRIVER
2978 M: Antti Palosaari <crope@iki.fi>
2979 L: linux-media@vger.kernel.org
2980 W: http://linuxtv.org/
2981 W: http://palosaari.fi/linux/
2982 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2983 T: git git://linuxtv.org/anttip/media_tree.git
2985 F: drivers/media/usb/dvb-usb-v2/ec168*
2987 DVB_USB_GL861 MEDIA DRIVER
2988 M: Antti Palosaari <crope@iki.fi>
2989 L: linux-media@vger.kernel.org
2990 W: http://linuxtv.org/
2991 Q: http://patchwork.linuxtv.org/project/linux-media/list/
2992 T: git git://linuxtv.org/anttip/media_tree.git
2994 F: drivers/media/usb/dvb-usb-v2/gl861*
2996 DVB_USB_MXL111SF MEDIA DRIVER
2997 M: Michael Krufky <mkrufky@linuxtv.org>
2998 L: linux-media@vger.kernel.org
2999 W: http://linuxtv.org/
3000 W: http://github.com/mkrufky
3001 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3002 T: git git://linuxtv.org/mkrufky/mxl111sf.git
3004 F: drivers/media/usb/dvb-usb-v2/mxl111sf*
3006 DVB_USB_RTL28XXU MEDIA DRIVER
3007 M: Antti Palosaari <crope@iki.fi>
3008 L: linux-media@vger.kernel.org
3009 W: http://linuxtv.org/
3010 W: http://palosaari.fi/linux/
3011 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3012 T: git git://linuxtv.org/anttip/media_tree.git
3014 F: drivers/media/usb/dvb-usb-v2/rtl28xxu*
3016 DVB_USB_V2 MEDIA DRIVER
3017 M: Antti Palosaari <crope@iki.fi>
3018 L: linux-media@vger.kernel.org
3019 W: http://linuxtv.org/
3020 W: http://palosaari.fi/linux/
3021 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3022 T: git git://linuxtv.org/anttip/media_tree.git
3024 F: drivers/media/usb/dvb-usb-v2/dvb_usb*
3025 F: drivers/media/usb/dvb-usb-v2/usb_urb.c
3028 M: Jason Baron <jbaron@akamai.com>
3030 F: lib/dynamic_debug.c
3031 F: include/linux/dynamic_debug.h
3033 DZ DECSTATION DZ11 SERIAL DRIVER
3034 M: "Maciej W. Rozycki" <macro@linux-mips.org>
3036 F: drivers/tty/serial/dz.*
3039 M: Antti Palosaari <crope@iki.fi>
3040 L: linux-media@vger.kernel.org
3041 W: http://linuxtv.org/
3042 W: http://palosaari.fi/linux/
3043 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3044 T: git git://linuxtv.org/anttip/media_tree.git
3046 F: drivers/media/tuners/e4000*
3048 EATA-DMA SCSI DRIVER
3049 M: Michael Neuffer <mike@i-Connect.Net>
3050 L: linux-eata@i-connect.net
3051 L: linux-scsi@vger.kernel.org
3053 F: drivers/scsi/eata*
3055 EATA ISA/EISA/PCI SCSI DRIVER
3056 M: Dario Ballabio <ballabio_dario@emc.com>
3057 L: linux-scsi@vger.kernel.org
3059 F: drivers/scsi/eata.c
3061 EATA-PIO SCSI DRIVER
3062 M: Michael Neuffer <mike@i-Connect.Net>
3063 L: linux-eata@i-connect.net
3064 L: linux-scsi@vger.kernel.org
3066 F: drivers/scsi/eata_pio.*
3069 M: Bart De Schuymer <bart.de.schuymer@pandora.be>
3070 L: netfilter-devel@vger.kernel.org
3071 W: http://ebtables.sourceforge.net/
3073 F: include/linux/netfilter_bridge/ebt_*.h
3074 F: include/uapi/linux/netfilter_bridge/ebt_*.h
3075 F: net/bridge/netfilter/ebt*.c
3078 M: Antti Palosaari <crope@iki.fi>
3079 L: linux-media@vger.kernel.org
3080 W: http://linuxtv.org/
3081 W: http://palosaari.fi/linux/
3082 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3083 T: git git://linuxtv.org/anttip/media_tree.git
3085 F: drivers/media/dvb-frontends/ec100*
3088 M: Tyler Hicks <tyhicks@canonical.com>
3089 L: ecryptfs@vger.kernel.org
3090 W: http://ecryptfs.org
3091 W: https://launchpad.net/ecryptfs
3093 F: Documentation/filesystems/ecryptfs.txt
3097 M: Doug Thompson <dougthompson@xmission.com>
3098 M: Borislav Petkov <bp@alien8.de>
3099 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3100 L: linux-edac@vger.kernel.org
3101 W: bluesmoke.sourceforge.net
3103 F: Documentation/edac.txt
3105 F: include/linux/edac.h
3108 M: Doug Thompson <dougthompson@xmission.com>
3109 M: Borislav Petkov <bp@alien8.de>
3110 L: linux-edac@vger.kernel.org
3111 W: bluesmoke.sourceforge.net
3113 F: drivers/edac/amd64_edac*
3116 M: Doug Thompson <dougthompson@xmission.com>
3117 M: Robert Richter <rric@kernel.org>
3118 L: linux-edac@vger.kernel.org
3119 W: bluesmoke.sourceforge.net
3121 F: drivers/edac/highbank*
3124 M: Ralf Baechle <ralf@linux-mips.org>
3125 M: David Daney <david.daney@cavium.com>
3126 L: linux-edac@vger.kernel.org
3127 L: linux-mips@linux-mips.org
3128 W: bluesmoke.sourceforge.net
3130 F: drivers/edac/octeon_edac*
3133 M: Mark Gross <mark.gross@intel.com>
3134 M: Doug Thompson <dougthompson@xmission.com>
3135 L: linux-edac@vger.kernel.org
3136 W: bluesmoke.sourceforge.net
3138 F: drivers/edac/e752x_edac.c
3141 M: Doug Thompson <dougthompson@xmission.com>
3142 L: linux-edac@vger.kernel.org
3143 W: bluesmoke.sourceforge.net
3145 F: drivers/edac/e7xxx_edac.c
3148 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3149 L: linux-edac@vger.kernel.org
3150 W: bluesmoke.sourceforge.net
3152 F: drivers/edac/ghes_edac.c
3155 M: Tim Small <tim@buttersideup.com>
3156 L: linux-edac@vger.kernel.org
3157 W: bluesmoke.sourceforge.net
3159 F: drivers/edac/i82443bxgx_edac.c
3162 M: Jason Uhlenkott <juhlenko@akamai.com>
3163 L: linux-edac@vger.kernel.org
3164 W: bluesmoke.sourceforge.net
3166 F: drivers/edac/i3000_edac.c
3169 M: Doug Thompson <dougthompson@xmission.com>
3170 L: linux-edac@vger.kernel.org
3171 W: bluesmoke.sourceforge.net
3173 F: drivers/edac/i5000_edac.c
3176 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3177 L: linux-edac@vger.kernel.org
3178 W: bluesmoke.sourceforge.net
3180 F: drivers/edac/i5400_edac.c
3183 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3184 L: linux-edac@vger.kernel.org
3185 W: bluesmoke.sourceforge.net
3187 F: drivers/edac/i7300_edac.c
3190 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3191 L: linux-edac@vger.kernel.org
3192 W: bluesmoke.sourceforge.net
3194 F: drivers/edac/i7core_edac.c
3197 M: Ranganathan Desikan <ravi@jetztechnologies.com>
3198 M: "Arvind R." <arvino55@gmail.com>
3199 L: linux-edac@vger.kernel.org
3200 W: bluesmoke.sourceforge.net
3202 F: drivers/edac/i82975x_edac.c
3205 M: Johannes Thumshirn <johannes.thumshirn@men.de>
3206 L: linux-edac@vger.kernel.org
3207 W: bluesmoke.sourceforge.net
3209 F: drivers/edac/mpc85xx_edac.[ch]
3212 M: Egor Martovetsky <egor@pasemi.com>
3213 L: linux-edac@vger.kernel.org
3214 W: bluesmoke.sourceforge.net
3216 F: drivers/edac/pasemi_edac.c
3219 M: Tim Small <tim@buttersideup.com>
3220 L: linux-edac@vger.kernel.org
3221 W: bluesmoke.sourceforge.net
3223 F: drivers/edac/r82600_edac.c
3226 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3227 L: linux-edac@vger.kernel.org
3228 W: bluesmoke.sourceforge.net
3230 F: drivers/edac/sb_edac.c
3232 EDIROL UA-101/UA-1000 DRIVER
3233 M: Clemens Ladisch <clemens@ladisch.de>
3234 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3235 T: git git://git.alsa-project.org/alsa-kernel.git
3237 F: sound/usb/misc/ua101.c
3239 EXTENSIBLE FIRMWARE INTERFACE (EFI)
3240 M: Matt Fleming <matt.fleming@intel.com>
3241 L: linux-efi@vger.kernel.org
3242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3244 F: Documentation/x86/efi-stub.txt
3245 F: arch/ia64/kernel/efi.c
3246 F: arch/x86/boot/compressed/eboot.[ch]
3247 F: arch/x86/include/asm/efi.h
3248 F: arch/x86/platform/efi/*
3249 F: drivers/firmware/efi/*
3250 F: include/linux/efi*.h
3252 EFI VARIABLE FILESYSTEM
3253 M: Matthew Garrett <matthew.garrett@nebula.com>
3254 M: Jeremy Kerr <jk@ozlabs.org>
3255 M: Matt Fleming <matt.fleming@intel.com>
3256 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
3257 L: linux-efi@vger.kernel.org
3261 EFIFB FRAMEBUFFER DRIVER
3262 L: linux-fbdev@vger.kernel.org
3263 M: Peter Jones <pjones@redhat.com>
3265 F: drivers/video/efifb.c
3268 W: http://aeschi.ch.eu.org/efs/
3272 EHCA (IBM GX bus InfiniBand adapter) DRIVER
3273 M: Hoang-Nam Nguyen <hnguyen@de.ibm.com>
3274 M: Christoph Raisch <raisch@de.ibm.com>
3275 L: linux-rdma@vger.kernel.org
3277 F: drivers/infiniband/hw/ehca/
3279 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
3280 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
3281 L: netdev@vger.kernel.org
3283 F: drivers/net/ethernet/ibm/ehea/
3285 EM28XX VIDEO4LINUX DRIVER
3286 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
3287 L: linux-media@vger.kernel.org
3288 W: http://linuxtv.org
3289 T: git git://linuxtv.org/media_tree.git
3291 F: drivers/media/usb/em28xx/
3294 M: Paul Gortmaker <paul.gortmaker@windriver.com>
3295 M: Matt Mackall <mpm@selenic.com>
3296 M: David Woodhouse <dwmw2@infradead.org>
3297 L: linux-embedded@vger.kernel.org
3300 EMULEX LPFC FC SCSI DRIVER
3301 M: James Smart <james.smart@emulex.com>
3302 L: linux-scsi@vger.kernel.org
3303 W: http://sourceforge.net/projects/lpfcxxxx
3305 F: drivers/scsi/lpfc/
3307 ENE CB710 FLASH CARD READER DRIVER
3308 M: Michał Mirosław <mirq-linux@rere.qmqm.pl>
3310 F: drivers/misc/cb710/
3311 F: drivers/mmc/host/cb710-mmc.*
3312 F: include/linux/cb710.h
3314 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
3315 M: Maxim Levitsky <maximlevitsky@gmail.com>
3317 F: drivers/media/rc/ene_ir.*
3319 ENHANCED ERROR HANDLING (EEH)
3320 M: Gavin Shan <shangw@linux.vnet.ibm.com>
3321 L: linuxppc-dev@lists.ozlabs.org
3323 F: Documentation/powerpc/eeh-pci-error-recovery.txt
3324 F: arch/powerpc/kernel/eeh*.c
3326 EPSON S1D13XXX FRAMEBUFFER DRIVER
3327 M: Kristoffer Ericson <kristoffer.ericson@gmail.com>
3329 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
3330 F: drivers/video/s1d13xxxfb.c
3331 F: include/video/s1d13xxxfb.h
3334 M: Stephen Hemminger <stephen@networkplumber.org>
3335 L: bridge@lists.linux-foundation.org
3336 L: netdev@vger.kernel.org
3337 W: http://www.linuxfoundation.org/en/Net:Bridge
3339 F: include/linux/netfilter_bridge/
3342 ETHERNET PHY LIBRARY
3343 M: Florian Fainelli <f.fainelli@gmail.com>
3344 L: netdev@vger.kernel.org
3346 F: include/linux/phy.h
3347 F: include/linux/phy_fixed.h
3349 F: Documentation/networking/phy.txt
3350 F: drivers/of/of_mdio.c
3351 F: drivers/of/of_net.c
3354 M: Jan Kara <jack@suse.cz>
3355 L: linux-ext4@vger.kernel.org
3357 F: Documentation/filesystems/ext2.txt
3359 F: include/linux/ext2*
3362 M: Jan Kara <jack@suse.cz>
3363 M: Andrew Morton <akpm@linux-foundation.org>
3364 M: Andreas Dilger <adilger.kernel@dilger.ca>
3365 L: linux-ext4@vger.kernel.org
3367 F: Documentation/filesystems/ext3.txt
3371 M: "Theodore Ts'o" <tytso@mit.edu>
3372 M: Andreas Dilger <adilger.kernel@dilger.ca>
3373 L: linux-ext4@vger.kernel.org
3374 W: http://ext4.wiki.kernel.org
3375 Q: http://patchwork.ozlabs.org/project/linux-ext4/list/
3377 F: Documentation/filesystems/ext4.txt
3380 Extended Verification Module (EVM)
3381 M: Mimi Zohar <zohar@us.ibm.com>
3383 F: security/integrity/evm/
3385 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
3386 M: MyungJoo Ham <myungjoo.ham@samsung.com>
3387 M: Chanwoo Choi <cw00.choi@samsung.com>
3388 L: linux-kernel@vger.kernel.org
3389 T: git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
3392 F: Documentation/extcon/
3395 M: Jingoo Han <jg1.han@samsung.com>
3396 L: linux-fbdev@vger.kernel.org
3398 F: drivers/video/exynos/exynos_dp*
3400 EXYNOS MIPI DISPLAY DRIVERS
3401 M: Inki Dae <inki.dae@samsung.com>
3402 M: Donghwa Lee <dh09.lee@samsung.com>
3403 M: Kyungmin Park <kyungmin.park@samsung.com>
3404 L: linux-fbdev@vger.kernel.org
3406 F: drivers/video/exynos/exynos_mipi*
3407 F: include/video/exynos_mipi*
3409 F71805F HARDWARE MONITORING DRIVER
3410 M: Jean Delvare <jdelvare@suse.de>
3411 L: lm-sensors@lm-sensors.org
3413 F: Documentation/hwmon/f71805f
3414 F: drivers/hwmon/f71805f.c
3417 M: Michael Buesch <m@bues.ch>
3418 L: linux-media@vger.kernel.org
3420 F: drivers/media/tuners/fc0011.h
3421 F: drivers/media/tuners/fc0011.c
3424 M: Antti Palosaari <crope@iki.fi>
3425 L: linux-media@vger.kernel.org
3426 W: http://linuxtv.org/
3427 W: http://palosaari.fi/linux/
3428 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3429 T: git git://linuxtv.org/anttip/media_tree.git
3431 F: drivers/media/tuners/fc2580*
3434 M: Eric Paris <eparis@redhat.com>
3436 F: fs/notify/fanotify/
3437 F: include/linux/fanotify.h
3438 F: include/uapi/linux/fanotify.h
3440 FARSYNC SYNCHRONOUS DRIVER
3441 M: Kevin Curtis <kevin.curtis@farsite.co.uk>
3442 W: http://www.farsite.co.uk/
3444 F: drivers/net/wan/farsync.*
3446 FAULT INJECTION SUPPORT
3447 M: Akinobu Mita <akinobu.mita@gmail.com>
3449 F: Documentation/fault-injection/
3450 F: lib/fault-inject.c
3452 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
3453 M: Robert Love <robert.w.love@intel.com>
3454 L: fcoe-devel@open-fcoe.org
3455 W: www.Open-FCoE.org
3457 F: drivers/scsi/libfc/
3458 F: drivers/scsi/fcoe/
3460 F: include/scsi/libfc.h
3461 F: include/scsi/libfcoe.h
3462 F: include/uapi/scsi/fc/
3464 FILE LOCKING (flock() and fcntl()/lockf())
3465 M: Matthew Wilcox <matthew@wil.cx>
3466 L: linux-fsdevel@vger.kernel.org
3468 F: include/linux/fcntl.h
3469 F: include/linux/fs.h
3470 F: include/uapi/linux/fcntl.h
3471 F: include/uapi/linux/fs.h
3475 FILESYSTEMS (VFS and infrastructure)
3476 M: Alexander Viro <viro@zeniv.linux.org.uk>
3477 L: linux-fsdevel@vger.kernel.org
3481 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
3482 M: Riku Voipio <riku.voipio@iki.fi>
3483 L: lm-sensors@lm-sensors.org
3485 F: drivers/hwmon/f75375s.c
3486 F: include/linux/f75375s.h
3488 FIREWIRE AUDIO DRIVERS
3489 M: Clemens Ladisch <clemens@ladisch.de>
3490 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3491 T: git git://git.alsa-project.org/alsa-kernel.git
3495 FIREWIRE MEDIA DRIVERS (firedtv)
3496 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3497 L: linux-media@vger.kernel.org
3498 L: linux1394-devel@lists.sourceforge.net
3499 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
3501 F: drivers/media/firewire/
3503 FIREWIRE SBP-2 TARGET
3504 M: Chris Boot <bootc@bootc.net>
3505 L: linux-scsi@vger.kernel.org
3506 L: target-devel@vger.kernel.org
3507 L: linux1394-devel@lists.sourceforge.net
3508 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
3510 F: drivers/target/sbp/
3513 M: Stefan Richter <stefanr@s5r6.in-berlin.de>
3514 L: linux1394-devel@lists.sourceforge.net
3515 W: http://ieee1394.wiki.kernel.org/
3516 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
3518 F: drivers/firewire/
3519 F: include/linux/firewire.h
3520 F: include/uapi/linux/firewire*.h
3523 FIRMWARE LOADER (request_firmware)
3524 M: Ming Lei <ming.lei@canonical.com>
3525 L: linux-kernel@vger.kernel.org
3527 F: Documentation/firmware_class/
3528 F: drivers/base/firmware*.c
3529 F: include/linux/firmware.h
3531 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
3532 M: Joshua Morris <josh.h.morris@us.ibm.com>
3533 M: Philip Kelleher <pjk1939@linux.vnet.ibm.com>
3535 F: drivers/block/rsxx/
3538 M: Jiri Kosina <jkosina@suse.cz>
3539 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
3541 F: drivers/block/floppy.c
3544 M: Alessandro Rubini <rubini@gnudd.com>
3545 W: http://www.ohwr.org/projects/fmc-bus
3548 F: include/linux/fmc*.h
3549 F: include/linux/ipmi-fru.h
3553 M: Bill Metzenthen <billm@melbpc.org.au>
3554 W: http://floatingpoint.sourceforge.net/emulator/index.html
3556 F: arch/x86/math-emu/
3558 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
3559 L: netdev@vger.kernel.org
3561 F: drivers/net/wan/dlci.c
3562 F: drivers/net/wan/sdla.c
3565 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
3566 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
3567 L: linux-fbdev@vger.kernel.org
3568 W: http://linux-fbdev.sourceforge.net/
3569 Q: http://patchwork.kernel.org/project/linux-fbdev/list/
3570 T: git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
3572 F: Documentation/fb/
3573 F: Documentation/devicetree/bindings/fb/
3576 F: include/linux/fb.h
3577 F: include/uapi/video/
3578 F: include/uapi/linux/fb.h
3580 FREESCALE DIU FRAMEBUFFER DRIVER
3581 M: Timur Tabi <timur@tabi.org>
3582 L: linux-fbdev@vger.kernel.org
3584 F: drivers/video/fsl-diu-fb.*
3586 FREESCALE DMA DRIVER
3587 M: Li Yang <leoli@freescale.com>
3588 M: Zhang Wei <zw@zh-kernel.org>
3589 L: linuxppc-dev@lists.ozlabs.org
3591 F: drivers/dma/fsldma.*
3593 FREESCALE I2C CPM DRIVER
3594 M: Jochen Friedrich <jochen@scram.de>
3595 L: linuxppc-dev@lists.ozlabs.org
3596 L: linux-i2c@vger.kernel.org
3598 F: drivers/i2c/busses/i2c-cpm.c
3600 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
3601 M: Sascha Hauer <kernel@pengutronix.de>
3602 L: linux-fbdev@vger.kernel.org
3603 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3605 F: include/linux/platform_data/video-imxfb.h
3606 F: drivers/video/imxfb.c
3608 FREESCALE SOC FS_ENET DRIVER
3609 M: Pantelis Antoniou <pantelis.antoniou@gmail.com>
3610 M: Vitaly Bordug <vbordug@ru.mvista.com>
3611 L: linuxppc-dev@lists.ozlabs.org
3612 L: netdev@vger.kernel.org
3614 F: drivers/net/ethernet/freescale/fs_enet/
3615 F: include/linux/fs_enet_pd.h
3617 FREESCALE QUICC ENGINE LIBRARY
3618 L: linuxppc-dev@lists.ozlabs.org
3620 F: arch/powerpc/sysdev/qe_lib/
3621 F: arch/powerpc/include/asm/*qe.h
3623 FREESCALE USB PERIPHERAL DRIVERS
3624 M: Li Yang <leoli@freescale.com>
3625 L: linux-usb@vger.kernel.org
3626 L: linuxppc-dev@lists.ozlabs.org
3628 F: drivers/usb/gadget/fsl*
3630 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
3631 M: Li Yang <leoli@freescale.com>
3632 L: netdev@vger.kernel.org
3633 L: linuxppc-dev@lists.ozlabs.org
3635 F: drivers/net/ethernet/freescale/ucc_geth*
3637 FREESCALE QUICC ENGINE UCC UART DRIVER
3638 M: Timur Tabi <timur@tabi.org>
3639 L: linuxppc-dev@lists.ozlabs.org
3641 F: drivers/tty/serial/ucc_uart.c
3643 FREESCALE SOC SOUND DRIVERS
3644 M: Timur Tabi <timur@tabi.org>
3645 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
3646 L: linuxppc-dev@lists.ozlabs.org
3648 F: sound/soc/fsl/fsl*
3649 F: sound/soc/fsl/mpc8610_hpcd.c
3652 M: Christoph Hellwig <hch@infradead.org>
3653 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
3658 M: Pavel Machek <pavel@ucw.cz>
3659 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
3660 L: linux-pm@vger.kernel.org
3662 F: Documentation/power/freezing-of-tasks.txt
3663 F: include/linux/freezer.h
3667 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3668 L: linux-kernel@vger.kernel.org
3671 F: include/linux/frontswap.h
3673 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
3674 M: David Howells <dhowells@redhat.com>
3675 L: linux-cachefs@redhat.com
3677 F: Documentation/filesystems/caching/
3679 F: include/linux/fscache*.h
3682 M: Jaegeuk Kim <jaegeuk.kim@samsung.com>
3683 L: linux-f2fs-devel@lists.sourceforge.net
3684 W: http://en.wikipedia.org/wiki/F2FS
3685 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
3687 F: Documentation/filesystems/f2fs.txt
3688 F: Documentation/ABI/testing/sysfs-fs-f2fs
3690 F: include/linux/f2fs_fs.h
3692 FUJITSU FR-V (FRV) PORT
3693 M: David Howells <dhowells@redhat.com>
3697 FUJITSU LAPTOP EXTRAS
3698 M: Jonathan Woithe <jwoithe@just42.net>
3699 L: platform-driver-x86@vger.kernel.org
3701 F: drivers/platform/x86/fujitsu-laptop.c
3703 FUJITSU M-5MO LS CAMERA ISP DRIVER
3704 M: Kyungmin Park <kyungmin.park@samsung.com>
3705 M: Heungjun Kim <riverful.kim@samsung.com>
3706 L: linux-media@vger.kernel.org
3708 F: drivers/media/i2c/m5mols/
3709 F: include/media/m5mols.h
3711 FUJITSU TABLET EXTRAS
3712 M: Robert Gerlach <khnz@gmx.de>
3713 L: platform-driver-x86@vger.kernel.org
3715 F: drivers/platform/x86/fujitsu-tablet.c
3717 FUSE: FILESYSTEM IN USERSPACE
3718 M: Miklos Szeredi <miklos@szeredi.hu>
3719 L: fuse-devel@lists.sourceforge.net
3720 W: http://fuse.sourceforge.net/
3723 F: include/uapi/linux/fuse.h
3725 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
3726 M: Rik Faith <faith@cs.unc.edu>
3727 L: linux-scsi@vger.kernel.org
3728 S: Odd Fixes (e.g., new signatures)
3729 F: drivers/scsi/fdomain.*
3731 GCOV BASED KERNEL PROFILING
3732 M: Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
3735 F: Documentation/gcov.txt
3737 GDT SCSI DISK ARRAY CONTROLLER DRIVER
3738 M: Achim Leubner <achim_leubner@adaptec.com>
3739 L: linux-scsi@vger.kernel.org
3740 W: http://www.icp-vortex.com/
3742 F: drivers/scsi/gdt*
3744 GEMTEK FM RADIO RECEIVER DRIVER
3745 M: Hans Verkuil <hverkuil@xs4all.nl>
3746 L: linux-media@vger.kernel.org
3747 T: git git://linuxtv.org/media_tree.git
3748 W: http://linuxtv.org
3750 F: drivers/media/radio/radio-gemtek*
3752 GENERIC GPIO I2C DRIVER
3753 M: Haavard Skinnemoen <hskinnemoen@gmail.com>
3755 F: drivers/i2c/busses/i2c-gpio.c
3756 F: include/linux/i2c-gpio.h
3758 GENERIC GPIO I2C MULTIPLEXER DRIVER
3759 M: Peter Korsgaard <peter.korsgaard@barco.com>
3760 L: linux-i2c@vger.kernel.org
3762 F: drivers/i2c/muxes/i2c-mux-gpio.c
3763 F: include/linux/i2c-mux-gpio.h
3764 F: Documentation/i2c/muxes/i2c-mux-gpio
3766 GENERIC HDLC (WAN) DRIVERS
3767 M: Krzysztof Halasa <khc@pm.waw.pl>
3768 W: http://www.kernel.org/pub/linux/utils/net/hdlc/
3770 F: drivers/net/wan/c101.c
3771 F: drivers/net/wan/hd6457*
3772 F: drivers/net/wan/hdlc*
3773 F: drivers/net/wan/n2.c
3774 F: drivers/net/wan/pc300too.c
3775 F: drivers/net/wan/pci200syn.c
3776 F: drivers/net/wan/wanxl*
3778 GENERIC INCLUDE/ASM HEADER FILES
3779 M: Arnd Bergmann <arnd@arndb.de>
3780 L: linux-arch@vger.kernel.org
3781 T: git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
3783 F: include/asm-generic/
3784 F: include/uapi/asm-generic/
3786 GENERIC PHY FRAMEWORK
3787 M: Kishon Vijay Abraham I <kishon@ti.com>
3788 L: linux-kernel@vger.kernel.org
3789 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
3792 F: include/linux/phy/
3794 GENERIC UIO DRIVER FOR PCI DEVICES
3795 M: "Michael S. Tsirkin" <mst@redhat.com>
3796 L: kvm@vger.kernel.org
3798 F: drivers/uio/uio_pci_generic.c
3801 M: Steven Whitehouse <swhiteho@redhat.com>
3802 L: cluster-devel@redhat.com
3803 W: http://sources.redhat.com/cluster/
3804 T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-fixes.git
3805 T: git git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-3.0-nmw.git
3807 F: Documentation/filesystems/gfs2*.txt
3809 F: include/uapi/linux/gfs2_ondisk.h
3811 GIGASET ISDN DRIVERS
3812 M: Hansjoerg Lipp <hjlipp@web.de>
3813 M: Tilman Schmidt <tilman@imap.cc>
3814 L: gigaset307x-common@lists.sourceforge.net
3815 W: http://gigaset307x.sourceforge.net/
3817 F: Documentation/isdn/README.gigaset
3818 F: drivers/isdn/gigaset/
3819 F: include/uapi/linux/gigaset_dev.h
3822 M: Linus Walleij <linus.walleij@linaro.org>
3823 M: Alexandre Courbot <gnurou@gmail.com>
3824 L: linux-gpio@vger.kernel.org
3825 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
3827 F: Documentation/gpio/
3829 F: include/linux/gpio*
3830 F: include/asm-generic/gpio.h
3832 GRE DEMULTIPLEXER DRIVER
3833 M: Dmitry Kozlov <xeb@mail.ru>
3834 L: netdev@vger.kernel.org
3836 F: net/ipv4/gre_demux.c
3837 F: net/ipv4/gre_offload.c
3838 F: include/net/gre.h
3840 GRETH 10/100/1G Ethernet MAC device driver
3841 M: Kristoffer Glembo <kristoffer@gaisler.com>
3842 L: netdev@vger.kernel.org
3844 F: drivers/net/ethernet/aeroflex/
3846 GSPCA FINEPIX SUBDRIVER
3847 M: Frank Zago <frank@zago.net>
3848 L: linux-media@vger.kernel.org
3849 T: git git://linuxtv.org/media_tree.git
3851 F: drivers/media/usb/gspca/finepix.c
3853 GSPCA GL860 SUBDRIVER
3854 M: Olivier Lorin <o.lorin@laposte.net>
3855 L: linux-media@vger.kernel.org
3856 T: git git://linuxtv.org/media_tree.git
3858 F: drivers/media/usb/gspca/gl860/
3860 GSPCA M5602 SUBDRIVER
3861 M: Erik Andren <erik.andren@gmail.com>
3862 L: linux-media@vger.kernel.org
3863 T: git git://linuxtv.org/media_tree.git
3865 F: drivers/media/usb/gspca/m5602/
3867 GSPCA PAC207 SONIXB SUBDRIVER
3868 M: Hans de Goede <hdegoede@redhat.com>
3869 L: linux-media@vger.kernel.org
3870 T: git git://linuxtv.org/media_tree.git
3872 F: drivers/media/usb/gspca/pac207.c
3874 GSPCA SN9C20X SUBDRIVER
3875 M: Brian Johnson <brijohn@gmail.com>
3876 L: linux-media@vger.kernel.org
3877 T: git git://linuxtv.org/media_tree.git
3879 F: drivers/media/usb/gspca/sn9c20x.c
3881 GSPCA T613 SUBDRIVER
3882 M: Leandro Costantino <lcostantino@gmail.com>
3883 L: linux-media@vger.kernel.org
3884 T: git git://linuxtv.org/media_tree.git
3886 F: drivers/media/usb/gspca/t613.c
3888 GSPCA USB WEBCAM DRIVER
3889 M: Hans de Goede <hdegoede@redhat.com>
3890 L: linux-media@vger.kernel.org
3891 T: git git://linuxtv.org/media_tree.git
3893 F: drivers/media/usb/gspca/
3895 GUID PARTITION TABLE (GPT)
3896 M: Davidlohr Bueso <davidlohr@hp.com>
3897 L: linux-efi@vger.kernel.org
3899 F: block/partitions/efi.*
3901 STK1160 USB VIDEO CAPTURE DRIVER
3902 M: Ezequiel Garcia <elezegarcia@gmail.com>
3903 L: linux-media@vger.kernel.org
3904 T: git git://linuxtv.org/media_tree.git
3906 F: drivers/media/usb/stk1160/
3908 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
3909 M: Frank Seidel <frank@f-seidel.de>
3910 L: platform-driver-x86@vger.kernel.org
3911 W: http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
3913 F: drivers/platform/x86/hdaps.c
3915 HDPVR USB VIDEO ENCODER DRIVER
3916 M: Hans Verkuil <hverkuil@xs4all.nl>
3917 L: linux-media@vger.kernel.org
3918 T: git git://linuxtv.org/media_tree.git
3919 W: http://linuxtv.org
3921 F: drivers/media/usb/hdpvr/
3923 HWPOISON MEMORY FAILURE HANDLING
3924 M: Andi Kleen <andi@firstfloor.org>
3925 L: linux-mm@kvack.org
3926 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ak/linux-mce-2.6.git hwpoison
3928 F: mm/memory-failure.c
3929 F: mm/hwpoison-inject.c
3931 HYPERVISOR VIRTUAL CONSOLE DRIVER
3932 L: linuxppc-dev@lists.ozlabs.org
3937 M: Jean Delvare <jdelvare@suse.de>
3938 M: Guenter Roeck <linux@roeck-us.net>
3939 L: lm-sensors@lm-sensors.org
3940 W: http://www.lm-sensors.org/
3941 T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
3942 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
3944 F: Documentation/hwmon/
3946 F: include/linux/hwmon*.h
3948 HARDWARE RANDOM NUMBER GENERATOR CORE
3949 M: Matt Mackall <mpm@selenic.com>
3950 M: Herbert Xu <herbert@gondor.apana.org.au>
3952 F: Documentation/hw_random.txt
3953 F: drivers/char/hw_random/
3954 F: include/linux/hw_random.h
3956 HARDWARE SPINLOCK CORE
3957 M: Ohad Ben-Cohen <ohad@wizery.com>
3959 F: Documentation/hwspinlock.txt
3960 F: drivers/hwspinlock/hwspinlock_*
3961 F: include/linux/hwspinlock.h
3963 HARMONY SOUND DRIVER
3964 L: linux-parisc@vger.kernel.org
3966 F: sound/parisc/harmony.*
3969 M: Antti Palosaari <crope@iki.fi>
3970 L: linux-media@vger.kernel.org
3971 W: http://linuxtv.org/
3972 W: http://palosaari.fi/linux/
3973 Q: http://patchwork.linuxtv.org/project/linux-media/list/
3974 T: git git://linuxtv.org/anttip/media_tree.git
3976 F: drivers/media/dvb-frontends/hd29l2*
3978 HEWLETT-PACKARD SMART2 RAID DRIVER
3979 M: Chirag Kantharia <chirag.kantharia@hp.com>
3980 L: iss_storagedev@hp.com
3982 F: Documentation/blockdev/cpqarray.txt
3983 F: drivers/block/cpqarray.*
3985 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
3986 M: "Stephen M. Cameron" <scameron@beardog.cce.hp.com>
3987 L: iss_storagedev@hp.com
3989 F: Documentation/scsi/hpsa.txt
3990 F: drivers/scsi/hpsa*.[ch]
3991 F: include/linux/cciss*.h
3992 F: include/uapi/linux/cciss*.h
3994 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
3995 M: Mike Miller <mike.miller@hp.com>
3996 L: iss_storagedev@hp.com
3998 F: Documentation/blockdev/cciss.txt
3999 F: drivers/block/cciss*
4000 F: include/linux/cciss_ioctl.h
4001 F: include/uapi/linux/cciss_ioctl.h
4004 L: linux-fsdevel@vger.kernel.org
4006 F: Documentation/filesystems/hfs.txt
4010 L: linux-fsdevel@vger.kernel.org
4012 F: Documentation/filesystems/hfsplus.txt
4015 HGA FRAMEBUFFER DRIVER
4016 M: Ferenc Bakonyi <fero@drama.obuda.kando.hu>
4017 L: linux-nvidia@lists.surfsouth.com
4018 W: http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
4020 F: drivers/video/hgafb.c
4022 HIBERNATION (aka Software Suspend, aka swsusp)
4023 M: Pavel Machek <pavel@ucw.cz>
4024 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
4025 L: linux-pm@vger.kernel.org
4028 F: drivers/base/power/
4030 F: include/linux/suspend.h
4031 F: include/linux/freezer.h
4032 F: include/linux/pm.h
4033 F: arch/*/include/asm/suspend*.h
4036 M: Jiri Kosina <jkosina@suse.cz>
4037 L: linux-input@vger.kernel.org
4038 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
4041 F: include/linux/hid*
4042 F: include/uapi/linux/hid*
4044 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
4045 M: Thomas Gleixner <tglx@linutronix.de>
4046 L: linux-kernel@vger.kernel.org
4047 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4049 F: Documentation/timers/
4051 F: kernel/time/clockevents.c
4052 F: kernel/time/tick*.*
4053 F: kernel/time/timer_*.c
4054 F: include/linux/clockchips.h
4055 F: include/linux/hrtimer.h
4057 HIGH-SPEED SCC DRIVER FOR AX.25
4058 L: linux-hams@vger.kernel.org
4060 F: drivers/net/hamradio/dmascc.c
4061 F: drivers/net/hamradio/scc.c
4063 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
4064 M: HighPoint Linux Team <linux@highpoint-tech.com>
4065 W: http://www.highpoint-tech.com
4067 F: Documentation/scsi/hptiop.txt
4068 F: drivers/scsi/hptiop.c
4071 M: Jes Sorensen <jes@trained-monkey.org>
4072 L: linux-hippi@sunsite.dk
4074 F: include/linux/hippidevice.h
4075 F: include/uapi/linux/if_hippi.h
4077 F: drivers/net/hippi/
4080 M: Jouni Malinen <j@w1.fi>
4081 L: hostap@shmoo.com (subscribers-only)
4082 L: linux-wireless@vger.kernel.org
4083 W: http://hostap.epitest.fi/
4085 F: drivers/net/wireless/hostap/
4087 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
4088 L: platform-driver-x86@vger.kernel.org
4090 F: drivers/platform/x86/tc1100-wmi.c
4092 HP100: Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
4093 M: Jaroslav Kysela <perex@perex.cz>
4095 F: drivers/net/ethernet/hp/hp100.*
4097 HPET: High Precision Event Timers driver
4098 M: Clemens Ladisch <clemens@ladisch.de>
4100 F: Documentation/timers/hpet.txt
4101 F: drivers/char/hpet.c
4102 F: include/linux/hpet.h
4103 F: include/uapi/linux/hpet.h
4106 M: "Venkatesh Pallipadi (Venki)" <venki@google.com>
4108 F: arch/x86/kernel/hpet.c
4109 F: arch/x86/include/asm/hpet.h
4112 M: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
4113 W: http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
4118 M: Sebastian Reichel <sre@debian.org>
4120 F: Documentation/ABI/testing/sysfs-bus-hsi
4122 F: include/linux/hsi/
4123 F: include/uapi/linux/hsi/
4126 M: Jan Dumon <j.dumon@option.com>
4127 W: http://www.pharscape.org
4129 F: drivers/net/usb/hso.c
4131 HSR NETWORK PROTOCOL
4132 M: Arvid Brodin <arvid.brodin@alten.se>
4133 L: netdev@vger.kernel.org
4137 HTCPEN TOUCHSCREEN DRIVER
4138 M: Pau Oliva Fora <pof@eslack.org>
4139 L: linux-input@vger.kernel.org
4141 F: drivers/input/touchscreen/htcpen.c
4144 M: Nadia Yvette Chambers <nyc@holomorphy.com>
4148 Hyper-V CORE AND DRIVERS
4149 M: K. Y. Srinivasan <kys@microsoft.com>
4150 M: Haiyang Zhang <haiyangz@microsoft.com>
4151 L: devel@linuxdriverproject.org
4153 F: arch/x86/include/asm/mshyperv.h
4154 F: arch/x86/include/uapi/asm/hyperv.h
4155 F: arch/x86/kernel/cpu/mshyperv.c
4156 F: drivers/hid/hid-hyperv.c
4158 F: drivers/input/serio/hyperv-keyboard.c
4159 F: drivers/net/hyperv/
4160 F: drivers/scsi/storvsc_drv.c
4161 F: drivers/video/hyperv_fb.c
4162 F: include/linux/hyperv.h
4165 I2C OVER PARALLEL PORT
4166 M: Jean Delvare <jdelvare@suse.de>
4167 L: linux-i2c@vger.kernel.org
4169 F: Documentation/i2c/busses/i2c-parport
4170 F: Documentation/i2c/busses/i2c-parport-light
4171 F: drivers/i2c/busses/i2c-parport.c
4172 F: drivers/i2c/busses/i2c-parport-light.c
4174 I2C/SMBUS CONTROLLER DRIVERS FOR PC
4175 M: Jean Delvare <jdelvare@suse.de>
4176 L: linux-i2c@vger.kernel.org
4178 F: Documentation/i2c/busses/i2c-ali1535
4179 F: Documentation/i2c/busses/i2c-ali1563
4180 F: Documentation/i2c/busses/i2c-ali15x3
4181 F: Documentation/i2c/busses/i2c-amd756
4182 F: Documentation/i2c/busses/i2c-amd8111
4183 F: Documentation/i2c/busses/i2c-i801
4184 F: Documentation/i2c/busses/i2c-nforce2
4185 F: Documentation/i2c/busses/i2c-piix4
4186 F: Documentation/i2c/busses/i2c-sis5595
4187 F: Documentation/i2c/busses/i2c-sis630
4188 F: Documentation/i2c/busses/i2c-sis96x
4189 F: Documentation/i2c/busses/i2c-via
4190 F: Documentation/i2c/busses/i2c-viapro
4191 F: drivers/i2c/busses/i2c-ali1535.c
4192 F: drivers/i2c/busses/i2c-ali1563.c
4193 F: drivers/i2c/busses/i2c-ali15x3.c
4194 F: drivers/i2c/busses/i2c-amd756.c
4195 F: drivers/i2c/busses/i2c-amd756-s4882.c
4196 F: drivers/i2c/busses/i2c-amd8111.c
4197 F: drivers/i2c/busses/i2c-i801.c
4198 F: drivers/i2c/busses/i2c-isch.c
4199 F: drivers/i2c/busses/i2c-nforce2.c
4200 F: drivers/i2c/busses/i2c-nforce2-s4985.c
4201 F: drivers/i2c/busses/i2c-piix4.c
4202 F: drivers/i2c/busses/i2c-sis5595.c
4203 F: drivers/i2c/busses/i2c-sis630.c
4204 F: drivers/i2c/busses/i2c-sis96x.c
4205 F: drivers/i2c/busses/i2c-via.c
4206 F: drivers/i2c/busses/i2c-viapro.c
4208 I2C/SMBUS ISMT DRIVER
4209 M: Seth Heasley <seth.heasley@intel.com>
4210 M: Neil Horman <nhorman@tuxdriver.com>
4211 L: linux-i2c@vger.kernel.org
4212 F: drivers/i2c/busses/i2c-ismt.c
4213 F: Documentation/i2c/busses/i2c-ismt
4215 I2C/SMBUS STUB DRIVER
4216 M: Jean Delvare <jdelvare@suse.de>
4217 L: linux-i2c@vger.kernel.org
4219 F: drivers/i2c/i2c-stub.c
4222 M: Wolfram Sang <wsa@the-dreams.de>
4223 L: linux-i2c@vger.kernel.org
4224 W: http://i2c.wiki.kernel.org/
4225 T: git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
4227 F: Documentation/i2c/
4229 F: include/linux/i2c.h
4230 F: include/linux/i2c-*.h
4231 F: include/uapi/linux/i2c.h
4232 F: include/uapi/linux/i2c-*.h
4235 M: Jean Delvare <jdelvare@suse.de>
4236 L: linux-i2c@vger.kernel.org
4238 F: Documentation/i2c/busses/i2c-taos-evm
4239 F: drivers/i2c/busses/i2c-taos-evm.c
4242 M: Till Harbaum <till@harbaum.org>
4243 L: linux-i2c@vger.kernel.org
4244 W: http://www.harbaum.org/till/i2c_tiny_usb
4246 F: drivers/i2c/busses/i2c-tiny-usb.c
4249 M: "H. Peter Anvin" <hpa@zytor.com>
4253 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
4254 M: "H. Peter Anvin" <hpa@zytor.com>
4255 T: git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
4258 IA64 (Itanium) PLATFORM
4259 M: Tony Luck <tony.luck@intel.com>
4260 M: Fenghua Yu <fenghua.yu@intel.com>
4261 L: linux-ia64@vger.kernel.org
4262 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
4266 IBM Power in-Nest Crypto Acceleration
4267 M: Marcelo Henrique Cerri <mhcerri@linux.vnet.ibm.com>
4268 M: Fionnuala Gunter <fin@linux.vnet.ibm.com>
4269 L: linux-crypto@vger.kernel.org
4271 F: drivers/crypto/nx/
4273 IBM Power 842 compression accelerator
4274 M: Robert Jennings <rcj@linux.vnet.ibm.com>
4276 F: drivers/crypto/nx/nx-842.c
4277 F: include/linux/nx842.h
4279 IBM Power Linux RAID adapter
4280 M: Brian King <brking@us.ibm.com>
4282 F: drivers/scsi/ipr.*
4284 IBM Power Virtual Ethernet Device Driver
4285 M: Santiago Leon <santil@linux.vnet.ibm.com>
4286 L: netdev@vger.kernel.org
4288 F: drivers/net/ethernet/ibm/ibmveth.*
4290 IBM Power Virtual SCSI/FC Device Drivers
4291 M: Robert Jennings <rcj@linux.vnet.ibm.com>
4292 L: linux-scsi@vger.kernel.org
4294 F: drivers/scsi/ibmvscsi/
4295 X: drivers/scsi/ibmvscsi/ibmvstgt.c
4297 IBM ServeRAID RAID DRIVER
4299 M: Dave Jeffery <ipslinux@adaptec.com>
4300 W: http://www.developer.ibm.com/welcome/netfinity/serveraid.html
4302 F: drivers/scsi/ips.*
4304 ICH LPC AND GPIO DRIVER
4305 M: Peter Tyser <ptyser@xes-inc.com>
4307 F: drivers/mfd/lpc_ich.c
4308 F: drivers/gpio/gpio-ich.c
4311 M: "David S. Miller" <davem@davemloft.net>
4312 L: linux-ide@vger.kernel.org
4313 Q: http://patchwork.ozlabs.org/project/linux-ide/list/
4314 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
4316 F: Documentation/ide/
4318 F: include/linux/ide.h
4320 IDEAPAD LAPTOP EXTRAS DRIVER
4321 M: Ike Panhc <ike.pan@canonical.com>
4322 L: platform-driver-x86@vger.kernel.org
4323 W: http://launchpad.net/ideapad-laptop
4325 F: drivers/platform/x86/ideapad-laptop.c
4327 IDEAPAD LAPTOP SLIDEBAR DRIVER
4328 M: Andrey Moiseev <o2g.org.ru@gmail.com>
4329 L: linux-input@vger.kernel.org
4330 W: https://github.com/o2genum/ideapad-slidebar
4332 F: drivers/input/misc/ideapad_slidebar.c
4335 M: Borislav Petkov <bp@alien8.de>
4336 L: linux-ide@vger.kernel.org
4338 F: Documentation/cdrom/ide-cd
4339 F: drivers/ide/ide-cd*
4342 M: Andy Henroid <andrew.d.henroid@intel.com>
4343 L: linux-pm@vger.kernel.org
4345 F: drivers/idle/i7300_idle.c
4347 IEEE 802.15.4 SUBSYSTEM
4348 M: Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
4349 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
4350 L: linux-zigbee-devel@lists.sourceforge.net (moderated for non-subscribers)
4351 W: http://apps.sourceforge.net/trac/linux-zigbee
4352 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lowpan/lowpan.git
4356 F: drivers/net/ieee802154/
4358 IGUANAWORKS USB IR TRANSCEIVER
4359 M: Sean Young <sean@mess.org>
4360 L: linux-media@vger.kernel.org
4362 F: drivers/media/rc/iguanair.c
4364 IIO SUBSYSTEM AND DRIVERS
4365 M: Jonathan Cameron <jic23@kernel.org>
4366 L: linux-iio@vger.kernel.org
4369 F: drivers/staging/iio/
4371 IKANOS/ADI EAGLE ADSL USB DRIVER
4372 M: Matthieu Castet <castet.matthieu@free.fr>
4373 M: Stanislaw Gruszka <stf_xl@wp.pl>
4375 F: drivers/usb/atm/ueagle-atm.c
4377 INA209 HARDWARE MONITOR DRIVER
4378 M: Guenter Roeck <linux@roeck-us.net>
4379 L: lm-sensors@lm-sensors.org
4381 F: Documentation/hwmon/ina209
4382 F: Documentation/devicetree/bindings/i2c/ina209.txt
4383 F: drivers/hwmon/ina209.c
4385 INA2XX HARDWARE MONITOR DRIVER
4386 M: Guenter Roeck <linux@roeck-us.net>
4387 L: lm-sensors@lm-sensors.org
4389 F: Documentation/hwmon/ina2xx
4390 F: drivers/hwmon/ina2xx.c
4391 F: include/linux/platform_data/ina2xx.h
4393 INDUSTRY PACK SUBSYSTEM (IPACK)
4394 M: Samuel Iglesias Gonsalvez <siglesias@igalia.com>
4395 M: Jens Taprogge <jens.taprogge@taprogge.org>
4396 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4397 L: industrypack-devel@lists.sourceforge.net
4398 W: http://industrypack.sourceforge.net
4402 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
4403 M: Mimi Zohar <zohar@us.ibm.com>
4404 M: Dmitry Kasatkin <d.kasatkin@samsung.com>
4406 F: security/integrity/ima/
4408 IMS TWINTURBO FRAMEBUFFER DRIVER
4409 L: linux-fbdev@vger.kernel.org
4411 F: drivers/video/imsttfb.c
4413 INFINIBAND SUBSYSTEM
4414 M: Roland Dreier <roland@kernel.org>
4415 M: Sean Hefty <sean.hefty@intel.com>
4416 M: Hal Rosenstock <hal.rosenstock@gmail.com>
4417 L: linux-rdma@vger.kernel.org
4418 W: http://www.openfabrics.org/
4419 Q: http://patchwork.kernel.org/project/linux-rdma/list/
4420 T: git git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband.git
4422 F: Documentation/infiniband/
4423 F: drivers/infiniband/
4424 F: include/uapi/linux/if_infiniband.h
4427 M: John McCutchan <john@johnmccutchan.com>
4428 M: Robert Love <rlove@rlove.org>
4429 M: Eric Paris <eparis@parisplace.org>
4431 F: Documentation/filesystems/inotify.txt
4432 F: fs/notify/inotify/
4433 F: include/linux/inotify.h
4434 F: include/uapi/linux/inotify.h
4436 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
4437 M: Dmitry Torokhov <dmitry.torokhov@gmail.com>
4438 M: Dmitry Torokhov <dtor@mail.ru>
4439 L: linux-input@vger.kernel.org
4440 Q: http://patchwork.kernel.org/project/linux-input/list/
4441 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
4444 F: include/linux/input.h
4445 F: include/uapi/linux/input.h
4446 F: include/linux/input/
4448 INPUT MULTITOUCH (MT) PROTOCOL
4449 M: Henrik Rydberg <rydberg@euromail.se>
4450 L: linux-input@vger.kernel.org
4451 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git
4453 F: Documentation/input/multi-touch-protocol.txt
4454 F: drivers/input/input-mt.c
4457 INTEL C600 SERIES SAS CONTROLLER DRIVER
4458 M: Intel SCU Linux support <intel-linux-scu@intel.com>
4459 M: Lukasz Dorau <lukasz.dorau@intel.com>
4460 M: Maciej Patelczyk <maciej.patelczyk@intel.com>
4461 M: Dave Jiang <dave.jiang@intel.com>
4462 L: linux-scsi@vger.kernel.org
4463 T: git git://git.code.sf.net/p/intel-sas/isci
4465 F: drivers/scsi/isci/
4468 M: Len Brown <lenb@kernel.org>
4469 L: linux-pm@vger.kernel.org
4470 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
4472 F: drivers/idle/intel_idle.c
4474 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
4475 M: Maik Broemme <mbroemme@plusserver.de>
4476 L: linux-fbdev@vger.kernel.org
4478 F: Documentation/fb/intelfb.txt
4479 F: drivers/video/intelfb/
4481 INTEL 810/815 FRAMEBUFFER DRIVER
4482 M: Antonino Daplas <adaplas@gmail.com>
4483 L: linux-fbdev@vger.kernel.org
4485 F: drivers/video/i810/
4487 INTEL MENLOW THERMAL DRIVER
4488 M: Sujith Thomas <sujith.thomas@intel.com>
4489 L: platform-driver-x86@vger.kernel.org
4490 W: https://01.org/linux-acpi
4492 F: drivers/platform/x86/intel_menlow.c
4494 INTEL IA32 MICROCODE UPDATE SUPPORT
4495 M: Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
4497 F: arch/x86/kernel/microcode_core.c
4498 F: arch/x86/kernel/microcode_intel.c
4500 INTEL I/OAT DMA DRIVER
4501 M: Dan Williams <dan.j.williams@intel.com>
4502 M: Dave Jiang <dave.jiang@intel.com>
4503 L: dmaengine@vger.kernel.org
4504 Q: https://patchwork.kernel.org/project/linux-dmaengine/list/
4506 F: drivers/dma/ioat*
4509 M: David Woodhouse <dwmw2@infradead.org>
4510 L: iommu@lists.linux-foundation.org
4511 T: git git://git.infradead.org/iommu-2.6.git
4513 F: drivers/iommu/intel-iommu.c
4514 F: include/linux/intel-iommu.h
4516 INTEL IOP-ADMA DMA DRIVER
4517 M: Dan Williams <dan.j.williams@intel.com>
4519 F: drivers/dma/iop-adma.c
4521 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
4522 M: Krzysztof Halasa <khc@pm.waw.pl>
4524 F: arch/arm/mach-ixp4xx/include/mach/qmgr.h
4525 F: arch/arm/mach-ixp4xx/include/mach/npe.h
4526 F: arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
4527 F: arch/arm/mach-ixp4xx/ixp4xx_npe.c
4528 F: drivers/net/ethernet/xscale/ixp4xx_eth.c
4529 F: drivers/net/wan/ixp4xx_hss.c
4531 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
4532 M: Deepak Saxena <dsaxena@plexity.net>
4534 F: drivers/char/hw_random/ixp4xx-rng.c
4536 INTEL ETHERNET DRIVERS (e100/e1000/e1000e/igb/igbvf/ixgb/ixgbe/ixgbevf/i40e/i40evf)
4537 M: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
4538 M: Jesse Brandeburg <jesse.brandeburg@intel.com>
4539 M: Bruce Allan <bruce.w.allan@intel.com>
4540 M: Carolyn Wyborny <carolyn.wyborny@intel.com>
4541 M: Don Skidmore <donald.c.skidmore@intel.com>
4542 M: Greg Rose <gregory.v.rose@intel.com>
4543 M: Alex Duyck <alexander.h.duyck@intel.com>
4544 M: John Ronciak <john.ronciak@intel.com>
4545 M: Mitch Williams <mitch.a.williams@intel.com>
4546 L: e1000-devel@lists.sourceforge.net
4547 W: http://www.intel.com/support/feedback.htm
4548 W: http://e1000.sourceforge.net/
4549 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net.git
4550 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next.git
4552 F: Documentation/networking/e100.txt
4553 F: Documentation/networking/e1000.txt
4554 F: Documentation/networking/e1000e.txt
4555 F: Documentation/networking/igb.txt
4556 F: Documentation/networking/igbvf.txt
4557 F: Documentation/networking/ixgb.txt
4558 F: Documentation/networking/ixgbe.txt
4559 F: Documentation/networking/ixgbevf.txt
4560 F: Documentation/networking/i40e.txt
4561 F: Documentation/networking/i40evf.txt
4562 F: drivers/net/ethernet/intel/
4564 INTEL-MID GPIO DRIVER
4565 M: David Cohen <david.a.cohen@linux.intel.com>
4566 L: linux-gpio@vger.kernel.org
4568 F: drivers/gpio/gpio-intel-mid.c
4570 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
4571 M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
4572 L: linux-wireless@vger.kernel.org
4574 F: Documentation/networking/README.ipw2100
4575 F: Documentation/networking/README.ipw2200
4576 F: drivers/net/wireless/ipw2x00/
4578 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
4579 M: Richard L Maliszewski <richard.l.maliszewski@intel.com>
4580 M: Gang Wei <gang.wei@intel.com>
4581 M: Shane Wang <shane.wang@intel.com>
4582 L: tboot-devel@lists.sourceforge.net
4583 W: http://tboot.sourceforge.net
4584 T: hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
4586 F: Documentation/intel_txt.txt
4587 F: include/linux/tboot.h
4588 F: arch/x86/kernel/tboot.c
4590 INTEL WIRELESS WIMAX CONNECTION 2400
4591 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
4592 M: linux-wimax@intel.com
4593 L: wimax@linuxwimax.org
4595 W: http://linuxwimax.org
4596 F: Documentation/wimax/README.i2400m
4597 F: drivers/net/wimax/i2400m/
4598 F: include/uapi/linux/wimax/i2400m.h
4600 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
4601 M: Stanislaw Gruszka <sgruszka@redhat.com>
4602 L: linux-wireless@vger.kernel.org
4604 F: drivers/net/wireless/iwlegacy/
4606 INTEL WIRELESS WIFI LINK (iwlwifi)
4607 M: Johannes Berg <johannes.berg@intel.com>
4608 M: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
4609 M: Intel Linux Wireless <ilw@linux.intel.com>
4610 L: linux-wireless@vger.kernel.org
4611 W: http://intellinuxwireless.org
4612 T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
4614 F: drivers/net/wireless/iwlwifi/
4616 INTEL MANAGEMENT ENGINE (mei)
4617 M: Tomas Winkler <tomas.winkler@intel.com>
4618 L: linux-kernel@vger.kernel.org
4620 F: include/uapi/linux/mei.h
4621 F: drivers/misc/mei/*
4622 F: Documentation/misc-devices/mei/*
4624 IOC3 ETHERNET DRIVER
4625 M: Ralf Baechle <ralf@linux-mips.org>
4626 L: linux-mips@linux-mips.org
4628 F: drivers/net/ethernet/sgi/ioc3-eth.c
4631 M: Pat Gefre <pfg@sgi.com>
4632 L: linux-serial@vger.kernel.org
4634 F: drivers/tty/serial/ioc3_serial.c
4637 M: Joerg Roedel <joro@8bytes.org>
4638 L: iommu@lists.linux-foundation.org
4639 T: git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
4644 M: Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
4646 F: net/ipv4/netfilter/ipt_MASQUERADE.c
4648 IP1000A 10/100/1000 GIGABIT ETHERNET DRIVER
4649 M: Francois Romieu <romieu@fr.zoreil.com>
4650 M: Sorbica Shieh <sorbica@icplus.com.tw>
4651 L: netdev@vger.kernel.org
4653 F: drivers/net/ethernet/icplus/ipg.*
4656 M: Mike Marciniszyn <infinipath@intel.com>
4657 L: linux-rdma@vger.kernel.org
4659 F: drivers/infiniband/hw/ipath/
4662 M: Corey Minyard <minyard@acm.org>
4663 L: openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
4664 W: http://openipmi.sourceforge.net/
4666 F: Documentation/IPMI.txt
4667 F: drivers/char/ipmi/
4668 F: include/linux/ipmi*
4669 F: include/uapi/linux/ipmi*
4671 IPS SCSI RAID DRIVER
4672 M: Adaptec OEM Raid Solutions <aacraid@adaptec.com>
4673 L: linux-scsi@vger.kernel.org
4674 W: http://www.adaptec.com/
4676 F: drivers/scsi/ips*
4679 M: Wensong Zhang <wensong@linux-vs.org>
4680 M: Simon Horman <horms@verge.net.au>
4681 M: Julian Anastasov <ja@ssi.bg>
4682 L: netdev@vger.kernel.org
4683 L: lvs-devel@vger.kernel.org
4685 F: Documentation/networking/ipvs-sysctl.txt
4686 F: include/net/ip_vs.h
4687 F: include/uapi/linux/ip_vs.h
4688 F: net/netfilter/ipvs/
4691 M: Jiri Kosina <jkosina@suse.cz>
4692 M: David Sterba <dsterba@suse.cz>
4694 F: drivers/tty/ipwireless/
4697 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
4698 L: netdev@vger.kernel.org
4700 F: include/net/ipx.h
4701 F: include/uapi/linux/ipx.h
4705 M: Samuel Ortiz <samuel@sortiz.org>
4706 L: irda-users@lists.sourceforge.net (subscribers-only)
4707 L: netdev@vger.kernel.org
4708 W: http://irda.sourceforge.net/
4710 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
4711 F: Documentation/networking/irda.txt
4712 F: drivers/net/irda/
4713 F: include/net/irda/
4717 M: Thomas Gleixner <tglx@linutronix.de>
4718 L: linux-kernel@vger.kernel.org
4720 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
4724 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
4725 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
4727 F: Documentation/IRQ-domain.txt
4728 F: include/linux/irqdomain.h
4729 F: kernel/irq/irqdomain.c
4732 M: Jaroslav Kysela <perex@perex.cz>
4734 F: Documentation/isapnp.txt
4735 F: drivers/pnp/isapnp/
4736 F: include/linux/isapnp.h
4739 M: Hans Verkuil <hverkuil@xs4all.nl>
4740 L: linux-media@vger.kernel.org
4741 T: git git://linuxtv.org/media_tree.git
4742 W: http://linuxtv.org
4744 F: drivers/media/radio/radio-isa*
4746 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
4747 M: Peter Jones <pjones@redhat.com>
4748 M: Konrad Rzeszutek Wilk <konrad@kernel.org>
4750 F: drivers/firmware/iscsi_ibft*
4753 M: Mike Christie <michaelc@cs.wisc.edu>
4754 L: open-iscsi@googlegroups.com
4755 W: www.open-iscsi.org
4756 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
4758 F: drivers/scsi/*iscsi*
4759 F: include/scsi/*iscsi*
4761 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
4762 M: Or Gerlitz <ogerlitz@mellanox.com>
4763 M: Roi Dayan <roid@mellanox.com>
4764 L: linux-rdma@vger.kernel.org
4766 W: http://www.openfabrics.org
4767 W: www.open-iscsi.org
4768 Q: http://patchwork.kernel.org/project/linux-rdma/list/
4769 F: drivers/infiniband/ulp/iser/
4772 M: Karsten Keil <isdn@linux-pingi.de>
4773 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
4774 L: netdev@vger.kernel.org
4775 W: http://www.isdn4linux.de
4776 T: git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
4778 F: Documentation/isdn/
4780 F: include/linux/isdn.h
4781 F: include/linux/isdn/
4782 F: include/uapi/linux/isdn.h
4783 F: include/uapi/linux/isdn/
4785 ISDN SUBSYSTEM (Eicon active card driver)
4786 M: Armin Schindler <mac@melware.de>
4787 L: isdn4linux@listserv.isdn4linux.de (subscribers-only)
4788 W: http://www.melware.de
4790 F: drivers/isdn/hardware/eicon/
4792 IT87 HARDWARE MONITORING DRIVER
4793 M: Jean Delvare <jdelvare@suse.de>
4794 L: lm-sensors@lm-sensors.org
4796 F: Documentation/hwmon/it87
4797 F: drivers/hwmon/it87.c
4800 M: Malcolm Priestley <tvboxspy@gmail.com>
4801 L: linux-media@vger.kernel.org
4802 W: http://linuxtv.org/
4803 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4805 F: drivers/media/usb/dvb-usb-v2/it913x*
4807 IT913X FE MEDIA DRIVER
4808 M: Malcolm Priestley <tvboxspy@gmail.com>
4809 L: linux-media@vger.kernel.org
4810 W: http://linuxtv.org/
4811 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4813 F: drivers/media/dvb-frontends/it913x-fe*
4816 M: Antti Palosaari <crope@iki.fi>
4817 L: linux-media@vger.kernel.org
4818 W: http://linuxtv.org/
4819 W: http://palosaari.fi/linux/
4820 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4821 T: git git://linuxtv.org/anttip/media_tree.git
4823 F: drivers/media/tuners/tuner_it913x*
4825 IVTV VIDEO4LINUX DRIVER
4826 M: Andy Walls <awalls@md.metrocast.net>
4827 L: ivtv-devel@ivtvdriver.org (moderated for non-subscribers)
4828 L: linux-media@vger.kernel.org
4829 T: git git://linuxtv.org/media_tree.git
4830 W: http://www.ivtvdriver.org
4832 F: Documentation/video4linux/*.ivtv
4833 F: drivers/media/pci/ivtv/
4834 F: include/uapi/linux/ivtv*
4836 IX2505V MEDIA DRIVER
4837 M: Malcolm Priestley <tvboxspy@gmail.com>
4838 L: linux-media@vger.kernel.org
4839 W: http://linuxtv.org/
4840 Q: http://patchwork.linuxtv.org/project/linux-media/list/
4842 F: drivers/media/dvb-frontends/ix2505v*
4844 JC42.4 TEMPERATURE SENSOR DRIVER
4845 M: Guenter Roeck <linux@roeck-us.net>
4846 L: lm-sensors@lm-sensors.org
4848 F: drivers/hwmon/jc42.c
4849 F: Documentation/hwmon/jc42
4852 M: Dave Kleikamp <shaggy@kernel.org>
4853 L: jfs-discussion@lists.sourceforge.net
4854 W: http://jfs.sourceforge.net/
4855 T: git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
4857 F: Documentation/filesystems/jfs.txt
4861 M: Guo-Fu Tseng <cooldavid@cooldavid.org>
4862 L: netdev@vger.kernel.org
4864 F: drivers/net/ethernet/jme.*
4866 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
4867 M: David Woodhouse <dwmw2@infradead.org>
4868 L: linux-mtd@lists.infradead.org
4869 W: http://www.linux-mtd.infradead.org/doc/jffs2.html
4872 F: include/uapi/linux/jffs2.h
4874 JOURNALLING LAYER FOR BLOCK DEVICES (JBD)
4875 M: Andrew Morton <akpm@linux-foundation.org>
4876 M: Jan Kara <jack@suse.cz>
4877 L: linux-ext4@vger.kernel.org
4880 F: include/linux/jbd.h
4882 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
4883 M: "Theodore Ts'o" <tytso@mit.edu>
4884 L: linux-ext4@vger.kernel.org
4887 F: include/linux/jbd2.h
4889 JSM Neo PCI based serial card
4890 M: Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4891 L: linux-serial@vger.kernel.org
4893 F: drivers/tty/serial/jsm/
4895 K10TEMP HARDWARE MONITORING DRIVER
4896 M: Clemens Ladisch <clemens@ladisch.de>
4897 L: lm-sensors@lm-sensors.org
4899 F: Documentation/hwmon/k10temp
4900 F: drivers/hwmon/k10temp.c
4902 K8TEMP HARDWARE MONITORING DRIVER
4903 M: Rudolf Marek <r.marek@assembler.cz>
4904 L: lm-sensors@lm-sensors.org
4906 F: Documentation/hwmon/k8temp
4907 F: drivers/hwmon/k8temp.c
4910 M: Jovi Zhangwei <jovi.zhangwei@gmail.com>
4911 W: http://www.ktap.org
4912 L: ktap@freelists.org
4914 F: drivers/staging/ktap/
4917 M: "Yann E. MORIN" <yann.morin.1998@free.fr>
4918 L: linux-kbuild@vger.kernel.org
4919 T: git://gitorious.org/linux-kconfig/linux-kconfig
4921 F: Documentation/kbuild/kconfig-language.txt
4925 M: Vivek Goyal <vgoyal@redhat.com>
4926 M: Haren Myneni <hbabu@us.ibm.com>
4927 L: kexec@lists.infradead.org
4928 W: http://lse.sourceforge.net/kdump/
4930 F: Documentation/kdump/
4932 KEENE FM RADIO TRANSMITTER DRIVER
4933 M: Hans Verkuil <hverkuil@xs4all.nl>
4934 L: linux-media@vger.kernel.org
4935 T: git git://linuxtv.org/media_tree.git
4936 W: http://linuxtv.org
4938 F: drivers/media/radio/radio-keene*
4940 KERNEL AUTOMOUNTER v4 (AUTOFS4)
4941 M: Ian Kent <raven@themaw.net>
4942 L: autofs@vger.kernel.org
4946 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
4947 M: Michal Marek <mmarek@suse.cz>
4948 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
4949 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
4950 L: linux-kbuild@vger.kernel.org
4952 F: Documentation/kbuild/
4954 F: scripts/Makefile.*
4960 L: kernel-janitors@vger.kernel.org
4961 W: http://kernelnewbies.org/KernelJanitors
4964 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
4965 M: "J. Bruce Fields" <bfields@fieldses.org>
4966 L: linux-nfs@vger.kernel.org
4967 W: http://nfs.sourceforge.net/
4970 F: include/linux/nfsd/
4971 F: include/uapi/linux/nfsd/
4975 F: include/linux/lockd/
4976 F: include/linux/sunrpc/
4977 F: include/uapi/linux/sunrpc/
4979 KERNEL VIRTUAL MACHINE (KVM)
4980 M: Gleb Natapov <gleb@kernel.org>
4981 M: Paolo Bonzini <pbonzini@redhat.com>
4982 L: kvm@vger.kernel.org
4983 W: http://www.linux-kvm.org
4984 T: git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
4986 F: Documentation/*/kvm*.txt
4987 F: Documentation/virtual/kvm/
4989 F: arch/*/include/asm/kvm*
4990 F: include/linux/kvm*
4991 F: include/uapi/linux/kvm*
4994 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
4995 M: Joerg Roedel <joro@8bytes.org>
4996 L: kvm@vger.kernel.org
4997 W: http://kvm.qumranet.com
4999 F: arch/x86/include/asm/svm.h
5000 F: arch/x86/kvm/svm.c
5002 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
5003 M: Alexander Graf <agraf@suse.de>
5004 L: kvm-ppc@vger.kernel.org
5005 W: http://kvm.qumranet.com
5006 T: git git://github.com/agraf/linux-2.6.git
5008 F: arch/powerpc/include/asm/kvm*
5009 F: arch/powerpc/kvm/
5011 KERNEL VIRTUAL MACHINE For Itanium (KVM/IA64)
5012 M: Xiantao Zhang <xiantao.zhang@intel.com>
5013 L: kvm-ia64@vger.kernel.org
5014 W: http://kvm.qumranet.com
5016 F: Documentation/ia64/kvm.txt
5017 F: arch/ia64/include/asm/kvm*
5020 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
5021 M: Christian Borntraeger <borntraeger@de.ibm.com>
5022 M: Cornelia Huck <cornelia.huck@de.ibm.com>
5023 M: linux390@de.ibm.com
5024 L: linux-s390@vger.kernel.org
5025 W: http://www.ibm.com/developerworks/linux/linux390/
5027 F: Documentation/s390/kvm.txt
5028 F: arch/s390/include/asm/kvm*
5030 F: drivers/s390/kvm/
5032 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
5033 M: Christoffer Dall <christoffer.dall@linaro.org>
5034 L: kvmarm@lists.cs.columbia.edu
5035 W: http://systems.cs.columbia.edu/projects/kvm-arm
5037 F: arch/arm/include/uapi/asm/kvm*
5038 F: arch/arm/include/asm/kvm*
5041 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
5042 M: Marc Zyngier <marc.zyngier@arm.com>
5043 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5044 L: kvmarm@lists.cs.columbia.edu
5046 F: arch/arm64/include/uapi/asm/kvm*
5047 F: arch/arm64/include/asm/kvm*
5051 M: Eric Biederman <ebiederm@xmission.com>
5052 W: http://kernel.org/pub/linux/utils/kernel/kexec/
5053 L: kexec@lists.infradead.org
5055 F: include/linux/kexec.h
5056 F: include/uapi/linux/kexec.h
5060 M: David Howells <dhowells@redhat.com>
5061 L: keyrings@linux-nfs.org
5063 F: Documentation/security/keys.txt
5064 F: include/linux/key.h
5065 F: include/linux/key-type.h
5070 M: David Safford <safford@watson.ibm.com>
5071 M: Mimi Zohar <zohar@us.ibm.com>
5072 L: linux-security-module@vger.kernel.org
5073 L: keyrings@linux-nfs.org
5075 F: Documentation/security/keys-trusted-encrypted.txt
5076 F: include/keys/trusted-type.h
5077 F: security/keys/trusted.c
5078 F: security/keys/trusted.h
5081 M: Mimi Zohar <zohar@us.ibm.com>
5082 M: David Safford <safford@watson.ibm.com>
5083 L: linux-security-module@vger.kernel.org
5084 L: keyrings@linux-nfs.org
5086 F: Documentation/security/keys-trusted-encrypted.txt
5087 F: include/keys/encrypted-type.h
5088 F: security/keys/encrypted-keys/
5090 KGDB / KDB /debug_core
5091 M: Jason Wessel <jason.wessel@windriver.com>
5092 W: http://kgdb.wiki.kernel.org/
5093 L: kgdb-bugreport@lists.sourceforge.net
5095 F: Documentation/DocBook/kgdb.tmpl
5096 F: drivers/misc/kgdbts.c
5097 F: drivers/tty/serial/kgdboc.c
5098 F: include/linux/kdb.h
5099 F: include/linux/kgdb.h
5103 M: Vegard Nossum <vegardno@ifi.uio.no>
5104 M: Pekka Enberg <penberg@kernel.org>
5106 F: Documentation/kmemcheck.txt
5107 F: arch/x86/include/asm/kmemcheck.h
5108 F: arch/x86/mm/kmemcheck/
5109 F: include/linux/kmemcheck.h
5113 M: Catalin Marinas <catalin.marinas@arm.com>
5115 F: Documentation/kmemleak.txt
5116 F: include/linux/kmemleak.h
5118 F: mm/kmemleak-test.c
5121 M: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
5122 M: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
5123 M: "David S. Miller" <davem@davemloft.net>
5124 M: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
5126 F: Documentation/kprobes.txt
5127 F: include/linux/kprobes.h
5130 KS0108 LCD CONTROLLER DRIVER
5131 M: Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
5132 W: http://miguelojeda.es/auxdisplay.htm
5133 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5135 F: Documentation/auxdisplay/ks0108
5136 F: drivers/auxdisplay/ks0108.c
5137 F: include/linux/ks0108.h
5140 L: linux-x25@vger.kernel.org
5142 F: Documentation/networking/lapb-module.txt
5146 LASI 53c700 driver for PARISC
5147 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5148 L: linux-scsi@vger.kernel.org
5150 F: Documentation/scsi/53c700.txt
5151 F: drivers/scsi/53c700*
5154 M: Bryan Wu <cooloney@gmail.com>
5155 M: Richard Purdie <rpurdie@rpsys.net>
5156 L: linux-leds@vger.kernel.org
5157 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/linux-leds.git
5160 F: include/linux/leds.h
5162 LEGACY EEPROM DRIVER
5163 M: Jean Delvare <jdelvare@suse.de>
5165 F: Documentation/misc-devices/eeprom
5166 F: drivers/misc/eeprom/eeprom.c
5168 LEGO USB Tower driver
5169 M: Juergen Stuber <starblue@users.sourceforge.net>
5170 L: legousb-devel@lists.sourceforge.net
5171 W: http://legousb.sourceforge.net/
5173 F: drivers/usb/misc/legousbtower.c
5176 M: Michael Krufky <mkrufky@linuxtv.org>
5177 L: linux-media@vger.kernel.org
5178 W: http://linuxtv.org/
5179 W: http://github.com/mkrufky
5180 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5181 T: git git://linuxtv.org/mkrufky/tuners.git
5183 F: drivers/media/dvb-frontends/lg2160.*
5185 LGDT3305 MEDIA DRIVER
5186 M: Michael Krufky <mkrufky@linuxtv.org>
5187 L: linux-media@vger.kernel.org
5188 W: http://linuxtv.org/
5189 W: http://github.com/mkrufky
5190 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5191 T: git git://linuxtv.org/mkrufky/tuners.git
5193 F: drivers/media/dvb-frontends/lgdt3305.*
5196 M: Rusty Russell <rusty@rustcorp.com.au>
5197 L: lguest@lists.ozlabs.org
5198 W: http://lguest.ozlabs.org/
5200 F: arch/x86/include/asm/lguest*.h
5203 F: include/linux/lguest*.h
5207 M: Sasha Levin <sasha.levin@oracle.com>
5209 F: tools/lib/lockdep/
5211 LINUX FOR IBM pSERIES (RS/6000)
5212 M: Paul Mackerras <paulus@au.ibm.com>
5213 W: http://www.ibm.com/linux/ltc/projects/ppc
5215 F: arch/powerpc/boot/rs6000.h
5217 LINUX FOR POWERPC (32-BIT AND 64-BIT)
5218 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
5219 M: Paul Mackerras <paulus@samba.org>
5220 W: http://www.penguinppc.org/
5221 L: linuxppc-dev@lists.ozlabs.org
5222 Q: http://patchwork.ozlabs.org/project/linuxppc-dev/list/
5223 T: git git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc.git
5225 F: Documentation/powerpc/
5228 LINUX FOR POWER MACINTOSH
5229 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
5230 W: http://www.penguinppc.org/
5231 L: linuxppc-dev@lists.ozlabs.org
5233 F: arch/powerpc/platforms/powermac/
5234 F: drivers/macintosh/
5236 LINUX FOR POWERPC EMBEDDED MPC5XXX
5237 M: Anatolij Gustschin <agust@denx.de>
5238 L: linuxppc-dev@lists.ozlabs.org
5239 T: git git://git.denx.de/linux-2.6-agust.git
5241 F: arch/powerpc/platforms/512x/
5242 F: arch/powerpc/platforms/52xx/
5244 LINUX FOR POWERPC EMBEDDED PPC4XX
5245 M: Josh Boyer <jwboyer@gmail.com>
5246 M: Matt Porter <mporter@kernel.crashing.org>
5247 W: http://www.penguinppc.org/
5248 L: linuxppc-dev@lists.ozlabs.org
5249 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jwboyer/powerpc-4xx.git
5251 F: arch/powerpc/platforms/40x/
5252 F: arch/powerpc/platforms/44x/
5254 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
5255 L: linuxppc-dev@lists.ozlabs.org
5257 F: arch/powerpc/*/*virtex*
5258 F: arch/powerpc/*/*/*virtex*
5260 LINUX FOR POWERPC EMBEDDED PPC8XX
5261 M: Vitaly Bordug <vitb@kernel.crashing.org>
5262 M: Marcelo Tosatti <marcelo@kvack.org>
5263 W: http://www.penguinppc.org/
5264 L: linuxppc-dev@lists.ozlabs.org
5266 F: arch/powerpc/platforms/8xx/
5268 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
5269 M: Kumar Gala <galak@kernel.crashing.org>
5270 W: http://www.penguinppc.org/
5271 L: linuxppc-dev@lists.ozlabs.org
5273 F: arch/powerpc/platforms/83xx/
5274 F: arch/powerpc/platforms/85xx/
5276 LINUX FOR POWERPC PA SEMI PWRFICIENT
5277 M: Olof Johansson <olof@lixom.net>
5278 L: linuxppc-dev@lists.ozlabs.org
5280 F: arch/powerpc/platforms/pasemi/
5281 F: drivers/*/*pasemi*
5282 F: drivers/*/*/*pasemi*
5284 LINUX SECURITY MODULE (LSM) FRAMEWORK
5285 M: Chris Wright <chrisw@sous-sol.org>
5286 L: linux-security-module@vger.kernel.org
5289 LIS3LV02D ACCELEROMETER DRIVER
5290 M: Eric Piel <eric.piel@tremplin-utc.net>
5292 F: Documentation/misc-devices/lis3lv02d
5293 F: drivers/misc/lis3lv02d/
5294 F: drivers/platform/x86/hp_accel.c
5297 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5299 F: include/linux/llc.h
5300 F: include/uapi/linux/llc.h
5304 LM73 HARDWARE MONITOR DRIVER
5305 M: Guillaume Ligneul <guillaume.ligneul@gmail.com>
5306 L: lm-sensors@lm-sensors.org
5308 F: drivers/hwmon/lm73.c
5310 LM78 HARDWARE MONITOR DRIVER
5311 M: Jean Delvare <jdelvare@suse.de>
5312 L: lm-sensors@lm-sensors.org
5314 F: Documentation/hwmon/lm78
5315 F: drivers/hwmon/lm78.c
5317 LM83 HARDWARE MONITOR DRIVER
5318 M: Jean Delvare <jdelvare@suse.de>
5319 L: lm-sensors@lm-sensors.org
5321 F: Documentation/hwmon/lm83
5322 F: drivers/hwmon/lm83.c
5324 LM90 HARDWARE MONITOR DRIVER
5325 M: Jean Delvare <jdelvare@suse.de>
5326 L: lm-sensors@lm-sensors.org
5328 F: Documentation/hwmon/lm90
5329 F: Documentation/devicetree/bindings/hwmon/lm90.txt
5330 F: drivers/hwmon/lm90.c
5332 LM95234 HARDWARE MONITOR DRIVER
5333 M: Guenter Roeck <linux@roeck-us.net>
5334 L: lm-sensors@lm-sensors.org
5336 F: Documentation/hwmon/lm95234
5337 F: drivers/hwmon/lm95234.c
5339 LME2510 MEDIA DRIVER
5340 M: Malcolm Priestley <tvboxspy@gmail.com>
5341 L: linux-media@vger.kernel.org
5342 W: http://linuxtv.org/
5343 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5345 F: drivers/media/usb/dvb-usb-v2/lmedm04*
5347 LOCKDEP AND LOCKSTAT
5348 M: Peter Zijlstra <peterz@infradead.org>
5349 M: Ingo Molnar <mingo@redhat.com>
5350 L: linux-kernel@vger.kernel.org
5351 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
5353 F: Documentation/lockdep*.txt
5354 F: Documentation/lockstat.txt
5355 F: include/linux/lockdep.h
5358 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
5359 M: "Richard Russon (FlatCap)" <ldm@flatcap.org>
5360 L: linux-ntfs-dev@lists.sourceforge.net
5361 W: http://www.linux-ntfs.org/content/view/19/37/
5363 F: Documentation/ldm.txt
5364 F: block/partitions/ldm.*
5367 M: Joern Engel <joern@logfs.org>
5368 M: Prasad Joshi <prasadjoshi.linux@gmail.com>
5374 LPC32XX MACHINE SUPPORT
5375 M: Roland Stigge <stigge@antcom.de>
5376 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5378 F: arch/arm/mach-lpc32xx/
5380 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
5381 M: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
5382 M: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
5384 L: DL-MPTFusionLinux@lsi.com
5385 L: linux-scsi@vger.kernel.org
5386 W: http://www.lsilogic.com/support
5388 F: drivers/message/fusion/
5389 F: drivers/scsi/mpt2sas/
5390 F: drivers/scsi/mpt3sas/
5392 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
5393 M: Matthew Wilcox <matthew@wil.cx>
5394 L: linux-scsi@vger.kernel.org
5396 F: drivers/scsi/sym53c8xx_2/
5398 LTC4261 HARDWARE MONITOR DRIVER
5399 M: Guenter Roeck <linux@roeck-us.net>
5400 L: lm-sensors@lm-sensors.org
5402 F: Documentation/hwmon/ltc4261
5403 F: drivers/hwmon/ltc4261.c
5405 LTP (Linux Test Project)
5406 M: Shubham Goyal <shubham@linux.vnet.ibm.com>
5407 M: Mike Frysinger <vapier@gentoo.org>
5408 M: Cyril Hrubis <chrubis@suse.cz>
5409 M: Caspar Zhang <caspar@casparzhang.com>
5410 M: Wanlong Gao <gaowanlong@cn.fujitsu.com>
5411 L: ltp-list@lists.sourceforge.net (subscribers-only)
5412 W: http://ltp.sourceforge.net/
5413 T: git git://github.com/linux-test-project/ltp.git
5414 T: git git://ltp.git.sourceforge.net/gitroot/ltp/ltp-dev
5418 M: Hirokazu Takata <takata@linux-m32r.org>
5419 L: linux-m32r@ml.linux-m32r.org (moderated for non-subscribers)
5420 L: linux-m32r-ja@ml.linux-m32r.org (in Japanese)
5421 W: http://www.linux-m32r.org/
5426 M: Geert Uytterhoeven <geert@linux-m68k.org>
5427 L: linux-m68k@lists.linux-m68k.org
5428 W: http://www.linux-m68k.org/
5429 T: git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
5434 M68K ON APPLE MACINTOSH
5435 M: Joshua Thompson <funaho@jurai.org>
5436 W: http://www.mac.linux-m68k.org/
5437 L: linux-m68k@lists.linux-m68k.org
5442 M: Philip Blundell <philb@gnu.org>
5443 W: http://www.tazenda.demon.co.uk/phil/linux-hp
5447 M88DS3103 MEDIA DRIVER
5448 M: Antti Palosaari <crope@iki.fi>
5449 L: linux-media@vger.kernel.org
5450 W: http://linuxtv.org/
5451 W: http://palosaari.fi/linux/
5452 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5453 T: git git://linuxtv.org/anttip/media_tree.git
5455 F: drivers/media/dvb-frontends/m88ds3103*
5457 M88RS2000 MEDIA DRIVER
5458 M: Malcolm Priestley <tvboxspy@gmail.com>
5459 L: linux-media@vger.kernel.org
5460 W: http://linuxtv.org/
5461 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5463 F: drivers/media/dvb-frontends/m88rs2000*
5465 M88TS2022 MEDIA DRIVER
5466 M: Antti Palosaari <crope@iki.fi>
5467 L: linux-media@vger.kernel.org
5468 W: http://linuxtv.org/
5469 W: http://palosaari.fi/linux/
5470 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5471 T: git git://linuxtv.org/anttip/media_tree.git
5473 F: drivers/media/tuners/m88ts2022*
5475 MA901 MASTERKIT USB FM RADIO DRIVER
5476 M: Alexey Klimov <klimov.linux@gmail.com>
5477 L: linux-media@vger.kernel.org
5478 T: git git://linuxtv.org/media_tree.git
5480 F: drivers/media/radio/radio-ma901.c
5483 M: Johannes Berg <johannes@sipsolutions.net>
5484 L: linux-wireless@vger.kernel.org
5485 W: http://wireless.kernel.org/
5486 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5487 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5489 F: Documentation/networking/mac80211-injection.txt
5490 F: include/net/mac80211.h
5493 MAC80211 PID RATE CONTROL
5494 M: Stefano Brivio <stefano.brivio@polimi.it>
5495 M: Mattias Nissler <mattias.nissler@gmx.de>
5496 L: linux-wireless@vger.kernel.org
5497 W: http://wireless.kernel.org/en/developers/Documentation/mac80211/RateControl/PID
5498 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
5499 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
5501 F: net/mac80211/rc80211_pid*
5504 M: Patrick McHardy <kaber@trash.net>
5505 L: netdev@vger.kernel.org
5507 F: drivers/net/macvlan.c
5508 F: include/linux/if_macvlan.h
5510 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
5511 M: Michael Kerrisk <mtk.manpages@gmail.com>
5512 W: http://www.kernel.org/doc/man-pages
5513 L: linux-man@vger.kernel.org
5516 MARVELL ARMADA DRM SUPPORT
5517 M: Russell King <rmk+kernel@arm.linux.org.uk>
5519 F: drivers/gpu/drm/armada/
5521 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
5522 M: Mirko Lindner <mlindner@marvell.com>
5523 M: Stephen Hemminger <stephen@networkplumber.org>
5524 L: netdev@vger.kernel.org
5526 F: drivers/net/ethernet/marvell/sk*
5528 MARVELL LIBERTAS WIRELESS DRIVER
5529 L: libertas-dev@lists.infradead.org
5531 F: drivers/net/wireless/libertas/
5533 MARVELL MV643XX ETHERNET DRIVER
5534 M: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
5535 L: netdev@vger.kernel.org
5537 F: drivers/net/ethernet/marvell/mv643xx_eth.*
5538 F: include/linux/mv643xx.h
5540 MARVELL MVNETA ETHERNET DRIVER
5541 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
5542 L: netdev@vger.kernel.org
5544 F: drivers/net/ethernet/marvell/mvneta.*
5546 MARVELL MWIFIEX WIRELESS DRIVER
5547 M: Bing Zhao <bzhao@marvell.com>
5548 L: linux-wireless@vger.kernel.org
5550 F: drivers/net/wireless/mwifiex/
5552 MARVELL MWL8K WIRELESS DRIVER
5553 M: Lennert Buytenhek <buytenh@wantstofly.org>
5554 L: linux-wireless@vger.kernel.org
5556 F: drivers/net/wireless/mwl8k.c
5558 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
5559 M: Nicolas Pitre <nico@fluxnic.net>
5561 F: drivers/mmc/host/mvsdio.*
5563 MATROX FRAMEBUFFER DRIVER
5564 L: linux-fbdev@vger.kernel.org
5566 F: drivers/video/matrox/matroxfb_*
5567 F: include/uapi/linux/matroxfb.h
5569 MAX16065 HARDWARE MONITOR DRIVER
5570 M: Guenter Roeck <linux@roeck-us.net>
5571 L: lm-sensors@lm-sensors.org
5573 F: Documentation/hwmon/max16065
5574 F: drivers/hwmon/max16065.c
5576 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5577 M: "Hans J. Koch" <hjk@hansjkoch.de>
5578 L: lm-sensors@lm-sensors.org
5580 F: Documentation/hwmon/max6650
5581 F: drivers/hwmon/max6650.c
5583 MAX6697 HARDWARE MONITOR DRIVER
5584 M: Guenter Roeck <linux@roeck-us.net>
5585 L: lm-sensors@lm-sensors.org
5587 F: Documentation/hwmon/max6697
5588 F: Documentation/devicetree/bindings/i2c/max6697.txt
5589 F: drivers/hwmon/max6697.c
5590 F: include/linux/platform_data/max6697.h
5592 MAXIRADIO FM RADIO RECEIVER DRIVER
5593 M: Hans Verkuil <hverkuil@xs4all.nl>
5594 L: linux-media@vger.kernel.org
5595 T: git git://linuxtv.org/media_tree.git
5596 W: http://linuxtv.org
5598 F: drivers/media/radio/radio-maxiradio*
5600 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
5601 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
5602 P: LinuxTV.org Project
5603 L: linux-media@vger.kernel.org
5604 W: http://linuxtv.org
5605 Q: http://patchwork.kernel.org/project/linux-media/list/
5606 T: git git://linuxtv.org/media_tree.git
5608 F: Documentation/dvb/
5609 F: Documentation/video4linux/
5610 F: Documentation/DocBook/media/
5612 F: drivers/staging/media/
5614 F: include/uapi/linux/dvb/
5615 F: include/uapi/linux/videodev2.h
5616 F: include/uapi/linux/media.h
5617 F: include/uapi/linux/v4l2-*
5618 F: include/uapi/linux/meye.h
5619 F: include/uapi/linux/ivtv*
5620 F: include/uapi/linux/uvcvideo.h
5622 MEDIAVISION PRO MOVIE STUDIO DRIVER
5623 M: Hans Verkuil <hverkuil@xs4all.nl>
5624 L: linux-media@vger.kernel.org
5625 T: git git://linuxtv.org/media_tree.git
5626 W: http://linuxtv.org
5628 F: drivers/media/parport/pms*
5630 MEGARAID SCSI DRIVERS
5631 M: Neela Syam Kolli <megaraidlinux@lsi.com>
5632 L: linux-scsi@vger.kernel.org
5633 W: http://megaraid.lsilogic.com
5635 F: Documentation/scsi/megaraid.txt
5636 F: drivers/scsi/megaraid.*
5637 F: drivers/scsi/megaraid/
5639 MELLANOX ETHERNET DRIVER (mlx4_en)
5640 M: Amir Vadai <amirv@mellanox.com>
5641 L: netdev@vger.kernel.org
5643 W: http://www.mellanox.com
5644 Q: http://patchwork.ozlabs.org/project/netdev/list/
5645 F: drivers/net/ethernet/mellanox/mlx4/en_*
5648 L: linux-mm@kvack.org
5649 W: http://www.linux-mm.org
5651 F: include/linux/mm.h
5652 F: include/linux/gfp.h
5653 F: include/linux/mmzone.h
5654 F: include/linux/memory_hotplug.h
5655 F: include/linux/vmalloc.h
5658 MEMORY RESOURCE CONTROLLER
5659 M: Johannes Weiner <hannes@cmpxchg.org>
5660 M: Michal Hocko <mhocko@suse.cz>
5661 M: Balbir Singh <bsingharora@gmail.com>
5662 M: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
5663 L: cgroups@vger.kernel.org
5664 L: linux-mm@kvack.org
5669 MEMORY TECHNOLOGY DEVICES (MTD)
5670 M: David Woodhouse <dwmw2@infradead.org>
5671 M: Brian Norris <computersforpeace@gmail.com>
5672 L: linux-mtd@lists.infradead.org
5673 W: http://www.linux-mtd.infradead.org/
5674 Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
5675 T: git git://git.infradead.org/linux-mtd.git
5678 F: include/linux/mtd/
5679 F: include/uapi/mtd/
5681 MEN A21 WATCHDOG DRIVER
5682 M: Johannes Thumshirn <johannes.thumshirn@men.de>
5683 L: linux-watchdog@vger.kernel.org
5685 F: drivers/watchdog/mena21_wdt.c
5688 M: James Hogan <james.hogan@imgtec.com>
5689 L: linux-metag@vger.kernel.org
5692 F: Documentation/metag/
5693 F: Documentation/devicetree/bindings/metag/
5694 F: drivers/clocksource/metag_generic.c
5695 F: drivers/irqchip/irq-metag.c
5696 F: drivers/irqchip/irq-metag-ext.c
5697 F: drivers/tty/metag_da.c
5700 MICROBLAZE ARCHITECTURE
5701 M: Michal Simek <monstr@monstr.eu>
5702 L: microblaze-uclinux@itee.uq.edu.au (moderated for non-subscribers)
5703 W: http://www.monstr.eu/fdt/
5704 T: git git://git.monstr.eu/linux-2.6-microblaze.git
5709 M: Oliver Neukum <oliver@neukum.org>
5711 F: drivers/usb/image/microtek.*
5714 M: Ralf Baechle <ralf@linux-mips.org>
5715 L: linux-mips@linux-mips.org
5716 W: http://www.linux-mips.org/
5717 T: git git://git.linux-mips.org/pub/scm/ralf/linux.git
5718 Q: http://patchwork.linux-mips.org/project/linux-mips/list/
5720 F: Documentation/mips/
5723 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
5724 M: Hans Verkuil <hverkuil@xs4all.nl>
5725 L: linux-media@vger.kernel.org
5726 T: git git://linuxtv.org/media_tree.git
5727 W: http://linuxtv.org
5729 F: drivers/media/radio/radio-miropcm20*
5731 Mellanox MLX5 core VPI driver
5732 M: Eli Cohen <eli@mellanox.com>
5733 L: netdev@vger.kernel.org
5734 L: linux-rdma@vger.kernel.org
5735 W: http://www.mellanox.com
5736 Q: http://patchwork.ozlabs.org/project/netdev/list/
5737 Q: http://patchwork.kernel.org/project/linux-rdma/list/
5738 T: git://openfabrics.org/~eli/connect-ib.git
5740 F: drivers/net/ethernet/mellanox/mlx5/core/
5741 F: include/linux/mlx5/
5743 Mellanox MLX5 IB driver
5744 M: Eli Cohen <eli@mellanox.com>
5745 L: linux-rdma@vger.kernel.org
5746 W: http://www.mellanox.com
5747 Q: http://patchwork.kernel.org/project/linux-rdma/list/
5748 T: git://openfabrics.org/~eli/connect-ib.git
5750 F: include/linux/mlx5/
5751 F: drivers/infiniband/hw/mlx5/
5754 M: Rusty Russell <rusty@rustcorp.com.au>
5756 F: include/linux/module.h
5759 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
5760 W: http://popies.net/meye/
5762 F: Documentation/video4linux/meye.txt
5763 F: drivers/media/pci/meye/
5764 F: include/uapi/linux/meye.h
5766 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
5767 M: Jiri Slaby <jirislaby@gmail.com>
5769 F: Documentation/serial/moxa-smartio
5770 F: drivers/tty/mxser.*
5772 MR800 AVERMEDIA USB FM RADIO DRIVER
5773 M: Alexey Klimov <klimov.linux@gmail.com>
5774 L: linux-media@vger.kernel.org
5775 T: git git://linuxtv.org/media_tree.git
5777 F: drivers/media/radio/radio-mr800.c
5780 M: "Lee, Chun-Yi" <jlee@suse.com>
5781 L: platform-driver-x86@vger.kernel.org
5783 F: drivers/platform/x86/msi-laptop.c
5786 M: Anisse Astier <anisse@astier.eu>
5787 L: platform-driver-x86@vger.kernel.org
5789 F: drivers/platform/x86/msi-wmi.c
5791 MT9M032 APTINA SENSOR DRIVER
5792 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5793 L: linux-media@vger.kernel.org
5794 T: git git://linuxtv.org/media_tree.git
5796 F: drivers/media/i2c/mt9m032.c
5797 F: include/media/mt9m032.h
5799 MT9P031 APTINA CAMERA SENSOR
5800 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5801 L: linux-media@vger.kernel.org
5802 T: git git://linuxtv.org/media_tree.git
5804 F: drivers/media/i2c/mt9p031.c
5805 F: include/media/mt9p031.h
5807 MT9T001 APTINA CAMERA SENSOR
5808 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5809 L: linux-media@vger.kernel.org
5810 T: git git://linuxtv.org/media_tree.git
5812 F: drivers/media/i2c/mt9t001.c
5813 F: include/media/mt9t001.h
5815 MT9V032 APTINA CAMERA SENSOR
5816 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5817 L: linux-media@vger.kernel.org
5818 T: git git://linuxtv.org/media_tree.git
5820 F: drivers/media/i2c/mt9v032.c
5821 F: include/media/mt9v032.h
5823 MULTIFUNCTION DEVICES (MFD)
5824 M: Samuel Ortiz <sameo@linux.intel.com>
5825 M: Lee Jones <lee.jones@linaro.org>
5826 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-next.git
5827 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/mfd-fixes.git
5830 F: include/linux/mfd/
5832 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
5833 M: Chris Ball <chris@printf.net>
5834 L: linux-mmc@vger.kernel.org
5835 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
5838 F: include/linux/mmc/
5839 F: include/uapi/linux/mmc/
5841 MULTIMEDIA CARD (MMC) ETC. OVER SPI
5843 F: drivers/mmc/host/mmc_spi.c
5844 F: include/linux/spi/mmc_spi.h
5846 MULTISOUND SOUND DRIVER
5847 M: Andrew Veliath <andrewtv@usa.net>
5849 F: Documentation/sound/oss/MultiSound
5852 MULTITECH MULTIPORT CARD (ISICOM)
5854 F: drivers/tty/isicom.c
5855 F: include/linux/isicom.h
5857 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
5858 M: Felipe Balbi <balbi@ti.com>
5859 L: linux-usb@vger.kernel.org
5860 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5862 F: drivers/usb/musb/
5864 MXL5007T MEDIA DRIVER
5865 M: Michael Krufky <mkrufky@linuxtv.org>
5866 L: linux-media@vger.kernel.org
5867 W: http://linuxtv.org/
5868 W: http://github.com/mkrufky
5869 Q: http://patchwork.linuxtv.org/project/linux-media/list/
5870 T: git git://linuxtv.org/mkrufky/tuners.git
5872 F: drivers/media/tuners/mxl5007t.*
5874 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
5875 M: Hyong-Youb Kim <hykim@myri.com>
5876 L: netdev@vger.kernel.org
5877 W: https://www.myricom.com/support/downloads/myri10ge.html
5879 F: drivers/net/ethernet/myricom/myri10ge/
5881 NATSEMI ETHERNET DRIVER (DP8381x)
5883 F: drivers/net/ethernet/natsemi/natsemi.c
5885 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
5886 M: Daniel Mack <zonque@gmail.com>
5888 L: alsa-devel@alsa-project.org
5889 W: http://www.native-instruments.com
5893 M: Petr Vandrovec <petr@vandrovec.name>
5897 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
5898 M: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
5899 L: linux-scsi@vger.kernel.org
5901 F: drivers/scsi/NCR_D700.*
5903 NCT6775 HARDWARE MONITOR DRIVER
5904 M: Guenter Roeck <linux@roeck-us.net>
5905 L: lm-sensors@lm-sensors.org
5907 F: Documentation/hwmon/nct6775
5908 F: drivers/hwmon/nct6775.c
5910 NETEFFECT IWARP RNIC DRIVER (IW_NES)
5911 M: Faisal Latif <faisal.latif@intel.com>
5912 L: linux-rdma@vger.kernel.org
5913 W: http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
5915 F: drivers/infiniband/hw/nes/
5917 NETEM NETWORK EMULATOR
5918 M: Stephen Hemminger <stephen@networkplumber.org>
5919 L: netem@lists.linux-foundation.org
5921 F: net/sched/sch_netem.c
5923 NETERION 10GbE DRIVERS (s2io/vxge)
5924 M: Jon Mason <jdmason@kudzu.us>
5925 L: netdev@vger.kernel.org
5927 F: Documentation/networking/s2io.txt
5928 F: Documentation/networking/vxge.txt
5929 F: drivers/net/ethernet/neterion/
5932 M: Pablo Neira Ayuso <pablo@netfilter.org>
5933 M: Patrick McHardy <kaber@trash.net>
5934 M: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
5935 L: netfilter-devel@vger.kernel.org
5936 L: netfilter@vger.kernel.org
5937 L: coreteam@netfilter.org
5938 W: http://www.netfilter.org/
5939 W: http://www.iptables.org/
5940 Q: http://patchwork.ozlabs.org/project/netfilter-devel/list/
5941 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
5942 T: git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
5944 F: include/linux/netfilter*
5945 F: include/linux/netfilter/
5946 F: include/net/netfilter/
5947 F: include/uapi/linux/netfilter*
5948 F: include/uapi/linux/netfilter/
5949 F: net/*/netfilter.c
5954 M: Paul Moore <paul@paul-moore.com>
5955 W: http://netlabel.sf.net
5956 L: netdev@vger.kernel.org
5958 F: Documentation/netlabel/
5959 F: include/net/netlabel.h
5962 NETROM NETWORK LAYER
5963 M: Ralf Baechle <ralf@linux-mips.org>
5964 L: linux-hams@vger.kernel.org
5965 W: http://www.linux-ax25.org/
5967 F: include/net/netrom.h
5968 F: include/uapi/linux/netrom.h
5971 NETWORK BLOCK DEVICE (NBD)
5972 M: Paul Clements <Paul.Clements@steeleye.com>
5974 L: nbd-general@lists.sourceforge.net
5975 F: Documentation/blockdev/nbd.txt
5976 F: drivers/block/nbd.c
5977 F: include/linux/nbd.h
5978 F: include/uapi/linux/nbd.h
5980 NETWORK DROP MONITOR
5981 M: Neil Horman <nhorman@tuxdriver.com>
5982 L: netdev@vger.kernel.org
5984 W: https://fedorahosted.org/dropwatch/
5985 F: net/core/drop_monitor.c
5987 NETWORKING [GENERAL]
5988 M: "David S. Miller" <davem@davemloft.net>
5989 L: netdev@vger.kernel.org
5990 W: http://www.linuxfoundation.org/en/Net
5991 Q: http://patchwork.ozlabs.org/project/netdev/list/
5992 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
5993 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
5997 F: include/linux/in.h
5998 F: include/linux/net.h
5999 F: include/linux/netdevice.h
6000 F: include/uapi/linux/in.h
6001 F: include/uapi/linux/net.h
6002 F: include/uapi/linux/netdevice.h
6004 NETWORKING [IPv4/IPv6]
6005 M: "David S. Miller" <davem@davemloft.net>
6006 M: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
6007 M: James Morris <jmorris@namei.org>
6008 M: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
6009 M: Patrick McHardy <kaber@trash.net>
6010 L: netdev@vger.kernel.org
6011 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6019 M: Steffen Klassert <steffen.klassert@secunet.com>
6020 M: Herbert Xu <herbert@gondor.apana.org.au>
6021 M: "David S. Miller" <davem@davemloft.net>
6022 L: netdev@vger.kernel.org
6023 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
6024 T: git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
6031 F: net/ipv4/ipcomp.c
6032 F: net/ipv4/ip_vti.c
6036 F: net/ipv6/ipcomp6.c
6037 F: net/ipv6/ip6_vti.c
6038 F: include/uapi/linux/xfrm.h
6039 F: include/net/xfrm.h
6041 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
6042 M: Paul Moore <paul@paul-moore.com>
6043 L: netdev@vger.kernel.org
6046 NETWORKING [WIRELESS]
6047 M: "John W. Linville" <linville@tuxdriver.com>
6048 L: linux-wireless@vger.kernel.org
6049 Q: http://patchwork.kernel.org/project/linux-wireless/list/
6050 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless.git
6055 F: include/net/ieee80211*
6056 F: include/linux/wireless.h
6057 F: include/uapi/linux/wireless.h
6058 F: include/net/iw_handler.h
6059 F: drivers/net/wireless/
6062 L: netdev@vger.kernel.org
6063 W: http://www.linuxfoundation.org/en/Net
6064 Q: http://patchwork.ozlabs.org/project/netdev/list/
6065 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
6066 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
6069 F: include/linux/if_*
6070 F: include/linux/netdevice.h
6071 F: include/linux/arcdevice.h
6072 F: include/linux/etherdevice.h
6073 F: include/linux/fcdevice.h
6074 F: include/linux/fddidevice.h
6075 F: include/linux/hippidevice.h
6076 F: include/linux/inetdevice.h
6077 F: include/uapi/linux/if_*
6078 F: include/uapi/linux/netdevice.h
6080 NETXEN (1/10) GbE SUPPORT
6081 M: Manish Chopra <manish.chopra@qlogic.com>
6082 M: Sony Chacko <sony.chacko@qlogic.com>
6083 M: Rajesh Borundia <rajesh.borundia@qlogic.com>
6084 L: netdev@vger.kernel.org
6085 W: http://www.qlogic.com
6087 F: drivers/net/ethernet/qlogic/netxen/
6090 M: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
6091 M: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
6092 M: Samuel Ortiz <sameo@linux.intel.com>
6093 L: linux-wireless@vger.kernel.org
6094 L: linux-nfc@lists.01.org (moderated for non-subscribers)
6098 F: include/uapi/linux/nfc.h
6100 F: include/linux/platform_data/pn544.h
6102 NFS, SUNRPC, AND LOCKD CLIENTS
6103 M: Trond Myklebust <trond.myklebust@primarydata.com>
6104 L: linux-nfs@vger.kernel.org
6105 W: http://client.linux-nfs.org
6106 T: git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
6112 F: include/linux/lockd/
6113 F: include/linux/nfs*
6114 F: include/linux/sunrpc/
6115 F: include/uapi/linux/nfs*
6116 F: include/uapi/linux/sunrpc/
6119 M: KONISHI Ryusuke <konishi.ryusuke@lab.ntt.co.jp>
6120 L: linux-nilfs@vger.kernel.org
6121 W: http://www.nilfs.org/en/
6122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ryusuke/nilfs2.git
6124 F: Documentation/filesystems/nilfs2.txt
6126 F: include/linux/nilfs2_fs.h
6128 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
6129 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6130 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6132 F: Documentation/scsi/NinjaSCSI.txt
6133 F: drivers/scsi/pcmcia/nsp_*
6135 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
6136 M: GOTO Masanori <gotom@debian.or.jp>
6137 M: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
6138 W: http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
6140 F: Documentation/scsi/NinjaSCSI.txt
6141 F: drivers/scsi/nsp32*
6144 M: Jon Mason <jon.mason@intel.com>
6146 W: https://github.com/jonmason/ntb/wiki
6147 T: git git://github.com/jonmason/ntb.git
6149 F: drivers/net/ntb_netdev.c
6150 F: include/linux/ntb.h
6153 M: Anton Altaparmakov <anton@tuxera.com>
6154 L: linux-ntfs-dev@lists.sourceforge.net
6155 W: http://www.tuxera.com/
6156 T: git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
6158 F: Documentation/filesystems/ntfs.txt
6161 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
6162 M: Antonino Daplas <adaplas@gmail.com>
6163 L: linux-fbdev@vger.kernel.org
6165 F: drivers/video/riva/
6166 F: drivers/video/nvidia/
6169 M: Matthew Wilcox <willy@linux.intel.com>
6170 L: linux-nvme@lists.infradead.org
6171 T: git git://git.infradead.org/users/willy/linux-nvme.git
6173 F: drivers/block/nvme*
6174 F: include/linux/nvme.h
6177 M: Tony Lindgren <tony@atomide.com>
6178 L: linux-omap@vger.kernel.org
6179 W: http://www.muru.com/linux/omap/
6180 W: http://linux.omap.com/
6181 Q: http://patchwork.kernel.org/project/linux-omap/list/
6182 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
6185 F: drivers/i2c/busses/i2c-omap.c
6186 F: include/linux/i2c-omap.h
6188 OMAP DEVICE TREE SUPPORT
6189 M: Benoît Cousson <bcousson@baylibre.com>
6190 M: Tony Lindgren <tony@atomide.com>
6191 L: linux-omap@vger.kernel.org
6192 L: devicetree@vger.kernel.org
6194 F: arch/arm/boot/dts/*omap*
6195 F: arch/arm/boot/dts/*am3*
6197 OMAP CLOCK FRAMEWORK SUPPORT
6198 M: Paul Walmsley <paul@pwsan.com>
6199 L: linux-omap@vger.kernel.org
6201 F: arch/arm/*omap*/*clock*
6203 OMAP POWER MANAGEMENT SUPPORT
6204 M: Kevin Hilman <khilman@deeprootsystems.com>
6205 L: linux-omap@vger.kernel.org
6207 F: arch/arm/*omap*/*pm*
6208 F: drivers/cpufreq/omap-cpufreq.c
6210 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
6211 M: Rajendra Nayak <rnayak@ti.com>
6212 M: Paul Walmsley <paul@pwsan.com>
6213 L: linux-omap@vger.kernel.org
6215 F: arch/arm/mach-omap2/prm*
6218 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
6219 M: Jarkko Nikula <jarkko.nikula@bitmer.com>
6220 L: alsa-devel@alsa-project.org (subscribers-only)
6221 L: linux-omap@vger.kernel.org
6225 OMAP FRAMEBUFFER SUPPORT
6226 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
6227 L: linux-fbdev@vger.kernel.org
6228 L: linux-omap@vger.kernel.org
6230 F: drivers/video/omap/
6232 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
6233 M: Tomi Valkeinen <tomi.valkeinen@ti.com>
6234 L: linux-omap@vger.kernel.org
6235 L: linux-fbdev@vger.kernel.org
6237 F: drivers/video/omap2/
6238 F: Documentation/arm/OMAP/DSS
6240 OMAP HARDWARE SPINLOCK SUPPORT
6241 M: Ohad Ben-Cohen <ohad@wizery.com>
6242 L: linux-omap@vger.kernel.org
6244 F: drivers/hwspinlock/omap_hwspinlock.c
6245 F: arch/arm/mach-omap2/hwspinlock.c
6248 M: Jarkko Lavinen <jarkko.lavinen@nokia.com>
6249 L: linux-omap@vger.kernel.org
6251 F: drivers/mmc/host/omap.c
6254 M: Balaji T K <balajitk@ti.com>
6255 L: linux-mmc@vger.kernel.org
6256 L: linux-omap@vger.kernel.org
6258 F: drivers/mmc/host/omap_hsmmc.c
6260 OMAP RANDOM NUMBER GENERATOR SUPPORT
6261 M: Deepak Saxena <dsaxena@plexity.net>
6263 F: drivers/char/hw_random/omap-rng.c
6266 M: Benoît Cousson <bcousson@baylibre.com>
6267 M: Paul Walmsley <paul@pwsan.com>
6268 L: linux-omap@vger.kernel.org
6270 F: arch/arm/mach-omap2/omap_hwmod.*
6272 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
6273 M: Benoît Cousson <bcousson@baylibre.com>
6274 L: linux-omap@vger.kernel.org
6276 F: arch/arm/mach-omap2/omap_hwmod_44xx_data.c
6278 OMAP IMAGE SIGNAL PROCESSOR (ISP)
6279 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6280 L: linux-media@vger.kernel.org
6282 F: drivers/media/platform/omap3isp/
6285 M: Felipe Balbi <balbi@ti.com>
6286 L: linux-usb@vger.kernel.org
6287 L: linux-omap@vger.kernel.org
6288 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
6290 F: drivers/usb/*/*omap*
6291 F: arch/arm/*omap*/usb*
6294 M: Santosh Shilimkar <santosh.shilimkar@ti.com>
6295 M: Kevin Hilman <khilman@deeprootsystems.com>
6296 L: linux-omap@vger.kernel.org
6298 F: drivers/gpio/gpio-omap.c
6300 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
6301 M: Mark Jackson <mpfj@newflow.co.uk>
6302 L: linux-omap@vger.kernel.org
6304 F: arch/arm/boot/dts/am335x-nano.dts
6307 M: Bob Copeland <me@bobcopeland.com>
6308 L: linux-karma-devel@lists.sourceforge.net
6310 F: Documentation/filesystems/omfs.txt
6313 OMNIKEY CARDMAN 4000 DRIVER
6314 M: Harald Welte <laforge@gnumonks.org>
6316 F: drivers/char/pcmcia/cm4000_cs.c
6317 F: include/linux/cm4000_cs.h
6318 F: include/uapi/linux/cm4000_cs.h
6320 OMNIKEY CARDMAN 4040 DRIVER
6321 M: Harald Welte <laforge@gnumonks.org>
6323 F: drivers/char/pcmcia/cm4040_cs.*
6325 OMNIVISION OV7670 SENSOR DRIVER
6326 M: Jonathan Corbet <corbet@lwn.net>
6327 L: linux-media@vger.kernel.org
6328 T: git git://linuxtv.org/media_tree.git
6330 F: drivers/media/i2c/ov7670.c
6332 ONENAND FLASH DRIVER
6333 M: Kyungmin Park <kyungmin.park@samsung.com>
6334 L: linux-mtd@lists.infradead.org
6336 F: drivers/mtd/onenand/
6337 F: include/linux/mtd/onenand*.h
6339 ONSTREAM SCSI TAPE DRIVER
6340 M: Willem Riede <osst@riede.org>
6341 L: osst-users@lists.sourceforge.net
6342 L: linux-scsi@vger.kernel.org
6344 F: Documentation/scsi/osst.txt
6345 F: drivers/scsi/osst.*
6346 F: drivers/scsi/osst_*.h
6347 F: drivers/scsi/st.h
6349 OPENCORES I2C BUS DRIVER
6350 M: Peter Korsgaard <jacmet@sunsite.dk>
6351 L: linux-i2c@vger.kernel.org
6353 F: Documentation/i2c/busses/i2c-ocores
6354 F: drivers/i2c/busses/i2c-ocores.c
6356 OPEN FIRMWARE AND FLATTENED DEVICE TREE
6357 M: Grant Likely <grant.likely@linaro.org>
6358 M: Rob Herring <robh+dt@kernel.org>
6359 L: devicetree@vger.kernel.org
6360 W: http://fdt.secretlab.ca
6361 T: git git://git.secretlab.ca/git/linux-2.6.git
6364 F: include/linux/of*.h
6369 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
6370 M: Rob Herring <robh+dt@kernel.org>
6371 M: Pawel Moll <pawel.moll@arm.com>
6372 M: Mark Rutland <mark.rutland@arm.com>
6373 M: Ian Campbell <ijc+devicetree@hellion.org.uk>
6374 M: Kumar Gala <galak@codeaurora.org>
6375 L: devicetree@vger.kernel.org
6377 F: Documentation/devicetree/
6379 F: include/dt-bindings/
6381 OPENRISC ARCHITECTURE
6382 M: Jonas Bonn <jonas@southpole.se>
6383 W: http://openrisc.net
6384 L: linux@lists.openrisc.net (moderated for non-subscribers)
6386 T: git git://openrisc.net/~jonas/linux
6390 M: Jesse Gross <jesse@nicira.com>
6391 L: dev@openvswitch.org
6392 W: http://openvswitch.org
6393 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jesse/openvswitch.git
6398 M: Clemens Ladisch <clemens@ladisch.de>
6399 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
6400 T: git git://git.alsa-project.org/alsa-kernel.git
6402 F: sound/drivers/opl4/
6405 M: Robert Richter <rric@kernel.org>
6406 L: oprofile-list@lists.sf.net
6408 F: arch/*/include/asm/oprofile*.h
6410 F: drivers/oprofile/
6411 F: include/linux/oprofile.h
6413 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
6414 M: Mark Fasheh <mfasheh@suse.com>
6415 M: Joel Becker <jlbec@evilplan.org>
6416 L: ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
6417 W: http://oss.oracle.com/projects/ocfs2/
6418 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jlbec/ocfs2.git
6420 F: Documentation/filesystems/ocfs2.txt
6421 F: Documentation/filesystems/dlmfs.txt
6425 L: linux-wireless@vger.kernel.org
6426 W: http://wireless.kernel.org/en/users/Drivers/orinoco
6427 W: http://www.nongnu.org/orinoco/
6429 F: drivers/net/wireless/orinoco/
6431 OSD LIBRARY and FILESYSTEM
6432 M: Boaz Harrosh <bharrosh@panasas.com>
6433 M: Benny Halevy <bhalevy@tonian.com>
6434 L: osd-dev@open-osd.org
6435 W: http://open-osd.org
6436 T: git git://git.open-osd.org/open-osd.git
6438 F: drivers/scsi/osd/
6439 F: include/scsi/osd_*
6443 M: Christian Lamparter <chunkeey@googlemail.com>
6444 L: linux-wireless@vger.kernel.org
6445 W: http://wireless.kernel.org/en/users/Drivers/p54
6447 F: drivers/net/wireless/p54/
6449 PA SEMI ETHERNET DRIVER
6450 M: Olof Johansson <olof@lixom.net>
6451 L: netdev@vger.kernel.org
6453 F: drivers/net/ethernet/pasemi/*
6455 PA SEMI SMBUS DRIVER
6456 M: Olof Johansson <olof@lixom.net>
6457 L: linux-i2c@vger.kernel.org
6459 F: drivers/i2c/busses/i2c-pasemi.c
6461 PADATA PARALLEL EXECUTION MECHANISM
6462 M: Steffen Klassert <steffen.klassert@secunet.com>
6463 L: linux-crypto@vger.kernel.org
6466 F: include/linux/padata.h
6467 F: Documentation/padata.txt
6469 PANASONIC LAPTOP ACPI EXTRAS DRIVER
6470 M: Harald Welte <laforge@gnumonks.org>
6471 L: platform-driver-x86@vger.kernel.org
6473 F: drivers/platform/x86/panasonic-laptop.c
6475 PANASONIC MN10300/AM33/AM34 PORT
6476 M: David Howells <dhowells@redhat.com>
6477 M: Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
6478 L: linux-am33-list@redhat.com (moderated for non-subscribers)
6479 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
6481 F: Documentation/mn10300/
6484 PARALLEL PORT SUPPORT
6485 L: linux-parport@lists.infradead.org (subscribers-only)
6488 F: include/linux/parport*.h
6489 F: drivers/char/ppdev.c
6490 F: include/uapi/linux/ppdev.h
6492 PARAVIRT_OPS INTERFACE
6493 M: Jeremy Fitzhardinge <jeremy@goop.org>
6494 M: Chris Wright <chrisw@sous-sol.org>
6495 M: Alok Kataria <akataria@vmware.com>
6496 M: Rusty Russell <rusty@rustcorp.com.au>
6497 L: virtualization@lists.linux-foundation.org
6499 F: Documentation/ia64/paravirt_ops.txt
6500 F: arch/*/kernel/paravirt*
6501 F: arch/*/include/asm/paravirt.h
6503 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
6504 M: Tim Waugh <tim@cyberelk.net>
6505 L: linux-parport@lists.infradead.org (subscribers-only)
6506 W: http://www.torque.net/linux-pp.html
6508 F: Documentation/blockdev/paride.txt
6509 F: drivers/block/paride/
6512 M: "James E.J. Bottomley" <jejb@parisc-linux.org>
6513 M: Helge Deller <deller@gmx.de>
6514 L: linux-parisc@vger.kernel.org
6515 W: http://www.parisc-linux.org/
6516 Q: http://patchwork.kernel.org/project/linux-parisc/list/
6517 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
6518 T: git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
6521 F: Documentation/parisc/
6523 F: drivers/char/agp/parisc-agp.c
6524 F: drivers/input/serio/gscps2.c
6525 F: drivers/parport/parport_gsc.*
6526 F: drivers/tty/serial/8250/8250_gsc.c
6527 F: drivers/video/sti*
6528 F: drivers/video/console/sti*
6529 F: drivers/video/logo/logo_parisc*
6531 PC87360 HARDWARE MONITORING DRIVER
6532 M: Jim Cromie <jim.cromie@gmail.com>
6533 L: lm-sensors@lm-sensors.org
6535 F: Documentation/hwmon/pc87360
6536 F: drivers/hwmon/pc87360.c
6539 M: Jim Cromie <jim.cromie@gmail.com>
6541 F: drivers/char/pc8736x_gpio.c
6543 PC87427 HARDWARE MONITORING DRIVER
6544 M: Jean Delvare <jdelvare@suse.de>
6545 L: lm-sensors@lm-sensors.org
6547 F: Documentation/hwmon/pc87427
6548 F: drivers/hwmon/pc87427.c
6551 M: Riku Voipio <riku.voipio@iki.fi>
6553 F: drivers/leds/leds-pca9532.c
6554 F: include/linux/leds-pca9532.h
6556 PCA9541 I2C BUS MASTER SELECTOR DRIVER
6557 M: Guenter Roeck <linux@roeck-us.net>
6558 L: linux-i2c@vger.kernel.org
6560 F: drivers/i2c/muxes/i2c-mux-pca9541.c
6562 PCDP - PRIMARY CONSOLE AND DEBUG PORT
6563 M: Khalid Aziz <khalid@gonehiking.org>
6565 F: drivers/firmware/pcdp.*
6568 M: Linas Vepstas <linasvepstas@gmail.com>
6569 L: linux-pci@vger.kernel.org
6571 F: Documentation/PCI/pci-error-recovery.txt
6574 M: Bjorn Helgaas <bhelgaas@google.com>
6575 L: linux-pci@vger.kernel.org
6576 Q: http://patchwork.ozlabs.org/project/linux-pci/list/
6577 T: git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
6579 F: Documentation/PCI/
6581 F: include/linux/pci*
6585 M: Richard Zhu <r65037@freescale.com>
6586 M: Shawn Guo <shawn.guo@linaro.org>
6587 L: linux-pci@vger.kernel.org
6588 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6590 F: drivers/pci/host/*imx6*
6592 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
6593 M: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6594 M: Jason Cooper <jason@lakedaemon.net>
6595 L: linux-pci@vger.kernel.org
6596 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6598 F: drivers/pci/host/*mvebu*
6600 PCI DRIVER FOR NVIDIA TEGRA
6601 M: Thierry Reding <thierry.reding@gmail.com>
6602 L: linux-tegra@vger.kernel.org
6603 L: linux-pci@vger.kernel.org
6605 F: Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
6606 F: drivers/pci/host/pci-tegra.c
6608 PCI DRIVER FOR RENESAS R-CAR
6609 M: Simon Horman <horms@verge.net.au>
6610 L: linux-pci@vger.kernel.org
6611 L: linux-sh@vger.kernel.org
6613 F: drivers/pci/host/*rcar*
6615 PCI DRIVER FOR SAMSUNG EXYNOS
6616 M: Jingoo Han <jg1.han@samsung.com>
6617 L: linux-pci@vger.kernel.org
6618 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6619 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6621 F: drivers/pci/host/pci-exynos.c
6623 PCI DRIVER FOR SYNOPSIS DESIGNWARE
6624 M: Mohit Kumar <mohit.kumar@st.com>
6625 M: Jingoo Han <jg1.han@samsung.com>
6626 L: linux-pci@vger.kernel.org
6628 F: drivers/pci/host/*designware*
6631 P: Linux PCMCIA Team
6632 L: linux-pcmcia@lists.infradead.org
6633 W: http://lists.infradead.org/mailman/listinfo/linux-pcmcia
6634 T: git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
6636 F: Documentation/pcmcia/
6640 PCNET32 NETWORK DRIVER
6641 M: Don Fry <pcnet32@frontier.com>
6642 L: netdev@vger.kernel.org
6644 F: drivers/net/ethernet/amd/pcnet32.c
6646 PCRYPT PARALLEL CRYPTO ENGINE
6647 M: Steffen Klassert <steffen.klassert@secunet.com>
6648 L: linux-crypto@vger.kernel.org
6651 F: include/crypto/pcrypt.h
6653 PER-CPU MEMORY ALLOCATOR
6654 M: Tejun Heo <tj@kernel.org>
6655 M: Christoph Lameter <cl@linux-foundation.org>
6656 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
6658 F: include/linux/percpu*.h
6660 F: arch/*/include/asm/percpu.h
6662 PER-TASK DELAY ACCOUNTING
6663 M: Balbir Singh <bsingharora@gmail.com>
6665 F: include/linux/delayacct.h
6666 F: kernel/delayacct.c
6668 PERFORMANCE EVENTS SUBSYSTEM
6669 M: Peter Zijlstra <a.p.zijlstra@chello.nl>
6670 M: Paul Mackerras <paulus@samba.org>
6671 M: Ingo Molnar <mingo@redhat.com>
6672 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6673 L: linux-kernel@vger.kernel.org
6674 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
6677 F: include/linux/perf_event.h
6678 F: include/uapi/linux/perf_event.h
6679 F: arch/*/kernel/perf_event*.c
6680 F: arch/*/kernel/*/perf_event*.c
6681 F: arch/*/kernel/*/*/perf_event*.c
6682 F: arch/*/include/asm/perf_event.h
6683 F: arch/*/kernel/perf_callchain.c
6686 PERSONALITY HANDLING
6687 M: Christoph Hellwig <hch@infradead.org>
6688 L: linux-abi-devel@lists.sourceforge.net
6690 F: include/linux/personality.h
6691 F: include/uapi/linux/personality.h
6694 M: Remi Denis-Courmont <courmisch@gmail.com>
6696 F: Documentation/networking/phonet.txt
6697 F: include/linux/phonet.h
6698 F: include/net/phonet/
6699 F: include/uapi/linux/phonet.h
6703 M: Joern Engel <joern@lazybastard.org>
6704 L: linux-mtd@lists.infradead.org
6706 F: drivers/mtd/devices/phram.c
6709 M: Bruno Prémont <bonbons@linux-vserver.org>
6710 L: linux-input@vger.kernel.org
6712 F: drivers/hid/hid-picolcd*
6715 M: Jamie Iles <jamie@jamieiles.com>
6716 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6717 T: git git://github.com/jamieiles/linux-2.6-ji.git
6719 F: arch/arm/mach-picoxcell/
6720 F: drivers/*/picoxcell*
6721 F: drivers/*/*/picoxcell*
6723 PIN CONTROL SUBSYSTEM
6724 M: Linus Walleij <linus.walleij@linaro.org>
6727 F: include/linux/pinctrl/
6729 PIN CONTROLLER - ATMEL AT91
6730 M: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
6731 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6733 F: drivers/pinctrl/pinctrl-at91.c
6735 PIN CONTROLLER - SAMSUNG
6736 M: Tomasz Figa <t.figa@samsung.com>
6737 M: Thomas Abraham <thomas.abraham@linaro.org>
6738 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6739 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
6741 F: drivers/pinctrl/pinctrl-exynos.*
6742 F: drivers/pinctrl/pinctrl-s3c*
6743 F: drivers/pinctrl/pinctrl-samsung.*
6745 PIN CONTROLLER - ST SPEAR
6746 M: Viresh Kumar <viresh.linux@gmail.com>
6747 L: spear-devel@list.st.com
6748 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6749 W: http://www.st.com/spear
6751 F: drivers/pinctrl/spear/
6754 M: Jiri Kosina <jkosina@suse.cz>
6756 F: drivers/block/pktcdvd.c
6757 F: include/linux/pktcdvd.h
6758 F: include/uapi/linux/pktcdvd.h
6761 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
6762 W: http://mprc.pku.edu.cn/~guanxuetao/linux
6764 T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
6765 F: drivers/input/serio/i8042-unicore32io.h
6766 F: drivers/i2c/busses/i2c-puv3.c
6767 F: drivers/video/fb-puv3.c
6768 F: drivers/rtc/rtc-puv3.c
6770 PMBUS HARDWARE MONITORING DRIVERS
6771 M: Guenter Roeck <linux@roeck-us.net>
6772 L: lm-sensors@lm-sensors.org
6773 W: http://www.lm-sensors.org/
6774 W: http://www.roeck-us.net/linux/drivers/
6775 T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
6777 F: Documentation/hwmon/pmbus
6778 F: drivers/hwmon/pmbus/
6779 F: include/linux/i2c/pmbus.h
6781 PMC SIERRA MaxRAID DRIVER
6782 M: Anil Ravindranath <anil_ravindranath@pmc-sierra.com>
6783 L: linux-scsi@vger.kernel.org
6784 W: http://www.pmc-sierra.com/
6786 F: drivers/scsi/pmcraid.*
6788 PMC SIERRA PM8001 DRIVER
6789 M: xjtuwjp@gmail.com
6790 M: lindar_liu@usish.com
6791 L: linux-scsi@vger.kernel.org
6793 F: drivers/scsi/pm8001/
6795 POSIX CLOCKS and TIMERS
6796 M: Thomas Gleixner <tglx@linutronix.de>
6797 L: linux-kernel@vger.kernel.org
6798 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6801 F: include/linux/timer*
6804 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
6805 M: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
6806 M: David Woodhouse <dwmw2@infradead.org>
6807 T: git git://git.infradead.org/battery-2.6.git
6809 F: include/linux/power_supply.h
6813 M: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
6814 M: Bjorn Helgaas <bhelgaas@google.com>
6819 M: Vitaly Wool <vitalywool@gmail.com>
6820 L: linux-i2c@vger.kernel.org
6822 F: drivers/i2c/busses/i2c-pnx.c
6824 PPP PROTOCOL DRIVERS AND COMPRESSORS
6825 M: Paul Mackerras <paulus@samba.org>
6826 L: linux-ppp@vger.kernel.org
6828 F: drivers/net/ppp/ppp_*
6830 PPP OVER ATM (RFC 2364)
6831 M: Mitchell Blank Jr <mitch@sfgoth.com>
6833 F: net/atm/pppoatm.c
6834 F: include/uapi/linux/atmppp.h
6837 M: Michal Ostrowski <mostrows@earthlink.net>
6839 F: drivers/net/ppp/pppoe.c
6840 F: drivers/net/ppp/pppox.c
6843 M: James Chapman <jchapman@katalix.com>
6845 F: net/l2tp/l2tp_ppp.c
6846 F: include/linux/if_pppol2tp.h
6847 F: include/uapi/linux/if_pppol2tp.h
6850 M: Rodolfo Giometti <giometti@enneenne.com>
6851 W: http://wiki.enneenne.com/index.php/LinuxPPS_support
6852 L: linuxpps@ml.enneenne.com (subscribers-only)
6854 F: Documentation/pps/
6856 F: include/linux/pps*.h
6859 M: Dmitry Kozlov <xeb@mail.ru>
6860 L: netdev@vger.kernel.org
6862 F: drivers/net/ppp/pptp.c
6863 W: http://sourceforge.net/projects/accel-pptp
6866 M: Robert Love <rml@tech9.net>
6867 L: kpreempt-tech@lists.sourceforge.net
6868 W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
6870 F: Documentation/preempt-locking.txt
6871 F: include/linux/preempt.h
6873 PRISM54 WIRELESS DRIVER
6874 M: "Luis R. Rodriguez" <mcgrof@gmail.com>
6875 L: linux-wireless@vger.kernel.org
6876 W: http://wireless.kernel.org/en/users/Drivers/p54
6878 F: drivers/net/wireless/prism54/
6880 PROMISE SATA TX2/TX4 CONTROLLER LIBATA DRIVER
6881 M: Mikael Pettersson <mikpelinux@gmail.com>
6882 L: linux-ide@vger.kernel.org
6884 F: drivers/ata/sata_promise.*
6887 M: Geoff Levand <geoff@infradead.org>
6888 L: netdev@vger.kernel.org
6889 L: cbe-oss-dev@lists.ozlabs.org
6891 F: drivers/net/ethernet/toshiba/ps3_gelic_net.*
6893 PS3 PLATFORM SUPPORT
6894 M: Geoff Levand <geoff@infradead.org>
6895 L: linuxppc-dev@lists.ozlabs.org
6896 L: cbe-oss-dev@lists.ozlabs.org
6898 F: arch/powerpc/boot/ps3*
6899 F: arch/powerpc/include/asm/lv1call.h
6900 F: arch/powerpc/include/asm/ps3*.h
6901 F: arch/powerpc/platforms/ps3/
6904 F: drivers/rtc/rtc-ps3.c
6905 F: drivers/usb/host/*ps3.c
6906 F: sound/ppc/snd_ps3*
6909 M: Jim Paris <jim@jtan.com>
6910 L: cbe-oss-dev@lists.ozlabs.org
6912 F: drivers/block/ps3vram.c
6915 M: Anton Vorontsov <anton@enomsg.org>
6916 M: Colin Cross <ccross@android.com>
6917 M: Kees Cook <keescook@chromium.org>
6918 M: Tony Luck <tony.luck@intel.com>
6920 T: git git://git.infradead.org/users/cbou/linux-pstore.git
6922 F: include/linux/pstore*
6923 F: drivers/firmware/efi/efi-pstore.c
6924 F: drivers/acpi/apei/erst.c
6926 PTP HARDWARE CLOCK SUPPORT
6927 M: Richard Cochran <richardcochran@gmail.com>
6928 L: netdev@vger.kernel.org
6930 W: http://linuxptp.sourceforge.net/
6931 F: Documentation/ABI/testing/sysfs-ptp
6932 F: Documentation/ptp/*
6933 F: drivers/net/ethernet/freescale/gianfar_ptp.c
6934 F: drivers/net/phy/dp83640*
6936 F: include/linux/ptp_cl*
6939 M: Roland McGrath <roland@redhat.com>
6940 M: Oleg Nesterov <oleg@redhat.com>
6942 F: include/asm-generic/syscall.h
6943 F: include/linux/ptrace.h
6944 F: include/linux/regset.h
6945 F: include/linux/tracehook.h
6946 F: include/uapi/linux/ptrace.h
6949 PVRUSB2 VIDEO4LINUX DRIVER
6950 M: Mike Isely <isely@pobox.com>
6951 L: pvrusb2@isely.net (subscribers-only)
6952 L: linux-media@vger.kernel.org
6953 W: http://www.isely.net/pvrusb2/
6954 T: git git://linuxtv.org/media_tree.git
6956 F: Documentation/video4linux/README.pvrusb2
6957 F: drivers/media/usb/pvrusb2/
6960 M: Hans de Goede <hdegoede@redhat.com>
6961 L: linux-media@vger.kernel.org
6962 T: git git://linuxtv.org/media_tree.git
6964 F: drivers/media/usb/pwc/*
6967 M: Thierry Reding <thierry.reding@gmail.com>
6968 L: linux-pwm@vger.kernel.org
6970 T: git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
6971 F: Documentation/pwm.txt
6972 F: Documentation/devicetree/bindings/pwm/
6973 F: include/linux/pwm.h
6975 F: drivers/video/backlight/pwm_bl.c
6976 F: include/linux/pwm_backlight.h
6978 PXA2xx/PXA3xx SUPPORT
6979 M: Eric Miao <eric.y.miao@gmail.com>
6980 M: Russell King <linux@arm.linux.org.uk>
6981 M: Haojian Zhuang <haojian.zhuang@gmail.com>
6982 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6983 T: git git://github.com/hzhuang1/linux.git
6984 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
6986 F: arch/arm/mach-pxa/
6987 F: drivers/pcmcia/pxa2xx*
6988 F: drivers/spi/spi-pxa2xx*
6989 F: drivers/usb/gadget/pxa2*
6990 F: include/sound/pxa2xx-lib.h
6994 PXA3xx NAND FLASH DRIVER
6995 M: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
6996 L: linux-mtd@lists.infradead.org
6998 F: drivers/mtd/nand/pxa3xx-nand.c
7001 M: Eric Miao <eric.y.miao@gmail.com>
7002 M: Haojian Zhuang <haojian.zhuang@gmail.com>
7003 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7004 T: git git://github.com/hzhuang1/linux.git
7005 T: git git://git.linaro.org/people/ycmiao/pxa-linux.git
7007 F: arch/arm/mach-mmp/
7013 M: Robert Jarzmik <robert.jarzmik@free.fr>
7014 L: rtc-linux@googlegroups.com
7018 M: Mike Marciniszyn <infinipath@intel.com>
7019 L: linux-rdma@vger.kernel.org
7021 F: drivers/infiniband/hw/qib/
7023 QLOGIC QLA1280 SCSI DRIVER
7024 M: Michael Reed <mdr@sgi.com>
7025 L: linux-scsi@vger.kernel.org
7027 F: drivers/scsi/qla1280.[ch]
7029 QLOGIC QLA2XXX FC-SCSI DRIVER
7030 M: qla2xxx-upstream@qlogic.com
7031 L: linux-scsi@vger.kernel.org
7033 F: Documentation/scsi/LICENSE.qla2xxx
7034 F: drivers/scsi/qla2xxx/
7036 QLOGIC QLA4XXX iSCSI DRIVER
7037 M: Vikas Chaudhary <vikas.chaudhary@qlogic.com>
7038 M: iscsi-driver@qlogic.com
7039 L: linux-scsi@vger.kernel.org
7041 F: Documentation/scsi/LICENSE.qla4xxx
7042 F: drivers/scsi/qla4xxx/
7044 QLOGIC QLA3XXX NETWORK DRIVER
7045 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7046 M: Ron Mercer <ron.mercer@qlogic.com>
7047 M: linux-driver@qlogic.com
7048 L: netdev@vger.kernel.org
7050 F: Documentation/networking/LICENSE.qla3xxx
7051 F: drivers/net/ethernet/qlogic/qla3xxx.*
7053 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
7054 M: Himanshu Madhani <himanshu.madhani@qlogic.com>
7055 M: Rajesh Borundia <rajesh.borundia@qlogic.com>
7056 M: Shahed Shaikh <shahed.shaikh@qlogic.com>
7057 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7058 M: Sony Chacko <sony.chacko@qlogic.com>
7059 M: Sucheta Chakraborty <sucheta.chakraborty@qlogic.com>
7060 M: linux-driver@qlogic.com
7061 L: netdev@vger.kernel.org
7063 F: drivers/net/ethernet/qlogic/qlcnic/
7065 QLOGIC QLGE 10Gb ETHERNET DRIVER
7066 M: Shahed Shaikh <shahed.shaikh@qlogic.com>
7067 M: Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
7068 M: Ron Mercer <ron.mercer@qlogic.com>
7069 M: linux-driver@qlogic.com
7070 L: netdev@vger.kernel.org
7072 F: drivers/net/ethernet/qlogic/qlge/
7075 M: Anders Larsen <al@alarsen.net>
7076 W: http://www.alarsen.net/linux/qnx4fs/
7079 F: include/uapi/linux/qnx4_fs.h
7080 F: include/uapi/linux/qnxtypes.h
7083 M: Antti Palosaari <crope@iki.fi>
7084 L: linux-media@vger.kernel.org
7085 W: http://linuxtv.org/
7086 W: http://palosaari.fi/linux/
7087 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7088 T: git git://linuxtv.org/anttip/media_tree.git
7090 F: drivers/media/tuners/qt1010*
7092 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
7093 M: QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
7094 L: linux-wireless@vger.kernel.org
7095 L: ath9k-devel@lists.ath9k.org
7096 W: http://wireless.kernel.org/en/users/Drivers/ath9k
7098 F: drivers/net/wireless/ath/ath9k/
7100 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
7101 M: Kalle Valo <kvalo@qca.qualcomm.com>
7102 L: ath10k@lists.infradead.org
7103 W: http://wireless.kernel.org/en/users/Drivers/ath10k
7104 T: git git://github.com/kvalo/ath.git
7106 F: drivers/net/wireless/ath/ath10k/
7108 QUALCOMM HEXAGON ARCHITECTURE
7109 M: Richard Kuo <rkuo@codeaurora.org>
7110 L: linux-hexagon@vger.kernel.org
7114 QUALCOMM WCN36XX WIRELESS DRIVER
7115 M: Eugene Krasnikov <k.eugene.e@gmail.com>
7116 L: wcn36xx@lists.infradead.org
7117 W: http://wireless.kernel.org/en/users/Drivers/wcn36xx
7118 T: git git://github.com/KrasnikovEugene/wcn36xx.git
7120 F: drivers/net/wireless/ath/wcn36xx/
7122 QUICKCAM PARALLEL PORT WEBCAMS
7123 M: Hans Verkuil <hverkuil@xs4all.nl>
7124 L: linux-media@vger.kernel.org
7125 T: git git://linuxtv.org/media_tree.git
7126 W: http://linuxtv.org
7128 F: drivers/media/parport/*-qcam*
7130 RADOS BLOCK DEVICE (RBD)
7131 M: Yehuda Sadeh <yehuda@inktank.com>
7132 M: Sage Weil <sage@inktank.com>
7133 M: Alex Elder <elder@kernel.org>
7134 M: ceph-devel@vger.kernel.org
7136 T: git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
7138 F: drivers/block/rbd.c
7139 F: drivers/block/rbd_types.h
7141 RADEON FRAMEBUFFER DISPLAY DRIVER
7142 M: Benjamin Herrenschmidt <benh@kernel.crashing.org>
7143 L: linux-fbdev@vger.kernel.org
7145 F: drivers/video/aty/radeon*
7146 F: include/uapi/linux/radeonfb.h
7148 RADIOSHARK RADIO DRIVER
7149 M: Hans de Goede <hdegoede@redhat.com>
7150 L: linux-media@vger.kernel.org
7151 T: git git://linuxtv.org/media_tree.git
7153 F: drivers/media/radio/radio-shark.c
7155 RADIOSHARK2 RADIO DRIVER
7156 M: Hans de Goede <hdegoede@redhat.com>
7157 L: linux-media@vger.kernel.org
7158 T: git git://linuxtv.org/media_tree.git
7160 F: drivers/media/radio/radio-shark2.c
7161 F: drivers/media/radio/radio-tea5777.c
7163 RAGE128 FRAMEBUFFER DISPLAY DRIVER
7164 M: Paul Mackerras <paulus@samba.org>
7165 L: linux-fbdev@vger.kernel.org
7167 F: drivers/video/aty/aty128fb.c
7169 RALINK RT2X00 WIRELESS LAN DRIVER
7171 M: Ivo van Doorn <IvDoorn@gmail.com>
7172 M: Gertjan van Wingerde <gwingerde@gmail.com>
7173 M: Helmut Schaa <helmut.schaa@googlemail.com>
7174 L: linux-wireless@vger.kernel.org
7175 L: users@rt2x00.serialmonkey.com (moderated for non-subscribers)
7176 W: http://rt2x00.serialmonkey.com/
7178 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ivd/rt2x00.git
7179 F: drivers/net/wireless/rt2x00/
7181 RAMDISK RAM BLOCK DEVICE DRIVER
7182 M: Nick Piggin <npiggin@kernel.dk>
7184 F: Documentation/blockdev/ramdisk.txt
7185 F: drivers/block/brd.c
7187 RANDOM NUMBER DRIVER
7188 M: Theodore Ts'o" <tytso@mit.edu>
7190 F: drivers/char/random.c
7193 M: Matt Porter <mporter@kernel.crashing.org>
7194 M: Alexandre Bounine <alexandre.bounine@idt.com>
7198 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
7199 L: linux-wireless@vger.kernel.org
7201 F: drivers/net/wireless/ray*
7204 M: Josh Triplett <josh@freedesktop.org>
7205 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7206 L: linux-kernel@vger.kernel.org
7208 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7209 F: Documentation/RCU/torture.txt
7210 F: kernel/rcu/torture.c
7212 RCUTORTURE TEST FRAMEWORK
7213 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7214 L: linux-kernel@vger.kernel.org
7216 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7217 F: tools/testing/selftests/rcutorture
7220 M: Florian Fainelli <florian@openwrt.org>
7223 RDC R6040 FAST ETHERNET DRIVER
7224 M: Florian Fainelli <florian@openwrt.org>
7225 L: netdev@vger.kernel.org
7227 F: drivers/net/ethernet/rdc/r6040.c
7229 RDS - RELIABLE DATAGRAM SOCKETS
7230 M: Chien Yen <chien.yen@oracle.com>
7231 L: rds-devel@oss.oracle.com (moderated for non-subscribers)
7235 READ-COPY UPDATE (RCU)
7236 M: Dipankar Sarma <dipankar@in.ibm.com>
7237 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7238 L: linux-kernel@vger.kernel.org
7239 W: http://www.rdrop.com/users/paulmck/RCU/
7241 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7242 F: Documentation/RCU/
7243 X: Documentation/RCU/torture.txt
7244 F: include/linux/rcu*
7245 X: include/linux/srcu.h
7247 X: kernel/rcu/torture.c
7249 REAL TIME CLOCK (RTC) SUBSYSTEM
7250 M: Alessandro Zummo <a.zummo@towertech.it>
7251 L: rtc-linux@googlegroups.com
7252 Q: http://patchwork.ozlabs.org/project/rtc-linux/list/
7254 F: Documentation/rtc.txt
7256 F: include/linux/rtc.h
7257 F: include/uapi/linux/rtc.h
7259 REISERFS FILE SYSTEM
7260 L: reiserfs-devel@vger.kernel.org
7264 REGISTER MAP ABSTRACTION
7265 M: Mark Brown <broonie@kernel.org>
7266 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
7268 F: drivers/base/regmap/
7269 F: include/linux/regmap.h
7271 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
7272 M: Ohad Ben-Cohen <ohad@wizery.com>
7273 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
7275 F: drivers/remoteproc/
7276 F: Documentation/remoteproc.txt
7277 F: include/linux/remoteproc.h
7279 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
7280 M: Ohad Ben-Cohen <ohad@wizery.com>
7281 T: git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
7284 F: Documentation/rpmsg.txt
7285 F: include/linux/rpmsg.h
7288 M: Johannes Berg <johannes@sipsolutions.net>
7289 L: linux-wireless@vger.kernel.org
7290 W: http://wireless.kernel.org/
7291 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7292 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7294 F: Documentation/rfkill.txt
7297 RICOH SMARTMEDIA/XD DRIVER
7298 M: Maxim Levitsky <maximlevitsky@gmail.com>
7300 F: drivers/mtd/nand/r852.c
7301 F: drivers/mtd/nand/r852.h
7303 RICOH R5C592 MEMORYSTICK DRIVER
7304 M: Maxim Levitsky <maximlevitsky@gmail.com>
7306 F: drivers/memstick/host/r592.*
7309 M: Stefan Achatz <erazor_de@users.sourceforge.net>
7310 W: http://sourceforge.net/projects/roccat/
7312 F: drivers/hid/hid-roccat*
7313 F: include/linux/hid-roccat*
7314 F: Documentation/ABI/*/sysfs-driver-hid-roccat*
7318 W: http://www.comtrol.com
7320 F: Documentation/serial/rocket.txt
7321 F: drivers/tty/rocket*
7324 M: Ralf Baechle <ralf@linux-mips.org>
7325 L: linux-hams@vger.kernel.org
7326 W: http://www.linux-ax25.org/
7328 F: include/net/rose.h
7329 F: include/uapi/linux/rose.h
7332 RTL2830 MEDIA DRIVER
7333 M: Antti Palosaari <crope@iki.fi>
7334 L: linux-media@vger.kernel.org
7335 W: http://linuxtv.org/
7336 W: http://palosaari.fi/linux/
7337 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7338 T: git git://linuxtv.org/anttip/media_tree.git
7340 F: drivers/media/dvb-frontends/rtl2830*
7342 RTL2832 MEDIA DRIVER
7343 M: Antti Palosaari <crope@iki.fi>
7344 L: linux-media@vger.kernel.org
7345 W: http://linuxtv.org/
7346 W: http://palosaari.fi/linux/
7347 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7348 T: git git://linuxtv.org/anttip/media_tree.git
7350 F: drivers/media/dvb-frontends/rtl2832*
7352 RTL8180 WIRELESS DRIVER
7353 M: "John W. Linville" <linville@tuxdriver.com>
7354 L: linux-wireless@vger.kernel.org
7355 W: http://wireless.kernel.org/
7356 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7358 F: drivers/net/wireless/rtl818x/rtl8180/
7360 RTL8187 WIRELESS DRIVER
7361 M: Herton Ronaldo Krzesinski <herton@canonical.com>
7362 M: Hin-Tak Leung <htl10@users.sourceforge.net>
7363 M: Larry Finger <Larry.Finger@lwfinger.net>
7364 L: linux-wireless@vger.kernel.org
7365 W: http://wireless.kernel.org/
7366 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7368 F: drivers/net/wireless/rtl818x/rtl8187/
7370 RTL8192CE WIRELESS DRIVER
7371 M: Larry Finger <Larry.Finger@lwfinger.net>
7372 M: Chaoming Li <chaoming_li@realsil.com.cn>
7373 L: linux-wireless@vger.kernel.org
7374 W: http://wireless.kernel.org/
7375 T: git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
7377 F: drivers/net/wireless/rtlwifi/
7378 F: drivers/net/wireless/rtlwifi/rtl8192ce/
7380 S3 SAVAGE FRAMEBUFFER DRIVER
7381 M: Antonino Daplas <adaplas@gmail.com>
7382 L: linux-fbdev@vger.kernel.org
7384 F: drivers/video/savage/
7387 M: Martin Schwidefsky <schwidefsky@de.ibm.com>
7388 M: Heiko Carstens <heiko.carstens@de.ibm.com>
7389 M: linux390@de.ibm.com
7390 L: linux-s390@vger.kernel.org
7391 W: http://www.ibm.com/developerworks/linux/linux390/
7395 F: block/partitions/ibm.c
7396 F: Documentation/s390/
7397 F: Documentation/DocBook/s390*
7399 S390 NETWORK DRIVERS
7400 M: Ursula Braun <ursula.braun@de.ibm.com>
7401 M: Frank Blaschka <blaschka@linux.vnet.ibm.com>
7402 M: linux390@de.ibm.com
7403 L: linux-s390@vger.kernel.org
7404 W: http://www.ibm.com/developerworks/linux/linux390/
7406 F: drivers/s390/net/
7409 M: Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
7410 M: linux390@de.ibm.com
7411 L: linux-s390@vger.kernel.org
7412 W: http://www.ibm.com/developerworks/linux/linux390/
7414 F: drivers/s390/crypto/
7417 M: Steffen Maier <maier@linux.vnet.ibm.com>
7418 M: linux390@de.ibm.com
7419 L: linux-s390@vger.kernel.org
7420 W: http://www.ibm.com/developerworks/linux/linux390/
7422 F: drivers/s390/scsi/zfcp_*
7424 S390 IUCV NETWORK LAYER
7425 M: Ursula Braun <ursula.braun@de.ibm.com>
7426 M: linux390@de.ibm.com
7427 L: linux-s390@vger.kernel.org
7428 W: http://www.ibm.com/developerworks/linux/linux390/
7430 F: drivers/s390/net/*iucv*
7431 F: include/net/iucv/
7434 S3C24XX SD/MMC Driver
7435 M: Ben Dooks <ben-linux@fluff.org>
7436 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7438 F: drivers/mmc/host/s3cmci.*
7440 SAA6588 RDS RECEIVER DRIVER
7441 M: Hans Verkuil <hverkuil@xs4all.nl>
7442 L: linux-media@vger.kernel.org
7443 T: git git://linuxtv.org/media_tree.git
7444 W: http://linuxtv.org
7446 F: drivers/media/i2c/saa6588*
7448 SAA7134 VIDEO4LINUX DRIVER
7449 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
7450 L: linux-media@vger.kernel.org
7451 W: http://linuxtv.org
7452 T: git git://linuxtv.org/media_tree.git
7454 F: Documentation/video4linux/*.saa7134
7455 F: drivers/media/pci/saa7134/
7457 SAA7146 VIDEO4LINUX-2 DRIVER
7458 M: Hans Verkuil <hverkuil@xs4all.nl>
7459 L: linux-media@vger.kernel.org
7460 T: git git://linuxtv.org/media_tree.git
7462 F: drivers/media/common/saa7146/
7463 F: drivers/media/pci/saa7146/
7464 F: include/media/saa7146*
7466 SAMSUNG LAPTOP DRIVER
7467 M: Corentin Chary <corentin.chary@gmail.com>
7468 L: platform-driver-x86@vger.kernel.org
7470 F: drivers/platform/x86/samsung-laptop.c
7472 SAMSUNG AUDIO (ASoC) DRIVERS
7473 M: Sangbeom Kim <sbkim73@samsung.com>
7474 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
7476 F: sound/soc/samsung/
7478 SAMSUNG FRAMEBUFFER DRIVER
7479 M: Jingoo Han <jg1.han@samsung.com>
7480 L: linux-fbdev@vger.kernel.org
7482 F: drivers/video/s3c-fb.c
7484 SAMSUNG MULTIFUNCTION DEVICE DRIVERS
7485 M: Sangbeom Kim <sbkim73@samsung.com>
7486 L: linux-kernel@vger.kernel.org
7488 F: drivers/mfd/sec*.c
7489 F: drivers/regulator/s2m*.c
7490 F: drivers/regulator/s5m*.c
7491 F: drivers/rtc/rtc-sec.c
7492 F: include/linux/mfd/samsung/
7494 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
7495 M: Kyungmin Park <kyungmin.park@samsung.com>
7496 M: Sylwester Nawrocki <s.nawrocki@samsung.com>
7497 L: linux-media@vger.kernel.org
7498 Q: https://patchwork.linuxtv.org/project/linux-media/list/
7500 F: drivers/media/platform/exynos4-is/
7501 F: include/media/s5p_fimc.h
7503 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
7504 M: Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
7505 L: linux-media@vger.kernel.org
7506 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7508 F: drivers/media/platform/s3c-camif/
7509 F: include/media/s3c_camif.h
7511 SAMSUNG S5C73M3 CAMERA DRIVER
7512 M: Kyungmin Park <kyungmin.park@samsung.com>
7513 M: Andrzej Hajda <a.hajda@samsung.com>
7514 L: linux-media@vger.kernel.org
7516 F: drivers/media/i2c/s5c73m3/*
7518 SAMSUNG S5K5BAF CAMERA DRIVER
7519 M: Kyungmin Park <kyungmin.park@samsung.com>
7520 M: Andrzej Hajda <a.hajda@samsung.com>
7521 L: linux-media@vger.kernel.org
7523 F: drivers/media/i2c/s5k5baf.c
7525 SAMSUNG SOC CLOCK DRIVERS
7526 M: Tomasz Figa <t.figa@samsung.com>
7528 L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
7529 F: drivers/clk/samsung/
7532 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
7533 L: linux-serial@vger.kernel.org
7535 F: drivers/tty/serial/
7537 SYNOPSYS DESIGNWARE DMAC DRIVER
7538 M: Viresh Kumar <viresh.linux@gmail.com>
7539 M: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
7541 F: include/linux/dw_dmac.h
7544 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
7545 M: Seungwon Jeon <tgih.jun@samsung.com>
7546 M: Jaehoon Chung <jh80.chung@samsung.com>
7547 L: linux-mmc@vger.kernel.org
7549 F: include/linux/mmc/dw_mmc.h
7550 F: drivers/mmc/host/dw_mmc*
7552 TIMEKEEPING, CLOCKSOURCE CORE, NTP
7553 M: John Stultz <john.stultz@linaro.org>
7554 M: Thomas Gleixner <tglx@linutronix.de>
7555 L: linux-kernel@vger.kernel.org
7556 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
7558 F: include/linux/clocksource.h
7559 F: include/linux/time.h
7560 F: include/linux/timex.h
7561 F: include/uapi/linux/time.h
7562 F: include/uapi/linux/timex.h
7563 F: kernel/time/clocksource.c
7564 F: kernel/time/time*.c
7565 F: kernel/time/ntp.c
7567 TLG2300 VIDEO4LINUX-2 DRIVER
7568 M: Huang Shijie <shijie8@gmail.com>
7569 M: Hans Verkuil <hverkuil@xs4all.nl>
7571 F: drivers/media/usb/tlg2300/
7574 M: Zwane Mwaikambo <zwanem@gmail.com>
7576 F: drivers/watchdog/sc1200wdt.c
7579 M: Ingo Molnar <mingo@redhat.com>
7580 M: Peter Zijlstra <peterz@infradead.org>
7581 L: linux-kernel@vger.kernel.org
7582 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
7585 F: include/linux/sched.h
7586 F: include/uapi/linux/sched.h
7587 F: include/linux/wait.h
7590 M: Chen Liqin <liqin.linux@gmail.com>
7591 M: Lennox Wu <lennox.wu@gmail.com>
7592 W: http://www.sunplus.com
7597 M: Jens Axboe <axboe@kernel.dk>
7598 L: linux-scsi@vger.kernel.org
7599 W: http://www.kernel.dk
7603 SCSI RDMA PROTOCOL (SRP) INITIATOR
7604 M: Bart Van Assche <bvanassche@acm.org>
7605 L: linux-rdma@vger.kernel.org
7607 W: http://www.openfabrics.org
7608 Q: http://patchwork.kernel.org/project/linux-rdma/list/
7609 T: git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
7610 F: drivers/infiniband/ulp/srp/
7611 F: include/scsi/srp.h
7614 M: Doug Gilbert <dgilbert@interlog.com>
7615 L: linux-scsi@vger.kernel.org
7616 W: http://sg.danny.cz/sg
7618 F: Documentation/scsi/scsi-generic.txt
7619 F: drivers/scsi/sg.c
7620 F: include/scsi/sg.h
7623 M: "James E.J. Bottomley" <JBottomley@parallels.com>
7624 L: linux-scsi@vger.kernel.org
7625 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6.git
7626 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
7627 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-pending-2.6.git
7633 M: Kai Mäkisara <Kai.Makisara@kolumbus.fi>
7634 L: linux-scsi@vger.kernel.org
7636 F: Documentation/scsi/st.txt
7637 F: drivers/scsi/st.*
7638 F: drivers/scsi/st_*.h
7641 M: Vlad Yasevich <vyasevich@gmail.com>
7642 M: Neil Horman <nhorman@tuxdriver.com>
7643 L: linux-sctp@vger.kernel.org
7644 W: http://lksctp.sourceforge.net
7646 F: Documentation/networking/sctp.txt
7647 F: include/linux/sctp.h
7648 F: include/uapi/linux/sctp.h
7649 F: include/net/sctp/
7653 M: Jim Cromie <jim.cromie@gmail.com>
7655 F: Documentation/i2c/busses/scx200_acb
7656 F: arch/x86/platform/scx200/
7657 F: drivers/watchdog/scx200_wdt.c
7658 F: drivers/i2c/busses/scx200*
7659 F: drivers/mtd/maps/scx200_docflash.c
7660 F: include/linux/scx200.h
7663 M: Jim Cromie <jim.cromie@gmail.com>
7665 F: drivers/char/scx200_gpio.c
7666 F: include/linux/scx200_gpio.h
7668 SCx200 HRT CLOCKSOURCE DRIVER
7669 M: Jim Cromie <jim.cromie@gmail.com>
7671 F: drivers/clocksource/scx200_hrt.c
7673 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
7674 M: Sascha Sommer <saschasommer@freenet.de>
7675 L: sdricohcs-devel@lists.sourceforge.net (subscribers-only)
7677 F: drivers/mmc/host/sdricoh_cs.c
7679 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
7680 M: Chris Ball <chris@printf.net>
7681 L: linux-mmc@vger.kernel.org
7682 T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
7684 F: drivers/mmc/host/sdhci.*
7685 F: drivers/mmc/host/sdhci-pltfm.[ch]
7687 SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
7688 M: Anton Vorontsov <anton@enomsg.org>
7689 L: linuxppc-dev@lists.ozlabs.org
7690 L: linux-mmc@vger.kernel.org
7692 F: drivers/mmc/host/sdhci-pltfm.[ch]
7694 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
7695 M: Ben Dooks <ben-linux@fluff.org>
7696 L: linux-mmc@vger.kernel.org
7698 F: drivers/mmc/host/sdhci-s3c.c
7700 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
7701 M: Viresh Kumar <viresh.linux@gmail.com>
7702 L: spear-devel@list.st.com
7703 L: linux-mmc@vger.kernel.org
7705 F: drivers/mmc/host/sdhci-spear.c
7708 M: James Morris <james.l.morris@oracle.com>
7709 L: linux-security-module@vger.kernel.org (suggested Cc:)
7710 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
7711 W: http://kernsec.org/
7716 M: Security Officers <security@kernel.org>
7719 SELINUX SECURITY MODULE
7720 M: Stephen Smalley <sds@tycho.nsa.gov>
7721 M: James Morris <james.l.morris@oracle.com>
7722 M: Eric Paris <eparis@parisplace.org>
7723 M: Paul Moore <paul@paul-moore.com>
7724 L: selinux@tycho.nsa.gov (subscribers-only, general discussion)
7725 W: http://selinuxproject.org
7726 T: git git://git.infradead.org/users/pcmoore/selinux
7728 F: include/linux/selinux*
7729 F: security/selinux/
7732 APPARMOR SECURITY MODULE
7733 M: John Johansen <john.johansen@canonical.com>
7734 L: apparmor@lists.ubuntu.com (subscribers-only, general discussion)
7735 W: apparmor.wiki.kernel.org
7736 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
7738 F: security/apparmor/
7741 M: Jiri Slaby <jirislaby@gmail.com>
7743 F: drivers/misc/phantom.c
7744 F: include/uapi/linux/phantom.h
7746 SERIAL ATA (SATA) SUBSYSTEM
7747 M: Tejun Heo <tj@kernel.org>
7748 L: linux-ide@vger.kernel.org
7749 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7752 F: include/linux/ata.h
7753 F: include/linux/libata.h
7755 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
7756 M: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
7757 L: linux-scsi@vger.kernel.org
7758 W: http://www.emulex.com
7760 F: drivers/scsi/be2iscsi/
7762 SERVER ENGINES 10Gbps NIC - BladeEngine 2 DRIVER
7763 M: Sathya Perla <sathya.perla@emulex.com>
7764 M: Subbu Seetharaman <subbu.seetharaman@emulex.com>
7765 M: Ajit Khaparde <ajit.khaparde@emulex.com>
7766 L: netdev@vger.kernel.org
7767 W: http://www.emulex.com
7769 F: drivers/net/ethernet/emulex/benet/
7772 M: Solarflare linux maintainers <linux-net-drivers@solarflare.com>
7773 M: Shradha Shah <sshah@solarflare.com>
7774 L: netdev@vger.kernel.org
7776 F: drivers/net/ethernet/sfc/
7779 M: Dimitri Sivanich <sivanich@sgi.com>
7781 F: drivers/misc/sgi-gru/
7783 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
7784 M: Pat Gefre <pfg@sgi.com>
7785 L: linux-ia64@vger.kernel.org
7787 F: Documentation/ia64/serial.txt
7788 F: drivers/tty/serial/ioc?_serial.c
7789 F: include/linux/ioc?.h
7791 SGI VISUAL WORKSTATION 320 AND 540
7792 M: Andrey Panin <pazke@donpac.ru>
7793 L: linux-visws-devel@lists.sf.net
7794 W: http://linux-visws.sf.net
7795 S: Maintained for 2.6.
7796 F: Documentation/sgi-visws.txt
7798 SGI XP/XPC/XPNET DRIVER
7799 M: Cliff Whickman <cpw@sgi.com>
7800 M: Robin Holt <robinmholt@gmail.com>
7802 F: drivers/misc/sgi-xp/
7804 SI470X FM RADIO RECEIVER I2C DRIVER
7805 M: Hans Verkuil <hverkuil@xs4all.nl>
7806 L: linux-media@vger.kernel.org
7807 T: git git://linuxtv.org/media_tree.git
7808 W: http://linuxtv.org
7810 F: drivers/media/radio/si470x/radio-si470x-i2c.c
7812 SI470X FM RADIO RECEIVER USB DRIVER
7813 M: Hans Verkuil <hverkuil@xs4all.nl>
7814 L: linux-media@vger.kernel.org
7815 T: git git://linuxtv.org/media_tree.git
7816 W: http://linuxtv.org
7818 F: drivers/media/radio/si470x/radio-si470x-common.c
7819 F: drivers/media/radio/si470x/radio-si470x.h
7820 F: drivers/media/radio/si470x/radio-si470x-usb.c
7822 SI4713 FM RADIO TRANSMITTER I2C DRIVER
7823 M: Eduardo Valentin <edubezval@gmail.com>
7824 L: linux-media@vger.kernel.org
7825 T: git git://linuxtv.org/media_tree.git
7826 W: http://linuxtv.org
7828 F: drivers/media/radio/si4713/si4713.?
7830 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
7831 M: Eduardo Valentin <edubezval@gmail.com>
7832 L: linux-media@vger.kernel.org
7833 T: git git://linuxtv.org/media_tree.git
7834 W: http://linuxtv.org
7836 F: drivers/media/radio/si4713/radio-platform-si4713.c
7838 SI4713 FM RADIO TRANSMITTER USB DRIVER
7839 M: Hans Verkuil <hverkuil@xs4all.nl>
7840 L: linux-media@vger.kernel.org
7841 T: git git://linuxtv.org/media_tree.git
7842 W: http://linuxtv.org
7844 F: drivers/media/radio/si4713/radio-usb-si4713.c
7847 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
7848 L: linux-media@vger.kernel.org
7849 W: http://linuxtv.org
7850 T: git git://linuxtv.org/media_tree.git
7852 F: drivers/media/common/siano/
7853 F: drivers/media/usb/siano/
7854 F: drivers/media/usb/siano/
7855 F: drivers/media/mmc/siano/
7857 SH_VEU V4L2 MEM2MEM DRIVER
7858 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7859 L: linux-media@vger.kernel.org
7861 F: drivers/media/platform/sh_veu.c
7863 SH_VOU V4L2 OUTPUT DRIVER
7864 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
7865 L: linux-media@vger.kernel.org
7867 F: drivers/media/platform/sh_vou.c
7868 F: include/media/sh_vou.h
7870 SIMPLE FIRMWARE INTERFACE (SFI)
7871 M: Len Brown <lenb@kernel.org>
7872 L: sfi-devel@simplefirmware.org
7873 W: http://simplefirmware.org/
7874 T: git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
7876 F: arch/x86/platform/sfi/
7878 F: include/linux/sfi*.h
7880 SIMTEC EB110ATX (Chalice CATS)
7882 P: Vincent Sanders <vince@simtec.co.uk>
7883 M: Simtec Linux Team <linux@simtec.co.uk>
7884 W: http://www.simtec.co.uk/products/EB110ATX/
7887 SIMTEC EB2410ITX (BAST)
7889 P: Vincent Sanders <vince@simtec.co.uk>
7890 M: Simtec Linux Team <linux@simtec.co.uk>
7891 W: http://www.simtec.co.uk/products/EB2410ITX/
7893 F: arch/arm/mach-s3c24xx/mach-bast.c
7894 F: arch/arm/mach-s3c24xx/bast-ide.c
7895 F: arch/arm/mach-s3c24xx/bast-irq.c
7897 TI DAVINCI MACHINE SUPPORT
7898 M: Sekhar Nori <nsekhar@ti.com>
7899 M: Kevin Hilman <khilman@deeprootsystems.com>
7900 L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7901 T: git git://gitorious.org/linux-davinci/linux-davinci.git
7902 Q: http://patchwork.kernel.org/project/linux-davinci/list/
7904 F: arch/arm/mach-davinci/
7905 F: drivers/i2c/busses/i2c-davinci.c
7907 TI DAVINCI SERIES MEDIA DRIVER
7908 M: Lad, Prabhakar <prabhakar.csengg@gmail.com>
7909 L: linux-media@vger.kernel.org
7910 L: davinci-linux-open-source@linux.davincidsp.com (moderated for non-subscribers)
7911 W: http://linuxtv.org/
7912 Q: http://patchwork.linuxtv.org/project/linux-media/list/
7913 T: git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
7915 F: drivers/media/platform/davinci/
7916 F: include/media/davinci/
7918 SIS 190 ETHERNET DRIVER
7919 M: Francois Romieu <romieu@fr.zoreil.com>
7920 L: netdev@vger.kernel.org
7922 F: drivers/net/ethernet/sis/sis190.c
7924 SIS 900/7016 FAST ETHERNET DRIVER
7925 M: Daniele Venzano <venza@brownhat.org>
7926 W: http://www.brownhat.org/sis900.html
7927 L: netdev@vger.kernel.org
7929 F: drivers/net/ethernet/sis/sis900.*
7931 SIS FRAMEBUFFER DRIVER
7932 M: Thomas Winischhofer <thomas@winischhofer.net>
7933 W: http://www.winischhofer.net/linuxsisvga.shtml
7935 F: Documentation/fb/sisfb.txt
7936 F: drivers/video/sis/
7937 F: include/video/sisfb.h
7940 M: Thomas Winischhofer <thomas@winischhofer.net>
7941 W: http://www.winischhofer.at/linuxsisusbvga.shtml
7943 F: drivers/usb/misc/sisusbvga/
7946 M: Christoph Lameter <cl@linux-foundation.org>
7947 M: Pekka Enberg <penberg@kernel.org>
7948 M: Matt Mackall <mpm@selenic.com>
7949 L: linux-mm@kvack.org
7951 F: include/linux/sl?b*.h
7954 SLEEPABLE READ-COPY UPDATE (SRCU)
7955 M: Lai Jiangshan <laijs@cn.fujitsu.com>
7956 M: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7957 L: linux-kernel@vger.kernel.org
7958 W: http://www.rdrop.com/users/paulmck/RCU/
7960 T: git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
7961 F: include/linux/srcu.h
7962 F: kernel/rcu/srcu.c
7964 SMACK SECURITY MODULE
7965 M: Casey Schaufler <casey@schaufler-ca.com>
7966 L: linux-security-module@vger.kernel.org
7967 W: http://schaufler-ca.com
7968 T: git git://git.gitorious.org/smack-next/kernel.git
7970 F: Documentation/security/Smack.txt
7973 SMARTREFLEX DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
7974 M: Kevin Hilman <khilman@kernel.org>
7975 M: Nishanth Menon <nm@ti.com>
7977 F: drivers/power/avs/smartreflex.c
7978 F: include/linux/power/smartreflex.h
7979 L: linux-pm@vger.kernel.org
7981 SMC91x ETHERNET DRIVER
7982 M: Nicolas Pitre <nico@fluxnic.net>
7984 F: drivers/net/ethernet/smsc/smc91x.*
7986 SMIA AND SMIA++ IMAGE SENSOR DRIVER
7987 M: Sakari Ailus <sakari.ailus@iki.fi>
7988 L: linux-media@vger.kernel.org
7990 F: drivers/media/i2c/smiapp/
7991 F: include/media/smiapp.h
7992 F: drivers/media/i2c/smiapp-pll.c
7993 F: drivers/media/i2c/smiapp-pll.h
7995 SMM665 HARDWARE MONITOR DRIVER
7996 M: Guenter Roeck <linux@roeck-us.net>
7997 L: lm-sensors@lm-sensors.org
7999 F: Documentation/hwmon/smm665
8000 F: drivers/hwmon/smm665.c
8002 SMSC EMC2103 HARDWARE MONITOR DRIVER
8003 M: Steve Glendinning <steve.glendinning@shawell.net>
8004 L: lm-sensors@lm-sensors.org
8006 F: Documentation/hwmon/emc2103
8007 F: drivers/hwmon/emc2103.c
8009 SMSC SCH5627 HARDWARE MONITOR DRIVER
8010 M: Hans de Goede <hdegoede@redhat.com>
8011 L: lm-sensors@lm-sensors.org
8013 F: Documentation/hwmon/sch5627
8014 F: drivers/hwmon/sch5627.c
8016 SMSC47B397 HARDWARE MONITOR DRIVER
8017 M: Jean Delvare <jdelvare@suse.de>
8018 L: lm-sensors@lm-sensors.org
8020 F: Documentation/hwmon/smsc47b397
8021 F: drivers/hwmon/smsc47b397.c
8023 SMSC911x ETHERNET DRIVER
8024 M: Steve Glendinning <steve.glendinning@shawell.net>
8025 L: netdev@vger.kernel.org
8027 F: include/linux/smsc911x.h
8028 F: drivers/net/ethernet/smsc/smsc911x.*
8030 SMSC9420 PCI ETHERNET DRIVER
8031 M: Steve Glendinning <steve.glendinning@shawell.net>
8032 L: netdev@vger.kernel.org
8034 F: drivers/net/ethernet/smsc/smsc9420.*
8036 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
8037 M: Steve Glendinning <steve.glendinning@shawell.net>
8038 L: linux-fbdev@vger.kernel.org
8040 F: drivers/video/smscufx.c
8042 SOC-CAMERA V4L2 SUBSYSTEM
8043 M: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
8044 L: linux-media@vger.kernel.org
8045 T: git git://linuxtv.org/media_tree.git
8047 F: include/media/soc*
8048 F: drivers/media/i2c/soc_camera/
8049 F: drivers/media/platform/soc_camera/
8051 SOEKRIS NET48XX LED SUPPORT
8052 M: Chris Boot <bootc@bootc.net>
8054 F: drivers/leds/leds-net48xx.c
8056 SOFTWARE RAID (Multiple Disks) SUPPORT
8057 M: Neil Brown <neilb@suse.de>
8058 L: linux-raid@vger.kernel.org
8061 F: include/linux/raid/
8062 F: include/uapi/linux/raid/
8064 SONIC NETWORK DRIVER
8065 M: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
8066 L: netdev@vger.kernel.org
8068 F: drivers/net/ethernet/natsemi/sonic.*
8070 SONICS SILICON BACKPLANE DRIVER (SSB)
8071 M: Michael Buesch <m@bues.ch>
8072 L: netdev@vger.kernel.org
8075 F: include/linux/ssb/
8077 SONY VAIO CONTROL DEVICE DRIVER
8078 M: Mattia Dongili <malattia@linux.it>
8079 L: platform-driver-x86@vger.kernel.org
8080 W: http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
8082 F: Documentation/laptops/sony-laptop.txt
8083 F: drivers/char/sonypi.c
8084 F: drivers/platform/x86/sony-laptop.c
8085 F: include/linux/sony-laptop.h
8087 SONY MEMORYSTICK CARD SUPPORT
8088 M: Alex Dubov <oakad@yahoo.com>
8089 W: http://tifmxx.berlios.de/
8091 F: drivers/memstick/host/tifm_ms.c
8093 SONY MEMORYSTICK STANDARD SUPPORT
8094 M: Maxim Levitsky <maximlevitsky@gmail.com>
8096 F: drivers/memstick/core/ms_block.*
8099 M: Jaroslav Kysela <perex@perex.cz>
8100 M: Takashi Iwai <tiwai@suse.de>
8101 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8102 W: http://www.alsa-project.org/
8103 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8104 T: git git://git.alsa-project.org/alsa-kernel.git
8106 F: Documentation/sound/
8108 F: include/uapi/sound/
8111 SOUND - COMPRESSED AUDIO
8112 M: Vinod Koul <vinod.koul@intel.com>
8113 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8116 F: Documentation/sound/alsa/compress_offload.txt
8117 F: include/sound/compress_driver.h
8118 F: include/uapi/sound/compress_*
8119 F: sound/core/compress_offload.c
8120 F: sound/soc/soc-compress.c
8122 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
8123 M: Liam Girdwood <lgirdwood@gmail.com>
8124 M: Mark Brown <broonie@kernel.org>
8125 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
8126 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8127 W: http://alsa-project.org/main/index.php/ASoC
8129 F: Documentation/sound/alsa/soc/
8131 F: include/sound/soc*
8133 SOUND - DMAENGINE HELPERS
8134 M: Lars-Peter Clausen <lars@metafoo.de>
8136 F: include/sound/dmaengine_pcm.h
8137 F: sound/core/pcm_dmaengine.c
8138 F: sound/soc/soc-generic-dmaengine-pcm.c
8140 SPARC + UltraSPARC (sparc/sparc64)
8141 M: "David S. Miller" <davem@davemloft.net>
8142 L: sparclinux@vger.kernel.org
8143 Q: http://patchwork.ozlabs.org/project/sparclinux/list/
8144 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
8145 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
8150 SPARC SERIAL DRIVERS
8151 M: "David S. Miller" <davem@davemloft.net>
8152 L: sparclinux@vger.kernel.org
8153 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
8154 T: git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
8156 F: include/linux/sunserialcore.h
8157 F: drivers/tty/serial/suncore.c
8158 F: drivers/tty/serial/sunhv.c
8159 F: drivers/tty/serial/sunsab.c
8160 F: drivers/tty/serial/sunsab.h
8161 F: drivers/tty/serial/sunsu.c
8162 F: drivers/tty/serial/sunzilog.c
8163 F: drivers/tty/serial/sunzilog.h
8166 M: "Christopher Li" <sparse@chrisli.org>
8167 L: linux-sparse@vger.kernel.org
8168 W: https://sparse.wiki.kernel.org/
8169 T: git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
8170 T: git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
8172 F: include/linux/compiler.h
8174 SPEAR PLATFORM SUPPORT
8175 M: Viresh Kumar <viresh.linux@gmail.com>
8176 M: Shiraz Hashim <shiraz.hashim@st.com>
8177 L: spear-devel@list.st.com
8178 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8179 W: http://www.st.com/spear
8181 F: arch/arm/mach-spear/
8183 SPEAR CLOCK FRAMEWORK SUPPORT
8184 M: Viresh Kumar <viresh.linux@gmail.com>
8185 L: spear-devel@list.st.com
8186 L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8187 W: http://www.st.com/spear
8189 F: drivers/clk/spear/
8192 M: Mark Brown <broonie@kernel.org>
8193 L: linux-spi@vger.kernel.org
8194 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
8195 Q: http://patchwork.kernel.org/project/spi-devel-general/list/
8197 F: Documentation/spi/
8199 F: include/linux/spi/
8200 F: include/uapi/linux/spi/
8202 SPIDERNET NETWORK DRIVER for CELL
8203 M: Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
8204 M: Jens Osterkamp <jens@de.ibm.com>
8205 L: netdev@vger.kernel.org
8207 F: Documentation/networking/spider_net.txt
8208 F: drivers/net/ethernet/toshiba/spider_net*
8211 M: Jeremy Kerr <jk@ozlabs.org>
8212 L: linuxppc-dev@lists.ozlabs.org
8213 L: cbe-oss-dev@lists.ozlabs.org
8214 W: http://www.ibm.com/developerworks/power/cell/
8216 F: Documentation/filesystems/spufs.txt
8217 F: arch/powerpc/platforms/cell/spufs/
8219 SQUASHFS FILE SYSTEM
8220 M: Phillip Lougher <phillip@squashfs.org.uk>
8221 L: squashfs-devel@lists.sourceforge.net (subscribers-only)
8222 W: http://squashfs.org.uk
8224 F: Documentation/filesystems/squashfs.txt
8227 SRM (Alpha) environment access
8228 M: Jan-Benedict Glaw <jbglaw@lug-owl.de>
8230 F: arch/alpha/kernel/srm_env.c
8233 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8234 L: stable@vger.kernel.org
8236 F: Documentation/stable_kernel_rules.txt
8239 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8240 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
8241 L: devel@driverdev.osuosl.org
8245 STAGING - AGERE HERMES II and II.5 WIRELESS DRIVERS
8246 M: Henk de Groot <pe1dnn@amsat.org>
8248 F: drivers/staging/wlags49_h2/
8249 F: drivers/staging/wlags49_h25/
8252 M: Jakub Schmidtke <sjakub@gmail.com>
8254 F: drivers/staging/asus_oled/
8257 M: Ian Abbott <abbotti@mev.co.uk>
8258 M: H Hartley Sweeten <hsweeten@visionengravers.com>
8260 F: drivers/staging/comedi/
8262 STAGING - CRYSTAL HD VIDEO DECODER
8263 M: Naren Sankar <nsankar@broadcom.com>
8264 M: Jarod Wilson <jarod@wilsonet.com>
8265 M: Scott Davilla <davilla@4pi.com>
8266 M: Manu Abraham <abraham.manu@gmail.com>
8268 F: drivers/staging/crystalhd/
8270 STAGING - ECHO CANCELLER
8271 M: Steve Underwood <steveu@coppice.org>
8272 M: David Rowe <david@rowetel.com>
8274 F: drivers/staging/echo/
8276 STAGING - ET131X NETWORK DRIVER
8277 M: Mark Einon <mark.einon@gmail.com>
8279 F: drivers/staging/et131x/
8281 STAGING - FLARION FT1000 DRIVERS
8282 M: Marek Belisko <marek.belisko@gmail.com>
8284 F: drivers/staging/ft1000/
8286 STAGING - FRONTIER TRANZPORT AND ALPHATRACK
8287 M: David Täht <d@teklibre.com>
8289 F: drivers/staging/frontier/
8291 STAGING - GO7007 MPEG CODEC
8292 M: Hans Verkuil <hans.verkuil@cisco.com>
8294 F: drivers/staging/media/go7007/
8296 STAGING - INDUSTRIAL IO
8297 M: Jonathan Cameron <jic23@kernel.org>
8298 L: linux-iio@vger.kernel.org
8300 F: drivers/staging/iio/
8302 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
8303 M: Jarod Wilson <jarod@wilsonet.com>
8304 W: http://www.lirc.org/
8306 F: drivers/staging/media/lirc/
8308 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
8309 M: Julian Andres Klode <jak@jak-linux.org>
8310 M: Marc Dietrich <marvin24@gmx.de>
8311 L: ac100@lists.launchpad.net (moderated for non-subscribers)
8312 L: linux-tegra@vger.kernel.org
8314 F: drivers/staging/nvec/
8316 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
8317 M: Jens Frederich <jfrederich@gmail.com>
8318 M: Daniel Drake <dsd@laptop.org>
8319 M: Jon Nettleton <jon.nettleton@gmail.com>
8320 W: http://wiki.laptop.org/go/DCON
8322 F: drivers/staging/olpc_dcon/
8324 STAGING - OZMO DEVICES USB OVER WIFI DRIVER
8325 M: Rupesh Gujare <rupesh.gujare@atmel.com>
8327 F: drivers/staging/ozwpan/
8329 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
8330 M: Willy Tarreau <willy@meta-x.org>
8332 F: drivers/staging/panel/
8334 STAGING - REALTEK RTL8712U DRIVERS
8335 M: Larry Finger <Larry.Finger@lwfinger.net>
8336 M: Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
8338 F: drivers/staging/rtl8712/
8340 STAGING - SILICON MOTION SM7XX FRAME BUFFER DRIVER
8341 M: Teddy Wang <teddy.wang@siliconmotion.com.cn>
8343 F: drivers/staging/sm7xxfb/
8345 STAGING - SOFTLOGIC 6x10 MPEG CODEC
8346 M: Ismael Luceno <ismael.luceno@corp.bluecherry.net>
8348 F: drivers/staging/media/solo6x10/
8350 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
8351 M: William Hubbs <w.d.hubbs@gmail.com>
8352 M: Chris Brannon <chris@the-brannons.com>
8353 M: Kirk Reiser <kirk@reisers.ca>
8354 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
8355 L: speakup@braille.uwo.ca
8356 W: http://www.linux-speakup.org/
8358 F: drivers/staging/speakup/
8360 STAGING - TI DSP BRIDGE DRIVERS
8361 M: Omar Ramirez Luna <omar.ramirez@copitl.com>
8363 F: drivers/staging/tidspbridge/
8365 STAGING - USB ENE SM/MS CARD READER DRIVER
8366 M: Al Cho <acho@novell.com>
8368 F: drivers/staging/keucr/
8370 STAGING - VIA VT665X DRIVERS
8371 M: Forest Bond <forest@alittletooquiet.net>
8373 F: drivers/staging/vt665?/
8375 STAGING - WINBOND IS89C35 WLAN USB DRIVER
8376 M: Pavel Machek <pavel@ucw.cz>
8378 F: drivers/staging/winbond/
8380 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
8381 M: Arnaud Patard <arnaud.patard@rtp-net.org>
8383 F: drivers/staging/xgifb/
8385 STARFIRE/DURALAN NETWORK DRIVER
8386 M: Ion Badulescu <ionut@badula.org>
8388 F: drivers/net/ethernet/adaptec/starfire*
8391 M: Sam Creasey <sammy@sammy.net>
8392 W: http://sammy.net/sun3/
8394 F: arch/m68k/kernel/*sun3*
8396 F: arch/m68k/include/asm/sun3*
8397 F: drivers/net/ethernet/i825xx/sun3*
8399 SUNDANCE NETWORK DRIVER
8400 M: Denis Kirjanov <kda@linux-powerpc.org>
8401 L: netdev@vger.kernel.org
8403 F: drivers/net/ethernet/dlink/sundance.c
8406 M: Paul Mundt <lethal@linux-sh.org>
8407 L: linux-sh@vger.kernel.org
8408 W: http://www.linux-sh.org
8409 Q: http://patchwork.kernel.org/project/linux-sh/list/
8410 T: git git://github.com/pmundt/linux-sh.git sh-latest
8412 F: Documentation/sh/
8417 M: Len Brown <len.brown@intel.com>
8418 M: Pavel Machek <pavel@ucw.cz>
8419 M: "Rafael J. Wysocki" <rjw@rjwysocki.net>
8420 L: linux-pm@vger.kernel.org
8422 F: Documentation/power/
8423 F: arch/x86/kernel/acpi/
8424 F: drivers/base/power/
8426 F: include/linux/suspend.h
8427 F: include/linux/freezer.h
8428 F: include/linux/pm.h
8431 M: Martin Mares <mj@ucw.cz>
8432 L: linux-video@atrey.karlin.mff.cuni.cz
8434 F: Documentation/svga.txt
8435 F: arch/x86/boot/video*
8438 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8439 L: linux-kernel@vger.kernel.org
8442 F: arch/*/kernel/pci-swiotlb.c
8443 F: include/linux/swiotlb.h
8445 SYNOPSYS ARC ARCHITECTURE
8446 M: Vineet Gupta <vgupta@synopsys.com>
8449 F: Documentation/devicetree/bindings/arc/
8450 F: drivers/tty/serial/arc_uart.c
8453 M: Christoph Hellwig <hch@infradead.org>
8455 F: Documentation/filesystems/sysv-fs.txt
8457 F: include/linux/sysv_fs.h
8460 M: Nicholas A. Bellinger <nab@linux-iscsi.org>
8461 L: linux-scsi@vger.kernel.org
8462 L: target-devel@vger.kernel.org
8463 W: http://www.linux-iscsi.org
8464 W: http://groups.google.com/group/linux-iscsi-target-dev
8465 T: git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
8469 F: Documentation/target/
8471 TASKSTATS STATISTICS INTERFACE
8472 M: Balbir Singh <bsingharora@gmail.com>
8474 F: Documentation/accounting/taskstats*
8475 F: include/linux/taskstats*
8476 F: kernel/taskstats.c
8479 M: Jamal Hadi Salim <jhs@mojatatu.com>
8480 L: netdev@vger.kernel.org
8482 F: include/net/pkt_cls.h
8483 F: include/uapi/linux/pkt_cls.h
8486 TCP LOW PRIORITY MODULE
8487 M: "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
8488 M: "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
8489 W: http://tcp-lp-mod.sourceforge.net/
8491 F: net/ipv4/tcp_lp.c
8493 TDA10071 MEDIA DRIVER
8494 M: Antti Palosaari <crope@iki.fi>
8495 L: linux-media@vger.kernel.org
8496 W: http://linuxtv.org/
8497 W: http://palosaari.fi/linux/
8498 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8499 T: git git://linuxtv.org/anttip/media_tree.git
8501 F: drivers/media/dvb-frontends/tda10071*
8503 TDA18212 MEDIA DRIVER
8504 M: Antti Palosaari <crope@iki.fi>
8505 L: linux-media@vger.kernel.org
8506 W: http://linuxtv.org/
8507 W: http://palosaari.fi/linux/
8508 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8509 T: git git://linuxtv.org/anttip/media_tree.git
8511 F: drivers/media/tuners/tda18212*
8513 TDA18218 MEDIA DRIVER
8514 M: Antti Palosaari <crope@iki.fi>
8515 L: linux-media@vger.kernel.org
8516 W: http://linuxtv.org/
8517 W: http://palosaari.fi/linux/
8518 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8519 T: git git://linuxtv.org/anttip/media_tree.git
8521 F: drivers/media/tuners/tda18218*
8523 TDA18271 MEDIA DRIVER
8524 M: Michael Krufky <mkrufky@linuxtv.org>
8525 L: linux-media@vger.kernel.org
8526 W: http://linuxtv.org/
8527 W: http://github.com/mkrufky
8528 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8529 T: git git://linuxtv.org/mkrufky/tuners.git
8531 F: drivers/media/tuners/tda18271*
8533 TDA827x MEDIA DRIVER
8534 M: Michael Krufky <mkrufky@linuxtv.org>
8535 L: linux-media@vger.kernel.org
8536 W: http://linuxtv.org/
8537 W: http://github.com/mkrufky
8538 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8539 T: git git://linuxtv.org/mkrufky/tuners.git
8541 F: drivers/media/tuners/tda8290.*
8543 TDA8290 MEDIA DRIVER
8544 M: Michael Krufky <mkrufky@linuxtv.org>
8545 L: linux-media@vger.kernel.org
8546 W: http://linuxtv.org/
8547 W: http://github.com/mkrufky
8548 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8549 T: git git://linuxtv.org/mkrufky/tuners.git
8551 F: drivers/media/tuners/tda8290.*
8553 TDA9840 MEDIA DRIVER
8554 M: Hans Verkuil <hverkuil@xs4all.nl>
8555 L: linux-media@vger.kernel.org
8556 T: git git://linuxtv.org/media_tree.git
8557 W: http://linuxtv.org
8559 F: drivers/media/i2c/tda9840*
8561 TEA5761 TUNER DRIVER
8562 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
8563 L: linux-media@vger.kernel.org
8564 W: http://linuxtv.org
8565 T: git git://linuxtv.org/media_tree.git
8567 F: drivers/media/tuners/tea5761.*
8569 TEA5767 TUNER DRIVER
8570 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
8571 L: linux-media@vger.kernel.org
8572 W: http://linuxtv.org
8573 T: git git://linuxtv.org/media_tree.git
8575 F: drivers/media/tuners/tea5767.*
8577 TEA6415C MEDIA DRIVER
8578 M: Hans Verkuil <hverkuil@xs4all.nl>
8579 L: linux-media@vger.kernel.org
8580 T: git git://linuxtv.org/media_tree.git
8581 W: http://linuxtv.org
8583 F: drivers/media/i2c/tea6415c*
8585 TEA6420 MEDIA DRIVER
8586 M: Hans Verkuil <hverkuil@xs4all.nl>
8587 L: linux-media@vger.kernel.org
8588 T: git git://linuxtv.org/media_tree.git
8589 W: http://linuxtv.org
8591 F: drivers/media/i2c/tea6420*
8594 M: Jiri Pirko <jiri@resnulli.us>
8595 L: netdev@vger.kernel.org
8597 F: drivers/net/team/
8598 F: include/linux/if_team.h
8599 F: include/uapi/linux/if_team.h
8601 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
8602 M: Savoir-faire Linux Inc. <kernel@savoirfairelinux.com>
8604 F: arch/x86/platform/ts5500/
8606 TECHNOTREND USB IR RECEIVER
8607 M: Sean Young <sean@mess.org>
8608 L: linux-media@vger.kernel.org
8610 F: drivers/media/rc/ttusbir.c
8612 TEGRA ARCHITECTURE SUPPORT
8613 M: Stephen Warren <swarren@wwwdotorg.org>
8614 M: Thierry Reding <thierry.reding@gmail.com>
8615 L: linux-tegra@vger.kernel.org
8616 Q: http://patchwork.ozlabs.org/project/linux-tegra/list/
8617 T: git git://git.kernel.org/pub/scm/linux/kernel/git/swarren/linux-tegra.git
8622 M: Stephen Warren <swarren@wwwdotorg.org>
8627 M: Peter De Schrijver <pdeschrijver@nvidia.com>
8628 M: Prashant Gaikwad <pgaikwad@nvidia.com>
8630 F: drivers/clk/tegra/
8633 M: Laxman Dewangan <ldewangan@nvidia.com>
8635 F: drivers/dma/tegra20-apb-dma.c
8638 M: Stephen Warren <swarren@wwwdotorg.org>
8640 F: drivers/gpio/gpio-tegra.c
8643 M: Laxman Dewangan <ldewangan@nvidia.com>
8645 F: drivers/i2c/busses/i2c-tegra.c
8648 M: Hiroshi Doyu <hdoyu@nvidia.com>
8650 F: drivers/iommu/tegra*
8653 M: Rakesh Iyer <riyer@nvidia.com>
8654 M: Laxman Dewangan <ldewangan@nvidia.com>
8656 F: drivers/input/keyboard/tegra-kbc.c
8658 TEGRA PINCTRL DRIVER
8659 M: Stephen Warren <swarren@wwwdotorg.org>
8661 F: drivers/pinctrl/pinctrl-tegra*
8664 M: Thierry Reding <thierry.reding@gmail.com>
8666 F: drivers/pwm/pwm-tegra.c
8669 M: Laxman Dewangan <ldewangan@nvidia.com>
8671 F: drivers/tty/serial/serial-tegra.c
8674 M: Laxman Dewangan <ldewangan@nvidia.com>
8676 F: drivers/spi/spi-tegra*
8678 TEHUTI ETHERNET DRIVER
8679 M: Andy Gospodarek <andy@greyhouse.net>
8680 L: netdev@vger.kernel.org
8682 F: drivers/net/ethernet/tehuti/*
8684 Telecom Clock Driver for MCPL0010
8685 M: Mark Gross <mark.gross@intel.com>
8687 F: drivers/char/tlclk.c
8689 TENSILICA XTENSA PORT (xtensa)
8690 M: Chris Zankel <chris@zankel.net>
8691 M: Max Filippov <jcmvbkbc@gmail.com>
8692 L: linux-xtensa@linux-xtensa.org
8696 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
8697 M: Hans Verkuil <hverkuil@xs4all.nl>
8698 L: linux-media@vger.kernel.org
8699 T: git git://linuxtv.org/media_tree.git
8700 W: http://linuxtv.org
8702 F: drivers/media/radio/radio-raremono.c
8705 M: Zhang Rui <rui.zhang@intel.com>
8706 M: Eduardo Valentin <eduardo.valentin@ti.com>
8707 L: linux-pm@vger.kernel.org
8708 T: git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
8709 T: git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
8710 Q: https://patchwork.kernel.org/project/linux-pm/list/
8713 F: include/linux/thermal.h
8714 F: include/linux/cpu_cooling.h
8715 F: Documentation/devicetree/bindings/thermal/
8717 THINGM BLINK(1) USB RGB LED DRIVER
8718 M: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8720 F: drivers/hid/hid-thingm.c
8722 THINKPAD ACPI EXTRAS DRIVER
8723 M: Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
8724 L: ibm-acpi-devel@lists.sourceforge.net
8725 L: platform-driver-x86@vger.kernel.org
8726 W: http://ibm-acpi.sourceforge.net
8727 W: http://thinkwiki.org/wiki/Ibm-acpi
8728 T: git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
8730 F: drivers/platform/x86/thinkpad_acpi.c
8732 TI BANDGAP AND THERMAL DRIVER
8733 M: Eduardo Valentin <eduardo.valentin@ti.com>
8734 L: linux-pm@vger.kernel.org
8736 F: drivers/thermal/ti-soc-thermal/
8738 TI FLASH MEDIA INTERFACE DRIVER
8739 M: Alex Dubov <oakad@yahoo.com>
8741 F: drivers/misc/tifm*
8742 F: drivers/mmc/host/tifm_sd.c
8743 F: include/linux/tifm.h
8745 TI LM49xxx FAMILY ASoC CODEC DRIVERS
8746 M: M R Swami Reddy <mr.swami.reddy@ti.com>
8747 M: Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
8748 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8750 F: sound/soc/codecs/lm49453*
8751 F: sound/soc/codecs/isabelle*
8753 TI LP855x BACKLIGHT DRIVER
8754 M: Milo Kim <milo.kim@ti.com>
8756 F: Documentation/backlight/lp855x-driver.txt
8757 F: drivers/video/backlight/lp855x_bl.c
8758 F: include/linux/platform_data/lp855x.h
8760 TI LP8727 CHARGER DRIVER
8761 M: Milo Kim <milo.kim@ti.com>
8763 F: drivers/power/lp8727_charger.c
8764 F: include/linux/platform_data/lp8727.h
8766 TI LP8788 MFD DRIVER
8767 M: Milo Kim <milo.kim@ti.com>
8769 F: drivers/iio/adc/lp8788_adc.c
8770 F: drivers/leds/leds-lp8788.c
8771 F: drivers/mfd/lp8788*.c
8772 F: drivers/power/lp8788-charger.c
8773 F: drivers/regulator/lp8788-*.c
8774 F: include/linux/mfd/lp8788*.h
8776 TI TWL4030 SERIES SOC CODEC DRIVER
8777 M: Peter Ujfalusi <peter.ujfalusi@ti.com>
8778 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
8780 F: sound/soc/codecs/twl4030*
8782 TI WILINK WIRELESS DRIVERS
8783 L: linux-wireless@vger.kernel.org
8784 W: http://wireless.kernel.org/en/users/Drivers/wl12xx
8785 W: http://wireless.kernel.org/en/users/Drivers/wl1251
8786 T: git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
8788 F: drivers/net/wireless/ti/
8789 F: include/linux/wl12xx.h
8792 M: Jon Maloy <jon.maloy@ericsson.com>
8793 M: Allan Stephens <allan.stephens@windriver.com>
8794 L: netdev@vger.kernel.org (core kernel code)
8795 L: tipc-discussion@lists.sourceforge.net (user apps, general discussion)
8796 W: http://tipc.sourceforge.net/
8798 F: include/uapi/linux/tipc*.h
8802 M: Chris Metcalf <cmetcalf@tilera.com>
8803 W: http://www.tilera.com/scm/
8806 F: drivers/char/tile-srom.c
8807 F: drivers/edac/tile_edac.c
8808 F: drivers/net/ethernet/tile/
8809 F: drivers/rtc/rtc-tile.c
8810 F: drivers/tty/hvc/hvc_tile.c
8811 F: drivers/tty/serial/tilegx.c
8812 F: drivers/usb/host/*-tilegx.c
8813 F: include/linux/usb/tilegx.h
8816 M: Samuel Chessman <chessman@tux.org>
8817 L: tlan-devel@lists.sourceforge.net (subscribers-only)
8818 W: http://sourceforge.net/projects/tlan/
8820 F: Documentation/networking/tlan.txt
8821 F: drivers/net/ethernet/ti/tlan.*
8823 TOMOYO SECURITY MODULE
8824 M: Kentaro Takeda <takedakn@nttdata.co.jp>
8825 M: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
8826 L: tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
8827 L: tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
8828 L: tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
8829 L: tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
8830 W: http://tomoyo.sourceforge.jp/
8831 T: quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
8835 TOPSTAR LAPTOP EXTRAS DRIVER
8836 M: Herton Ronaldo Krzesinski <herton@canonical.com>
8837 L: platform-driver-x86@vger.kernel.org
8839 F: drivers/platform/x86/topstar-laptop.c
8841 TOSHIBA ACPI EXTRAS DRIVER
8842 L: platform-driver-x86@vger.kernel.org
8844 F: drivers/platform/x86/toshiba_acpi.c
8847 M: Jonathan Buzzard <jonathan@buzzard.org.uk>
8848 L: tlinux-users@tce.toshiba-dme.co.jp
8849 W: http://www.buzzard.org.uk/toshiba/
8851 F: drivers/char/toshiba.c
8852 F: include/linux/toshiba.h
8853 F: include/uapi/linux/toshiba.h
8856 M: Ian Molton <ian@mnementh.co.uk>
8857 L: linux-mmc@vger.kernel.org
8859 F: drivers/mmc/host/tmio_mmc*
8860 F: drivers/mmc/host/sh_mobile_sdhi.c
8861 F: include/linux/mmc/tmio.h
8862 F: include/linux/mmc/sh_mobile_sdhi.h
8864 TMP401 HARDWARE MONITOR DRIVER
8865 M: Guenter Roeck <linux@roeck-us.net>
8866 L: lm-sensors@lm-sensors.org
8868 F: Documentation/hwmon/tmp401
8869 F: drivers/hwmon/tmp401.c
8871 TMPFS (SHMEM FILESYSTEM)
8872 M: Hugh Dickins <hughd@google.com>
8873 L: linux-mm@kvack.org
8875 F: include/linux/shmem_fs.h
8878 TM6000 VIDEO4LINUX DRIVER
8879 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
8880 L: linux-media@vger.kernel.org
8881 W: http://linuxtv.org
8882 T: git git://linuxtv.org/media_tree.git
8884 F: drivers/media/usb/tm6000/
8887 M: Peter Huewe <peterhuewe@gmx.de>
8888 M: Ashley Lai <ashley@ashleylai.com>
8889 M: Marcel Selhorst <tpmdd@selhorst.net>
8890 W: http://tpmdd.sourceforge.net
8891 L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
8893 F: drivers/char/tpm/
8896 M: Steven Rostedt <rostedt@goodmis.org>
8897 M: Frederic Weisbecker <fweisbec@gmail.com>
8898 M: Ingo Molnar <mingo@redhat.com>
8899 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8901 F: Documentation/trace/ftrace.txt
8902 F: arch/*/*/*/ftrace.h
8903 F: arch/*/kernel/ftrace.c
8904 F: include/*/ftrace.h
8905 F: include/linux/trace*.h
8910 M: Jiri Kosina <trivial@kernel.org>
8911 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
8913 K: ^Subject:.*(?i)trivial
8916 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8917 M: Jiri Slaby <jslaby@suse.cz>
8919 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
8921 F: drivers/tty/serial/serial_core.c
8922 F: include/linux/serial_core.h
8923 F: include/linux/serial.h
8924 F: include/linux/tty.h
8925 F: include/uapi/linux/serial_core.h
8926 F: include/uapi/linux/serial.h
8927 F: include/uapi/linux/tty.h
8929 TUA9001 MEDIA DRIVER
8930 M: Antti Palosaari <crope@iki.fi>
8931 L: linux-media@vger.kernel.org
8932 W: http://linuxtv.org/
8933 W: http://palosaari.fi/linux/
8934 Q: http://patchwork.linuxtv.org/project/linux-media/list/
8935 T: git git://linuxtv.org/anttip/media_tree.git
8937 F: drivers/media/tuners/tua9001*
8939 TULIP NETWORK DRIVERS
8940 M: Grant Grundler <grundler@parisc-linux.org>
8941 L: netdev@vger.kernel.org
8943 F: drivers/net/ethernet/dec/tulip/
8946 M: Maxim Krasnyansky <maxk@qti.qualcomm.com>
8947 W: http://vtun.sourceforge.net/tun
8949 F: Documentation/networking/tuntap.txt
8950 F: arch/um/os-Linux/drivers/
8952 TURBOCHANNEL SUBSYSTEM
8953 M: "Maciej W. Rozycki" <macro@linux-mips.org>
8956 F: include/linux/tc.h
8959 M: Dario Ballabio <ballabio_dario@emc.com>
8960 L: linux-scsi@vger.kernel.org
8962 F: drivers/scsi/u14-34f.c
8964 UBI FILE SYSTEM (UBIFS)
8965 M: Artem Bityutskiy <dedekind1@gmail.com>
8966 M: Adrian Hunter <adrian.hunter@intel.com>
8967 L: linux-mtd@lists.infradead.org
8968 T: git git://git.infradead.org/ubifs-2.6.git
8969 W: http://www.linux-mtd.infradead.org/doc/ubifs.html
8971 F: Documentation/filesystems/ubifs.txt
8974 UCLINUX (AND M68KNOMMU)
8975 M: Greg Ungerer <gerg@uclinux.org>
8976 W: http://www.uclinux.org/
8977 L: uclinux-dev@uclinux.org (subscribers-only)
8979 F: arch/m68k/*/*_no.*
8980 F: arch/m68k/include/asm/*_no.*
8983 M: Jan Kara <jack@suse.cz>
8985 F: Documentation/filesystems/udf.txt
8989 M: Evgeniy Dushistov <dushistov@mail.ru>
8991 F: Documentation/filesystems/ufs.txt
8994 UHID USERSPACE HID IO DRIVER:
8995 M: David Herrmann <dh.herrmann@googlemail.com>
8996 L: linux-input@vger.kernel.org
8998 F: drivers/hid/uhid.c
8999 F: include/uapi/linux/uhid.h
9001 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
9002 L: linux-usb@vger.kernel.org
9005 F: include/linux/uwb.h
9006 F: include/linux/uwb/
9008 UNICORE32 ARCHITECTURE:
9009 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
9010 W: http://mprc.pku.edu.cn/~guanxuetao/linux
9012 T: git git://git.kernel.org/pub/scm/linux/kernel/git/epip/linux-2.6-unicore32.git
9016 M: Tony Finch <dot@dotat.at>
9017 W: http://dotat.at/prog/unifdef
9019 F: scripts/unifdef.c
9021 UNIFORM CDROM DRIVER
9022 M: Jens Axboe <axboe@kernel.dk>
9023 W: http://www.kernel.dk
9025 F: Documentation/cdrom/
9026 F: drivers/cdrom/cdrom.c
9027 F: include/linux/cdrom.h
9028 F: include/uapi/linux/cdrom.h
9030 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
9031 M: Vinayak Holikatti <vinholikatti@gmail.com>
9032 M: Santosh Y <santoshsy@gmail.com>
9033 L: linux-scsi@vger.kernel.org
9035 F: Documentation/scsi/ufs.txt
9036 F: drivers/scsi/ufs/
9038 UNSORTED BLOCK IMAGES (UBI)
9039 M: Artem Bityutskiy <dedekind1@gmail.com>
9040 W: http://www.linux-mtd.infradead.org/
9041 L: linux-mtd@lists.infradead.org
9042 T: git git://git.infradead.org/ubifs-2.6.git
9045 F: include/linux/mtd/ubi.h
9046 F: include/uapi/mtd/ubi-user.h
9048 UNSORTED BLOCK IMAGES (UBI) Fastmap
9049 M: Richard Weinberger <richard@nod.at>
9050 L: linux-mtd@lists.infradead.org
9052 F: drivers/mtd/ubi/fastmap.c
9055 M: Oliver Neukum <oliver@neukum.org>
9056 L: linux-usb@vger.kernel.org
9058 F: Documentation/usb/acm.txt
9059 F: drivers/usb/class/cdc-acm.*
9061 USB AR5523 WIRELESS DRIVER
9062 M: Pontus Fuchs <pontus.fuchs@gmail.com>
9063 L: linux-wireless@vger.kernel.org
9065 F: drivers/net/wireless/ath/ar5523/
9068 M: Matthew Wilcox <willy@linux.intel.com>
9069 M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
9070 M: Gerd Hoffmann <kraxel@redhat.com>
9071 L: linux-usb@vger.kernel.org
9072 L: linux-scsi@vger.kernel.org
9074 F: drivers/usb/storage/uas.c
9076 USB CDC ETHERNET DRIVER
9077 M: Oliver Neukum <oliver@neukum.org>
9078 L: linux-usb@vger.kernel.org
9080 F: drivers/net/usb/cdc_*.c
9081 F: include/uapi/linux/usb/cdc.h
9083 USB CYPRESS C67X00 DRIVER
9084 M: Peter Korsgaard <jacmet@sunsite.dk>
9085 L: linux-usb@vger.kernel.org
9087 F: drivers/usb/c67x00/
9089 USB DAVICOM DM9601 DRIVER
9090 M: Peter Korsgaard <jacmet@sunsite.dk>
9091 L: netdev@vger.kernel.org
9092 W: http://www.linux-usb.org/usbnet
9094 F: drivers/net/usb/dm9601.c
9096 USB DIAMOND RIO500 DRIVER
9097 M: Cesar Miquel <miquel@df.uba.ar>
9098 L: rio500-users@lists.sourceforge.net
9099 W: http://rio500.sourceforge.net
9101 F: drivers/usb/misc/rio500*
9104 M: Alan Stern <stern@rowland.harvard.edu>
9105 L: linux-usb@vger.kernel.org
9107 F: Documentation/usb/ehci.txt
9108 F: drivers/usb/host/ehci*
9110 USB GADGET/PERIPHERAL SUBSYSTEM
9111 M: Felipe Balbi <balbi@ti.com>
9112 L: linux-usb@vger.kernel.org
9113 W: http://www.linux-usb.org/gadget
9114 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9116 F: drivers/usb/gadget/
9117 F: include/linux/usb/gadget*
9119 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
9120 M: Jiri Kosina <jkosina@suse.cz>
9121 L: linux-usb@vger.kernel.org
9122 T: git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
9124 F: Documentation/hid/hiddev.txt
9125 F: drivers/hid/usbhid/
9128 L: linux-usb@vger.kernel.org
9130 F: drivers/staging/usbip/
9133 M: Olav Kongas <ok@artecdesign.ee>
9134 L: linux-usb@vger.kernel.org
9136 F: drivers/usb/host/isp116x*
9137 F: include/linux/usb/isp116x.h
9139 USB KAWASAKI LSI DRIVER
9140 M: Oliver Neukum <oliver@neukum.org>
9141 L: linux-usb@vger.kernel.org
9143 F: drivers/usb/serial/kl5kusb105.*
9145 USB MASS STORAGE DRIVER
9146 M: Matthew Dharm <mdharm-usb@one-eyed-alien.net>
9147 L: linux-usb@vger.kernel.org
9148 L: usb-storage@lists.one-eyed-alien.net
9150 W: http://www.one-eyed-alien.net/~mdharm/linux-usb/
9151 F: drivers/usb/storage/
9154 M: Clemens Ladisch <clemens@ladisch.de>
9155 L: alsa-devel@alsa-project.org (moderated for non-subscribers)
9156 T: git git://git.alsa-project.org/alsa-kernel.git
9160 USB NETWORKING DRIVERS
9161 L: linux-usb@vger.kernel.org
9166 M: Alan Stern <stern@rowland.harvard.edu>
9167 L: linux-usb@vger.kernel.org
9169 F: Documentation/usb/ohci.txt
9170 F: drivers/usb/host/ohci*
9172 USB OPTION-CARD DRIVER
9173 M: Matthias Urlichs <smurf@smurf.noris.de>
9174 L: linux-usb@vger.kernel.org
9176 F: drivers/usb/serial/option.c
9179 M: Petko Manolov <petkan@nucleusys.com>
9180 L: linux-usb@vger.kernel.org
9181 L: netdev@vger.kernel.org
9182 T: git git://github.com/petkan/pegasus.git
9183 W: https://github.com/petkan/pegasus
9185 F: drivers/net/usb/pegasus.*
9188 M: Felipe Balbi <balbi@ti.com>
9189 L: linux-usb@vger.kernel.org
9190 T: git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
9194 USB PRINTER DRIVER (usblp)
9195 M: Pete Zaitcev <zaitcev@redhat.com>
9196 L: linux-usb@vger.kernel.org
9198 F: drivers/usb/class/usblp.c
9201 M: Petko Manolov <petkan@nucleusys.com>
9202 L: linux-usb@vger.kernel.org
9203 L: netdev@vger.kernel.org
9204 T: git git://github.com/petkan/rtl8150.git
9205 W: https://github.com/petkan/rtl8150
9207 F: drivers/net/usb/rtl8150.c
9209 USB SERIAL SUBSYSTEM
9210 M: Johan Hovold <jhovold@gmail.com>
9211 L: linux-usb@vger.kernel.org
9213 F: Documentation/usb/usb-serial.txt
9214 F: drivers/usb/serial/
9215 F: include/linux/usb/serial.h
9217 USB SMSC75XX ETHERNET DRIVER
9218 M: Steve Glendinning <steve.glendinning@shawell.net>
9219 L: netdev@vger.kernel.org
9221 F: drivers/net/usb/smsc75xx.*
9223 USB SMSC95XX ETHERNET DRIVER
9224 M: Steve Glendinning <steve.glendinning@shawell.net>
9225 L: netdev@vger.kernel.org
9227 F: drivers/net/usb/smsc95xx.*
9230 M: Luca Risolia <luca.risolia@studio.unibo.it>
9231 L: linux-usb@vger.kernel.org
9232 L: linux-media@vger.kernel.org
9233 T: git git://linuxtv.org/media_tree.git
9234 W: http://www.linux-projects.org
9236 F: drivers/staging/media/sn9c102/
9239 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9240 L: linux-usb@vger.kernel.org
9241 W: http://www.linux-usb.org
9242 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
9244 F: Documentation/usb/
9246 F: include/linux/usb.h
9247 F: include/linux/usb/
9250 M: Alan Stern <stern@rowland.harvard.edu>
9251 L: linux-usb@vger.kernel.org
9253 F: drivers/usb/host/uhci*
9255 USB "USBNET" DRIVER FRAMEWORK
9256 M: Oliver Neukum <oneukum@suse.de>
9257 L: netdev@vger.kernel.org
9258 W: http://www.linux-usb.org/usbnet
9260 F: drivers/net/usb/usbnet.c
9261 F: include/linux/usb/usbnet.h
9264 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9265 L: linux-uvc-devel@lists.sourceforge.net (subscribers-only)
9266 L: linux-media@vger.kernel.org
9267 T: git git://linuxtv.org/media_tree.git
9268 W: http://www.ideasonboard.org/uvc/
9270 F: drivers/media/usb/uvc/
9271 F: include/uapi/linux/uvcvideo.h
9274 M: Hans Verkuil <hverkuil@xs4all.nl>
9275 L: linux-media@vger.kernel.org
9276 T: git git://linuxtv.org/media_tree.git
9277 W: http://linuxtv.org
9279 F: drivers/media/usb/usbvision/
9282 M: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9283 L: linux-usb@vger.kernel.org
9285 F: drivers/usb/gadget/*uvc*.c
9286 F: drivers/usb/gadget/webcam.c
9288 USB WIRELESS RNDIS DRIVER (rndis_wlan)
9289 M: Jussi Kivilinna <jussi.kivilinna@iki.fi>
9290 L: linux-wireless@vger.kernel.org
9292 F: drivers/net/wireless/rndis_wlan.c
9295 M: Sarah Sharp <sarah.a.sharp@linux.intel.com>
9296 L: linux-usb@vger.kernel.org
9298 F: drivers/usb/host/xhci*
9299 F: drivers/usb/host/pci-quirks*
9302 L: linux-wireless@vger.kernel.org
9303 W: http://linux-lc100020.sourceforge.net
9305 F: drivers/net/wireless/zd1201.*
9308 M: Antoine Jacquet <royale@zerezo.com>
9309 L: linux-usb@vger.kernel.org
9310 L: linux-media@vger.kernel.org
9311 T: git git://linuxtv.org/media_tree.git
9312 W: http://royale.zerezo.com/zr364xx/
9314 F: Documentation/video4linux/zr364xx.txt
9315 F: drivers/media/usb/zr364xx/
9317 USER-MODE LINUX (UML)
9318 M: Jeff Dike <jdike@addtoit.com>
9319 M: Richard Weinberger <richard@nod.at>
9320 L: user-mode-linux-devel@lists.sourceforge.net
9321 L: user-mode-linux-user@lists.sourceforge.net
9322 W: http://user-mode-linux.sourceforge.net
9324 F: Documentation/virtual/uml/
9331 M: "Hans J. Koch" <hjk@hansjkoch.de>
9332 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9334 F: Documentation/DocBook/uio-howto.tmpl
9336 F: include/linux/uio*.h
9339 M: Karel Zak <kzak@redhat.com>
9340 L: util-linux@vger.kernel.org
9341 W: http://en.wikipedia.org/wiki/Util-linux
9342 T: git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
9346 M: Michal Januszewski <spock@gentoo.org>
9347 L: linux-fbdev@vger.kernel.org
9348 W: http://dev.gentoo.org/~spock/projects/uvesafb/
9350 F: Documentation/fb/uvesafb.txt
9351 F: drivers/video/uvesafb.*
9353 VFAT/FAT/MSDOS FILESYSTEM
9354 M: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
9356 F: Documentation/filesystems/vfat.txt
9360 M: Alex Williamson <alex.williamson@redhat.com>
9361 L: kvm@vger.kernel.org
9363 F: Documentation/vfio.txt
9365 F: include/linux/vfio.h
9366 F: include/uapi/linux/vfio.h
9369 M: Pawel Osciak <pawel@osciak.com>
9370 M: Marek Szyprowski <m.szyprowski@samsung.com>
9371 M: Kyungmin Park <kyungmin.park@samsung.com>
9372 L: linux-media@vger.kernel.org
9374 F: drivers/media/v4l2-core/videobuf2-*
9375 F: include/media/videobuf2-*
9377 VIRTIO CONSOLE DRIVER
9378 M: Amit Shah <amit.shah@redhat.com>
9379 L: virtio-dev@lists.oasis-open.org
9380 L: virtualization@lists.linux-foundation.org
9382 F: drivers/char/virtio_console.c
9383 F: include/linux/virtio_console.h
9384 F: include/uapi/linux/virtio_console.h
9386 VIRTIO CORE, NET AND BLOCK DRIVERS
9387 M: Rusty Russell <rusty@rustcorp.com.au>
9388 M: "Michael S. Tsirkin" <mst@redhat.com>
9389 L: virtio-dev@lists.oasis-open.org
9390 L: virtualization@lists.linux-foundation.org
9394 F: drivers/net/virtio_net.c
9395 F: drivers/block/virtio_blk.c
9396 F: include/linux/virtio_*.h
9397 F: include/uapi/linux/virtio_*.h
9400 M: "Michael S. Tsirkin" <mst@redhat.com>
9401 L: kvm@vger.kernel.org
9402 L: virtio-dev@lists.oasis-open.org
9403 L: virtualization@lists.linux-foundation.org
9404 L: netdev@vger.kernel.org
9407 F: include/uapi/linux/vhost.h
9409 VIA RHINE NETWORK DRIVER
9410 M: Roger Luethi <rl@hellgate.ch>
9412 F: drivers/net/ethernet/via/via-rhine.c
9414 VIA SD/MMC CARD CONTROLLER DRIVER
9415 M: Bruce Chang <brucechang@via.com.tw>
9416 M: Harald Welte <HaraldWelte@viatech.com>
9418 F: drivers/mmc/host/via-sdmmc.c
9420 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
9421 M: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
9422 L: linux-fbdev@vger.kernel.org
9424 F: include/linux/via-core.h
9425 F: include/linux/via-gpio.h
9426 F: include/linux/via_i2c.h
9427 F: drivers/video/via/
9429 VIA VELOCITY NETWORK DRIVER
9430 M: Francois Romieu <romieu@fr.zoreil.com>
9431 L: netdev@vger.kernel.org
9433 F: drivers/net/ethernet/via/via-velocity.*
9435 VIVI VIRTUAL VIDEO DRIVER
9436 M: Hans Verkuil <hverkuil@xs4all.nl>
9437 L: linux-media@vger.kernel.org
9438 T: git git://linuxtv.org/media_tree.git
9439 W: http://linuxtv.org
9441 F: drivers/media/platform/vivi*
9444 M: Patrick McHardy <kaber@trash.net>
9445 L: netdev@vger.kernel.org
9447 F: drivers/net/macvlan.c
9448 F: include/linux/if_*vlan.h
9452 M: Florian Fainelli <florian@openwrt.org>
9453 L: openwrt-devel@lists.openwrt.org (subscribers-only)
9455 F: drivers/vlynq/vlynq.c
9456 F: include/linux/vlynq.h
9459 M: Martyn Welch <martyn.welch@ge.com>
9460 M: Manohar Vanga <manohar.vanga@gmail.com>
9461 M: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9462 L: devel@driverdev.osuosl.org
9464 T: git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
9465 F: Documentation/vme_api.txt
9466 F: drivers/staging/vme/
9468 F: include/linux/vme*
9470 VMWARE HYPERVISOR INTERFACE
9471 M: Alok Kataria <akataria@vmware.com>
9472 L: virtualization@lists.linux-foundation.org
9474 F: arch/x86/kernel/cpu/vmware.c
9476 VMWARE VMXNET3 ETHERNET DRIVER
9477 M: Shreyas Bhatewara <sbhatewara@vmware.com>
9478 M: "VMware, Inc." <pv-drivers@vmware.com>
9479 L: netdev@vger.kernel.org
9481 F: drivers/net/vmxnet3/
9483 VMware PVSCSI driver
9484 M: Arvind Kumar <arvindkumar@vmware.com>
9485 M: VMware PV-Drivers <pv-drivers@vmware.com>
9486 L: linux-scsi@vger.kernel.org
9488 F: drivers/scsi/vmw_pvscsi.c
9489 F: drivers/scsi/vmw_pvscsi.h
9491 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
9492 M: Liam Girdwood <lgirdwood@gmail.com>
9493 M: Mark Brown <broonie@kernel.org>
9494 W: http://opensource.wolfsonmicro.com/node/15
9495 W: http://www.slimlogic.co.uk/?p=48
9496 T: git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
9498 F: drivers/regulator/
9499 F: include/linux/regulator/
9501 VT1211 HARDWARE MONITOR DRIVER
9502 M: Juerg Haefliger <juergh@gmail.com>
9503 L: lm-sensors@lm-sensors.org
9505 F: Documentation/hwmon/vt1211
9506 F: drivers/hwmon/vt1211.c
9508 VT8231 HARDWARE MONITOR DRIVER
9509 M: Roger Lucas <vt8231@hiddenengine.co.uk>
9510 L: lm-sensors@lm-sensors.org
9512 F: drivers/hwmon/vt8231.c
9514 VUB300 USB to SDIO/SD/MMC bridge chip
9515 M: Tony Olech <tony.olech@elandigitalsystems.com>
9516 L: linux-mmc@vger.kernel.org
9517 L: linux-usb@vger.kernel.org
9519 F: drivers/mmc/host/vub300.c
9521 W1 DALLAS'S 1-WIRE BUS
9522 M: Evgeniy Polyakov <zbr@ioremap.net>
9524 F: Documentation/w1/
9527 W83791D HARDWARE MONITORING DRIVER
9528 M: Marc Hulsman <m.hulsman@tudelft.nl>
9529 L: lm-sensors@lm-sensors.org
9531 F: Documentation/hwmon/w83791d
9532 F: drivers/hwmon/w83791d.c
9534 W83793 HARDWARE MONITORING DRIVER
9535 M: Rudolf Marek <r.marek@assembler.cz>
9536 L: lm-sensors@lm-sensors.org
9538 F: Documentation/hwmon/w83793
9539 F: drivers/hwmon/w83793.c
9541 W83795 HARDWARE MONITORING DRIVER
9542 M: Jean Delvare <jdelvare@suse.de>
9543 L: lm-sensors@lm-sensors.org
9545 F: drivers/hwmon/w83795.c
9547 W83L51xD SD/MMC CARD INTERFACE DRIVER
9548 M: Pierre Ossman <pierre@ossman.eu>
9550 F: drivers/mmc/host/wbsd.*
9552 WATCHDOG DEVICE DRIVERS
9553 M: Wim Van Sebroeck <wim@iguana.be>
9554 L: linux-watchdog@vger.kernel.org
9555 W: http://www.linux-watchdog.org/
9556 T: git git://www.linux-watchdog.org/linux-watchdog.git
9558 F: Documentation/watchdog/
9559 F: drivers/watchdog/
9560 F: include/linux/watchdog.h
9561 F: include/uapi/linux/watchdog.h
9564 M: Miroslav Zagorac <zaga@fly.cc.fer.hr>
9565 L: linux-scsi@vger.kernel.org
9567 F: drivers/scsi/wd7000.c
9570 M: David Herrmann <dh.herrmann@googlemail.com>
9571 L: linux-input@vger.kernel.org
9573 F: drivers/hid/hid-wiimote*
9576 M: David Härdeman <david@hardeman.nu>
9578 F: drivers/media/rc/winbond-cir.c
9581 M: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9582 M: linux-wimax@intel.com
9583 L: wimax@linuxwimax.org
9585 W: http://linuxwimax.org
9586 F: Documentation/wimax/README.wimax
9587 F: include/linux/wimax/debug.h
9588 F: include/net/wimax.h
9589 F: include/uapi/linux/wimax.h
9592 WISTRON LAPTOP BUTTON DRIVER
9593 M: Miloslav Trmac <mitr@volny.cz>
9595 F: drivers/input/misc/wistron_btns.c
9597 WL3501 WIRELESS PCMCIA CARD DRIVER
9598 M: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
9599 L: linux-wireless@vger.kernel.org
9600 W: http://oops.ghostprotocols.net:81/blog
9602 F: drivers/net/wireless/wl3501*
9604 WM97XX TOUCHSCREEN DRIVERS
9605 M: Mark Brown <broonie@kernel.org>
9606 M: Liam Girdwood <lrg@slimlogic.co.uk>
9607 L: linux-input@vger.kernel.org
9608 T: git git://opensource.wolfsonmicro.com/linux-2.6-touch
9609 W: http://opensource.wolfsonmicro.com/node/7
9611 F: drivers/input/touchscreen/*wm97*
9612 F: include/linux/wm97xx.h
9614 WOLFSON MICROELECTRONICS DRIVERS
9615 L: patches@opensource.wolfsonmicro.com
9616 T: git git://opensource.wolfsonmicro.com/linux-2.6-asoc
9617 T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
9618 W: http://opensource.wolfsonmicro.com/content/linux-drivers-wolfson-devices
9620 F: Documentation/hwmon/wm83??
9621 F: arch/arm/mach-s3c64xx/mach-crag6410*
9622 F: drivers/clk/clk-wm83*.c
9623 F: drivers/extcon/extcon-arizona.c
9624 F: drivers/leds/leds-wm83*.c
9625 F: drivers/gpio/gpio-*wm*.c
9626 F: drivers/gpio/gpio-arizona.c
9627 F: drivers/hwmon/wm83??-hwmon.c
9628 F: drivers/input/misc/wm831x-on.c
9629 F: drivers/input/touchscreen/wm831x-ts.c
9630 F: drivers/input/touchscreen/wm97*.c
9631 F: drivers/mfd/arizona*
9632 F: drivers/mfd/wm*.c
9633 F: drivers/power/wm83*.c
9634 F: drivers/rtc/rtc-wm83*.c
9635 F: drivers/regulator/wm8*.c
9636 F: drivers/video/backlight/wm83*_bl.c
9637 F: drivers/watchdog/wm83*_wdt.c
9638 F: include/linux/mfd/arizona/
9639 F: include/linux/mfd/wm831x/
9640 F: include/linux/mfd/wm8350/
9641 F: include/linux/mfd/wm8400*
9642 F: include/linux/wm97xx.h
9643 F: include/sound/wm????.h
9644 F: sound/soc/codecs/arizona.?
9645 F: sound/soc/codecs/wm*
9648 M: Tejun Heo <tj@kernel.org>
9649 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
9651 F: include/linux/workqueue.h
9652 F: kernel/workqueue.c
9653 F: Documentation/workqueue.txt
9656 M: Andrew Hendry <andrew.hendry@gmail.com>
9657 L: linux-x25@vger.kernel.org
9659 F: Documentation/networking/x25*
9663 X86 ARCHITECTURE (32-BIT AND 64-BIT)
9664 M: Thomas Gleixner <tglx@linutronix.de>
9665 M: Ingo Molnar <mingo@redhat.com>
9666 M: "H. Peter Anvin" <hpa@zytor.com>
9668 L: linux-kernel@vger.kernel.org
9669 T: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
9671 F: Documentation/x86/
9674 X86 PLATFORM DRIVERS
9675 M: Matthew Garrett <matthew.garrett@nebula.com>
9676 L: platform-driver-x86@vger.kernel.org
9677 T: git git://git.kernel.org/pub/scm/linux/kernel/git/mjg59/platform-drivers-x86.git
9679 F: drivers/platform/x86/
9681 X86 MCE INFRASTRUCTURE
9682 M: Tony Luck <tony.luck@intel.com>
9683 M: Borislav Petkov <bp@alien8.de>
9684 L: linux-edac@vger.kernel.org
9686 F: arch/x86/kernel/cpu/mcheck/*
9688 XC2028/3028 TUNER DRIVER
9689 M: Mauro Carvalho Chehab <m.chehab@samsung.com>
9690 L: linux-media@vger.kernel.org
9691 W: http://linuxtv.org
9692 T: git git://linuxtv.org/media_tree.git
9694 F: drivers/media/tuners/tuner-xc2028.*
9696 XEN HYPERVISOR INTERFACE
9697 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9698 M: Boris Ostrovsky <boris.ostrovsky@oracle.com>
9699 M: David Vrabel <david.vrabel@citrix.com>
9700 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9701 T: git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
9704 F: drivers/*/xen-*front.c
9706 F: arch/x86/include/asm/xen/
9708 F: include/uapi/xen/
9711 M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9712 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9715 F: arch/arm/include/asm/xen/
9717 XEN HYPERVISOR ARM64
9718 M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
9719 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9722 F: arch/arm64/include/asm/xen/
9724 XEN NETWORK BACKEND DRIVER
9725 M: Ian Campbell <ian.campbell@citrix.com>
9726 M: Wei Liu <wei.liu2@citrix.com>
9727 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9728 L: netdev@vger.kernel.org
9730 F: drivers/net/xen-netback/*
9733 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9734 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9736 F: arch/x86/pci/*xen*
9737 F: drivers/pci/*xen*
9739 XEN SWIOTLB SUBSYSTEM
9740 M: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
9741 L: xen-devel@lists.xenproject.org (moderated for non-subscribers)
9743 F: arch/x86/xen/*swiotlb*
9744 F: drivers/xen/*swiotlb*
9747 P: Silicon Graphics Inc
9748 M: Dave Chinner <david@fromorbit.com>
9751 W: http://oss.sgi.com/projects/xfs
9752 T: git git://oss.sgi.com/xfs/xfs.git
9754 F: Documentation/filesystems/xfs.txt
9757 XILINX AXI ETHERNET DRIVER
9758 M: Anirudha Sarangi <anirudh@xilinx.com>
9759 M: John Linn <John.Linn@xilinx.com>
9761 F: drivers/net/ethernet/xilinx/xilinx_axienet*
9763 XILINX SYSTEMACE DRIVER
9765 F: drivers/block/xsysace.c
9767 XILINX UARTLITE SERIAL DRIVER
9768 M: Peter Korsgaard <jacmet@sunsite.dk>
9769 L: linux-serial@vger.kernel.org
9771 F: drivers/tty/serial/uartlite.c
9773 YAM DRIVER FOR AX.25
9774 M: Jean-Paul Roubelat <jpr@f6fbb.org>
9775 L: linux-hams@vger.kernel.org
9777 F: drivers/net/hamradio/yam*
9778 F: include/linux/yam.h
9780 YEALINK PHONE DRIVER
9781 M: Henk Vergonet <Henk.Vergonet@gmail.com>
9782 L: usbb2k-api-dev@nongnu.org
9784 F: Documentation/input/yealink.txt
9785 F: drivers/input/misc/yealink.*
9787 Z8530 DRIVER FOR AX.25
9788 M: Joerg Reuter <jreuter@yaina.de>
9789 W: http://yaina.de/jreuter/
9790 W: http://www.qsl.net/dl1bke/
9791 L: linux-hams@vger.kernel.org
9793 F: Documentation/networking/z8530drv.txt
9794 F: drivers/net/hamradio/*scc.c
9795 F: drivers/net/hamradio/z8530.h
9797 ZBUD COMPRESSED PAGE ALLOCATOR
9798 M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9799 L: linux-mm@kvack.org
9802 F: include/linux/zbud.h
9804 ZD1211RW WIRELESS DRIVER
9805 M: Daniel Drake <dsd@gentoo.org>
9806 M: Ulrich Kunitz <kune@deine-taler.de>
9807 W: http://zd1211.ath.cx/wiki/DriverRewrite
9808 L: linux-wireless@vger.kernel.org
9809 L: zd1211-devs@lists.sourceforge.net (subscribers-only)
9811 F: drivers/net/wireless/zd1211rw/
9813 ZR36067 VIDEO FOR LINUX DRIVER
9814 L: mjpeg-users@lists.sourceforge.net
9815 L: linux-media@vger.kernel.org
9816 W: http://mjpeg.sourceforge.net/driver-zoran/
9817 T: Mercurial http://linuxtv.org/hg/v4l-dvb
9819 F: drivers/media/pci/zoran/
9821 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
9822 M: Minchan Kim <minchan@kernel.org>
9823 M: Nitin Gupta <ngupta@vflare.org>
9824 L: linux-kernel@vger.kernel.org
9826 F: drivers/block/zram/
9827 F: Documentation/blockdev/zram.txt
9829 ZS DECSTATION Z85C30 SERIAL DRIVER
9830 M: "Maciej W. Rozycki" <macro@linux-mips.org>
9832 F: drivers/tty/serial/zs.*
9834 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
9835 M: Minchan Kim <minchan@kernel.org>
9836 M: Nitin Gupta <ngupta@vflare.org>
9837 L: linux-mm@kvack.org
9840 F: include/linux/zsmalloc.h
9842 ZSWAP COMPRESSED SWAP CACHING
9843 M: Seth Jennings <sjenning@linux.vnet.ibm.com>
9844 L: linux-mm@kvack.org
9849 M: Linus Torvalds <torvalds@linux-foundation.org>
9850 L: linux-kernel@vger.kernel.org
9851 Q: http://patchwork.kernel.org/project/LKML/list/
9852 T: git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
9853 S: Buried alive in reporters