Merge tag 'pwm/for-4.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thierry...
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
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.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
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.)
19
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.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
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.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
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
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      https://linuxtv.org
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      Documentation/ABI/
227 F:      include/linux/syscalls.h
228 F:      include/uapi/
229 F:      kernel/sys_ni.c
230
231 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
232 M:      Hans de Goede <hdegoede@redhat.com>
233 L:      lm-sensors@lm-sensors.org
234 S:      Maintained
235 F:      drivers/hwmon/abituguru.c
236
237 ABIT UGURU 3 HARDWARE MONITOR DRIVER
238 M:      Alistair John Strachan <alistair@devzero.co.uk>
239 L:      lm-sensors@lm-sensors.org
240 S:      Maintained
241 F:      drivers/hwmon/abituguru3.c
242
243 ACCES 104-IDI-48 GPIO DRIVER
244 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
245 L:      linux-gpio@vger.kernel.org
246 S:      Maintained
247 F:      drivers/gpio/gpio-104-idi-48.c
248
249 ACCES 104-IDIO-16 GPIO DRIVER
250 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
251 L:      linux-gpio@vger.kernel.org
252 S:      Maintained
253 F:      drivers/gpio/gpio-104-idio-16.c
254
255 ACENIC DRIVER
256 M:      Jes Sorensen <jes@trained-monkey.org>
257 L:      linux-acenic@sunsite.dk
258 S:      Maintained
259 F:      drivers/net/ethernet/alteon/acenic*
260
261 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
262 M:      Peter Feuerer <peter@piie.net>
263 L:      platform-driver-x86@vger.kernel.org
264 W:      http://piie.net/?section=acerhdf
265 S:      Maintained
266 F:      drivers/platform/x86/acerhdf.c
267
268 ACER WMI LAPTOP EXTRAS
269 M:      "Lee, Chun-Yi" <jlee@suse.com>
270 L:      platform-driver-x86@vger.kernel.org
271 S:      Maintained
272 F:      drivers/platform/x86/acer-wmi.c
273
274 ACPI
275 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
276 M:      Len Brown <lenb@kernel.org>
277 L:      linux-acpi@vger.kernel.org
278 W:      https://01.org/linux-acpi
279 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
281 S:      Supported
282 F:      drivers/acpi/
283 F:      drivers/pnp/pnpacpi/
284 F:      include/linux/acpi.h
285 F:      include/acpi/
286 F:      Documentation/acpi/
287 F:      Documentation/ABI/testing/sysfs-bus-acpi
288 F:      drivers/pci/*acpi*
289 F:      drivers/pci/*/*acpi*
290 F:      drivers/pci/*/*/*acpi*
291 F:      tools/power/acpi/
292
293 ACPI COMPONENT ARCHITECTURE (ACPICA)
294 M:      Robert Moore <robert.moore@intel.com>
295 M:      Lv Zheng <lv.zheng@intel.com>
296 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
297 L:      linux-acpi@vger.kernel.org
298 L:      devel@acpica.org
299 W:      https://acpica.org/
300 W:      https://github.com/acpica/acpica/
301 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
303 S:      Supported
304 F:      drivers/acpi/acpica/
305 F:      include/acpi/
306 F:      tools/power/acpi/
307
308 ACPI FAN DRIVER
309 M:      Zhang Rui <rui.zhang@intel.com>
310 L:      linux-acpi@vger.kernel.org
311 W:      https://01.org/linux-acpi
312 S:      Supported
313 F:      drivers/acpi/fan.c
314
315 ACPI THERMAL DRIVER
316 M:      Zhang Rui <rui.zhang@intel.com>
317 L:      linux-acpi@vger.kernel.org
318 W:      https://01.org/linux-acpi
319 S:      Supported
320 F:      drivers/acpi/*thermal*
321
322 ACPI VIDEO DRIVER
323 M:      Zhang Rui <rui.zhang@intel.com>
324 L:      linux-acpi@vger.kernel.org
325 W:      https://01.org/linux-acpi
326 S:      Supported
327 F:      drivers/acpi/acpi_video.c
328
329 ACPI WMI DRIVER
330 L:      platform-driver-x86@vger.kernel.org
331 S:      Orphan
332 F:      drivers/platform/x86/wmi.c
333
334 AD1889 ALSA SOUND DRIVER
335 M:      Thibaut Varene <T-Bone@parisc-linux.org>
336 W:      http://wiki.parisc-linux.org/AD1889
337 L:      linux-parisc@vger.kernel.org
338 S:      Maintained
339 F:      sound/pci/ad1889.*
340
341 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
342 M:      Michael Hennerich <michael.hennerich@analog.com>
343 W:      http://wiki.analog.com/AD5254
344 W:      http://ez.analog.com/community/linux-device-drivers
345 S:      Supported
346 F:      drivers/misc/ad525x_dpot.c
347
348 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
349 M:      Michael Hennerich <michael.hennerich@analog.com>
350 W:      http://wiki.analog.com/AD5398
351 W:      http://ez.analog.com/community/linux-device-drivers
352 S:      Supported
353 F:      drivers/regulator/ad5398.c
354
355 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
356 M:      Michael Hennerich <michael.hennerich@analog.com>
357 W:      http://wiki.analog.com/AD7142
358 W:      http://ez.analog.com/community/linux-device-drivers
359 S:      Supported
360 F:      drivers/input/misc/ad714x.c
361
362 AD7877 TOUCHSCREEN DRIVER
363 M:      Michael Hennerich <michael.hennerich@analog.com>
364 W:      http://wiki.analog.com/AD7877
365 W:      http://ez.analog.com/community/linux-device-drivers
366 S:      Supported
367 F:      drivers/input/touchscreen/ad7877.c
368
369 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
370 M:      Michael Hennerich <michael.hennerich@analog.com>
371 W:      http://wiki.analog.com/AD7879
372 W:      http://ez.analog.com/community/linux-device-drivers
373 S:      Supported
374 F:      drivers/input/touchscreen/ad7879.c
375
376 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
377 M:      Jiri Kosina <jikos@kernel.org>
378 S:      Maintained
379
380 ADF7242 IEEE 802.15.4 RADIO DRIVER
381 M:      Michael Hennerich <michael.hennerich@analog.com>
382 W:      https://wiki.analog.com/ADF7242
383 W:      http://ez.analog.com/community/linux-device-drivers
384 L:      linux-wpan@vger.kernel.org
385 S:      Supported
386 F:      drivers/net/ieee802154/adf7242.c
387 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
388
389 ADM1025 HARDWARE MONITOR DRIVER
390 M:      Jean Delvare <jdelvare@suse.com>
391 L:      lm-sensors@lm-sensors.org
392 S:      Maintained
393 F:      Documentation/hwmon/adm1025
394 F:      drivers/hwmon/adm1025.c
395
396 ADM1029 HARDWARE MONITOR DRIVER
397 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
398 L:      lm-sensors@lm-sensors.org
399 S:      Maintained
400 F:      drivers/hwmon/adm1029.c
401
402 ADM8211 WIRELESS DRIVER
403 L:      linux-wireless@vger.kernel.org
404 W:      http://wireless.kernel.org/
405 S:      Orphan
406 F:      drivers/net/wireless/admtek/adm8211.*
407
408 ADP1653 FLASH CONTROLLER DRIVER
409 M:      Sakari Ailus <sakari.ailus@iki.fi>
410 L:      linux-media@vger.kernel.org
411 S:      Maintained
412 F:      drivers/media/i2c/adp1653.c
413 F:      include/media/i2c/adp1653.h
414
415 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
416 M:      Michael Hennerich <michael.hennerich@analog.com>
417 W:      http://wiki.analog.com/ADP5520
418 W:      http://ez.analog.com/community/linux-device-drivers
419 S:      Supported
420 F:      drivers/mfd/adp5520.c
421 F:      drivers/video/backlight/adp5520_bl.c
422 F:      drivers/leds/leds-adp5520.c
423 F:      drivers/gpio/gpio-adp5520.c
424 F:      drivers/input/keyboard/adp5520-keys.c
425
426 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
427 M:      Michael Hennerich <michael.hennerich@analog.com>
428 W:      http://wiki.analog.com/ADP5588
429 W:      http://ez.analog.com/community/linux-device-drivers
430 S:      Supported
431 F:      drivers/input/keyboard/adp5588-keys.c
432 F:      drivers/gpio/gpio-adp5588.c
433
434 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
435 M:      Michael Hennerich <michael.hennerich@analog.com>
436 W:      http://wiki.analog.com/ADP8860
437 W:      http://ez.analog.com/community/linux-device-drivers
438 S:      Supported
439 F:      drivers/video/backlight/adp8860_bl.c
440
441 ADS1015 HARDWARE MONITOR DRIVER
442 M:      Dirk Eibach <eibach@gdsys.de>
443 L:      lm-sensors@lm-sensors.org
444 S:      Maintained
445 F:      Documentation/hwmon/ads1015
446 F:      drivers/hwmon/ads1015.c
447 F:      include/linux/i2c/ads1015.h
448
449 ADT746X FAN DRIVER
450 M:      Colin Leroy <colin@colino.net>
451 S:      Maintained
452 F:      drivers/macintosh/therm_adt746x.c
453
454 ADT7475 HARDWARE MONITOR DRIVER
455 M:      Jean Delvare <jdelvare@suse.com>
456 L:      lm-sensors@lm-sensors.org
457 S:      Maintained
458 F:      Documentation/hwmon/adt7475
459 F:      drivers/hwmon/adt7475.c
460
461 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 W:      http://wiki.analog.com/ADXL345
464 W:      http://ez.analog.com/community/linux-device-drivers
465 S:      Supported
466 F:      drivers/input/misc/adxl34x.c
467
468 ADVANSYS SCSI DRIVER
469 M:      Matthew Wilcox <matthew@wil.cx>
470 M:      Hannes Reinecke <hare@suse.com>
471 L:      linux-scsi@vger.kernel.org
472 S:      Maintained
473 F:      Documentation/scsi/advansys.txt
474 F:      drivers/scsi/advansys.c
475
476 AEDSP16 DRIVER
477 M:      Riccardo Facchetti <fizban@tin.it>
478 S:      Maintained
479 F:      sound/oss/aedsp16.c
480
481 AF9013 MEDIA DRIVER
482 M:      Antti Palosaari <crope@iki.fi>
483 L:      linux-media@vger.kernel.org
484 W:      https://linuxtv.org
485 W:      http://palosaari.fi/linux/
486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
487 T:      git git://linuxtv.org/anttip/media_tree.git
488 S:      Maintained
489 F:      drivers/media/dvb-frontends/af9013*
490
491 AF9033 MEDIA DRIVER
492 M:      Antti Palosaari <crope@iki.fi>
493 L:      linux-media@vger.kernel.org
494 W:      https://linuxtv.org
495 W:      http://palosaari.fi/linux/
496 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
497 T:      git git://linuxtv.org/anttip/media_tree.git
498 S:      Maintained
499 F:      drivers/media/dvb-frontends/af9033*
500
501 AFFS FILE SYSTEM
502 L:      linux-fsdevel@vger.kernel.org
503 S:      Orphan
504 F:      Documentation/filesystems/affs.txt
505 F:      fs/affs/
506
507 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
508 M:      David Howells <dhowells@redhat.com>
509 L:      linux-afs@lists.infradead.org
510 S:      Supported
511 F:      fs/afs/
512 F:      include/net/af_rxrpc.h
513 F:      net/rxrpc/af_rxrpc.c
514
515 AGPGART DRIVER
516 M:      David Airlie <airlied@linux.ie>
517 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
518 S:      Maintained
519 F:      drivers/char/agp/
520 F:      include/linux/agp*
521 F:      include/uapi/linux/agp*
522
523 AHA152X SCSI DRIVER
524 M:      "Juergen E. Fischer" <fischer@norbit.de>
525 L:      linux-scsi@vger.kernel.org
526 S:      Maintained
527 F:      drivers/scsi/aha152x*
528 F:      drivers/scsi/pcmcia/aha152x*
529
530 AIC7XXX / AIC79XX SCSI DRIVER
531 M:      Hannes Reinecke <hare@suse.com>
532 L:      linux-scsi@vger.kernel.org
533 S:      Maintained
534 F:      drivers/scsi/aic7xxx/
535
536 AIMSLAB FM RADIO RECEIVER DRIVER
537 M:      Hans Verkuil <hverkuil@xs4all.nl>
538 L:      linux-media@vger.kernel.org
539 T:      git git://linuxtv.org/media_tree.git
540 W:      https://linuxtv.org
541 S:      Maintained
542 F:      drivers/media/radio/radio-aimslab*
543
544 AIO
545 M:      Benjamin LaHaise <bcrl@kvack.org>
546 L:      linux-aio@kvack.org
547 S:      Supported
548 F:      fs/aio.c
549 F:      include/linux/*aio*.h
550
551 AIRSPY MEDIA DRIVER
552 M:      Antti Palosaari <crope@iki.fi>
553 L:      linux-media@vger.kernel.org
554 W:      https://linuxtv.org
555 W:      http://palosaari.fi/linux/
556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
557 T:      git git://linuxtv.org/anttip/media_tree.git
558 S:      Maintained
559 F:      drivers/media/usb/airspy/
560
561 ALCATEL SPEEDTOUCH USB DRIVER
562 M:      Duncan Sands <duncan.sands@free.fr>
563 L:      linux-usb@vger.kernel.org
564 W:      http://www.linux-usb.org/SpeedTouch/
565 S:      Maintained
566 F:      drivers/usb/atm/speedtch.c
567 F:      drivers/usb/atm/usbatm.c
568
569 ALCHEMY AU1XX0 MMC DRIVER
570 M:      Manuel Lauss <manuel.lauss@gmail.com>
571 S:      Maintained
572 F:      drivers/mmc/host/au1xmmc.c
573
574 ALI1563 I2C DRIVER
575 M:      Rudolf Marek <r.marek@assembler.cz>
576 L:      linux-i2c@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/i2c/busses/i2c-ali1563
579 F:      drivers/i2c/busses/i2c-ali1563.c
580
581 ALLWINNER SECURITY SYSTEM
582 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
583 L:      linux-crypto@vger.kernel.org
584 S:      Maintained
585 F:      drivers/crypto/sunxi-ss/
586
587 ALPHA PORT
588 M:      Richard Henderson <rth@twiddle.net>
589 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
590 M:      Matt Turner <mattst88@gmail.com>
591 S:      Odd Fixes
592 L:      linux-alpha@vger.kernel.org
593 F:      arch/alpha/
594
595 ALTERA MAILBOX DRIVER
596 M:      Ley Foon Tan <lftan@altera.com>
597 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
598 S:      Maintained
599 F:      drivers/mailbox/mailbox-altera.c
600
601 ALTERA PIO DRIVER
602 M:      Tien Hock Loh <thloh@altera.com>
603 L:      linux-gpio@vger.kernel.org
604 S:      Maintained
605 F:      drivers/gpio/gpio-altera.c
606
607 ALTERA TRIPLE SPEED ETHERNET DRIVER
608 M:      Vince Bridgers <vbridger@opensource.altera.com>
609 L:      netdev@vger.kernel.org
610 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
611 S:      Maintained
612 F:      drivers/net/ethernet/altera/
613
614 ALTERA UART/JTAG UART SERIAL DRIVERS
615 M:      Tobias Klauser <tklauser@distanz.ch>
616 L:      linux-serial@vger.kernel.org
617 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
618 S:      Maintained
619 F:      drivers/tty/serial/altera_uart.c
620 F:      drivers/tty/serial/altera_jtaguart.c
621 F:      include/linux/altera_uart.h
622 F:      include/linux/altera_jtaguart.h
623
624 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
625 M:      Tom Lendacky <thomas.lendacky@amd.com>
626 L:      linux-crypto@vger.kernel.org
627 S:      Supported
628 F:      drivers/crypto/ccp/
629 F:      include/linux/ccp.h
630
631 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
632 M:      Huang Rui <ray.huang@amd.com>
633 L:      lm-sensors@lm-sensors.org
634 S:      Supported
635 F:      Documentation/hwmon/fam15h_power
636 F:      drivers/hwmon/fam15h_power.c
637
638 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
639 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
640 S:      Orphan
641 F:      drivers/usb/gadget/udc/amd5536udc.*
642
643 AMD GEODE PROCESSOR/CHIPSET SUPPORT
644 P:      Andres Salomon <dilinger@queued.net>
645 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
646 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
647 S:      Supported
648 F:      drivers/char/hw_random/geode-rng.c
649 F:      drivers/crypto/geode*
650 F:      drivers/video/fbdev/geode/
651 F:      arch/x86/include/asm/geode.h
652
653 AMD IOMMU (AMD-VI)
654 M:      Joerg Roedel <joro@8bytes.org>
655 L:      iommu@lists.linux-foundation.org
656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
657 S:      Maintained
658 F:      drivers/iommu/amd_iommu*.[ch]
659 F:      include/linux/amd-iommu.h
660
661 AMD KFD
662 M:      Oded Gabbay <oded.gabbay@gmail.com>
663 L:      dri-devel@lists.freedesktop.org
664 T:      git git://people.freedesktop.org/~gabbayo/linux.git
665 S:      Supported
666 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
667 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
668 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
669 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
670 F:      drivers/gpu/drm/amd/amdkfd/
671 F:      drivers/gpu/drm/amd/include/cik_structs.h
672 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
673 F:      drivers/gpu/drm/amd/include/vi_structs.h
674 F:      drivers/gpu/drm/radeon/radeon_kfd.c
675 F:      drivers/gpu/drm/radeon/radeon_kfd.h
676 F:      include/uapi/linux/kfd_ioctl.h
677
678 AMD XGBE DRIVER
679 M:      Tom Lendacky <thomas.lendacky@amd.com>
680 L:      netdev@vger.kernel.org
681 S:      Supported
682 F:      drivers/net/ethernet/amd/xgbe/
683
684 AMS (Apple Motion Sensor) DRIVER
685 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
686 S:      Supported
687 F:      drivers/macintosh/ams/
688
689 AMSO1100 RNIC DRIVER
690 M:      Tom Tucker <tom@opengridcomputing.com>
691 M:      Steve Wise <swise@opengridcomputing.com>
692 L:      linux-rdma@vger.kernel.org
693 S:      Maintained
694 F:      drivers/infiniband/hw/amso1100/
695
696 ANALOG DEVICES INC AD9389B DRIVER
697 M:      Hans Verkuil <hans.verkuil@cisco.com>
698 L:      linux-media@vger.kernel.org
699 S:      Maintained
700 F:      drivers/media/i2c/ad9389b*
701
702 ANALOG DEVICES INC ADV7180 DRIVER
703 M:      Lars-Peter Clausen <lars@metafoo.de>
704 L:      linux-media@vger.kernel.org
705 W:      http://ez.analog.com/community/linux-device-drivers
706 S:      Supported
707 F:      drivers/media/i2c/adv7180.c
708
709 ANALOG DEVICES INC ADV7511 DRIVER
710 M:      Hans Verkuil <hans.verkuil@cisco.com>
711 L:      linux-media@vger.kernel.org
712 S:      Maintained
713 F:      drivers/media/i2c/adv7511*
714
715 ANALOG DEVICES INC ADV7604 DRIVER
716 M:      Hans Verkuil <hans.verkuil@cisco.com>
717 L:      linux-media@vger.kernel.org
718 S:      Maintained
719 F:      drivers/media/i2c/adv7604*
720
721 ANALOG DEVICES INC ADV7842 DRIVER
722 M:      Hans Verkuil <hans.verkuil@cisco.com>
723 L:      linux-media@vger.kernel.org
724 S:      Maintained
725 F:      drivers/media/i2c/adv7842*
726
727 ANALOG DEVICES INC ASOC CODEC DRIVERS
728 M:      Lars-Peter Clausen <lars@metafoo.de>
729 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
730 W:      http://wiki.analog.com/
731 W:      http://ez.analog.com/community/linux-device-drivers
732 S:      Supported
733 F:      sound/soc/codecs/adau*
734 F:      sound/soc/codecs/adav*
735 F:      sound/soc/codecs/ad1*
736 F:      sound/soc/codecs/ad7*
737 F:      sound/soc/codecs/ssm*
738 F:      sound/soc/codecs/sigmadsp.*
739
740 ANALOG DEVICES INC ASOC DRIVERS
741 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
742 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
743 W:      http://blackfin.uclinux.org/
744 S:      Supported
745 F:      sound/soc/blackfin/*
746
747 ANALOG DEVICES INC IIO DRIVERS
748 M:      Lars-Peter Clausen <lars@metafoo.de>
749 M:      Michael Hennerich <Michael.Hennerich@analog.com>
750 W:      http://wiki.analog.com/
751 W:      http://ez.analog.com/community/linux-device-drivers
752 S:      Supported
753 F:      drivers/iio/*/ad*
754 X:      drivers/iio/*/adjd*
755 F:      drivers/staging/iio/*/ad*
756 F:      staging/iio/trigger/iio-trig-bfin-timer.c
757
758 ANALOG DEVICES INC DMA DRIVERS
759 M:      Lars-Peter Clausen <lars@metafoo.de>
760 W:      http://ez.analog.com/community/linux-device-drivers
761 S:      Supported
762 F:      drivers/dma/dma-axi-dmac.c
763
764 ANDROID DRIVERS
765 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
766 M:      Arve HjønnevĂ¥g <arve@android.com>
767 M:      Riley Andrews <riandrews@android.com>
768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
769 L:      devel@driverdev.osuosl.org
770 S:      Supported
771 F:      drivers/android/
772 F:      drivers/staging/android/
773
774 AOA (Apple Onboard Audio) ALSA DRIVER
775 M:      Johannes Berg <johannes@sipsolutions.net>
776 L:      linuxppc-dev@lists.ozlabs.org
777 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
778 S:      Maintained
779 F:      sound/aoa/
780
781 APM DRIVER
782 M:      Jiri Kosina <jikos@kernel.org>
783 S:      Odd fixes
784 F:      arch/x86/kernel/apm_32.c
785 F:      include/linux/apm_bios.h
786 F:      include/uapi/linux/apm_bios.h
787 F:      drivers/char/apm-emulation.c
788
789 APPLE BCM5974 MULTITOUCH DRIVER
790 M:      Henrik Rydberg <rydberg@bitmath.org>
791 L:      linux-input@vger.kernel.org
792 S:      Odd fixes
793 F:      drivers/input/mouse/bcm5974.c
794
795 APPLE SMC DRIVER
796 M:      Henrik Rydberg <rydberg@bitmath.org>
797 L:      lm-sensors@lm-sensors.org
798 S:      Odd fixes
799 F:      drivers/hwmon/applesmc.c
800
801 APPLETALK NETWORK LAYER
802 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
803 S:      Maintained
804 F:      drivers/net/appletalk/
805 F:      net/appletalk/
806
807 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
808 M:      Duc Dang <dhdang@apm.com>
809 S:      Supported
810 F:      arch/arm64/boot/dts/apm/
811
812 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
813 M:      Iyappan Subramanian <isubramanian@apm.com>
814 M:      Keyur Chudgar <kchudgar@apm.com>
815 S:      Supported
816 F:      drivers/net/ethernet/apm/xgene/
817 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
818
819 APTINA CAMERA SENSOR PLL
820 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
821 L:      linux-media@vger.kernel.org
822 S:      Maintained
823 F:      drivers/media/i2c/aptina-pll.*
824
825 ARC FRAMEBUFFER DRIVER
826 M:      Jaya Kumar <jayalk@intworks.biz>
827 S:      Maintained
828 F:      drivers/video/fbdev/arcfb.c
829 F:      drivers/video/fbdev/core/fb_defio.c
830
831 ARCNET NETWORK LAYER
832 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
833 L:      netdev@vger.kernel.org
834 S:      Maintained
835 F:      drivers/net/arcnet/
836 F:      include/uapi/linux/if_arcnet.h
837
838 ARM MFM AND FLOPPY DRIVERS
839 M:      Ian Molton <spyro@f2s.com>
840 S:      Maintained
841 F:      arch/arm/lib/floppydma.S
842 F:      arch/arm/include/asm/floppy.h
843
844 ARM PMU PROFILING AND DEBUGGING
845 M:      Will Deacon <will.deacon@arm.com>
846 R:      Mark Rutland <mark.rutland@arm.com>
847 S:      Maintained
848 F:      arch/arm*/kernel/perf_*
849 F:      arch/arm/oprofile/common.c
850 F:      arch/arm*/kernel/hw_breakpoint.c
851 F:      arch/arm*/include/asm/hw_breakpoint.h
852 F:      arch/arm*/include/asm/perf_event.h
853 F:      drivers/perf/arm_pmu.c
854 F:      include/linux/perf/arm_pmu.h
855
856 ARM PORT
857 M:      Russell King <linux@arm.linux.org.uk>
858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
859 W:      http://www.arm.linux.org.uk/
860 S:      Maintained
861 F:      arch/arm/
862
863 ARM SUB-ARCHITECTURES
864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
865 S:      Maintained
866 F:      arch/arm/mach-*/
867 F:      arch/arm/plat-*/
868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
869
870 ARM PRIMECELL AACI PL041 DRIVER
871 M:      Russell King <linux@arm.linux.org.uk>
872 S:      Maintained
873 F:      sound/arm/aaci.*
874
875 ARM PRIMECELL CLCD PL110 DRIVER
876 M:      Russell King <linux@arm.linux.org.uk>
877 S:      Maintained
878 F:      drivers/video/fbdev/amba-clcd.*
879
880 ARM PRIMECELL KMI PL050 DRIVER
881 M:      Russell King <linux@arm.linux.org.uk>
882 S:      Maintained
883 F:      drivers/input/serio/ambakmi.*
884 F:      include/linux/amba/kmi.h
885
886 ARM PRIMECELL MMCI PL180/1 DRIVER
887 M:      Russell King <linux@arm.linux.org.uk>
888 S:      Maintained
889 F:      drivers/mmc/host/mmci.*
890 F:      include/linux/amba/mmci.h
891
892 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
893 M:      Russell King <linux@arm.linux.org.uk>
894 S:      Maintained
895 F:      drivers/tty/serial/amba-pl01*.c
896 F:      include/linux/amba/serial.h
897
898 ARM PRIMECELL BUS SUPPORT
899 M:      Russell King <linux@arm.linux.org.uk>
900 S:      Maintained
901 F:      drivers/amba/
902 F:      include/linux/amba/bus.h
903
904 ARM/ADS SPHERE MACHINE SUPPORT
905 M:      Lennert Buytenhek <kernel@wantstofly.org>
906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
907 S:      Maintained
908
909 ARM/AFEB9260 MACHINE SUPPORT
910 M:      Sergey Lapin <slapin@ossfans.org>
911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
912 S:      Maintained
913
914 ARM/AJECO 1ARM MACHINE SUPPORT
915 M:      Lennert Buytenhek <kernel@wantstofly.org>
916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
917 S:      Maintained
918
919 ARM/Allwinner sunXi SoC support
920 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
921 M:      Chen-Yu Tsai <wens@csie.org>
922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
923 S:      Maintained
924 N:      sun[x456789]i
925
926 ARM/Allwinner SoC Clock Support
927 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
928 S:      Maintained
929 F:      drivers/clk/sunxi/
930
931 ARM/Amlogic MesonX SoC support
932 M:      Carlo Caione <carlo@caione.org>
933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 S:      Maintained
935 F:      drivers/media/rc/meson-ir.c
936 N:      meson[x68]
937
938 ARM/Annapurna Labs ALPINE ARCHITECTURE
939 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
940 S:      Maintained
941 F:      arch/arm/mach-alpine/
942
943 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
944 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
945 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
946 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
948 W:      http://www.linux4sam.org
949 S:      Supported
950 F:      arch/arm/mach-at91/
951 F:      include/soc/at91/
952 F:      arch/arm/boot/dts/at91*.dts
953 F:      arch/arm/boot/dts/at91*.dtsi
954 F:      arch/arm/boot/dts/sama*.dts
955 F:      arch/arm/boot/dts/sama*.dtsi
956 F:      arch/arm/include/debug/at91.S
957
958 ARM/ATMEL AT91 Clock Support
959 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
960 S:      Maintained
961 F:      drivers/clk/at91
962
963 ARM/CALXEDA HIGHBANK ARCHITECTURE
964 M:      Rob Herring <robh@kernel.org>
965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
966 S:      Maintained
967 F:      arch/arm/mach-highbank/
968
969 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
970 M:      Krzysztof Halasa <khalasa@piap.pl>
971 S:      Maintained
972 F:      arch/arm/mach-cns3xxx/
973
974 ARM/CAVIUM THUNDER NETWORK DRIVER
975 M:      Sunil Goutham <sgoutham@cavium.com>
976 M:      Robert Richter <rric@kernel.org>
977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
978 S:      Supported
979 F:      drivers/net/ethernet/cavium/thunder/
980
981 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
982 M:      Alexander Shiyan <shc_work@mail.ru>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 S:      Odd Fixes
985 N:      clps711x
986
987 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
988 M:      Hartley Sweeten <hsweeten@visionengravers.com>
989 M:      Ryan Mallon <rmallon@gmail.com>
990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
991 S:      Maintained
992 F:      arch/arm/mach-ep93xx/
993 F:      arch/arm/mach-ep93xx/include/mach/
994
995 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
996 M:      Lennert Buytenhek <kernel@wantstofly.org>
997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
998 S:      Maintained
999
1000 ARM/CLKDEV SUPPORT
1001 M:      Russell King <linux@arm.linux.org.uk>
1002 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1003 S:      Maintained
1004 F:      arch/arm/include/asm/clkdev.h
1005 F:      drivers/clk/clkdev.c
1006
1007 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1008 M:      Mike Rapoport <mike@compulab.co.il>
1009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1010 S:      Maintained
1011
1012 ARM/CONTEC MICRO9 MACHINE SUPPORT
1013 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1014 S:      Maintained
1015 F:      arch/arm/mach-ep93xx/micro9.c
1016
1017 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1018 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 S:      Maintained
1021 F:      drivers/hwtracing/coresight/*
1022 F:      Documentation/trace/coresight.txt
1023 F:      Documentation/devicetree/bindings/arm/coresight.txt
1024 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1025
1026 ARM/CORGI MACHINE SUPPORT
1027 M:      Richard Purdie <rpurdie@rpsys.net>
1028 S:      Maintained
1029
1030 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1031 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1033 T:      git git://github.com/ulli-kroll/linux.git
1034 S:      Maintained
1035 F:      arch/arm/mach-gemini/
1036 F:      drivers/rtc/rtc-gemini.c
1037
1038 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1039 M:      Barry Song <baohua@kernel.org>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1042 S:      Maintained
1043 F:      arch/arm/mach-prima2/
1044 F:      drivers/clk/sirf/
1045 F:      drivers/clocksource/timer-prima2.c
1046 F:      drivers/clocksource/timer-atlas7.c
1047 N:      [^a-z]sirf
1048
1049 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1050 M:      Baruch Siach <baruch@tkos.co.il>
1051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1052 S:      Maintained
1053 F:      arch/arm/boot/dts/cx92755*
1054 N:      digicolor
1055
1056 ARM/EBSA110 MACHINE SUPPORT
1057 M:      Russell King <linux@arm.linux.org.uk>
1058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1059 W:      http://www.arm.linux.org.uk/
1060 S:      Maintained
1061 F:      arch/arm/mach-ebsa110/
1062 F:      drivers/net/ethernet/amd/am79c961a.*
1063
1064 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1065 M:      Uwe Kleine-König <kernel@pengutronix.de>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 N:      efm32
1069
1070 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1071 M:      Daniel Ribeiro <drwyrm@gmail.com>
1072 M:      Stefan Schmidt <stefan@openezx.org>
1073 M:      Harald Welte <laforge@openezx.org>
1074 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1075 W:      http://www.openezx.org/
1076 S:      Maintained
1077 T:      topgit git://git.openezx.org/openezx.git
1078 F:      arch/arm/mach-pxa/ezx.c
1079
1080 ARM/FARADAY FA526 PORT
1081 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1083 S:      Maintained
1084 T:      git git://git.berlios.de/gemini-board
1085 F:      arch/arm/mm/*-fa*
1086
1087 ARM/FOOTBRIDGE ARCHITECTURE
1088 M:      Russell King <linux@arm.linux.org.uk>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 W:      http://www.arm.linux.org.uk/
1091 S:      Maintained
1092 F:      arch/arm/include/asm/hardware/dec21285.h
1093 F:      arch/arm/mach-footbridge/
1094
1095 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1096 M:      Shawn Guo <shawnguo@kernel.org>
1097 M:      Sascha Hauer <kernel@pengutronix.de>
1098 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1099 S:      Maintained
1100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1101 F:      arch/arm/mach-imx/
1102 F:      arch/arm/mach-mxs/
1103 F:      arch/arm/boot/dts/imx*
1104 F:      arch/arm/configs/imx*_defconfig
1105 F:      drivers/clk/imx/
1106 F:      include/soc/imx/
1107
1108 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1109 M:      Shawn Guo <shawnguo@kernel.org>
1110 M:      Sascha Hauer <kernel@pengutronix.de>
1111 R:      Stefan Agner <stefan@agner.ch>
1112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S:      Maintained
1114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1115 F:      arch/arm/mach-imx/*vf610*
1116 F:      arch/arm/boot/dts/vf*
1117
1118 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1119 M:      Lennert Buytenhek <kernel@wantstofly.org>
1120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1121 S:      Maintained
1122
1123 ARM/GUMSTIX MACHINE SUPPORT
1124 M:      Steve Sakoman <sakoman@gmail.com>
1125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1126 S:      Maintained
1127
1128 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1129 M:      Philipp Zabel <philipp.zabel@gmail.com>
1130 M:      Paul Parsons <lost.distance@yahoo.com>
1131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132 S:      Maintained
1133 F:      arch/arm/mach-pxa/hx4700.c
1134 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1135 F:      sound/soc/pxa/hx4700.c
1136
1137 ARM/HISILICON SOC SUPPORT
1138 M:      Wei Xu <xuwei5@hisilicon.com>
1139 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1140 W:      http://www.hisilicon.com
1141 S:      Supported
1142 T:      git git://github.com/hisilicon/linux-hisi.git
1143 F:      arch/arm/mach-hisi/
1144
1145 ARM/HP JORNADA 7XX MACHINE SUPPORT
1146 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1147 W:      www.jlime.com
1148 S:      Maintained
1149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1150 F:      arch/arm/mach-sa1100/jornada720.c
1151 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1152
1153 ARM/IGEP MACHINE SUPPORT
1154 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1155 M:      Javier Martinez Canillas <javier@dowhile0.org>
1156 L:      linux-omap@vger.kernel.org
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159 F:      arch/arm/boot/dts/omap3-igep*
1160
1161 ARM/INCOME PXA270 SUPPORT
1162 M:      Marek Vasut <marek.vasut@gmail.com>
1163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S:      Maintained
1165 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1166
1167 ARM/INTEL IOP32X ARM ARCHITECTURE
1168 M:      Lennert Buytenhek <kernel@wantstofly.org>
1169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170 S:      Maintained
1171
1172 ARM/INTEL IOP33X ARM ARCHITECTURE
1173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1174 S:      Orphan
1175
1176 ARM/INTEL IOP13XX ARM ARCHITECTURE
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/INTEL IQ81342EX MACHINE SUPPORT
1182 M:      Lennert Buytenhek <kernel@wantstofly.org>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/INTEL IXDP2850 MACHINE SUPPORT
1187 M:      Lennert Buytenhek <kernel@wantstofly.org>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 S:      Maintained
1190
1191 ARM/INTEL IXP4XX ARM ARCHITECTURE
1192 M:      Imre Kaloz <kaloz@openwrt.org>
1193 M:      Krzysztof Halasa <khalasa@piap.pl>
1194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 S:      Maintained
1196 F:      arch/arm/mach-ixp4xx/
1197
1198 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1199 M:      Jonathan Cameron <jic23@cam.ac.uk>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S:      Maintained
1202 F:      arch/arm/mach-pxa/stargate2.c
1203 F:      drivers/pcmcia/pxa2xx_stargate2.c
1204
1205 ARM/INTEL XSC3 (MANZANO) ARM CORE
1206 M:      Lennert Buytenhek <kernel@wantstofly.org>
1207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1208 S:      Maintained
1209
1210 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1211 M:      Lennert Buytenhek <kernel@wantstofly.org>
1212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S:      Maintained
1214
1215 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1216 M:      Santosh Shilimkar <ssantosh@kernel.org>
1217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1218 S:      Maintained
1219 F:      arch/arm/mach-keystone/
1220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1221
1222 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1223 M:      Santosh Shilimkar <ssantosh@kernel.org>
1224 L:      linux-kernel@vger.kernel.org
1225 S:      Maintained
1226 F:      drivers/clk/keystone/
1227
1228 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1229 M:      Santosh Shilimkar <ssantosh@kernel.org>
1230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 L:      linux-kernel@vger.kernel.org
1232 S:      Maintained
1233 F:      drivers/clocksource/timer-keystone.c
1234
1235 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1236 M:      Santosh Shilimkar <ssantosh@kernel.org>
1237 L:      linux-kernel@vger.kernel.org
1238 S:      Maintained
1239 F:      drivers/power/reset/keystone-reset.c
1240
1241 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1242 M:      Santosh Shilimkar <ssantosh@kernel.org>
1243 L:      linux-kernel@vger.kernel.org
1244 S:      Maintained
1245 F:      drivers/memory/*emif*
1246
1247 ARM/LOGICPD PXA270 MACHINE SUPPORT
1248 M:      Lennert Buytenhek <kernel@wantstofly.org>
1249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250 S:      Maintained
1251
1252 ARM/LPC18XX ARCHITECTURE
1253 M:      Joachim Eastwood <manabian@gmail.com>
1254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1255 S:      Maintained
1256 F:      arch/arm/boot/dts/lpc43*
1257 F:      drivers/clk/nxp/clk-lpc18xx*
1258 F:      drivers/clocksource/time-lpc32xx.c
1259 F:      drivers/i2c/busses/i2c-lpc2k.c
1260 F:      drivers/memory/pl172.c
1261 F:      drivers/mtd/spi-nor/nxp-spifi.c
1262 F:      drivers/rtc/rtc-lpc24xx.c
1263 N:      lpc18xx
1264
1265 ARM/MAGICIAN MACHINE SUPPORT
1266 M:      Philipp Zabel <philipp.zabel@gmail.com>
1267 S:      Maintained
1268
1269 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1270 M:      Jason Cooper <jason@lakedaemon.net>
1271 M:      Andrew Lunn <andrew@lunn.ch>
1272 M:      Gregory Clement <gregory.clement@free-electrons.com>
1273 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Maintained
1276 F:      arch/arm/mach-mvebu/
1277 F:      drivers/rtc/rtc-armada38x.c
1278 F:      arch/arm/boot/dts/armada*
1279 F:      arch/arm/boot/dts/kirkwood*
1280
1281
1282 ARM/Marvell Berlin SoC support
1283 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 S:      Maintained
1286 F:      arch/arm/mach-berlin/
1287 F:      arch/arm/boot/dts/berlin*
1288
1289
1290 ARM/Marvell Dove/MV78xx0/Orion SOC support
1291 M:      Jason Cooper <jason@lakedaemon.net>
1292 M:      Andrew Lunn <andrew@lunn.ch>
1293 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1294 M:      Gregory Clement <gregory.clement@free-electrons.com>
1295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1296 S:      Maintained
1297 F:      arch/arm/mach-dove/
1298 F:      arch/arm/mach-mv78xx0/
1299 F:      arch/arm/mach-orion5x/
1300 F:      arch/arm/plat-orion/
1301 F:      arch/arm/boot/dts/dove*
1302 F:      arch/arm/boot/dts/orion5x*
1303
1304
1305 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1306 M:      Alexander Clouter <alex@digriz.org.uk>
1307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1308 W:      http://www.digriz.org.uk/ts78xx/kernel
1309 S:      Maintained
1310 F:      arch/arm/mach-orion5x/ts78xx-*
1311
1312 ARM/Mediatek RTC DRIVER
1313 M:      Eddie Huang <eddie.huang@mediatek.com>
1314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1316 S:      Maintained
1317 F:      drivers/rtc/rtc-mt6397.c
1318
1319 ARM/Mediatek SoC support
1320 M:      Matthias Brugger <matthias.bgg@gmail.com>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1323 S:      Maintained
1324 F:      arch/arm/boot/dts/mt6*
1325 F:      arch/arm/boot/dts/mt8*
1326 F:      arch/arm/mach-mediatek/
1327 N:      mtk
1328 K:      mediatek
1329
1330 ARM/Mediatek USB3 PHY DRIVER
1331 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1333 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1334 S:      Maintained
1335 F:      drivers/phy/phy-mt65xx-usb3.c
1336
1337 ARM/MICREL KS8695 ARCHITECTURE
1338 M:      Greg Ungerer <gerg@uclinux.org>
1339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1340 F:      arch/arm/mach-ks8695/
1341 S:      Odd Fixes
1342
1343 ARM/MIOA701 MACHINE SUPPORT
1344 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 F:      arch/arm/mach-pxa/mioa701.c
1347 S:      Maintained
1348
1349 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1350 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1351 S:      Maintained
1352
1353 ARM/NOMADIK ARCHITECTURE
1354 M:      Alessandro Rubini <rubini@unipv.it>
1355 M:      Linus Walleij <linus.walleij@linaro.org>
1356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1357 S:      Maintained
1358 F:      arch/arm/mach-nomadik/
1359 F:      drivers/pinctrl/nomadik/
1360 F:      drivers/i2c/busses/i2c-nomadik.c
1361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1362
1363 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1364 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1365 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1366 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1367 S:      Supported
1368
1369 ARM/TOSA MACHINE SUPPORT
1370 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1371 M:      Dirk Opfer <dirk@opfer-online.de>
1372 S:      Maintained
1373
1374 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1375 M:      Marek Vasut <marek.vasut@gmail.com>
1376 L:      linux-arm-kernel@lists.infradead.org
1377 W:      http://hackndev.com
1378 S:      Maintained
1379 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1380 F:      arch/arm/mach-pxa/palmtx.c
1381 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1382 F:      arch/arm/mach-pxa/palmt5.c
1383 F:      arch/arm/mach-pxa/include/mach/palmld.h
1384 F:      arch/arm/mach-pxa/palmld.c
1385 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1386 F:      arch/arm/mach-pxa/palmte2.c
1387 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1388 F:      arch/arm/mach-pxa/palmtc.c
1389
1390 ARM/PALM TREO SUPPORT
1391 M:      Tomas Cech <sleep_walker@suse.com>
1392 L:      linux-arm-kernel@lists.infradead.org
1393 W:      http://hackndev.com
1394 S:      Maintained
1395 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1396 F:      arch/arm/mach-pxa/palmtreo.c
1397
1398 ARM/PALMZ72 SUPPORT
1399 M:      Sergey Lapin <slapin@ossfans.org>
1400 L:      linux-arm-kernel@lists.infradead.org
1401 W:      http://hackndev.com
1402 S:      Maintained
1403 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1404 F:      arch/arm/mach-pxa/palmz72.c
1405
1406 ARM/PLEB SUPPORT
1407 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1408 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1409 S:      Maintained
1410
1411 ARM/PT DIGITAL BOARD PORT
1412 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1414 W:      http://www.arm.linux.org.uk/
1415 S:      Maintained
1416
1417 ARM/QUALCOMM SUPPORT
1418 M:      Andy Gross <andy.gross@linaro.org>
1419 M:      David Brown <david.brown@linaro.org>
1420 L:      linux-arm-msm@vger.kernel.org
1421 L:      linux-soc@vger.kernel.org
1422 S:      Maintained
1423 F:      arch/arm/boot/dts/qcom-*.dts
1424 F:      arch/arm/boot/dts/qcom-*.dtsi
1425 F:      arch/arm/mach-qcom/
1426 F:      drivers/soc/qcom/
1427 F:      drivers/tty/serial/msm_serial.h
1428 F:      drivers/tty/serial/msm_serial.c
1429 F:      drivers/*/pm8???-*
1430 F:      drivers/mfd/ssbi.c
1431 F:      drivers/firmware/qcom_scm.c
1432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1433
1434 ARM/RADISYS ENP2611 MACHINE SUPPORT
1435 M:      Lennert Buytenhek <kernel@wantstofly.org>
1436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1437 S:      Maintained
1438
1439 ARM/RENESAS ARM64 ARCHITECTURE
1440 M:      Simon Horman <horms@verge.net.au>
1441 M:      Magnus Damm <magnus.damm@gmail.com>
1442 L:      linux-sh@vger.kernel.org
1443 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1445 S:      Supported
1446 F:      arch/arm64/boot/dts/renesas/
1447
1448 ARM/RISCPC ARCHITECTURE
1449 M:      Russell King <linux@arm.linux.org.uk>
1450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1451 W:      http://www.arm.linux.org.uk/
1452 S:      Maintained
1453 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1454 F:      arch/arm/include/asm/hardware/ioc.h
1455 F:      arch/arm/include/asm/hardware/iomd.h
1456 F:      arch/arm/include/asm/hardware/memc.h
1457 F:      arch/arm/mach-rpc/
1458 F:      drivers/net/ethernet/8390/etherh.c
1459 F:      drivers/net/ethernet/i825xx/ether1*
1460 F:      drivers/net/ethernet/seeq/ether3*
1461 F:      drivers/scsi/arm/
1462
1463 ARM/Rockchip SoC support
1464 M:      Heiko Stuebner <heiko@sntech.de>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 L:      linux-rockchip@lists.infradead.org
1467 S:      Maintained
1468 F:      arch/arm/boot/dts/rk3*
1469 F:      arch/arm/mach-rockchip/
1470 F:      drivers/clk/rockchip/
1471 F:      drivers/i2c/busses/i2c-rk3x.c
1472 F:      drivers/*/*rockchip*
1473 F:      drivers/*/*/*rockchip*
1474 F:      sound/soc/rockchip/
1475 N:      rockchip
1476
1477 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1478 M:      Kukjin Kim <kgene@kernel.org>
1479 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1480 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1481 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1482 S:      Maintained
1483 F:      arch/arm/boot/dts/s3c*
1484 F:      arch/arm/boot/dts/exynos*
1485 F:      arch/arm64/boot/dts/exynos/
1486 F:      arch/arm/plat-samsung/
1487 F:      arch/arm/mach-s3c24*/
1488 F:      arch/arm/mach-s3c64xx/
1489 F:      arch/arm/mach-s5p*/
1490 F:      arch/arm/mach-exynos*/
1491 F:      drivers/*/*s3c2410*
1492 F:      drivers/*/*/*s3c2410*
1493 F:      drivers/spi/spi-s3c*
1494 F:      sound/soc/samsung/*
1495 F:      Documentation/arm/Samsung/
1496 F:      Documentation/devicetree/bindings/arm/samsung/
1497 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1498 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1499 N:      exynos
1500
1501 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1502 M:      Kyungmin Park <kyungmin.park@samsung.com>
1503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1504 S:      Maintained
1505 F:      arch/arm/mach-s5pv210/
1506
1507 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1508 M:      Kyungmin Park <kyungmin.park@samsung.com>
1509 M:      Kamil Debski <k.debski@samsung.com>
1510 L:      linux-arm-kernel@lists.infradead.org
1511 L:      linux-media@vger.kernel.org
1512 S:      Maintained
1513 F:      drivers/media/platform/s5p-g2d/
1514
1515 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1516 M:      Kyungmin Park <kyungmin.park@samsung.com>
1517 M:      Kamil Debski <k.debski@samsung.com>
1518 M:      Jeongtae Park <jtp.park@samsung.com>
1519 L:      linux-arm-kernel@lists.infradead.org
1520 L:      linux-media@vger.kernel.org
1521 S:      Maintained
1522 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1523 F:      drivers/media/platform/s5p-mfc/
1524
1525 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1526 M:      Kyungmin Park <kyungmin.park@samsung.com>
1527 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1528 L:      linux-arm-kernel@lists.infradead.org
1529 L:      linux-media@vger.kernel.org
1530 S:      Maintained
1531 F:      drivers/media/platform/s5p-tv/
1532
1533 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1534 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1535 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1536 L:      linux-arm-kernel@lists.infradead.org
1537 L:      linux-media@vger.kernel.org
1538 S:      Maintained
1539 F:      drivers/media/platform/s5p-jpeg/
1540
1541 ARM/SHMOBILE ARM ARCHITECTURE
1542 M:      Simon Horman <horms@verge.net.au>
1543 M:      Magnus Damm <magnus.damm@gmail.com>
1544 L:      linux-renesas-soc@vger.kernel.org
1545 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1547 S:      Supported
1548 F:      arch/arm/boot/dts/emev2*
1549 F:      arch/arm/boot/dts/r7s*
1550 F:      arch/arm/boot/dts/r8a*
1551 F:      arch/arm/boot/dts/sh*
1552 F:      arch/arm/configs/shmobile_defconfig
1553 F:      arch/arm/include/debug/renesas-scif.S
1554 F:      arch/arm/mach-shmobile/
1555 F:      drivers/sh/
1556
1557 ARM/SOCFPGA ARCHITECTURE
1558 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1559 S:      Maintained
1560 F:      arch/arm/mach-socfpga/
1561 F:      arch/arm/boot/dts/socfpga*
1562 F:      arch/arm/configs/socfpga_defconfig
1563 W:      http://www.rocketboards.org
1564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1565
1566 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1567 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1568 S:      Maintained
1569 F:      drivers/clk/socfpga/
1570
1571 ARM/SOCFPGA EDAC SUPPORT
1572 M:      Thor Thayer <tthayer@opensource.altera.com>
1573 S:      Maintained
1574 F:      drivers/edac/altera_edac.
1575
1576 ARM/STI ARCHITECTURE
1577 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1578 M:      Maxime Coquelin <maxime.coquelin@st.com>
1579 M:      Patrice Chotard <patrice.chotard@st.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 L:      kernel@stlinux.com
1582 W:      http://www.stlinux.com
1583 S:      Maintained
1584 F:      arch/arm/mach-sti/
1585 F:      arch/arm/boot/dts/sti*
1586 F:      drivers/char/hw_random/st-rng.c
1587 F:      drivers/clocksource/arm_global_timer.c
1588 F:      drivers/clocksource/clksrc_st_lpc.c
1589 F:      drivers/i2c/busses/i2c-st.c
1590 F:      drivers/media/rc/st_rc.c
1591 F:      drivers/media/platform/sti/c8sectpfe/
1592 F:      drivers/mmc/host/sdhci-st.c
1593 F:      drivers/phy/phy-miphy28lp.c
1594 F:      drivers/phy/phy-miphy365x.c
1595 F:      drivers/phy/phy-stih407-usb.c
1596 F:      drivers/phy/phy-stih41x-usb.c
1597 F:      drivers/pinctrl/pinctrl-st.c
1598 F:      drivers/reset/sti/
1599 F:      drivers/rtc/rtc-st-lpc.c
1600 F:      drivers/tty/serial/st-asc.c
1601 F:      drivers/usb/dwc3/dwc3-st.c
1602 F:      drivers/usb/host/ehci-st.c
1603 F:      drivers/usb/host/ohci-st.c
1604 F:      drivers/watchdog/st_lpc_wdt.c
1605 F:      drivers/ata/ahci_st.c
1606
1607 ARM/STM32 ARCHITECTURE
1608 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Maintained
1611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1612 N:      stm32
1613 F:      drivers/clocksource/armv7m_systick.c
1614
1615 ARM/TANGO ARCHITECTURE
1616 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1617 L:      linux-arm-kernel@lists.infradead.org
1618 S:      Maintained
1619 F:      arch/arm/mach-tango/
1620 F:      arch/arm/boot/dts/tango*
1621
1622 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1623 M:      Lennert Buytenhek <kernel@wantstofly.org>
1624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1625 S:      Maintained
1626
1627 ARM/TETON BGA MACHINE SUPPORT
1628 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1630 S:      Maintained
1631
1632 ARM/THECUS N2100 MACHINE SUPPORT
1633 M:      Lennert Buytenhek <kernel@wantstofly.org>
1634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1635 S:      Maintained
1636
1637 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1638 M:      Wan ZongShun <mcuos.com@gmail.com>
1639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1640 W:      http://www.mcuos.com
1641 S:      Maintained
1642 F:      arch/arm/mach-w90x900/
1643 F:      drivers/input/keyboard/w90p910_keypad.c
1644 F:      drivers/input/touchscreen/w90p910_ts.c
1645 F:      drivers/watchdog/nuc900_wdt.c
1646 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1647 F:      drivers/mtd/nand/nuc900_nand.c
1648 F:      drivers/rtc/rtc-nuc900.c
1649 F:      drivers/spi/spi-nuc900.c
1650 F:      drivers/usb/host/ehci-w90x900.c
1651 F:      drivers/video/fbdev/nuc900fb.c
1652
1653 ARM/U300 MACHINE SUPPORT
1654 M:      Linus Walleij <linus.walleij@linaro.org>
1655 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1656 S:      Supported
1657 F:      arch/arm/mach-u300/
1658 F:      drivers/clocksource/timer-u300.c
1659 F:      drivers/i2c/busses/i2c-stu300.c
1660 F:      drivers/rtc/rtc-coh901331.c
1661 F:      drivers/watchdog/coh901327_wdt.c
1662 F:      drivers/dma/coh901318*
1663 F:      drivers/mfd/ab3100*
1664 F:      drivers/rtc/rtc-ab3100.c
1665 F:      drivers/rtc/rtc-coh901331.c
1666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1667
1668 ARM/UNIPHIER ARCHITECTURE
1669 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1671 S:      Maintained
1672 F:      arch/arm/boot/dts/uniphier*
1673 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1674 F:      arch/arm/mach-uniphier/
1675 F:      arch/arm/mm/cache-uniphier.c
1676 F:      arch/arm64/boot/dts/socionext/
1677 F:      drivers/bus/uniphier-system-bus.c
1678 F:      drivers/i2c/busses/i2c-uniphier*
1679 F:      drivers/pinctrl/uniphier/
1680 F:      drivers/tty/serial/8250/8250_uniphier.c
1681 N:      uniphier
1682
1683 ARM/Ux500 ARM ARCHITECTURE
1684 M:      Linus Walleij <linus.walleij@linaro.org>
1685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1686 S:      Maintained
1687 F:      arch/arm/mach-ux500/
1688 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1689 F:      drivers/dma/ste_dma40*
1690 F:      drivers/hwspinlock/u8500_hsem.c
1691 F:      drivers/mfd/abx500*
1692 F:      drivers/mfd/ab8500*
1693 F:      drivers/mfd/dbx500*
1694 F:      drivers/mfd/db8500*
1695 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1696 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1697 F:      drivers/rtc/rtc-ab8500.c
1698 F:      drivers/rtc/rtc-pl031.c
1699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1700
1701 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1702 M:      Ulf Hansson <ulf.hansson@linaro.org>
1703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1704 T:      git git://git.linaro.org/people/ulfh/clk.git
1705 S:      Maintained
1706 F:      drivers/clk/ux500/
1707 F:      include/linux/platform_data/clk-ux500.h
1708
1709 ARM/VERSATILE EXPRESS PLATFORM
1710 M:      Liviu Dudau <liviu.dudau@arm.com>
1711 M:      Sudeep Holla <sudeep.holla@arm.com>
1712 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 S:      Maintained
1715 F:      arch/arm/boot/dts/vexpress*
1716 F:      arch/arm64/boot/dts/arm/vexpress*
1717 F:      arch/arm/mach-vexpress/
1718 F:      */*/vexpress*
1719 F:      */*/*/vexpress*
1720 F:      drivers/clk/versatile/clk-vexpress-osc.c
1721 F:      drivers/clocksource/versatile.c
1722
1723 ARM/VFP SUPPORT
1724 M:      Russell King <linux@arm.linux.org.uk>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 W:      http://www.arm.linux.org.uk/
1727 S:      Maintained
1728 F:      arch/arm/vfp/
1729
1730 ARM/VOIPAC PXA270 SUPPORT
1731 M:      Marek Vasut <marek.vasut@gmail.com>
1732 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1733 S:      Maintained
1734 F:      arch/arm/mach-pxa/vpac270.c
1735 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1736
1737 ARM/VT8500 ARM ARCHITECTURE
1738 M:      Tony Prisk <linux@prisktech.co.nz>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741 F:      arch/arm/mach-vt8500/
1742 F:      drivers/clocksource/vt8500_timer.c
1743 F:      drivers/i2c/busses/i2c-wmt.c
1744 F:      drivers/mmc/host/wmt-sdmmc.c
1745 F:      drivers/pwm/pwm-vt8500.c
1746 F:      drivers/rtc/rtc-vt8500.c
1747 F:      drivers/tty/serial/vt8500_serial.c
1748 F:      drivers/usb/host/ehci-platform.c
1749 F:      drivers/usb/host/uhci-platform.c
1750 F:      drivers/video/fbdev/vt8500lcdfb.*
1751 F:      drivers/video/fbdev/wm8505fb*
1752 F:      drivers/video/fbdev/wmt_ge_rops.*
1753
1754 ARM/ZIPIT Z2 SUPPORT
1755 M:      Marek Vasut <marek.vasut@gmail.com>
1756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S:      Maintained
1758 F:      arch/arm/mach-pxa/z2.c
1759 F:      arch/arm/mach-pxa/include/mach/z2.h
1760
1761 ARM/ZTE ARCHITECTURE
1762 M:      Jun Nie <jun.nie@linaro.org>
1763 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1764 S:      Maintained
1765 F:      arch/arm/mach-zx/
1766 F:      drivers/clk/zte/
1767 F:      Documentation/devicetree/bindings/arm/zte.txt
1768 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1769
1770 ARM/ZYNQ ARCHITECTURE
1771 M:      Michal Simek <michal.simek@xilinx.com>
1772 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 W:      http://wiki.xilinx.com
1775 T:      git https://github.com/Xilinx/linux-xlnx.git
1776 S:      Supported
1777 F:      arch/arm/mach-zynq/
1778 F:      drivers/cpuidle/cpuidle-zynq.c
1779 F:      drivers/block/xsysace.c
1780 N:      zynq
1781 N:      xilinx
1782 F:      drivers/clocksource/cadence_ttc_timer.c
1783 F:      drivers/i2c/busses/i2c-cadence.c
1784 F:      drivers/mmc/host/sdhci-of-arasan.c
1785 F:      drivers/edac/synopsys_edac.c
1786
1787 ARM SMMU DRIVERS
1788 M:      Will Deacon <will.deacon@arm.com>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      drivers/iommu/arm-smmu.c
1792 F:      drivers/iommu/arm-smmu-v3.c
1793 F:      drivers/iommu/io-pgtable-arm.c
1794
1795 ARM64 PORT (AARCH64 ARCHITECTURE)
1796 M:      Catalin Marinas <catalin.marinas@arm.com>
1797 M:      Will Deacon <will.deacon@arm.com>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800 F:      arch/arm64/
1801 F:      Documentation/arm64/
1802
1803 AS3645A LED FLASH CONTROLLER DRIVER
1804 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1805 L:      linux-media@vger.kernel.org
1806 T:      git git://linuxtv.org/media_tree.git
1807 S:      Maintained
1808 F:      drivers/media/i2c/as3645a.c
1809 F:      include/media/i2c/as3645a.h
1810
1811 ASC7621 HARDWARE MONITOR DRIVER
1812 M:      George Joseph <george.joseph@fairview5.com>
1813 L:      lm-sensors@lm-sensors.org
1814 S:      Maintained
1815 F:      Documentation/hwmon/asc7621
1816 F:      drivers/hwmon/asc7621.c
1817
1818 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1819 M:      Corentin Chary <corentin.chary@gmail.com>
1820 L:      acpi4asus-user@lists.sourceforge.net
1821 L:      platform-driver-x86@vger.kernel.org
1822 W:      http://acpi4asus.sf.net
1823 S:      Maintained
1824 F:      drivers/platform/x86/asus*.c
1825 F:      drivers/platform/x86/eeepc*.c
1826
1827 ASUS WIRELESS RADIO CONTROL DRIVER
1828 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1829 L:      platform-driver-x86@vger.kernel.org
1830 S:      Maintained
1831 F:      drivers/platform/x86/asus-wireless.c
1832
1833 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1834 R:      Dan Williams <dan.j.williams@intel.com>
1835 W:      http://sourceforge.net/projects/xscaleiop
1836 S:      Odd fixes
1837 F:      Documentation/crypto/async-tx-api.txt
1838 F:      crypto/async_tx/
1839 F:      drivers/dma/
1840 F:      include/linux/dmaengine.h
1841 F:      include/linux/async_tx.h
1842
1843 AT24 EEPROM DRIVER
1844 M:      Wolfram Sang <wsa@the-dreams.de>
1845 L:      linux-i2c@vger.kernel.org
1846 S:      Maintained
1847 F:      drivers/misc/eeprom/at24.c
1848 F:      include/linux/platform_data/at24.h
1849
1850 ATA OVER ETHERNET (AOE) DRIVER
1851 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1852 W:      http://www.openaoe.org/
1853 S:      Supported
1854 F:      Documentation/aoe/
1855 F:      drivers/block/aoe/
1856
1857 ATHEROS 71XX/9XXX GPIO DRIVER
1858 M:      Alban Bedel <albeu@free.fr>
1859 W:      https://github.com/AlbanBedel/linux
1860 T:      git git://github.com/AlbanBedel/linux
1861 S:      Maintained
1862 F:      drivers/gpio/gpio-ath79.c
1863 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1864
1865 ATHEROS ATH GENERIC UTILITIES
1866 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1867 L:      linux-wireless@vger.kernel.org
1868 S:      Supported
1869 F:      drivers/net/wireless/ath/*
1870
1871 ATHEROS ATH5K WIRELESS DRIVER
1872 M:      Jiri Slaby <jirislaby@gmail.com>
1873 M:      Nick Kossifidis <mickflemm@gmail.com>
1874 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1875 L:      linux-wireless@vger.kernel.org
1876 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1877 S:      Maintained
1878 F:      drivers/net/wireless/ath/ath5k/
1879
1880 ATHEROS ATH6KL WIRELESS DRIVER
1881 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1882 L:      linux-wireless@vger.kernel.org
1883 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1884 T:      git git://github.com/kvalo/ath.git
1885 S:      Supported
1886 F:      drivers/net/wireless/ath/ath6kl/
1887
1888 WILOCITY WIL6210 WIRELESS DRIVER
1889 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1890 L:      linux-wireless@vger.kernel.org
1891 L:      wil6210@qca.qualcomm.com
1892 S:      Supported
1893 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1894 F:      drivers/net/wireless/ath/wil6210/
1895 F:      include/uapi/linux/wil6210_uapi.h
1896
1897 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1898 M:      Christian Lamparter <chunkeey@googlemail.com>
1899 L:      linux-wireless@vger.kernel.org
1900 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1901 S:      Maintained
1902 F:      drivers/net/wireless/ath/carl9170/
1903
1904 ATK0110 HWMON DRIVER
1905 M:      Luca Tettamanti <kronos.it@gmail.com>
1906 L:      lm-sensors@lm-sensors.org
1907 S:      Maintained
1908 F:      drivers/hwmon/asus_atk0110.c
1909
1910 ATI_REMOTE2 DRIVER
1911 M:      Ville Syrjala <syrjala@sci.fi>
1912 S:      Maintained
1913 F:      drivers/input/misc/ati_remote2.c
1914
1915 ATLX ETHERNET DRIVERS
1916 M:      Jay Cliburn <jcliburn@gmail.com>
1917 M:      Chris Snook <chris.snook@gmail.com>
1918 L:      netdev@vger.kernel.org
1919 W:      http://sourceforge.net/projects/atl1
1920 W:      http://atl1.sourceforge.net
1921 S:      Maintained
1922 F:      drivers/net/ethernet/atheros/
1923
1924 ATM
1925 M:      Chas Williams <3chas3@gmail.com>
1926 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1927 L:      netdev@vger.kernel.org
1928 W:      http://linux-atm.sourceforge.net
1929 S:      Maintained
1930 F:      drivers/atm/
1931 F:      include/linux/atm*
1932 F:      include/uapi/linux/atm*
1933
1934 ATMEL AT91 / AT32 MCI DRIVER
1935 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1936 S:      Maintained
1937 F:      drivers/mmc/host/atmel-mci.c
1938
1939 ATMEL AT91 / AT32 SERIAL DRIVER
1940 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1941 S:      Supported
1942 F:      drivers/tty/serial/atmel_serial.c
1943
1944 ATMEL Audio ALSA driver
1945 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1946 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1947 S:      Supported
1948 F:      sound/soc/atmel
1949
1950 ATMEL DMA DRIVER
1951 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Supported
1954 F:      drivers/dma/at_hdmac.c
1955 F:      drivers/dma/at_hdmac_regs.h
1956 F:      include/linux/platform_data/dma-atmel.h
1957
1958 ATMEL XDMA DRIVER
1959 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1960 L:      linux-arm-kernel@lists.infradead.org
1961 L:      dmaengine@vger.kernel.org
1962 S:      Supported
1963 F:      drivers/dma/at_xdmac.c
1964
1965 ATMEL I2C DRIVER
1966 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1967 L:      linux-i2c@vger.kernel.org
1968 S:      Supported
1969 F:      drivers/i2c/busses/i2c-at91.c
1970
1971 ATMEL ISI DRIVER
1972 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1973 L:      linux-media@vger.kernel.org
1974 S:      Supported
1975 F:      drivers/media/platform/soc_camera/atmel-isi.c
1976 F:      include/media/atmel-isi.h
1977
1978 ATMEL LCDFB DRIVER
1979 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1980 L:      linux-fbdev@vger.kernel.org
1981 S:      Maintained
1982 F:      drivers/video/fbdev/atmel_lcdfb.c
1983 F:      include/video/atmel_lcdc.h
1984
1985 ATMEL MACB ETHERNET DRIVER
1986 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1987 S:      Supported
1988 F:      drivers/net/ethernet/cadence/
1989
1990 ATMEL NAND DRIVER
1991 M:      Wenyou Yang <wenyou.yang@atmel.com>
1992 M:      Josh Wu <rainyfeeling@outlook.com>
1993 L:      linux-mtd@lists.infradead.org
1994 S:      Supported
1995 F:      drivers/mtd/nand/atmel_nand*
1996
1997 ATMEL SDMMC DRIVER
1998 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1999 L:      linux-mmc@vger.kernel.org
2000 S:      Supported
2001 F:      drivers/mmc/host/sdhci-of-at91.c
2002
2003 ATMEL SPI DRIVER
2004 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2005 S:      Supported
2006 F:      drivers/spi/spi-atmel.*
2007
2008 ATMEL SSC DRIVER
2009 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Supported
2012 F:      drivers/misc/atmel-ssc.c
2013 F:      include/linux/atmel-ssc.h
2014
2015 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2016 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2018 S:      Supported
2019 F:      drivers/misc/atmel_tclib.c
2020 F:      drivers/clocksource/tcb_clksrc.c
2021
2022 ATMEL USBA UDC DRIVER
2023 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 S:      Supported
2026 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2027
2028 ATMEL WIRELESS DRIVER
2029 M:      Simon Kelley <simon@thekelleys.org.uk>
2030 L:      linux-wireless@vger.kernel.org
2031 W:      http://www.thekelleys.org.uk/atmel
2032 W:      http://atmelwlandriver.sourceforge.net/
2033 S:      Maintained
2034 F:      drivers/net/wireless/atmel/atmel*
2035
2036 ATMEL MAXTOUCH DRIVER
2037 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2038 T:      git git://github.com/atmel-maxtouch/linux.git
2039 S:      Supported
2040 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2041 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2042 F:      include/linux/platform_data/atmel_mxt_ts.h
2043
2044 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2045 M:      Bradley Grove <linuxdrivers@attotech.com>
2046 L:      linux-scsi@vger.kernel.org
2047 W:      http://www.attotech.com
2048 S:      Supported
2049 F:      drivers/scsi/esas2r
2050
2051 ATUSB IEEE 802.15.4 RADIO DRIVER
2052 M:      Stefan Schmidt <stefan@osg.samsung.com>
2053 L:      linux-wpan@vger.kernel.org
2054 S:      Maintained
2055 F:      drivers/net/ieee802154/atusb.c
2056 F:      drivers/net/ieee802154/atusb.h
2057 F:      drivers/net/ieee802154/at86rf230.h
2058
2059 AUDIT SUBSYSTEM
2060 M:      Paul Moore <paul@paul-moore.com>
2061 M:      Eric Paris <eparis@redhat.com>
2062 L:      linux-audit@redhat.com (moderated for non-subscribers)
2063 W:      http://people.redhat.com/sgrubb/audit/
2064 T:      git git://git.infradead.org/users/pcmoore/audit
2065 S:      Maintained
2066 F:      include/linux/audit.h
2067 F:      include/uapi/linux/audit.h
2068 F:      kernel/audit*
2069
2070 AUXILIARY DISPLAY DRIVERS
2071 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2072 W:      http://miguelojeda.es/auxdisplay.htm
2073 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2074 S:      Maintained
2075 F:      drivers/auxdisplay/
2076 F:      include/linux/cfag12864b.h
2077
2078 AVR32 ARCHITECTURE
2079 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2080 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2081 W:      http://www.atmel.com/products/AVR32/
2082 W:      http://mirror.egtvedt.no/avr32linux.org/
2083 W:      http://avrfreaks.net/
2084 S:      Maintained
2085 F:      arch/avr32/
2086
2087 AVR32/AT32AP MACHINE SUPPORT
2088 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2089 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2090 S:      Maintained
2091 F:      arch/avr32/mach-at32ap/
2092
2093 AX.25 NETWORK LAYER
2094 M:      Ralf Baechle <ralf@linux-mips.org>
2095 L:      linux-hams@vger.kernel.org
2096 W:      http://www.linux-ax25.org/
2097 S:      Maintained
2098 F:      include/uapi/linux/ax25.h
2099 F:      include/net/ax25.h
2100 F:      net/ax25/
2101
2102 AZ6007 DVB DRIVER
2103 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2104 L:      linux-media@vger.kernel.org
2105 W:      https://linuxtv.org
2106 T:      git git://linuxtv.org/media_tree.git
2107 S:      Maintained
2108 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2109
2110 AZTECH FM RADIO RECEIVER DRIVER
2111 M:      Hans Verkuil <hverkuil@xs4all.nl>
2112 L:      linux-media@vger.kernel.org
2113 T:      git git://linuxtv.org/media_tree.git
2114 W:      https://linuxtv.org
2115 S:      Maintained
2116 F:      drivers/media/radio/radio-aztech*
2117
2118 B43 WIRELESS DRIVER
2119 L:      linux-wireless@vger.kernel.org
2120 L:      b43-dev@lists.infradead.org
2121 W:      http://wireless.kernel.org/en/users/Drivers/b43
2122 S:      Odd Fixes
2123 F:      drivers/net/wireless/broadcom/b43/
2124
2125 B43LEGACY WIRELESS DRIVER
2126 M:      Larry Finger <Larry.Finger@lwfinger.net>
2127 L:      linux-wireless@vger.kernel.org
2128 L:      b43-dev@lists.infradead.org
2129 W:      http://wireless.kernel.org/en/users/Drivers/b43
2130 S:      Maintained
2131 F:      drivers/net/wireless/broadcom/b43legacy/
2132
2133 BACKLIGHT CLASS/SUBSYSTEM
2134 M:      Jingoo Han <jingoohan1@gmail.com>
2135 M:      Lee Jones <lee.jones@linaro.org>
2136 S:      Maintained
2137 F:      drivers/video/backlight/
2138 F:      include/linux/backlight.h
2139
2140 BATMAN ADVANCED
2141 M:      Marek Lindner <mareklindner@neomailbox.ch>
2142 M:      Simon Wunderlich <sw@simonwunderlich.de>
2143 M:      Antonio Quartulli <a@unstable.cc>
2144 L:      b.a.t.m.a.n@lists.open-mesh.org
2145 W:      http://www.open-mesh.org/
2146 S:      Maintained
2147 F:      net/batman-adv/
2148
2149 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2150 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2151 L:      linux-hams@vger.kernel.org
2152 W:      http://www.baycom.org/~tom/ham/ham.html
2153 S:      Maintained
2154 F:      drivers/net/hamradio/baycom*
2155
2156 BCACHE (BLOCK LAYER CACHE)
2157 M:      Kent Overstreet <kent.overstreet@gmail.com>
2158 L:      linux-bcache@vger.kernel.org
2159 W:      http://bcache.evilpiepirate.org
2160 S:      Maintained
2161 F:      drivers/md/bcache/
2162
2163 BDISP ST MEDIA DRIVER
2164 M:      Fabien Dessenne <fabien.dessenne@st.com>
2165 L:      linux-media@vger.kernel.org
2166 T:      git git://linuxtv.org/media_tree.git
2167 W:      https://linuxtv.org
2168 S:      Supported
2169 F:      drivers/media/platform/sti/bdisp
2170
2171 BEFS FILE SYSTEM
2172 S:      Orphan
2173 F:      Documentation/filesystems/befs.txt
2174 F:      fs/befs/
2175
2176 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2177 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2178 L:      netdev@vger.kernel.org
2179 S:      Maintained
2180 F:      drivers/net/ethernet/ec_bhf.c
2181
2182 BFS FILE SYSTEM
2183 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2184 S:      Maintained
2185 F:      Documentation/filesystems/bfs.txt
2186 F:      fs/bfs/
2187 F:      include/uapi/linux/bfs_fs.h
2188
2189 BLACKFIN ARCHITECTURE
2190 M:      Steven Miao <realmz6@gmail.com>
2191 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2192 T:      git git://git.code.sf.net/p/adi-linux/code
2193 W:      http://blackfin.uclinux.org
2194 S:      Supported
2195 F:      arch/blackfin/
2196
2197 BLACKFIN EMAC DRIVER
2198 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2199 W:      http://blackfin.uclinux.org
2200 S:      Supported
2201 F:      drivers/net/ethernet/adi/
2202
2203 BLACKFIN RTC DRIVER
2204 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2205 W:      http://blackfin.uclinux.org
2206 S:      Supported
2207 F:      drivers/rtc/rtc-bfin.c
2208
2209 BLACKFIN SDH DRIVER
2210 M:      Sonic Zhang <sonic.zhang@analog.com>
2211 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2212 W:      http://blackfin.uclinux.org
2213 S:      Supported
2214 F:      drivers/mmc/host/bfin_sdh.c
2215
2216 BLACKFIN SERIAL DRIVER
2217 M:      Sonic Zhang <sonic.zhang@analog.com>
2218 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2219 W:      http://blackfin.uclinux.org
2220 S:      Supported
2221 F:      drivers/tty/serial/bfin_uart.c
2222
2223 BLACKFIN WATCHDOG DRIVER
2224 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2225 W:      http://blackfin.uclinux.org
2226 S:      Supported
2227 F:      drivers/watchdog/bfin_wdt.c
2228
2229 BLACKFIN I2C TWI DRIVER
2230 M:      Sonic Zhang <sonic.zhang@analog.com>
2231 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2232 W:      http://blackfin.uclinux.org/
2233 S:      Supported
2234 F:      drivers/i2c/busses/i2c-bfin-twi.c
2235
2236 BLACKFIN MEDIA DRIVER
2237 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2238 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2239 W:      http://blackfin.uclinux.org/
2240 S:      Supported
2241 F:      drivers/media/platform/blackfin/
2242 F:      drivers/media/i2c/adv7183*
2243 F:      drivers/media/i2c/vs6624*
2244
2245 BLINKM RGB LED DRIVER
2246 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2247 S:      Maintained
2248 F:      drivers/leds/leds-blinkm.c
2249
2250 BLOCK LAYER
2251 M:      Jens Axboe <axboe@kernel.dk>
2252 L:      linux-block@vger.kernel.org
2253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2254 S:      Maintained
2255 F:      block/
2256 F:      kernel/trace/blktrace.c
2257
2258 BLOCK2MTD DRIVER
2259 M:      Joern Engel <joern@lazybastard.org>
2260 L:      linux-mtd@lists.infradead.org
2261 S:      Maintained
2262 F:      drivers/mtd/devices/block2mtd.c
2263
2264 BLUETOOTH DRIVERS
2265 M:      Marcel Holtmann <marcel@holtmann.org>
2266 M:      Gustavo Padovan <gustavo@padovan.org>
2267 M:      Johan Hedberg <johan.hedberg@gmail.com>
2268 L:      linux-bluetooth@vger.kernel.org
2269 W:      http://www.bluez.org/
2270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2272 S:      Maintained
2273 F:      drivers/bluetooth/
2274
2275 BLUETOOTH SUBSYSTEM
2276 M:      Marcel Holtmann <marcel@holtmann.org>
2277 M:      Gustavo Padovan <gustavo@padovan.org>
2278 M:      Johan Hedberg <johan.hedberg@gmail.com>
2279 L:      linux-bluetooth@vger.kernel.org
2280 W:      http://www.bluez.org/
2281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2283 S:      Maintained
2284 F:      net/bluetooth/
2285 F:      include/net/bluetooth/
2286
2287 BONDING DRIVER
2288 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2289 M:      Veaceslav Falico <vfalico@gmail.com>
2290 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2291 L:      netdev@vger.kernel.org
2292 W:      http://sourceforge.net/projects/bonding/
2293 S:      Supported
2294 F:      drivers/net/bonding/
2295 F:      include/uapi/linux/if_bonding.h
2296
2297 BPF (Safe dynamic programs and tools)
2298 M:      Alexei Starovoitov <ast@kernel.org>
2299 L:      netdev@vger.kernel.org
2300 L:      linux-kernel@vger.kernel.org
2301 S:      Supported
2302 F:      kernel/bpf/
2303
2304 BROADCOM B44 10/100 ETHERNET DRIVER
2305 M:      Gary Zambrano <zambrano@broadcom.com>
2306 L:      netdev@vger.kernel.org
2307 S:      Supported
2308 F:      drivers/net/ethernet/broadcom/b44.*
2309
2310 BROADCOM GENET ETHERNET DRIVER
2311 M:      Florian Fainelli <f.fainelli@gmail.com>
2312 L:      netdev@vger.kernel.org
2313 S:      Supported
2314 F:      drivers/net/ethernet/broadcom/genet/
2315
2316 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2317 M:      Sony Chacko <sony.chacko@qlogic.com>
2318 M:      Dept-HSGLinuxNICDev@qlogic.com
2319 L:      netdev@vger.kernel.org
2320 S:      Supported
2321 F:      drivers/net/ethernet/broadcom/bnx2.*
2322 F:      drivers/net/ethernet/broadcom/bnx2_*
2323
2324 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2325 M:      Ariel Elior <ariel.elior@qlogic.com>
2326 L:      netdev@vger.kernel.org
2327 S:      Supported
2328 F:      drivers/net/ethernet/broadcom/bnx2x/
2329
2330 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2331 M:      Florian Fainelli <f.fainelli@gmail.com>
2332 M:      Ray Jui <rjui@broadcom.com>
2333 M:      Scott Branden <sbranden@broadcom.com>
2334 L:      bcm-kernel-feedback-list@broadcom.com
2335 T:      git git://github.com/broadcom/mach-bcm
2336 S:      Maintained
2337 F:      arch/arm/mach-bcm/
2338 F:      arch/arm/boot/dts/bcm113*
2339 F:      arch/arm/boot/dts/bcm216*
2340 F:      arch/arm/boot/dts/bcm281*
2341 F:      arch/arm/configs/bcm_defconfig
2342 F:      drivers/mmc/host/sdhci-bcm-kona.c
2343 F:      drivers/clocksource/bcm_kona_timer.c
2344
2345 BROADCOM BCM2835 ARM ARCHITECTURE
2346 M:      Stephen Warren <swarren@wwwdotorg.org>
2347 M:      Lee Jones <lee@kernel.org>
2348 M:      Eric Anholt <eric@anholt.net>
2349 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2352 S:      Maintained
2353 N:      bcm2835
2354
2355 BROADCOM BCM33XX MIPS ARCHITECTURE
2356 M:      Kevin Cernekee <cernekee@gmail.com>
2357 L:      linux-mips@linux-mips.org
2358 S:      Maintained
2359 F:      arch/mips/bcm3384/*
2360 F:      arch/mips/include/asm/mach-bcm3384/*
2361 F:      arch/mips/kernel/*bmips*
2362
2363 BROADCOM BCM47XX MIPS ARCHITECTURE
2364 M:      Hauke Mehrtens <hauke@hauke-m.de>
2365 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2366 L:      linux-mips@linux-mips.org
2367 S:      Maintained
2368 F:      arch/mips/bcm47xx/*
2369 F:      arch/mips/include/asm/mach-bcm47xx/*
2370
2371 BROADCOM BCM5301X ARM ARCHITECTURE
2372 M:      Hauke Mehrtens <hauke@hauke-m.de>
2373 L:      linux-arm-kernel@lists.infradead.org
2374 S:      Maintained
2375 F:      arch/arm/mach-bcm/bcm_5301x.c
2376 F:      arch/arm/boot/dts/bcm5301x.dtsi
2377 F:      arch/arm/boot/dts/bcm470*
2378
2379 BROADCOM BCM63XX ARM ARCHITECTURE
2380 M:      Florian Fainelli <f.fainelli@gmail.com>
2381 L:      linux-arm-kernel@lists.infradead.org
2382 T:      git git://github.com/broadcom/arm-bcm63xx.git
2383 S:      Maintained
2384 F:      arch/arm/mach-bcm/bcm63xx.c
2385 F:      arch/arm/include/debug/bcm63xx.S
2386
2387 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2388 M:      Kevin Cernekee <cernekee@gmail.com>
2389 L:      linux-usb@vger.kernel.org
2390 S:      Maintained
2391 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2392
2393 BROADCOM BCM7XXX ARM ARCHITECTURE
2394 M:      Brian Norris <computersforpeace@gmail.com>
2395 M:      Gregory Fong <gregory.0xf0@gmail.com>
2396 M:      Florian Fainelli <f.fainelli@gmail.com>
2397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2398 L:      bcm-kernel-feedback-list@broadcom.com
2399 T:      git git://github.com/broadcom/stblinux.git
2400 S:      Maintained
2401 F:      arch/arm/mach-bcm/*brcmstb*
2402 F:      arch/arm/boot/dts/bcm7*.dts*
2403 F:      drivers/bus/brcmstb_gisb.c
2404 N:      brcmstb
2405
2406 BROADCOM BMIPS MIPS ARCHITECTURE
2407 M:      Kevin Cernekee <cernekee@gmail.com>
2408 M:      Florian Fainelli <f.fainelli@gmail.com>
2409 L:      linux-mips@linux-mips.org
2410 T:      git git://github.com/broadcom/stblinux.git
2411 S:      Maintained
2412 F:      arch/mips/bmips/*
2413 F:      arch/mips/include/asm/mach-bmips/*
2414 F:      arch/mips/kernel/*bmips*
2415 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2416 F:      drivers/irqchip/irq-bcm7*
2417 F:      drivers/irqchip/irq-brcmstb*
2418
2419 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2420 M:      Prashant Sreedharan <prashant@broadcom.com>
2421 M:      Michael Chan <mchan@broadcom.com>
2422 L:      netdev@vger.kernel.org
2423 S:      Supported
2424 F:      drivers/net/ethernet/broadcom/tg3.*
2425
2426 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2427 M:      Brett Rudley <brudley@broadcom.com>
2428 M:      Arend van Spriel <arend@broadcom.com>
2429 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2430 M:      Hante Meuleman <meuleman@broadcom.com>
2431 L:      linux-wireless@vger.kernel.org
2432 L:      brcm80211-dev-list@broadcom.com
2433 S:      Supported
2434 F:      drivers/net/wireless/broadcom/brcm80211/
2435
2436 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2437 M:      QLogic-Storage-Upstream@qlogic.com
2438 L:      linux-scsi@vger.kernel.org
2439 S:      Supported
2440 F:      drivers/scsi/bnx2fc/
2441
2442 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2443 M:      QLogic-Storage-Upstream@qlogic.com
2444 L:      linux-scsi@vger.kernel.org
2445 S:      Supported
2446 F:      drivers/scsi/bnx2i/
2447
2448 BROADCOM IPROC ARM ARCHITECTURE
2449 M:      Ray Jui <rjui@broadcom.com>
2450 M:      Scott Branden <sbranden@broadcom.com>
2451 M:      Jon Mason <jonmason@broadcom.com>
2452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2453 L:      bcm-kernel-feedback-list@broadcom.com
2454 T:      git git://github.com/broadcom/cygnus-linux.git
2455 S:      Maintained
2456 N:      iproc
2457 N:      cygnus
2458 N:      nsp
2459 N:      bcm9113*
2460 N:      bcm9583*
2461 N:      bcm9585*
2462 N:      bcm9586*
2463 N:      bcm988312
2464 N:      bcm113*
2465 N:      bcm583*
2466 N:      bcm585*
2467 N:      bcm586*
2468 N:      bcm88312
2469
2470 BROADCOM BRCMSTB GPIO DRIVER
2471 M:      Gregory Fong <gregory.0xf0@gmail.com>
2472 L:      bcm-kernel-feedback-list@broadcom.com
2473 S:      Supported
2474 F:      drivers/gpio/gpio-brcmstb.c
2475 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2476
2477 BROADCOM KONA GPIO DRIVER
2478 M:      Ray Jui <rjui@broadcom.com>
2479 L:      bcm-kernel-feedback-list@broadcom.com
2480 S:      Supported
2481 F:      drivers/gpio/gpio-bcm-kona.c
2482 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2483
2484 BROADCOM NVRAM DRIVER
2485 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2486 L:      linux-mips@linux-mips.org
2487 S:      Maintained
2488 F:      drivers/firmware/broadcom/*
2489
2490 BROADCOM STB NAND FLASH DRIVER
2491 M:      Brian Norris <computersforpeace@gmail.com>
2492 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2493 L:      linux-mtd@lists.infradead.org
2494 L:      bcm-kernel-feedback-list@broadcom.com
2495 S:      Maintained
2496 F:      drivers/mtd/nand/brcmnand/
2497
2498 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2499 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2500 L:      linux-wireless@vger.kernel.org
2501 S:      Maintained
2502 F:      drivers/bcma/
2503 F:      include/linux/bcma/
2504
2505 BROADCOM SYSTEMPORT ETHERNET DRIVER
2506 M:      Florian Fainelli <f.fainelli@gmail.com>
2507 L:      netdev@vger.kernel.org
2508 S:      Supported
2509 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2510
2511 BROCADE BFA FC SCSI DRIVER
2512 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2513 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2514 L:      linux-scsi@vger.kernel.org
2515 S:      Supported
2516 F:      drivers/scsi/bfa/
2517
2518 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2519 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2520 L:      netdev@vger.kernel.org
2521 S:      Supported
2522 F:      drivers/net/ethernet/brocade/bna/
2523
2524 BSG (block layer generic sg v4 driver)
2525 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2526 L:      linux-scsi@vger.kernel.org
2527 S:      Supported
2528 F:      block/bsg.c
2529 F:      include/linux/bsg.h
2530 F:      include/uapi/linux/bsg.h
2531
2532 BT87X AUDIO DRIVER
2533 M:      Clemens Ladisch <clemens@ladisch.de>
2534 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2535 T:      git git://git.alsa-project.org/alsa-kernel.git
2536 S:      Maintained
2537 F:      Documentation/sound/alsa/Bt87x.txt
2538 F:      sound/pci/bt87x.c
2539
2540 BT8XXGPIO DRIVER
2541 M:      Michael Buesch <m@bues.ch>
2542 W:      http://bu3sch.de/btgpio.php
2543 S:      Maintained
2544 F:      drivers/gpio/gpio-bt8xx.c
2545
2546 BTRFS FILE SYSTEM
2547 M:      Chris Mason <clm@fb.com>
2548 M:      Josef Bacik <jbacik@fb.com>
2549 M:      David Sterba <dsterba@suse.com>
2550 L:      linux-btrfs@vger.kernel.org
2551 W:      http://btrfs.wiki.kernel.org/
2552 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2554 S:      Maintained
2555 F:      Documentation/filesystems/btrfs.txt
2556 F:      fs/btrfs/
2557
2558 BTTV VIDEO4LINUX DRIVER
2559 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2560 L:      linux-media@vger.kernel.org
2561 W:      https://linuxtv.org
2562 T:      git git://linuxtv.org/media_tree.git
2563 S:      Odd fixes
2564 F:      Documentation/video4linux/bttv/
2565 F:      drivers/media/pci/bt8xx/bttv*
2566
2567 BUSLOGIC SCSI DRIVER
2568 M:      Khalid Aziz <khalid@gonehiking.org>
2569 L:      linux-scsi@vger.kernel.org
2570 S:      Maintained
2571 F:      drivers/scsi/BusLogic.*
2572 F:      drivers/scsi/FlashPoint.*
2573
2574 C-MEDIA CMI8788 DRIVER
2575 M:      Clemens Ladisch <clemens@ladisch.de>
2576 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2577 T:      git git://git.alsa-project.org/alsa-kernel.git
2578 S:      Maintained
2579 F:      sound/pci/oxygen/
2580
2581 C6X ARCHITECTURE
2582 M:      Mark Salter <msalter@redhat.com>
2583 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2584 L:      linux-c6x-dev@linux-c6x.org
2585 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2586 S:      Maintained
2587 F:      arch/c6x/
2588
2589 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2590 M:      David Howells <dhowells@redhat.com>
2591 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2592 S:      Supported
2593 F:      Documentation/filesystems/caching/cachefiles.txt
2594 F:      fs/cachefiles/
2595
2596 CADET FM/AM RADIO RECEIVER DRIVER
2597 M:      Hans Verkuil <hverkuil@xs4all.nl>
2598 L:      linux-media@vger.kernel.org
2599 T:      git git://linuxtv.org/media_tree.git
2600 W:      https://linuxtv.org
2601 S:      Maintained
2602 F:      drivers/media/radio/radio-cadet*
2603
2604 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2605 M:      Jonathan Corbet <corbet@lwn.net>
2606 L:      linux-media@vger.kernel.org
2607 T:      git git://linuxtv.org/media_tree.git
2608 S:      Maintained
2609 F:      Documentation/video4linux/cafe_ccic
2610 F:      drivers/media/platform/marvell-ccic/
2611
2612 CAIF NETWORK LAYER
2613 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2614 L:      netdev@vger.kernel.org
2615 S:      Supported
2616 F:      Documentation/networking/caif/
2617 F:      drivers/net/caif/
2618 F:      include/uapi/linux/caif/
2619 F:      include/net/caif/
2620 F:      net/caif/
2621
2622 CALGARY x86-64 IOMMU
2623 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2624 M:      "Jon D. Mason" <jdmason@kudzu.us>
2625 L:      discuss@x86-64.org
2626 S:      Maintained
2627 F:      arch/x86/kernel/pci-calgary_64.c
2628 F:      arch/x86/kernel/tce_64.c
2629 F:      arch/x86/include/asm/calgary.h
2630 F:      arch/x86/include/asm/tce.h
2631
2632 CAN NETWORK LAYER
2633 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2634 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2635 L:      linux-can@vger.kernel.org
2636 W:      https://github.com/linux-can
2637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2639 S:      Maintained
2640 F:      Documentation/networking/can.txt
2641 F:      net/can/
2642 F:      include/linux/can/core.h
2643 F:      include/uapi/linux/can.h
2644 F:      include/uapi/linux/can/bcm.h
2645 F:      include/uapi/linux/can/raw.h
2646 F:      include/uapi/linux/can/gw.h
2647
2648 CAN NETWORK DRIVERS
2649 M:      Wolfgang Grandegger <wg@grandegger.com>
2650 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2651 L:      linux-can@vger.kernel.org
2652 W:      https://github.com/linux-can
2653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2655 S:      Maintained
2656 F:      drivers/net/can/
2657 F:      include/linux/can/dev.h
2658 F:      include/linux/can/platform/
2659 F:      include/uapi/linux/can/error.h
2660 F:      include/uapi/linux/can/netlink.h
2661
2662 CAPABILITIES
2663 M:      Serge Hallyn <serge.hallyn@canonical.com>
2664 L:      linux-security-module@vger.kernel.org
2665 S:      Supported
2666 F:      include/linux/capability.h
2667 F:      include/uapi/linux/capability.h
2668 F:      security/commoncap.c
2669 F:      kernel/capability.c
2670
2671 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2672 M:      Kevin Tsai <ktsai@capellamicro.com>
2673 S:      Maintained
2674 F:      drivers/iio/light/cm*
2675 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2676
2677 CAVIUM LIQUIDIO NETWORK DRIVER
2678 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2679 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2680 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2681 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2682 L:     netdev@vger.kernel.org
2683 W:     http://www.cavium.com
2684 S:     Supported
2685 F:     drivers/net/ethernet/cavium/liquidio/
2686
2687 CC2520 IEEE-802.15.4 RADIO DRIVER
2688 M:      Varka Bhadram <varkabhadram@gmail.com>
2689 L:      linux-wpan@vger.kernel.org
2690 S:      Maintained
2691 F:      drivers/net/ieee802154/cc2520.c
2692 F:      include/linux/spi/cc2520.h
2693 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2694
2695 CELL BROADBAND ENGINE ARCHITECTURE
2696 M:      Arnd Bergmann <arnd@arndb.de>
2697 L:      linuxppc-dev@lists.ozlabs.org
2698 W:      http://www.ibm.com/developerworks/power/cell/
2699 S:      Supported
2700 F:      arch/powerpc/include/asm/cell*.h
2701 F:      arch/powerpc/include/asm/spu*.h
2702 F:      arch/powerpc/include/uapi/asm/spu*.h
2703 F:      arch/powerpc/oprofile/*cell*
2704 F:      arch/powerpc/platforms/cell/
2705
2706 CEPH COMMON CODE (LIBCEPH)
2707 M:      Ilya Dryomov <idryomov@gmail.com>
2708 M:      "Yan, Zheng" <zyan@redhat.com>
2709 M:      Sage Weil <sage@redhat.com>
2710 L:      ceph-devel@vger.kernel.org
2711 W:      http://ceph.com/
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2713 T:      git git://github.com/ceph/ceph-client.git
2714 S:      Supported
2715 F:      net/ceph/
2716 F:      include/linux/ceph/
2717 F:      include/linux/crush/
2718
2719 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2720 M:      "Yan, Zheng" <zyan@redhat.com>
2721 M:      Sage Weil <sage@redhat.com>
2722 M:      Ilya Dryomov <idryomov@gmail.com>
2723 L:      ceph-devel@vger.kernel.org
2724 W:      http://ceph.com/
2725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2726 T:      git git://github.com/ceph/ceph-client.git
2727 S:      Supported
2728 F:      Documentation/filesystems/ceph.txt
2729 F:      fs/ceph/
2730
2731 CERTIFICATE HANDLING:
2732 M:      David Howells <dhowells@redhat.com>
2733 M:      David Woodhouse <dwmw2@infradead.org>
2734 L:      keyrings@vger.kernel.org
2735 S:      Maintained
2736 F:      Documentation/module-signing.txt
2737 F:      certs/
2738 F:      scripts/sign-file.c
2739 F:      scripts/extract-cert.c
2740
2741 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2742 L:      linux-usb@vger.kernel.org
2743 S:      Orphan
2744 F:      Documentation/usb/WUSB-Design-overview.txt
2745 F:      Documentation/usb/wusb-cbaf
2746 F:      drivers/usb/host/hwa-hc.c
2747 F:      drivers/usb/host/whci/
2748 F:      drivers/usb/wusbcore/
2749 F:      include/linux/usb/wusb*
2750
2751 CFAG12864B LCD DRIVER
2752 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2753 W:      http://miguelojeda.es/auxdisplay.htm
2754 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2755 S:      Maintained
2756 F:      drivers/auxdisplay/cfag12864b.c
2757 F:      include/linux/cfag12864b.h
2758
2759 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2760 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2761 W:      http://miguelojeda.es/auxdisplay.htm
2762 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2763 S:      Maintained
2764 F:      drivers/auxdisplay/cfag12864bfb.c
2765 F:      include/linux/cfag12864b.h
2766
2767 CFG80211 and NL80211
2768 M:      Johannes Berg <johannes@sipsolutions.net>
2769 L:      linux-wireless@vger.kernel.org
2770 W:      http://wireless.kernel.org/
2771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2773 S:      Maintained
2774 F:      include/uapi/linux/nl80211.h
2775 F:      include/net/cfg80211.h
2776 F:      net/wireless/*
2777 X:      net/wireless/wext*
2778
2779 CHAR and MISC DRIVERS
2780 M:      Arnd Bergmann <arnd@arndb.de>
2781 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2783 S:      Supported
2784 F:      drivers/char/*
2785 F:      drivers/misc/*
2786 F:      include/linux/miscdevice.h
2787
2788 CHECKPATCH
2789 M:      Andy Whitcroft <apw@canonical.com>
2790 M:      Joe Perches <joe@perches.com>
2791 S:      Maintained
2792 F:      scripts/checkpatch.pl
2793
2794 CHINESE DOCUMENTATION
2795 M:      Harry Wei <harryxiyou@gmail.com>
2796 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2797 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2798 S:      Maintained
2799 F:      Documentation/zh_CN/
2800
2801 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2802 M:      Peter Chen <Peter.Chen@nxp.com>
2803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2804 L:      linux-usb@vger.kernel.org
2805 S:      Maintained
2806 F:      drivers/usb/chipidea/
2807
2808 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2809 M:      Hans de Goede <hdegoede@redhat.com>
2810 L:      linux-input@vger.kernel.org
2811 S:      Maintained
2812 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2813 F:      drivers/input/touchscreen/chipone_icn8318.c
2814
2815 CHROME HARDWARE PLATFORM SUPPORT
2816 M:      Olof Johansson <olof@lixom.net>
2817 S:      Maintained
2818 F:      drivers/platform/chrome/
2819
2820 CISCO VIC ETHERNET NIC DRIVER
2821 M:      Christian Benvenuti <benve@cisco.com>
2822 M:      Sujith Sankar <ssujith@cisco.com>
2823 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2824 M:      Neel Patel <neepatel@cisco.com>
2825 S:      Supported
2826 F:      drivers/net/ethernet/cisco/enic/
2827
2828 CISCO VIC LOW LATENCY NIC DRIVER
2829 M:      Christian Benvenuti <benve@cisco.com>
2830 M:      Dave Goodell <dgoodell@cisco.com>
2831 S:      Supported
2832 F:      drivers/infiniband/hw/usnic/
2833
2834 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2835 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2836 L:      netdev@vger.kernel.org
2837 S:      Maintained
2838 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2839
2840 CIRRUS LOGIC AUDIO CODEC DRIVERS
2841 M:      Brian Austin <brian.austin@cirrus.com>
2842 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2843 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2844 S:      Maintained
2845 F:      sound/soc/codecs/cs*
2846
2847 CLEANCACHE API
2848 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2849 L:      linux-kernel@vger.kernel.org
2850 S:      Maintained
2851 F:      mm/cleancache.c
2852 F:      include/linux/cleancache.h
2853
2854 CLK API
2855 M:      Russell King <linux@arm.linux.org.uk>
2856 L:      linux-clk@vger.kernel.org
2857 S:      Maintained
2858 F:      include/linux/clk.h
2859
2860 CLOCKSOURCE, CLOCKEVENT DRIVERS
2861 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2862 M:      Thomas Gleixner <tglx@linutronix.de>
2863 L:      linux-kernel@vger.kernel.org
2864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2865 S:      Supported
2866 F:      drivers/clocksource
2867
2868 CISCO FCOE HBA DRIVER
2869 M:      Hiral Patel <hiralpat@cisco.com>
2870 M:      Suma Ramars <sramars@cisco.com>
2871 M:      Brian Uchino <buchino@cisco.com>
2872 L:      linux-scsi@vger.kernel.org
2873 S:      Supported
2874 F:      drivers/scsi/fnic/
2875
2876 CISCO SCSI HBA DRIVER
2877 M:      Narsimhulu Musini <nmusini@cisco.com>
2878 M:      Sesidhar Baddela <sebaddel@cisco.com>
2879 L:      linux-scsi@vger.kernel.org
2880 S:      Supported
2881 F:      drivers/scsi/snic/
2882
2883 CMPC ACPI DRIVER
2884 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2885 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2886 L:      platform-driver-x86@vger.kernel.org
2887 S:      Supported
2888 F:      drivers/platform/x86/classmate-laptop.c
2889
2890 COBALT MEDIA DRIVER
2891 M:      Hans Verkuil <hans.verkuil@cisco.com>
2892 L:      linux-media@vger.kernel.org
2893 T:      git git://linuxtv.org/media_tree.git
2894 W:      https://linuxtv.org
2895 S:      Supported
2896 F:      drivers/media/pci/cobalt/
2897
2898 COCCINELLE/Semantic Patches (SmPL)
2899 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2900 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2901 M:      Nicolas Palix <nicolas.palix@imag.fr>
2902 M:      Michal Marek <mmarek@suse.com>
2903 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2905 W:      http://coccinelle.lip6.fr/
2906 S:      Supported
2907 F:      Documentation/coccinelle.txt
2908 F:      scripts/coccinelle/
2909 F:      scripts/coccicheck
2910
2911 CODA FILE SYSTEM
2912 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2913 M:      coda@cs.cmu.edu
2914 L:      codalist@coda.cs.cmu.edu
2915 W:      http://www.coda.cs.cmu.edu/
2916 S:      Maintained
2917 F:      Documentation/filesystems/coda.txt
2918 F:      fs/coda/
2919 F:      include/linux/coda*.h
2920 F:      include/uapi/linux/coda*.h
2921
2922 CODA V4L2 MEM2MEM DRIVER
2923 M:      Philipp Zabel <p.zabel@pengutronix.de>
2924 L:      linux-media@vger.kernel.org
2925 S:      Maintained
2926 F:      Documentation/devicetree/bindings/media/coda.txt
2927 F:      drivers/media/platform/coda/
2928
2929 COMMON CLK FRAMEWORK
2930 M:      Michael Turquette <mturquette@baylibre.com>
2931 M:      Stephen Boyd <sboyd@codeaurora.org>
2932 L:      linux-clk@vger.kernel.org
2933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2934 S:      Maintained
2935 F:      drivers/clk/
2936 X:      drivers/clk/clkdev.c
2937 F:      include/linux/clk-pr*
2938 F:      include/linux/clk/
2939
2940 COMMON INTERNET FILE SYSTEM (CIFS)
2941 M:      Steve French <sfrench@samba.org>
2942 L:      linux-cifs@vger.kernel.org
2943 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2944 W:      http://linux-cifs.samba.org/
2945 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2946 S:      Supported
2947 F:      Documentation/filesystems/cifs/
2948 F:      fs/cifs/
2949
2950 COMPACTPCI HOTPLUG CORE
2951 M:      Scott Murray <scott@spiteful.org>
2952 L:      linux-pci@vger.kernel.org
2953 S:      Maintained
2954 F:      drivers/pci/hotplug/cpci_hotplug*
2955
2956 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2957 M:      Scott Murray <scott@spiteful.org>
2958 L:      linux-pci@vger.kernel.org
2959 S:      Maintained
2960 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2961
2962 COMPACTPCI HOTPLUG GENERIC DRIVER
2963 M:      Scott Murray <scott@spiteful.org>
2964 L:      linux-pci@vger.kernel.org
2965 S:      Maintained
2966 F:      drivers/pci/hotplug/cpcihp_generic.c
2967
2968 COMPAL LAPTOP SUPPORT
2969 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2970 L:      platform-driver-x86@vger.kernel.org
2971 S:      Maintained
2972 F:      drivers/platform/x86/compal-laptop.c
2973
2974 CONEXANT ACCESSRUNNER USB DRIVER
2975 L:      accessrunner-general@lists.sourceforge.net
2976 W:      http://accessrunner.sourceforge.net/
2977 S:      Orphan
2978 F:      drivers/usb/atm/cxacru.c
2979
2980 CONFIGFS
2981 M:      Joel Becker <jlbec@evilplan.org>
2982 M:      Christoph Hellwig <hch@lst.de>
2983 T:      git git://git.infradead.org/users/hch/configfs.git
2984 S:      Supported
2985 F:      fs/configfs/
2986 F:      include/linux/configfs.h
2987
2988 CONNECTOR
2989 M:      Evgeniy Polyakov <zbr@ioremap.net>
2990 L:      netdev@vger.kernel.org
2991 S:      Maintained
2992 F:      drivers/connector/
2993
2994 CONTROL GROUP (CGROUP)
2995 M:      Tejun Heo <tj@kernel.org>
2996 M:      Li Zefan <lizefan@huawei.com>
2997 M:      Johannes Weiner <hannes@cmpxchg.org>
2998 L:      cgroups@vger.kernel.org
2999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3000 S:      Maintained
3001 F:      Documentation/cgroups/
3002 F:      include/linux/cgroup*
3003 F:      kernel/cgroup*
3004
3005 CONTROL GROUP - CPUSET
3006 M:      Li Zefan <lizefan@huawei.com>
3007 L:      cgroups@vger.kernel.org
3008 W:      http://www.bullopensource.org/cpuset/
3009 W:      http://oss.sgi.com/projects/cpusets/
3010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3011 S:      Maintained
3012 F:      Documentation/cgroups/cpusets.txt
3013 F:      include/linux/cpuset.h
3014 F:      kernel/cpuset.c
3015
3016 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3017 M:      Johannes Weiner <hannes@cmpxchg.org>
3018 M:      Michal Hocko <mhocko@kernel.org>
3019 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3020 L:      cgroups@vger.kernel.org
3021 L:      linux-mm@kvack.org
3022 S:      Maintained
3023 F:      mm/memcontrol.c
3024 F:      mm/swap_cgroup.c
3025
3026 CORETEMP HARDWARE MONITORING DRIVER
3027 M:      Fenghua Yu <fenghua.yu@intel.com>
3028 L:      lm-sensors@lm-sensors.org
3029 S:      Maintained
3030 F:      Documentation/hwmon/coretemp
3031 F:      drivers/hwmon/coretemp.c
3032
3033 COSA/SRP SYNC SERIAL DRIVER
3034 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3035 W:      http://www.fi.muni.cz/~kas/cosa/
3036 S:      Maintained
3037 F:      drivers/net/wan/cosa*
3038
3039 CPMAC ETHERNET DRIVER
3040 M:      Florian Fainelli <florian@openwrt.org>
3041 L:      netdev@vger.kernel.org
3042 S:      Maintained
3043 F:      drivers/net/ethernet/ti/cpmac.c
3044
3045 CPU FREQUENCY DRIVERS
3046 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3047 M:      Viresh Kumar <viresh.kumar@linaro.org>
3048 L:      linux-pm@vger.kernel.org
3049 S:      Maintained
3050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3051 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3052 F:      drivers/cpufreq/
3053 F:      include/linux/cpufreq.h
3054
3055 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3056 M:      Viresh Kumar <viresh.kumar@linaro.org>
3057 M:      Sudeep Holla <sudeep.holla@arm.com>
3058 L:      linux-pm@vger.kernel.org
3059 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3060 S:      Maintained
3061 F:      drivers/cpufreq/arm_big_little.h
3062 F:      drivers/cpufreq/arm_big_little.c
3063 F:      drivers/cpufreq/arm_big_little_dt.c
3064
3065 CPUIDLE DRIVER - ARM BIG LITTLE
3066 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3067 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3068 L:      linux-pm@vger.kernel.org
3069 L:      linux-arm-kernel@lists.infradead.org
3070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3071 S:      Maintained
3072 F:      drivers/cpuidle/cpuidle-big_little.c
3073
3074 CPUIDLE DRIVER - ARM EXYNOS
3075 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3076 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3077 M:      Kukjin Kim <kgene@kernel.org>
3078 L:      linux-pm@vger.kernel.org
3079 L:      linux-samsung-soc@vger.kernel.org
3080 S:      Supported
3081 F:      drivers/cpuidle/cpuidle-exynos.c
3082 F:      arch/arm/mach-exynos/pm.c
3083
3084 CPUIDLE DRIVERS
3085 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3086 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3087 L:      linux-pm@vger.kernel.org
3088 S:      Maintained
3089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3090 F:      drivers/cpuidle/*
3091 F:      include/linux/cpuidle.h
3092
3093 CPUID/MSR DRIVER
3094 M:      "H. Peter Anvin" <hpa@zytor.com>
3095 S:      Maintained
3096 F:      arch/x86/kernel/cpuid.c
3097 F:      arch/x86/kernel/msr.c
3098
3099 CPU POWER MONITORING SUBSYSTEM
3100 M:      Thomas Renninger <trenn@suse.com>
3101 L:      linux-pm@vger.kernel.org
3102 S:      Maintained
3103 F:      tools/power/cpupower/
3104
3105 CRAMFS FILESYSTEM
3106 W:      http://sourceforge.net/projects/cramfs/
3107 S:      Orphan / Obsolete
3108 F:      Documentation/filesystems/cramfs.txt
3109 F:      fs/cramfs/
3110
3111 CRIS PORT
3112 M:      Mikael Starvik <starvik@axis.com>
3113 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3114 L:      linux-cris-kernel@axis.com
3115 W:      http://developer.axis.com
3116 S:      Maintained
3117 F:      arch/cris/
3118 F:      drivers/tty/serial/crisv10.*
3119
3120 CRYPTO API
3121 M:      Herbert Xu <herbert@gondor.apana.org.au>
3122 M:      "David S. Miller" <davem@davemloft.net>
3123 L:      linux-crypto@vger.kernel.org
3124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3125 S:      Maintained
3126 F:      Documentation/crypto/
3127 F:      Documentation/DocBook/crypto-API.tmpl
3128 F:      arch/*/crypto/
3129 F:      crypto/
3130 F:      drivers/crypto/
3131 F:      include/crypto/
3132
3133 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3134 M:      Neil Horman <nhorman@tuxdriver.com>
3135 L:      linux-crypto@vger.kernel.org
3136 S:      Maintained
3137 F:      crypto/ansi_cprng.c
3138 F:      crypto/rng.c
3139
3140 CS3308 MEDIA DRIVER
3141 M:      Hans Verkuil <hverkuil@xs4all.nl>
3142 L:      linux-media@vger.kernel.org
3143 T:      git git://linuxtv.org/media_tree.git
3144 W:      http://linuxtv.org
3145 S:      Odd Fixes
3146 F:      drivers/media/i2c/cs3308.c
3147 F:      drivers/media/i2c/cs3308.h
3148
3149 CS5535 Audio ALSA driver
3150 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3151 S:      Maintained
3152 F:      sound/pci/cs5535audio/
3153
3154 CW1200 WLAN driver
3155 M:      Solomon Peachy <pizza@shaftnet.org>
3156 S:      Maintained
3157 F:      drivers/net/wireless/st/cw1200/
3158
3159 CX18 VIDEO4LINUX DRIVER
3160 M:      Andy Walls <awalls@md.metrocast.net>
3161 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3162 L:      linux-media@vger.kernel.org
3163 T:      git git://linuxtv.org/media_tree.git
3164 W:      https://linuxtv.org
3165 W:      http://www.ivtvdriver.org/index.php/Cx18
3166 S:      Maintained
3167 F:      Documentation/video4linux/cx18.txt
3168 F:      drivers/media/pci/cx18/
3169 F:      include/uapi/linux/ivtv*
3170
3171 CX2341X MPEG ENCODER HELPER MODULE
3172 M:      Hans Verkuil <hverkuil@xs4all.nl>
3173 L:      linux-media@vger.kernel.org
3174 T:      git git://linuxtv.org/media_tree.git
3175 W:      https://linuxtv.org
3176 S:      Maintained
3177 F:      drivers/media/common/cx2341x*
3178 F:      include/media/cx2341x*
3179
3180 CX24120 MEDIA DRIVER
3181 M:      Jemma Denson <jdenson@gmail.com>
3182 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3183 L:      linux-media@vger.kernel.org
3184 W:      https://linuxtv.org
3185 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3186 S:      Maintained
3187 F:      drivers/media/dvb-frontends/cx24120*
3188
3189 CX88 VIDEO4LINUX DRIVER
3190 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3191 L:      linux-media@vger.kernel.org
3192 W:      https://linuxtv.org
3193 T:      git git://linuxtv.org/media_tree.git
3194 S:      Odd fixes
3195 F:      Documentation/video4linux/cx88/
3196 F:      drivers/media/pci/cx88/
3197
3198 CXD2820R MEDIA DRIVER
3199 M:      Antti Palosaari <crope@iki.fi>
3200 L:      linux-media@vger.kernel.org
3201 W:      https://linuxtv.org
3202 W:      http://palosaari.fi/linux/
3203 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3204 T:      git git://linuxtv.org/anttip/media_tree.git
3205 S:      Maintained
3206 F:      drivers/media/dvb-frontends/cxd2820r*
3207
3208 CXGB3 ETHERNET DRIVER (CXGB3)
3209 M:      Santosh Raspatur <santosh@chelsio.com>
3210 L:      netdev@vger.kernel.org
3211 W:      http://www.chelsio.com
3212 S:      Supported
3213 F:      drivers/net/ethernet/chelsio/cxgb3/
3214
3215 CXGB3 ISCSI DRIVER (CXGB3I)
3216 M:      Karen Xie <kxie@chelsio.com>
3217 L:      linux-scsi@vger.kernel.org
3218 W:      http://www.chelsio.com
3219 S:      Supported
3220 F:      drivers/scsi/cxgbi/cxgb3i
3221
3222 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3223 M:      Steve Wise <swise@chelsio.com>
3224 L:      linux-rdma@vger.kernel.org
3225 W:      http://www.openfabrics.org
3226 S:      Supported
3227 F:      drivers/infiniband/hw/cxgb3/
3228
3229 CXGB4 ETHERNET DRIVER (CXGB4)
3230 M:      Hariprasad S <hariprasad@chelsio.com>
3231 L:      netdev@vger.kernel.org
3232 W:      http://www.chelsio.com
3233 S:      Supported
3234 F:      drivers/net/ethernet/chelsio/cxgb4/
3235
3236 CXGB4 ISCSI DRIVER (CXGB4I)
3237 M:      Karen Xie <kxie@chelsio.com>
3238 L:      linux-scsi@vger.kernel.org
3239 W:      http://www.chelsio.com
3240 S:      Supported
3241 F:      drivers/scsi/cxgbi/cxgb4i
3242
3243 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3244 M:      Steve Wise <swise@chelsio.com>
3245 L:      linux-rdma@vger.kernel.org
3246 W:      http://www.openfabrics.org
3247 S:      Supported
3248 F:      drivers/infiniband/hw/cxgb4/
3249
3250 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3251 M:      Casey Leedom <leedom@chelsio.com>
3252 L:      netdev@vger.kernel.org
3253 W:      http://www.chelsio.com
3254 S:      Supported
3255 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3256
3257 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3258 M:      Ian Munsie <imunsie@au1.ibm.com>
3259 M:      Michael Neuling <mikey@neuling.org>
3260 L:      linuxppc-dev@lists.ozlabs.org
3261 S:      Supported
3262 F:      drivers/misc/cxl/
3263 F:      include/misc/cxl*
3264 F:      include/uapi/misc/cxl.h
3265 F:      Documentation/powerpc/cxl.txt
3266 F:      Documentation/powerpc/cxl.txt
3267 F:      Documentation/ABI/testing/sysfs-class-cxl
3268
3269 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3270 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3271 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3272 L:      linux-scsi@vger.kernel.org
3273 S:      Supported
3274 F:      drivers/scsi/cxlflash/
3275 F:      include/uapi/scsi/cxlflash_ioctls.h
3276 F:      Documentation/powerpc/cxlflash.txt
3277
3278 STMMAC ETHERNET DRIVER
3279 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3280 L:      netdev@vger.kernel.org
3281 W:      http://www.stlinux.com
3282 S:      Supported
3283 F:      drivers/net/ethernet/stmicro/stmmac/
3284
3285 CYBERPRO FB DRIVER
3286 M:      Russell King <linux@arm.linux.org.uk>
3287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3288 W:      http://www.arm.linux.org.uk/
3289 S:      Maintained
3290 F:      drivers/video/fbdev/cyber2000fb.*
3291
3292 CYCLADES ASYNC MUX DRIVER
3293 W:      http://www.cyclades.com/
3294 S:      Orphan
3295 F:      drivers/tty/cyclades.c
3296 F:      include/linux/cyclades.h
3297 F:      include/uapi/linux/cyclades.h
3298
3299 CYCLADES PC300 DRIVER
3300 W:      http://www.cyclades.com/
3301 S:      Orphan
3302 F:      drivers/net/wan/pc300*
3303
3304 CYPRESS_FIRMWARE MEDIA DRIVER
3305 M:      Antti Palosaari <crope@iki.fi>
3306 L:      linux-media@vger.kernel.org
3307 W:      https://linuxtv.org
3308 W:      http://palosaari.fi/linux/
3309 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3310 T:      git git://linuxtv.org/anttip/media_tree.git
3311 S:      Maintained
3312 F:      drivers/media/common/cypress_firmware*
3313
3314 CYTTSP TOUCHSCREEN DRIVER
3315 M:      Ferruh Yigit <fery@cypress.com>
3316 L:      linux-input@vger.kernel.org
3317 S:      Supported
3318 F:      drivers/input/touchscreen/cyttsp*
3319 F:      include/linux/input/cyttsp.h
3320
3321 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3322 M:      Joshua Kinard <kumba@gentoo.org>
3323 S:      Maintained
3324 F:      drivers/rtc/rtc-ds1685.c
3325 F:      include/linux/rtc/ds1685.h
3326
3327 DAMA SLAVE for AX.25
3328 M:      Joerg Reuter <jreuter@yaina.de>
3329 W:      http://yaina.de/jreuter/
3330 W:      http://www.qsl.net/dl1bke/
3331 L:      linux-hams@vger.kernel.org
3332 S:      Maintained
3333 F:      net/ax25/af_ax25.c
3334 F:      net/ax25/ax25_dev.c
3335 F:      net/ax25/ax25_ds_*
3336 F:      net/ax25/ax25_in.c
3337 F:      net/ax25/ax25_out.c
3338 F:      net/ax25/ax25_timer.c
3339 F:      net/ax25/sysctl_net_ax25.c
3340
3341 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3342 L:      netdev@vger.kernel.org
3343 S:      Orphan
3344 F:      Documentation/networking/dmfe.txt
3345 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3346
3347 DC390/AM53C974 SCSI driver
3348 M:      Hannes Reinecke <hare@suse.com>
3349 L:      linux-scsi@vger.kernel.org
3350 S:      Maintained
3351 F:      drivers/scsi/am53c974.c
3352
3353 DC395x SCSI driver
3354 M:      Oliver Neukum <oliver@neukum.org>
3355 M:      Ali Akcaagac <aliakc@web.de>
3356 M:      Jamie Lenehan <lenehan@twibble.org>
3357 L:      dc395x@twibble.org
3358 W:      http://twibble.org/dist/dc395x/
3359 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3360 S:      Maintained
3361 F:      Documentation/scsi/dc395x.txt
3362 F:      drivers/scsi/dc395x.*
3363
3364 DCCP PROTOCOL
3365 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3366 L:      dccp@vger.kernel.org
3367 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3368 S:      Maintained
3369 F:      include/linux/dccp.h
3370 F:      include/uapi/linux/dccp.h
3371 F:      include/linux/tfrc.h
3372 F:      net/dccp/
3373
3374 DECnet NETWORK LAYER
3375 W:      http://linux-decnet.sourceforge.net
3376 L:      linux-decnet-user@lists.sourceforge.net
3377 S:      Orphan
3378 F:      Documentation/networking/decnet.txt
3379 F:      net/decnet/
3380
3381 DECSTATION PLATFORM SUPPORT
3382 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3383 L:      linux-mips@linux-mips.org
3384 W:      http://www.linux-mips.org/wiki/DECstation
3385 S:      Maintained
3386 F:      arch/mips/dec/
3387 F:      arch/mips/include/asm/dec/
3388 F:      arch/mips/include/asm/mach-dec/
3389
3390 DEFXX FDDI NETWORK DRIVER
3391 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3392 S:      Maintained
3393 F:      drivers/net/fddi/defxx.*
3394
3395 DELL LAPTOP DRIVER
3396 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3397 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3398 L:      platform-driver-x86@vger.kernel.org
3399 S:      Maintained
3400 F:      drivers/platform/x86/dell-laptop.c
3401
3402 DELL LAPTOP RBTN DRIVER
3403 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3404 S:      Maintained
3405 F:      drivers/platform/x86/dell-rbtn.*
3406
3407 DELL LAPTOP FREEFALL DRIVER
3408 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3409 S:      Maintained
3410 F:      drivers/platform/x86/dell-smo8800.c
3411
3412 DELL LAPTOP SMM DRIVER
3413 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3414 S:      Maintained
3415 F:      drivers/hwmon/dell-smm-hwmon.c
3416 F:      include/uapi/linux/i8k.h
3417
3418 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3419 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3420 S:      Maintained
3421 F:      Documentation/dcdbas.txt
3422 F:      drivers/firmware/dcdbas.*
3423
3424 DELL WMI EXTRAS DRIVER
3425 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3426 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3427 S:      Maintained
3428 F:      drivers/platform/x86/dell-wmi.c
3429
3430 DESIGNWARE USB2 DRD IP DRIVER
3431 M:      John Youn <johnyoun@synopsys.com>
3432 L:      linux-usb@vger.kernel.org
3433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3434 S:      Maintained
3435 F:      drivers/usb/dwc2/
3436
3437 DESIGNWARE USB3 DRD IP DRIVER
3438 M:      Felipe Balbi <balbi@ti.com>
3439 L:      linux-usb@vger.kernel.org
3440 L:      linux-omap@vger.kernel.org
3441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3442 S:      Maintained
3443 F:      drivers/usb/dwc3/
3444
3445 DEVICE COREDUMP (DEV_COREDUMP)
3446 M:      Johannes Berg <johannes@sipsolutions.net>
3447 L:      linux-kernel@vger.kernel.org
3448 S:      Maintained
3449 F:      drivers/base/devcoredump.c
3450 F:      include/linux/devcoredump.h
3451
3452 DEVICE FREQUENCY (DEVFREQ)
3453 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3454 M:      Kyungmin Park <kyungmin.park@samsung.com>
3455 L:      linux-pm@vger.kernel.org
3456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3457 S:      Maintained
3458 F:      drivers/devfreq/
3459 F:      include/linux/devfreq.h
3460 F:      Documentation/devicetree/bindings/devfreq/
3461
3462 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3463 M:      Chanwoo Choi <cw00.choi@samsung.com>
3464 L:      linux-pm@vger.kernel.org
3465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3466 S:      Supported
3467 F:      drivers/devfreq/event/
3468 F:      drivers/devfreq/devfreq-event.c
3469 F:      include/linux/devfreq-event.h
3470 F:      Documentation/devicetree/bindings/devfreq/event/
3471
3472 DEVICE NUMBER REGISTRY
3473 M:      Torben Mathiasen <device@lanana.org>
3474 W:      http://lanana.org/docs/device-list/index.html
3475 S:      Maintained
3476
3477 DEVICE-MAPPER  (LVM)
3478 M:      Alasdair Kergon <agk@redhat.com>
3479 M:      Mike Snitzer <snitzer@redhat.com>
3480 M:      dm-devel@redhat.com
3481 L:      dm-devel@redhat.com
3482 W:      http://sources.redhat.com/dm
3483 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3485 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3486 S:      Maintained
3487 F:      Documentation/device-mapper/
3488 F:      drivers/md/dm*
3489 F:      drivers/md/persistent-data/
3490 F:      include/linux/device-mapper.h
3491 F:      include/linux/dm-*.h
3492 F:      include/uapi/linux/dm-*.h
3493
3494 DIALOG SEMICONDUCTOR DRIVERS
3495 M:      Support Opensource <support.opensource@diasemi.com>
3496 W:      http://www.dialog-semiconductor.com/products
3497 S:      Supported
3498 F:      Documentation/hwmon/da90??
3499 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3500 F:      drivers/gpio/gpio-da90??.c
3501 F:      drivers/hwmon/da90??-hwmon.c
3502 F:      drivers/iio/adc/da91??-*.c
3503 F:      drivers/input/misc/da90??_onkey.c
3504 F:      drivers/input/touchscreen/da9052_tsi.c
3505 F:      drivers/leds/leds-da90??.c
3506 F:      drivers/mfd/da903x.c
3507 F:      drivers/mfd/da90??-*.c
3508 F:      drivers/mfd/da91??-*.c
3509 F:      drivers/power/da9052-battery.c
3510 F:      drivers/power/da91??-*.c
3511 F:      drivers/regulator/da903x.c
3512 F:      drivers/regulator/da9???-regulator.[ch]
3513 F:      drivers/rtc/rtc-da90??.c
3514 F:      drivers/video/backlight/da90??_bl.c
3515 F:      drivers/watchdog/da90??_wdt.c
3516 F:      include/linux/mfd/da903x.h
3517 F:      include/linux/mfd/da9052/
3518 F:      include/linux/mfd/da9055/
3519 F:      include/linux/mfd/da9063/
3520 F:      include/linux/mfd/da9150/
3521 F:      include/sound/da[79]*.h
3522 F:      sound/soc/codecs/da[79]*.[ch]
3523
3524 DIGI NEO AND CLASSIC PCI PRODUCTS
3525 M:      Lidza Louina <lidza.louina@gmail.com>
3526 M:      Mark Hounschell <markh@compro.net>
3527 L:      driverdev-devel@linuxdriverproject.org
3528 S:      Maintained
3529 F:      drivers/staging/dgnc/
3530
3531 DIGI EPCA PCI PRODUCTS
3532 M:      Lidza Louina <lidza.louina@gmail.com>
3533 M:      Daeseok Youn <daeseok.youn@gmail.com>
3534 L:      driverdev-devel@linuxdriverproject.org
3535 S:      Maintained
3536 F:      drivers/staging/dgap/
3537
3538 DIOLAN U2C-12 I2C DRIVER
3539 M:      Guenter Roeck <linux@roeck-us.net>
3540 L:      linux-i2c@vger.kernel.org
3541 S:      Maintained
3542 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3543
3544 DIRECT ACCESS (DAX)
3545 M:      Matthew Wilcox <willy@linux.intel.com>
3546 L:      linux-fsdevel@vger.kernel.org
3547 S:      Supported
3548 F:      fs/dax.c
3549
3550 DIRECTORY NOTIFICATION (DNOTIFY)
3551 M:      Eric Paris <eparis@parisplace.org>
3552 S:      Maintained
3553 F:      Documentation/filesystems/dnotify.txt
3554 F:      fs/notify/dnotify/
3555 F:      include/linux/dnotify.h
3556
3557 DISK GEOMETRY AND PARTITION HANDLING
3558 M:      Andries Brouwer <aeb@cwi.nl>
3559 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3560 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3561 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3562 S:      Maintained
3563
3564 DISKQUOTA
3565 M:      Jan Kara <jack@suse.com>
3566 S:      Maintained
3567 F:      Documentation/filesystems/quota.txt
3568 F:      fs/quota/
3569 F:      include/linux/quota*.h
3570 F:      include/uapi/linux/quota*.h
3571
3572 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3573 M:      Bernie Thompson <bernie@plugable.com>
3574 L:      linux-fbdev@vger.kernel.org
3575 S:      Maintained
3576 W:      http://plugable.com/category/projects/udlfb/
3577 F:      drivers/video/fbdev/udlfb.c
3578 F:      include/video/udlfb.h
3579 F:      Documentation/fb/udlfb.txt
3580
3581 DISTRIBUTED LOCK MANAGER (DLM)
3582 M:      Christine Caulfield <ccaulfie@redhat.com>
3583 M:      David Teigland <teigland@redhat.com>
3584 L:      cluster-devel@redhat.com
3585 W:      http://sources.redhat.com/cluster/
3586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/dlm.git
3587 S:      Supported
3588 F:      fs/dlm/
3589
3590 DMA BUFFER SHARING FRAMEWORK
3591 M:      Sumit Semwal <sumit.semwal@linaro.org>
3592 S:      Maintained
3593 L:      linux-media@vger.kernel.org
3594 L:      dri-devel@lists.freedesktop.org
3595 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3596 F:      drivers/dma-buf/
3597 F:      include/linux/dma-buf*
3598 F:      include/linux/reservation.h
3599 F:      include/linux/*fence.h
3600 F:      Documentation/dma-buf-sharing.txt
3601 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3602
3603 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3604 M:      Vinod Koul <vinod.koul@intel.com>
3605 L:      dmaengine@vger.kernel.org
3606 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3607 S:      Maintained
3608 F:      drivers/dma/
3609 F:      include/linux/dmaengine.h
3610 F:      Documentation/dmaengine/
3611 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3612
3613 DME1737 HARDWARE MONITOR DRIVER
3614 M:      Juerg Haefliger <juergh@gmail.com>
3615 L:      lm-sensors@lm-sensors.org
3616 S:      Maintained
3617 F:      Documentation/hwmon/dme1737
3618 F:      drivers/hwmon/dme1737.c
3619
3620 DMI/SMBIOS SUPPORT
3621 M:      Jean Delvare <jdelvare@suse.com>
3622 S:      Maintained
3623 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3624 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3625 F:      drivers/firmware/dmi-id.c
3626 F:      drivers/firmware/dmi_scan.c
3627 F:      include/linux/dmi.h
3628
3629 DOCUMENTATION
3630 M:      Jonathan Corbet <corbet@lwn.net>
3631 L:      linux-doc@vger.kernel.org
3632 S:      Maintained
3633 F:      Documentation/
3634 F:      scripts/docproc.c
3635 F:      scripts/kernel-doc*
3636 X:      Documentation/ABI/
3637 X:      Documentation/devicetree/
3638 X:      Documentation/acpi
3639 X:      Documentation/power
3640 X:      Documentation/spi
3641 X:      Documentation/DocBook/media
3642 T:      git git://git.lwn.net/linux.git docs-next
3643
3644 DOUBLETALK DRIVER
3645 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3646 L:      blinux-list@redhat.com
3647 S:      Maintained
3648 F:      drivers/char/dtlk.c
3649 F:      include/linux/dtlk.h
3650
3651 DPT_I2O SCSI RAID DRIVER
3652 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3653 L:      linux-scsi@vger.kernel.org
3654 W:      http://www.adaptec.com/
3655 S:      Maintained
3656 F:      drivers/scsi/dpt*
3657 F:      drivers/scsi/dpt/
3658
3659 DRBD DRIVER
3660 P:      Philipp Reisner
3661 P:      Lars Ellenberg
3662 M:      drbd-dev@lists.linbit.com
3663 L:      drbd-user@lists.linbit.com
3664 W:      http://www.drbd.org
3665 T:      git git://git.drbd.org/linux-2.6-drbd.git drbd
3666 T:      git git://git.drbd.org/drbd-8.3.git
3667 S:      Supported
3668 F:      drivers/block/drbd/
3669 F:      lib/lru_cache.c
3670 F:      Documentation/blockdev/drbd/
3671
3672 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3673 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3675 S:      Supported
3676 F:      Documentation/kobject.txt
3677 F:      drivers/base/
3678 F:      fs/debugfs/
3679 F:      fs/kernfs/
3680 F:      fs/sysfs/
3681 F:      include/linux/debugfs.h
3682 F:      include/linux/kobj*
3683 F:      lib/kobj*
3684
3685 DRM DRIVERS
3686 M:      David Airlie <airlied@linux.ie>
3687 L:      dri-devel@lists.freedesktop.org
3688 T:      git git://people.freedesktop.org/~airlied/linux
3689 S:      Maintained
3690 F:      drivers/gpu/drm/
3691 F:      drivers/gpu/vga/
3692 F:      include/drm/
3693 F:      include/uapi/drm/
3694
3695 RADEON DRM DRIVERS
3696 M:      Alex Deucher <alexander.deucher@amd.com>
3697 M:      Christian König <christian.koenig@amd.com>
3698 L:      dri-devel@lists.freedesktop.org
3699 T:      git git://people.freedesktop.org/~agd5f/linux
3700 S:      Supported
3701 F:      drivers/gpu/drm/radeon/
3702 F:      include/uapi/drm/radeon*
3703
3704 DRM PANEL DRIVERS
3705 M:      Thierry Reding <thierry.reding@gmail.com>
3706 L:      dri-devel@lists.freedesktop.org
3707 T:      git git://anongit.freedesktop.org/tegra/linux.git
3708 S:      Maintained
3709 F:      drivers/gpu/drm/drm_panel.c
3710 F:      drivers/gpu/drm/panel/
3711 F:      include/drm/drm_panel.h
3712 F:      Documentation/devicetree/bindings/display/panel/
3713
3714 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3715 M:      Daniel Vetter <daniel.vetter@intel.com>
3716 M:      Jani Nikula <jani.nikula@linux.intel.com>
3717 L:      intel-gfx@lists.freedesktop.org
3718 L:      dri-devel@lists.freedesktop.org
3719 W:      https://01.org/linuxgraphics/
3720 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3721 T:      git git://anongit.freedesktop.org/drm-intel
3722 S:      Supported
3723 F:      drivers/gpu/drm/i915/
3724 F:      include/drm/i915*
3725 F:      include/uapi/drm/i915*
3726
3727 DRM DRIVERS FOR ATMEL HLCDC
3728 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3729 L:      dri-devel@lists.freedesktop.org
3730 S:      Supported
3731 F:      drivers/gpu/drm/atmel-hlcdc/
3732 F:      Documentation/devicetree/bindings/drm/atmel/
3733
3734 DRM DRIVERS FOR EXYNOS
3735 M:      Inki Dae <inki.dae@samsung.com>
3736 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3737 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3738 M:      Kyungmin Park <kyungmin.park@samsung.com>
3739 L:      dri-devel@lists.freedesktop.org
3740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3741 S:      Supported
3742 F:      drivers/gpu/drm/exynos/
3743 F:      include/drm/exynos*
3744 F:      include/uapi/drm/exynos*
3745
3746 DRM DRIVERS FOR FREESCALE DCU
3747 M:      Jianwei Wang <jianwei.wang.chn@gmail.com>
3748 M:      Alison Wang <alison.wang@freescale.com>
3749 L:      dri-devel@lists.freedesktop.org
3750 S:      Supported
3751 F:      drivers/gpu/drm/fsl-dcu/
3752 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3753 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3754
3755 DRM DRIVERS FOR FREESCALE IMX
3756 M:      Philipp Zabel <p.zabel@pengutronix.de>
3757 L:      dri-devel@lists.freedesktop.org
3758 S:      Maintained
3759 F:      drivers/gpu/drm/imx/
3760 F:      drivers/gpu/ipu-v3/
3761 F:      Documentation/devicetree/bindings/display/imx/
3762
3763 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3764 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3765 L:      dri-devel@lists.freedesktop.org
3766 T:      git git://github.com/patjak/drm-gma500
3767 S:      Maintained
3768 F:      drivers/gpu/drm/gma500
3769 F:      include/drm/gma500*
3770
3771 DRM DRIVERS FOR NVIDIA TEGRA
3772 M:      Thierry Reding <thierry.reding@gmail.com>
3773 M:      Terje Bergström <tbergstrom@nvidia.com>
3774 L:      dri-devel@lists.freedesktop.org
3775 L:      linux-tegra@vger.kernel.org
3776 T:      git git://anongit.freedesktop.org/tegra/linux.git
3777 S:      Supported
3778 F:      drivers/gpu/drm/tegra/
3779 F:      drivers/gpu/host1x/
3780 F:      include/linux/host1x.h
3781 F:      include/uapi/drm/tegra_drm.h
3782 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3783
3784 DRM DRIVERS FOR RENESAS
3785 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3786 L:      dri-devel@lists.freedesktop.org
3787 L:      linux-renesas-soc@vger.kernel.org
3788 T:      git git://people.freedesktop.org/~airlied/linux
3789 S:      Supported
3790 F:      drivers/gpu/drm/rcar-du/
3791 F:      drivers/gpu/drm/shmobile/
3792 F:      include/linux/platform_data/shmob_drm.h
3793
3794 DRM DRIVERS FOR ROCKCHIP
3795 M:      Mark Yao <mark.yao@rock-chips.com>
3796 L:      dri-devel@lists.freedesktop.org
3797 S:      Maintained
3798 F:      drivers/gpu/drm/rockchip/
3799 F:      Documentation/devicetree/bindings/display/rockchip*
3800
3801 DRM DRIVERS FOR STI
3802 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3803 M:      Vincent Abriou <vincent.abriou@st.com>
3804 L:      dri-devel@lists.freedesktop.org
3805 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3806 S:      Maintained
3807 F:      drivers/gpu/drm/sti
3808 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3809
3810 DRM DRIVERS FOR VIVANTE GPU IP
3811 M:      Lucas Stach <l.stach@pengutronix.de>
3812 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3813 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3814 L:      dri-devel@lists.freedesktop.org
3815 S:      Maintained
3816 F:      drivers/gpu/drm/etnaviv
3817 F:      Documentation/devicetree/bindings/display/etnaviv
3818
3819 DSBR100 USB FM RADIO DRIVER
3820 M:      Alexey Klimov <klimov.linux@gmail.com>
3821 L:      linux-media@vger.kernel.org
3822 T:      git git://linuxtv.org/media_tree.git
3823 S:      Maintained
3824 F:      drivers/media/radio/dsbr100.c
3825
3826 DSCC4 DRIVER
3827 M:      Francois Romieu <romieu@fr.zoreil.com>
3828 L:      netdev@vger.kernel.org
3829 S:      Maintained
3830 F:      drivers/net/wan/dscc4.c
3831
3832 DT3155 MEDIA DRIVER
3833 M:      Hans Verkuil <hverkuil@xs4all.nl>
3834 L:      linux-media@vger.kernel.org
3835 T:      git git://linuxtv.org/media_tree.git
3836 W:      https://linuxtv.org
3837 S:      Odd Fixes
3838 F:      drivers/media/pci/dt3155/
3839
3840 DVB_USB_AF9015 MEDIA DRIVER
3841 M:      Antti Palosaari <crope@iki.fi>
3842 L:      linux-media@vger.kernel.org
3843 W:      https://linuxtv.org
3844 W:      http://palosaari.fi/linux/
3845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3846 T:      git git://linuxtv.org/anttip/media_tree.git
3847 S:      Maintained
3848 F:      drivers/media/usb/dvb-usb-v2/af9015*
3849
3850 DVB_USB_AF9035 MEDIA DRIVER
3851 M:      Antti Palosaari <crope@iki.fi>
3852 L:      linux-media@vger.kernel.org
3853 W:      https://linuxtv.org
3854 W:      http://palosaari.fi/linux/
3855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3856 T:      git git://linuxtv.org/anttip/media_tree.git
3857 S:      Maintained
3858 F:      drivers/media/usb/dvb-usb-v2/af9035*
3859
3860 DVB_USB_ANYSEE MEDIA DRIVER
3861 M:      Antti Palosaari <crope@iki.fi>
3862 L:      linux-media@vger.kernel.org
3863 W:      https://linuxtv.org
3864 W:      http://palosaari.fi/linux/
3865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3866 T:      git git://linuxtv.org/anttip/media_tree.git
3867 S:      Maintained
3868 F:      drivers/media/usb/dvb-usb-v2/anysee*
3869
3870 DVB_USB_AU6610 MEDIA DRIVER
3871 M:      Antti Palosaari <crope@iki.fi>
3872 L:      linux-media@vger.kernel.org
3873 W:      https://linuxtv.org
3874 W:      http://palosaari.fi/linux/
3875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3876 T:      git git://linuxtv.org/anttip/media_tree.git
3877 S:      Maintained
3878 F:      drivers/media/usb/dvb-usb-v2/au6610*
3879
3880 DVB_USB_CE6230 MEDIA DRIVER
3881 M:      Antti Palosaari <crope@iki.fi>
3882 L:      linux-media@vger.kernel.org
3883 W:      https://linuxtv.org
3884 W:      http://palosaari.fi/linux/
3885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3886 T:      git git://linuxtv.org/anttip/media_tree.git
3887 S:      Maintained
3888 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3889
3890 DVB_USB_CXUSB MEDIA DRIVER
3891 M:      Michael Krufky <mkrufky@linuxtv.org>
3892 L:      linux-media@vger.kernel.org
3893 W:      https://linuxtv.org
3894 W:      http://github.com/mkrufky
3895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3896 T:      git git://linuxtv.org/media_tree.git
3897 S:      Maintained
3898 F:      drivers/media/usb/dvb-usb/cxusb*
3899
3900 DVB_USB_EC168 MEDIA DRIVER
3901 M:      Antti Palosaari <crope@iki.fi>
3902 L:      linux-media@vger.kernel.org
3903 W:      https://linuxtv.org
3904 W:      http://palosaari.fi/linux/
3905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3906 T:      git git://linuxtv.org/anttip/media_tree.git
3907 S:      Maintained
3908 F:      drivers/media/usb/dvb-usb-v2/ec168*
3909
3910 DVB_USB_GL861 MEDIA DRIVER
3911 M:      Antti Palosaari <crope@iki.fi>
3912 L:      linux-media@vger.kernel.org
3913 W:      https://linuxtv.org
3914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3915 T:      git git://linuxtv.org/anttip/media_tree.git
3916 S:      Maintained
3917 F:      drivers/media/usb/dvb-usb-v2/gl861*
3918
3919 DVB_USB_MXL111SF MEDIA DRIVER
3920 M:      Michael Krufky <mkrufky@linuxtv.org>
3921 L:      linux-media@vger.kernel.org
3922 W:      https://linuxtv.org
3923 W:      http://github.com/mkrufky
3924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3925 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3926 S:      Maintained
3927 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3928
3929 DVB_USB_RTL28XXU MEDIA DRIVER
3930 M:      Antti Palosaari <crope@iki.fi>
3931 L:      linux-media@vger.kernel.org
3932 W:      https://linuxtv.org
3933 W:      http://palosaari.fi/linux/
3934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3935 T:      git git://linuxtv.org/anttip/media_tree.git
3936 S:      Maintained
3937 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3938
3939 DVB_USB_V2 MEDIA DRIVER
3940 M:      Antti Palosaari <crope@iki.fi>
3941 L:      linux-media@vger.kernel.org
3942 W:      https://linuxtv.org
3943 W:      http://palosaari.fi/linux/
3944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3945 T:      git git://linuxtv.org/anttip/media_tree.git
3946 S:      Maintained
3947 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3948 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3949
3950 DYNAMIC DEBUG
3951 M:      Jason Baron <jbaron@akamai.com>
3952 S:      Maintained
3953 F:      lib/dynamic_debug.c
3954 F:      include/linux/dynamic_debug.h
3955
3956 DZ DECSTATION DZ11 SERIAL DRIVER
3957 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3958 S:      Maintained
3959 F:      drivers/tty/serial/dz.*
3960
3961 E3X0 POWER BUTTON DRIVER
3962 M:      Moritz Fischer <moritz.fischer@ettus.com>
3963 L:      usrp-users@lists.ettus.com
3964 W:      http://www.ettus.com
3965 S:      Supported
3966 F:      drivers/input/misc/e3x0-button.c
3967 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3968
3969 E4000 MEDIA DRIVER
3970 M:      Antti Palosaari <crope@iki.fi>
3971 L:      linux-media@vger.kernel.org
3972 W:      https://linuxtv.org
3973 W:      http://palosaari.fi/linux/
3974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3975 T:      git git://linuxtv.org/anttip/media_tree.git
3976 S:      Maintained
3977 F:      drivers/media/tuners/e4000*
3978
3979 EATA ISA/EISA/PCI SCSI DRIVER
3980 M:      Dario Ballabio <ballabio_dario@emc.com>
3981 L:      linux-scsi@vger.kernel.org
3982 S:      Maintained
3983 F:      drivers/scsi/eata.c
3984
3985 EC100 MEDIA DRIVER
3986 M:      Antti Palosaari <crope@iki.fi>
3987 L:      linux-media@vger.kernel.org
3988 W:      https://linuxtv.org
3989 W:      http://palosaari.fi/linux/
3990 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3991 T:      git git://linuxtv.org/anttip/media_tree.git
3992 S:      Maintained
3993 F:      drivers/media/dvb-frontends/ec100*
3994
3995 ECRYPT FILE SYSTEM
3996 M:      Tyler Hicks <tyhicks@canonical.com>
3997 L:      ecryptfs@vger.kernel.org
3998 W:      http://ecryptfs.org
3999 W:      https://launchpad.net/ecryptfs
4000 S:      Supported
4001 F:      Documentation/filesystems/ecryptfs.txt
4002 F:      fs/ecryptfs/
4003
4004 EDAC-CORE
4005 M:      Doug Thompson <dougthompson@xmission.com>
4006 M:      Borislav Petkov <bp@alien8.de>
4007 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4008 L:      linux-edac@vger.kernel.org
4009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4011 S:      Supported
4012 F:      Documentation/edac.txt
4013 F:      drivers/edac/
4014 F:      include/linux/edac.h
4015
4016 EDAC-AMD64
4017 M:      Doug Thompson <dougthompson@xmission.com>
4018 M:      Borislav Petkov <bp@alien8.de>
4019 L:      linux-edac@vger.kernel.org
4020 S:      Maintained
4021 F:      drivers/edac/amd64_edac*
4022
4023 EDAC-CALXEDA
4024 M:      Doug Thompson <dougthompson@xmission.com>
4025 M:      Robert Richter <rric@kernel.org>
4026 L:      linux-edac@vger.kernel.org
4027 S:      Maintained
4028 F:      drivers/edac/highbank*
4029
4030 EDAC-CAVIUM
4031 M:      Ralf Baechle <ralf@linux-mips.org>
4032 M:      David Daney <david.daney@cavium.com>
4033 L:      linux-edac@vger.kernel.org
4034 L:      linux-mips@linux-mips.org
4035 S:      Supported
4036 F:      drivers/edac/octeon_edac*
4037
4038 EDAC-E752X
4039 M:      Mark Gross <mark.gross@intel.com>
4040 M:      Doug Thompson <dougthompson@xmission.com>
4041 L:      linux-edac@vger.kernel.org
4042 S:      Maintained
4043 F:      drivers/edac/e752x_edac.c
4044
4045 EDAC-E7XXX
4046 M:      Doug Thompson <dougthompson@xmission.com>
4047 L:      linux-edac@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/edac/e7xxx_edac.c
4050
4051 EDAC-GHES
4052 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4053 L:      linux-edac@vger.kernel.org
4054 S:      Maintained
4055 F:      drivers/edac/ghes_edac.c
4056
4057 EDAC-I82443BXGX
4058 M:      Tim Small <tim@buttersideup.com>
4059 L:      linux-edac@vger.kernel.org
4060 S:      Maintained
4061 F:      drivers/edac/i82443bxgx_edac.c
4062
4063 EDAC-I3000
4064 M:      Jason Uhlenkott <juhlenko@akamai.com>
4065 L:      linux-edac@vger.kernel.org
4066 S:      Maintained
4067 F:      drivers/edac/i3000_edac.c
4068
4069 EDAC-I5000
4070 M:      Doug Thompson <dougthompson@xmission.com>
4071 L:      linux-edac@vger.kernel.org
4072 S:      Maintained
4073 F:      drivers/edac/i5000_edac.c
4074
4075 EDAC-I5400
4076 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4077 L:      linux-edac@vger.kernel.org
4078 S:      Maintained
4079 F:      drivers/edac/i5400_edac.c
4080
4081 EDAC-I7300
4082 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4083 L:      linux-edac@vger.kernel.org
4084 S:      Maintained
4085 F:      drivers/edac/i7300_edac.c
4086
4087 EDAC-I7CORE
4088 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4089 L:      linux-edac@vger.kernel.org
4090 S:      Maintained
4091 F:      drivers/edac/i7core_edac.c
4092
4093 EDAC-I82975X
4094 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4095 M:      "Arvind R." <arvino55@gmail.com>
4096 L:      linux-edac@vger.kernel.org
4097 S:      Maintained
4098 F:      drivers/edac/i82975x_edac.c
4099
4100 EDAC-IE31200
4101 M:      Jason Baron <jbaron@akamai.com>
4102 L:      linux-edac@vger.kernel.org
4103 S:      Maintained
4104 F:      drivers/edac/ie31200_edac.c
4105
4106 EDAC-MPC85XX
4107 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4108 L:      linux-edac@vger.kernel.org
4109 S:      Maintained
4110 F:      drivers/edac/mpc85xx_edac.[ch]
4111
4112 EDAC-PASEMI
4113 M:      Egor Martovetsky <egor@pasemi.com>
4114 L:      linux-edac@vger.kernel.org
4115 S:      Maintained
4116 F:      drivers/edac/pasemi_edac.c
4117
4118 EDAC-R82600
4119 M:      Tim Small <tim@buttersideup.com>
4120 L:      linux-edac@vger.kernel.org
4121 S:      Maintained
4122 F:      drivers/edac/r82600_edac.c
4123
4124 EDAC-SBRIDGE
4125 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4126 L:      linux-edac@vger.kernel.org
4127 S:      Maintained
4128 F:      drivers/edac/sb_edac.c
4129
4130 EDAC-XGENE
4131 APPLIED MICRO (APM) X-GENE SOC EDAC
4132 M:     Loc Ho <lho@apm.com>
4133 S:     Supported
4134 F:     drivers/edac/xgene_edac.c
4135 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4136
4137 EDIROL UA-101/UA-1000 DRIVER
4138 M:      Clemens Ladisch <clemens@ladisch.de>
4139 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4140 T:      git git://git.alsa-project.org/alsa-kernel.git
4141 S:      Maintained
4142 F:      sound/usb/misc/ua101.c
4143
4144 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4145 M:      Matt Fleming <matt@codeblueprint.co.uk>
4146 L:      linux-efi@vger.kernel.org
4147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4148 S:      Maintained
4149 F:      Documentation/efi-stub.txt
4150 F:      arch/ia64/kernel/efi.c
4151 F:      arch/x86/boot/compressed/eboot.[ch]
4152 F:      arch/x86/include/asm/efi.h
4153 F:      arch/x86/platform/efi/*
4154 F:      drivers/firmware/efi/*
4155 F:      include/linux/efi*.h
4156
4157 EFI VARIABLE FILESYSTEM
4158 M:      Matthew Garrett <matthew.garrett@nebula.com>
4159 M:      Jeremy Kerr <jk@ozlabs.org>
4160 M:      Matt Fleming <matt@codeblueprint.co.uk>
4161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4162 L:      linux-efi@vger.kernel.org
4163 S:      Maintained
4164 F:      fs/efivarfs/
4165
4166 EFIFB FRAMEBUFFER DRIVER
4167 L:      linux-fbdev@vger.kernel.org
4168 M:      Peter Jones <pjones@redhat.com>
4169 S:      Maintained
4170 F:      drivers/video/fbdev/efifb.c
4171
4172 EFS FILESYSTEM
4173 W:      http://aeschi.ch.eu.org/efs/
4174 S:      Orphan
4175 F:      fs/efs/
4176
4177 EHCA (IBM GX bus InfiniBand adapter) DRIVER
4178 M:      Hoang-Nam Nguyen <hnguyen@de.ibm.com>
4179 M:      Christoph Raisch <raisch@de.ibm.com>
4180 L:      linux-rdma@vger.kernel.org
4181 S:      Supported
4182 F:      drivers/infiniband/hw/ehca/
4183
4184 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4185 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4186 L:      netdev@vger.kernel.org
4187 S:      Maintained
4188 F:      drivers/net/ethernet/ibm/ehea/
4189
4190 EM28XX VIDEO4LINUX DRIVER
4191 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4192 L:      linux-media@vger.kernel.org
4193 W:      https://linuxtv.org
4194 T:      git git://linuxtv.org/media_tree.git
4195 S:      Maintained
4196 F:      drivers/media/usb/em28xx/
4197
4198 EMBEDDED LINUX
4199 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4200 M:      Matt Mackall <mpm@selenic.com>
4201 M:      David Woodhouse <dwmw2@infradead.org>
4202 L:      linux-embedded@vger.kernel.org
4203 S:      Maintained
4204
4205 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4206 M:      James Smart <james.smart@avagotech.com>
4207 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4208 L:      linux-scsi@vger.kernel.org
4209 W:      http://www.avagotech.com
4210 S:      Supported
4211 F:      drivers/scsi/lpfc/
4212
4213 ENE CB710 FLASH CARD READER DRIVER
4214 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4215 S:      Maintained
4216 F:      drivers/misc/cb710/
4217 F:      drivers/mmc/host/cb710-mmc.*
4218 F:      include/linux/cb710.h
4219
4220 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4221 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4222 S:      Maintained
4223 F:      drivers/media/rc/ene_ir.*
4224
4225 ENHANCED ERROR HANDLING (EEH)
4226 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4227 L:      linuxppc-dev@lists.ozlabs.org
4228 S:      Supported
4229 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4230 F:      arch/powerpc/kernel/eeh*.c
4231
4232 EPSON S1D13XXX FRAMEBUFFER DRIVER
4233 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4234 S:      Maintained
4235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4236 F:      drivers/video/fbdev/s1d13xxxfb.c
4237 F:      include/video/s1d13xxxfb.h
4238
4239 ET131X NETWORK DRIVER
4240 M:      Mark Einon <mark.einon@gmail.com>
4241 S:      Odd Fixes
4242 F:      drivers/net/ethernet/agere/
4243
4244 ETHERNET BRIDGE
4245 M:      Stephen Hemminger <stephen@networkplumber.org>
4246 L:      bridge@lists.linux-foundation.org
4247 L:      netdev@vger.kernel.org
4248 W:      http://www.linuxfoundation.org/en/Net:Bridge
4249 S:      Maintained
4250 F:      include/linux/netfilter_bridge/
4251 F:      net/bridge/
4252
4253 ETHERNET PHY LIBRARY
4254 M:      Florian Fainelli <f.fainelli@gmail.com>
4255 L:      netdev@vger.kernel.org
4256 S:      Maintained
4257 F:      include/linux/phy.h
4258 F:      include/linux/phy_fixed.h
4259 F:      drivers/net/phy/
4260 F:      Documentation/networking/phy.txt
4261 F:      drivers/of/of_mdio.c
4262 F:      drivers/of/of_net.c
4263
4264 EXT2 FILE SYSTEM
4265 M:      Jan Kara <jack@suse.com>
4266 L:      linux-ext4@vger.kernel.org
4267 S:      Maintained
4268 F:      Documentation/filesystems/ext2.txt
4269 F:      fs/ext2/
4270 F:      include/linux/ext2*
4271
4272 EXT4 FILE SYSTEM
4273 M:      "Theodore Ts'o" <tytso@mit.edu>
4274 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4275 L:      linux-ext4@vger.kernel.org
4276 W:      http://ext4.wiki.kernel.org
4277 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4278 S:      Maintained
4279 F:      Documentation/filesystems/ext4.txt
4280 F:      fs/ext4/
4281
4282 Extended Verification Module (EVM)
4283 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4284 L:      linux-ima-devel@lists.sourceforge.net
4285 L:      linux-security-module@vger.kernel.org
4286 S:      Supported
4287 F:      security/integrity/evm/
4288
4289 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4290 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4291 M:      Chanwoo Choi <cw00.choi@samsung.com>
4292 L:      linux-kernel@vger.kernel.org
4293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4294 S:      Maintained
4295 F:      drivers/extcon/
4296 F:      include/linux/extcon/
4297 F:      include/linux/extcon.h
4298 F:      Documentation/extcon/
4299 F:      Documentation/devicetree/bindings/extcon/
4300
4301 EXYNOS DP DRIVER
4302 M:      Jingoo Han <jingoohan1@gmail.com>
4303 L:      dri-devel@lists.freedesktop.org
4304 S:      Maintained
4305 F:      drivers/gpu/drm/exynos/exynos_dp*
4306
4307 EXYNOS MIPI DISPLAY DRIVERS
4308 M:      Inki Dae <inki.dae@samsung.com>
4309 M:      Donghwa Lee <dh09.lee@samsung.com>
4310 M:      Kyungmin Park <kyungmin.park@samsung.com>
4311 L:      linux-fbdev@vger.kernel.org
4312 S:      Maintained
4313 F:      drivers/video/fbdev/exynos/exynos_mipi*
4314 F:      include/video/exynos_mipi*
4315
4316 F71805F HARDWARE MONITORING DRIVER
4317 M:      Jean Delvare <jdelvare@suse.com>
4318 L:      lm-sensors@lm-sensors.org
4319 S:      Maintained
4320 F:      Documentation/hwmon/f71805f
4321 F:      drivers/hwmon/f71805f.c
4322
4323 FC0011 TUNER DRIVER
4324 M:      Michael Buesch <m@bues.ch>
4325 L:      linux-media@vger.kernel.org
4326 S:      Maintained
4327 F:      drivers/media/tuners/fc0011.h
4328 F:      drivers/media/tuners/fc0011.c
4329
4330 FC2580 MEDIA DRIVER
4331 M:      Antti Palosaari <crope@iki.fi>
4332 L:      linux-media@vger.kernel.org
4333 W:      https://linuxtv.org
4334 W:      http://palosaari.fi/linux/
4335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4336 T:      git git://linuxtv.org/anttip/media_tree.git
4337 S:      Maintained
4338 F:      drivers/media/tuners/fc2580*
4339
4340 FANOTIFY
4341 M:      Eric Paris <eparis@redhat.com>
4342 S:      Maintained
4343 F:      fs/notify/fanotify/
4344 F:      include/linux/fanotify.h
4345 F:      include/uapi/linux/fanotify.h
4346
4347 FARSYNC SYNCHRONOUS DRIVER
4348 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4349 W:      http://www.farsite.co.uk/
4350 S:      Supported
4351 F:      drivers/net/wan/farsync.*
4352
4353 FAULT INJECTION SUPPORT
4354 M:      Akinobu Mita <akinobu.mita@gmail.com>
4355 S:      Supported
4356 F:      Documentation/fault-injection/
4357 F:      lib/fault-inject.c
4358
4359 FBTFT Framebuffer drivers
4360 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4361 M:      Noralf Trønnes <noralf@tronnes.org>
4362 S:      Maintained
4363 F:      drivers/staging/fbtft/
4364
4365 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4366 M:      Vasu Dev <vasu.dev@intel.com>
4367 L:      fcoe-devel@open-fcoe.org
4368 W:      www.Open-FCoE.org
4369 S:      Supported
4370 F:      drivers/scsi/libfc/
4371 F:      drivers/scsi/fcoe/
4372 F:      include/scsi/fc/
4373 F:      include/scsi/libfc.h
4374 F:      include/scsi/libfcoe.h
4375 F:      include/uapi/scsi/fc/
4376
4377 FILE LOCKING (flock() and fcntl()/lockf())
4378 M:      Jeff Layton <jlayton@poochiereds.net>
4379 M:      "J. Bruce Fields" <bfields@fieldses.org>
4380 L:      linux-fsdevel@vger.kernel.org
4381 S:      Maintained
4382 F:      include/linux/fcntl.h
4383 F:      include/linux/fs.h
4384 F:      include/uapi/linux/fcntl.h
4385 F:      include/uapi/linux/fs.h
4386 F:      fs/fcntl.c
4387 F:      fs/locks.c
4388
4389 FILESYSTEMS (VFS and infrastructure)
4390 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4391 L:      linux-fsdevel@vger.kernel.org
4392 S:      Maintained
4393 F:      fs/*
4394
4395 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4396 M:      Riku Voipio <riku.voipio@iki.fi>
4397 L:      lm-sensors@lm-sensors.org
4398 S:      Maintained
4399 F:      drivers/hwmon/f75375s.c
4400 F:      include/linux/f75375s.h
4401
4402 FIREWIRE AUDIO DRIVERS
4403 M:      Clemens Ladisch <clemens@ladisch.de>
4404 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4405 T:      git git://git.alsa-project.org/alsa-kernel.git
4406 S:      Maintained
4407 F:      sound/firewire/
4408
4409 FIREWIRE MEDIA DRIVERS (firedtv)
4410 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4411 L:      linux-media@vger.kernel.org
4412 L:      linux1394-devel@lists.sourceforge.net
4413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4414 S:      Maintained
4415 F:      drivers/media/firewire/
4416
4417 FIREWIRE SBP-2 TARGET
4418 M:      Chris Boot <bootc@bootc.net>
4419 L:      linux-scsi@vger.kernel.org
4420 L:      target-devel@vger.kernel.org
4421 L:      linux1394-devel@lists.sourceforge.net
4422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4423 S:      Maintained
4424 F:      drivers/target/sbp/
4425
4426 FIREWIRE SUBSYSTEM
4427 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4428 L:      linux1394-devel@lists.sourceforge.net
4429 W:      http://ieee1394.wiki.kernel.org/
4430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4431 S:      Maintained
4432 F:      drivers/firewire/
4433 F:      include/linux/firewire.h
4434 F:      include/uapi/linux/firewire*.h
4435 F:      tools/firewire/
4436
4437 FIRMWARE LOADER (request_firmware)
4438 M:      Ming Lei <ming.lei@canonical.com>
4439 L:      linux-kernel@vger.kernel.org
4440 S:      Maintained
4441 F:      Documentation/firmware_class/
4442 F:      drivers/base/firmware*.c
4443 F:      include/linux/firmware.h
4444
4445 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4446 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4447 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4448 S:      Maintained
4449 F:      drivers/block/rsxx/
4450
4451 FLOPPY DRIVER
4452 M:      Jiri Kosina <jikos@kernel.org>
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4454 S:      Odd fixes
4455 F:      drivers/block/floppy.c
4456
4457 FMC SUBSYSTEM
4458 M:      Alessandro Rubini <rubini@gnudd.com>
4459 W:      http://www.ohwr.org/projects/fmc-bus
4460 S:      Supported
4461 F:      drivers/fmc/
4462 F:      include/linux/fmc*.h
4463 F:      include/linux/ipmi-fru.h
4464 K:      fmc_d.*register
4465
4466 FPGA MANAGER FRAMEWORK
4467 M:      Alan Tull <atull@opensource.altera.com>
4468 R:      Moritz Fischer <moritz.fischer@ettus.com>
4469 S:      Maintained
4470 F:      drivers/fpga/
4471 F:      include/linux/fpga/fpga-mgr.h
4472 W:      http://www.rocketboards.org
4473
4474 FPU EMULATOR
4475 M:      Bill Metzenthen <billm@melbpc.org.au>
4476 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4477 S:      Maintained
4478 F:      arch/x86/math-emu/
4479
4480 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4481 L:      netdev@vger.kernel.org
4482 S:      Orphan
4483 F:      drivers/net/wan/dlci.c
4484 F:      drivers/net/wan/sdla.c
4485
4486 FRAMEBUFFER LAYER
4487 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4488 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4489 L:      linux-fbdev@vger.kernel.org
4490 W:      http://linux-fbdev.sourceforge.net/
4491 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4493 S:      Maintained
4494 F:      Documentation/fb/
4495 F:      drivers/video/
4496 F:      include/video/
4497 F:      include/linux/fb.h
4498 F:      include/uapi/video/
4499 F:      include/uapi/linux/fb.h
4500
4501 FREESCALE DIU FRAMEBUFFER DRIVER
4502 M:      Timur Tabi <timur@tabi.org>
4503 L:      linux-fbdev@vger.kernel.org
4504 S:      Maintained
4505 F:      drivers/video/fbdev/fsl-diu-fb.*
4506
4507 FREESCALE DMA DRIVER
4508 M:      Li Yang <leoli@freescale.com>
4509 M:      Zhang Wei <zw@zh-kernel.org>
4510 L:      linuxppc-dev@lists.ozlabs.org
4511 S:      Maintained
4512 F:      drivers/dma/fsldma.*
4513
4514 FREESCALE I2C CPM DRIVER
4515 M:      Jochen Friedrich <jochen@scram.de>
4516 L:      linuxppc-dev@lists.ozlabs.org
4517 L:      linux-i2c@vger.kernel.org
4518 S:      Maintained
4519 F:      drivers/i2c/busses/i2c-cpm.c
4520
4521 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4522 M:      Sascha Hauer <kernel@pengutronix.de>
4523 L:      linux-fbdev@vger.kernel.org
4524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4525 S:      Maintained
4526 F:      include/linux/platform_data/video-imxfb.h
4527 F:      drivers/video/fbdev/imxfb.c
4528
4529 FREESCALE QUAD SPI DRIVER
4530 M:      Han Xu <han.xu@freescale.com>
4531 L:      linux-mtd@lists.infradead.org
4532 S:      Maintained
4533 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4534
4535 FREESCALE SOC FS_ENET DRIVER
4536 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4537 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4538 L:      linuxppc-dev@lists.ozlabs.org
4539 L:      netdev@vger.kernel.org
4540 S:      Maintained
4541 F:      drivers/net/ethernet/freescale/fs_enet/
4542 F:      include/linux/fs_enet_pd.h
4543
4544 FREESCALE QUICC ENGINE LIBRARY
4545 L:      linuxppc-dev@lists.ozlabs.org
4546 S:      Orphan
4547 F:      drivers/soc/fsl/qe/
4548 F:      include/soc/fsl/*qe*.h
4549 F:      include/soc/fsl/*ucc*.h
4550
4551 FREESCALE USB PERIPHERAL DRIVERS
4552 M:      Li Yang <leoli@freescale.com>
4553 L:      linux-usb@vger.kernel.org
4554 L:      linuxppc-dev@lists.ozlabs.org
4555 S:      Maintained
4556 F:      drivers/usb/gadget/udc/fsl*
4557
4558 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4559 M:      Li Yang <leoli@freescale.com>
4560 L:      netdev@vger.kernel.org
4561 L:      linuxppc-dev@lists.ozlabs.org
4562 S:      Maintained
4563 F:      drivers/net/ethernet/freescale/ucc_geth*
4564
4565 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4566 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4567 L:      netdev@vger.kernel.org
4568 S:      Maintained
4569 F:      drivers/net/ethernet/freescale/gianfar*
4570 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4571 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4572
4573 FREESCALE QUICC ENGINE UCC UART DRIVER
4574 M:      Timur Tabi <timur@tabi.org>
4575 L:      linuxppc-dev@lists.ozlabs.org
4576 S:      Maintained
4577 F:      drivers/tty/serial/ucc_uart.c
4578
4579 FREESCALE SOC SOUND DRIVERS
4580 M:      Timur Tabi <timur@tabi.org>
4581 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4582 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4583 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4584 L:      linuxppc-dev@lists.ozlabs.org
4585 S:      Maintained
4586 F:      sound/soc/fsl/fsl*
4587 F:      sound/soc/fsl/imx*
4588 F:      sound/soc/fsl/mpc8610_hpcd.c
4589
4590 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4591 M:      "J. German Rivera" <German.Rivera@freescale.com>
4592 L:      linux-kernel@vger.kernel.org
4593 S:      Maintained
4594 F:      drivers/staging/fsl-mc/
4595
4596 FREEVXFS FILESYSTEM
4597 M:      Christoph Hellwig <hch@infradead.org>
4598 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4599 S:      Maintained
4600 F:      fs/freevxfs/
4601
4602 FREEZER
4603 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4604 M:      Pavel Machek <pavel@ucw.cz>
4605 L:      linux-pm@vger.kernel.org
4606 S:      Supported
4607 F:      Documentation/power/freezing-of-tasks.txt
4608 F:      include/linux/freezer.h
4609 F:      kernel/freezer.c
4610
4611 FRONTSWAP API
4612 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4613 L:      linux-kernel@vger.kernel.org
4614 S:      Maintained
4615 F:      mm/frontswap.c
4616 F:      include/linux/frontswap.h
4617
4618 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4619 M:      David Howells <dhowells@redhat.com>
4620 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4621 S:      Supported
4622 F:      Documentation/filesystems/caching/
4623 F:      fs/fscache/
4624 F:      include/linux/fscache*.h
4625
4626 F2FS FILE SYSTEM
4627 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4628 M:      Changman Lee <cm224.lee@samsung.com>
4629 R:      Chao Yu <chao2.yu@samsung.com>
4630 L:      linux-f2fs-devel@lists.sourceforge.net
4631 W:      http://en.wikipedia.org/wiki/F2FS
4632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4633 S:      Maintained
4634 F:      Documentation/filesystems/f2fs.txt
4635 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4636 F:      fs/f2fs/
4637 F:      include/linux/f2fs_fs.h
4638 F:      include/trace/events/f2fs.h
4639
4640 FUJITSU FR-V (FRV) PORT
4641 S:      Orphan
4642 F:      arch/frv/
4643
4644 FUJITSU LAPTOP EXTRAS
4645 M:      Jonathan Woithe <jwoithe@just42.net>
4646 L:      platform-driver-x86@vger.kernel.org
4647 S:      Maintained
4648 F:      drivers/platform/x86/fujitsu-laptop.c
4649
4650 FUJITSU M-5MO LS CAMERA ISP DRIVER
4651 M:      Kyungmin Park <kyungmin.park@samsung.com>
4652 M:      Heungjun Kim <riverful.kim@samsung.com>
4653 L:      linux-media@vger.kernel.org
4654 S:      Maintained
4655 F:      drivers/media/i2c/m5mols/
4656 F:      include/media/i2c/m5mols.h
4657
4658 FUJITSU TABLET EXTRAS
4659 M:      Robert Gerlach <khnz@gmx.de>
4660 L:      platform-driver-x86@vger.kernel.org
4661 S:      Maintained
4662 F:      drivers/platform/x86/fujitsu-tablet.c
4663
4664 FUSE: FILESYSTEM IN USERSPACE
4665 M:      Miklos Szeredi <miklos@szeredi.hu>
4666 L:      fuse-devel@lists.sourceforge.net
4667 W:      http://fuse.sourceforge.net/
4668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4669 S:      Maintained
4670 F:      fs/fuse/
4671 F:      include/uapi/linux/fuse.h
4672 F:      Documentation/filesystems/fuse.txt
4673
4674 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4675 M:      Rik Faith <faith@cs.unc.edu>
4676 L:      linux-scsi@vger.kernel.org
4677 S:      Odd Fixes (e.g., new signatures)
4678 F:      drivers/scsi/fdomain.*
4679
4680 GCOV BASED KERNEL PROFILING
4681 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4682 S:      Maintained
4683 F:      kernel/gcov/
4684 F:      Documentation/gcov.txt
4685
4686 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4687 M:      Achim Leubner <achim_leubner@adaptec.com>
4688 L:      linux-scsi@vger.kernel.org
4689 W:      http://www.icp-vortex.com/
4690 S:      Supported
4691 F:      drivers/scsi/gdt*
4692
4693 GDB KERNEL DEBUGGING HELPER SCRIPTS
4694 M:      Jan Kiszka <jan.kiszka@siemens.com>
4695 S:      Supported
4696 F:      scripts/gdb/
4697
4698 GEMTEK FM RADIO RECEIVER DRIVER
4699 M:      Hans Verkuil <hverkuil@xs4all.nl>
4700 L:      linux-media@vger.kernel.org
4701 T:      git git://linuxtv.org/media_tree.git
4702 W:      https://linuxtv.org
4703 S:      Maintained
4704 F:      drivers/media/radio/radio-gemtek*
4705
4706 GENERIC GPIO I2C DRIVER
4707 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4708 S:      Supported
4709 F:      drivers/i2c/busses/i2c-gpio.c
4710 F:      include/linux/i2c-gpio.h
4711
4712 GENERIC GPIO I2C MULTIPLEXER DRIVER
4713 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4714 L:      linux-i2c@vger.kernel.org
4715 S:      Supported
4716 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4717 F:      include/linux/i2c-mux-gpio.h
4718 F:      Documentation/i2c/muxes/i2c-mux-gpio
4719
4720 GENERIC HDLC (WAN) DRIVERS
4721 M:      Krzysztof Halasa <khc@pm.waw.pl>
4722 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4723 S:      Maintained
4724 F:      drivers/net/wan/c101.c
4725 F:      drivers/net/wan/hd6457*
4726 F:      drivers/net/wan/hdlc*
4727 F:      drivers/net/wan/n2.c
4728 F:      drivers/net/wan/pc300too.c
4729 F:      drivers/net/wan/pci200syn.c
4730 F:      drivers/net/wan/wanxl*
4731
4732 GENERIC INCLUDE/ASM HEADER FILES
4733 M:      Arnd Bergmann <arnd@arndb.de>
4734 L:      linux-arch@vger.kernel.org
4735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4736 S:      Maintained
4737 F:      include/asm-generic/
4738 F:      include/uapi/asm-generic/
4739
4740 GENERIC PHY FRAMEWORK
4741 M:      Kishon Vijay Abraham I <kishon@ti.com>
4742 L:      linux-kernel@vger.kernel.org
4743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4744 S:      Supported
4745 F:      drivers/phy/
4746 F:      include/linux/phy/
4747
4748 GENERIC PM DOMAINS
4749 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4750 M:      Kevin Hilman <khilman@kernel.org>
4751 M:      Ulf Hansson <ulf.hansson@linaro.org>
4752 L:      linux-pm@vger.kernel.org
4753 S:      Supported
4754 F:      drivers/base/power/domain*.c
4755 F:      include/linux/pm_domain.h
4756
4757 GENERIC UIO DRIVER FOR PCI DEVICES
4758 M:      "Michael S. Tsirkin" <mst@redhat.com>
4759 L:      kvm@vger.kernel.org
4760 S:      Supported
4761 F:      drivers/uio/uio_pci_generic.c
4762
4763 GET_MAINTAINER SCRIPT
4764 M:      Joe Perches <joe@perches.com>
4765 S:      Maintained
4766 F:      scripts/get_maintainer.pl
4767
4768 GFS2 FILE SYSTEM
4769 M:      Steven Whitehouse <swhiteho@redhat.com>
4770 M:      Bob Peterson <rpeterso@redhat.com>
4771 L:      cluster-devel@redhat.com
4772 W:      http://sources.redhat.com/cluster/
4773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4774 S:      Supported
4775 F:      Documentation/filesystems/gfs2*.txt
4776 F:      fs/gfs2/
4777 F:      include/uapi/linux/gfs2_ondisk.h
4778
4779 GIGASET ISDN DRIVERS
4780 M:      Paul Bolle <pebolle@tiscali.nl>
4781 L:      gigaset307x-common@lists.sourceforge.net
4782 W:      http://gigaset307x.sourceforge.net/
4783 S:      Odd Fixes
4784 F:      Documentation/isdn/README.gigaset
4785 F:      drivers/isdn/gigaset/
4786 F:      include/uapi/linux/gigaset_dev.h
4787
4788 GO7007 MPEG CODEC
4789 M:      Hans Verkuil <hans.verkuil@cisco.com>
4790 L:      linux-media@vger.kernel.org
4791 S:      Maintained
4792 F:      drivers/media/usb/go7007/
4793
4794 GOODIX TOUCHSCREEN
4795 M:      Bastien Nocera <hadess@hadess.net>
4796 L:      linux-input@vger.kernel.org
4797 S:      Maintained
4798 F:      drivers/input/touchscreen/goodix.c
4799
4800 GPIO SUBSYSTEM
4801 M:      Linus Walleij <linus.walleij@linaro.org>
4802 M:      Alexandre Courbot <gnurou@gmail.com>
4803 L:      linux-gpio@vger.kernel.org
4804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4805 S:      Maintained
4806 F:      Documentation/gpio/
4807 F:      drivers/gpio/
4808 F:      include/linux/gpio/
4809 F:      include/linux/gpio.h
4810 F:      include/asm-generic/gpio.h
4811
4812 GRE DEMULTIPLEXER DRIVER
4813 M:      Dmitry Kozlov <xeb@mail.ru>
4814 L:      netdev@vger.kernel.org
4815 S:      Maintained
4816 F:      net/ipv4/gre_demux.c
4817 F:      net/ipv4/gre_offload.c
4818 F:      include/net/gre.h
4819
4820 GRETH 10/100/1G Ethernet MAC device driver
4821 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4822 L:      netdev@vger.kernel.org
4823 S:      Maintained
4824 F:      drivers/net/ethernet/aeroflex/
4825
4826 GSPCA FINEPIX SUBDRIVER
4827 M:      Frank Zago <frank@zago.net>
4828 L:      linux-media@vger.kernel.org
4829 T:      git git://linuxtv.org/media_tree.git
4830 S:      Maintained
4831 F:      drivers/media/usb/gspca/finepix.c
4832
4833 GSPCA GL860 SUBDRIVER
4834 M:      Olivier Lorin <o.lorin@laposte.net>
4835 L:      linux-media@vger.kernel.org
4836 T:      git git://linuxtv.org/media_tree.git
4837 S:      Maintained
4838 F:      drivers/media/usb/gspca/gl860/
4839
4840 GSPCA M5602 SUBDRIVER
4841 M:      Erik Andren <erik.andren@gmail.com>
4842 L:      linux-media@vger.kernel.org
4843 T:      git git://linuxtv.org/media_tree.git
4844 S:      Maintained
4845 F:      drivers/media/usb/gspca/m5602/
4846
4847 GSPCA PAC207 SONIXB SUBDRIVER
4848 M:      Hans de Goede <hdegoede@redhat.com>
4849 L:      linux-media@vger.kernel.org
4850 T:      git git://linuxtv.org/media_tree.git
4851 S:      Maintained
4852 F:      drivers/media/usb/gspca/pac207.c
4853
4854 GSPCA SN9C20X SUBDRIVER
4855 M:      Brian Johnson <brijohn@gmail.com>
4856 L:      linux-media@vger.kernel.org
4857 T:      git git://linuxtv.org/media_tree.git
4858 S:      Maintained
4859 F:      drivers/media/usb/gspca/sn9c20x.c
4860
4861 GSPCA T613 SUBDRIVER
4862 M:      Leandro Costantino <lcostantino@gmail.com>
4863 L:      linux-media@vger.kernel.org
4864 T:      git git://linuxtv.org/media_tree.git
4865 S:      Maintained
4866 F:      drivers/media/usb/gspca/t613.c
4867
4868 GSPCA USB WEBCAM DRIVER
4869 M:      Hans de Goede <hdegoede@redhat.com>
4870 L:      linux-media@vger.kernel.org
4871 T:      git git://linuxtv.org/media_tree.git
4872 S:      Maintained
4873 F:      drivers/media/usb/gspca/
4874
4875 GUID PARTITION TABLE (GPT)
4876 M:      Davidlohr Bueso <dave@stgolabs.net>
4877 L:      linux-efi@vger.kernel.org
4878 S:      Maintained
4879 F:      block/partitions/efi.*
4880
4881 STK1160 USB VIDEO CAPTURE DRIVER
4882 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4883 L:      linux-media@vger.kernel.org
4884 T:      git git://linuxtv.org/media_tree.git
4885 S:      Maintained
4886 F:      drivers/media/usb/stk1160/
4887
4888 H8/300 ARCHITECTURE
4889 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4890 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4891 W:      http://uclinux-h8.sourceforge.jp
4892 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4893 S:      Maintained
4894 F:      arch/h8300/
4895 F:      drivers/clocksource/h8300_*.c
4896 F:      drivers/clk/h8300/
4897 F:      drivers/irqchip/irq-renesas-h8*.c
4898
4899 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4900 M:      Frank Seidel <frank@f-seidel.de>
4901 L:      platform-driver-x86@vger.kernel.org
4902 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4903 S:      Maintained
4904 F:      drivers/platform/x86/hdaps.c
4905
4906 HDPVR USB VIDEO ENCODER DRIVER
4907 M:      Hans Verkuil <hverkuil@xs4all.nl>
4908 L:      linux-media@vger.kernel.org
4909 T:      git git://linuxtv.org/media_tree.git
4910 W:      https://linuxtv.org
4911 S:      Odd Fixes
4912 F:      drivers/media/usb/hdpvr/
4913
4914 HWPOISON MEMORY FAILURE HANDLING
4915 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4916 L:      linux-mm@kvack.org
4917 S:      Maintained
4918 F:      mm/memory-failure.c
4919 F:      mm/hwpoison-inject.c
4920
4921 HYPERVISOR VIRTUAL CONSOLE DRIVER
4922 L:      linuxppc-dev@lists.ozlabs.org
4923 S:      Odd Fixes
4924 F:      drivers/tty/hvc/
4925
4926 HACKRF MEDIA DRIVER
4927 M:      Antti Palosaari <crope@iki.fi>
4928 L:      linux-media@vger.kernel.org
4929 W:      https://linuxtv.org
4930 W:      http://palosaari.fi/linux/
4931 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4932 T:      git git://linuxtv.org/anttip/media_tree.git
4933 S:      Maintained
4934 F:      drivers/media/usb/hackrf/
4935
4936 HARDWARE MONITORING
4937 M:      Jean Delvare <jdelvare@suse.com>
4938 M:      Guenter Roeck <linux@roeck-us.net>
4939 L:      lm-sensors@lm-sensors.org
4940 W:      http://www.lm-sensors.org/
4941 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4943 S:      Maintained
4944 F:      Documentation/hwmon/
4945 F:      drivers/hwmon/
4946 F:      include/linux/hwmon*.h
4947
4948 HARDWARE RANDOM NUMBER GENERATOR CORE
4949 M:      Matt Mackall <mpm@selenic.com>
4950 M:      Herbert Xu <herbert@gondor.apana.org.au>
4951 L:      linux-crypto@vger.kernel.org
4952 S:      Odd fixes
4953 F:      Documentation/hw_random.txt
4954 F:      drivers/char/hw_random/
4955 F:      include/linux/hw_random.h
4956
4957 HARDWARE SPINLOCK CORE
4958 M:      Ohad Ben-Cohen <ohad@wizery.com>
4959 S:      Maintained
4960 F:      Documentation/hwspinlock.txt
4961 F:      drivers/hwspinlock/hwspinlock_*
4962 F:      include/linux/hwspinlock.h
4963
4964 HARMONY SOUND DRIVER
4965 L:      linux-parisc@vger.kernel.org
4966 S:      Maintained
4967 F:      sound/parisc/harmony.*
4968
4969 HD29L2 MEDIA DRIVER
4970 M:      Antti Palosaari <crope@iki.fi>
4971 L:      linux-media@vger.kernel.org
4972 W:      https://linuxtv.org
4973 W:      http://palosaari.fi/linux/
4974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4975 T:      git git://linuxtv.org/anttip/media_tree.git
4976 S:      Maintained
4977 F:      drivers/media/dvb-frontends/hd29l2*
4978
4979 HEWLETT-PACKARD SMART2 RAID DRIVER
4980 L:      iss_storagedev@hp.com
4981 S:      Orphan
4982 F:      Documentation/blockdev/cpqarray.txt
4983 F:      drivers/block/cpqarray.*
4984
4985 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
4986 M:      Don Brace <don.brace@pmcs.com>
4987 L:      iss_storagedev@hp.com
4988 L:      storagedev@pmcs.com
4989 L:      linux-scsi@vger.kernel.org
4990 S:      Supported
4991 F:      Documentation/scsi/hpsa.txt
4992 F:      drivers/scsi/hpsa*.[ch]
4993 F:      include/linux/cciss*.h
4994 F:      include/uapi/linux/cciss*.h
4995
4996 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
4997 M:      Don Brace <don.brace@pmcs.com>
4998 L:      iss_storagedev@hp.com
4999 L:      storagedev@pmcs.com
5000 L:      linux-scsi@vger.kernel.org
5001 S:      Supported
5002 F:      Documentation/blockdev/cciss.txt
5003 F:      drivers/block/cciss*
5004 F:      include/linux/cciss_ioctl.h
5005 F:      include/uapi/linux/cciss_ioctl.h
5006
5007 HFS FILESYSTEM
5008 L:      linux-fsdevel@vger.kernel.org
5009 S:      Orphan
5010 F:      Documentation/filesystems/hfs.txt
5011 F:      fs/hfs/
5012
5013 HFSPLUS FILESYSTEM
5014 L:      linux-fsdevel@vger.kernel.org
5015 S:      Orphan
5016 F:      Documentation/filesystems/hfsplus.txt
5017 F:      fs/hfsplus/
5018
5019 HGA FRAMEBUFFER DRIVER
5020 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5021 L:      linux-nvidia@lists.surfsouth.com
5022 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5023 S:      Maintained
5024 F:      drivers/video/fbdev/hgafb.c
5025
5026 HIBERNATION (aka Software Suspend, aka swsusp)
5027 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5028 M:      Pavel Machek <pavel@ucw.cz>
5029 L:      linux-pm@vger.kernel.org
5030 S:      Supported
5031 F:      arch/x86/power/
5032 F:      drivers/base/power/
5033 F:      kernel/power/
5034 F:      include/linux/suspend.h
5035 F:      include/linux/freezer.h
5036 F:      include/linux/pm.h
5037 F:      arch/*/include/asm/suspend*.h
5038
5039 HID CORE LAYER
5040 M:      Jiri Kosina <jikos@kernel.org>
5041 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5042 L:      linux-input@vger.kernel.org
5043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5044 S:      Maintained
5045 F:      drivers/hid/
5046 F:      include/linux/hid*
5047 F:      include/uapi/linux/hid*
5048
5049 HID SENSOR HUB DRIVERS
5050 M:      Jiri Kosina <jikos@kernel.org>
5051 M:      Jonathan Cameron <jic23@kernel.org>
5052 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5053 L:      linux-input@vger.kernel.org
5054 L:      linux-iio@vger.kernel.org
5055 S:      Maintained
5056 F:      Documentation/hid/hid-sensor*
5057 F:      drivers/hid/hid-sensor-*
5058 F:      drivers/iio/*/hid-*
5059 F:      include/linux/hid-sensor-*
5060
5061 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5062 M:      Thomas Gleixner <tglx@linutronix.de>
5063 L:      linux-kernel@vger.kernel.org
5064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5065 S:      Maintained
5066 F:      Documentation/timers/
5067 F:      kernel/time/hrtimer.c
5068 F:      kernel/time/clockevents.c
5069 F:      kernel/time/tick*.*
5070 F:      kernel/time/timer_*.c
5071 F:      include/linux/clockchips.h
5072 F:      include/linux/hrtimer.h
5073
5074 HIGH-SPEED SCC DRIVER FOR AX.25
5075 L:      linux-hams@vger.kernel.org
5076 S:      Orphan
5077 F:      drivers/net/hamradio/dmascc.c
5078 F:      drivers/net/hamradio/scc.c
5079
5080 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5081 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5082 W:      http://www.highpoint-tech.com
5083 S:      Supported
5084 F:      Documentation/scsi/hptiop.txt
5085 F:      drivers/scsi/hptiop.c
5086
5087 HIPPI
5088 M:      Jes Sorensen <jes@trained-monkey.org>
5089 L:      linux-hippi@sunsite.dk
5090 S:      Maintained
5091 F:      include/linux/hippidevice.h
5092 F:      include/uapi/linux/if_hippi.h
5093 F:      net/802/hippi.c
5094 F:      drivers/net/hippi/
5095
5096 HISILICON SAS Controller
5097 M:      John Garry <john.garry@huawei.com>
5098 W:      http://www.hisilicon.com
5099 S:      Supported
5100 F:      drivers/scsi/hisi_sas/
5101 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5102
5103 HOST AP DRIVER
5104 M:      Jouni Malinen <j@w1.fi>
5105 L:      hostap@shmoo.com (subscribers-only)
5106 L:      linux-wireless@vger.kernel.org
5107 W:      http://hostap.epitest.fi/
5108 S:      Maintained
5109 F:      drivers/net/wireless/intersil/hostap/
5110
5111 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5112 L:      platform-driver-x86@vger.kernel.org
5113 S:      Orphan
5114 F:      drivers/platform/x86/tc1100-wmi.c
5115
5116 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5117 M:      Jaroslav Kysela <perex@perex.cz>
5118 S:      Maintained
5119 F:      drivers/net/ethernet/hp/hp100.*
5120
5121 HPET:   High Precision Event Timers driver
5122 M:      Clemens Ladisch <clemens@ladisch.de>
5123 S:      Maintained
5124 F:      Documentation/timers/hpet.txt
5125 F:      drivers/char/hpet.c
5126 F:      include/linux/hpet.h
5127 F:      include/uapi/linux/hpet.h
5128
5129 HPET:   x86
5130 S:      Orphan
5131 F:      arch/x86/kernel/hpet.c
5132 F:      arch/x86/include/asm/hpet.h
5133
5134 HPFS FILESYSTEM
5135 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5136 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5137 S:      Maintained
5138 F:      fs/hpfs/
5139
5140 HSI SUBSYSTEM
5141 M:      Sebastian Reichel <sre@kernel.org>
5142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5143 S:      Maintained
5144 F:      Documentation/ABI/testing/sysfs-bus-hsi
5145 F:      Documentation/hsi.txt
5146 F:      drivers/hsi/
5147 F:      include/linux/hsi/
5148 F:      include/uapi/linux/hsi/
5149
5150 HSO 3G MODEM DRIVER
5151 M:      Jan Dumon <j.dumon@option.com>
5152 W:      http://www.pharscape.org
5153 S:      Maintained
5154 F:      drivers/net/usb/hso.c
5155
5156 HSR NETWORK PROTOCOL
5157 M:      Arvid Brodin <arvid.brodin@alten.se>
5158 L:      netdev@vger.kernel.org
5159 S:      Maintained
5160 F:      net/hsr/
5161
5162 HTCPEN TOUCHSCREEN DRIVER
5163 M:      Pau Oliva Fora <pof@eslack.org>
5164 L:      linux-input@vger.kernel.org
5165 S:      Maintained
5166 F:      drivers/input/touchscreen/htcpen.c
5167
5168 HUGETLB FILESYSTEM
5169 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5170 S:      Maintained
5171 F:      fs/hugetlbfs/
5172
5173 Hyper-V CORE AND DRIVERS
5174 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5175 M:      Haiyang Zhang <haiyangz@microsoft.com>
5176 L:      devel@linuxdriverproject.org
5177 S:      Maintained
5178 F:      arch/x86/include/asm/mshyperv.h
5179 F:      arch/x86/include/uapi/asm/hyperv.h
5180 F:      arch/x86/kernel/cpu/mshyperv.c
5181 F:      drivers/hid/hid-hyperv.c
5182 F:      drivers/hv/
5183 F:      drivers/input/serio/hyperv-keyboard.c
5184 F:      drivers/net/hyperv/
5185 F:      drivers/scsi/storvsc_drv.c
5186 F:      drivers/video/fbdev/hyperv_fb.c
5187 F:      include/linux/hyperv.h
5188 F:      tools/hv/
5189 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5190
5191 I2C OVER PARALLEL PORT
5192 M:      Jean Delvare <jdelvare@suse.com>
5193 L:      linux-i2c@vger.kernel.org
5194 S:      Maintained
5195 F:      Documentation/i2c/busses/i2c-parport
5196 F:      Documentation/i2c/busses/i2c-parport-light
5197 F:      drivers/i2c/busses/i2c-parport.c
5198 F:      drivers/i2c/busses/i2c-parport-light.c
5199
5200 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5201 M:      Jean Delvare <jdelvare@suse.com>
5202 L:      linux-i2c@vger.kernel.org
5203 S:      Maintained
5204 F:      Documentation/i2c/busses/i2c-ali1535
5205 F:      Documentation/i2c/busses/i2c-ali1563
5206 F:      Documentation/i2c/busses/i2c-ali15x3
5207 F:      Documentation/i2c/busses/i2c-amd756
5208 F:      Documentation/i2c/busses/i2c-amd8111
5209 F:      Documentation/i2c/busses/i2c-i801
5210 F:      Documentation/i2c/busses/i2c-nforce2
5211 F:      Documentation/i2c/busses/i2c-piix4
5212 F:      Documentation/i2c/busses/i2c-sis5595
5213 F:      Documentation/i2c/busses/i2c-sis630
5214 F:      Documentation/i2c/busses/i2c-sis96x
5215 F:      Documentation/i2c/busses/i2c-via
5216 F:      Documentation/i2c/busses/i2c-viapro
5217 F:      drivers/i2c/busses/i2c-ali1535.c
5218 F:      drivers/i2c/busses/i2c-ali1563.c
5219 F:      drivers/i2c/busses/i2c-ali15x3.c
5220 F:      drivers/i2c/busses/i2c-amd756.c
5221 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5222 F:      drivers/i2c/busses/i2c-amd8111.c
5223 F:      drivers/i2c/busses/i2c-i801.c
5224 F:      drivers/i2c/busses/i2c-isch.c
5225 F:      drivers/i2c/busses/i2c-nforce2.c
5226 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5227 F:      drivers/i2c/busses/i2c-piix4.c
5228 F:      drivers/i2c/busses/i2c-sis5595.c
5229 F:      drivers/i2c/busses/i2c-sis630.c
5230 F:      drivers/i2c/busses/i2c-sis96x.c
5231 F:      drivers/i2c/busses/i2c-via.c
5232 F:      drivers/i2c/busses/i2c-viapro.c
5233
5234 I2C/SMBUS ISMT DRIVER
5235 M:      Seth Heasley <seth.heasley@intel.com>
5236 M:      Neil Horman <nhorman@tuxdriver.com>
5237 L:      linux-i2c@vger.kernel.org
5238 F:      drivers/i2c/busses/i2c-ismt.c
5239 F:      Documentation/i2c/busses/i2c-ismt
5240
5241 I2C/SMBUS STUB DRIVER
5242 M:      Jean Delvare <jdelvare@suse.com>
5243 L:      linux-i2c@vger.kernel.org
5244 S:      Maintained
5245 F:      drivers/i2c/i2c-stub.c
5246
5247 I2C SUBSYSTEM
5248 M:      Wolfram Sang <wsa@the-dreams.de>
5249 L:      linux-i2c@vger.kernel.org
5250 W:      https://i2c.wiki.kernel.org/
5251 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5253 S:      Maintained
5254 F:      Documentation/devicetree/bindings/i2c/
5255 F:      Documentation/i2c/
5256 F:      drivers/i2c/
5257 F:      drivers/i2c/*/
5258 F:      include/linux/i2c.h
5259 F:      include/linux/i2c-*.h
5260 F:      include/uapi/linux/i2c.h
5261 F:      include/uapi/linux/i2c-*.h
5262
5263 I2C ACPI SUPPORT
5264 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5265 L:      linux-i2c@vger.kernel.org
5266 L:      linux-acpi@vger.kernel.org
5267 S:      Maintained
5268
5269 I2C-TAOS-EVM DRIVER
5270 M:      Jean Delvare <jdelvare@suse.com>
5271 L:      linux-i2c@vger.kernel.org
5272 S:      Maintained
5273 F:      Documentation/i2c/busses/i2c-taos-evm
5274 F:      drivers/i2c/busses/i2c-taos-evm.c
5275
5276 I2C-TINY-USB DRIVER
5277 M:      Till Harbaum <till@harbaum.org>
5278 L:      linux-i2c@vger.kernel.org
5279 W:      http://www.harbaum.org/till/i2c_tiny_usb
5280 S:      Maintained
5281 F:      drivers/i2c/busses/i2c-tiny-usb.c
5282
5283 i386 BOOT CODE
5284 M:      "H. Peter Anvin" <hpa@zytor.com>
5285 S:      Maintained
5286 F:      arch/x86/boot/
5287
5288 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5289 M:      "H. Peter Anvin" <hpa@zytor.com>
5290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5291 S:      Maintained
5292
5293 IA64 (Itanium) PLATFORM
5294 M:      Tony Luck <tony.luck@intel.com>
5295 M:      Fenghua Yu <fenghua.yu@intel.com>
5296 L:      linux-ia64@vger.kernel.org
5297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5298 S:      Maintained
5299 F:      arch/ia64/
5300
5301 IBM Power VMX Cryptographic instructions
5302 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5303 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5304 L:      linux-crypto@vger.kernel.org
5305 S:      Supported
5306 F:      drivers/crypto/vmx/Makefile
5307 F:      drivers/crypto/vmx/Kconfig
5308 F:      drivers/crypto/vmx/vmx.c
5309 F:      drivers/crypto/vmx/aes*
5310 F:      drivers/crypto/vmx/ghash*
5311 F:      drivers/crypto/vmx/ppc-xlate.pl
5312
5313 IBM Power in-Nest Crypto Acceleration
5314 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5315 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5316 L:      linux-crypto@vger.kernel.org
5317 S:      Supported
5318 F:      drivers/crypto/nx/Makefile
5319 F:      drivers/crypto/nx/Kconfig
5320 F:      drivers/crypto/nx/nx-aes*
5321 F:      drivers/crypto/nx/nx-sha*
5322 F:      drivers/crypto/nx/nx.*
5323 F:      drivers/crypto/nx/nx_csbcpb.h
5324 F:      drivers/crypto/nx/nx_debugfs.h
5325
5326 IBM Power 842 compression accelerator
5327 M:      Dan Streetman <ddstreet@ieee.org>
5328 S:      Supported
5329 F:      drivers/crypto/nx/Makefile
5330 F:      drivers/crypto/nx/Kconfig
5331 F:      drivers/crypto/nx/nx-842*
5332 F:      include/linux/sw842.h
5333 F:      crypto/842.c
5334 F:      lib/842/
5335
5336 IBM Power Linux RAID adapter
5337 M:      Brian King <brking@us.ibm.com>
5338 S:      Supported
5339 F:      drivers/scsi/ipr.*
5340
5341 IBM Power Virtual Ethernet Device Driver
5342 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5343 L:      netdev@vger.kernel.org
5344 S:      Supported
5345 F:      drivers/net/ethernet/ibm/ibmveth.*
5346
5347 IBM Power SRIOV Virtual NIC Device Driver
5348 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5349 M:      John Allen <jallen@linux.vnet.ibm.com>
5350 L:      netdev@vger.kernel.org
5351 S:      Supported
5352 F:      drivers/net/ethernet/ibm/ibmvnic.*
5353
5354 IBM Power Virtual SCSI Device Drivers
5355 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5356 L:      linux-scsi@vger.kernel.org
5357 S:      Supported
5358 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5359 F:      drivers/scsi/ibmvscsi/viosrp.h
5360
5361 IBM Power Virtual FC Device Drivers
5362 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5363 L:      linux-scsi@vger.kernel.org
5364 S:      Supported
5365 F:      drivers/scsi/ibmvscsi/ibmvfc*
5366
5367 IBM ServeRAID RAID DRIVER
5368 S:      Orphan
5369 F:      drivers/scsi/ips.*
5370
5371 ICH LPC AND GPIO DRIVER
5372 M:      Peter Tyser <ptyser@xes-inc.com>
5373 S:      Maintained
5374 F:      drivers/mfd/lpc_ich.c
5375 F:      drivers/gpio/gpio-ich.c
5376
5377 IDE SUBSYSTEM
5378 M:      "David S. Miller" <davem@davemloft.net>
5379 L:      linux-ide@vger.kernel.org
5380 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5382 S:      Maintained
5383 F:      Documentation/ide/
5384 F:      drivers/ide/
5385 F:      include/linux/ide.h
5386
5387 IDEAPAD LAPTOP EXTRAS DRIVER
5388 M:      Ike Panhc <ike.pan@canonical.com>
5389 L:      platform-driver-x86@vger.kernel.org
5390 W:      http://launchpad.net/ideapad-laptop
5391 S:      Maintained
5392 F:      drivers/platform/x86/ideapad-laptop.c
5393
5394 IDEAPAD LAPTOP SLIDEBAR DRIVER
5395 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5396 L:      linux-input@vger.kernel.org
5397 W:      https://github.com/o2genum/ideapad-slidebar
5398 S:      Maintained
5399 F:      drivers/input/misc/ideapad_slidebar.c
5400
5401 IDE/ATAPI DRIVERS
5402 M:      Borislav Petkov <bp@alien8.de>
5403 L:      linux-ide@vger.kernel.org
5404 S:      Maintained
5405 F:      Documentation/cdrom/ide-cd
5406 F:      drivers/ide/ide-cd*
5407
5408 IDLE-I7300
5409 M:      Andy Henroid <andrew.d.henroid@intel.com>
5410 L:      linux-pm@vger.kernel.org
5411 S:      Supported
5412 F:      drivers/idle/i7300_idle.c
5413
5414 IEEE 802.15.4 SUBSYSTEM
5415 M:      Alexander Aring <alex.aring@gmail.com>
5416 L:      linux-wpan@vger.kernel.org
5417 W:      https://github.com/linux-wpan
5418 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5419 S:      Maintained
5420 F:      net/ieee802154/
5421 F:      net/mac802154/
5422 F:      drivers/net/ieee802154/
5423 F:      include/linux/nl802154.h
5424 F:      include/linux/ieee802154.h
5425 F:      include/net/nl802154.h
5426 F:      include/net/mac802154.h
5427 F:      include/net/af_ieee802154.h
5428 F:      include/net/cfg802154.h
5429 F:      include/net/ieee802154_netdev.h
5430 F:      Documentation/networking/ieee802154.txt
5431
5432 IGORPLUG-USB IR RECEIVER
5433 M:      Sean Young <sean@mess.org>
5434 L:      linux-media@vger.kernel.org
5435 S:      Maintained
5436 F:      drivers/media/rc/igorplugusb.c
5437
5438 IGUANAWORKS USB IR TRANSCEIVER
5439 M:      Sean Young <sean@mess.org>
5440 L:      linux-media@vger.kernel.org
5441 S:      Maintained
5442 F:      drivers/media/rc/iguanair.c
5443
5444 IIO SUBSYSTEM AND DRIVERS
5445 M:      Jonathan Cameron <jic23@kernel.org>
5446 R:      Hartmut Knaack <knaack.h@gmx.de>
5447 R:      Lars-Peter Clausen <lars@metafoo.de>
5448 R:      Peter Meerwald <pmeerw@pmeerw.net>
5449 L:      linux-iio@vger.kernel.org
5450 S:      Maintained
5451 F:      drivers/iio/
5452 F:      drivers/staging/iio/
5453 F:      include/linux/iio/
5454 F:      tools/iio/
5455
5456 IKANOS/ADI EAGLE ADSL USB DRIVER
5457 M:      Matthieu Castet <castet.matthieu@free.fr>
5458 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5459 S:      Maintained
5460 F:      drivers/usb/atm/ueagle-atm.c
5461
5462 INA209 HARDWARE MONITOR DRIVER
5463 M:      Guenter Roeck <linux@roeck-us.net>
5464 L:      lm-sensors@lm-sensors.org
5465 S:      Maintained
5466 F:      Documentation/hwmon/ina209
5467 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5468 F:      drivers/hwmon/ina209.c
5469
5470 INA2XX HARDWARE MONITOR DRIVER
5471 M:      Guenter Roeck <linux@roeck-us.net>
5472 L:      lm-sensors@lm-sensors.org
5473 S:      Maintained
5474 F:      Documentation/hwmon/ina2xx
5475 F:      drivers/hwmon/ina2xx.c
5476 F:      include/linux/platform_data/ina2xx.h
5477
5478 INDUSTRY PACK SUBSYSTEM (IPACK)
5479 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5480 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5481 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5482 L:      industrypack-devel@lists.sourceforge.net
5483 W:      http://industrypack.sourceforge.net
5484 S:      Maintained
5485 F:      drivers/ipack/
5486
5487 INGENIC JZ4780 DMA Driver
5488 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5489 S:      Maintained
5490 F:      drivers/dma/dma-jz4780.c
5491
5492 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5493 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5494 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5495 L:      linux-ima-devel@lists.sourceforge.net
5496 L:      linux-ima-user@lists.sourceforge.net
5497 L:      linux-security-module@vger.kernel.org
5498 S:      Supported
5499 F:      security/integrity/ima/
5500
5501 IMGTEC IR DECODER DRIVER
5502 M:      James Hogan <james.hogan@imgtec.com>
5503 S:      Maintained
5504 F:      drivers/media/rc/img-ir/
5505
5506 IMS TWINTURBO FRAMEBUFFER DRIVER
5507 L:      linux-fbdev@vger.kernel.org
5508 S:      Orphan
5509 F:      drivers/video/fbdev/imsttfb.c
5510
5511 INFINIBAND SUBSYSTEM
5512 M:      Doug Ledford <dledford@redhat.com>
5513 M:      Sean Hefty <sean.hefty@intel.com>
5514 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5515 L:      linux-rdma@vger.kernel.org
5516 W:      http://www.openfabrics.org/
5517 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5519 S:      Supported
5520 F:      Documentation/infiniband/
5521 F:      drivers/infiniband/
5522 F:      drivers/staging/rdma/
5523 F:      include/uapi/linux/if_infiniband.h
5524 F:      include/uapi/rdma/
5525 F:      include/rdma/
5526
5527 INOTIFY
5528 M:      John McCutchan <john@johnmccutchan.com>
5529 M:      Robert Love <rlove@rlove.org>
5530 M:      Eric Paris <eparis@parisplace.org>
5531 S:      Maintained
5532 F:      Documentation/filesystems/inotify.txt
5533 F:      fs/notify/inotify/
5534 F:      include/linux/inotify.h
5535 F:      include/uapi/linux/inotify.h
5536
5537 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5538 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5539 L:      linux-input@vger.kernel.org
5540 Q:      http://patchwork.kernel.org/project/linux-input/list/
5541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5542 S:      Maintained
5543 F:      drivers/input/
5544 F:      include/linux/input.h
5545 F:      include/uapi/linux/input.h
5546 F:      include/linux/input/
5547
5548 INPUT MULTITOUCH (MT) PROTOCOL
5549 M:      Henrik Rydberg <rydberg@bitmath.org>
5550 L:      linux-input@vger.kernel.org
5551 S:      Odd fixes
5552 F:      Documentation/input/multi-touch-protocol.txt
5553 F:      drivers/input/input-mt.c
5554 K:      \b(ABS|SYN)_MT_
5555
5556 INTEL ASoC BDW/HSW DRIVERS
5557 M:      Jie Yang <yang.jie@linux.intel.com>
5558 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5559 S:      Supported
5560 F:      sound/soc/intel/common/sst-dsp*
5561 F:      sound/soc/intel/common/sst-firmware.c
5562 F:      sound/soc/intel/boards/broadwell.c
5563 F:      sound/soc/intel/haswell/
5564
5565 INTEL C600 SERIES SAS CONTROLLER DRIVER
5566 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5567 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5568 L:      linux-scsi@vger.kernel.org
5569 T:      git git://git.code.sf.net/p/intel-sas/isci
5570 S:      Supported
5571 F:      drivers/scsi/isci/
5572
5573 INTEL HID EVENT DRIVER
5574 M:      Alex Hung <alex.hung@canonical.com>
5575 L:      platform-driver-x86@vger.kernel.org
5576 S:      Maintained
5577 F:      drivers/platform/x86/intel-hid.c
5578
5579 INTEL IDLE DRIVER
5580 M:      Len Brown <lenb@kernel.org>
5581 L:      linux-pm@vger.kernel.org
5582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5583 S:      Supported
5584 F:      drivers/idle/intel_idle.c
5585
5586 INTEL PSTATE DRIVER
5587 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5588 M:      Len Brown <lenb@kernel.org>
5589 L:      linux-pm@vger.kernel.org
5590 S:      Supported
5591 F:      drivers/cpufreq/intel_pstate.c
5592
5593 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5594 M:      Maik Broemme <mbroemme@plusserver.de>
5595 L:      linux-fbdev@vger.kernel.org
5596 S:      Maintained
5597 F:      Documentation/fb/intelfb.txt
5598 F:      drivers/video/fbdev/intelfb/
5599
5600 INTEL 810/815 FRAMEBUFFER DRIVER
5601 M:      Antonino Daplas <adaplas@gmail.com>
5602 L:      linux-fbdev@vger.kernel.org
5603 S:      Maintained
5604 F:      drivers/video/fbdev/i810/
5605
5606 INTEL MENLOW THERMAL DRIVER
5607 M:      Sujith Thomas <sujith.thomas@intel.com>
5608 L:      platform-driver-x86@vger.kernel.org
5609 W:      https://01.org/linux-acpi
5610 S:      Supported
5611 F:      drivers/platform/x86/intel_menlow.c
5612
5613 INTEL I/OAT DMA DRIVER
5614 M:      Dave Jiang <dave.jiang@intel.com>
5615 R:      Dan Williams <dan.j.williams@intel.com>
5616 L:      dmaengine@vger.kernel.org
5617 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5618 S:      Supported
5619 F:      drivers/dma/ioat*
5620
5621 INTEL IOMMU (VT-d)
5622 M:      David Woodhouse <dwmw2@infradead.org>
5623 L:      iommu@lists.linux-foundation.org
5624 T:      git git://git.infradead.org/iommu-2.6.git
5625 S:      Supported
5626 F:      drivers/iommu/intel-iommu.c
5627 F:      include/linux/intel-iommu.h
5628
5629 INTEL IOP-ADMA DMA DRIVER
5630 R:      Dan Williams <dan.j.williams@intel.com>
5631 S:      Odd fixes
5632 F:      drivers/dma/iop-adma.c
5633
5634 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5635 M:      Krzysztof Halasa <khalasa@piap.pl>
5636 S:      Maintained
5637 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5638 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5639 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5640 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5641 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5642 F:      drivers/net/wan/ixp4xx_hss.c
5643
5644 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5645 M:      Deepak Saxena <dsaxena@plexity.net>
5646 S:      Maintained
5647 F:      drivers/char/hw_random/ixp4xx-rng.c
5648
5649 INTEL ETHERNET DRIVERS
5650 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5651 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5652 R:      Shannon Nelson <shannon.nelson@intel.com>
5653 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5654 R:      Don Skidmore <donald.c.skidmore@intel.com>
5655 R:      Bruce Allan <bruce.w.allan@intel.com>
5656 R:      John Ronciak <john.ronciak@intel.com>
5657 R:      Mitch Williams <mitch.a.williams@intel.com>
5658 L:      intel-wired-lan@lists.osuosl.org
5659 W:      http://www.intel.com/support/feedback.htm
5660 W:      http://e1000.sourceforge.net/
5661 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5664 S:      Supported
5665 F:      Documentation/networking/e100.txt
5666 F:      Documentation/networking/e1000.txt
5667 F:      Documentation/networking/e1000e.txt
5668 F:      Documentation/networking/igb.txt
5669 F:      Documentation/networking/igbvf.txt
5670 F:      Documentation/networking/ixgb.txt
5671 F:      Documentation/networking/ixgbe.txt
5672 F:      Documentation/networking/ixgbevf.txt
5673 F:      Documentation/networking/i40e.txt
5674 F:      Documentation/networking/i40evf.txt
5675 F:      drivers/net/ethernet/intel/
5676 F:      drivers/net/ethernet/intel/*/
5677
5678 INTEL-MID GPIO DRIVER
5679 M:      David Cohen <david.a.cohen@linux.intel.com>
5680 L:      linux-gpio@vger.kernel.org
5681 S:      Maintained
5682 F:      drivers/gpio/gpio-intel-mid.c
5683
5684 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5685 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5686 L:      linux-wireless@vger.kernel.org
5687 S:      Maintained
5688 F:      Documentation/networking/README.ipw2100
5689 F:      Documentation/networking/README.ipw2200
5690 F:      drivers/net/wireless/intel/ipw2x00/
5691
5692 INTEL(R) TRACE HUB
5693 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5694 S:      Supported
5695 F:      Documentation/trace/intel_th.txt
5696 F:      drivers/hwtracing/intel_th/
5697
5698 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5699 M:      Ning Sun <ning.sun@intel.com>
5700 L:      tboot-devel@lists.sourceforge.net
5701 W:      http://tboot.sourceforge.net
5702 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5703 S:      Supported
5704 F:      Documentation/intel_txt.txt
5705 F:      include/linux/tboot.h
5706 F:      arch/x86/kernel/tboot.c
5707
5708 INTEL WIRELESS WIMAX CONNECTION 2400
5709 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5710 M:      linux-wimax@intel.com
5711 L:      wimax@linuxwimax.org (subscribers-only)
5712 S:      Supported
5713 W:      http://linuxwimax.org
5714 F:      Documentation/wimax/README.i2400m
5715 F:      drivers/net/wimax/i2400m/
5716 F:      include/uapi/linux/wimax/i2400m.h
5717
5718 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5719 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5720 L:      linux-wireless@vger.kernel.org
5721 S:      Supported
5722 F:      drivers/net/wireless/intel/iwlegacy/
5723
5724 INTEL WIRELESS WIFI LINK (iwlwifi)
5725 M:      Johannes Berg <johannes.berg@intel.com>
5726 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5727 M:      Intel Linux Wireless <linuxwifi@intel.com>
5728 L:      linux-wireless@vger.kernel.org
5729 W:      http://intellinuxwireless.org
5730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5731 S:      Supported
5732 F:      drivers/net/wireless/intel/iwlwifi/
5733
5734 INTEL MANAGEMENT ENGINE (mei)
5735 M:      Tomas Winkler <tomas.winkler@intel.com>
5736 L:      linux-kernel@vger.kernel.org
5737 S:      Supported
5738 F:      include/uapi/linux/mei.h
5739 F:      include/linux/mei_cl_bus.h
5740 F:      drivers/misc/mei/*
5741 F:      Documentation/misc-devices/mei/*
5742
5743 INTEL MIC DRIVERS (mic)
5744 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5745 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5746 S:      Supported
5747 W:      https://github.com/sudeepdutt/mic
5748 W:      http://software.intel.com/en-us/mic-developer
5749 F:      include/linux/mic_bus.h
5750 F:      include/linux/scif.h
5751 F:      include/uapi/linux/mic_common.h
5752 F:      include/uapi/linux/mic_ioctl.h
5753 F       include/uapi/linux/scif_ioctl.h
5754 F:      drivers/misc/mic/
5755 F:      drivers/dma/mic_x100_dma.c
5756 F:      drivers/dma/mic_x100_dma.h
5757 F       Documentation/mic/
5758
5759 INTEL PMC/P-Unit IPC DRIVER
5760 M:      Zha Qipeng<qipeng.zha@intel.com>
5761 L:      platform-driver-x86@vger.kernel.org
5762 S:      Maintained
5763 F:      drivers/platform/x86/intel_pmc_ipc.c
5764 F:      drivers/platform/x86/intel_punit_ipc.c
5765 F:      arch/x86/include/asm/intel_pmc_ipc.h
5766 F:      arch/x86/include/asm/intel_punit_ipc.h
5767
5768 INTEL TELEMETRY DRIVER
5769 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5770 L:      platform-driver-x86@vger.kernel.org
5771 S:      Maintained
5772 F:      drivers/platform/x86/intel_telemetry_core.c
5773 F:      arch/x86/include/asm/intel_telemetry.h
5774 F:      drivers/platform/x86/intel_telemetry_pltdrv.c
5775 F:      drivers/platform/x86/intel_telemetry_debugfs.c
5776
5777 IOC3 ETHERNET DRIVER
5778 M:      Ralf Baechle <ralf@linux-mips.org>
5779 L:      linux-mips@linux-mips.org
5780 S:      Maintained
5781 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5782
5783 IOC3 SERIAL DRIVER
5784 M:      Pat Gefre <pfg@sgi.com>
5785 L:      linux-serial@vger.kernel.org
5786 S:      Maintained
5787 F:      drivers/tty/serial/ioc3_serial.c
5788
5789 IOMMU DRIVERS
5790 M:      Joerg Roedel <joro@8bytes.org>
5791 L:      iommu@lists.linux-foundation.org
5792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5793 S:      Maintained
5794 F:      drivers/iommu/
5795
5796 IP MASQUERADING
5797 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5798 S:      Maintained
5799 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5800
5801 IPATH DRIVER
5802 M:      Mike Marciniszyn <infinipath@intel.com>
5803 L:      linux-rdma@vger.kernel.org
5804 S:      Maintained
5805 F:      drivers/staging/rdma/ipath/
5806
5807 IPMI SUBSYSTEM
5808 M:      Corey Minyard <minyard@acm.org>
5809 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5810 W:      http://openipmi.sourceforge.net/
5811 S:      Supported
5812 F:      Documentation/IPMI.txt
5813 F:      drivers/char/ipmi/
5814 F:      include/linux/ipmi*
5815 F:      include/uapi/linux/ipmi*
5816
5817 QCOM AUDIO (ASoC) DRIVERS
5818 M:      Patrick Lai <plai@codeaurora.org>
5819 M:      Banajit Goswami <bgoswami@codeaurora.org>
5820 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5821 S:      Supported
5822 F:      sound/soc/qcom/
5823
5824 IPS SCSI RAID DRIVER
5825 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5826 L:      linux-scsi@vger.kernel.org
5827 W:      http://www.adaptec.com/
5828 S:      Maintained
5829 F:      drivers/scsi/ips*
5830
5831 IPVS
5832 M:      Wensong Zhang <wensong@linux-vs.org>
5833 M:      Simon Horman <horms@verge.net.au>
5834 M:      Julian Anastasov <ja@ssi.bg>
5835 L:      netdev@vger.kernel.org
5836 L:      lvs-devel@vger.kernel.org
5837 S:      Maintained
5838 F:      Documentation/networking/ipvs-sysctl.txt
5839 F:      include/net/ip_vs.h
5840 F:      include/uapi/linux/ip_vs.h
5841 F:      net/netfilter/ipvs/
5842
5843 IPWIRELESS DRIVER
5844 M:      Jiri Kosina <jikos@kernel.org>
5845 M:      David Sterba <dsterba@suse.com>
5846 S:      Odd Fixes
5847 F:      drivers/tty/ipwireless/
5848
5849 IPX NETWORK LAYER
5850 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5851 L:      netdev@vger.kernel.org
5852 S:      Maintained
5853 F:      include/net/ipx.h
5854 F:      include/uapi/linux/ipx.h
5855 F:      net/ipx/
5856
5857 IRDA SUBSYSTEM
5858 M:      Samuel Ortiz <samuel@sortiz.org>
5859 L:      irda-users@lists.sourceforge.net (subscribers-only)
5860 L:      netdev@vger.kernel.org
5861 W:      http://irda.sourceforge.net/
5862 S:      Maintained
5863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5864 F:      Documentation/networking/irda.txt
5865 F:      drivers/net/irda/
5866 F:      include/net/irda/
5867 F:      net/irda/
5868
5869 IRQ SUBSYSTEM
5870 M:      Thomas Gleixner <tglx@linutronix.de>
5871 L:      linux-kernel@vger.kernel.org
5872 S:      Maintained
5873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5874 F:      kernel/irq/
5875
5876 IRQCHIP DRIVERS
5877 M:      Thomas Gleixner <tglx@linutronix.de>
5878 M:      Jason Cooper <jason@lakedaemon.net>
5879 M:      Marc Zyngier <marc.zyngier@arm.com>
5880 L:      linux-kernel@vger.kernel.org
5881 S:      Maintained
5882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5883 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5884 F:      Documentation/devicetree/bindings/interrupt-controller/
5885 F:      drivers/irqchip/
5886
5887 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5888 M:      Jiang Liu <jiang.liu@linux.intel.com>
5889 M:      Marc Zyngier <marc.zyngier@arm.com>
5890 S:      Maintained
5891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5892 F:      Documentation/IRQ-domain.txt
5893 F:      include/linux/irqdomain.h
5894 F:      kernel/irq/irqdomain.c
5895 F:      kernel/irq/msi.c
5896
5897 ISAPNP
5898 M:      Jaroslav Kysela <perex@perex.cz>
5899 S:      Maintained
5900 F:      Documentation/isapnp.txt
5901 F:      drivers/pnp/isapnp/
5902 F:      include/linux/isapnp.h
5903
5904 ISA RADIO MODULE
5905 M:      Hans Verkuil <hverkuil@xs4all.nl>
5906 L:      linux-media@vger.kernel.org
5907 T:      git git://linuxtv.org/media_tree.git
5908 W:      https://linuxtv.org
5909 S:      Maintained
5910 F:      drivers/media/radio/radio-isa*
5911
5912 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5913 M:      Peter Jones <pjones@redhat.com>
5914 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5915 S:      Maintained
5916 F:      drivers/firmware/iscsi_ibft*
5917
5918 ISCSI
5919 M:      Mike Christie <michaelc@cs.wisc.edu>
5920 L:      open-iscsi@googlegroups.com
5921 W:      www.open-iscsi.org
5922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5923 S:      Maintained
5924 F:      drivers/scsi/*iscsi*
5925 F:      include/scsi/*iscsi*
5926
5927 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5928 M:      Or Gerlitz <ogerlitz@mellanox.com>
5929 M:      Sagi Grimberg <sagig@mellanox.com>
5930 M:      Roi Dayan <roid@mellanox.com>
5931 L:      linux-rdma@vger.kernel.org
5932 S:      Supported
5933 W:      http://www.openfabrics.org
5934 W:      www.open-iscsi.org
5935 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5936 F:      drivers/infiniband/ulp/iser/
5937
5938 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5939 M:      Sagi Grimberg <sagig@mellanox.com>
5940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5941 L:      linux-rdma@vger.kernel.org
5942 L:      target-devel@vger.kernel.org
5943 S:      Supported
5944 W:      http://www.linux-iscsi.org
5945 F:      drivers/infiniband/ulp/isert
5946
5947 ISDN SUBSYSTEM
5948 M:      Karsten Keil <isdn@linux-pingi.de>
5949 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5950 L:      netdev@vger.kernel.org
5951 W:      http://www.isdn4linux.de
5952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5953 S:      Maintained
5954 F:      Documentation/isdn/
5955 F:      drivers/isdn/
5956 F:      include/linux/isdn.h
5957 F:      include/linux/isdn/
5958 F:      include/uapi/linux/isdn.h
5959 F:      include/uapi/linux/isdn/
5960
5961 ISDN SUBSYSTEM (Eicon active card driver)
5962 M:      Armin Schindler <mac@melware.de>
5963 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5964 W:      http://www.melware.de
5965 S:      Maintained
5966 F:      drivers/isdn/hardware/eicon/
5967
5968 IT87 HARDWARE MONITORING DRIVER
5969 M:      Jean Delvare <jdelvare@suse.com>
5970 L:      lm-sensors@lm-sensors.org
5971 S:      Maintained
5972 F:      Documentation/hwmon/it87
5973 F:      drivers/hwmon/it87.c
5974
5975 IT913X MEDIA DRIVER
5976 M:      Antti Palosaari <crope@iki.fi>
5977 L:      linux-media@vger.kernel.org
5978 W:      https://linuxtv.org
5979 W:      http://palosaari.fi/linux/
5980 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5981 T:      git git://linuxtv.org/anttip/media_tree.git
5982 S:      Maintained
5983 F:      drivers/media/tuners/it913x*
5984
5985 IVTV VIDEO4LINUX DRIVER
5986 M:      Andy Walls <awalls@md.metrocast.net>
5987 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5988 L:      linux-media@vger.kernel.org
5989 T:      git git://linuxtv.org/media_tree.git
5990 W:      http://www.ivtvdriver.org
5991 S:      Maintained
5992 F:      Documentation/video4linux/*.ivtv
5993 F:      drivers/media/pci/ivtv/
5994 F:      include/uapi/linux/ivtv*
5995
5996 IX2505V MEDIA DRIVER
5997 M:      Malcolm Priestley <tvboxspy@gmail.com>
5998 L:      linux-media@vger.kernel.org
5999 W:      https://linuxtv.org
6000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6001 S:      Maintained
6002 F:      drivers/media/dvb-frontends/ix2505v*
6003
6004 JC42.4 TEMPERATURE SENSOR DRIVER
6005 M:      Guenter Roeck <linux@roeck-us.net>
6006 L:      lm-sensors@lm-sensors.org
6007 S:      Maintained
6008 F:      drivers/hwmon/jc42.c
6009 F:      Documentation/hwmon/jc42
6010
6011 JFS FILESYSTEM
6012 M:      Dave Kleikamp <shaggy@kernel.org>
6013 L:      jfs-discussion@lists.sourceforge.net
6014 W:      http://jfs.sourceforge.net/
6015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6016 S:      Maintained
6017 F:      Documentation/filesystems/jfs.txt
6018 F:      fs/jfs/
6019
6020 JME NETWORK DRIVER
6021 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6022 L:      netdev@vger.kernel.org
6023 S:      Maintained
6024 F:      drivers/net/ethernet/jme.*
6025
6026 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6027 M:      David Woodhouse <dwmw2@infradead.org>
6028 L:      linux-mtd@lists.infradead.org
6029 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6030 S:      Maintained
6031 F:      fs/jffs2/
6032 F:      include/uapi/linux/jffs2.h
6033
6034 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6035 M:      "Theodore Ts'o" <tytso@mit.edu>
6036 M:      Jan Kara <jack@suse.com>
6037 L:      linux-ext4@vger.kernel.org
6038 S:      Maintained
6039 F:      fs/jbd2/
6040 F:      include/linux/jbd2.h
6041
6042 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6043 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6044 L:      linux-media@vger.kernel.org
6045 S:      Maintained
6046 F:      drivers/media/platform/rcar_jpu.c
6047
6048 JSM Neo PCI based serial card
6049 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6050 L:      linux-serial@vger.kernel.org
6051 S:      Maintained
6052 F:      drivers/tty/serial/jsm/
6053
6054 K10TEMP HARDWARE MONITORING DRIVER
6055 M:      Clemens Ladisch <clemens@ladisch.de>
6056 L:      lm-sensors@lm-sensors.org
6057 S:      Maintained
6058 F:      Documentation/hwmon/k10temp
6059 F:      drivers/hwmon/k10temp.c
6060
6061 K8TEMP HARDWARE MONITORING DRIVER
6062 M:      Rudolf Marek <r.marek@assembler.cz>
6063 L:      lm-sensors@lm-sensors.org
6064 S:      Maintained
6065 F:      Documentation/hwmon/k8temp
6066 F:      drivers/hwmon/k8temp.c
6067
6068 KCONFIG
6069 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6070 L:      linux-kbuild@vger.kernel.org
6071 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6072 S:      Maintained
6073 F:      Documentation/kbuild/kconfig-language.txt
6074 F:      scripts/kconfig/
6075
6076 KDUMP
6077 M:      Vivek Goyal <vgoyal@redhat.com>
6078 M:      Haren Myneni <hbabu@us.ibm.com>
6079 L:      kexec@lists.infradead.org
6080 W:      http://lse.sourceforge.net/kdump/
6081 S:      Maintained
6082 F:      Documentation/kdump/
6083
6084 KEENE FM RADIO TRANSMITTER DRIVER
6085 M:      Hans Verkuil <hverkuil@xs4all.nl>
6086 L:      linux-media@vger.kernel.org
6087 T:      git git://linuxtv.org/media_tree.git
6088 W:      https://linuxtv.org
6089 S:      Maintained
6090 F:      drivers/media/radio/radio-keene*
6091
6092 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6093 M:      Ian Kent <raven@themaw.net>
6094 L:      autofs@vger.kernel.org
6095 S:      Maintained
6096 F:      fs/autofs4/
6097
6098 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6099 M:      Michal Marek <mmarek@suse.com>
6100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6102 L:      linux-kbuild@vger.kernel.org
6103 S:      Maintained
6104 F:      Documentation/kbuild/
6105 F:      Makefile
6106 F:      scripts/Makefile.*
6107 F:      scripts/basic/
6108 F:      scripts/mk*
6109 F:      scripts/package/
6110
6111 KERNEL JANITORS
6112 L:      kernel-janitors@vger.kernel.org
6113 W:      http://kernelnewbies.org/KernelJanitors
6114 S:      Odd Fixes
6115
6116 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6117 M:      "J. Bruce Fields" <bfields@fieldses.org>
6118 M:      Jeff Layton <jlayton@poochiereds.net>
6119 L:      linux-nfs@vger.kernel.org
6120 W:      http://nfs.sourceforge.net/
6121 S:      Supported
6122 F:      fs/nfsd/
6123 F:      include/uapi/linux/nfsd/
6124 F:      fs/lockd/
6125 F:      fs/nfs_common/
6126 F:      net/sunrpc/
6127 F:      include/linux/lockd/
6128 F:      include/linux/sunrpc/
6129 F:      include/uapi/linux/sunrpc/
6130
6131 KERNEL SELFTEST FRAMEWORK
6132 M:      Shuah Khan <shuahkh@osg.samsung.com>
6133 L:      linux-api@vger.kernel.org
6134 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6135 S:      Maintained
6136 F:      tools/testing/selftests
6137
6138 KERNEL VIRTUAL MACHINE (KVM)
6139 M:      Gleb Natapov <gleb@kernel.org>
6140 M:      Paolo Bonzini <pbonzini@redhat.com>
6141 L:      kvm@vger.kernel.org
6142 W:      http://www.linux-kvm.org
6143 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6144 S:      Supported
6145 F:      Documentation/*/kvm*.txt
6146 F:      Documentation/virtual/kvm/
6147 F:      arch/*/kvm/
6148 F:      arch/x86/kernel/kvm.c
6149 F:      arch/x86/kernel/kvmclock.c
6150 F:      arch/*/include/asm/kvm*
6151 F:      include/linux/kvm*
6152 F:      include/uapi/linux/kvm*
6153 F:      virt/kvm/
6154
6155 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6156 M:      Joerg Roedel <joro@8bytes.org>
6157 L:      kvm@vger.kernel.org
6158 W:      http://www.linux-kvm.org/
6159 S:      Maintained
6160 F:      arch/x86/include/asm/svm.h
6161 F:      arch/x86/kvm/svm.c
6162
6163 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6164 M:      Alexander Graf <agraf@suse.com>
6165 L:      kvm-ppc@vger.kernel.org
6166 W:      http://www.linux-kvm.org/
6167 T:      git git://github.com/agraf/linux-2.6.git
6168 S:      Supported
6169 F:      arch/powerpc/include/asm/kvm*
6170 F:      arch/powerpc/kvm/
6171
6172 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6173 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6174 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6175 L:      linux-s390@vger.kernel.org
6176 W:      http://www.ibm.com/developerworks/linux/linux390/
6177 S:      Supported
6178 F:      Documentation/s390/kvm.txt
6179 F:      arch/s390/include/asm/kvm*
6180 F:      arch/s390/kvm/
6181
6182 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6183 M:      Christoffer Dall <christoffer.dall@linaro.org>
6184 M:      Marc Zyngier <marc.zyngier@arm.com>
6185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6186 L:      kvmarm@lists.cs.columbia.edu
6187 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6189 S:      Supported
6190 F:      arch/arm/include/uapi/asm/kvm*
6191 F:      arch/arm/include/asm/kvm*
6192 F:      arch/arm/kvm/
6193 F:      virt/kvm/arm/
6194 F:      include/kvm/arm_*
6195
6196 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6197 M:      Christoffer Dall <christoffer.dall@linaro.org>
6198 M:      Marc Zyngier <marc.zyngier@arm.com>
6199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6200 L:      kvmarm@lists.cs.columbia.edu
6201 S:      Maintained
6202 F:      arch/arm64/include/uapi/asm/kvm*
6203 F:      arch/arm64/include/asm/kvm*
6204 F:      arch/arm64/kvm/
6205
6206 KEXEC
6207 M:      Eric Biederman <ebiederm@xmission.com>
6208 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6209 L:      kexec@lists.infradead.org
6210 S:      Maintained
6211 F:      include/linux/kexec.h
6212 F:      include/uapi/linux/kexec.h
6213 F:      kernel/kexec.c
6214
6215 KEYS/KEYRINGS:
6216 M:      David Howells <dhowells@redhat.com>
6217 L:      keyrings@vger.kernel.org
6218 S:      Maintained
6219 F:      Documentation/security/keys.txt
6220 F:      include/linux/key.h
6221 F:      include/linux/key-type.h
6222 F:      include/keys/
6223 F:      security/keys/
6224
6225 KEYS-TRUSTED
6226 M:      David Safford <safford@us.ibm.com>
6227 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6228 L:      linux-security-module@vger.kernel.org
6229 L:      keyrings@vger.kernel.org
6230 S:      Supported
6231 F:      Documentation/security/keys-trusted-encrypted.txt
6232 F:      include/keys/trusted-type.h
6233 F:      security/keys/trusted.c
6234 F:      security/keys/trusted.h
6235
6236 KEYS-ENCRYPTED
6237 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6238 M:      David Safford <safford@us.ibm.com>
6239 L:      linux-security-module@vger.kernel.org
6240 L:      keyrings@vger.kernel.org
6241 S:      Supported
6242 F:      Documentation/security/keys-trusted-encrypted.txt
6243 F:      include/keys/encrypted-type.h
6244 F:      security/keys/encrypted-keys/
6245
6246 KGDB / KDB /debug_core
6247 M:      Jason Wessel <jason.wessel@windriver.com>
6248 W:      http://kgdb.wiki.kernel.org/
6249 L:      kgdb-bugreport@lists.sourceforge.net
6250 S:      Maintained
6251 F:      Documentation/DocBook/kgdb.tmpl
6252 F:      drivers/misc/kgdbts.c
6253 F:      drivers/tty/serial/kgdboc.c
6254 F:      include/linux/kdb.h
6255 F:      include/linux/kgdb.h
6256 F:      kernel/debug/
6257
6258 KMEMCHECK
6259 M:      Vegard Nossum <vegardno@ifi.uio.no>
6260 M:      Pekka Enberg <penberg@kernel.org>
6261 S:      Maintained
6262 F:      Documentation/kmemcheck.txt
6263 F:      arch/x86/include/asm/kmemcheck.h
6264 F:      arch/x86/mm/kmemcheck/
6265 F:      include/linux/kmemcheck.h
6266 F:      mm/kmemcheck.c
6267
6268 KMEMLEAK
6269 M:      Catalin Marinas <catalin.marinas@arm.com>
6270 S:      Maintained
6271 F:      Documentation/kmemleak.txt
6272 F:      include/linux/kmemleak.h
6273 F:      mm/kmemleak.c
6274 F:      mm/kmemleak-test.c
6275
6276 KPROBES
6277 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6278 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6279 M:      "David S. Miller" <davem@davemloft.net>
6280 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6281 S:      Maintained
6282 F:      Documentation/kprobes.txt
6283 F:      include/linux/kprobes.h
6284 F:      kernel/kprobes.c
6285
6286 KS0108 LCD CONTROLLER DRIVER
6287 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6288 W:      http://miguelojeda.es/auxdisplay.htm
6289 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6290 S:      Maintained
6291 F:      Documentation/auxdisplay/ks0108
6292 F:      drivers/auxdisplay/ks0108.c
6293 F:      include/linux/ks0108.h
6294
6295 L3MDEV
6296 M:      David Ahern <dsa@cumulusnetworks.com>
6297 L:      netdev@vger.kernel.org
6298 S:      Maintained
6299 F:      net/l3mdev
6300 F:      include/net/l3mdev.h
6301
6302 LAPB module
6303 L:      linux-x25@vger.kernel.org
6304 S:      Orphan
6305 F:      Documentation/networking/lapb-module.txt
6306 F:      include/*/lapb.h
6307 F:      net/lapb/
6308
6309 LASI 53c700 driver for PARISC
6310 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6311 L:      linux-scsi@vger.kernel.org
6312 S:      Maintained
6313 F:      Documentation/scsi/53c700.txt
6314 F:      drivers/scsi/53c700*
6315
6316 LED SUBSYSTEM
6317 M:      Richard Purdie <rpurdie@rpsys.net>
6318 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6319 L:      linux-leds@vger.kernel.org
6320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6321 S:      Maintained
6322 F:      drivers/leds/
6323 F:      include/linux/leds.h
6324
6325 LEGACY EEPROM DRIVER
6326 M:      Jean Delvare <jdelvare@suse.com>
6327 S:      Maintained
6328 F:      Documentation/misc-devices/eeprom
6329 F:      drivers/misc/eeprom/eeprom.c
6330
6331 LEGO USB Tower driver
6332 M:      Juergen Stuber <starblue@users.sourceforge.net>
6333 L:      legousb-devel@lists.sourceforge.net
6334 W:      http://legousb.sourceforge.net/
6335 S:      Maintained
6336 F:      drivers/usb/misc/legousbtower.c
6337
6338 LG2160 MEDIA DRIVER
6339 M:      Michael Krufky <mkrufky@linuxtv.org>
6340 L:      linux-media@vger.kernel.org
6341 W:      https://linuxtv.org
6342 W:      http://github.com/mkrufky
6343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6344 T:      git git://linuxtv.org/mkrufky/tuners.git
6345 S:      Maintained
6346 F:      drivers/media/dvb-frontends/lg2160.*
6347
6348 LGDT3305 MEDIA DRIVER
6349 M:      Michael Krufky <mkrufky@linuxtv.org>
6350 L:      linux-media@vger.kernel.org
6351 W:      https://linuxtv.org
6352 W:      http://github.com/mkrufky
6353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6354 T:      git git://linuxtv.org/mkrufky/tuners.git
6355 S:      Maintained
6356 F:      drivers/media/dvb-frontends/lgdt3305.*
6357
6358 LGUEST
6359 M:      Rusty Russell <rusty@rustcorp.com.au>
6360 L:      lguest@lists.ozlabs.org
6361 W:      http://lguest.ozlabs.org/
6362 S:      Odd Fixes
6363 F:      arch/x86/include/asm/lguest*.h
6364 F:      arch/x86/lguest/
6365 F:      drivers/lguest/
6366 F:      include/linux/lguest*.h
6367 F:      tools/lguest/
6368
6369 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6370 M:      Tejun Heo <tj@kernel.org>
6371 L:      linux-ide@vger.kernel.org
6372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6373 S:      Maintained
6374 F:      drivers/ata/
6375 F:      include/linux/ata.h
6376 F:      include/linux/libata.h
6377
6378 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6379 M:      Viresh Kumar <vireshk@kernel.org>
6380 L:      linux-ide@vger.kernel.org
6381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6382 S:      Maintained
6383 F:      include/linux/pata_arasan_cf_data.h
6384 F:      drivers/ata/pata_arasan_cf.c
6385
6386 LIBATA PATA DRIVERS
6387 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6388 M:      Tejun Heo <tj@kernel.org>
6389 L:      linux-ide@vger.kernel.org
6390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6391 S:      Maintained
6392 F:      drivers/ata/pata_*.c
6393 F:      drivers/ata/ata_generic.c
6394
6395 LIBATA SATA AHCI PLATFORM devices support
6396 M:      Hans de Goede <hdegoede@redhat.com>
6397 M:      Tejun Heo <tj@kernel.org>
6398 L:      linux-ide@vger.kernel.org
6399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6400 S:      Maintained
6401 F:      drivers/ata/ahci_platform.c
6402 F:      drivers/ata/libahci_platform.c
6403 F:      include/linux/ahci_platform.h
6404
6405 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6406 M:      Mikael Pettersson <mikpelinux@gmail.com>
6407 L:      linux-ide@vger.kernel.org
6408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6409 S:      Maintained
6410 F:      drivers/ata/sata_promise.*
6411
6412 LIBLOCKDEP
6413 M:      Sasha Levin <sasha.levin@oracle.com>
6414 S:      Maintained
6415 F:      tools/lib/lockdep/
6416
6417 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6418 M:      Dan Williams <dan.j.williams@intel.com>
6419 L:      linux-nvdimm@lists.01.org
6420 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6421 S:      Supported
6422 F:      drivers/nvdimm/*
6423 F:      include/linux/nd.h
6424 F:      include/linux/libnvdimm.h
6425 F:      include/uapi/linux/ndctl.h
6426
6427 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6428 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6429 L:      linux-nvdimm@lists.01.org
6430 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6431 S:      Supported
6432 F:      drivers/nvdimm/blk.c
6433 F:      drivers/nvdimm/region_devs.c
6434 F:      drivers/acpi/nfit*
6435
6436 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6437 M:      Vishal Verma <vishal.l.verma@intel.com>
6438 L:      linux-nvdimm@lists.01.org
6439 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6440 S:      Supported
6441 F:      drivers/nvdimm/btt*
6442
6443 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6444 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6445 L:      linux-nvdimm@lists.01.org
6446 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6447 S:      Supported
6448 F:      drivers/nvdimm/pmem.c
6449 F:      include/linux/pmem.h
6450 F:      arch/*/include/asm/pmem.h
6451
6452 LIGHTNVM PLATFORM SUPPORT
6453 M:      Matias Bjorling <mb@lightnvm.io>
6454 W:      http://github/OpenChannelSSD
6455 L:      linux-block@vger.kernel.org
6456 S:      Maintained
6457 F:      drivers/lightnvm/
6458 F:      include/linux/lightnvm.h
6459 F:      include/uapi/linux/lightnvm.h
6460
6461 LINUX FOR IBM pSERIES (RS/6000)
6462 M:      Paul Mackerras <paulus@au.ibm.com>
6463 W:      http://www.ibm.com/linux/ltc/projects/ppc
6464 S:      Supported
6465 F:      arch/powerpc/boot/rs6000.h
6466
6467 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6468 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6469 M:      Paul Mackerras <paulus@samba.org>
6470 M:      Michael Ellerman <mpe@ellerman.id.au>
6471 W:      http://www.penguinppc.org/
6472 L:      linuxppc-dev@lists.ozlabs.org
6473 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6475 S:      Supported
6476 F:      Documentation/powerpc/
6477 F:      arch/powerpc/
6478
6479 LINUX FOR POWER MACINTOSH
6480 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6481 W:      http://www.penguinppc.org/
6482 L:      linuxppc-dev@lists.ozlabs.org
6483 S:      Maintained
6484 F:      arch/powerpc/platforms/powermac/
6485 F:      drivers/macintosh/
6486
6487 LINUX FOR POWERPC EMBEDDED MPC5XXX
6488 M:      Anatolij Gustschin <agust@denx.de>
6489 L:      linuxppc-dev@lists.ozlabs.org
6490 T:      git git://git.denx.de/linux-denx-agust.git
6491 S:      Maintained
6492 F:      arch/powerpc/platforms/512x/
6493 F:      arch/powerpc/platforms/52xx/
6494
6495 LINUX FOR POWERPC EMBEDDED PPC4XX
6496 M:      Alistair Popple <alistair@popple.id.au>
6497 M:      Matt Porter <mporter@kernel.crashing.org>
6498 W:      http://www.penguinppc.org/
6499 L:      linuxppc-dev@lists.ozlabs.org
6500 S:      Maintained
6501 F:      arch/powerpc/platforms/40x/
6502 F:      arch/powerpc/platforms/44x/
6503
6504 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6505 L:      linuxppc-dev@lists.ozlabs.org
6506 S:      Orphan
6507 F:      arch/powerpc/*/*virtex*
6508 F:      arch/powerpc/*/*/*virtex*
6509
6510 LINUX FOR POWERPC EMBEDDED PPC8XX
6511 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6512 W:      http://www.penguinppc.org/
6513 L:      linuxppc-dev@lists.ozlabs.org
6514 S:      Maintained
6515 F:      arch/powerpc/platforms/8xx/
6516
6517 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6518 M:      Scott Wood <oss@buserror.net>
6519 M:      Kumar Gala <galak@kernel.crashing.org>
6520 W:      http://www.penguinppc.org/
6521 L:      linuxppc-dev@lists.ozlabs.org
6522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6523 S:      Maintained
6524 F:      arch/powerpc/platforms/83xx/
6525 F:      arch/powerpc/platforms/85xx/
6526
6527 LINUX FOR POWERPC PA SEMI PWRFICIENT
6528 M:      Olof Johansson <olof@lixom.net>
6529 L:      linuxppc-dev@lists.ozlabs.org
6530 S:      Maintained
6531 F:      arch/powerpc/platforms/pasemi/
6532 F:      drivers/*/*pasemi*
6533 F:      drivers/*/*/*pasemi*
6534
6535 LINUX SECURITY MODULE (LSM) FRAMEWORK
6536 M:      Chris Wright <chrisw@sous-sol.org>
6537 L:      linux-security-module@vger.kernel.org
6538 S:      Supported
6539
6540 LIS3LV02D ACCELEROMETER DRIVER
6541 M:      Eric Piel <eric.piel@tremplin-utc.net>
6542 S:      Maintained
6543 F:      Documentation/misc-devices/lis3lv02d
6544 F:      drivers/misc/lis3lv02d/
6545 F:      drivers/platform/x86/hp_accel.c
6546
6547 LIVE PATCHING
6548 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6549 M:      Seth Jennings <sjenning@redhat.com>
6550 M:      Jiri Kosina <jikos@kernel.org>
6551 M:      Vojtech Pavlik <vojtech@suse.com>
6552 S:      Maintained
6553 F:      kernel/livepatch/
6554 F:      include/linux/livepatch.h
6555 F:      arch/x86/include/asm/livepatch.h
6556 F:      arch/x86/kernel/livepatch.c
6557 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6558 F:      samples/livepatch/
6559 L:      live-patching@vger.kernel.org
6560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6561
6562 LLC (802.2)
6563 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6564 S:      Maintained
6565 F:      include/linux/llc.h
6566 F:      include/uapi/linux/llc.h
6567 F:      include/net/llc*
6568 F:      net/llc/
6569
6570 LM73 HARDWARE MONITOR DRIVER
6571 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6572 L:      lm-sensors@lm-sensors.org
6573 S:      Maintained
6574 F:      drivers/hwmon/lm73.c
6575
6576 LM78 HARDWARE MONITOR DRIVER
6577 M:      Jean Delvare <jdelvare@suse.com>
6578 L:      lm-sensors@lm-sensors.org
6579 S:      Maintained
6580 F:      Documentation/hwmon/lm78
6581 F:      drivers/hwmon/lm78.c
6582
6583 LM83 HARDWARE MONITOR DRIVER
6584 M:      Jean Delvare <jdelvare@suse.com>
6585 L:      lm-sensors@lm-sensors.org
6586 S:      Maintained
6587 F:      Documentation/hwmon/lm83
6588 F:      drivers/hwmon/lm83.c
6589
6590 LM90 HARDWARE MONITOR DRIVER
6591 M:      Jean Delvare <jdelvare@suse.com>
6592 L:      lm-sensors@lm-sensors.org
6593 S:      Maintained
6594 F:      Documentation/hwmon/lm90
6595 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6596 F:      drivers/hwmon/lm90.c
6597
6598 LM95234 HARDWARE MONITOR DRIVER
6599 M:      Guenter Roeck <linux@roeck-us.net>
6600 L:      lm-sensors@lm-sensors.org
6601 S:      Maintained
6602 F:      Documentation/hwmon/lm95234
6603 F:      drivers/hwmon/lm95234.c
6604
6605 LME2510 MEDIA DRIVER
6606 M:      Malcolm Priestley <tvboxspy@gmail.com>
6607 L:      linux-media@vger.kernel.org
6608 W:      https://linuxtv.org
6609 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6610 S:      Maintained
6611 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6612
6613 LOCKDEP AND LOCKSTAT
6614 M:      Peter Zijlstra <peterz@infradead.org>
6615 M:      Ingo Molnar <mingo@redhat.com>
6616 L:      linux-kernel@vger.kernel.org
6617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6618 S:      Maintained
6619 F:      Documentation/locking/lockdep*.txt
6620 F:      Documentation/locking/lockstat.txt
6621 F:      include/linux/lockdep.h
6622 F:      kernel/locking/
6623
6624 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6625 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6626 L:      linux-ntfs-dev@lists.sourceforge.net
6627 W:      http://www.linux-ntfs.org/content/view/19/37/
6628 S:      Maintained
6629 F:      Documentation/ldm.txt
6630 F:      block/partitions/ldm.*
6631
6632 LogFS
6633 M:      Joern Engel <joern@logfs.org>
6634 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6635 L:      logfs@logfs.org
6636 W:      logfs.org
6637 S:      Maintained
6638 F:      fs/logfs/
6639
6640 LPC32XX MACHINE SUPPORT
6641 M:      Roland Stigge <stigge@antcom.de>
6642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6643 S:      Maintained
6644 F:      arch/arm/mach-lpc32xx/
6645
6646 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6647 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6648 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6649 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6650 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6651 L:      MPT-FusionLinux.pdl@avagotech.com
6652 L:      linux-scsi@vger.kernel.org
6653 W:      http://www.lsilogic.com/support
6654 S:      Supported
6655 F:      drivers/message/fusion/
6656 F:      drivers/scsi/mpt2sas/
6657 F:      drivers/scsi/mpt3sas/
6658
6659 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6660 M:      Matthew Wilcox <matthew@wil.cx>
6661 L:      linux-scsi@vger.kernel.org
6662 S:      Maintained
6663 F:      drivers/scsi/sym53c8xx_2/
6664
6665 LTC4261 HARDWARE MONITOR DRIVER
6666 M:      Guenter Roeck <linux@roeck-us.net>
6667 L:      lm-sensors@lm-sensors.org
6668 S:      Maintained
6669 F:      Documentation/hwmon/ltc4261
6670 F:      drivers/hwmon/ltc4261.c
6671
6672 LTP (Linux Test Project)
6673 M:      Mike Frysinger <vapier@gentoo.org>
6674 M:      Cyril Hrubis <chrubis@suse.cz>
6675 M:      Wanlong Gao <wanlong.gao@gmail.com>
6676 M:      Jan Stancek <jstancek@redhat.com>
6677 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6678 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6679 L:      ltp@lists.linux.it (subscribers-only)
6680 W:      http://linux-test-project.github.io/
6681 T:      git git://github.com/linux-test-project/ltp.git
6682 S:      Maintained
6683
6684 M32R ARCHITECTURE
6685 W:      http://www.linux-m32r.org/
6686 S:      Orphan
6687 F:      arch/m32r/
6688
6689 M68K ARCHITECTURE
6690 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6691 L:      linux-m68k@lists.linux-m68k.org
6692 W:      http://www.linux-m68k.org/
6693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6694 S:      Maintained
6695 F:      arch/m68k/
6696 F:      drivers/zorro/
6697
6698 M68K ON APPLE MACINTOSH
6699 M:      Joshua Thompson <funaho@jurai.org>
6700 W:      http://www.mac.linux-m68k.org/
6701 L:      linux-m68k@lists.linux-m68k.org
6702 S:      Maintained
6703 F:      arch/m68k/mac/
6704
6705 M68K ON HP9000/300
6706 M:      Philip Blundell <philb@gnu.org>
6707 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6708 S:      Maintained
6709 F:      arch/m68k/hp300/
6710
6711 M88DS3103 MEDIA DRIVER
6712 M:      Antti Palosaari <crope@iki.fi>
6713 L:      linux-media@vger.kernel.org
6714 W:      https://linuxtv.org
6715 W:      http://palosaari.fi/linux/
6716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6717 T:      git git://linuxtv.org/anttip/media_tree.git
6718 S:      Maintained
6719 F:      drivers/media/dvb-frontends/m88ds3103*
6720
6721 M88RS2000 MEDIA DRIVER
6722 M:      Malcolm Priestley <tvboxspy@gmail.com>
6723 L:      linux-media@vger.kernel.org
6724 W:      https://linuxtv.org
6725 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6726 S:      Maintained
6727 F:      drivers/media/dvb-frontends/m88rs2000*
6728
6729 MA901 MASTERKIT USB FM RADIO DRIVER
6730 M:      Alexey Klimov <klimov.linux@gmail.com>
6731 L:      linux-media@vger.kernel.org
6732 T:      git git://linuxtv.org/media_tree.git
6733 S:      Maintained
6734 F:      drivers/media/radio/radio-ma901.c
6735
6736 MAC80211
6737 M:      Johannes Berg <johannes@sipsolutions.net>
6738 L:      linux-wireless@vger.kernel.org
6739 W:      http://wireless.kernel.org/
6740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6742 S:      Maintained
6743 F:      Documentation/networking/mac80211-injection.txt
6744 F:      include/net/mac80211.h
6745 F:      net/mac80211/
6746
6747 MACVLAN DRIVER
6748 M:      Patrick McHardy <kaber@trash.net>
6749 L:      netdev@vger.kernel.org
6750 S:      Maintained
6751 F:      drivers/net/macvlan.c
6752 F:      include/linux/if_macvlan.h
6753
6754 MAILBOX API
6755 M:      Jassi Brar <jassisinghbrar@gmail.com>
6756 L:      linux-kernel@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/mailbox/
6759 F:      include/linux/mailbox_client.h
6760 F:      include/linux/mailbox_controller.h
6761
6762 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6763 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6764 W:      http://www.kernel.org/doc/man-pages
6765 L:      linux-man@vger.kernel.org
6766 S:      Maintained
6767
6768 MARVELL ARMADA DRM SUPPORT
6769 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6770 S:      Maintained
6771 F:      drivers/gpu/drm/armada/
6772
6773 MARVELL 88E6352 DSA support
6774 M:      Guenter Roeck <linux@roeck-us.net>
6775 S:      Maintained
6776 F:      drivers/net/dsa/mv88e6352.c
6777
6778 MARVELL CRYPTO DRIVER
6779 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6780 M:      Arnaud Ebalard <arno@natisbad.org>
6781 F:      drivers/crypto/marvell/
6782 S:      Maintained
6783 L:      linux-crypto@vger.kernel.org
6784
6785 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6786 M:      Mirko Lindner <mlindner@marvell.com>
6787 M:      Stephen Hemminger <stephen@networkplumber.org>
6788 L:      netdev@vger.kernel.org
6789 S:      Maintained
6790 F:      drivers/net/ethernet/marvell/sk*
6791
6792 MARVELL LIBERTAS WIRELESS DRIVER
6793 L:      libertas-dev@lists.infradead.org
6794 S:      Orphan
6795 F:      drivers/net/wireless/marvell/libertas/
6796
6797 MARVELL MV643XX ETHERNET DRIVER
6798 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6799 L:      netdev@vger.kernel.org
6800 S:      Maintained
6801 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6802 F:      include/linux/mv643xx.h
6803
6804 MARVELL MVNETA ETHERNET DRIVER
6805 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6806 L:      netdev@vger.kernel.org
6807 S:      Maintained
6808 F:      drivers/net/ethernet/marvell/mvneta.*
6809
6810 MARVELL MWIFIEX WIRELESS DRIVER
6811 M:      Amitkumar Karwar <akarwar@marvell.com>
6812 M:      Nishant Sarmukadam <nishants@marvell.com>
6813 L:      linux-wireless@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/net/wireless/marvell/mwifiex/
6816
6817 MARVELL MWL8K WIRELESS DRIVER
6818 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6819 L:      linux-wireless@vger.kernel.org
6820 S:      Odd Fixes
6821 F:      drivers/net/wireless/marvell/mwl8k.c
6822
6823 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6824 M:      Nicolas Pitre <nico@fluxnic.net>
6825 S:      Odd Fixes
6826 F:      drivers/mmc/host/mvsdio.*
6827
6828 MATROX FRAMEBUFFER DRIVER
6829 L:      linux-fbdev@vger.kernel.org
6830 S:      Orphan
6831 F:      drivers/video/fbdev/matrox/matroxfb_*
6832 F:      include/uapi/linux/matroxfb.h
6833
6834 MAX16065 HARDWARE MONITOR DRIVER
6835 M:      Guenter Roeck <linux@roeck-us.net>
6836 L:      lm-sensors@lm-sensors.org
6837 S:      Maintained
6838 F:      Documentation/hwmon/max16065
6839 F:      drivers/hwmon/max16065.c
6840
6841 MAX20751 HARDWARE MONITOR DRIVER
6842 M:      Guenter Roeck <linux@roeck-us.net>
6843 L:      lm-sensors@lm-sensors.org
6844 S:      Maintained
6845 F:      Documentation/hwmon/max20751
6846 F:      drivers/hwmon/max20751.c
6847
6848 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6849 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6850 L:      lm-sensors@lm-sensors.org
6851 S:      Maintained
6852 F:      Documentation/hwmon/max6650
6853 F:      drivers/hwmon/max6650.c
6854
6855 MAX6697 HARDWARE MONITOR DRIVER
6856 M:      Guenter Roeck <linux@roeck-us.net>
6857 L:      lm-sensors@lm-sensors.org
6858 S:      Maintained
6859 F:      Documentation/hwmon/max6697
6860 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6861 F:      drivers/hwmon/max6697.c
6862 F:      include/linux/platform_data/max6697.h
6863
6864 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6865 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6866 L:      linux-pm@vger.kernel.org
6867 S:      Supported
6868 F:      drivers/power/max14577_charger.c
6869 F:      drivers/power/max77693_charger.c
6870
6871 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6872 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6873 L:      linux-kernel@vger.kernel.org
6874 S:      Supported
6875 F:      drivers/*/*max77802.c
6876 F:      Documentation/devicetree/bindings/*/*max77802.txt
6877 F:      include/dt-bindings/*/*max77802.h
6878
6879 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6880 M:      Chanwoo Choi <cw00.choi@samsung.com>
6881 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6882 L:      linux-kernel@vger.kernel.org
6883 S:      Supported
6884 F:      drivers/*/max14577.c
6885 F:      drivers/*/max77686.c
6886 F:      drivers/*/max77693.c
6887 F:      drivers/extcon/extcon-max14577.c
6888 F:      drivers/extcon/extcon-max77693.c
6889 F:      drivers/rtc/rtc-max77686.c
6890 F:      drivers/clk/clk-max77686.c
6891 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6892 F:      Documentation/devicetree/bindings/*/max77686.txt
6893 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6894 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6895 F:      include/linux/mfd/max14577*.h
6896 F:      include/linux/mfd/max77686*.h
6897 F:      include/linux/mfd/max77693*.h
6898
6899 MAXIRADIO FM RADIO RECEIVER DRIVER
6900 M:      Hans Verkuil <hverkuil@xs4all.nl>
6901 L:      linux-media@vger.kernel.org
6902 T:      git git://linuxtv.org/media_tree.git
6903 W:      https://linuxtv.org
6904 S:      Maintained
6905 F:      drivers/media/radio/radio-maxiradio*
6906
6907 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6908 M:      Peter Rosin <peda@axentia.se>
6909 L:      linux-iio@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/iio/potentiometer/mcp4531.c
6912
6913 MEDIA DRIVERS FOR RENESAS - VSP1
6914 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6915 L:      linux-media@vger.kernel.org
6916 L:      linux-renesas-soc@vger.kernel.org
6917 T:      git git://linuxtv.org/media_tree.git
6918 S:      Supported
6919 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6920 F:      drivers/media/platform/vsp1/
6921
6922 MEDIA DRIVERS FOR ASCOT2E
6923 M:      Sergey Kozlov <serjk@netup.ru>
6924 L:      linux-media@vger.kernel.org
6925 W:      https://linuxtv.org
6926 W:      http://netup.tv/
6927 T:      git git://linuxtv.org/media_tree.git
6928 S:      Supported
6929 F:      drivers/media/dvb-frontends/ascot2e*
6930
6931 MEDIA DRIVERS FOR CXD2841ER
6932 M:      Sergey Kozlov <serjk@netup.ru>
6933 L:      linux-media@vger.kernel.org
6934 W:      https://linuxtv.org
6935 W:      http://netup.tv/
6936 T:      git git://linuxtv.org/media_tree.git
6937 S:      Supported
6938 F:      drivers/media/dvb-frontends/cxd2841er*
6939
6940 MEDIA DRIVERS FOR HORUS3A
6941 M:      Sergey Kozlov <serjk@netup.ru>
6942 L:      linux-media@vger.kernel.org
6943 W:      https://linuxtv.org
6944 W:      http://netup.tv/
6945 T:      git git://linuxtv.org/media_tree.git
6946 S:      Supported
6947 F:      drivers/media/dvb-frontends/horus3a*
6948
6949 MEDIA DRIVERS FOR LNBH25
6950 M:      Sergey Kozlov <serjk@netup.ru>
6951 L:      linux-media@vger.kernel.org
6952 W:      https://linuxtv.org
6953 W:      http://netup.tv/
6954 T:      git git://linuxtv.org/media_tree.git
6955 S:      Supported
6956 F:      drivers/media/dvb-frontends/lnbh25*
6957
6958 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6959 M:      Sergey Kozlov <serjk@netup.ru>
6960 L:      linux-media@vger.kernel.org
6961 W:      https://linuxtv.org
6962 W:      http://netup.tv/
6963 T:      git git://linuxtv.org/media_tree.git
6964 S:      Supported
6965 F:      drivers/media/pci/netup_unidvb/*
6966
6967 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6968 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6969 P:      LinuxTV.org Project
6970 L:      linux-media@vger.kernel.org
6971 W:      https://linuxtv.org
6972 Q:      http://patchwork.kernel.org/project/linux-media/list/
6973 T:      git git://linuxtv.org/media_tree.git
6974 S:      Maintained
6975 F:      Documentation/dvb/
6976 F:      Documentation/video4linux/
6977 F:      Documentation/DocBook/media/
6978 F:      drivers/media/
6979 F:      drivers/staging/media/
6980 F:      include/linux/platform_data/media/
6981 F:      include/media/
6982 F:      include/uapi/linux/dvb/
6983 F:      include/uapi/linux/videodev2.h
6984 F:      include/uapi/linux/media.h
6985 F:      include/uapi/linux/v4l2-*
6986 F:      include/uapi/linux/meye.h
6987 F:      include/uapi/linux/ivtv*
6988 F:      include/uapi/linux/uvcvideo.h
6989
6990 MEDIATEK MT7601U WIRELESS LAN DRIVER
6991 M:      Jakub Kicinski <kubakici@wp.pl>
6992 L:      linux-wireless@vger.kernel.org
6993 S:      Maintained
6994 F:      drivers/net/wireless/mediatek/mt7601u/
6995
6996 MEGARAID SCSI/SAS DRIVERS
6997 M:      Kashyap Desai <kashyap.desai@avagotech.com>
6998 M:      Sumit Saxena <sumit.saxena@avagotech.com>
6999 M:      Uday Lingala <uday.lingala@avagotech.com>
7000 L:      megaraidlinux.pdl@avagotech.com
7001 L:      linux-scsi@vger.kernel.org
7002 W:      http://www.lsi.com
7003 S:      Maintained
7004 F:      Documentation/scsi/megaraid.txt
7005 F:      drivers/scsi/megaraid.*
7006 F:      drivers/scsi/megaraid/
7007
7008 MELLANOX ETHERNET DRIVER (mlx4_en)
7009 M:      Eugenia Emantayev <eugenia@mellanox.com>
7010 L:      netdev@vger.kernel.org
7011 S:      Supported
7012 W:      http://www.mellanox.com
7013 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7014 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7015
7016 MELLANOX ETHERNET DRIVER (mlx5e)
7017 M:      Saeed Mahameed <saeedm@mellanox.com>
7018 L:      netdev@vger.kernel.org
7019 S:      Supported
7020 W:      http://www.mellanox.com
7021 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7022 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7023
7024 MELLANOX ETHERNET SWITCH DRIVERS
7025 M:      Jiri Pirko <jiri@mellanox.com>
7026 M:      Ido Schimmel <idosch@mellanox.com>
7027 L:      netdev@vger.kernel.org
7028 S:      Supported
7029 W:      http://www.mellanox.com
7030 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7031 F:      drivers/net/ethernet/mellanox/mlxsw/
7032
7033 MEMBARRIER SUPPORT
7034 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7035 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7036 L:      linux-kernel@vger.kernel.org
7037 S:      Supported
7038 F:      kernel/membarrier.c
7039 F:      include/uapi/linux/membarrier.h
7040
7041 MEMORY MANAGEMENT
7042 L:      linux-mm@kvack.org
7043 W:      http://www.linux-mm.org
7044 S:      Maintained
7045 F:      include/linux/mm.h
7046 F:      include/linux/gfp.h
7047 F:      include/linux/mmzone.h
7048 F:      include/linux/memory_hotplug.h
7049 F:      include/linux/vmalloc.h
7050 F:      mm/
7051
7052 MEMORY TECHNOLOGY DEVICES (MTD)
7053 M:      David Woodhouse <dwmw2@infradead.org>
7054 M:      Brian Norris <computersforpeace@gmail.com>
7055 L:      linux-mtd@lists.infradead.org
7056 W:      http://www.linux-mtd.infradead.org/
7057 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7058 T:      git git://git.infradead.org/linux-mtd.git
7059 T:      git git://git.infradead.org/l2-mtd.git
7060 S:      Maintained
7061 F:      drivers/mtd/
7062 F:      include/linux/mtd/
7063 F:      include/uapi/mtd/
7064
7065 MEN A21 WATCHDOG DRIVER
7066 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7067 L:      linux-watchdog@vger.kernel.org
7068 S:      Maintained
7069 F:      drivers/watchdog/mena21_wdt.c
7070
7071 MEN CHAMELEON BUS (mcb)
7072 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7073 S:      Maintained
7074 F:      drivers/mcb/
7075 F:      include/linux/mcb.h
7076 F:      Documentation/men-chameleon-bus.txt
7077
7078 MEN F21BMC (Board Management Controller)
7079 M:      Andreas Werner <andreas.werner@men.de>
7080 S:      Supported
7081 F:      drivers/mfd/menf21bmc.c
7082 F:      drivers/watchdog/menf21bmc_wdt.c
7083 F:      drivers/leds/leds-menf21bmc.c
7084 F:      drivers/hwmon/menf21bmc_hwmon.c
7085 F:      Documentation/hwmon/menf21bmc
7086
7087 METAG ARCHITECTURE
7088 M:      James Hogan <james.hogan@imgtec.com>
7089 L:      linux-metag@vger.kernel.org
7090 S:      Odd Fixes
7091 F:      arch/metag/
7092 F:      Documentation/metag/
7093 F:      Documentation/devicetree/bindings/metag/
7094 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7095 F:      drivers/clocksource/metag_generic.c
7096 F:      drivers/irqchip/irq-metag.c
7097 F:      drivers/irqchip/irq-metag-ext.c
7098 F:      drivers/tty/metag_da.c
7099
7100 MICROBLAZE ARCHITECTURE
7101 M:      Michal Simek <monstr@monstr.eu>
7102 W:      http://www.monstr.eu/fdt/
7103 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7104 S:      Supported
7105 F:      arch/microblaze/
7106
7107 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7108 M:      Chen Yu <yu.c.chen@intel.com>
7109 L:      platform-driver-x86@vger.kernel.org
7110 S:      Supported
7111 F:      drivers/platform/x86/surfacepro3_button.c
7112
7113 MICROTEK X6 SCANNER
7114 M:      Oliver Neukum <oliver@neukum.org>
7115 S:      Maintained
7116 F:      drivers/usb/image/microtek.*
7117
7118 MIPS
7119 M:      Ralf Baechle <ralf@linux-mips.org>
7120 L:      linux-mips@linux-mips.org
7121 W:      http://www.linux-mips.org/
7122 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7123 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7124 S:      Supported
7125 F:      Documentation/mips/
7126 F:      arch/mips/
7127
7128 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7129 M:      Hans Verkuil <hverkuil@xs4all.nl>
7130 L:      linux-media@vger.kernel.org
7131 T:      git git://linuxtv.org/media_tree.git
7132 W:      https://linuxtv.org
7133 S:      Odd Fixes
7134 F:      drivers/media/radio/radio-miropcm20*
7135
7136 Mellanox MLX5 core VPI driver
7137 M:      Eli Cohen <eli@mellanox.com>
7138 L:      netdev@vger.kernel.org
7139 L:      linux-rdma@vger.kernel.org
7140 W:      http://www.mellanox.com
7141 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7142 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7143 T:      git git://openfabrics.org/~eli/connect-ib.git
7144 S:      Supported
7145 F:      drivers/net/ethernet/mellanox/mlx5/core/
7146 F:      include/linux/mlx5/
7147
7148 Mellanox MLX5 IB driver
7149 M:      Eli Cohen <eli@mellanox.com>
7150 L:      linux-rdma@vger.kernel.org
7151 W:      http://www.mellanox.com
7152 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7153 T:      git git://openfabrics.org/~eli/connect-ib.git
7154 S:      Supported
7155 F:      include/linux/mlx5/
7156 F:      drivers/infiniband/hw/mlx5/
7157
7158 MELEXIS MLX90614 DRIVER
7159 M:      Crt Mori <cmo@melexis.com>
7160 L:      linux-iio@vger.kernel.org
7161 W:      http://www.melexis.com
7162 S:      Supported
7163 F:      drivers/iio/temperature/mlx90614.c
7164
7165 MN88472 MEDIA DRIVER
7166 M:      Antti Palosaari <crope@iki.fi>
7167 L:      linux-media@vger.kernel.org
7168 W:      https://linuxtv.org
7169 W:      http://palosaari.fi/linux/
7170 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7171 T:      git git://linuxtv.org/anttip/media_tree.git
7172 S:      Maintained
7173 F:      drivers/staging/media/mn88472/
7174 F:      drivers/media/dvb-frontends/mn88472.h
7175
7176 MN88473 MEDIA DRIVER
7177 M:      Antti Palosaari <crope@iki.fi>
7178 L:      linux-media@vger.kernel.org
7179 W:      https://linuxtv.org
7180 W:      http://palosaari.fi/linux/
7181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7182 T:      git git://linuxtv.org/anttip/media_tree.git
7183 S:      Maintained
7184 F:      drivers/staging/media/mn88473/
7185 F:      drivers/media/dvb-frontends/mn88473.h
7186
7187 MODULE SUPPORT
7188 M:      Rusty Russell <rusty@rustcorp.com.au>
7189 S:      Maintained
7190 F:      include/linux/module.h
7191 F:      kernel/module.c
7192
7193 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7194 W:      http://popies.net/meye/
7195 S:      Orphan
7196 F:      Documentation/video4linux/meye.txt
7197 F:      drivers/media/pci/meye/
7198 F:      include/uapi/linux/meye.h
7199
7200 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7201 M:      Jiri Slaby <jirislaby@gmail.com>
7202 S:      Maintained
7203 F:      Documentation/serial/moxa-smartio
7204 F:      drivers/tty/mxser.*
7205
7206 MR800 AVERMEDIA USB FM RADIO DRIVER
7207 M:      Alexey Klimov <klimov.linux@gmail.com>
7208 L:      linux-media@vger.kernel.org
7209 T:      git git://linuxtv.org/media_tree.git
7210 S:      Maintained
7211 F:      drivers/media/radio/radio-mr800.c
7212
7213 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7214 M:      Alan Ott <alan@signal11.us>
7215 L:      linux-wpan@vger.kernel.org
7216 S:      Maintained
7217 F:      drivers/net/ieee802154/mrf24j40.c
7218 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7219
7220 MSI LAPTOP SUPPORT
7221 M:      "Lee, Chun-Yi" <jlee@suse.com>
7222 L:      platform-driver-x86@vger.kernel.org
7223 S:      Maintained
7224 F:      drivers/platform/x86/msi-laptop.c
7225
7226 MSI WMI SUPPORT
7227 L:      platform-driver-x86@vger.kernel.org
7228 S:      Orphan
7229 F:      drivers/platform/x86/msi-wmi.c
7230
7231 MSI001 MEDIA DRIVER
7232 M:      Antti Palosaari <crope@iki.fi>
7233 L:      linux-media@vger.kernel.org
7234 W:      https://linuxtv.org
7235 W:      http://palosaari.fi/linux/
7236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7237 T:      git git://linuxtv.org/anttip/media_tree.git
7238 S:      Maintained
7239 F:      drivers/media/tuners/msi001*
7240
7241 MSI2500 MEDIA DRIVER
7242 M:      Antti Palosaari <crope@iki.fi>
7243 L:      linux-media@vger.kernel.org
7244 W:      https://linuxtv.org
7245 W:      http://palosaari.fi/linux/
7246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7247 T:      git git://linuxtv.org/anttip/media_tree.git
7248 S:      Maintained
7249 F:      drivers/media/usb/msi2500/
7250
7251 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7252 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7253 L:      linux-mtd@lists.infradead.org
7254 S:      Maintained
7255 F:      drivers/mtd/devices/docg3*
7256
7257 MT9M032 APTINA SENSOR DRIVER
7258 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7259 L:      linux-media@vger.kernel.org
7260 T:      git git://linuxtv.org/media_tree.git
7261 S:      Maintained
7262 F:      drivers/media/i2c/mt9m032.c
7263 F:      include/media/i2c/mt9m032.h
7264
7265 MT9P031 APTINA CAMERA SENSOR
7266 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7267 L:      linux-media@vger.kernel.org
7268 T:      git git://linuxtv.org/media_tree.git
7269 S:      Maintained
7270 F:      drivers/media/i2c/mt9p031.c
7271 F:      include/media/i2c/mt9p031.h
7272
7273 MT9T001 APTINA CAMERA SENSOR
7274 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7275 L:      linux-media@vger.kernel.org
7276 T:      git git://linuxtv.org/media_tree.git
7277 S:      Maintained
7278 F:      drivers/media/i2c/mt9t001.c
7279 F:      include/media/i2c/mt9t001.h
7280
7281 MT9V032 APTINA CAMERA SENSOR
7282 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7283 L:      linux-media@vger.kernel.org
7284 T:      git git://linuxtv.org/media_tree.git
7285 S:      Maintained
7286 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7287 F:      drivers/media/i2c/mt9v032.c
7288 F:      include/media/i2c/mt9v032.h
7289
7290 MULTIFUNCTION DEVICES (MFD)
7291 M:      Lee Jones <lee.jones@linaro.org>
7292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7293 S:      Supported
7294 F:      drivers/mfd/
7295 F:      include/linux/mfd/
7296
7297 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7298 M:      Ulf Hansson <ulf.hansson@linaro.org>
7299 L:      linux-mmc@vger.kernel.org
7300 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7301 S:      Maintained
7302 F:      drivers/mmc/
7303 F:      include/linux/mmc/
7304 F:      include/uapi/linux/mmc/
7305
7306 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7307 S:      Orphan
7308 F:      drivers/mmc/host/mmc_spi.c
7309 F:      include/linux/spi/mmc_spi.h
7310
7311 MULTISOUND SOUND DRIVER
7312 M:      Andrew Veliath <andrewtv@usa.net>
7313 S:      Maintained
7314 F:      Documentation/sound/oss/MultiSound
7315 F:      sound/oss/msnd*
7316
7317 MULTITECH MULTIPORT CARD (ISICOM)
7318 S:      Orphan
7319 F:      drivers/tty/isicom.c
7320 F:      include/linux/isicom.h
7321
7322 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7323 M:      Felipe Balbi <balbi@ti.com>
7324 L:      linux-usb@vger.kernel.org
7325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7326 S:      Maintained
7327 F:      drivers/usb/musb/
7328
7329 MXL5007T MEDIA DRIVER
7330 M:      Michael Krufky <mkrufky@linuxtv.org>
7331 L:      linux-media@vger.kernel.org
7332 W:      https://linuxtv.org
7333 W:      http://github.com/mkrufky
7334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7335 T:      git git://linuxtv.org/mkrufky/tuners.git
7336 S:      Maintained
7337 F:      drivers/media/tuners/mxl5007t.*
7338
7339 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7340 M:      Hyong-Youb Kim <hykim@myri.com>
7341 L:      netdev@vger.kernel.org
7342 W:      https://www.myricom.com/support/downloads/myri10ge.html
7343 S:      Supported
7344 F:      drivers/net/ethernet/myricom/myri10ge/
7345
7346 NATSEMI ETHERNET DRIVER (DP8381x)
7347 S:      Orphan
7348 F:      drivers/net/ethernet/natsemi/natsemi.c
7349
7350 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7351 M:      Daniel Mack <zonque@gmail.com>
7352 S:      Maintained
7353 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7354 W:      http://www.native-instruments.com
7355 F:      sound/usb/caiaq/
7356
7357 NCP FILESYSTEM
7358 M:      Petr Vandrovec <petr@vandrovec.name>
7359 S:      Odd Fixes
7360 F:      fs/ncpfs/
7361
7362 NCR 5380 SCSI DRIVERS
7363 M:      Finn Thain <fthain@telegraphics.com.au>
7364 M:      Michael Schmitz <schmitzmic@gmail.com>
7365 L:      linux-scsi@vger.kernel.org
7366 S:      Maintained
7367 F:      Documentation/scsi/g_NCR5380.txt
7368 F:      drivers/scsi/NCR5380.*
7369 F:      drivers/scsi/arm/cumana_1.c
7370 F:      drivers/scsi/arm/oak.c
7371 F:      drivers/scsi/atari_NCR5380.c
7372 F:      drivers/scsi/atari_scsi.*
7373 F:      drivers/scsi/dmx3191d.c
7374 F:      drivers/scsi/dtc.*
7375 F:      drivers/scsi/g_NCR5380.*
7376 F:      drivers/scsi/g_NCR5380_mmio.c
7377 F:      drivers/scsi/mac_scsi.*
7378 F:      drivers/scsi/pas16.*
7379 F:      drivers/scsi/sun3_scsi.*
7380 F:      drivers/scsi/sun3_scsi_vme.c
7381 F:      drivers/scsi/t128.*
7382
7383 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7384 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7385 L:      linux-scsi@vger.kernel.org
7386 S:      Maintained
7387 F:      drivers/scsi/NCR_D700.*
7388
7389 NCT6775 HARDWARE MONITOR DRIVER
7390 M:      Guenter Roeck <linux@roeck-us.net>
7391 L:      lm-sensors@lm-sensors.org
7392 S:      Maintained
7393 F:      Documentation/hwmon/nct6775
7394 F:      drivers/hwmon/nct6775.c
7395
7396 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7397 M:      Faisal Latif <faisal.latif@intel.com>
7398 L:      linux-rdma@vger.kernel.org
7399 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7400 S:      Supported
7401 F:      drivers/infiniband/hw/nes/
7402
7403 NETEM NETWORK EMULATOR
7404 M:      Stephen Hemminger <stephen@networkplumber.org>
7405 L:      netem@lists.linux-foundation.org
7406 S:      Maintained
7407 F:      net/sched/sch_netem.c
7408
7409 NETERION 10GbE DRIVERS (s2io/vxge)
7410 M:      Jon Mason <jdmason@kudzu.us>
7411 L:      netdev@vger.kernel.org
7412 S:      Supported
7413 F:      Documentation/networking/s2io.txt
7414 F:      Documentation/networking/vxge.txt
7415 F:      drivers/net/ethernet/neterion/
7416
7417 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7418 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7419 M:      Patrick McHardy <kaber@trash.net>
7420 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7421 L:      netfilter-devel@vger.kernel.org
7422 L:      coreteam@netfilter.org
7423 W:      http://www.netfilter.org/
7424 W:      http://www.iptables.org/
7425 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7428 S:      Supported
7429 F:      include/linux/netfilter*
7430 F:      include/linux/netfilter/
7431 F:      include/net/netfilter/
7432 F:      include/uapi/linux/netfilter*
7433 F:      include/uapi/linux/netfilter/
7434 F:      net/*/netfilter.c
7435 F:      net/*/netfilter/
7436 F:      net/netfilter/
7437 F:      net/bridge/br_netfilter*.c
7438
7439 NETLABEL
7440 M:      Paul Moore <paul@paul-moore.com>
7441 W:      http://netlabel.sf.net
7442 L:      netdev@vger.kernel.org
7443 S:      Maintained
7444 F:      Documentation/netlabel/
7445 F:      include/net/netlabel.h
7446 F:      net/netlabel/
7447
7448 NETROM NETWORK LAYER
7449 M:      Ralf Baechle <ralf@linux-mips.org>
7450 L:      linux-hams@vger.kernel.org
7451 W:      http://www.linux-ax25.org/
7452 S:      Maintained
7453 F:      include/net/netrom.h
7454 F:      include/uapi/linux/netrom.h
7455 F:      net/netrom/
7456
7457 NETRONOME ETHERNET DRIVERS
7458 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7459 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7460 L:      oss-drivers@netronome.com
7461 S:      Maintained
7462 F:      drivers/net/ethernet/netronome/
7463
7464 NETWORK BLOCK DEVICE (NBD)
7465 M:      Markus Pargmann <mpa@pengutronix.de>
7466 S:      Maintained
7467 L:      nbd-general@lists.sourceforge.net
7468 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7469 F:      Documentation/blockdev/nbd.txt
7470 F:      drivers/block/nbd.c
7471 F:      include/uapi/linux/nbd.h
7472
7473 NETWORK DROP MONITOR
7474 M:      Neil Horman <nhorman@tuxdriver.com>
7475 L:      netdev@vger.kernel.org
7476 S:      Maintained
7477 W:      https://fedorahosted.org/dropwatch/
7478 F:      net/core/drop_monitor.c
7479
7480 NETWORKING [GENERAL]
7481 M:      "David S. Miller" <davem@davemloft.net>
7482 L:      netdev@vger.kernel.org
7483 W:      http://www.linuxfoundation.org/en/Net
7484 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7487 S:      Maintained
7488 F:      net/
7489 F:      include/net/
7490 F:      include/linux/in.h
7491 F:      include/linux/net.h
7492 F:      include/linux/netdevice.h
7493 F:      include/uapi/linux/in.h
7494 F:      include/uapi/linux/net.h
7495 F:      include/uapi/linux/netdevice.h
7496 F:      include/uapi/linux/net_namespace.h
7497 F:      tools/net/
7498 F:      tools/testing/selftests/net/
7499 F:      lib/random32.c
7500 F:      lib/test_bpf.c
7501
7502 NETWORKING [IPv4/IPv6]
7503 M:      "David S. Miller" <davem@davemloft.net>
7504 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7505 M:      James Morris <jmorris@namei.org>
7506 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7507 M:      Patrick McHardy <kaber@trash.net>
7508 L:      netdev@vger.kernel.org
7509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7510 S:      Maintained
7511 F:      net/ipv4/
7512 F:      net/ipv6/
7513 F:      include/net/ip*
7514 F:      arch/x86/net/*
7515
7516 NETWORKING [IPSEC]
7517 M:      Steffen Klassert <steffen.klassert@secunet.com>
7518 M:      Herbert Xu <herbert@gondor.apana.org.au>
7519 M:      "David S. Miller" <davem@davemloft.net>
7520 L:      netdev@vger.kernel.org
7521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7523 S:      Maintained
7524 F:      net/core/flow.c
7525 F:      net/xfrm/
7526 F:      net/key/
7527 F:      net/ipv4/xfrm*
7528 F:      net/ipv4/esp4.c
7529 F:      net/ipv4/ah4.c
7530 F:      net/ipv4/ipcomp.c
7531 F:      net/ipv4/ip_vti.c
7532 F:      net/ipv6/xfrm*
7533 F:      net/ipv6/esp6.c
7534 F:      net/ipv6/ah6.c
7535 F:      net/ipv6/ipcomp6.c
7536 F:      net/ipv6/ip6_vti.c
7537 F:      include/uapi/linux/xfrm.h
7538 F:      include/net/xfrm.h
7539
7540 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7541 M:      Paul Moore <paul@paul-moore.com>
7542 L:      netdev@vger.kernel.org
7543 S:      Maintained
7544
7545 NETWORKING [WIRELESS]
7546 L:      linux-wireless@vger.kernel.org
7547 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7548
7549 NETWORKING DRIVERS
7550 L:      netdev@vger.kernel.org
7551 W:      http://www.linuxfoundation.org/en/Net
7552 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7555 S:      Odd Fixes
7556 F:      drivers/net/
7557 F:      include/linux/if_*
7558 F:      include/linux/netdevice.h
7559 F:      include/linux/etherdevice.h
7560 F:      include/linux/fcdevice.h
7561 F:      include/linux/fddidevice.h
7562 F:      include/linux/hippidevice.h
7563 F:      include/linux/inetdevice.h
7564 F:      include/uapi/linux/if_*
7565 F:      include/uapi/linux/netdevice.h
7566
7567 NETWORKING DRIVERS (WIRELESS)
7568 M:      Kalle Valo <kvalo@codeaurora.org>
7569 L:      linux-wireless@vger.kernel.org
7570 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git/
7572 S:      Maintained
7573 F:      drivers/net/wireless/
7574
7575 NETXEN (1/10) GbE SUPPORT
7576 M:      Manish Chopra <manish.chopra@qlogic.com>
7577 M:      Sony Chacko <sony.chacko@qlogic.com>
7578 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7579 L:      netdev@vger.kernel.org
7580 W:      http://www.qlogic.com
7581 S:      Supported
7582 F:      drivers/net/ethernet/qlogic/netxen/
7583
7584 NFC SUBSYSTEM
7585 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7586 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7587 M:      Samuel Ortiz <sameo@linux.intel.com>
7588 L:      linux-wireless@vger.kernel.org
7589 L:      linux-nfc@lists.01.org (subscribers-only)
7590 S:      Supported
7591 F:      net/nfc/
7592 F:      include/net/nfc/
7593 F:      include/uapi/linux/nfc.h
7594 F:      drivers/nfc/
7595 F:      include/linux/platform_data/microread.h
7596 F:      include/linux/platform_data/nfcmrvl.h
7597 F:      include/linux/platform_data/nxp-nci.h
7598 F:      include/linux/platform_data/pn544.h
7599 F:      include/linux/platform_data/st21nfca.h
7600 F:      include/linux/platform_data/st-nci.h
7601 F:      Documentation/devicetree/bindings/net/nfc/
7602
7603 NFS, SUNRPC, AND LOCKD CLIENTS
7604 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7605 M:      Anna Schumaker <anna.schumaker@netapp.com>
7606 L:      linux-nfs@vger.kernel.org
7607 W:      http://client.linux-nfs.org
7608 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7609 S:      Maintained
7610 F:      fs/lockd/
7611 F:      fs/nfs/
7612 F:      fs/nfs_common/
7613 F:      net/sunrpc/
7614 F:      include/linux/lockd/
7615 F:      include/linux/nfs*
7616 F:      include/linux/sunrpc/
7617 F:      include/uapi/linux/nfs*
7618 F:      include/uapi/linux/sunrpc/
7619
7620 NILFS2 FILESYSTEM
7621 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7622 L:      linux-nilfs@vger.kernel.org
7623 W:      http://nilfs.sourceforge.net/
7624 T:      git git://github.com/konis/nilfs2.git
7625 S:      Supported
7626 F:      Documentation/filesystems/nilfs2.txt
7627 F:      fs/nilfs2/
7628 F:      include/linux/nilfs2_fs.h
7629 F:      include/trace/events/nilfs2.h
7630
7631 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7632 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7633 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7634 S:      Maintained
7635 F:      Documentation/scsi/NinjaSCSI.txt
7636 F:      drivers/scsi/pcmcia/nsp_*
7637
7638 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7639 M:      GOTO Masanori <gotom@debian.or.jp>
7640 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7641 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7642 S:      Maintained
7643 F:      Documentation/scsi/NinjaSCSI.txt
7644 F:      drivers/scsi/nsp32*
7645
7646 NIOS2 ARCHITECTURE
7647 M:      Ley Foon Tan <lftan@altera.com>
7648 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7650 S:      Maintained
7651 F:      arch/nios2/
7652
7653 NOKIA N900 POWER SUPPLY DRIVERS
7654 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7655 S:      Maintained
7656 F:      include/linux/power/bq2415x_charger.h
7657 F:      include/linux/power/bq27xxx_battery.h
7658 F:      include/linux/power/isp1704_charger.h
7659 F:      drivers/power/bq2415x_charger.c
7660 F:      drivers/power/bq27xxx_battery.c
7661 F:      drivers/power/isp1704_charger.c
7662 F:      drivers/power/rx51_battery.c
7663
7664 NTB DRIVER CORE
7665 M:      Jon Mason <jdmason@kudzu.us>
7666 M:      Dave Jiang <dave.jiang@intel.com>
7667 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7668 L:      linux-ntb@googlegroups.com
7669 S:      Supported
7670 W:      https://github.com/jonmason/ntb/wiki
7671 T:      git git://github.com/jonmason/ntb.git
7672 F:      drivers/ntb/
7673 F:      drivers/net/ntb_netdev.c
7674 F:      include/linux/ntb.h
7675 F:      include/linux/ntb_transport.h
7676
7677 NTB INTEL DRIVER
7678 M:      Jon Mason <jdmason@kudzu.us>
7679 M:      Dave Jiang <dave.jiang@intel.com>
7680 L:      linux-ntb@googlegroups.com
7681 S:      Supported
7682 W:      https://github.com/jonmason/ntb/wiki
7683 T:      git git://github.com/jonmason/ntb.git
7684 F:      drivers/ntb/hw/intel/
7685
7686 NTFS FILESYSTEM
7687 M:      Anton Altaparmakov <anton@tuxera.com>
7688 L:      linux-ntfs-dev@lists.sourceforge.net
7689 W:      http://www.tuxera.com/
7690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7691 S:      Supported
7692 F:      Documentation/filesystems/ntfs.txt
7693 F:      fs/ntfs/
7694
7695 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7696 M:      Antonino Daplas <adaplas@gmail.com>
7697 L:      linux-fbdev@vger.kernel.org
7698 S:      Maintained
7699 F:      drivers/video/fbdev/riva/
7700 F:      drivers/video/fbdev/nvidia/
7701
7702 NVM EXPRESS DRIVER
7703 M:      Keith Busch <keith.busch@intel.com>
7704 M:      Jens Axboe <axboe@fb.com>
7705 L:      linux-nvme@lists.infradead.org
7706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7707 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7708 S:      Supported
7709 F:      drivers/nvme/host/
7710 F:      include/linux/nvme.h
7711
7712 NVMEM FRAMEWORK
7713 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7714 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7715 S:      Maintained
7716 F:      drivers/nvmem/
7717 F:      Documentation/devicetree/bindings/nvmem/
7718 F:      include/linux/nvmem-consumer.h
7719 F:      include/linux/nvmem-provider.h
7720
7721 NXP-NCI NFC DRIVER
7722 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7723 R:      Charles Gorand <charles.gorand@effinnov.com>
7724 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7725 S:      Supported
7726 F:      drivers/nfc/nxp-nci
7727
7728 NXP TDA998X DRM DRIVER
7729 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7730 S:      Supported
7731 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7732 F:      include/drm/i2c/tda998x.h
7733
7734 NXP TFA9879 DRIVER
7735 M:      Peter Rosin <peda@axentia.se>
7736 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7737 S:      Maintained
7738 F:      sound/soc/codecs/tfa9879*
7739
7740 OMAP SUPPORT
7741 M:      Tony Lindgren <tony@atomide.com>
7742 L:      linux-omap@vger.kernel.org
7743 W:      http://www.muru.com/linux/omap/
7744 W:      http://linux.omap.com/
7745 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7747 S:      Maintained
7748 F:      arch/arm/*omap*/
7749 F:      arch/arm/configs/omap1_defconfig
7750 F:      arch/arm/configs/omap2plus_defconfig
7751 F:      drivers/i2c/busses/i2c-omap.c
7752 F:      drivers/irqchip/irq-omap-intc.c
7753 F:      drivers/mfd/*omap*.c
7754 F:      drivers/mfd/menelaus.c
7755 F:      drivers/mfd/palmas.c
7756 F:      drivers/mfd/tps65217.c
7757 F:      drivers/mfd/tps65218.c
7758 F:      drivers/mfd/tps65910.c
7759 F:      drivers/mfd/twl-core.[ch]
7760 F:      drivers/mfd/twl4030*.c
7761 F:      drivers/mfd/twl6030*.c
7762 F:      drivers/mfd/twl6040*.c
7763 F:      drivers/regulator/palmas-regulator*.c
7764 F:      drivers/regulator/pbias-regulator.c
7765 F:      drivers/regulator/tps65217-regulator.c
7766 F:      drivers/regulator/tps65218-regulator.c
7767 F:      drivers/regulator/tps65910-regulator.c
7768 F:      drivers/regulator/twl-regulator.c
7769 F:      include/linux/i2c-omap.h
7770
7771 OMAP DEVICE TREE SUPPORT
7772 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7773 M:      Tony Lindgren <tony@atomide.com>
7774 L:      linux-omap@vger.kernel.org
7775 L:      devicetree@vger.kernel.org
7776 S:      Maintained
7777 F:      arch/arm/boot/dts/*omap*
7778 F:      arch/arm/boot/dts/*am3*
7779 F:      arch/arm/boot/dts/*am4*
7780 F:      arch/arm/boot/dts/*am5*
7781 F:      arch/arm/boot/dts/*dra7*
7782
7783 OMAP CLOCK FRAMEWORK SUPPORT
7784 M:      Paul Walmsley <paul@pwsan.com>
7785 L:      linux-omap@vger.kernel.org
7786 S:      Maintained
7787 F:      arch/arm/*omap*/*clock*
7788
7789 OMAP POWER MANAGEMENT SUPPORT
7790 M:      Kevin Hilman <khilman@deeprootsystems.com>
7791 L:      linux-omap@vger.kernel.org
7792 S:      Maintained
7793 F:      arch/arm/*omap*/*pm*
7794 F:      drivers/cpufreq/omap-cpufreq.c
7795
7796 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7797 M:      Rajendra Nayak <rnayak@ti.com>
7798 M:      Paul Walmsley <paul@pwsan.com>
7799 L:      linux-omap@vger.kernel.org
7800 S:      Maintained
7801 F:      arch/arm/mach-omap2/prm*
7802
7803 OMAP AUDIO SUPPORT
7804 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7805 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7806 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7807 L:      linux-omap@vger.kernel.org
7808 S:      Maintained
7809 F:      sound/soc/omap/
7810
7811 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7812 M:      Roger Quadros <rogerq@ti.com>
7813 M:      Tony Lindgren <tony@atomide.com>
7814 L:      linux-omap@vger.kernel.org
7815 S:      Maintained
7816 F:      drivers/memory/omap-gpmc.c
7817 F:      arch/arm/mach-omap2/*gpmc*
7818
7819 OMAP FRAMEBUFFER SUPPORT
7820 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7821 L:      linux-fbdev@vger.kernel.org
7822 L:      linux-omap@vger.kernel.org
7823 S:      Maintained
7824 F:      drivers/video/fbdev/omap/
7825
7826 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7827 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7828 L:      linux-omap@vger.kernel.org
7829 L:      linux-fbdev@vger.kernel.org
7830 S:      Maintained
7831 F:      drivers/video/fbdev/omap2/
7832 F:      Documentation/arm/OMAP/DSS
7833
7834 OMAP HARDWARE SPINLOCK SUPPORT
7835 M:      Ohad Ben-Cohen <ohad@wizery.com>
7836 L:      linux-omap@vger.kernel.org
7837 S:      Maintained
7838 F:      drivers/hwspinlock/omap_hwspinlock.c
7839
7840 OMAP MMC SUPPORT
7841 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7842 L:      linux-omap@vger.kernel.org
7843 S:      Maintained
7844 F:      drivers/mmc/host/omap.c
7845
7846 OMAP HS MMC SUPPORT
7847 L:      linux-mmc@vger.kernel.org
7848 L:      linux-omap@vger.kernel.org
7849 S:      Orphan
7850 F:      drivers/mmc/host/omap_hsmmc.c
7851
7852 OMAP RANDOM NUMBER GENERATOR SUPPORT
7853 M:      Deepak Saxena <dsaxena@plexity.net>
7854 S:      Maintained
7855 F:      drivers/char/hw_random/omap-rng.c
7856
7857 OMAP HWMOD SUPPORT
7858 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7859 M:      Paul Walmsley <paul@pwsan.com>
7860 L:      linux-omap@vger.kernel.org
7861 S:      Maintained
7862 F:      arch/arm/mach-omap2/omap_hwmod.*
7863
7864 OMAP HWMOD DATA
7865 M:      Paul Walmsley <paul@pwsan.com>
7866 L:      linux-omap@vger.kernel.org
7867 S:      Maintained
7868 F:      arch/arm/mach-omap2/omap_hwmod*data*
7869
7870 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7871 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7872 L:      linux-omap@vger.kernel.org
7873 S:      Maintained
7874 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7875
7876 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7877 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7878 L:      linux-media@vger.kernel.org
7879 S:      Maintained
7880 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7881 F:      drivers/media/platform/omap3isp/
7882 F:      drivers/staging/media/omap4iss/
7883
7884 OMAP USB SUPPORT
7885 M:      Felipe Balbi <balbi@ti.com>
7886 L:      linux-usb@vger.kernel.org
7887 L:      linux-omap@vger.kernel.org
7888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7889 S:      Maintained
7890 F:      drivers/usb/*/*omap*
7891 F:      arch/arm/*omap*/usb*
7892
7893 OMAP GPIO DRIVER
7894 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7895 M:      Santosh Shilimkar <ssantosh@kernel.org>
7896 M:      Kevin Hilman <khilman@deeprootsystems.com>
7897 L:      linux-omap@vger.kernel.org
7898 S:      Maintained
7899 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7900 F:      drivers/gpio/gpio-omap.c
7901
7902 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7903 M:      Mark Jackson <mpfj@newflow.co.uk>
7904 L:      linux-omap@vger.kernel.org
7905 S:      Maintained
7906 F:      arch/arm/boot/dts/am335x-nano.dts
7907
7908 OMFS FILESYSTEM
7909 M:      Bob Copeland <me@bobcopeland.com>
7910 L:      linux-karma-devel@lists.sourceforge.net
7911 S:      Maintained
7912 F:      Documentation/filesystems/omfs.txt
7913 F:      fs/omfs/
7914
7915 OMNIKEY CARDMAN 4000 DRIVER
7916 M:      Harald Welte <laforge@gnumonks.org>
7917 S:      Maintained
7918 F:      drivers/char/pcmcia/cm4000_cs.c
7919 F:      include/linux/cm4000_cs.h
7920 F:      include/uapi/linux/cm4000_cs.h
7921
7922 OMNIKEY CARDMAN 4040 DRIVER
7923 M:      Harald Welte <laforge@gnumonks.org>
7924 S:      Maintained
7925 F:      drivers/char/pcmcia/cm4040_cs.*
7926
7927 OMNIVISION OV7670 SENSOR DRIVER
7928 M:      Jonathan Corbet <corbet@lwn.net>
7929 L:      linux-media@vger.kernel.org
7930 T:      git git://linuxtv.org/media_tree.git
7931 S:      Maintained
7932 F:      drivers/media/i2c/ov7670.c
7933
7934 ONENAND FLASH DRIVER
7935 M:      Kyungmin Park <kyungmin.park@samsung.com>
7936 L:      linux-mtd@lists.infradead.org
7937 S:      Maintained
7938 F:      drivers/mtd/onenand/
7939 F:      include/linux/mtd/onenand*.h
7940
7941 ONSTREAM SCSI TAPE DRIVER
7942 M:      Willem Riede <osst@riede.org>
7943 L:      osst-users@lists.sourceforge.net
7944 L:      linux-scsi@vger.kernel.org
7945 S:      Maintained
7946 F:      Documentation/scsi/osst.txt
7947 F:      drivers/scsi/osst.*
7948 F:      drivers/scsi/osst_*.h
7949 F:      drivers/scsi/st.h
7950
7951 OPENCORES I2C BUS DRIVER
7952 M:      Peter Korsgaard <jacmet@sunsite.dk>
7953 L:      linux-i2c@vger.kernel.org
7954 S:      Maintained
7955 F:      Documentation/i2c/busses/i2c-ocores
7956 F:      drivers/i2c/busses/i2c-ocores.c
7957
7958 OPEN FIRMWARE AND FLATTENED DEVICE TREE
7959 M:      Rob Herring <robh+dt@kernel.org>
7960 M:      Frank Rowand <frowand.list@gmail.com>
7961 M:      Grant Likely <grant.likely@linaro.org>
7962 L:      devicetree@vger.kernel.org
7963 W:      http://www.devicetree.org/
7964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
7965 S:      Maintained
7966 F:      drivers/of/
7967 F:      include/linux/of*.h
7968 F:      scripts/dtc/
7969
7970 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
7971 M:      Rob Herring <robh+dt@kernel.org>
7972 M:      Pawel Moll <pawel.moll@arm.com>
7973 M:      Mark Rutland <mark.rutland@arm.com>
7974 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
7975 M:      Kumar Gala <galak@codeaurora.org>
7976 L:      devicetree@vger.kernel.org
7977 S:      Maintained
7978 F:      Documentation/devicetree/
7979 F:      arch/*/boot/dts/
7980 F:      include/dt-bindings/
7981
7982 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
7983 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
7984 L:      devicetree@vger.kernel.org
7985 S:      Maintained
7986 F:      Documentation/devicetree/dynamic-resolution-notes.txt
7987 F:      Documentation/devicetree/overlay-notes.txt
7988 F:      drivers/of/overlay.c
7989 F:      drivers/of/resolver.c
7990
7991 OPENRISC ARCHITECTURE
7992 M:      Jonas Bonn <jonas@southpole.se>
7993 W:      http://openrisc.net
7994 L:      linux@lists.openrisc.net (moderated for non-subscribers)
7995 S:      Maintained
7996 T:      git git://openrisc.net/~jonas/linux
7997 F:      arch/openrisc/
7998
7999 OPENVSWITCH
8000 M:      Pravin Shelar <pshelar@nicira.com>
8001 L:      netdev@vger.kernel.org
8002 L:      dev@openvswitch.org
8003 W:      http://openvswitch.org
8004 S:      Maintained
8005 F:      net/openvswitch/
8006 F:      include/uapi/linux/openvswitch.h
8007
8008 OPERATING PERFORMANCE POINTS (OPP)
8009 M:      Viresh Kumar <vireshk@kernel.org>
8010 M:      Nishanth Menon <nm@ti.com>
8011 M:      Stephen Boyd <sboyd@codeaurora.org>
8012 L:      linux-pm@vger.kernel.org
8013 S:      Maintained
8014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8015 F:      drivers/base/power/opp/
8016 F:      include/linux/pm_opp.h
8017 F:      Documentation/power/opp.txt
8018 F:      Documentation/devicetree/bindings/opp/
8019
8020 OPL4 DRIVER
8021 M:      Clemens Ladisch <clemens@ladisch.de>
8022 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8023 T:      git git://git.alsa-project.org/alsa-kernel.git
8024 S:      Maintained
8025 F:      sound/drivers/opl4/
8026
8027 OPROFILE
8028 M:      Robert Richter <rric@kernel.org>
8029 L:      oprofile-list@lists.sf.net
8030 S:      Maintained
8031 F:      arch/*/include/asm/oprofile*.h
8032 F:      arch/*/oprofile/
8033 F:      drivers/oprofile/
8034 F:      include/linux/oprofile.h
8035
8036 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8037 M:      Mark Fasheh <mfasheh@suse.com>
8038 M:      Joel Becker <jlbec@evilplan.org>
8039 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8040 W:      http://ocfs2.wiki.kernel.org
8041 S:      Supported
8042 F:      Documentation/filesystems/ocfs2.txt
8043 F:      Documentation/filesystems/dlmfs.txt
8044 F:      fs/ocfs2/
8045
8046 ORINOCO DRIVER
8047 L:      linux-wireless@vger.kernel.org
8048 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8049 W:      http://www.nongnu.org/orinoco/
8050 S:      Orphan
8051 F:      drivers/net/wireless/intersil/orinoco/
8052
8053 OSD LIBRARY and FILESYSTEM
8054 M:      Boaz Harrosh <ooo@electrozaur.com>
8055 M:      Benny Halevy <bhalevy@primarydata.com>
8056 L:      osd-dev@open-osd.org
8057 W:      http://open-osd.org
8058 T:      git git://git.open-osd.org/open-osd.git
8059 S:      Maintained
8060 F:      drivers/scsi/osd/
8061 F:      include/scsi/osd_*
8062 F:      fs/exofs/
8063
8064 OVERLAY FILESYSTEM
8065 M:      Miklos Szeredi <miklos@szeredi.hu>
8066 L:      linux-unionfs@vger.kernel.org
8067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8068 S:      Supported
8069 F:      fs/overlayfs/
8070 F:      Documentation/filesystems/overlayfs.txt
8071
8072 P54 WIRELESS DRIVER
8073 M:      Christian Lamparter <chunkeey@googlemail.com>
8074 L:      linux-wireless@vger.kernel.org
8075 W:      http://wireless.kernel.org/en/users/Drivers/p54
8076 S:      Maintained
8077 F:      drivers/net/wireless/intersil/p54/
8078
8079 PA SEMI ETHERNET DRIVER
8080 M:      Olof Johansson <olof@lixom.net>
8081 L:      netdev@vger.kernel.org
8082 S:      Maintained
8083 F:      drivers/net/ethernet/pasemi/*
8084
8085 PA SEMI SMBUS DRIVER
8086 M:      Olof Johansson <olof@lixom.net>
8087 L:      linux-i2c@vger.kernel.org
8088 S:      Maintained
8089 F:      drivers/i2c/busses/i2c-pasemi.c
8090
8091 PADATA PARALLEL EXECUTION MECHANISM
8092 M:      Steffen Klassert <steffen.klassert@secunet.com>
8093 L:      linux-crypto@vger.kernel.org
8094 S:      Maintained
8095 F:      kernel/padata.c
8096 F:      include/linux/padata.h
8097 F:      Documentation/padata.txt
8098
8099 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8100 M:      Harald Welte <laforge@gnumonks.org>
8101 L:      platform-driver-x86@vger.kernel.org
8102 S:      Maintained
8103 F:      drivers/platform/x86/panasonic-laptop.c
8104
8105 PANASONIC MN10300/AM33/AM34 PORT
8106 M:      David Howells <dhowells@redhat.com>
8107 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8108 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8109 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8110 S:      Maintained
8111 F:      Documentation/mn10300/
8112 F:      arch/mn10300/
8113
8114 PARALLEL PORT SUBSYSTEM
8115 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8116 M:      Sudip Mukherjee <sudip@vectorindia.org>
8117 L:      linux-parport@lists.infradead.org (subscribers-only)
8118 S:      Maintained
8119 F:      drivers/parport/
8120 F:      include/linux/parport*.h
8121 F:      drivers/char/ppdev.c
8122 F:      include/uapi/linux/ppdev.h
8123 F:      Documentation/parport*.txt
8124
8125 PARAVIRT_OPS INTERFACE
8126 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8127 M:      Chris Wright <chrisw@sous-sol.org>
8128 M:      Alok Kataria <akataria@vmware.com>
8129 M:      Rusty Russell <rusty@rustcorp.com.au>
8130 L:      virtualization@lists.linux-foundation.org
8131 S:      Supported
8132 F:      Documentation/virtual/paravirt_ops.txt
8133 F:      arch/*/kernel/paravirt*
8134 F:      arch/*/include/asm/paravirt.h
8135
8136 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8137 M:      Tim Waugh <tim@cyberelk.net>
8138 L:      linux-parport@lists.infradead.org (subscribers-only)
8139 S:      Maintained
8140 F:      Documentation/blockdev/paride.txt
8141 F:      drivers/block/paride/
8142
8143 PARISC ARCHITECTURE
8144 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8145 M:      Helge Deller <deller@gmx.de>
8146 L:      linux-parisc@vger.kernel.org
8147 W:      http://www.parisc-linux.org/
8148 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8151 S:      Maintained
8152 F:      arch/parisc/
8153 F:      Documentation/parisc/
8154 F:      drivers/parisc/
8155 F:      drivers/char/agp/parisc-agp.c
8156 F:      drivers/input/serio/gscps2.c
8157 F:      drivers/parport/parport_gsc.*
8158 F:      drivers/tty/serial/8250/8250_gsc.c
8159 F:      drivers/video/fbdev/sti*
8160 F:      drivers/video/console/sti*
8161 F:      drivers/video/logo/logo_parisc*
8162
8163 PC87360 HARDWARE MONITORING DRIVER
8164 M:      Jim Cromie <jim.cromie@gmail.com>
8165 L:      lm-sensors@lm-sensors.org
8166 S:      Maintained
8167 F:      Documentation/hwmon/pc87360
8168 F:      drivers/hwmon/pc87360.c
8169
8170 PC8736x GPIO DRIVER
8171 M:      Jim Cromie <jim.cromie@gmail.com>
8172 S:      Maintained
8173 F:      drivers/char/pc8736x_gpio.c
8174
8175 PC87427 HARDWARE MONITORING DRIVER
8176 M:      Jean Delvare <jdelvare@suse.com>
8177 L:      lm-sensors@lm-sensors.org
8178 S:      Maintained
8179 F:      Documentation/hwmon/pc87427
8180 F:      drivers/hwmon/pc87427.c
8181
8182 PCA9532 LED DRIVER
8183 M:      Riku Voipio <riku.voipio@iki.fi>
8184 S:      Maintained
8185 F:      drivers/leds/leds-pca9532.c
8186 F:      include/linux/leds-pca9532.h
8187
8188 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8189 M:      Guenter Roeck <linux@roeck-us.net>
8190 L:      linux-i2c@vger.kernel.org
8191 S:      Maintained
8192 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8193
8194 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8195 M:      Khalid Aziz <khalid@gonehiking.org>
8196 S:      Maintained
8197 F:      drivers/firmware/pcdp.*
8198
8199 PCI ERROR RECOVERY
8200 M:      Linas Vepstas <linasvepstas@gmail.com>
8201 L:      linux-pci@vger.kernel.org
8202 S:      Supported
8203 F:      Documentation/PCI/pci-error-recovery.txt
8204
8205 PCI SUBSYSTEM
8206 M:      Bjorn Helgaas <bhelgaas@google.com>
8207 L:      linux-pci@vger.kernel.org
8208 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8210 S:      Supported
8211 F:      Documentation/PCI/
8212 F:      drivers/pci/
8213 F:      include/linux/pci*
8214 F:      arch/x86/pci/
8215 F:      arch/x86/kernel/quirks.c
8216
8217 PCI DRIVER FOR ALTERA PCIE IP
8218 M:      Ley Foon Tan <lftan@altera.com>
8219 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8220 L:      linux-pci@vger.kernel.org
8221 S:      Supported
8222 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8223 F:      drivers/pci/host/pcie-altera.c
8224
8225 PCI DRIVER FOR ARM VERSATILE PLATFORM
8226 M:      Rob Herring <robh@kernel.org>
8227 L:      linux-pci@vger.kernel.org
8228 L:      linux-arm-kernel@lists.infradead.org
8229 S:      Maintained
8230 F:      Documentation/devicetree/bindings/pci/versatile.txt
8231 F:      drivers/pci/host/pci-versatile.c
8232
8233 PCI DRIVER FOR APPLIEDMICRO XGENE
8234 M:      Tanmay Inamdar <tinamdar@apm.com>
8235 L:      linux-pci@vger.kernel.org
8236 L:      linux-arm-kernel@lists.infradead.org
8237 S:      Maintained
8238 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8239 F:      drivers/pci/host/pci-xgene.c
8240
8241 PCI DRIVER FOR FREESCALE LAYERSCAPE
8242 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8243 M:      Mingkai Hu <mingkai.hu@freescale.com>
8244 M:      Roy Zang <tie-fei.zang@freescale.com>
8245 L:      linuxppc-dev@lists.ozlabs.org
8246 L:      linux-pci@vger.kernel.org
8247 L:      linux-arm-kernel@lists.infradead.org
8248 S:      Maintained
8249 F:      drivers/pci/host/*layerscape*
8250
8251 PCI DRIVER FOR IMX6
8252 M:      Richard Zhu <Richard.Zhu@freescale.com>
8253 M:      Lucas Stach <l.stach@pengutronix.de>
8254 L:      linux-pci@vger.kernel.org
8255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8256 S:      Maintained
8257 F:      drivers/pci/host/*imx6*
8258
8259 PCI DRIVER FOR TI KEYSTONE
8260 M:      Murali Karicheri <m-karicheri2@ti.com>
8261 L:      linux-pci@vger.kernel.org
8262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8263 S:      Maintained
8264 F:      drivers/pci/host/*keystone*
8265
8266 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8267 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8268 M:      Jason Cooper <jason@lakedaemon.net>
8269 L:      linux-pci@vger.kernel.org
8270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8271 S:      Maintained
8272 F:      drivers/pci/host/*mvebu*
8273
8274 PCI DRIVER FOR NVIDIA TEGRA
8275 M:      Thierry Reding <thierry.reding@gmail.com>
8276 L:      linux-tegra@vger.kernel.org
8277 L:      linux-pci@vger.kernel.org
8278 S:      Supported
8279 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8280 F:      drivers/pci/host/pci-tegra.c
8281
8282 PCI DRIVER FOR TI DRA7XX
8283 M:      Kishon Vijay Abraham I <kishon@ti.com>
8284 L:      linux-omap@vger.kernel.org
8285 L:      linux-pci@vger.kernel.org
8286 S:      Supported
8287 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8288 F:      drivers/pci/host/pci-dra7xx.c
8289
8290 PCI DRIVER FOR RENESAS R-CAR
8291 M:      Simon Horman <horms@verge.net.au>
8292 L:      linux-pci@vger.kernel.org
8293 L:      linux-renesas-soc@vger.kernel.org
8294 S:      Maintained
8295 F:      drivers/pci/host/*rcar*
8296
8297 PCI DRIVER FOR SAMSUNG EXYNOS
8298 M:      Jingoo Han <jingoohan1@gmail.com>
8299 L:      linux-pci@vger.kernel.org
8300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8301 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8302 S:      Maintained
8303 F:      drivers/pci/host/pci-exynos.c
8304
8305 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8306 M:      Jingoo Han <jingoohan1@gmail.com>
8307 M:      Pratyush Anand <pratyush.anand@gmail.com>
8308 L:      linux-pci@vger.kernel.org
8309 S:      Maintained
8310 F:      drivers/pci/host/*designware*
8311
8312 PCI DRIVER FOR GENERIC OF HOSTS
8313 M:      Will Deacon <will.deacon@arm.com>
8314 L:      linux-pci@vger.kernel.org
8315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8316 S:      Maintained
8317 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8318 F:      drivers/pci/host/pci-host-generic.c
8319
8320 PCIE DRIVER FOR ST SPEAR13XX
8321 M:      Pratyush Anand <pratyush.anand@gmail.com>
8322 L:      linux-pci@vger.kernel.org
8323 S:      Maintained
8324 F:      drivers/pci/host/*spear*
8325
8326 PCI MSI DRIVER FOR ALTERA MSI IP
8327 M:      Ley Foon Tan <lftan@altera.com>
8328 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8329 L:      linux-pci@vger.kernel.org
8330 S:      Supported
8331 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8332 F:      drivers/pci/host/pcie-altera-msi.c
8333
8334 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8335 M:      Duc Dang <dhdang@apm.com>
8336 L:      linux-pci@vger.kernel.org
8337 L:      linux-arm-kernel@lists.infradead.org
8338 S:      Maintained
8339 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8340 F:      drivers/pci/host/pci-xgene-msi.c
8341
8342 PCIE DRIVER FOR HISILICON
8343 M:      Zhou Wang <wangzhou1@hisilicon.com>
8344 L:      linux-pci@vger.kernel.org
8345 S:      Maintained
8346 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8347 F:      drivers/pci/host/pcie-hisi.c
8348
8349 PCMCIA SUBSYSTEM
8350 P:      Linux PCMCIA Team
8351 L:      linux-pcmcia@lists.infradead.org
8352 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6.git
8354 S:      Maintained
8355 F:      Documentation/pcmcia/
8356 F:      drivers/pcmcia/
8357 F:      include/pcmcia/
8358
8359 PCNET32 NETWORK DRIVER
8360 M:      Don Fry <pcnet32@frontier.com>
8361 L:      netdev@vger.kernel.org
8362 S:      Maintained
8363 F:      drivers/net/ethernet/amd/pcnet32.c
8364
8365 PCRYPT PARALLEL CRYPTO ENGINE
8366 M:      Steffen Klassert <steffen.klassert@secunet.com>
8367 L:      linux-crypto@vger.kernel.org
8368 S:      Maintained
8369 F:      crypto/pcrypt.c
8370 F:      include/crypto/pcrypt.h
8371
8372 PER-CPU MEMORY ALLOCATOR
8373 M:      Tejun Heo <tj@kernel.org>
8374 M:      Christoph Lameter <cl@linux-foundation.org>
8375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8376 S:      Maintained
8377 F:      include/linux/percpu*.h
8378 F:      mm/percpu*.c
8379 F:      arch/*/include/asm/percpu.h
8380
8381 PER-TASK DELAY ACCOUNTING
8382 M:      Balbir Singh <bsingharora@gmail.com>
8383 S:      Maintained
8384 F:      include/linux/delayacct.h
8385 F:      kernel/delayacct.c
8386
8387 PERFORMANCE EVENTS SUBSYSTEM
8388 M:      Peter Zijlstra <peterz@infradead.org>
8389 M:      Ingo Molnar <mingo@redhat.com>
8390 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8391 L:      linux-kernel@vger.kernel.org
8392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8393 S:      Supported
8394 F:      kernel/events/*
8395 F:      include/linux/perf_event.h
8396 F:      include/uapi/linux/perf_event.h
8397 F:      arch/*/kernel/perf_event*.c
8398 F:      arch/*/kernel/*/perf_event*.c
8399 F:      arch/*/kernel/*/*/perf_event*.c
8400 F:      arch/*/include/asm/perf_event.h
8401 F:      arch/*/kernel/perf_callchain.c
8402 F:      tools/perf/
8403
8404 PERSONALITY HANDLING
8405 M:      Christoph Hellwig <hch@infradead.org>
8406 L:      linux-abi-devel@lists.sourceforge.net
8407 S:      Maintained
8408 F:      include/linux/personality.h
8409 F:      include/uapi/linux/personality.h
8410
8411 PHONET PROTOCOL
8412 M:      Remi Denis-Courmont <courmisch@gmail.com>
8413 S:      Supported
8414 F:      Documentation/networking/phonet.txt
8415 F:      include/linux/phonet.h
8416 F:      include/net/phonet/
8417 F:      include/uapi/linux/phonet.h
8418 F:      net/phonet/
8419
8420 PHRAM MTD DRIVER
8421 M:      Joern Engel <joern@lazybastard.org>
8422 L:      linux-mtd@lists.infradead.org
8423 S:      Maintained
8424 F:      drivers/mtd/devices/phram.c
8425
8426 PICOLCD HID DRIVER
8427 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8428 L:      linux-input@vger.kernel.org
8429 S:      Maintained
8430 F:      drivers/hid/hid-picolcd*
8431
8432 PICOXCELL SUPPORT
8433 M:      Jamie Iles <jamie@jamieiles.com>
8434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8435 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8436 S:      Supported
8437 F:      arch/arm/boot/dts/picoxcell*
8438 F:      arch/arm/mach-picoxcell/
8439 F:      drivers/crypto/picoxcell*
8440
8441 PIN CONTROL SUBSYSTEM
8442 M:      Linus Walleij <linus.walleij@linaro.org>
8443 L:      linux-gpio@vger.kernel.org
8444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8445 S:      Maintained
8446 F:      drivers/pinctrl/
8447 F:      include/linux/pinctrl/
8448
8449 PIN CONTROLLER - ATMEL AT91
8450 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8452 S:      Maintained
8453 F:      drivers/pinctrl/pinctrl-at91.*
8454
8455 PIN CONTROLLER - ATMEL AT91 PIO4
8456 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8458 L:      linux-gpio@vger.kernel.org
8459 S:      Supported
8460 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8461
8462 PIN CONTROLLER - INTEL
8463 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8464 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8465 S:      Maintained
8466 F:      drivers/pinctrl/intel/
8467
8468 PIN CONTROLLER - RENESAS
8469 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8470 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8471 L:      linux-renesas-soc@vger.kernel.org
8472 S:      Maintained
8473 F:      drivers/pinctrl/sh-pfc/
8474
8475 PIN CONTROLLER - SAMSUNG
8476 M:      Tomasz Figa <tomasz.figa@gmail.com>
8477 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8478 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8479 S:      Maintained
8480 F:      drivers/pinctrl/samsung/
8481
8482 PIN CONTROLLER - SINGLE
8483 M:      Tony Lindgren <tony@atomide.com>
8484 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8486 L:      linux-omap@vger.kernel.org
8487 S:      Maintained
8488 F:      drivers/pinctrl/pinctrl-single.c
8489
8490 PIN CONTROLLER - ST SPEAR
8491 M:      Viresh Kumar <vireshk@kernel.org>
8492 L:      spear-devel@list.st.com
8493 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8494 W:      http://www.st.com/spear
8495 S:      Maintained
8496 F:      drivers/pinctrl/spear/
8497
8498 PKTCDVD DRIVER
8499 M:      Jiri Kosina <jikos@kernel.org>
8500 S:      Maintained
8501 F:      drivers/block/pktcdvd.c
8502 F:      include/linux/pktcdvd.h
8503 F:      include/uapi/linux/pktcdvd.h
8504
8505 PKUNITY SOC DRIVERS
8506 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8507 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8508 S:      Maintained
8509 T:      git git://github.com/gxt/linux.git
8510 F:      drivers/input/serio/i8042-unicore32io.h
8511 F:      drivers/i2c/busses/i2c-puv3.c
8512 F:      drivers/video/fbdev/fb-puv3.c
8513 F:      drivers/rtc/rtc-puv3.c
8514
8515 PMBUS HARDWARE MONITORING DRIVERS
8516 M:      Guenter Roeck <linux@roeck-us.net>
8517 L:      lm-sensors@lm-sensors.org
8518 W:      http://www.lm-sensors.org/
8519 W:      http://www.roeck-us.net/linux/drivers/
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8521 S:      Maintained
8522 F:      Documentation/hwmon/pmbus
8523 F:      drivers/hwmon/pmbus/
8524 F:      include/linux/i2c/pmbus.h
8525
8526 PMC SIERRA MaxRAID DRIVER
8527 L:      linux-scsi@vger.kernel.org
8528 W:      http://www.pmc-sierra.com/
8529 S:      Orphan
8530 F:      drivers/scsi/pmcraid.*
8531
8532 PMC SIERRA PM8001 DRIVER
8533 M:      Jack Wang <jinpu.wang@profitbricks.com>
8534 M:      lindar_liu@usish.com
8535 L:      pmchba@pmcs.com
8536 L:      linux-scsi@vger.kernel.org
8537 S:      Supported
8538 F:      drivers/scsi/pm8001/
8539
8540 POSIX CLOCKS and TIMERS
8541 M:      Thomas Gleixner <tglx@linutronix.de>
8542 L:      linux-kernel@vger.kernel.org
8543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8544 S:      Maintained
8545 F:      fs/timerfd.c
8546 F:      include/linux/timer*
8547 F:      kernel/time/*timer*
8548
8549 POWER MANAGEMENT CORE
8550 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8551 L:      linux-pm@vger.kernel.org
8552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8553 S:      Supported
8554 F:      drivers/base/power/
8555 F:      include/linux/pm.h
8556 F:      include/linux/pm_*
8557 F:      include/linux/powercap.h
8558 F:      drivers/powercap/
8559
8560 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8561 M:      Sebastian Reichel <sre@kernel.org>
8562 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8563 M:      David Woodhouse <dwmw2@infradead.org>
8564 L:      linux-pm@vger.kernel.org
8565 T:      git git://git.infradead.org/battery-2.6.git
8566 S:      Maintained
8567 F:      include/linux/power_supply.h
8568 F:      drivers/power/
8569 X:      drivers/power/avs/
8570
8571 POWER STATE COORDINATION INTERFACE (PSCI)
8572 M:      Mark Rutland <mark.rutland@arm.com>
8573 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8574 L:      linux-arm-kernel@lists.infradead.org
8575 S:      Maintained
8576 F:      drivers/firmware/psci.c
8577 F:      include/linux/psci.h
8578 F:      include/uapi/linux/psci.h
8579
8580 PNP SUPPORT
8581 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8582 S:      Maintained
8583 F:      drivers/pnp/
8584
8585 PPP PROTOCOL DRIVERS AND COMPRESSORS
8586 M:      Paul Mackerras <paulus@samba.org>
8587 L:      linux-ppp@vger.kernel.org
8588 S:      Maintained
8589 F:      drivers/net/ppp/ppp_*
8590
8591 PPP OVER ATM (RFC 2364)
8592 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8593 S:      Maintained
8594 F:      net/atm/pppoatm.c
8595 F:      include/uapi/linux/atmppp.h
8596
8597 PPP OVER ETHERNET
8598 M:      Michal Ostrowski <mostrows@earthlink.net>
8599 S:      Maintained
8600 F:      drivers/net/ppp/pppoe.c
8601 F:      drivers/net/ppp/pppox.c
8602
8603 PPP OVER L2TP
8604 M:      James Chapman <jchapman@katalix.com>
8605 S:      Maintained
8606 F:      net/l2tp/l2tp_ppp.c
8607 F:      include/linux/if_pppol2tp.h
8608 F:      include/uapi/linux/if_pppol2tp.h
8609
8610 PPS SUPPORT
8611 M:      Rodolfo Giometti <giometti@enneenne.com>
8612 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8613 L:      linuxpps@ml.enneenne.com (subscribers-only)
8614 S:      Maintained
8615 F:      Documentation/pps/
8616 F:      drivers/pps/
8617 F:      include/linux/pps*.h
8618
8619 PPTP DRIVER
8620 M:      Dmitry Kozlov <xeb@mail.ru>
8621 L:      netdev@vger.kernel.org
8622 S:      Maintained
8623 F:      drivers/net/ppp/pptp.c
8624 W:      http://sourceforge.net/projects/accel-pptp
8625
8626 PREEMPTIBLE KERNEL
8627 M:      Robert Love <rml@tech9.net>
8628 L:      kpreempt-tech@lists.sourceforge.net
8629 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8630 S:      Supported
8631 F:      Documentation/preempt-locking.txt
8632 F:      include/linux/preempt.h
8633
8634 PRISM54 WIRELESS DRIVER
8635 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8636 L:      linux-wireless@vger.kernel.org
8637 W:      http://wireless.kernel.org/en/users/Drivers/p54
8638 S:      Obsolete
8639 F:      drivers/net/wireless/intersil/prism54/
8640
8641 PS3 NETWORK SUPPORT
8642 M:      Geoff Levand <geoff@infradead.org>
8643 L:      netdev@vger.kernel.org
8644 L:      linuxppc-dev@lists.ozlabs.org
8645 S:      Maintained
8646 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8647
8648 PS3 PLATFORM SUPPORT
8649 M:      Geoff Levand <geoff@infradead.org>
8650 L:      linuxppc-dev@lists.ozlabs.org
8651 S:      Maintained
8652 F:      arch/powerpc/boot/ps3*
8653 F:      arch/powerpc/include/asm/lv1call.h
8654 F:      arch/powerpc/include/asm/ps3*.h
8655 F:      arch/powerpc/platforms/ps3/
8656 F:      drivers/*/ps3*
8657 F:      drivers/ps3/
8658 F:      drivers/rtc/rtc-ps3.c
8659 F:      drivers/usb/host/*ps3.c
8660 F:      sound/ppc/snd_ps3*
8661
8662 PS3VRAM DRIVER
8663 M:      Jim Paris <jim@jtan.com>
8664 M:      Geoff Levand <geoff@infradead.org>
8665 L:      linuxppc-dev@lists.ozlabs.org
8666 S:      Maintained
8667 F:      drivers/block/ps3vram.c
8668
8669 PSTORE FILESYSTEM
8670 M:      Anton Vorontsov <anton@enomsg.org>
8671 M:      Colin Cross <ccross@android.com>
8672 M:      Kees Cook <keescook@chromium.org>
8673 M:      Tony Luck <tony.luck@intel.com>
8674 S:      Maintained
8675 T:      git git://git.infradead.org/users/cbou/linux-pstore.git
8676 F:      fs/pstore/
8677 F:      include/linux/pstore*
8678 F:      drivers/firmware/efi/efi-pstore.c
8679 F:      drivers/acpi/apei/erst.c
8680
8681 PTP HARDWARE CLOCK SUPPORT
8682 M:      Richard Cochran <richardcochran@gmail.com>
8683 L:      netdev@vger.kernel.org
8684 S:      Maintained
8685 W:      http://linuxptp.sourceforge.net/
8686 F:      Documentation/ABI/testing/sysfs-ptp
8687 F:      Documentation/ptp/*
8688 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8689 F:      drivers/net/phy/dp83640*
8690 F:      drivers/ptp/*
8691 F:      include/linux/ptp_cl*
8692
8693 PTRACE SUPPORT
8694 M:      Roland McGrath <roland@hack.frob.com>
8695 M:      Oleg Nesterov <oleg@redhat.com>
8696 S:      Maintained
8697 F:      include/asm-generic/syscall.h
8698 F:      include/linux/ptrace.h
8699 F:      include/linux/regset.h
8700 F:      include/linux/tracehook.h
8701 F:      include/uapi/linux/ptrace.h
8702 F:      kernel/ptrace.c
8703
8704 PVRUSB2 VIDEO4LINUX DRIVER
8705 M:      Mike Isely <isely@pobox.com>
8706 L:      pvrusb2@isely.net       (subscribers-only)
8707 L:      linux-media@vger.kernel.org
8708 W:      http://www.isely.net/pvrusb2/
8709 T:      git git://linuxtv.org/media_tree.git
8710 S:      Maintained
8711 F:      Documentation/video4linux/README.pvrusb2
8712 F:      drivers/media/usb/pvrusb2/
8713
8714 PWC WEBCAM DRIVER
8715 M:      Hans de Goede <hdegoede@redhat.com>
8716 L:      linux-media@vger.kernel.org
8717 T:      git git://linuxtv.org/media_tree.git
8718 S:      Maintained
8719 F:      drivers/media/usb/pwc/*
8720
8721 PWM FAN DRIVER
8722 M:      Kamil Debski <k.debski@samsung.com>
8723 L:      lm-sensors@lm-sensors.org
8724 S:      Supported
8725 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8726 F:      Documentation/hwmon/pwm-fan
8727 F:      drivers/hwmon/pwm-fan.c
8728
8729 PWM SUBSYSTEM
8730 M:      Thierry Reding <thierry.reding@gmail.com>
8731 L:      linux-pwm@vger.kernel.org
8732 S:      Maintained
8733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8734 F:      Documentation/pwm.txt
8735 F:      Documentation/devicetree/bindings/pwm/
8736 F:      include/linux/pwm.h
8737 F:      drivers/pwm/
8738 F:      drivers/video/backlight/pwm_bl.c
8739 F:      include/linux/pwm_backlight.h
8740
8741 PXA2xx/PXA3xx SUPPORT
8742 M:      Daniel Mack <daniel@zonque.org>
8743 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8744 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8746 T:      git git://github.com/hzhuang1/linux.git
8747 T:      git git://github.com/rjarzmik/linux.git
8748 S:      Maintained
8749 F:      arch/arm/mach-pxa/
8750 F:      drivers/dma/pxa*
8751 F:      drivers/pcmcia/pxa2xx*
8752 F:      drivers/pinctrl/pxa/
8753 F:      drivers/spi/spi-pxa2xx*
8754 F:      drivers/usb/gadget/udc/pxa2*
8755 F:      include/sound/pxa2xx-lib.h
8756 F:      sound/arm/pxa*
8757 F:      sound/soc/pxa/
8758
8759 PXA GPIO DRIVER
8760 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8761 L:      linux-gpio@vger.kernel.org
8762 S:      Maintained
8763 F:      drivers/gpio/gpio-pxa.c
8764
8765 PXA3xx NAND FLASH DRIVER
8766 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8767 L:      linux-mtd@lists.infradead.org
8768 S:      Maintained
8769 F:      drivers/mtd/nand/pxa3xx_nand.c
8770
8771 MMP SUPPORT
8772 M:      Eric Miao <eric.y.miao@gmail.com>
8773 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8774 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8775 T:      git git://github.com/hzhuang1/linux.git
8776 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8777 S:      Maintained
8778 F:      arch/arm/mach-mmp/
8779
8780 PXA MMCI DRIVER
8781 S:      Orphan
8782
8783 PXA RTC DRIVER
8784 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8785 L:      rtc-linux@googlegroups.com
8786 S:      Maintained
8787
8788 QAT DRIVER
8789 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8790 L:      qat-linux@intel.com
8791 S:      Supported
8792 F:      drivers/crypto/qat/
8793
8794 QIB DRIVER
8795 M:      Mike Marciniszyn <infinipath@intel.com>
8796 L:      linux-rdma@vger.kernel.org
8797 S:      Supported
8798 F:      drivers/infiniband/hw/qib/
8799
8800 QLOGIC QLA1280 SCSI DRIVER
8801 M:      Michael Reed <mdr@sgi.com>
8802 L:      linux-scsi@vger.kernel.org
8803 S:      Maintained
8804 F:      drivers/scsi/qla1280.[ch]
8805
8806 QLOGIC QLA2XXX FC-SCSI DRIVER
8807 M:      qla2xxx-upstream@qlogic.com
8808 L:      linux-scsi@vger.kernel.org
8809 S:      Supported
8810 F:      Documentation/scsi/LICENSE.qla2xxx
8811 F:      drivers/scsi/qla2xxx/
8812
8813 QLOGIC QLA4XXX iSCSI DRIVER
8814 M:      QLogic-Storage-Upstream@qlogic.com
8815 L:      linux-scsi@vger.kernel.org
8816 S:      Supported
8817 F:      Documentation/scsi/LICENSE.qla4xxx
8818 F:      drivers/scsi/qla4xxx/
8819
8820 QLOGIC QLA3XXX NETWORK DRIVER
8821 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8822 M:      Ron Mercer <ron.mercer@qlogic.com>
8823 M:      linux-driver@qlogic.com
8824 L:      netdev@vger.kernel.org
8825 S:      Supported
8826 F:      Documentation/networking/LICENSE.qla3xxx
8827 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8828
8829 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8830 M:      Dept-GELinuxNICDev@qlogic.com
8831 L:      netdev@vger.kernel.org
8832 S:      Supported
8833 F:      drivers/net/ethernet/qlogic/qlcnic/
8834
8835 QLOGIC QLGE 10Gb ETHERNET DRIVER
8836 M:      Harish Patil <harish.patil@qlogic.com>
8837 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8838 M:      Dept-GELinuxNICDev@qlogic.com
8839 M:      linux-driver@qlogic.com
8840 L:      netdev@vger.kernel.org
8841 S:      Supported
8842 F:      drivers/net/ethernet/qlogic/qlge/
8843
8844 QLOGIC QL4xxx ETHERNET DRIVER
8845 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8846 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8847 M:      everest-linux-l2@qlogic.com
8848 L:      netdev@vger.kernel.org
8849 S:      Supported
8850 F:      drivers/net/ethernet/qlogic/qed/
8851 F:      include/linux/qed/
8852 F:      drivers/net/ethernet/qlogic/qede/
8853
8854 QNX4 FILESYSTEM
8855 M:      Anders Larsen <al@alarsen.net>
8856 W:      http://www.alarsen.net/linux/qnx4fs/
8857 S:      Maintained
8858 F:      fs/qnx4/
8859 F:      include/uapi/linux/qnx4_fs.h
8860 F:      include/uapi/linux/qnxtypes.h
8861
8862 QT1010 MEDIA DRIVER
8863 M:      Antti Palosaari <crope@iki.fi>
8864 L:      linux-media@vger.kernel.org
8865 W:      https://linuxtv.org
8866 W:      http://palosaari.fi/linux/
8867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8868 T:      git git://linuxtv.org/anttip/media_tree.git
8869 S:      Maintained
8870 F:      drivers/media/tuners/qt1010*
8871
8872 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8873 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8874 L:      linux-wireless@vger.kernel.org
8875 L:      ath9k-devel@lists.ath9k.org
8876 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8877 S:      Supported
8878 F:      drivers/net/wireless/ath/ath9k/
8879
8880 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8881 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8882 L:      ath10k@lists.infradead.org
8883 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8884 T:      git git://github.com/kvalo/ath.git
8885 S:      Supported
8886 F:      drivers/net/wireless/ath/ath10k/
8887
8888 QUALCOMM HEXAGON ARCHITECTURE
8889 M:      Richard Kuo <rkuo@codeaurora.org>
8890 L:      linux-hexagon@vger.kernel.org
8891 S:      Supported
8892 F:      arch/hexagon/
8893
8894 QUALCOMM WCN36XX WIRELESS DRIVER
8895 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8896 L:      wcn36xx@lists.infradead.org
8897 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8898 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8899 S:      Supported
8900 F:      drivers/net/wireless/ath/wcn36xx/
8901
8902 RADOS BLOCK DEVICE (RBD)
8903 M:      Ilya Dryomov <idryomov@gmail.com>
8904 M:      Sage Weil <sage@redhat.com>
8905 M:      Alex Elder <elder@kernel.org>
8906 L:      ceph-devel@vger.kernel.org
8907 W:      http://ceph.com/
8908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8909 T:      git git://github.com/ceph/ceph-client.git
8910 S:      Supported
8911 F:      Documentation/ABI/testing/sysfs-bus-rbd
8912 F:      drivers/block/rbd.c
8913 F:      drivers/block/rbd_types.h
8914
8915 RADEON FRAMEBUFFER DISPLAY DRIVER
8916 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8917 L:      linux-fbdev@vger.kernel.org
8918 S:      Maintained
8919 F:      drivers/video/fbdev/aty/radeon*
8920 F:      include/uapi/linux/radeonfb.h
8921
8922 RADIOSHARK RADIO DRIVER
8923 M:      Hans de Goede <hdegoede@redhat.com>
8924 L:      linux-media@vger.kernel.org
8925 T:      git git://linuxtv.org/media_tree.git
8926 S:      Maintained
8927 F:      drivers/media/radio/radio-shark.c
8928
8929 RADIOSHARK2 RADIO DRIVER
8930 M:      Hans de Goede <hdegoede@redhat.com>
8931 L:      linux-media@vger.kernel.org
8932 T:      git git://linuxtv.org/media_tree.git
8933 S:      Maintained
8934 F:      drivers/media/radio/radio-shark2.c
8935 F:      drivers/media/radio/radio-tea5777.c
8936
8937 RAGE128 FRAMEBUFFER DISPLAY DRIVER
8938 M:      Paul Mackerras <paulus@samba.org>
8939 L:      linux-fbdev@vger.kernel.org
8940 S:      Maintained
8941 F:      drivers/video/fbdev/aty/aty128fb.c
8942
8943 RALINK RT2X00 WIRELESS LAN DRIVER
8944 P:      rt2x00 project
8945 M:      Stanislaw Gruszka <sgruszka@redhat.com>
8946 M:      Helmut Schaa <helmut.schaa@googlemail.com>
8947 L:      linux-wireless@vger.kernel.org
8948 S:      Maintained
8949 F:      drivers/net/wireless/ralink/rt2x00/
8950
8951 RAMDISK RAM BLOCK DEVICE DRIVER
8952 M:      Jens Axboe <axboe@kernel.dk>
8953 S:      Maintained
8954 F:      Documentation/blockdev/ramdisk.txt
8955 F:      drivers/block/brd.c
8956
8957 RANDOM NUMBER DRIVER
8958 M:      "Theodore Ts'o" <tytso@mit.edu>
8959 S:      Maintained
8960 F:      drivers/char/random.c
8961
8962 RAPIDIO SUBSYSTEM
8963 M:      Matt Porter <mporter@kernel.crashing.org>
8964 M:      Alexandre Bounine <alexandre.bounine@idt.com>
8965 S:      Maintained
8966 F:      drivers/rapidio/
8967
8968 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
8969 L:      linux-wireless@vger.kernel.org
8970 S:      Orphan
8971 F:      drivers/net/wireless/ray*
8972
8973 RCUTORTURE MODULE
8974 M:      Josh Triplett <josh@joshtriplett.org>
8975 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8976 L:      linux-kernel@vger.kernel.org
8977 S:      Supported
8978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8979 F:      Documentation/RCU/torture.txt
8980 F:      kernel/rcu/rcutorture.c
8981
8982 RCUTORTURE TEST FRAMEWORK
8983 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
8984 M:      Josh Triplett <josh@joshtriplett.org>
8985 R:      Steven Rostedt <rostedt@goodmis.org>
8986 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
8987 R:      Lai Jiangshan <jiangshanlai@gmail.com>
8988 L:      linux-kernel@vger.kernel.org
8989 S:      Supported
8990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
8991 F:      tools/testing/selftests/rcutorture
8992
8993 RDC R-321X SoC
8994 M:      Florian Fainelli <florian@openwrt.org>
8995 S:      Maintained
8996
8997 RDC R6040 FAST ETHERNET DRIVER
8998 M:      Florian Fainelli <florian@openwrt.org>
8999 L:      netdev@vger.kernel.org
9000 S:      Maintained
9001 F:      drivers/net/ethernet/rdc/r6040.c
9002
9003 RDS - RELIABLE DATAGRAM SOCKETS
9004 M:      Chien Yen <chien.yen@oracle.com>
9005 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9006 S:      Supported
9007 F:      net/rds/
9008
9009 READ-COPY UPDATE (RCU)
9010 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9011 M:      Josh Triplett <josh@joshtriplett.org>
9012 R:      Steven Rostedt <rostedt@goodmis.org>
9013 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9014 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9015 L:      linux-kernel@vger.kernel.org
9016 W:      http://www.rdrop.com/users/paulmck/RCU/
9017 S:      Supported
9018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9019 F:      Documentation/RCU/
9020 X:      Documentation/RCU/torture.txt
9021 F:      include/linux/rcu*
9022 X:      include/linux/srcu.h
9023 F:      kernel/rcu/
9024 X:      kernel/torture.c
9025
9026 REAL TIME CLOCK (RTC) SUBSYSTEM
9027 M:      Alessandro Zummo <a.zummo@towertech.it>
9028 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9029 L:      rtc-linux@googlegroups.com
9030 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9032 S:      Maintained
9033 F:      Documentation/rtc.txt
9034 F:      drivers/rtc/
9035 F:      include/linux/rtc.h
9036 F:      include/uapi/linux/rtc.h
9037
9038 REALTEK AUDIO CODECS
9039 M:      Bard Liao <bardliao@realtek.com>
9040 M:      Oder Chiou <oder_chiou@realtek.com>
9041 S:      Maintained
9042 F:      sound/soc/codecs/rt*
9043 F:      include/sound/rt*.h
9044
9045 REISERFS FILE SYSTEM
9046 L:      reiserfs-devel@vger.kernel.org
9047 S:      Supported
9048 F:      fs/reiserfs/
9049
9050 REGISTER MAP ABSTRACTION
9051 M:      Mark Brown <broonie@kernel.org>
9052 L:      linux-kernel@vger.kernel.org
9053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9054 S:      Supported
9055 F:      drivers/base/regmap/
9056 F:      include/linux/regmap.h
9057
9058 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9059 M:      Ohad Ben-Cohen <ohad@wizery.com>
9060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9061 S:      Maintained
9062 F:      drivers/remoteproc/
9063 F:      Documentation/remoteproc.txt
9064 F:      include/linux/remoteproc.h
9065
9066 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9067 M:      Ohad Ben-Cohen <ohad@wizery.com>
9068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9069 S:      Maintained
9070 F:      drivers/rpmsg/
9071 F:      Documentation/rpmsg.txt
9072 F:      include/linux/rpmsg.h
9073
9074 RENESAS ETHERNET DRIVERS
9075 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9076 L:      netdev@vger.kernel.org
9077 L:      linux-renesas-soc@vger.kernel.org
9078 F:      drivers/net/ethernet/renesas/
9079 F:      include/linux/sh_eth.h
9080
9081 RENESAS USB2 PHY DRIVER
9082 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9083 L:      linux-renesas-soc@vger.kernel.org
9084 S:      Maintained
9085 F:      drivers/phy/phy-rcar-gen3-usb2.c
9086
9087 RESET CONTROLLER FRAMEWORK
9088 M:      Philipp Zabel <p.zabel@pengutronix.de>
9089 S:      Maintained
9090 F:      drivers/reset/
9091 F:      Documentation/devicetree/bindings/reset/
9092 F:      include/dt-bindings/reset/
9093 F:      include/linux/reset.h
9094 F:      include/linux/reset-controller.h
9095
9096 RFKILL
9097 M:      Johannes Berg <johannes@sipsolutions.net>
9098 L:      linux-wireless@vger.kernel.org
9099 W:      http://wireless.kernel.org/
9100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9102 S:      Maintained
9103 F:      Documentation/rfkill.txt
9104 F:      net/rfkill/
9105
9106 RHASHTABLE
9107 M:      Thomas Graf <tgraf@suug.ch>
9108 L:      netdev@vger.kernel.org
9109 S:      Maintained
9110 F:      lib/rhashtable.c
9111 F:      include/linux/rhashtable.h
9112
9113 RICOH SMARTMEDIA/XD DRIVER
9114 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9115 S:      Maintained
9116 F:      drivers/mtd/nand/r852.c
9117 F:      drivers/mtd/nand/r852.h
9118
9119 RICOH R5C592 MEMORYSTICK DRIVER
9120 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9121 S:      Maintained
9122 F:      drivers/memstick/host/r592.*
9123
9124 ROCCAT DRIVERS
9125 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9126 W:      http://sourceforge.net/projects/roccat/
9127 S:      Maintained
9128 F:      drivers/hid/hid-roccat*
9129 F:      include/linux/hid-roccat*
9130 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9131
9132 ROCKER DRIVER
9133 M:      Jiri Pirko <jiri@resnulli.us>
9134 M:      Scott Feldman <sfeldma@gmail.com>
9135 L:      netdev@vger.kernel.org
9136 S:      Supported
9137 F:      drivers/net/ethernet/rocker/
9138
9139 ROCKETPORT DRIVER
9140 P:      Comtrol Corp.
9141 W:      http://www.comtrol.com
9142 S:      Maintained
9143 F:      Documentation/serial/rocket.txt
9144 F:      drivers/tty/rocket*
9145
9146 ROCKETPORT EXPRESS/INFINITY DRIVER
9147 M:      Kevin Cernekee <cernekee@gmail.com>
9148 L:      linux-serial@vger.kernel.org
9149 S:      Odd Fixes
9150 F:      drivers/tty/serial/rp2.*
9151
9152 ROSE NETWORK LAYER
9153 M:      Ralf Baechle <ralf@linux-mips.org>
9154 L:      linux-hams@vger.kernel.org
9155 W:      http://www.linux-ax25.org/
9156 S:      Maintained
9157 F:      include/net/rose.h
9158 F:      include/uapi/linux/rose.h
9159 F:      net/rose/
9160
9161 RTL2830 MEDIA DRIVER
9162 M:      Antti Palosaari <crope@iki.fi>
9163 L:      linux-media@vger.kernel.org
9164 W:      https://linuxtv.org
9165 W:      http://palosaari.fi/linux/
9166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9167 T:      git git://linuxtv.org/anttip/media_tree.git
9168 S:      Maintained
9169 F:      drivers/media/dvb-frontends/rtl2830*
9170
9171 RTL2832 MEDIA DRIVER
9172 M:      Antti Palosaari <crope@iki.fi>
9173 L:      linux-media@vger.kernel.org
9174 W:      https://linuxtv.org
9175 W:      http://palosaari.fi/linux/
9176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9177 T:      git git://linuxtv.org/anttip/media_tree.git
9178 S:      Maintained
9179 F:      drivers/media/dvb-frontends/rtl2832*
9180
9181 RTL2832_SDR MEDIA DRIVER
9182 M:      Antti Palosaari <crope@iki.fi>
9183 L:      linux-media@vger.kernel.org
9184 W:      https://linuxtv.org
9185 W:      http://palosaari.fi/linux/
9186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9187 T:      git git://linuxtv.org/anttip/media_tree.git
9188 S:      Maintained
9189 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9190
9191 RTL8180 WIRELESS DRIVER
9192 L:      linux-wireless@vger.kernel.org
9193 W:      http://wireless.kernel.org/
9194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9195 S:      Orphan
9196 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9197
9198 RTL8187 WIRELESS DRIVER
9199 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9200 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9201 M:      Larry Finger <Larry.Finger@lwfinger.net>
9202 L:      linux-wireless@vger.kernel.org
9203 W:      http://wireless.kernel.org/
9204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9205 S:      Maintained
9206 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9207
9208 RTL8192CE WIRELESS DRIVER
9209 M:      Larry Finger <Larry.Finger@lwfinger.net>
9210 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9211 L:      linux-wireless@vger.kernel.org
9212 W:      http://wireless.kernel.org/
9213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9214 S:      Maintained
9215 F:      drivers/net/wireless/realtek/rtlwifi/
9216 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9217
9218 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9219 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9220 L:      linux-wireless@vger.kernel.org
9221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9222 S:      Maintained
9223 F:      drivers/net/wireless/realtek/rtl8xxxu/
9224
9225 S3 SAVAGE FRAMEBUFFER DRIVER
9226 M:      Antonino Daplas <adaplas@gmail.com>
9227 L:      linux-fbdev@vger.kernel.org
9228 S:      Maintained
9229 F:      drivers/video/fbdev/savage/
9230
9231 S390
9232 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9233 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9234 L:      linux-s390@vger.kernel.org
9235 W:      http://www.ibm.com/developerworks/linux/linux390/
9236 S:      Supported
9237 F:      arch/s390/
9238 F:      drivers/s390/
9239 F:      Documentation/s390/
9240 F:      Documentation/DocBook/s390*
9241
9242 S390 COMMON I/O LAYER
9243 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9244 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9245 L:      linux-s390@vger.kernel.org
9246 W:      http://www.ibm.com/developerworks/linux/linux390/
9247 S:      Supported
9248 F:      drivers/s390/cio/
9249
9250 S390 DASD DRIVER
9251 M:      Stefan Weinhuber <wein@de.ibm.com>
9252 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9253 L:      linux-s390@vger.kernel.org
9254 W:      http://www.ibm.com/developerworks/linux/linux390/
9255 S:      Supported
9256 F:      drivers/s390/block/dasd*
9257 F:      block/partitions/ibm.c
9258
9259 S390 NETWORK DRIVERS
9260 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9261 L:      linux-s390@vger.kernel.org
9262 W:      http://www.ibm.com/developerworks/linux/linux390/
9263 S:      Supported
9264 F:      drivers/s390/net/
9265
9266 S390 PCI SUBSYSTEM
9267 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9268 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9269 L:      linux-s390@vger.kernel.org
9270 W:      http://www.ibm.com/developerworks/linux/linux390/
9271 S:      Supported
9272 F:      arch/s390/pci/
9273 F:      drivers/pci/hotplug/s390_pci_hpc.c
9274
9275 S390 ZCRYPT DRIVER
9276 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9277 L:      linux-s390@vger.kernel.org
9278 W:      http://www.ibm.com/developerworks/linux/linux390/
9279 S:      Supported
9280 F:      drivers/s390/crypto/
9281
9282 S390 ZFCP DRIVER
9283 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9284 L:      linux-s390@vger.kernel.org
9285 W:      http://www.ibm.com/developerworks/linux/linux390/
9286 S:      Supported
9287 F:      drivers/s390/scsi/zfcp_*
9288
9289 S390 IUCV NETWORK LAYER
9290 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9291 L:      linux-s390@vger.kernel.org
9292 W:      http://www.ibm.com/developerworks/linux/linux390/
9293 S:      Supported
9294 F:      drivers/s390/net/*iucv*
9295 F:      include/net/iucv/
9296 F:      net/iucv/
9297
9298 S390 IOMMU (PCI)
9299 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9300 L:      linux-s390@vger.kernel.org
9301 W:      http://www.ibm.com/developerworks/linux/linux390/
9302 S:      Supported
9303 F:      drivers/iommu/s390-iommu.c
9304
9305 S3C24XX SD/MMC Driver
9306 M:      Ben Dooks <ben-linux@fluff.org>
9307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9308 S:      Supported
9309 F:      drivers/mmc/host/s3cmci.*
9310
9311 SAA6588 RDS RECEIVER DRIVER
9312 M:      Hans Verkuil <hverkuil@xs4all.nl>
9313 L:      linux-media@vger.kernel.org
9314 T:      git git://linuxtv.org/media_tree.git
9315 W:      https://linuxtv.org
9316 S:      Odd Fixes
9317 F:      drivers/media/i2c/saa6588*
9318
9319 SAA7134 VIDEO4LINUX DRIVER
9320 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9321 L:      linux-media@vger.kernel.org
9322 W:      https://linuxtv.org
9323 T:      git git://linuxtv.org/media_tree.git
9324 S:      Odd fixes
9325 F:      Documentation/video4linux/*.saa7134
9326 F:      drivers/media/pci/saa7134/
9327
9328 SAA7146 VIDEO4LINUX-2 DRIVER
9329 M:      Hans Verkuil <hverkuil@xs4all.nl>
9330 L:      linux-media@vger.kernel.org
9331 T:      git git://linuxtv.org/media_tree.git
9332 S:      Maintained
9333 F:      drivers/media/common/saa7146/
9334 F:      drivers/media/pci/saa7146/
9335 F:      include/media/saa7146*
9336
9337 SAMSUNG LAPTOP DRIVER
9338 M:      Corentin Chary <corentin.chary@gmail.com>
9339 L:      platform-driver-x86@vger.kernel.org
9340 S:      Maintained
9341 F:      drivers/platform/x86/samsung-laptop.c
9342
9343 SAMSUNG AUDIO (ASoC) DRIVERS
9344 M:      Sangbeom Kim <sbkim73@samsung.com>
9345 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9346 S:      Supported
9347 F:      sound/soc/samsung/
9348
9349 SAMSUNG FRAMEBUFFER DRIVER
9350 M:      Jingoo Han <jingoohan1@gmail.com>
9351 L:      linux-fbdev@vger.kernel.org
9352 S:      Maintained
9353 F:      drivers/video/fbdev/s3c-fb.c
9354
9355 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9356 M:      Sangbeom Kim <sbkim73@samsung.com>
9357 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9358 L:      linux-kernel@vger.kernel.org
9359 L:      linux-samsung-soc@vger.kernel.org
9360 S:      Supported
9361 F:      drivers/mfd/sec*.c
9362 F:      drivers/regulator/s2m*.c
9363 F:      drivers/regulator/s5m*.c
9364 F:      drivers/clk/clk-s2mps11.c
9365 F:      drivers/rtc/rtc-s5m.c
9366 F:      include/linux/mfd/samsung/
9367 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9368 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9369 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9370 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9371
9372 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9373 M:      Kyungmin Park <kyungmin.park@samsung.com>
9374 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9375 L:      linux-media@vger.kernel.org
9376 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9377 S:      Supported
9378 F:      drivers/media/platform/exynos4-is/
9379
9380 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9381 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9382 L:      linux-media@vger.kernel.org
9383 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9384 S:      Maintained
9385 F:      drivers/media/platform/s3c-camif/
9386 F:      include/media/drv-intf/s3c_camif.h
9387
9388 SAMSUNG S5C73M3 CAMERA DRIVER
9389 M:      Kyungmin Park <kyungmin.park@samsung.com>
9390 M:      Andrzej Hajda <a.hajda@samsung.com>
9391 L:      linux-media@vger.kernel.org
9392 S:      Supported
9393 F:      drivers/media/i2c/s5c73m3/*
9394
9395 SAMSUNG S5K5BAF CAMERA DRIVER
9396 M:      Kyungmin Park <kyungmin.park@samsung.com>
9397 M:      Andrzej Hajda <a.hajda@samsung.com>
9398 L:      linux-media@vger.kernel.org
9399 S:      Supported
9400 F:      drivers/media/i2c/s5k5baf.c
9401
9402 SAMSUNG S3FWRN5 NFC DRIVER
9403 M:      Robert Baldyga <r.baldyga@samsung.com>
9404 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9405 S:      Supported
9406 F:      drivers/nfc/s3fwrn5
9407
9408 SAMSUNG SOC CLOCK DRIVERS
9409 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9410 M:      Tomasz Figa <tomasz.figa@gmail.com>
9411 S:      Supported
9412 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9413 F:      drivers/clk/samsung/
9414
9415 SAMSUNG SXGBE DRIVERS
9416 M:      Byungho An <bh74.an@samsung.com>
9417 M:      Girish K S <ks.giri@samsung.com>
9418 M:      Vipul Pandya <vipul.pandya@samsung.com>
9419 S:      Supported
9420 L:      netdev@vger.kernel.org
9421 F:      drivers/net/ethernet/samsung/sxgbe/
9422
9423 SAMSUNG THERMAL DRIVER
9424 M:      Lukasz Majewski <l.majewski@samsung.com>
9425 L:      linux-pm@vger.kernel.org
9426 L:      linux-samsung-soc@vger.kernel.org
9427 S:      Supported
9428 T:      https://github.com/lmajewski/linux-samsung-thermal.git
9429 F:      drivers/thermal/samsung/
9430
9431 SAMSUNG USB2 PHY DRIVER
9432 M:      Kamil Debski <k.debski@samsung.com>
9433 L:      linux-kernel@vger.kernel.org
9434 S:      Supported
9435 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9436 F:      Documentation/phy/samsung-usb2.txt
9437 F:      drivers/phy/phy-exynos4210-usb2.c
9438 F:      drivers/phy/phy-exynos4x12-usb2.c
9439 F:      drivers/phy/phy-exynos5250-usb2.c
9440 F:      drivers/phy/phy-s5pv210-usb2.c
9441 F:      drivers/phy/phy-samsung-usb2.c
9442 F:      drivers/phy/phy-samsung-usb2.h
9443
9444 SERIAL DRIVERS
9445 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9446 L:      linux-serial@vger.kernel.org
9447 S:      Maintained
9448 F:      drivers/tty/serial/
9449
9450 SYNOPSYS DESIGNWARE DMAC DRIVER
9451 M:      Viresh Kumar <vireshk@kernel.org>
9452 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9453 S:      Maintained
9454 F:      include/linux/dma/dw.h
9455 F:      include/linux/platform_data/dma-dw.h
9456 F:      drivers/dma/dw/
9457
9458 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9459 M: Lars Persson <lars.persson@axis.com>
9460 L: netdev@vger.kernel.org
9461 S: Supported
9462 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9463 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9464
9465 SYNOPSYS DESIGNWARE I2C DRIVER
9466 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9467 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9468 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9469 L:      linux-i2c@vger.kernel.org
9470 S:      Maintained
9471 F:      drivers/i2c/busses/i2c-designware-*
9472 F:      include/linux/platform_data/i2c-designware.h
9473
9474 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9475 M:      Jaehoon Chung <jh80.chung@samsung.com>
9476 L:      linux-mmc@vger.kernel.org
9477 S:      Maintained
9478 F:      include/linux/mmc/dw_mmc.h
9479 F:      drivers/mmc/host/dw_mmc*
9480
9481 SYSTEM TRACE MODULE CLASS
9482 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9483 S:      Maintained
9484 F:      Documentation/trace/stm.txt
9485 F:      drivers/hwtracing/stm/
9486 F:      include/linux/stm.h
9487 F:      include/uapi/linux/stm.h
9488
9489 THUNDERBOLT DRIVER
9490 M:      Andreas Noever <andreas.noever@gmail.com>
9491 S:      Maintained
9492 F:      drivers/thunderbolt/
9493
9494 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9495 M:      John Stultz <john.stultz@linaro.org>
9496 M:      Thomas Gleixner <tglx@linutronix.de>
9497 L:      linux-kernel@vger.kernel.org
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9499 S:      Supported
9500 F:      include/linux/clocksource.h
9501 F:      include/linux/time.h
9502 F:      include/linux/timex.h
9503 F:      include/uapi/linux/time.h
9504 F:      include/uapi/linux/timex.h
9505 F:      kernel/time/clocksource.c
9506 F:      kernel/time/time*.c
9507 F:      kernel/time/alarmtimer.c
9508 F:      kernel/time/ntp.c
9509 F:      tools/testing/selftests/timers/
9510
9511 SC1200 WDT DRIVER
9512 M:      Zwane Mwaikambo <zwanem@gmail.com>
9513 S:      Maintained
9514 F:      drivers/watchdog/sc1200wdt.c
9515
9516 SCHEDULER
9517 M:      Ingo Molnar <mingo@redhat.com>
9518 M:      Peter Zijlstra <peterz@infradead.org>
9519 L:      linux-kernel@vger.kernel.org
9520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9521 S:      Maintained
9522 F:      kernel/sched/
9523 F:      include/linux/sched.h
9524 F:      include/uapi/linux/sched.h
9525 F:      include/linux/wait.h
9526
9527 SCORE ARCHITECTURE
9528 M:      Chen Liqin <liqin.linux@gmail.com>
9529 M:      Lennox Wu <lennox.wu@gmail.com>
9530 W:      http://www.sunplus.com
9531 S:      Supported
9532 F:      arch/score/
9533
9534 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9535 M:      Sudeep Holla <sudeep.holla@arm.com>
9536 L:      linux-arm-kernel@lists.infradead.org
9537 S:      Maintained
9538 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9539 F:      drivers/clk/clk-scpi.c
9540 F:      drivers/cpufreq/scpi-cpufreq.c
9541 F:      drivers/firmware/arm_scpi.c
9542 F:      include/linux/scpi_protocol.h
9543
9544 SCSI CDROM DRIVER
9545 M:      Jens Axboe <axboe@kernel.dk>
9546 L:      linux-scsi@vger.kernel.org
9547 W:      http://www.kernel.dk
9548 S:      Maintained
9549 F:      drivers/scsi/sr*
9550
9551 SCSI RDMA PROTOCOL (SRP) INITIATOR
9552 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9553 L:      linux-rdma@vger.kernel.org
9554 S:      Supported
9555 W:      http://www.openfabrics.org
9556 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9558 F:      drivers/infiniband/ulp/srp/
9559 F:      include/scsi/srp.h
9560
9561 SCSI SG DRIVER
9562 M:      Doug Gilbert <dgilbert@interlog.com>
9563 L:      linux-scsi@vger.kernel.org
9564 W:      http://sg.danny.cz/sg
9565 S:      Maintained
9566 F:      Documentation/scsi/scsi-generic.txt
9567 F:      drivers/scsi/sg.c
9568 F:      include/scsi/sg.h
9569
9570 SCSI SUBSYSTEM
9571 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9573 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9575 L:      linux-scsi@vger.kernel.org
9576 S:      Maintained
9577 F:      drivers/scsi/
9578 F:      include/scsi/
9579
9580 SCSI TAPE DRIVER
9581 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9582 L:      linux-scsi@vger.kernel.org
9583 S:      Maintained
9584 F:      Documentation/scsi/st.txt
9585 F:      drivers/scsi/st.*
9586 F:      drivers/scsi/st_*.h
9587
9588 SCTP PROTOCOL
9589 M:      Vlad Yasevich <vyasevich@gmail.com>
9590 M:      Neil Horman <nhorman@tuxdriver.com>
9591 L:      linux-sctp@vger.kernel.org
9592 W:      http://lksctp.sourceforge.net
9593 S:      Maintained
9594 F:      Documentation/networking/sctp.txt
9595 F:      include/linux/sctp.h
9596 F:      include/uapi/linux/sctp.h
9597 F:      include/net/sctp/
9598 F:      net/sctp/
9599
9600 SCx200 CPU SUPPORT
9601 M:      Jim Cromie <jim.cromie@gmail.com>
9602 S:      Odd Fixes
9603 F:      Documentation/i2c/busses/scx200_acb
9604 F:      arch/x86/platform/scx200/
9605 F:      drivers/watchdog/scx200_wdt.c
9606 F:      drivers/i2c/busses/scx200*
9607 F:      drivers/mtd/maps/scx200_docflash.c
9608 F:      include/linux/scx200.h
9609
9610 SCx200 GPIO DRIVER
9611 M:      Jim Cromie <jim.cromie@gmail.com>
9612 S:      Maintained
9613 F:      drivers/char/scx200_gpio.c
9614 F:      include/linux/scx200_gpio.h
9615
9616 SCx200 HRT CLOCKSOURCE DRIVER
9617 M:      Jim Cromie <jim.cromie@gmail.com>
9618 S:      Maintained
9619 F:      drivers/clocksource/scx200_hrt.c
9620
9621 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9622 M:      Sascha Sommer <saschasommer@freenet.de>
9623 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9624 S:      Maintained
9625 F:      drivers/mmc/host/sdricoh_cs.c
9626
9627 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9628 L:      linux-mmc@vger.kernel.org
9629 S:      Orphan
9630 F:      drivers/mmc/host/sdhci.*
9631 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9632
9633 SECURE COMPUTING
9634 M:      Kees Cook <keescook@chromium.org>
9635 R:      Andy Lutomirski <luto@amacapital.net>
9636 R:      Will Drewry <wad@chromium.org>
9637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9638 S:      Supported
9639 F:      kernel/seccomp.c
9640 F:      include/uapi/linux/seccomp.h
9641 F:      include/linux/seccomp.h
9642 F:      tools/testing/selftests/seccomp/*
9643 K:      \bsecure_computing
9644 K:      \bTIF_SECCOMP\b
9645
9646 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9647 M:      Ben Dooks <ben-linux@fluff.org>
9648 M:      Jaehoon Chung <jh80.chung@samsung.com>
9649 L:      linux-mmc@vger.kernel.org
9650 S:      Maintained
9651 F:      drivers/mmc/host/sdhci-s3c*
9652
9653 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9654 M:      Viresh Kumar <vireshk@kernel.org>
9655 L:      spear-devel@list.st.com
9656 L:      linux-mmc@vger.kernel.org
9657 S:      Maintained
9658 F:      drivers/mmc/host/sdhci-spear.c
9659
9660 SECURITY SUBSYSTEM
9661 M:      James Morris <james.l.morris@oracle.com>
9662 M:      "Serge E. Hallyn" <serge@hallyn.com>
9663 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9665 W:      http://kernsec.org/
9666 S:      Supported
9667 F:      security/
9668
9669 SECURITY CONTACT
9670 M:      Security Officers <security@kernel.org>
9671 S:      Supported
9672
9673 SELINUX SECURITY MODULE
9674 M:      Paul Moore <paul@paul-moore.com>
9675 M:      Stephen Smalley <sds@tycho.nsa.gov>
9676 M:      Eric Paris <eparis@parisplace.org>
9677 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9678 W:      http://selinuxproject.org
9679 T:      git git://git.infradead.org/users/pcmoore/selinux
9680 S:      Supported
9681 F:      include/linux/selinux*
9682 F:      security/selinux/
9683 F:      scripts/selinux/
9684
9685 APPARMOR SECURITY MODULE
9686 M:      John Johansen <john.johansen@canonical.com>
9687 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9688 W:      apparmor.wiki.kernel.org
9689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9690 S:      Supported
9691 F:      security/apparmor/
9692
9693 YAMA SECURITY MODULE
9694 M:      Kees Cook <keescook@chromium.org>
9695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9696 S:      Supported
9697 F:      security/yama/
9698
9699 SENSABLE PHANTOM
9700 M:      Jiri Slaby <jirislaby@gmail.com>
9701 S:      Maintained
9702 F:      drivers/misc/phantom.c
9703 F:      include/uapi/linux/phantom.h
9704
9705 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9706 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9707 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9708 M:      John Soni Jose <sony.john@avagotech.com>
9709 L:      linux-scsi@vger.kernel.org
9710 W:      http://www.avagotech.com
9711 S:      Supported
9712 F:      drivers/scsi/be2iscsi/
9713
9714 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9715 M:      Sathya Perla <sathya.perla@avagotech.com>
9716 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9717 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9718 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9719 L:      netdev@vger.kernel.org
9720 W:      http://www.emulex.com
9721 S:      Supported
9722 F:      drivers/net/ethernet/emulex/benet/
9723
9724 EMULEX ONECONNECT ROCE DRIVER
9725 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9726 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9727 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9728 L:      linux-rdma@vger.kernel.org
9729 W:      http://www.emulex.com
9730 S:      Supported
9731 F:      drivers/infiniband/hw/ocrdma/
9732
9733 SFC NETWORK DRIVER
9734 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9735 M:      Shradha Shah <sshah@solarflare.com>
9736 L:      netdev@vger.kernel.org
9737 S:      Supported
9738 F:      drivers/net/ethernet/sfc/
9739
9740 SGI GRU DRIVER
9741 M:      Dimitri Sivanich <sivanich@sgi.com>
9742 S:      Maintained
9743 F:      drivers/misc/sgi-gru/
9744
9745 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9746 M:      Pat Gefre <pfg@sgi.com>
9747 L:      linux-ia64@vger.kernel.org
9748 S:      Supported
9749 F:      Documentation/ia64/serial.txt
9750 F:      drivers/tty/serial/ioc?_serial.c
9751 F:      include/linux/ioc?.h
9752
9753 SGI XP/XPC/XPNET DRIVER
9754 M:      Cliff Whickman <cpw@sgi.com>
9755 M:      Robin Holt <robinmholt@gmail.com>
9756 S:      Maintained
9757 F:      drivers/misc/sgi-xp/
9758
9759 SI2157 MEDIA DRIVER
9760 M:      Antti Palosaari <crope@iki.fi>
9761 L:      linux-media@vger.kernel.org
9762 W:      https://linuxtv.org
9763 W:      http://palosaari.fi/linux/
9764 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9765 T:      git git://linuxtv.org/anttip/media_tree.git
9766 S:      Maintained
9767 F:      drivers/media/tuners/si2157*
9768
9769 SI2168 MEDIA DRIVER
9770 M:      Antti Palosaari <crope@iki.fi>
9771 L:      linux-media@vger.kernel.org
9772 W:      https://linuxtv.org
9773 W:      http://palosaari.fi/linux/
9774 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9775 T:      git git://linuxtv.org/anttip/media_tree.git
9776 S:      Maintained
9777 F:      drivers/media/dvb-frontends/si2168*
9778
9779 SI470X FM RADIO RECEIVER I2C DRIVER
9780 M:      Hans Verkuil <hverkuil@xs4all.nl>
9781 L:      linux-media@vger.kernel.org
9782 T:      git git://linuxtv.org/media_tree.git
9783 W:      https://linuxtv.org
9784 S:      Odd Fixes
9785 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9786
9787 SI470X FM RADIO RECEIVER USB DRIVER
9788 M:      Hans Verkuil <hverkuil@xs4all.nl>
9789 L:      linux-media@vger.kernel.org
9790 T:      git git://linuxtv.org/media_tree.git
9791 W:      https://linuxtv.org
9792 S:      Maintained
9793 F:      drivers/media/radio/si470x/radio-si470x-common.c
9794 F:      drivers/media/radio/si470x/radio-si470x.h
9795 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9796
9797 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9798 M:      Eduardo Valentin <edubezval@gmail.com>
9799 L:      linux-media@vger.kernel.org
9800 T:      git git://linuxtv.org/media_tree.git
9801 W:      https://linuxtv.org
9802 S:      Odd Fixes
9803 F:      drivers/media/radio/si4713/si4713.?
9804
9805 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9806 M:      Eduardo Valentin <edubezval@gmail.com>
9807 L:      linux-media@vger.kernel.org
9808 T:      git git://linuxtv.org/media_tree.git
9809 W:      https://linuxtv.org
9810 S:      Odd Fixes
9811 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9812
9813 SI4713 FM RADIO TRANSMITTER USB DRIVER
9814 M:      Hans Verkuil <hverkuil@xs4all.nl>
9815 L:      linux-media@vger.kernel.org
9816 T:      git git://linuxtv.org/media_tree.git
9817 W:      https://linuxtv.org
9818 S:      Maintained
9819 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9820
9821 SIANO DVB DRIVER
9822 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9823 L:      linux-media@vger.kernel.org
9824 W:      https://linuxtv.org
9825 T:      git git://linuxtv.org/media_tree.git
9826 S:      Odd fixes
9827 F:      drivers/media/common/siano/
9828 F:      drivers/media/usb/siano/
9829 F:      drivers/media/usb/siano/
9830 F:      drivers/media/mmc/siano/
9831
9832 SIMPLEFB FB DRIVER
9833 M:      Hans de Goede <hdegoede@redhat.com>
9834 L:      linux-fbdev@vger.kernel.org
9835 S:      Maintained
9836 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9837 F:      drivers/video/fbdev/simplefb.c
9838 F:      include/linux/platform_data/simplefb.h
9839
9840 SH_VEU V4L2 MEM2MEM DRIVER
9841 L:      linux-media@vger.kernel.org
9842 S:      Orphan
9843 F:      drivers/media/platform/sh_veu.c
9844
9845 SH_VOU V4L2 OUTPUT DRIVER
9846 L:      linux-media@vger.kernel.org
9847 S:      Orphan
9848 F:      drivers/media/platform/sh_vou.c
9849 F:      include/media/drv-intf/sh_vou.h
9850
9851 SIMPLE FIRMWARE INTERFACE (SFI)
9852 M:      Len Brown <lenb@kernel.org>
9853 L:      sfi-devel@simplefirmware.org
9854 W:      http://simplefirmware.org/
9855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9856 S:      Supported
9857 F:      arch/x86/platform/sfi/
9858 F:      drivers/sfi/
9859 F:      include/linux/sfi*.h
9860
9861 SIMTEC EB110ATX (Chalice CATS)
9862 P:      Ben Dooks
9863 P:      Vincent Sanders <vince@simtec.co.uk>
9864 M:      Simtec Linux Team <linux@simtec.co.uk>
9865 W:      http://www.simtec.co.uk/products/EB110ATX/
9866 S:      Supported
9867
9868 SIMTEC EB2410ITX (BAST)
9869 P:      Ben Dooks
9870 P:      Vincent Sanders <vince@simtec.co.uk>
9871 M:      Simtec Linux Team <linux@simtec.co.uk>
9872 W:      http://www.simtec.co.uk/products/EB2410ITX/
9873 S:      Supported
9874 F:      arch/arm/mach-s3c24xx/mach-bast.c
9875 F:      arch/arm/mach-s3c24xx/bast-ide.c
9876 F:      arch/arm/mach-s3c24xx/bast-irq.c
9877
9878 TI DAVINCI MACHINE SUPPORT
9879 M:      Sekhar Nori <nsekhar@ti.com>
9880 M:      Kevin Hilman <khilman@deeprootsystems.com>
9881 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9882 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9883 S:      Supported
9884 F:      arch/arm/mach-davinci/
9885 F:      drivers/i2c/busses/i2c-davinci.c
9886
9887 TI DAVINCI SERIES MEDIA DRIVER
9888 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9889 L:      linux-media@vger.kernel.org
9890 W:      https://linuxtv.org
9891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9892 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9893 S:      Maintained
9894 F:      drivers/media/platform/davinci/
9895 F:      include/media/davinci/
9896
9897 TI AM437X VPFE DRIVER
9898 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9899 L:      linux-media@vger.kernel.org
9900 W:      https://linuxtv.org
9901 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9902 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9903 S:      Maintained
9904 F:      drivers/media/platform/am437x/
9905
9906 OV2659 OMNIVISION SENSOR DRIVER
9907 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9908 L:      linux-media@vger.kernel.org
9909 W:      https://linuxtv.org
9910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9911 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9912 S:      Maintained
9913 F:      drivers/media/i2c/ov2659.c
9914 F:      include/media/i2c/ov2659.h
9915
9916 SILICON MOTION SM712 FRAME BUFFER DRIVER
9917 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9918 M:      Teddy Wang <teddy.wang@siliconmotion.com>
9919 M:      Sudip Mukherjee <sudip@vectorindia.org>
9920 L:      linux-fbdev@vger.kernel.org
9921 S:      Maintained
9922 F:      drivers/video/fbdev/sm712*
9923 F:      Documentation/fb/sm712fb.txt
9924
9925 SIS 190 ETHERNET DRIVER
9926 M:      Francois Romieu <romieu@fr.zoreil.com>
9927 L:      netdev@vger.kernel.org
9928 S:      Maintained
9929 F:      drivers/net/ethernet/sis/sis190.c
9930
9931 SIS 900/7016 FAST ETHERNET DRIVER
9932 M:      Daniele Venzano <venza@brownhat.org>
9933 W:      http://www.brownhat.org/sis900.html
9934 L:      netdev@vger.kernel.org
9935 S:      Maintained
9936 F:      drivers/net/ethernet/sis/sis900.*
9937
9938 SIS FRAMEBUFFER DRIVER
9939 M:      Thomas Winischhofer <thomas@winischhofer.net>
9940 W:      http://www.winischhofer.net/linuxsisvga.shtml
9941 S:      Maintained
9942 F:      Documentation/fb/sisfb.txt
9943 F:      drivers/video/fbdev/sis/
9944 F:      include/video/sisfb.h
9945
9946 SIS USB2VGA DRIVER
9947 M:      Thomas Winischhofer <thomas@winischhofer.net>
9948 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
9949 S:      Maintained
9950 F:      drivers/usb/misc/sisusbvga/
9951
9952 SLAB ALLOCATOR
9953 M:      Christoph Lameter <cl@linux.com>
9954 M:      Pekka Enberg <penberg@kernel.org>
9955 M:      David Rientjes <rientjes@google.com>
9956 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
9957 M:      Andrew Morton <akpm@linux-foundation.org>
9958 L:      linux-mm@kvack.org
9959 S:      Maintained
9960 F:      include/linux/sl?b*.h
9961 F:      mm/sl?b*
9962
9963 SLEEPABLE READ-COPY UPDATE (SRCU)
9964 M:      Lai Jiangshan <jiangshanlai@gmail.com>
9965 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9966 M:      Josh Triplett <josh@joshtriplett.org>
9967 R:      Steven Rostedt <rostedt@goodmis.org>
9968 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9969 L:      linux-kernel@vger.kernel.org
9970 W:      http://www.rdrop.com/users/paulmck/RCU/
9971 S:      Supported
9972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9973 F:      include/linux/srcu.h
9974 F:      kernel/rcu/srcu.c
9975
9976 SMACK SECURITY MODULE
9977 M:      Casey Schaufler <casey@schaufler-ca.com>
9978 L:      linux-security-module@vger.kernel.org
9979 W:      http://schaufler-ca.com
9980 T:      git git://git.gitorious.org/smack-next/kernel.git
9981 S:      Maintained
9982 F:      Documentation/security/Smack.txt
9983 F:      security/smack/
9984
9985 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
9986 M:      Kevin Hilman <khilman@kernel.org>
9987 M:      Nishanth Menon <nm@ti.com>
9988 S:      Maintained
9989 F:      drivers/power/avs/
9990 F:      include/linux/power/smartreflex.h
9991 L:      linux-pm@vger.kernel.org
9992
9993 SMC91x ETHERNET DRIVER
9994 M:      Nicolas Pitre <nico@fluxnic.net>
9995 S:      Odd Fixes
9996 F:      drivers/net/ethernet/smsc/smc91x.*
9997
9998 SMIA AND SMIA++ IMAGE SENSOR DRIVER
9999 M:      Sakari Ailus <sakari.ailus@iki.fi>
10000 L:      linux-media@vger.kernel.org
10001 S:      Maintained
10002 F:      drivers/media/i2c/smiapp/
10003 F:      include/media/i2c/smiapp.h
10004 F:      drivers/media/i2c/smiapp-pll.c
10005 F:      drivers/media/i2c/smiapp-pll.h
10006 F:      include/uapi/linux/smiapp.h
10007 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10008
10009 SMM665 HARDWARE MONITOR DRIVER
10010 M:      Guenter Roeck <linux@roeck-us.net>
10011 L:      lm-sensors@lm-sensors.org
10012 S:      Maintained
10013 F:      Documentation/hwmon/smm665
10014 F:      drivers/hwmon/smm665.c
10015
10016 SMSC EMC2103 HARDWARE MONITOR DRIVER
10017 M:      Steve Glendinning <steve.glendinning@shawell.net>
10018 L:      lm-sensors@lm-sensors.org
10019 S:      Maintained
10020 F:      Documentation/hwmon/emc2103
10021 F:      drivers/hwmon/emc2103.c
10022
10023 SMSC SCH5627 HARDWARE MONITOR DRIVER
10024 M:      Hans de Goede <hdegoede@redhat.com>
10025 L:      lm-sensors@lm-sensors.org
10026 S:      Supported
10027 F:      Documentation/hwmon/sch5627
10028 F:      drivers/hwmon/sch5627.c
10029
10030 SMSC47B397 HARDWARE MONITOR DRIVER
10031 M:      Jean Delvare <jdelvare@suse.com>
10032 L:      lm-sensors@lm-sensors.org
10033 S:      Maintained
10034 F:      Documentation/hwmon/smsc47b397
10035 F:      drivers/hwmon/smsc47b397.c
10036
10037 SMSC911x ETHERNET DRIVER
10038 M:      Steve Glendinning <steve.glendinning@shawell.net>
10039 L:      netdev@vger.kernel.org
10040 S:      Maintained
10041 F:      include/linux/smsc911x.h
10042 F:      drivers/net/ethernet/smsc/smsc911x.*
10043
10044 SMSC9420 PCI ETHERNET DRIVER
10045 M:      Steve Glendinning <steve.glendinning@shawell.net>
10046 L:      netdev@vger.kernel.org
10047 S:      Maintained
10048 F:      drivers/net/ethernet/smsc/smsc9420.*
10049
10050 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10051 M:      Steve Glendinning <steve.glendinning@shawell.net>
10052 L:      linux-fbdev@vger.kernel.org
10053 S:      Maintained
10054 F:      drivers/video/fbdev/smscufx.c
10055
10056 SOC-CAMERA V4L2 SUBSYSTEM
10057 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10058 L:      linux-media@vger.kernel.org
10059 T:      git git://linuxtv.org/media_tree.git
10060 S:      Maintained
10061 F:      include/media/soc*
10062 F:      drivers/media/i2c/soc_camera/
10063 F:      drivers/media/platform/soc_camera/
10064
10065 SOEKRIS NET48XX LED SUPPORT
10066 M:      Chris Boot <bootc@bootc.net>
10067 S:      Maintained
10068 F:      drivers/leds/leds-net48xx.c
10069
10070 SOFTLOGIC 6x10 MPEG CODEC
10071 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10072 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10073 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10074 M:      Ismael Luceno <ismael@iodev.co.uk>
10075 L:      linux-media@vger.kernel.org
10076 S:      Supported
10077 F:      drivers/media/pci/solo6x10/
10078
10079 SOFTWARE RAID (Multiple Disks) SUPPORT
10080 L:      linux-raid@vger.kernel.org
10081 S:      Supported
10082 F:      drivers/md/
10083 F:      include/linux/raid/
10084 F:      include/uapi/linux/raid/
10085
10086 SONIC NETWORK DRIVER
10087 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10088 L:      netdev@vger.kernel.org
10089 S:      Maintained
10090 F:      drivers/net/ethernet/natsemi/sonic.*
10091
10092 SONICS SILICON BACKPLANE DRIVER (SSB)
10093 M:      Michael Buesch <m@bues.ch>
10094 L:      netdev@vger.kernel.org
10095 S:      Maintained
10096 F:      drivers/ssb/
10097 F:      include/linux/ssb/
10098
10099 SONY VAIO CONTROL DEVICE DRIVER
10100 M:      Mattia Dongili <malattia@linux.it>
10101 L:      platform-driver-x86@vger.kernel.org
10102 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10103 S:      Maintained
10104 F:      Documentation/laptops/sony-laptop.txt
10105 F:      drivers/char/sonypi.c
10106 F:      drivers/platform/x86/sony-laptop.c
10107 F:      include/linux/sony-laptop.h
10108
10109 SONY MEMORYSTICK CARD SUPPORT
10110 M:      Alex Dubov <oakad@yahoo.com>
10111 W:      http://tifmxx.berlios.de/
10112 S:      Maintained
10113 F:      drivers/memstick/host/tifm_ms.c
10114
10115 SONY MEMORYSTICK STANDARD SUPPORT
10116 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10117 S:      Maintained
10118 F:      drivers/memstick/core/ms_block.*
10119
10120 SOUND
10121 M:      Jaroslav Kysela <perex@perex.cz>
10122 M:      Takashi Iwai <tiwai@suse.com>
10123 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10124 W:      http://www.alsa-project.org/
10125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10126 T:      git git://git.alsa-project.org/alsa-kernel.git
10127 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10128 S:      Maintained
10129 F:      Documentation/sound/
10130 F:      include/sound/
10131 F:      include/uapi/sound/
10132 F:      sound/
10133
10134 SOUND - COMPRESSED AUDIO
10135 M:      Vinod Koul <vinod.koul@intel.com>
10136 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10138 S:      Supported
10139 F:      Documentation/sound/alsa/compress_offload.txt
10140 F:      include/sound/compress_driver.h
10141 F:      include/uapi/sound/compress_*
10142 F:      sound/core/compress_offload.c
10143 F:      sound/soc/soc-compress.c
10144
10145 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10146 M:      Liam Girdwood <lgirdwood@gmail.com>
10147 M:      Mark Brown <broonie@kernel.org>
10148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10149 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10150 W:      http://alsa-project.org/main/index.php/ASoC
10151 S:      Supported
10152 F:      Documentation/sound/alsa/soc/
10153 F:      sound/soc/
10154 F:      include/sound/soc*
10155
10156 SOUND - DMAENGINE HELPERS
10157 M:      Lars-Peter Clausen <lars@metafoo.de>
10158 S:      Supported
10159 F:      include/sound/dmaengine_pcm.h
10160 F:      sound/core/pcm_dmaengine.c
10161 F:      sound/soc/soc-generic-dmaengine-pcm.c
10162
10163 SP2 MEDIA DRIVER
10164 M:      Olli Salonen <olli.salonen@iki.fi>
10165 L:      linux-media@vger.kernel.org
10166 W:      https://linuxtv.org
10167 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10168 S:      Maintained
10169 F:      drivers/media/dvb-frontends/sp2*
10170
10171 SPARC + UltraSPARC (sparc/sparc64)
10172 M:      "David S. Miller" <davem@davemloft.net>
10173 L:      sparclinux@vger.kernel.org
10174 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10177 S:      Maintained
10178 F:      arch/sparc/
10179 F:      drivers/sbus/
10180
10181 SPARC SERIAL DRIVERS
10182 M:      "David S. Miller" <davem@davemloft.net>
10183 L:      sparclinux@vger.kernel.org
10184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10186 S:      Maintained
10187 F:      include/linux/sunserialcore.h
10188 F:      drivers/tty/serial/suncore.c
10189 F:      drivers/tty/serial/sunhv.c
10190 F:      drivers/tty/serial/sunsab.c
10191 F:      drivers/tty/serial/sunsab.h
10192 F:      drivers/tty/serial/sunsu.c
10193 F:      drivers/tty/serial/sunzilog.c
10194 F:      drivers/tty/serial/sunzilog.h
10195
10196 SPARSE CHECKER
10197 M:      "Christopher Li" <sparse@chrisli.org>
10198 L:      linux-sparse@vger.kernel.org
10199 W:      https://sparse.wiki.kernel.org/
10200 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10201 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10202 S:      Maintained
10203 F:      include/linux/compiler.h
10204
10205 SPEAR PLATFORM SUPPORT
10206 M:      Viresh Kumar <vireshk@kernel.org>
10207 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10208 L:      spear-devel@list.st.com
10209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10210 W:      http://www.st.com/spear
10211 S:      Maintained
10212 F:      arch/arm/mach-spear/
10213
10214 SPEAR CLOCK FRAMEWORK SUPPORT
10215 M:      Viresh Kumar <vireshk@kernel.org>
10216 L:      spear-devel@list.st.com
10217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10218 W:      http://www.st.com/spear
10219 S:      Maintained
10220 F:      drivers/clk/spear/
10221
10222 SPI SUBSYSTEM
10223 M:      Mark Brown <broonie@kernel.org>
10224 L:      linux-spi@vger.kernel.org
10225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10226 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10227 S:      Maintained
10228 F:      Documentation/spi/
10229 F:      drivers/spi/
10230 F:      include/linux/spi/
10231 F:      include/uapi/linux/spi/
10232
10233 SPIDERNET NETWORK DRIVER for CELL
10234 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10235 L:      netdev@vger.kernel.org
10236 S:      Supported
10237 F:      Documentation/networking/spider_net.txt
10238 F:      drivers/net/ethernet/toshiba/spider_net*
10239
10240 SPU FILE SYSTEM
10241 M:      Jeremy Kerr <jk@ozlabs.org>
10242 L:      linuxppc-dev@lists.ozlabs.org
10243 W:      http://www.ibm.com/developerworks/power/cell/
10244 S:      Supported
10245 F:      Documentation/filesystems/spufs.txt
10246 F:      arch/powerpc/platforms/cell/spufs/
10247
10248 SQUASHFS FILE SYSTEM
10249 M:      Phillip Lougher <phillip@squashfs.org.uk>
10250 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10251 W:      http://squashfs.org.uk
10252 S:      Maintained
10253 F:      Documentation/filesystems/squashfs.txt
10254 F:      fs/squashfs/
10255
10256 SRM (Alpha) environment access
10257 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10258 S:      Maintained
10259 F:      arch/alpha/kernel/srm_env.c
10260
10261 STABLE BRANCH
10262 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10263 L:      stable@vger.kernel.org
10264 S:      Supported
10265 F:      Documentation/stable_kernel_rules.txt
10266
10267 STAGING SUBSYSTEM
10268 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10270 L:      devel@driverdev.osuosl.org
10271 S:      Supported
10272 F:      drivers/staging/
10273
10274 STAGING - COMEDI
10275 M:      Ian Abbott <abbotti@mev.co.uk>
10276 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10277 S:      Odd Fixes
10278 F:      drivers/staging/comedi/
10279
10280 STAGING - FLARION FT1000 DRIVERS
10281 M:      Marek Belisko <marek.belisko@gmail.com>
10282 S:      Odd Fixes
10283 F:      drivers/staging/ft1000/
10284
10285 STAGING - INDUSTRIAL IO
10286 M:      Jonathan Cameron <jic23@kernel.org>
10287 L:      linux-iio@vger.kernel.org
10288 S:      Odd Fixes
10289 F:      drivers/staging/iio/
10290
10291 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10292 M:      Jarod Wilson <jarod@wilsonet.com>
10293 W:      http://www.lirc.org/
10294 S:      Odd Fixes
10295 F:      drivers/staging/media/lirc/
10296
10297 STAGING - LUSTRE PARALLEL FILESYSTEM
10298 M:      Oleg Drokin <oleg.drokin@intel.com>
10299 M:      Andreas Dilger <andreas.dilger@intel.com>
10300 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10301 W:      http://wiki.lustre.org/
10302 S:      Maintained
10303 F:      drivers/staging/lustre
10304
10305 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10306 M:      Marc Dietrich <marvin24@gmx.de>
10307 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10308 L:      linux-tegra@vger.kernel.org
10309 S:      Maintained
10310 F:      drivers/staging/nvec/
10311
10312 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10313 M:      Jens Frederich <jfrederich@gmail.com>
10314 M:      Daniel Drake <dsd@laptop.org>
10315 M:      Jon Nettleton <jon.nettleton@gmail.com>
10316 W:      http://wiki.laptop.org/go/DCON
10317 S:      Maintained
10318 F:      drivers/staging/olpc_dcon/
10319
10320 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10321 M:      Willy Tarreau <willy@meta-x.org>
10322 S:      Odd Fixes
10323 F:      drivers/staging/panel/
10324
10325 STAGING - REALTEK RTL8712U DRIVERS
10326 M:      Larry Finger <Larry.Finger@lwfinger.net>
10327 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10328 S:      Odd Fixes
10329 F:      drivers/staging/rtl8712/
10330
10331 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10332 M:      Larry Finger <Larry.Finger@lwfinger.net>
10333 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10334 L:      linux-wireless@vger.kernel.org
10335 S:      Maintained
10336 F:      drivers/staging/rtl8723au/
10337
10338 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10339 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10340 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10341 M:      Sudip Mukherjee <sudip@vectorindia.org>
10342 L:      linux-fbdev@vger.kernel.org
10343 S:      Maintained
10344 F:      drivers/staging/sm750fb/
10345
10346 STAGING - SLICOSS
10347 M:      Lior Dotan <liodot@gmail.com>
10348 M:      Christopher Harrer <charrer@alacritech.com>
10349 S:      Odd Fixes
10350 F:      drivers/staging/slicoss/
10351
10352 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10353 M:      William Hubbs <w.d.hubbs@gmail.com>
10354 M:      Chris Brannon <chris@the-brannons.com>
10355 M:      Kirk Reiser <kirk@reisers.ca>
10356 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10357 L:      speakup@linux-speakup.org
10358 W:      http://www.linux-speakup.org/
10359 S:      Odd Fixes
10360 F:      drivers/staging/speakup/
10361
10362 STAGING - VIA VT665X DRIVERS
10363 M:      Forest Bond <forest@alittletooquiet.net>
10364 S:      Odd Fixes
10365 F:      drivers/staging/vt665?/
10366
10367 STAGING - WILC1000 WIFI DRIVER
10368 M:      Johnny Kim <johnny.kim@atmel.com>
10369 M:      Austin Shin <austin.shin@atmel.com>
10370 M:      Chris Park <chris.park@atmel.com>
10371 M:      Tony Cho <tony.cho@atmel.com>
10372 M:      Glen Lee <glen.lee@atmel.com>
10373 M:      Leo Kim <leo.kim@atmel.com>
10374 L:      linux-wireless@vger.kernel.org
10375 S:      Supported
10376 F:      drivers/staging/wilc1000/
10377
10378 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10379 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10380 S:      Odd Fixes
10381 F:      drivers/staging/xgifb/
10382
10383 HFI1 DRIVER
10384 M:      Mike Marciniszyn <infinipath@intel.com>
10385 L:      linux-rdma@vger.kernel.org
10386 S:      Supported
10387 F:      drivers/staging/rdma/hfi1
10388
10389 STARFIRE/DURALAN NETWORK DRIVER
10390 M:      Ion Badulescu <ionut@badula.org>
10391 S:      Odd Fixes
10392 F:      drivers/net/ethernet/adaptec/starfire*
10393
10394 SUN3/3X
10395 M:      Sam Creasey <sammy@sammy.net>
10396 W:      http://sammy.net/sun3/
10397 S:      Maintained
10398 F:      arch/m68k/kernel/*sun3*
10399 F:      arch/m68k/sun3*/
10400 F:      arch/m68k/include/asm/sun3*
10401 F:      drivers/net/ethernet/i825xx/sun3*
10402
10403 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10404 M:      Hans de Goede <hdegoede@redhat.com>
10405 L:      linux-input@vger.kernel.org
10406 S:      Maintained
10407 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10408 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10409
10410 SUNDANCE NETWORK DRIVER
10411 M:      Denis Kirjanov <kda@linux-powerpc.org>
10412 L:      netdev@vger.kernel.org
10413 S:      Maintained
10414 F:      drivers/net/ethernet/dlink/sundance.c
10415
10416 SUPERH
10417 L:      linux-sh@vger.kernel.org
10418 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10419 S:      Orphan
10420 F:      Documentation/sh/
10421 F:      arch/sh/
10422 F:      drivers/sh/
10423
10424 SUSPEND TO RAM
10425 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10426 M:      Len Brown <len.brown@intel.com>
10427 M:      Pavel Machek <pavel@ucw.cz>
10428 L:      linux-pm@vger.kernel.org
10429 S:      Supported
10430 F:      Documentation/power/
10431 F:      arch/x86/kernel/acpi/
10432 F:      drivers/base/power/
10433 F:      kernel/power/
10434 F:      include/linux/suspend.h
10435 F:      include/linux/freezer.h
10436 F:      include/linux/pm.h
10437
10438 SVGA HANDLING
10439 M:      Martin Mares <mj@ucw.cz>
10440 L:      linux-video@atrey.karlin.mff.cuni.cz
10441 S:      Maintained
10442 F:      Documentation/svga.txt
10443 F:      arch/x86/boot/video*
10444
10445 SWIOTLB SUBSYSTEM
10446 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10447 L:      linux-kernel@vger.kernel.org
10448 S:      Supported
10449 F:      lib/swiotlb.c
10450 F:      arch/*/kernel/pci-swiotlb.c
10451 F:      include/linux/swiotlb.h
10452
10453 SWITCHDEV
10454 M:      Jiri Pirko <jiri@resnulli.us>
10455 L:      netdev@vger.kernel.org
10456 S:      Supported
10457 F:      net/switchdev/
10458 F:      include/net/switchdev.h
10459
10460 SYNOPSYS ARC ARCHITECTURE
10461 M:      Vineet Gupta <vgupta@synopsys.com>
10462 L:      linux-snps-arc@lists.infradead.org
10463 S:      Supported
10464 F:      arch/arc/
10465 F:      Documentation/devicetree/bindings/arc/*
10466 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10467 F:      drivers/tty/serial/arc_uart.c
10468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10469
10470 SYNOPSYS ARC SDP platform support
10471 M:      Alexey Brodkin <abrodkin@synopsys.com>
10472 S:      Supported
10473 F:      arch/arc/plat-axs10x
10474 F:      arch/arc/boot/dts/ax*
10475 F:      Documentation/devicetree/bindings/arc/axs10*
10476
10477 SYSTEM CONFIGURATION (SYSCON)
10478 M:      Lee Jones <lee.jones@linaro.org>
10479 M:      Arnd Bergmann <arnd@arndb.de>
10480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10481 S:      Supported
10482 F:      drivers/mfd/syscon.c
10483
10484 SYSV FILESYSTEM
10485 M:      Christoph Hellwig <hch@infradead.org>
10486 S:      Maintained
10487 F:      Documentation/filesystems/sysv-fs.txt
10488 F:      fs/sysv/
10489 F:      include/linux/sysv_fs.h
10490
10491 TARGET SUBSYSTEM
10492 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10493 L:      linux-scsi@vger.kernel.org
10494 L:      target-devel@vger.kernel.org
10495 W:      http://www.linux-iscsi.org
10496 W:      http://groups.google.com/group/linux-iscsi-target-dev
10497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10498 S:      Supported
10499 F:      drivers/target/
10500 F:      include/target/
10501 F:      Documentation/target/
10502
10503 TASKSTATS STATISTICS INTERFACE
10504 M:      Balbir Singh <bsingharora@gmail.com>
10505 S:      Maintained
10506 F:      Documentation/accounting/taskstats*
10507 F:      include/linux/taskstats*
10508 F:      kernel/taskstats.c
10509
10510 TC CLASSIFIER
10511 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10512 L:      netdev@vger.kernel.org
10513 S:      Maintained
10514 F:      include/net/pkt_cls.h
10515 F:      include/uapi/linux/pkt_cls.h
10516 F:      net/sched/
10517
10518 TCP LOW PRIORITY MODULE
10519 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10520 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10521 W:      http://tcp-lp-mod.sourceforge.net/
10522 S:      Maintained
10523 F:      net/ipv4/tcp_lp.c
10524
10525 TDA10071 MEDIA DRIVER
10526 M:      Antti Palosaari <crope@iki.fi>
10527 L:      linux-media@vger.kernel.org
10528 W:      https://linuxtv.org
10529 W:      http://palosaari.fi/linux/
10530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10531 T:      git git://linuxtv.org/anttip/media_tree.git
10532 S:      Maintained
10533 F:      drivers/media/dvb-frontends/tda10071*
10534
10535 TDA18212 MEDIA DRIVER
10536 M:      Antti Palosaari <crope@iki.fi>
10537 L:      linux-media@vger.kernel.org
10538 W:      https://linuxtv.org
10539 W:      http://palosaari.fi/linux/
10540 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10541 T:      git git://linuxtv.org/anttip/media_tree.git
10542 S:      Maintained
10543 F:      drivers/media/tuners/tda18212*
10544
10545 TDA18218 MEDIA DRIVER
10546 M:      Antti Palosaari <crope@iki.fi>
10547 L:      linux-media@vger.kernel.org
10548 W:      https://linuxtv.org
10549 W:      http://palosaari.fi/linux/
10550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10551 T:      git git://linuxtv.org/anttip/media_tree.git
10552 S:      Maintained
10553 F:      drivers/media/tuners/tda18218*
10554
10555 TDA18271 MEDIA DRIVER
10556 M:      Michael Krufky <mkrufky@linuxtv.org>
10557 L:      linux-media@vger.kernel.org
10558 W:      https://linuxtv.org
10559 W:      http://github.com/mkrufky
10560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10561 T:      git git://linuxtv.org/mkrufky/tuners.git
10562 S:      Maintained
10563 F:      drivers/media/tuners/tda18271*
10564
10565 TDA827x MEDIA DRIVER
10566 M:      Michael Krufky <mkrufky@linuxtv.org>
10567 L:      linux-media@vger.kernel.org
10568 W:      https://linuxtv.org
10569 W:      http://github.com/mkrufky
10570 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10571 T:      git git://linuxtv.org/mkrufky/tuners.git
10572 S:      Maintained
10573 F:      drivers/media/tuners/tda8290.*
10574
10575 TDA8290 MEDIA DRIVER
10576 M:      Michael Krufky <mkrufky@linuxtv.org>
10577 L:      linux-media@vger.kernel.org
10578 W:      https://linuxtv.org
10579 W:      http://github.com/mkrufky
10580 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10581 T:      git git://linuxtv.org/mkrufky/tuners.git
10582 S:      Maintained
10583 F:      drivers/media/tuners/tda8290.*
10584
10585 TDA9840 MEDIA DRIVER
10586 M:      Hans Verkuil <hverkuil@xs4all.nl>
10587 L:      linux-media@vger.kernel.org
10588 T:      git git://linuxtv.org/media_tree.git
10589 W:      https://linuxtv.org
10590 S:      Maintained
10591 F:      drivers/media/i2c/tda9840*
10592
10593 TEA5761 TUNER DRIVER
10594 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10595 L:      linux-media@vger.kernel.org
10596 W:      https://linuxtv.org
10597 T:      git git://linuxtv.org/media_tree.git
10598 S:      Odd fixes
10599 F:      drivers/media/tuners/tea5761.*
10600
10601 TEA5767 TUNER DRIVER
10602 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10603 L:      linux-media@vger.kernel.org
10604 W:      https://linuxtv.org
10605 T:      git git://linuxtv.org/media_tree.git
10606 S:      Maintained
10607 F:      drivers/media/tuners/tea5767.*
10608
10609 TEA6415C MEDIA DRIVER
10610 M:      Hans Verkuil <hverkuil@xs4all.nl>
10611 L:      linux-media@vger.kernel.org
10612 T:      git git://linuxtv.org/media_tree.git
10613 W:      https://linuxtv.org
10614 S:      Maintained
10615 F:      drivers/media/i2c/tea6415c*
10616
10617 TEA6420 MEDIA DRIVER
10618 M:      Hans Verkuil <hverkuil@xs4all.nl>
10619 L:      linux-media@vger.kernel.org
10620 T:      git git://linuxtv.org/media_tree.git
10621 W:      https://linuxtv.org
10622 S:      Maintained
10623 F:      drivers/media/i2c/tea6420*
10624
10625 TEAM DRIVER
10626 M:      Jiri Pirko <jiri@resnulli.us>
10627 L:      netdev@vger.kernel.org
10628 S:      Supported
10629 F:      drivers/net/team/
10630 F:      include/linux/if_team.h
10631 F:      include/uapi/linux/if_team.h
10632
10633 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10634 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10635 S:      Maintained
10636 F:      arch/x86/platform/ts5500/
10637
10638 TECHNOTREND USB IR RECEIVER
10639 M:      Sean Young <sean@mess.org>
10640 L:      linux-media@vger.kernel.org
10641 S:      Maintained
10642 F:      drivers/media/rc/ttusbir.c
10643
10644 TEGRA ARCHITECTURE SUPPORT
10645 M:      Stephen Warren <swarren@wwwdotorg.org>
10646 M:      Thierry Reding <thierry.reding@gmail.com>
10647 M:      Alexandre Courbot <gnurou@gmail.com>
10648 L:      linux-tegra@vger.kernel.org
10649 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10651 S:      Supported
10652 N:      [^a-z]tegra
10653
10654 TEGRA CLOCK DRIVER
10655 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10656 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10657 S:      Supported
10658 F:      drivers/clk/tegra/
10659
10660 TEGRA DMA DRIVER
10661 M:      Laxman Dewangan <ldewangan@nvidia.com>
10662 S:      Supported
10663 F:      drivers/dma/tegra20-apb-dma.c
10664
10665 TEGRA I2C DRIVER
10666 M:      Laxman Dewangan <ldewangan@nvidia.com>
10667 S:      Supported
10668 F:      drivers/i2c/busses/i2c-tegra.c
10669
10670 TEGRA IOMMU DRIVERS
10671 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10672 S:      Supported
10673 F:      drivers/iommu/tegra*
10674
10675 TEGRA KBC DRIVER
10676 M:      Rakesh Iyer <riyer@nvidia.com>
10677 M:      Laxman Dewangan <ldewangan@nvidia.com>
10678 S:      Supported
10679 F:      drivers/input/keyboard/tegra-kbc.c
10680
10681 TEGRA PWM DRIVER
10682 M:      Thierry Reding <thierry.reding@gmail.com>
10683 S:      Supported
10684 F:      drivers/pwm/pwm-tegra.c
10685
10686 TEGRA SERIAL DRIVER
10687 M:      Laxman Dewangan <ldewangan@nvidia.com>
10688 S:      Supported
10689 F:      drivers/tty/serial/serial-tegra.c
10690
10691 TEGRA SPI DRIVER
10692 M:      Laxman Dewangan <ldewangan@nvidia.com>
10693 S:      Supported
10694 F:      drivers/spi/spi-tegra*
10695
10696 TEHUTI ETHERNET DRIVER
10697 M:      Andy Gospodarek <andy@greyhouse.net>
10698 L:      netdev@vger.kernel.org
10699 S:      Supported
10700 F:      drivers/net/ethernet/tehuti/*
10701
10702 Telecom Clock Driver for MCPL0010
10703 M:      Mark Gross <mark.gross@intel.com>
10704 S:      Supported
10705 F:      drivers/char/tlclk.c
10706
10707 TENSILICA XTENSA PORT (xtensa)
10708 M:      Chris Zankel <chris@zankel.net>
10709 M:      Max Filippov <jcmvbkbc@gmail.com>
10710 L:      linux-xtensa@linux-xtensa.org
10711 S:      Maintained
10712 F:      arch/xtensa/
10713 F:      drivers/irqchip/irq-xtensa-*
10714
10715 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10716 M:      Hans Verkuil <hverkuil@xs4all.nl>
10717 L:      linux-media@vger.kernel.org
10718 T:      git git://linuxtv.org/media_tree.git
10719 W:      https://linuxtv.org
10720 S:      Maintained
10721 F:      drivers/media/radio/radio-raremono.c
10722
10723 THERMAL
10724 M:      Zhang Rui <rui.zhang@intel.com>
10725 M:      Eduardo Valentin <edubezval@gmail.com>
10726 L:      linux-pm@vger.kernel.org
10727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10729 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10730 S:      Supported
10731 F:      drivers/thermal/
10732 F:      include/linux/thermal.h
10733 F:      include/uapi/linux/thermal.h
10734 F:      include/linux/cpu_cooling.h
10735 F:      Documentation/devicetree/bindings/thermal/
10736
10737 THERMAL/CPU_COOLING
10738 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10739 M:      Viresh Kumar <viresh.kumar@linaro.org>
10740 M:      Javi Merino <javi.merino@arm.com>
10741 L:      linux-pm@vger.kernel.org
10742 S:      Supported
10743 F:      Documentation/thermal/cpu-cooling-api.txt
10744 F:      drivers/thermal/cpu_cooling.c
10745 F:      include/linux/cpu_cooling.h
10746
10747 THINGM BLINK(1) USB RGB LED DRIVER
10748 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10749 S:      Maintained
10750 F:      drivers/hid/hid-thingm.c
10751
10752 THINKPAD ACPI EXTRAS DRIVER
10753 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10754 L:      ibm-acpi-devel@lists.sourceforge.net
10755 L:      platform-driver-x86@vger.kernel.org
10756 W:      http://ibm-acpi.sourceforge.net
10757 W:      http://thinkwiki.org/wiki/Ibm-acpi
10758 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10759 S:      Maintained
10760 F:      drivers/platform/x86/thinkpad_acpi.c
10761
10762 TI BANDGAP AND THERMAL DRIVER
10763 M:      Eduardo Valentin <edubezval@gmail.com>
10764 L:      linux-pm@vger.kernel.org
10765 L:      linux-omap@vger.kernel.org
10766 S:      Maintained
10767 F:      drivers/thermal/ti-soc-thermal/
10768
10769 TI CDCE706 CLOCK DRIVER
10770 M:      Max Filippov <jcmvbkbc@gmail.com>
10771 S:      Maintained
10772 F:      drivers/clk/clk-cdce706.c
10773
10774 TI CLOCK DRIVER
10775 M:      Tero Kristo <t-kristo@ti.com>
10776 L:      linux-omap@vger.kernel.org
10777 S:      Maintained
10778 F:      drivers/clk/ti/
10779 F:      include/linux/clk/ti.h
10780
10781 TI FLASH MEDIA INTERFACE DRIVER
10782 M:      Alex Dubov <oakad@yahoo.com>
10783 S:      Maintained
10784 F:      drivers/misc/tifm*
10785 F:      drivers/mmc/host/tifm_sd.c
10786 F:      include/linux/tifm.h
10787
10788 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10789 M:      Santosh Shilimkar <ssantosh@kernel.org>
10790 L:      linux-kernel@vger.kernel.org
10791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10792 S:      Maintained
10793 F:      drivers/soc/ti/*
10794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10795
10796
10797 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10798 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10799 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10800 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10801 S:      Maintained
10802 F:      sound/soc/codecs/lm49453*
10803 F:      sound/soc/codecs/isabelle*
10804
10805 TI LP855x BACKLIGHT DRIVER
10806 M:      Milo Kim <milo.kim@ti.com>
10807 S:      Maintained
10808 F:      Documentation/backlight/lp855x-driver.txt
10809 F:      drivers/video/backlight/lp855x_bl.c
10810 F:      include/linux/platform_data/lp855x.h
10811
10812 TI LP8727 CHARGER DRIVER
10813 M:      Milo Kim <milo.kim@ti.com>
10814 S:      Maintained
10815 F:      drivers/power/lp8727_charger.c
10816 F:      include/linux/platform_data/lp8727.h
10817
10818 TI LP8788 MFD DRIVER
10819 M:      Milo Kim <milo.kim@ti.com>
10820 S:      Maintained
10821 F:      drivers/iio/adc/lp8788_adc.c
10822 F:      drivers/leds/leds-lp8788.c
10823 F:      drivers/mfd/lp8788*.c
10824 F:      drivers/power/lp8788-charger.c
10825 F:      drivers/regulator/lp8788-*.c
10826 F:      include/linux/mfd/lp8788*.h
10827
10828 TI NETCP ETHERNET DRIVER
10829 M:      Wingman Kwok <w-kwok2@ti.com>
10830 M:      Murali Karicheri <m-karicheri2@ti.com>
10831 L:      netdev@vger.kernel.org
10832 S:      Maintained
10833 F:      drivers/net/ethernet/ti/netcp*
10834
10835 TI TAS571X FAMILY ASoC CODEC DRIVER
10836 M:      Kevin Cernekee <cernekee@chromium.org>
10837 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10838 S:      Odd Fixes
10839 F:      sound/soc/codecs/tas571x*
10840
10841 TI TWL4030 SERIES SOC CODEC DRIVER
10842 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10843 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10844 S:      Maintained
10845 F:      sound/soc/codecs/twl4030*
10846
10847 TI WILINK WIRELESS DRIVERS
10848 L:      linux-wireless@vger.kernel.org
10849 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10850 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10852 S:      Orphan
10853 F:      drivers/net/wireless/ti/
10854 F:      include/linux/wl12xx.h
10855
10856 TIPC NETWORK LAYER
10857 M:      Jon Maloy <jon.maloy@ericsson.com>
10858 M:      Ying Xue <ying.xue@windriver.com>
10859 L:      netdev@vger.kernel.org (core kernel code)
10860 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10861 W:      http://tipc.sourceforge.net/
10862 S:      Maintained
10863 F:      include/uapi/linux/tipc*.h
10864 F:      net/tipc/
10865
10866 TILE ARCHITECTURE
10867 M:      Chris Metcalf <cmetcalf@ezchip.com>
10868 W:      http://www.ezchip.com/scm/
10869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10870 S:      Supported
10871 F:      arch/tile/
10872 F:      drivers/char/tile-srom.c
10873 F:      drivers/edac/tile_edac.c
10874 F:      drivers/net/ethernet/tile/
10875 F:      drivers/rtc/rtc-tile.c
10876 F:      drivers/tty/hvc/hvc_tile.c
10877 F:      drivers/tty/serial/tilegx.c
10878 F:      drivers/usb/host/*-tilegx.c
10879 F:      include/linux/usb/tilegx.h
10880
10881 TLAN NETWORK DRIVER
10882 M:      Samuel Chessman <chessman@tux.org>
10883 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10884 W:      http://sourceforge.net/projects/tlan/
10885 S:      Maintained
10886 F:      Documentation/networking/tlan.txt
10887 F:      drivers/net/ethernet/ti/tlan.*
10888
10889 TOMOYO SECURITY MODULE
10890 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10891 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10892 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10893 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10894 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10895 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10896 W:      http://tomoyo.sourceforge.jp/
10897 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10898 S:      Maintained
10899 F:      security/tomoyo/
10900
10901 TOPSTAR LAPTOP EXTRAS DRIVER
10902 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10903 L:      platform-driver-x86@vger.kernel.org
10904 S:      Maintained
10905 F:      drivers/platform/x86/topstar-laptop.c
10906
10907 TOSHIBA ACPI EXTRAS DRIVER
10908 M:      Azael Avalos <coproscefalo@gmail.com>
10909 L:      platform-driver-x86@vger.kernel.org
10910 S:      Maintained
10911 F:      drivers/platform/x86/toshiba_acpi.c
10912
10913 TOSHIBA BLUETOOTH DRIVER
10914 M:      Azael Avalos <coproscefalo@gmail.com>
10915 L:      platform-driver-x86@vger.kernel.org
10916 S:      Maintained
10917 F:      drivers/platform/x86/toshiba_bluetooth.c
10918
10919 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
10920 M:      Azael Avalos <coproscefalo@gmail.com>
10921 L:      platform-driver-x86@vger.kernel.org
10922 S:      Maintained
10923 F:      drivers/platform/x86/toshiba_haps.c
10924
10925 TOSHIBA WMI HOTKEYS DRIVER
10926 M:      Azael Avalos <coproscefalo@gmail.com>
10927 L:      platform-driver-x86@vger.kernel.org
10928 S:      Maintained
10929 F:      drivers/platform/x86/toshiba-wmi.c
10930
10931 TOSHIBA SMM DRIVER
10932 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
10933 W:      http://www.buzzard.org.uk/toshiba/
10934 S:      Maintained
10935 F:      drivers/char/toshiba.c
10936 F:      include/linux/toshiba.h
10937 F:      include/uapi/linux/toshiba.h
10938
10939 TOSHIBA TC358743 DRIVER
10940 M:      Mats Randgaard <matrandg@cisco.com>
10941 L:      linux-media@vger.kernel.org
10942 S:      Maintained
10943 F:      drivers/media/i2c/tc358743*
10944 F:      include/media/i2c/tc358743.h
10945
10946 TMIO MMC DRIVER
10947 M:      Ian Molton <ian@mnementh.co.uk>
10948 L:      linux-mmc@vger.kernel.org
10949 S:      Maintained
10950 F:      drivers/mmc/host/tmio_mmc*
10951 F:      drivers/mmc/host/sh_mobile_sdhi.c
10952 F:      include/linux/mmc/tmio.h
10953 F:      include/linux/mmc/sh_mobile_sdhi.h
10954
10955 TMP401 HARDWARE MONITOR DRIVER
10956 M:      Guenter Roeck <linux@roeck-us.net>
10957 L:      lm-sensors@lm-sensors.org
10958 S:      Maintained
10959 F:      Documentation/hwmon/tmp401
10960 F:      drivers/hwmon/tmp401.c
10961
10962 TMPFS (SHMEM FILESYSTEM)
10963 M:      Hugh Dickins <hughd@google.com>
10964 L:      linux-mm@kvack.org
10965 S:      Maintained
10966 F:      include/linux/shmem_fs.h
10967 F:      mm/shmem.c
10968
10969 TM6000 VIDEO4LINUX DRIVER
10970 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10971 L:      linux-media@vger.kernel.org
10972 W:      https://linuxtv.org
10973 T:      git git://linuxtv.org/media_tree.git
10974 S:      Odd fixes
10975 F:      drivers/media/usb/tm6000/
10976
10977 TW68 VIDEO4LINUX DRIVER
10978 M:      Hans Verkuil <hverkuil@xs4all.nl>
10979 L:      linux-media@vger.kernel.org
10980 T:      git git://linuxtv.org/media_tree.git
10981 W:      https://linuxtv.org
10982 S:      Odd Fixes
10983 F:      drivers/media/pci/tw68/
10984
10985 TPM DEVICE DRIVER
10986 M:      Peter Huewe <peterhuewe@gmx.de>
10987 M:      Marcel Selhorst <tpmdd@selhorst.net>
10988 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
10989 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
10990 W:      http://tpmdd.sourceforge.net
10991 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
10992 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
10993 T:      https://github.com/PeterHuewe/linux-tpmdd
10994 S:      Maintained
10995 F:      drivers/char/tpm/
10996
10997 TPM IBM_VTPM DEVICE DRIVER
10998 M:      Ashley Lai <ashleydlai@gmail.com>
10999 W:      http://tpmdd.sourceforge.net
11000 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11001 S:      Maintained
11002 F:      drivers/char/tpm/tpm_ibmvtpm*
11003
11004 TRACING
11005 M:      Steven Rostedt <rostedt@goodmis.org>
11006 M:      Ingo Molnar <mingo@redhat.com>
11007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11008 S:      Maintained
11009 F:      Documentation/trace/ftrace.txt
11010 F:      arch/*/*/*/ftrace.h
11011 F:      arch/*/kernel/ftrace.c
11012 F:      include/*/ftrace.h
11013 F:      include/linux/trace*.h
11014 F:      include/trace/
11015 F:      kernel/trace/
11016 F:      tools/testing/selftests/ftrace/
11017
11018 TRIVIAL PATCHES
11019 M:      Jiri Kosina <trivial@kernel.org>
11020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11021 S:      Maintained
11022 K:      ^Subject:.*(?i)trivial
11023
11024 TTY LAYER
11025 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11026 M:      Jiri Slaby <jslaby@suse.com>
11027 S:      Supported
11028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11029 F:      Documentation/serial/
11030 F:      drivers/tty/
11031 F:      drivers/tty/serial/serial_core.c
11032 F:      include/linux/serial_core.h
11033 F:      include/linux/serial.h
11034 F:      include/linux/tty.h
11035 F:      include/uapi/linux/serial_core.h
11036 F:      include/uapi/linux/serial.h
11037 F:      include/uapi/linux/tty.h
11038
11039 TUA9001 MEDIA DRIVER
11040 M:      Antti Palosaari <crope@iki.fi>
11041 L:      linux-media@vger.kernel.org
11042 W:      https://linuxtv.org
11043 W:      http://palosaari.fi/linux/
11044 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11045 T:      git git://linuxtv.org/anttip/media_tree.git
11046 S:      Maintained
11047 F:      drivers/media/tuners/tua9001*
11048
11049 TULIP NETWORK DRIVERS
11050 L:      netdev@vger.kernel.org
11051 L:      linux-parisc@vger.kernel.org
11052 S:      Orphan
11053 F:      drivers/net/ethernet/dec/tulip/
11054
11055 TUN/TAP driver
11056 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11057 W:      http://vtun.sourceforge.net/tun
11058 S:      Maintained
11059 F:      Documentation/networking/tuntap.txt
11060 F:      arch/um/os-Linux/drivers/
11061
11062 TURBOCHANNEL SUBSYSTEM
11063 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11064 M:      Ralf Baechle <ralf@linux-mips.org>
11065 L:      linux-mips@linux-mips.org
11066 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11067 S:      Maintained
11068 F:      drivers/tc/
11069 F:      include/linux/tc.h
11070
11071 U14-34F SCSI DRIVER
11072 M:      Dario Ballabio <ballabio_dario@emc.com>
11073 L:      linux-scsi@vger.kernel.org
11074 S:      Maintained
11075 F:      drivers/scsi/u14-34f.c
11076
11077 UBI FILE SYSTEM (UBIFS)
11078 M:      Artem Bityutskiy <dedekind1@gmail.com>
11079 M:      Adrian Hunter <adrian.hunter@intel.com>
11080 L:      linux-mtd@lists.infradead.org
11081 T:      git git://git.infradead.org/ubifs-2.6.git
11082 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11083 S:      Maintained
11084 F:      Documentation/filesystems/ubifs.txt
11085 F:      fs/ubifs/
11086
11087 UCLINUX (M68KNOMMU AND COLDFIRE)
11088 M:      Greg Ungerer <gerg@uclinux.org>
11089 W:      http://www.uclinux.org/
11090 L:      linux-m68k@lists.linux-m68k.org
11091 L:      uclinux-dev@uclinux.org  (subscribers-only)
11092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11093 S:      Maintained
11094 F:      arch/m68k/coldfire/
11095 F:      arch/m68k/68*/
11096 F:      arch/m68k/*/*_no.*
11097 F:      arch/m68k/include/asm/*_no.*
11098
11099 UDF FILESYSTEM
11100 M:      Jan Kara <jack@suse.com>
11101 S:      Maintained
11102 F:      Documentation/filesystems/udf.txt
11103 F:      fs/udf/
11104
11105 UFS FILESYSTEM
11106 M:      Evgeniy Dushistov <dushistov@mail.ru>
11107 S:      Maintained
11108 F:      Documentation/filesystems/ufs.txt
11109 F:      fs/ufs/
11110
11111 UHID USERSPACE HID IO DRIVER:
11112 M:      David Herrmann <dh.herrmann@googlemail.com>
11113 L:      linux-input@vger.kernel.org
11114 S:      Maintained
11115 F:      drivers/hid/uhid.c
11116 F:      include/uapi/linux/uhid.h
11117
11118 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11119 L:      linux-usb@vger.kernel.org
11120 S:      Orphan
11121 F:      drivers/uwb/
11122 F:      include/linux/uwb.h
11123 F:      include/linux/uwb/
11124
11125 UNICORE32 ARCHITECTURE:
11126 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11127 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11128 S:      Maintained
11129 T:      git git://github.com/gxt/linux.git
11130 F:      arch/unicore32/
11131
11132 UNIFDEF
11133 M:      Tony Finch <dot@dotat.at>
11134 W:      http://dotat.at/prog/unifdef
11135 S:      Maintained
11136 F:      scripts/unifdef.c
11137
11138 UNIFORM CDROM DRIVER
11139 M:      Jens Axboe <axboe@kernel.dk>
11140 W:      http://www.kernel.dk
11141 S:      Maintained
11142 F:      Documentation/cdrom/
11143 F:      drivers/cdrom/cdrom.c
11144 F:      include/linux/cdrom.h
11145 F:      include/uapi/linux/cdrom.h
11146
11147 UNISYS S-PAR DRIVERS
11148 M:      Benjamin Romer <benjamin.romer@unisys.com>
11149 M:      David Kershner <david.kershner@unisys.com>
11150 L:      sparmaintainer@unisys.com (Unisys internal)
11151 S:      Supported
11152 F:      drivers/staging/unisys/
11153
11154 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11155 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11156 L:      linux-scsi@vger.kernel.org
11157 S:      Supported
11158 F:      Documentation/scsi/ufs.txt
11159 F:      drivers/scsi/ufs/
11160
11161 UNSORTED BLOCK IMAGES (UBI)
11162 M:      Artem Bityutskiy <dedekind1@gmail.com>
11163 M:      Richard Weinberger <richard@nod.at>
11164 W:      http://www.linux-mtd.infradead.org/
11165 L:      linux-mtd@lists.infradead.org
11166 T:      git git://git.infradead.org/ubifs-2.6.git
11167 S:      Supported
11168 F:      drivers/mtd/ubi/
11169 F:      include/linux/mtd/ubi.h
11170 F:      include/uapi/mtd/ubi-user.h
11171
11172 USB ACM DRIVER
11173 M:      Oliver Neukum <oliver@neukum.org>
11174 L:      linux-usb@vger.kernel.org
11175 S:      Maintained
11176 F:      Documentation/usb/acm.txt
11177 F:      drivers/usb/class/cdc-acm.*
11178
11179 USB AR5523 WIRELESS DRIVER
11180 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11181 L:      linux-wireless@vger.kernel.org
11182 S:      Maintained
11183 F:      drivers/net/wireless/ath/ar5523/
11184
11185 USB ATTACHED SCSI
11186 M:      Hans de Goede <hdegoede@redhat.com>
11187 M:      Gerd Hoffmann <kraxel@redhat.com>
11188 L:      linux-usb@vger.kernel.org
11189 L:      linux-scsi@vger.kernel.org
11190 S:      Maintained
11191 F:      drivers/usb/storage/uas.c
11192
11193 USB CDC ETHERNET DRIVER
11194 M:      Oliver Neukum <oliver@neukum.org>
11195 L:      linux-usb@vger.kernel.org
11196 S:      Maintained
11197 F:      drivers/net/usb/cdc_*.c
11198 F:      include/uapi/linux/usb/cdc.h
11199
11200 USB CHAOSKEY DRIVER
11201 M:      Keith Packard <keithp@keithp.com>
11202 L:      linux-usb@vger.kernel.org
11203 S:      Maintained
11204 F:      drivers/usb/misc/chaoskey.c
11205
11206 USB CYPRESS C67X00 DRIVER
11207 M:      Peter Korsgaard <jacmet@sunsite.dk>
11208 L:      linux-usb@vger.kernel.org
11209 S:      Maintained
11210 F:      drivers/usb/c67x00/
11211
11212 USB DAVICOM DM9601 DRIVER
11213 M:      Peter Korsgaard <jacmet@sunsite.dk>
11214 L:      netdev@vger.kernel.org
11215 W:      http://www.linux-usb.org/usbnet
11216 S:      Maintained
11217 F:      drivers/net/usb/dm9601.c
11218
11219 USB DIAMOND RIO500 DRIVER
11220 M:      Cesar Miquel <miquel@df.uba.ar>
11221 L:      rio500-users@lists.sourceforge.net
11222 W:      http://rio500.sourceforge.net
11223 S:      Maintained
11224 F:      drivers/usb/misc/rio500*
11225
11226 USB EHCI DRIVER
11227 M:      Alan Stern <stern@rowland.harvard.edu>
11228 L:      linux-usb@vger.kernel.org
11229 S:      Maintained
11230 F:      Documentation/usb/ehci.txt
11231 F:      drivers/usb/host/ehci*
11232
11233 USB GADGET/PERIPHERAL SUBSYSTEM
11234 M:      Felipe Balbi <balbi@ti.com>
11235 L:      linux-usb@vger.kernel.org
11236 W:      http://www.linux-usb.org/gadget
11237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11238 S:      Maintained
11239 F:      drivers/usb/gadget/
11240 F:      include/linux/usb/gadget*
11241
11242 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11243 M:      Jiri Kosina <jikos@kernel.org>
11244 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11245 L:      linux-usb@vger.kernel.org
11246 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11247 S:      Maintained
11248 F:      Documentation/hid/hiddev.txt
11249 F:      drivers/hid/usbhid/
11250
11251 USB ISP116X DRIVER
11252 M:      Olav Kongas <ok@artecdesign.ee>
11253 L:      linux-usb@vger.kernel.org
11254 S:      Maintained
11255 F:      drivers/usb/host/isp116x*
11256 F:      include/linux/usb/isp116x.h
11257
11258 USB MASS STORAGE DRIVER
11259 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11260 L:      linux-usb@vger.kernel.org
11261 L:      usb-storage@lists.one-eyed-alien.net
11262 S:      Maintained
11263 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11264 F:      drivers/usb/storage/
11265
11266 USB MIDI DRIVER
11267 M:      Clemens Ladisch <clemens@ladisch.de>
11268 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11269 T:      git git://git.alsa-project.org/alsa-kernel.git
11270 S:      Maintained
11271 F:      sound/usb/midi.*
11272
11273 USB NETWORKING DRIVERS
11274 L:      linux-usb@vger.kernel.org
11275 S:      Odd Fixes
11276 F:      drivers/net/usb/
11277
11278 USB OHCI DRIVER
11279 M:      Alan Stern <stern@rowland.harvard.edu>
11280 L:      linux-usb@vger.kernel.org
11281 S:      Maintained
11282 F:      Documentation/usb/ohci.txt
11283 F:      drivers/usb/host/ohci*
11284
11285 USB OTG FSM (Finite State Machine)
11286 M:      Peter Chen <Peter.Chen@nxp.com>
11287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11288 L:      linux-usb@vger.kernel.org
11289 S:      Maintained
11290 F:      drivers/usb/common/usb-otg-fsm.c
11291
11292 USB OVER IP DRIVER
11293 M:      Valentina Manea <valentina.manea.m@gmail.com>
11294 M:      Shuah Khan <shuah.kh@samsung.com>
11295 L:      linux-usb@vger.kernel.org
11296 S:      Maintained
11297 F:      drivers/usb/usbip/
11298 F:      tools/usb/usbip/
11299
11300 USB PEGASUS DRIVER
11301 M:      Petko Manolov <petkan@nucleusys.com>
11302 L:      linux-usb@vger.kernel.org
11303 L:      netdev@vger.kernel.org
11304 T:      git git://github.com/petkan/pegasus.git
11305 W:      https://github.com/petkan/pegasus
11306 S:      Maintained
11307 F:      drivers/net/usb/pegasus.*
11308
11309 USB PHY LAYER
11310 M:      Felipe Balbi <balbi@ti.com>
11311 L:      linux-usb@vger.kernel.org
11312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11313 S:      Maintained
11314 F:      drivers/usb/phy/
11315
11316 USB PRINTER DRIVER (usblp)
11317 M:      Pete Zaitcev <zaitcev@redhat.com>
11318 L:      linux-usb@vger.kernel.org
11319 S:      Supported
11320 F:      drivers/usb/class/usblp.c
11321
11322 USB QMI WWAN NETWORK DRIVER
11323 M:      Bjørn Mork <bjorn@mork.no>
11324 L:      netdev@vger.kernel.org
11325 S:      Maintained
11326 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11327 F:      drivers/net/usb/qmi_wwan.c
11328
11329 USB RTL8150 DRIVER
11330 M:      Petko Manolov <petkan@nucleusys.com>
11331 L:      linux-usb@vger.kernel.org
11332 L:      netdev@vger.kernel.org
11333 T:      git git://github.com/petkan/rtl8150.git
11334 W:      https://github.com/petkan/rtl8150
11335 S:      Maintained
11336 F:      drivers/net/usb/rtl8150.c
11337
11338 USB SERIAL SUBSYSTEM
11339 M:      Johan Hovold <johan@kernel.org>
11340 L:      linux-usb@vger.kernel.org
11341 S:      Maintained
11342 F:      Documentation/usb/usb-serial.txt
11343 F:      drivers/usb/serial/
11344 F:      include/linux/usb/serial.h
11345
11346 USB SMSC75XX ETHERNET DRIVER
11347 M:      Steve Glendinning <steve.glendinning@shawell.net>
11348 L:      netdev@vger.kernel.org
11349 S:      Maintained
11350 F:      drivers/net/usb/smsc75xx.*
11351
11352 USB SMSC95XX ETHERNET DRIVER
11353 M:      Steve Glendinning <steve.glendinning@shawell.net>
11354 L:      netdev@vger.kernel.org
11355 S:      Maintained
11356 F:      drivers/net/usb/smsc95xx.*
11357
11358 USB SUBSYSTEM
11359 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11360 L:      linux-usb@vger.kernel.org
11361 W:      http://www.linux-usb.org
11362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11363 S:      Supported
11364 F:      Documentation/usb/
11365 F:      drivers/usb/
11366 F:      include/linux/usb.h
11367 F:      include/linux/usb/
11368
11369 USB UHCI DRIVER
11370 M:      Alan Stern <stern@rowland.harvard.edu>
11371 L:      linux-usb@vger.kernel.org
11372 S:      Maintained
11373 F:      drivers/usb/host/uhci*
11374
11375 USB "USBNET" DRIVER FRAMEWORK
11376 M:      Oliver Neukum <oneukum@suse.com>
11377 L:      netdev@vger.kernel.org
11378 W:      http://www.linux-usb.org/usbnet
11379 S:      Maintained
11380 F:      drivers/net/usb/usbnet.c
11381 F:      include/linux/usb/usbnet.h
11382
11383 USB VIDEO CLASS
11384 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11385 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11386 L:      linux-media@vger.kernel.org
11387 T:      git git://linuxtv.org/media_tree.git
11388 W:      http://www.ideasonboard.org/uvc/
11389 S:      Maintained
11390 F:      drivers/media/usb/uvc/
11391 F:      include/uapi/linux/uvcvideo.h
11392
11393 USB VISION DRIVER
11394 M:      Hans Verkuil <hverkuil@xs4all.nl>
11395 L:      linux-media@vger.kernel.org
11396 T:      git git://linuxtv.org/media_tree.git
11397 W:      https://linuxtv.org
11398 S:      Odd Fixes
11399 F:      drivers/media/usb/usbvision/
11400
11401 USB WEBCAM GADGET
11402 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11403 L:      linux-usb@vger.kernel.org
11404 S:      Maintained
11405 F:      drivers/usb/gadget/function/*uvc*
11406 F:      drivers/usb/gadget/legacy/webcam.c
11407
11408 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11409 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11410 L:      linux-wireless@vger.kernel.org
11411 S:      Maintained
11412 F:      drivers/net/wireless/rndis_wlan.c
11413
11414 USB XHCI DRIVER
11415 M:      Mathias Nyman <mathias.nyman@intel.com>
11416 L:      linux-usb@vger.kernel.org
11417 S:      Supported
11418 F:      drivers/usb/host/xhci*
11419 F:      drivers/usb/host/pci-quirks*
11420
11421 USB ZD1201 DRIVER
11422 L:      linux-wireless@vger.kernel.org
11423 W:      http://linux-lc100020.sourceforge.net
11424 S:      Orphan
11425 F:      drivers/net/wireless/zydas/zd1201.*
11426
11427 USB ZR364XX DRIVER
11428 M:      Antoine Jacquet <royale@zerezo.com>
11429 L:      linux-usb@vger.kernel.org
11430 L:      linux-media@vger.kernel.org
11431 T:      git git://linuxtv.org/media_tree.git
11432 W:      http://royale.zerezo.com/zr364xx/
11433 S:      Maintained
11434 F:      Documentation/video4linux/zr364xx.txt
11435 F:      drivers/media/usb/zr364xx/
11436
11437 ULPI BUS
11438 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11439 L:      linux-usb@vger.kernel.org
11440 S:      Maintained
11441 F:      drivers/usb/common/ulpi.c
11442 F:      include/linux/ulpi/
11443
11444 USER-MODE LINUX (UML)
11445 M:      Jeff Dike <jdike@addtoit.com>
11446 M:      Richard Weinberger <richard@nod.at>
11447 L:      user-mode-linux-devel@lists.sourceforge.net
11448 L:      user-mode-linux-user@lists.sourceforge.net
11449 W:      http://user-mode-linux.sourceforge.net
11450 S:      Maintained
11451 F:      Documentation/virtual/uml/
11452 F:      arch/um/
11453 F:      arch/x86/um/
11454 F:      fs/hostfs/
11455 F:      fs/hppfs/
11456
11457 USERSPACE I/O (UIO)
11458 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11459 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11460 S:      Maintained
11461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11462 F:      Documentation/DocBook/uio-howto.tmpl
11463 F:      drivers/uio/
11464 F:      include/linux/uio*.h
11465
11466 UTIL-LINUX PACKAGE
11467 M:      Karel Zak <kzak@redhat.com>
11468 L:      util-linux@vger.kernel.org
11469 W:      http://en.wikipedia.org/wiki/Util-linux
11470 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11471 S:      Maintained
11472
11473 UVESAFB DRIVER
11474 M:      Michal Januszewski <spock@gentoo.org>
11475 L:      linux-fbdev@vger.kernel.org
11476 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11477 S:      Maintained
11478 F:      Documentation/fb/uvesafb.txt
11479 F:      drivers/video/fbdev/uvesafb.*
11480
11481 VF610 NAND DRIVER
11482 M:      Stefan Agner <stefan@agner.ch>
11483 L:      linux-mtd@lists.infradead.org
11484 S:      Supported
11485 F:      drivers/mtd/nand/vf610_nfc.c
11486
11487 VFAT/FAT/MSDOS FILESYSTEM
11488 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11489 S:      Maintained
11490 F:      Documentation/filesystems/vfat.txt
11491 F:      fs/fat/
11492
11493 VFIO DRIVER
11494 M:      Alex Williamson <alex.williamson@redhat.com>
11495 L:      kvm@vger.kernel.org
11496 S:      Maintained
11497 F:      Documentation/vfio.txt
11498 F:      drivers/vfio/
11499 F:      include/linux/vfio.h
11500 F:      include/uapi/linux/vfio.h
11501
11502 VFIO PLATFORM DRIVER
11503 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11504 L:      kvm@vger.kernel.org
11505 S:      Maintained
11506 F:      drivers/vfio/platform/
11507
11508 VIDEOBUF2 FRAMEWORK
11509 M:      Pawel Osciak <pawel@osciak.com>
11510 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11511 M:      Kyungmin Park <kyungmin.park@samsung.com>
11512 L:      linux-media@vger.kernel.org
11513 S:      Maintained
11514 F:      drivers/media/v4l2-core/videobuf2-*
11515 F:      include/media/videobuf2-*
11516
11517 VIRTUAL SERIO DEVICE DRIVER
11518 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11519 S:      Maintained
11520 F:      drivers/input/serio/userio.c
11521 F:      include/uapi/linux/userio.h
11522
11523 VIRTIO CONSOLE DRIVER
11524 M:      Amit Shah <amit.shah@redhat.com>
11525 L:      virtualization@lists.linux-foundation.org
11526 S:      Maintained
11527 F:      drivers/char/virtio_console.c
11528 F:      include/linux/virtio_console.h
11529 F:      include/uapi/linux/virtio_console.h
11530
11531 VIRTIO CORE, NET AND BLOCK DRIVERS
11532 M:      "Michael S. Tsirkin" <mst@redhat.com>
11533 L:      virtualization@lists.linux-foundation.org
11534 S:      Maintained
11535 F:      drivers/virtio/
11536 F:      tools/virtio/
11537 F:      drivers/net/virtio_net.c
11538 F:      drivers/block/virtio_blk.c
11539 F:      include/linux/virtio_*.h
11540 F:      include/uapi/linux/virtio_*.h
11541
11542 VIRTIO DRIVERS FOR S390
11543 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11544 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11545 L:      linux-s390@vger.kernel.org
11546 L:      virtualization@lists.linux-foundation.org
11547 L:      kvm@vger.kernel.org
11548 S:      Supported
11549 F:      drivers/s390/virtio/
11550
11551 VIRTIO GPU DRIVER
11552 M:      David Airlie <airlied@linux.ie>
11553 M:      Gerd Hoffmann <kraxel@redhat.com>
11554 L:      dri-devel@lists.freedesktop.org
11555 L:      virtualization@lists.linux-foundation.org
11556 S:      Maintained
11557 F:      drivers/gpu/drm/virtio/
11558 F:      include/uapi/linux/virtio_gpu.h
11559
11560 VIRTIO HOST (VHOST)
11561 M:      "Michael S. Tsirkin" <mst@redhat.com>
11562 L:      kvm@vger.kernel.org
11563 L:      virtualization@lists.linux-foundation.org
11564 L:      netdev@vger.kernel.org
11565 S:      Maintained
11566 F:      drivers/vhost/
11567 F:      include/uapi/linux/vhost.h
11568
11569 VIRTIO INPUT DRIVER
11570 M:      Gerd Hoffmann <kraxel@redhat.com>
11571 S:      Maintained
11572 F:      drivers/virtio/virtio_input.c
11573 F:      include/uapi/linux/virtio_input.h
11574
11575 VIA RHINE NETWORK DRIVER
11576 S:      Orphan
11577 F:      drivers/net/ethernet/via/via-rhine.c
11578
11579 VIA SD/MMC CARD CONTROLLER DRIVER
11580 M:      Bruce Chang <brucechang@via.com.tw>
11581 M:      Harald Welte <HaraldWelte@viatech.com>
11582 S:      Maintained
11583 F:      drivers/mmc/host/via-sdmmc.c
11584
11585 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11586 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11587 L:      linux-fbdev@vger.kernel.org
11588 S:      Maintained
11589 F:      include/linux/via-core.h
11590 F:      include/linux/via-gpio.h
11591 F:      include/linux/via_i2c.h
11592 F:      drivers/video/fbdev/via/
11593
11594 VIA VELOCITY NETWORK DRIVER
11595 M:      Francois Romieu <romieu@fr.zoreil.com>
11596 L:      netdev@vger.kernel.org
11597 S:      Maintained
11598 F:      drivers/net/ethernet/via/via-velocity.*
11599
11600 VIRT LIB
11601 M:      Alex Williamson <alex.williamson@redhat.com>
11602 M:      Paolo Bonzini <pbonzini@redhat.com>
11603 L:      kvm@vger.kernel.org
11604 S:      Supported
11605 F:      virt/lib/
11606
11607 VIVID VIRTUAL VIDEO DRIVER
11608 M:      Hans Verkuil <hverkuil@xs4all.nl>
11609 L:      linux-media@vger.kernel.org
11610 T:      git git://linuxtv.org/media_tree.git
11611 W:      https://linuxtv.org
11612 S:      Maintained
11613 F:      drivers/media/platform/vivid/*
11614
11615 VLAN (802.1Q)
11616 M:      Patrick McHardy <kaber@trash.net>
11617 L:      netdev@vger.kernel.org
11618 S:      Maintained
11619 F:      drivers/net/macvlan.c
11620 F:      include/linux/if_*vlan.h
11621 F:      net/8021q/
11622
11623 VLYNQ BUS
11624 M:      Florian Fainelli <florian@openwrt.org>
11625 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11626 S:      Maintained
11627 F:      drivers/vlynq/vlynq.c
11628 F:      include/linux/vlynq.h
11629
11630 VME SUBSYSTEM
11631 M:      Martyn Welch <martyn@welchs.me.uk>
11632 M:      Manohar Vanga <manohar.vanga@gmail.com>
11633 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11634 L:      devel@driverdev.osuosl.org
11635 S:      Maintained
11636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11637 F:      Documentation/vme_api.txt
11638 F:      drivers/staging/vme/
11639 F:      drivers/vme/
11640 F:      include/linux/vme*
11641
11642 VMWARE HYPERVISOR INTERFACE
11643 M:      Alok Kataria <akataria@vmware.com>
11644 L:      virtualization@lists.linux-foundation.org
11645 S:      Supported
11646 F:      arch/x86/kernel/cpu/vmware.c
11647
11648 VMWARE BALLOON DRIVER
11649 M:      Xavier Deguillard <xdeguillard@vmware.com>
11650 M:      Philip Moltmann <moltmann@vmware.com>
11651 M:      "VMware, Inc." <pv-drivers@vmware.com>
11652 L:      linux-kernel@vger.kernel.org
11653 S:      Maintained
11654 F:      drivers/misc/vmw_balloon.c
11655
11656 VMWARE VMMOUSE SUBDRIVER
11657 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11658 M:      "VMware, Inc." <pv-drivers@vmware.com>
11659 L:      linux-input@vger.kernel.org
11660 S:      Maintained
11661 F:      drivers/input/mouse/vmmouse.c
11662 F:      drivers/input/mouse/vmmouse.h
11663
11664 VMWARE VMXNET3 ETHERNET DRIVER
11665 M:      Shrikrishna Khare <skhare@vmware.com>
11666 M:      "VMware, Inc." <pv-drivers@vmware.com>
11667 L:      netdev@vger.kernel.org
11668 S:      Maintained
11669 F:      drivers/net/vmxnet3/
11670
11671 VMware PVSCSI driver
11672 M:      Arvind Kumar <arvindkumar@vmware.com>
11673 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11674 L:      linux-scsi@vger.kernel.org
11675 S:      Maintained
11676 F:      drivers/scsi/vmw_pvscsi.c
11677 F:      drivers/scsi/vmw_pvscsi.h
11678
11679 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11680 M:      Liam Girdwood <lgirdwood@gmail.com>
11681 M:      Mark Brown <broonie@kernel.org>
11682 L:      linux-kernel@vger.kernel.org
11683 W:      http://www.slimlogic.co.uk/?p=48
11684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11685 S:      Supported
11686 F:      drivers/regulator/
11687 F:      include/linux/regulator/
11688
11689 VRF
11690 M:      David Ahern <dsa@cumulusnetworks.com>
11691 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11692 L:      netdev@vger.kernel.org
11693 S:      Maintained
11694 F:      drivers/net/vrf.c
11695 F:      Documentation/networking/vrf.txt
11696
11697 VT1211 HARDWARE MONITOR DRIVER
11698 M:      Juerg Haefliger <juergh@gmail.com>
11699 L:      lm-sensors@lm-sensors.org
11700 S:      Maintained
11701 F:      Documentation/hwmon/vt1211
11702 F:      drivers/hwmon/vt1211.c
11703
11704 VT8231 HARDWARE MONITOR DRIVER
11705 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11706 L:      lm-sensors@lm-sensors.org
11707 S:      Maintained
11708 F:      drivers/hwmon/vt8231.c
11709
11710 VUB300 USB to SDIO/SD/MMC bridge chip
11711 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11712 L:      linux-mmc@vger.kernel.org
11713 L:      linux-usb@vger.kernel.org
11714 S:      Supported
11715 F:      drivers/mmc/host/vub300.c
11716
11717 W1 DALLAS'S 1-WIRE BUS
11718 M:      Evgeniy Polyakov <zbr@ioremap.net>
11719 S:      Maintained
11720 F:      Documentation/w1/
11721 F:      drivers/w1/
11722
11723 W83791D HARDWARE MONITORING DRIVER
11724 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11725 L:      lm-sensors@lm-sensors.org
11726 S:      Maintained
11727 F:      Documentation/hwmon/w83791d
11728 F:      drivers/hwmon/w83791d.c
11729
11730 W83793 HARDWARE MONITORING DRIVER
11731 M:      Rudolf Marek <r.marek@assembler.cz>
11732 L:      lm-sensors@lm-sensors.org
11733 S:      Maintained
11734 F:      Documentation/hwmon/w83793
11735 F:      drivers/hwmon/w83793.c
11736
11737 W83795 HARDWARE MONITORING DRIVER
11738 M:      Jean Delvare <jdelvare@suse.com>
11739 L:      lm-sensors@lm-sensors.org
11740 S:      Maintained
11741 F:      drivers/hwmon/w83795.c
11742
11743 W83L51xD SD/MMC CARD INTERFACE DRIVER
11744 M:      Pierre Ossman <pierre@ossman.eu>
11745 S:      Maintained
11746 F:      drivers/mmc/host/wbsd.*
11747
11748 WACOM PROTOCOL 4 SERIAL TABLETS
11749 M:      Julian Squires <julian@cipht.net>
11750 M:      Hans de Goede <hdegoede@redhat.com>
11751 L:      linux-input@vger.kernel.org
11752 S:      Maintained
11753 F:      drivers/input/tablet/wacom_serial4.c
11754
11755 WATCHDOG DEVICE DRIVERS
11756 M:      Wim Van Sebroeck <wim@iguana.be>
11757 R:      Guenter Roeck <linux@roeck-us.net>
11758 L:      linux-watchdog@vger.kernel.org
11759 W:      http://www.linux-watchdog.org/
11760 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11761 S:      Maintained
11762 F:      Documentation/watchdog/
11763 F:      drivers/watchdog/
11764 F:      include/linux/watchdog.h
11765 F:      include/uapi/linux/watchdog.h
11766
11767 WD7000 SCSI DRIVER
11768 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11769 L:      linux-scsi@vger.kernel.org
11770 S:      Maintained
11771 F:      drivers/scsi/wd7000.c
11772
11773 WIIMOTE HID DRIVER
11774 M:      David Herrmann <dh.herrmann@googlemail.com>
11775 L:      linux-input@vger.kernel.org
11776 S:      Maintained
11777 F:      drivers/hid/hid-wiimote*
11778
11779 WINBOND CIR DRIVER
11780 M:      David Härdeman <david@hardeman.nu>
11781 S:      Maintained
11782 F:      drivers/media/rc/winbond-cir.c
11783
11784 WIMAX STACK
11785 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11786 M:      linux-wimax@intel.com
11787 L:      wimax@linuxwimax.org (subscribers-only)
11788 S:      Supported
11789 W:      http://linuxwimax.org
11790 F:      Documentation/wimax/README.wimax
11791 F:      include/linux/wimax/debug.h
11792 F:      include/net/wimax.h
11793 F:      include/uapi/linux/wimax.h
11794 F:      net/wimax/
11795
11796 WISTRON LAPTOP BUTTON DRIVER
11797 M:      Miloslav Trmac <mitr@volny.cz>
11798 S:      Maintained
11799 F:      drivers/input/misc/wistron_btns.c
11800
11801 WL3501 WIRELESS PCMCIA CARD DRIVER
11802 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11803 L:      linux-wireless@vger.kernel.org
11804 W:      http://oops.ghostprotocols.net:81/blog
11805 S:      Maintained
11806 F:      drivers/net/wireless/wl3501*
11807
11808 WOLFSON MICROELECTRONICS DRIVERS
11809 L:      patches@opensource.wolfsonmicro.com
11810 T:      git https://github.com/CirrusLogic/linux-drivers.git
11811 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11812 S:      Supported
11813 F:      Documentation/hwmon/wm83??
11814 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11815 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11816 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11817 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11818 F:      drivers/clk/clk-wm83*.c
11819 F:      drivers/extcon/extcon-arizona.c
11820 F:      drivers/leds/leds-wm83*.c
11821 F:      drivers/gpio/gpio-*wm*.c
11822 F:      drivers/gpio/gpio-arizona.c
11823 F:      drivers/hwmon/wm83??-hwmon.c
11824 F:      drivers/input/misc/wm831x-on.c
11825 F:      drivers/input/touchscreen/wm831x-ts.c
11826 F:      drivers/input/touchscreen/wm97*.c
11827 F:      drivers/mfd/arizona*
11828 F:      drivers/mfd/wm*.c
11829 F:      drivers/mfd/cs47l24*
11830 F:      drivers/power/wm83*.c
11831 F:      drivers/rtc/rtc-wm83*.c
11832 F:      drivers/regulator/wm8*.c
11833 F:      drivers/video/backlight/wm83*_bl.c
11834 F:      drivers/watchdog/wm83*_wdt.c
11835 F:      include/linux/mfd/arizona/
11836 F:      include/linux/mfd/wm831x/
11837 F:      include/linux/mfd/wm8350/
11838 F:      include/linux/mfd/wm8400*
11839 F:      include/linux/wm97xx.h
11840 F:      include/sound/wm????.h
11841 F:      sound/soc/codecs/arizona.?
11842 F:      sound/soc/codecs/wm*
11843 F:      sound/soc/codecs/cs47l24*
11844
11845 WORKQUEUE
11846 M:      Tejun Heo <tj@kernel.org>
11847 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11849 S:      Maintained
11850 F:      include/linux/workqueue.h
11851 F:      kernel/workqueue.c
11852 F:      Documentation/workqueue.txt
11853
11854 X.25 NETWORK LAYER
11855 M:      Andrew Hendry <andrew.hendry@gmail.com>
11856 L:      linux-x25@vger.kernel.org
11857 S:      Odd Fixes
11858 F:      Documentation/networking/x25*
11859 F:      include/net/x25*
11860 F:      net/x25/
11861
11862 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11863 M:      Thomas Gleixner <tglx@linutronix.de>
11864 M:      Ingo Molnar <mingo@redhat.com>
11865 M:      "H. Peter Anvin" <hpa@zytor.com>
11866 M:      x86@kernel.org
11867 L:      linux-kernel@vger.kernel.org
11868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11869 S:      Maintained
11870 F:      Documentation/x86/
11871 F:      arch/x86/
11872
11873 X86 PLATFORM DRIVERS
11874 M:      Darren Hart <dvhart@infradead.org>
11875 L:      platform-driver-x86@vger.kernel.org
11876 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11877 S:      Maintained
11878 F:      drivers/platform/x86/
11879 F:      drivers/platform/olpc/
11880
11881 X86 MCE INFRASTRUCTURE
11882 M:      Tony Luck <tony.luck@intel.com>
11883 M:      Borislav Petkov <bp@alien8.de>
11884 L:      linux-edac@vger.kernel.org
11885 S:      Maintained
11886 F:      arch/x86/kernel/cpu/mcheck/*
11887
11888 X86 MICROCODE UPDATE SUPPORT
11889 M:      Borislav Petkov <bp@alien8.de>
11890 S:      Maintained
11891 F:      arch/x86/kernel/cpu/microcode/*
11892
11893 X86 VDSO
11894 M:      Andy Lutomirski <luto@amacapital.net>
11895 L:      linux-kernel@vger.kernel.org
11896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11897 S:      Maintained
11898 F:      arch/x86/entry/vdso/
11899
11900 XC2028/3028 TUNER DRIVER
11901 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11902 L:      linux-media@vger.kernel.org
11903 W:      https://linuxtv.org
11904 T:      git git://linuxtv.org/media_tree.git
11905 S:      Maintained
11906 F:      drivers/media/tuners/tuner-xc2028.*
11907
11908 XEN HYPERVISOR INTERFACE
11909 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11910 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
11911 M:      David Vrabel <david.vrabel@citrix.com>
11912 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
11914 S:      Supported
11915 F:      arch/x86/xen/
11916 F:      drivers/*/xen-*front.c
11917 F:      drivers/xen/
11918 F:      arch/x86/include/asm/xen/
11919 F:      include/xen/
11920 F:      include/uapi/xen/
11921
11922 XEN HYPERVISOR ARM
11923 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11924 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11925 S:      Supported
11926 F:      arch/arm/xen/
11927 F:      arch/arm/include/asm/xen/
11928
11929 XEN HYPERVISOR ARM64
11930 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
11931 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11932 S:      Supported
11933 F:      arch/arm64/xen/
11934 F:      arch/arm64/include/asm/xen/
11935
11936 XEN NETWORK BACKEND DRIVER
11937 M:      Ian Campbell <ian.campbell@citrix.com>
11938 M:      Wei Liu <wei.liu2@citrix.com>
11939 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11940 L:      netdev@vger.kernel.org
11941 S:      Supported
11942 F:      drivers/net/xen-netback/*
11943
11944 XEN PCI SUBSYSTEM
11945 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11946 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11947 S:      Supported
11948 F:      arch/x86/pci/*xen*
11949 F:      drivers/pci/*xen*
11950
11951 XEN BLOCK SUBSYSTEM
11952 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11953 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
11954 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11955 S:      Supported
11956 F:      drivers/block/xen-blkback/*
11957 F:      drivers/block/xen*
11958
11959 XEN PVSCSI DRIVERS
11960 M:      Juergen Gross <jgross@suse.com>
11961 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11962 L:      linux-scsi@vger.kernel.org
11963 S:      Supported
11964 F:      drivers/scsi/xen-scsifront.c
11965 F:      drivers/xen/xen-scsiback.c
11966 F:      include/xen/interface/io/vscsiif.h
11967
11968 XEN SWIOTLB SUBSYSTEM
11969 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11970 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
11971 S:      Supported
11972 F:      arch/x86/xen/*swiotlb*
11973 F:      drivers/xen/*swiotlb*
11974
11975 XFS FILESYSTEM
11976 P:      Silicon Graphics Inc
11977 M:      Dave Chinner <david@fromorbit.com>
11978 M:      xfs@oss.sgi.com
11979 L:      xfs@oss.sgi.com
11980 W:      http://oss.sgi.com/projects/xfs
11981 T:      git git://oss.sgi.com/xfs/xfs.git
11982 S:      Supported
11983 F:      Documentation/filesystems/xfs.txt
11984 F:      fs/xfs/
11985
11986 XILINX AXI ETHERNET DRIVER
11987 M:      Anirudha Sarangi <anirudh@xilinx.com>
11988 M:      John Linn <John.Linn@xilinx.com>
11989 S:      Maintained
11990 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
11991
11992 XILINX UARTLITE SERIAL DRIVER
11993 M:      Peter Korsgaard <jacmet@sunsite.dk>
11994 L:      linux-serial@vger.kernel.org
11995 S:      Maintained
11996 F:      drivers/tty/serial/uartlite.c
11997
11998 XILINX VIDEO IP CORES
11999 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12000 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12001 L:      linux-media@vger.kernel.org
12002 T:      git git://linuxtv.org/media_tree.git
12003 S:      Supported
12004 F:      Documentation/devicetree/bindings/media/xilinx/
12005 F:      drivers/media/platform/xilinx/
12006 F:      include/uapi/linux/xilinx-v4l2-controls.h
12007
12008 XILLYBUS DRIVER
12009 M:      Eli Billauer <eli.billauer@gmail.com>
12010 L:      linux-kernel@vger.kernel.org
12011 S:      Supported
12012 F:      drivers/char/xillybus/
12013
12014 XTENSA XTFPGA PLATFORM SUPPORT
12015 M:      Max Filippov <jcmvbkbc@gmail.com>
12016 L:      linux-xtensa@linux-xtensa.org
12017 S:      Maintained
12018 F:      drivers/spi/spi-xtensa-xtfpga.c
12019 F:      sound/soc/xtensa/xtfpga-i2s.c
12020
12021 YAM DRIVER FOR AX.25
12022 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12023 L:      linux-hams@vger.kernel.org
12024 S:      Maintained
12025 F:      drivers/net/hamradio/yam*
12026 F:      include/linux/yam.h
12027
12028 YEALINK PHONE DRIVER
12029 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12030 L:      usbb2k-api-dev@nongnu.org
12031 S:      Maintained
12032 F:      Documentation/input/yealink.txt
12033 F:      drivers/input/misc/yealink.*
12034
12035 Z8530 DRIVER FOR AX.25
12036 M:      Joerg Reuter <jreuter@yaina.de>
12037 W:      http://yaina.de/jreuter/
12038 W:      http://www.qsl.net/dl1bke/
12039 L:      linux-hams@vger.kernel.org
12040 S:      Maintained
12041 F:      Documentation/networking/z8530drv.txt
12042 F:      drivers/net/hamradio/*scc.c
12043 F:      drivers/net/hamradio/z8530.h
12044
12045 ZBUD COMPRESSED PAGE ALLOCATOR
12046 M:      Seth Jennings <sjennings@variantweb.net>
12047 L:      linux-mm@kvack.org
12048 S:      Maintained
12049 F:      mm/zbud.c
12050 F:      include/linux/zbud.h
12051
12052 ZD1211RW WIRELESS DRIVER
12053 M:      Daniel Drake <dsd@gentoo.org>
12054 M:      Ulrich Kunitz <kune@deine-taler.de>
12055 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12056 L:      linux-wireless@vger.kernel.org
12057 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12058 S:      Maintained
12059 F:      drivers/net/wireless/zydas/zd1211rw/
12060
12061 ZPOOL COMPRESSED PAGE STORAGE API
12062 M:      Dan Streetman <ddstreet@ieee.org>
12063 L:      linux-mm@kvack.org
12064 S:      Maintained
12065 F:      mm/zpool.c
12066 F:      include/linux/zpool.h
12067
12068 ZR36067 VIDEO FOR LINUX DRIVER
12069 L:      mjpeg-users@lists.sourceforge.net
12070 L:      linux-media@vger.kernel.org
12071 W:      http://mjpeg.sourceforge.net/driver-zoran/
12072 T:      hg https://linuxtv.org/hg/v4l-dvb
12073 S:      Odd Fixes
12074 F:      drivers/media/pci/zoran/
12075
12076 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12077 M:      Minchan Kim <minchan@kernel.org>
12078 M:      Nitin Gupta <ngupta@vflare.org>
12079 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12080 L:      linux-kernel@vger.kernel.org
12081 S:      Maintained
12082 F:      drivers/block/zram/
12083 F:      Documentation/blockdev/zram.txt
12084
12085 ZS DECSTATION Z85C30 SERIAL DRIVER
12086 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12087 S:      Maintained
12088 F:      drivers/tty/serial/zs.*
12089
12090 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12091 M:      Minchan Kim <minchan@kernel.org>
12092 M:      Nitin Gupta <ngupta@vflare.org>
12093 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12094 L:      linux-mm@kvack.org
12095 S:      Maintained
12096 F:      mm/zsmalloc.c
12097 F:      include/linux/zsmalloc.h
12098 F:      Documentation/vm/zsmalloc.txt
12099
12100 ZSWAP COMPRESSED SWAP CACHING
12101 M:      Seth Jennings <sjennings@variantweb.net>
12102 L:      linux-mm@kvack.org
12103 S:      Maintained
12104 F:      mm/zswap.c
12105
12106 THE REST
12107 M:      Linus Torvalds <torvalds@linux-foundation.org>
12108 L:      linux-kernel@vger.kernel.org
12109 Q:      http://patchwork.kernel.org/project/LKML/list/
12110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12111 S:      Buried alive in reporters
12112 F:      *
12113 F:      */