Merge tag 'locks-v4.9-1' of git://git.samba.org/jlayton/linux
[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 <aar@pengutronix.de>
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 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      https://linuxtv.org
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      include/linux/syscalls.h
226 F:      kernel/sys_ni.c
227
228 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
229 M:      Hans de Goede <hdegoede@redhat.com>
230 L:      linux-hwmon@vger.kernel.org
231 S:      Maintained
232 F:      drivers/hwmon/abituguru.c
233
234 ABIT UGURU 3 HARDWARE MONITOR DRIVER
235 M:      Alistair John Strachan <alistair@devzero.co.uk>
236 L:      linux-hwmon@vger.kernel.org
237 S:      Maintained
238 F:      drivers/hwmon/abituguru3.c
239
240 ACCES 104-DIO-48E GPIO DRIVER
241 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
242 L:      linux-gpio@vger.kernel.org
243 S:      Maintained
244 F:      drivers/gpio/gpio-104-dio-48e.c
245
246 ACCES 104-IDI-48 GPIO DRIVER
247 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
248 L:      linux-gpio@vger.kernel.org
249 S:      Maintained
250 F:      drivers/gpio/gpio-104-idi-48.c
251
252 ACCES 104-IDIO-16 GPIO DRIVER
253 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
254 L:      linux-gpio@vger.kernel.org
255 S:      Maintained
256 F:      drivers/gpio/gpio-104-idio-16.c
257
258 ACENIC DRIVER
259 M:      Jes Sorensen <jes@trained-monkey.org>
260 L:      linux-acenic@sunsite.dk
261 S:      Maintained
262 F:      drivers/net/ethernet/alteon/acenic*
263
264 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
265 M:      Peter Feuerer <peter@piie.net>
266 L:      platform-driver-x86@vger.kernel.org
267 W:      http://piie.net/?section=acerhdf
268 S:      Maintained
269 F:      drivers/platform/x86/acerhdf.c
270
271 ACER WMI LAPTOP EXTRAS
272 M:      "Lee, Chun-Yi" <jlee@suse.com>
273 L:      platform-driver-x86@vger.kernel.org
274 S:      Maintained
275 F:      drivers/platform/x86/acer-wmi.c
276
277 ACPI
278 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
279 M:      Len Brown <lenb@kernel.org>
280 L:      linux-acpi@vger.kernel.org
281 W:      https://01.org/linux-acpi
282 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
284 S:      Supported
285 F:      drivers/acpi/
286 F:      drivers/pnp/pnpacpi/
287 F:      include/linux/acpi.h
288 F:      include/acpi/
289 F:      Documentation/acpi/
290 F:      Documentation/ABI/testing/sysfs-bus-acpi
291 F:      Documentation/ABI/testing/configfs-acpi
292 F:      drivers/pci/*acpi*
293 F:      drivers/pci/*/*acpi*
294 F:      drivers/pci/*/*/*acpi*
295 F:      tools/power/acpi/
296
297 ACPI COMPONENT ARCHITECTURE (ACPICA)
298 M:      Robert Moore <robert.moore@intel.com>
299 M:      Lv Zheng <lv.zheng@intel.com>
300 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
301 L:      linux-acpi@vger.kernel.org
302 L:      devel@acpica.org
303 W:      https://acpica.org/
304 W:      https://github.com/acpica/acpica/
305 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
307 S:      Supported
308 F:      drivers/acpi/acpica/
309 F:      include/acpi/
310 F:      tools/power/acpi/
311
312 ACPI FAN DRIVER
313 M:      Zhang Rui <rui.zhang@intel.com>
314 L:      linux-acpi@vger.kernel.org
315 W:      https://01.org/linux-acpi
316 S:      Supported
317 F:      drivers/acpi/fan.c
318
319 ACPI THERMAL DRIVER
320 M:      Zhang Rui <rui.zhang@intel.com>
321 L:      linux-acpi@vger.kernel.org
322 W:      https://01.org/linux-acpi
323 S:      Supported
324 F:      drivers/acpi/*thermal*
325
326 ACPI VIDEO DRIVER
327 M:      Zhang Rui <rui.zhang@intel.com>
328 L:      linux-acpi@vger.kernel.org
329 W:      https://01.org/linux-acpi
330 S:      Supported
331 F:      drivers/acpi/acpi_video.c
332
333 ACPI WMI DRIVER
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Orphan
336 F:      drivers/platform/x86/wmi.c
337
338 AD1889 ALSA SOUND DRIVER
339 M:      Thibaut Varene <T-Bone@parisc-linux.org>
340 W:      http://wiki.parisc-linux.org/AD1889
341 L:      linux-parisc@vger.kernel.org
342 S:      Maintained
343 F:      sound/pci/ad1889.*
344
345 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
346 M:      Michael Hennerich <michael.hennerich@analog.com>
347 W:      http://wiki.analog.com/AD5254
348 W:      http://ez.analog.com/community/linux-device-drivers
349 S:      Supported
350 F:      drivers/misc/ad525x_dpot.c
351
352 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
353 M:      Michael Hennerich <michael.hennerich@analog.com>
354 W:      http://wiki.analog.com/AD5398
355 W:      http://ez.analog.com/community/linux-device-drivers
356 S:      Supported
357 F:      drivers/regulator/ad5398.c
358
359 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
360 M:      Michael Hennerich <michael.hennerich@analog.com>
361 W:      http://wiki.analog.com/AD7142
362 W:      http://ez.analog.com/community/linux-device-drivers
363 S:      Supported
364 F:      drivers/input/misc/ad714x.c
365
366 AD7877 TOUCHSCREEN DRIVER
367 M:      Michael Hennerich <michael.hennerich@analog.com>
368 W:      http://wiki.analog.com/AD7877
369 W:      http://ez.analog.com/community/linux-device-drivers
370 S:      Supported
371 F:      drivers/input/touchscreen/ad7877.c
372
373 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
374 M:      Michael Hennerich <michael.hennerich@analog.com>
375 W:      http://wiki.analog.com/AD7879
376 W:      http://ez.analog.com/community/linux-device-drivers
377 S:      Supported
378 F:      drivers/input/touchscreen/ad7879.c
379
380 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
381 M:      Jiri Kosina <jikos@kernel.org>
382 S:      Maintained
383
384 ADF7242 IEEE 802.15.4 RADIO DRIVER
385 M:      Michael Hennerich <michael.hennerich@analog.com>
386 W:      https://wiki.analog.com/ADF7242
387 W:      http://ez.analog.com/community/linux-device-drivers
388 L:      linux-wpan@vger.kernel.org
389 S:      Supported
390 F:      drivers/net/ieee802154/adf7242.c
391 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
392
393 ADM1025 HARDWARE MONITOR DRIVER
394 M:      Jean Delvare <jdelvare@suse.com>
395 L:      linux-hwmon@vger.kernel.org
396 S:      Maintained
397 F:      Documentation/hwmon/adm1025
398 F:      drivers/hwmon/adm1025.c
399
400 ADM1029 HARDWARE MONITOR DRIVER
401 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
402 L:      linux-hwmon@vger.kernel.org
403 S:      Maintained
404 F:      drivers/hwmon/adm1029.c
405
406 ADM8211 WIRELESS DRIVER
407 L:      linux-wireless@vger.kernel.org
408 W:      http://wireless.kernel.org/
409 S:      Orphan
410 F:      drivers/net/wireless/admtek/adm8211.*
411
412 ADP1653 FLASH CONTROLLER DRIVER
413 M:      Sakari Ailus <sakari.ailus@iki.fi>
414 L:      linux-media@vger.kernel.org
415 S:      Maintained
416 F:      drivers/media/i2c/adp1653.c
417 F:      include/media/i2c/adp1653.h
418
419 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
420 M:      Michael Hennerich <michael.hennerich@analog.com>
421 W:      http://wiki.analog.com/ADP5520
422 W:      http://ez.analog.com/community/linux-device-drivers
423 S:      Supported
424 F:      drivers/mfd/adp5520.c
425 F:      drivers/video/backlight/adp5520_bl.c
426 F:      drivers/leds/leds-adp5520.c
427 F:      drivers/gpio/gpio-adp5520.c
428 F:      drivers/input/keyboard/adp5520-keys.c
429
430 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
431 M:      Michael Hennerich <michael.hennerich@analog.com>
432 W:      http://wiki.analog.com/ADP5588
433 W:      http://ez.analog.com/community/linux-device-drivers
434 S:      Supported
435 F:      drivers/input/keyboard/adp5588-keys.c
436 F:      drivers/gpio/gpio-adp5588.c
437
438 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
439 M:      Michael Hennerich <michael.hennerich@analog.com>
440 W:      http://wiki.analog.com/ADP8860
441 W:      http://ez.analog.com/community/linux-device-drivers
442 S:      Supported
443 F:      drivers/video/backlight/adp8860_bl.c
444
445 ADS1015 HARDWARE MONITOR DRIVER
446 M:      Dirk Eibach <eibach@gdsys.de>
447 L:      linux-hwmon@vger.kernel.org
448 S:      Maintained
449 F:      Documentation/hwmon/ads1015
450 F:      drivers/hwmon/ads1015.c
451 F:      include/linux/i2c/ads1015.h
452
453 ADT746X FAN DRIVER
454 M:      Colin Leroy <colin@colino.net>
455 S:      Maintained
456 F:      drivers/macintosh/therm_adt746x.c
457
458 ADT7475 HARDWARE MONITOR DRIVER
459 M:      Jean Delvare <jdelvare@suse.com>
460 L:      linux-hwmon@vger.kernel.org
461 S:      Maintained
462 F:      Documentation/hwmon/adt7475
463 F:      drivers/hwmon/adt7475.c
464
465 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 W:      http://wiki.analog.com/ADXL345
468 W:      http://ez.analog.com/community/linux-device-drivers
469 S:      Supported
470 F:      drivers/input/misc/adxl34x.c
471
472 ADVANSYS SCSI DRIVER
473 M:      Matthew Wilcox <matthew@wil.cx>
474 M:      Hannes Reinecke <hare@suse.com>
475 L:      linux-scsi@vger.kernel.org
476 S:      Maintained
477 F:      Documentation/scsi/advansys.txt
478 F:      drivers/scsi/advansys.c
479
480 AEDSP16 DRIVER
481 M:      Riccardo Facchetti <fizban@tin.it>
482 S:      Maintained
483 F:      sound/oss/aedsp16.c
484
485 AF9013 MEDIA DRIVER
486 M:      Antti Palosaari <crope@iki.fi>
487 L:      linux-media@vger.kernel.org
488 W:      https://linuxtv.org
489 W:      http://palosaari.fi/linux/
490 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
491 T:      git git://linuxtv.org/anttip/media_tree.git
492 S:      Maintained
493 F:      drivers/media/dvb-frontends/af9013*
494
495 AF9033 MEDIA DRIVER
496 M:      Antti Palosaari <crope@iki.fi>
497 L:      linux-media@vger.kernel.org
498 W:      https://linuxtv.org
499 W:      http://palosaari.fi/linux/
500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
501 T:      git git://linuxtv.org/anttip/media_tree.git
502 S:      Maintained
503 F:      drivers/media/dvb-frontends/af9033*
504
505 AFFS FILE SYSTEM
506 L:      linux-fsdevel@vger.kernel.org
507 S:      Orphan
508 F:      Documentation/filesystems/affs.txt
509 F:      fs/affs/
510
511 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
512 M:      David Howells <dhowells@redhat.com>
513 L:      linux-afs@lists.infradead.org
514 S:      Supported
515 F:      fs/afs/
516 F:      include/net/af_rxrpc.h
517 F:      net/rxrpc/af_rxrpc.c
518
519 AGPGART DRIVER
520 M:      David Airlie <airlied@linux.ie>
521 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
522 S:      Maintained
523 F:      drivers/char/agp/
524 F:      include/linux/agp*
525 F:      include/uapi/linux/agp*
526
527 AHA152X SCSI DRIVER
528 M:      "Juergen E. Fischer" <fischer@norbit.de>
529 L:      linux-scsi@vger.kernel.org
530 S:      Maintained
531 F:      drivers/scsi/aha152x*
532 F:      drivers/scsi/pcmcia/aha152x*
533
534 AIC7XXX / AIC79XX SCSI DRIVER
535 M:      Hannes Reinecke <hare@suse.com>
536 L:      linux-scsi@vger.kernel.org
537 S:      Maintained
538 F:      drivers/scsi/aic7xxx/
539
540 AIMSLAB FM RADIO RECEIVER DRIVER
541 M:      Hans Verkuil <hverkuil@xs4all.nl>
542 L:      linux-media@vger.kernel.org
543 T:      git git://linuxtv.org/media_tree.git
544 W:      https://linuxtv.org
545 S:      Maintained
546 F:      drivers/media/radio/radio-aimslab*
547
548 AIO
549 M:      Benjamin LaHaise <bcrl@kvack.org>
550 L:      linux-aio@kvack.org
551 S:      Supported
552 F:      fs/aio.c
553 F:      include/linux/*aio*.h
554
555 AIRSPY MEDIA DRIVER
556 M:      Antti Palosaari <crope@iki.fi>
557 L:      linux-media@vger.kernel.org
558 W:      https://linuxtv.org
559 W:      http://palosaari.fi/linux/
560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
561 T:      git git://linuxtv.org/anttip/media_tree.git
562 S:      Maintained
563 F:      drivers/media/usb/airspy/
564
565 ALCATEL SPEEDTOUCH USB DRIVER
566 M:      Duncan Sands <duncan.sands@free.fr>
567 L:      linux-usb@vger.kernel.org
568 W:      http://www.linux-usb.org/SpeedTouch/
569 S:      Maintained
570 F:      drivers/usb/atm/speedtch.c
571 F:      drivers/usb/atm/usbatm.c
572
573 ALCHEMY AU1XX0 MMC DRIVER
574 M:      Manuel Lauss <manuel.lauss@gmail.com>
575 S:      Maintained
576 F:      drivers/mmc/host/au1xmmc.c
577
578 ALI1563 I2C DRIVER
579 M:      Rudolf Marek <r.marek@assembler.cz>
580 L:      linux-i2c@vger.kernel.org
581 S:      Maintained
582 F:      Documentation/i2c/busses/i2c-ali1563
583 F:      drivers/i2c/busses/i2c-ali1563.c
584
585 ALLWINNER SECURITY SYSTEM
586 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
587 L:      linux-crypto@vger.kernel.org
588 S:      Maintained
589 F:      drivers/crypto/sunxi-ss/
590
591 ALPHA PORT
592 M:      Richard Henderson <rth@twiddle.net>
593 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
594 M:      Matt Turner <mattst88@gmail.com>
595 S:      Odd Fixes
596 L:      linux-alpha@vger.kernel.org
597 F:      arch/alpha/
598
599 ALPS PS/2 TOUCHPAD DRIVER
600 R:      Pali Rohár <pali.rohar@gmail.com>
601 F:      drivers/input/mouse/alps.*
602
603 ALTERA MAILBOX DRIVER
604 M:      Ley Foon Tan <lftan@altera.com>
605 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
606 S:      Maintained
607 F:      drivers/mailbox/mailbox-altera.c
608
609 ALTERA PIO DRIVER
610 M:      Tien Hock Loh <thloh@altera.com>
611 L:      linux-gpio@vger.kernel.org
612 S:      Maintained
613 F:      drivers/gpio/gpio-altera.c
614
615 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
616 M:      Thor Thayer <tthayer@opensource.altera.com>
617 S:      Maintained
618 F:      drivers/gpio/gpio-altera-a10sr.c
619 F:      drivers/mfd/altera-a10sr.c
620 F:      include/linux/mfd/altera-a10sr.h
621
622 ALTERA TRIPLE SPEED ETHERNET DRIVER
623 M:      Vince Bridgers <vbridger@opensource.altera.com>
624 L:      netdev@vger.kernel.org
625 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
626 S:      Maintained
627 F:      drivers/net/ethernet/altera/
628
629 ALTERA UART/JTAG UART SERIAL DRIVERS
630 M:      Tobias Klauser <tklauser@distanz.ch>
631 L:      linux-serial@vger.kernel.org
632 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
633 S:      Maintained
634 F:      drivers/tty/serial/altera_uart.c
635 F:      drivers/tty/serial/altera_jtaguart.c
636 F:      include/linux/altera_uart.h
637 F:      include/linux/altera_jtaguart.h
638
639 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
640 M:      Tom Lendacky <thomas.lendacky@amd.com>
641 M:      Gary Hook <gary.hook@amd.com>
642 L:      linux-crypto@vger.kernel.org
643 S:      Supported
644 F:      drivers/crypto/ccp/
645 F:      include/linux/ccp.h
646
647 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
648 M:      Huang Rui <ray.huang@amd.com>
649 L:      linux-hwmon@vger.kernel.org
650 S:      Supported
651 F:      Documentation/hwmon/fam15h_power
652 F:      drivers/hwmon/fam15h_power.c
653
654 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
655 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
656 S:      Orphan
657 F:      drivers/usb/gadget/udc/amd5536udc.*
658
659 AMD GEODE PROCESSOR/CHIPSET SUPPORT
660 P:      Andres Salomon <dilinger@queued.net>
661 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
662 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
663 S:      Supported
664 F:      drivers/char/hw_random/geode-rng.c
665 F:      drivers/crypto/geode*
666 F:      drivers/video/fbdev/geode/
667 F:      arch/x86/include/asm/geode.h
668
669 AMD IOMMU (AMD-VI)
670 M:      Joerg Roedel <joro@8bytes.org>
671 L:      iommu@lists.linux-foundation.org
672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
673 S:      Maintained
674 F:      drivers/iommu/amd_iommu*.[ch]
675 F:      include/linux/amd-iommu.h
676
677 AMD KFD
678 M:      Oded Gabbay <oded.gabbay@gmail.com>
679 L:      dri-devel@lists.freedesktop.org
680 T:      git git://people.freedesktop.org/~gabbayo/linux.git
681 S:      Supported
682 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
683 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
684 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
685 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
686 F:      drivers/gpu/drm/amd/amdkfd/
687 F:      drivers/gpu/drm/amd/include/cik_structs.h
688 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
689 F:      drivers/gpu/drm/amd/include/vi_structs.h
690 F:      drivers/gpu/drm/radeon/radeon_kfd.c
691 F:      drivers/gpu/drm/radeon/radeon_kfd.h
692 F:      include/uapi/linux/kfd_ioctl.h
693
694 AMD SEATTLE DEVICE TREE SUPPORT
695 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
696 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
697 M:      Tom Lendacky <thomas.lendacky@amd.com>
698 S:      Supported
699 F:      arch/arm64/boot/dts/amd/
700
701 AMD XGBE DRIVER
702 M:      Tom Lendacky <thomas.lendacky@amd.com>
703 L:      netdev@vger.kernel.org
704 S:      Supported
705 F:      drivers/net/ethernet/amd/xgbe/
706 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
707
708 AMS (Apple Motion Sensor) DRIVER
709 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
710 S:      Supported
711 F:      drivers/macintosh/ams/
712
713 ANALOG DEVICES INC AD9389B DRIVER
714 M:      Hans Verkuil <hans.verkuil@cisco.com>
715 L:      linux-media@vger.kernel.org
716 S:      Maintained
717 F:      drivers/media/i2c/ad9389b*
718
719 ANALOG DEVICES INC ADV7180 DRIVER
720 M:      Lars-Peter Clausen <lars@metafoo.de>
721 L:      linux-media@vger.kernel.org
722 W:      http://ez.analog.com/community/linux-device-drivers
723 S:      Supported
724 F:      drivers/media/i2c/adv7180.c
725
726 ANALOG DEVICES INC ADV7511 DRIVER
727 M:      Hans Verkuil <hans.verkuil@cisco.com>
728 L:      linux-media@vger.kernel.org
729 S:      Maintained
730 F:      drivers/media/i2c/adv7511*
731
732 ANALOG DEVICES INC ADV7604 DRIVER
733 M:      Hans Verkuil <hans.verkuil@cisco.com>
734 L:      linux-media@vger.kernel.org
735 S:      Maintained
736 F:      drivers/media/i2c/adv7604*
737
738 ANALOG DEVICES INC ADV7842 DRIVER
739 M:      Hans Verkuil <hans.verkuil@cisco.com>
740 L:      linux-media@vger.kernel.org
741 S:      Maintained
742 F:      drivers/media/i2c/adv7842*
743
744 ANALOG DEVICES INC ASOC CODEC DRIVERS
745 M:      Lars-Peter Clausen <lars@metafoo.de>
746 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
747 W:      http://wiki.analog.com/
748 W:      http://ez.analog.com/community/linux-device-drivers
749 S:      Supported
750 F:      sound/soc/codecs/adau*
751 F:      sound/soc/codecs/adav*
752 F:      sound/soc/codecs/ad1*
753 F:      sound/soc/codecs/ad7*
754 F:      sound/soc/codecs/ssm*
755 F:      sound/soc/codecs/sigmadsp.*
756
757 ANALOG DEVICES INC ASOC DRIVERS
758 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
759 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
760 W:      http://blackfin.uclinux.org/
761 S:      Supported
762 F:      sound/soc/blackfin/*
763
764 ANALOG DEVICES INC IIO DRIVERS
765 M:      Lars-Peter Clausen <lars@metafoo.de>
766 M:      Michael Hennerich <Michael.Hennerich@analog.com>
767 W:      http://wiki.analog.com/
768 W:      http://ez.analog.com/community/linux-device-drivers
769 S:      Supported
770 F:      drivers/iio/*/ad*
771 X:      drivers/iio/*/adjd*
772 F:      drivers/staging/iio/*/ad*
773 F:      staging/iio/trigger/iio-trig-bfin-timer.c
774
775 ANALOG DEVICES INC DMA DRIVERS
776 M:      Lars-Peter Clausen <lars@metafoo.de>
777 W:      http://ez.analog.com/community/linux-device-drivers
778 S:      Supported
779 F:      drivers/dma/dma-axi-dmac.c
780
781 ANDROID CONFIG FRAGMENTS
782 M:      Rob Herring <robh@kernel.org>
783 S:      Supported
784 F:      kernel/configs/android*
785
786 ANDROID DRIVERS
787 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
788 M:      Arve Hjønnevåg <arve@android.com>
789 M:      Riley Andrews <riandrews@android.com>
790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
791 L:      devel@driverdev.osuosl.org
792 S:      Supported
793 F:      drivers/android/
794 F:      drivers/staging/android/
795
796 ANDROID ION DRIVER
797 M:      Laura Abbott <labbott@redhat.com>
798 M:      Sumit Semwal <sumit.semwal@linaro.org>
799 L:      devel@driverdev.osuosl.org
800 S:      Supported
801 F:      Documentation/devicetree/bindings/staging/ion/
802 F:      drivers/staging/android/ion
803 F:      drivers/staging/android/uapi/ion.h
804 F:      drivers/staging/android/uapi/ion_test.h
805
806 AOA (Apple Onboard Audio) ALSA DRIVER
807 M:      Johannes Berg <johannes@sipsolutions.net>
808 L:      linuxppc-dev@lists.ozlabs.org
809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
810 S:      Maintained
811 F:      sound/aoa/
812
813 APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
814 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
815 L:      linux-iio@vger.kernel.org
816 S:      Maintained
817 F:      drivers/iio/dac/stx104.c
818
819 APM DRIVER
820 M:      Jiri Kosina <jikos@kernel.org>
821 S:      Odd fixes
822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
823 F:      arch/x86/kernel/apm_32.c
824 F:      include/linux/apm_bios.h
825 F:      include/uapi/linux/apm_bios.h
826 F:      drivers/char/apm-emulation.c
827
828 APPLE BCM5974 MULTITOUCH DRIVER
829 M:      Henrik Rydberg <rydberg@bitmath.org>
830 L:      linux-input@vger.kernel.org
831 S:      Odd fixes
832 F:      drivers/input/mouse/bcm5974.c
833
834 APPLE SMC DRIVER
835 M:      Henrik Rydberg <rydberg@bitmath.org>
836 L:      linux-hwmon@vger.kernel.org
837 S:      Odd fixes
838 F:      drivers/hwmon/applesmc.c
839
840 APPLETALK NETWORK LAYER
841 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
842 S:      Maintained
843 F:      drivers/net/appletalk/
844 F:      net/appletalk/
845
846 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
847 M:      Duc Dang <dhdang@apm.com>
848 S:      Supported
849 F:      arch/arm64/boot/dts/apm/
850
851 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
852 M:      Iyappan Subramanian <isubramanian@apm.com>
853 M:      Keyur Chudgar <kchudgar@apm.com>
854 S:      Supported
855 F:      drivers/net/ethernet/apm/xgene/
856 F:      drivers/net/phy/mdio-xgene.c
857 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
858 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
859
860 APTINA CAMERA SENSOR PLL
861 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
862 L:      linux-media@vger.kernel.org
863 S:      Maintained
864 F:      drivers/media/i2c/aptina-pll.*
865
866 ARC FRAMEBUFFER DRIVER
867 M:      Jaya Kumar <jayalk@intworks.biz>
868 S:      Maintained
869 F:      drivers/video/fbdev/arcfb.c
870 F:      drivers/video/fbdev/core/fb_defio.c
871
872 ARCNET NETWORK LAYER
873 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
874 L:      netdev@vger.kernel.org
875 S:      Maintained
876 F:      drivers/net/arcnet/
877 F:      include/uapi/linux/if_arcnet.h
878
879 ARC PGU DRM DRIVER
880 M:      Alexey Brodkin <abrodkin@synopsys.com>
881 S:      Supported
882 F:      drivers/gpu/drm/arc/
883 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
884
885 ARM ARCHITECTED TIMER DRIVER
886 M:      Mark Rutland <mark.rutland@arm.com>
887 M:      Marc Zyngier <marc.zyngier@arm.com>
888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
889 S:      Maintained
890 F:      arch/arm/include/asm/arch_timer.h
891 F:      arch/arm64/include/asm/arch_timer.h
892 F:      drivers/clocksource/arm_arch_timer.c
893
894 ARM HDLCD DRM DRIVER
895 M:      Liviu Dudau <liviu.dudau@arm.com>
896 S:      Supported
897 F:      drivers/gpu/drm/arm/hdlcd_*
898 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
899
900 ARM MALI-DP DRM DRIVER
901 M:      Liviu Dudau <liviu.dudau@arm.com>
902 M:      Brian Starkey <brian.starkey@arm.com>
903 M:      Mali DP Maintainers <malidp@foss.arm.com>
904 S:      Supported
905 F:      drivers/gpu/drm/arm/
906 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
907
908 ARM MFM AND FLOPPY DRIVERS
909 M:      Ian Molton <spyro@f2s.com>
910 S:      Maintained
911 F:      arch/arm/lib/floppydma.S
912 F:      arch/arm/include/asm/floppy.h
913
914 ARM PMU PROFILING AND DEBUGGING
915 M:      Will Deacon <will.deacon@arm.com>
916 M:      Mark Rutland <mark.rutland@arm.com>
917 S:      Maintained
918 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
919 F:      arch/arm*/kernel/perf_*
920 F:      arch/arm/oprofile/common.c
921 F:      arch/arm*/kernel/hw_breakpoint.c
922 F:      arch/arm*/include/asm/hw_breakpoint.h
923 F:      arch/arm*/include/asm/perf_event.h
924 F:      drivers/perf/*
925 F:      include/linux/perf/arm_pmu.h
926 F:      Documentation/devicetree/bindings/arm/pmu.txt
927
928 ARM PORT
929 M:      Russell King <linux@armlinux.org.uk>
930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
931 W:      http://www.armlinux.org.uk/
932 S:      Maintained
933 F:      arch/arm/
934
935 ARM SUB-ARCHITECTURES
936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
937 S:      Maintained
938 F:      arch/arm/mach-*/
939 F:      arch/arm/plat-*/
940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
941
942 ARM PRIMECELL AACI PL041 DRIVER
943 M:      Russell King <linux@armlinux.org.uk>
944 S:      Maintained
945 F:      sound/arm/aaci.*
946
947 ARM PRIMECELL CLCD PL110 DRIVER
948 M:      Russell King <linux@armlinux.org.uk>
949 S:      Maintained
950 F:      drivers/video/fbdev/amba-clcd.*
951
952 ARM PRIMECELL KMI PL050 DRIVER
953 M:      Russell King <linux@armlinux.org.uk>
954 S:      Maintained
955 F:      drivers/input/serio/ambakmi.*
956 F:      include/linux/amba/kmi.h
957
958 ARM PRIMECELL MMCI PL180/1 DRIVER
959 M:      Russell King <linux@armlinux.org.uk>
960 S:      Maintained
961 F:      drivers/mmc/host/mmci.*
962 F:      include/linux/amba/mmci.h
963
964 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
965 M:      Russell King <linux@armlinux.org.uk>
966 S:      Maintained
967 F:      drivers/tty/serial/amba-pl01*.c
968 F:      include/linux/amba/serial.h
969
970 ARM PRIMECELL BUS SUPPORT
971 M:      Russell King <linux@armlinux.org.uk>
972 S:      Maintained
973 F:      drivers/amba/
974 F:      include/linux/amba/bus.h
975
976 ARM/ADS SPHERE MACHINE SUPPORT
977 M:      Lennert Buytenhek <kernel@wantstofly.org>
978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
979 S:      Maintained
980
981 ARM/AFEB9260 MACHINE SUPPORT
982 M:      Sergey Lapin <slapin@ossfans.org>
983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
984 S:      Maintained
985
986 ARM/AJECO 1ARM MACHINE SUPPORT
987 M:      Lennert Buytenhek <kernel@wantstofly.org>
988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989 S:      Maintained
990
991 ARM/Allwinner sunXi SoC support
992 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
993 M:      Chen-Yu Tsai <wens@csie.org>
994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
995 S:      Maintained
996 N:      sun[x456789]i
997
998 ARM/Allwinner SoC Clock Support
999 M:      Emilio López <emilio@elopez.com.ar>
1000 S:      Maintained
1001 F:      drivers/clk/sunxi/
1002
1003 ARM/Amlogic Meson SoC support
1004 M:      Carlo Caione <carlo@caione.org>
1005 M:      Kevin Hilman <khilman@baylibre.com>
1006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1007 L:      linux-amlogic@lists.infradead.org
1008 W:      http://linux-meson.com/
1009 S:      Maintained
1010 F:      arch/arm/mach-meson/
1011 F:      arch/arm/boot/dts/meson*
1012 F:      arch/arm64/boot/dts/amlogic/
1013 F:      drivers/pinctrl/meson/
1014 N:      meson
1015
1016 ARM/Annapurna Labs ALPINE ARCHITECTURE
1017 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1018 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
1019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1020 S:      Maintained
1021 F:      arch/arm/mach-alpine/
1022 F:      arch/arm/boot/dts/alpine*
1023 F:      arch/arm64/boot/dts/al/
1024 F:      drivers/*/*alpine*
1025
1026 ARM/ARTPEC MACHINE SUPPORT
1027 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1028 M:      Lars Persson <lars.persson@axis.com>
1029 M:      Niklas Cassel <niklas.cassel@axis.com>
1030 S:      Maintained
1031 L:      linux-arm-kernel@axis.com
1032 F:      arch/arm/mach-artpec
1033 F:      arch/arm/boot/dts/artpec6*
1034 F:      drivers/clk/axis
1035
1036 ARM/ASPEED MACHINE SUPPORT
1037 M:      Joel Stanley <joel@jms.id.au>
1038 S:      Maintained
1039 F:      arch/arm/mach-aspeed/
1040 F:      arch/arm/boot/dts/aspeed-*
1041 F:      drivers/*/*aspeed*
1042
1043 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1044 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1045 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1046 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 W:      http://www.linux4sam.org
1049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1050 S:      Supported
1051 F:      arch/arm/mach-at91/
1052 F:      include/soc/at91/
1053 F:      arch/arm/boot/dts/at91*.dts
1054 F:      arch/arm/boot/dts/at91*.dtsi
1055 F:      arch/arm/boot/dts/sama*.dts
1056 F:      arch/arm/boot/dts/sama*.dtsi
1057 F:      arch/arm/include/debug/at91.S
1058
1059 ARM/ATMEL AT91 Clock Support
1060 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1061 S:      Maintained
1062 F:      drivers/clk/at91
1063
1064 ARM/CALXEDA HIGHBANK ARCHITECTURE
1065 M:      Rob Herring <robh@kernel.org>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068 F:      arch/arm/mach-highbank/
1069 F:      arch/arm/boot/dts/highbank.dts
1070 F:      arch/arm/boot/dts/ecx-*.dts*
1071
1072 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1073 M:      Krzysztof Halasa <khalasa@piap.pl>
1074 S:      Maintained
1075 F:      arch/arm/mach-cns3xxx/
1076
1077 ARM/CAVIUM THUNDER NETWORK DRIVER
1078 M:      Sunil Goutham <sgoutham@cavium.com>
1079 M:      Robert Richter <rric@kernel.org>
1080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1081 S:      Supported
1082 F:      drivers/net/ethernet/cavium/thunder/
1083
1084 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1085 M:      Alexander Shiyan <shc_work@mail.ru>
1086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1087 S:      Odd Fixes
1088 N:      clps711x
1089
1090 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1091 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1092 M:      Ryan Mallon <rmallon@gmail.com>
1093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1094 S:      Maintained
1095 F:      arch/arm/mach-ep93xx/
1096 F:      arch/arm/mach-ep93xx/include/mach/
1097
1098 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1099 M:      Lennert Buytenhek <kernel@wantstofly.org>
1100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 S:      Maintained
1102
1103 ARM/CLKDEV SUPPORT
1104 M:      Russell King <linux@armlinux.org.uk>
1105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1106 S:      Maintained
1107 F:      arch/arm/include/asm/clkdev.h
1108 F:      drivers/clk/clkdev.c
1109
1110 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1111 M:      Mike Rapoport <mike@compulab.co.il>
1112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1113 S:      Maintained
1114
1115 ARM/CONTEC MICRO9 MACHINE SUPPORT
1116 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1117 S:      Maintained
1118 F:      arch/arm/mach-ep93xx/micro9.c
1119
1120 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1121 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123 S:      Maintained
1124 F:      drivers/hwtracing/coresight/*
1125 F:      Documentation/trace/coresight.txt
1126 F:      Documentation/devicetree/bindings/arm/coresight.txt
1127 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1128 F:      tools/perf/arch/arm/util/pmu.c
1129 F:      tools/perf/arch/arm/util/auxtrace.c
1130 F:      tools/perf/arch/arm/util/cs-etm.c
1131 F:      tools/perf/arch/arm/util/cs-etm.h
1132 F:      tools/perf/util/cs-etm.h
1133
1134 ARM/CORGI MACHINE SUPPORT
1135 M:      Richard Purdie <rpurdie@rpsys.net>
1136 S:      Maintained
1137
1138 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1139 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 T:      git git://github.com/ulli-kroll/linux.git
1142 S:      Maintained
1143 F:      arch/arm/mach-gemini/
1144 F:      drivers/rtc/rtc-gemini.c
1145
1146 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1147 M:      Barry Song <baohua@kernel.org>
1148 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1150 S:      Maintained
1151 F:      arch/arm/boot/dts/prima2*
1152 F:      arch/arm/mach-prima2/
1153 F:      drivers/clk/sirf/
1154 F:      drivers/clocksource/timer-prima2.c
1155 F:      drivers/clocksource/timer-atlas7.c
1156 N:      [^a-z]sirf
1157
1158 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1159 M:      Baruch Siach <baruch@tkos.co.il>
1160 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1161 S:      Maintained
1162 F:      arch/arm/boot/dts/cx92755*
1163 N:      digicolor
1164
1165 ARM/EBSA110 MACHINE SUPPORT
1166 M:      Russell King <linux@armlinux.org.uk>
1167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1168 W:      http://www.armlinux.org.uk/
1169 S:      Maintained
1170 F:      arch/arm/mach-ebsa110/
1171 F:      drivers/net/ethernet/amd/am79c961a.*
1172
1173 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1174 M:      Uwe Kleine-König <kernel@pengutronix.de>
1175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1176 S:      Maintained
1177 N:      efm32
1178
1179 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1180 M:      Daniel Ribeiro <drwyrm@gmail.com>
1181 M:      Stefan Schmidt <stefan@openezx.org>
1182 M:      Harald Welte <laforge@openezx.org>
1183 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1184 W:      http://www.openezx.org/
1185 S:      Maintained
1186 T:      topgit git://git.openezx.org/openezx.git
1187 F:      arch/arm/mach-pxa/ezx.c
1188
1189 ARM/FARADAY FA526 PORT
1190 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1192 S:      Maintained
1193 T:      git git://git.berlios.de/gemini-board
1194 F:      arch/arm/mm/*-fa*
1195
1196 ARM/FOOTBRIDGE ARCHITECTURE
1197 M:      Russell King <linux@armlinux.org.uk>
1198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1199 W:      http://www.armlinux.org.uk/
1200 S:      Maintained
1201 F:      arch/arm/include/asm/hardware/dec21285.h
1202 F:      arch/arm/mach-footbridge/
1203
1204 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1205 M:      Shawn Guo <shawnguo@kernel.org>
1206 M:      Sascha Hauer <kernel@pengutronix.de>
1207 R:      Fabio Estevam <fabio.estevam@nxp.com>
1208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1209 S:      Maintained
1210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1211 F:      arch/arm/mach-imx/
1212 F:      arch/arm/mach-mxs/
1213 F:      arch/arm/boot/dts/imx*
1214 F:      arch/arm/configs/imx*_defconfig
1215 F:      drivers/clk/imx/
1216 F:      include/soc/imx/
1217
1218 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1219 M:      Shawn Guo <shawnguo@kernel.org>
1220 M:      Sascha Hauer <kernel@pengutronix.de>
1221 R:      Stefan Agner <stefan@agner.ch>
1222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223 S:      Maintained
1224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1225 F:      arch/arm/mach-imx/*vf610*
1226 F:      arch/arm/boot/dts/vf*
1227
1228 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1229 M:      Lennert Buytenhek <kernel@wantstofly.org>
1230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1231 S:      Maintained
1232
1233 ARM/GUMSTIX MACHINE SUPPORT
1234 M:      Steve Sakoman <sakoman@gmail.com>
1235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 S:      Maintained
1237
1238 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1239 M:      Philipp Zabel <philipp.zabel@gmail.com>
1240 M:      Paul Parsons <lost.distance@yahoo.com>
1241 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1242 S:      Maintained
1243 F:      arch/arm/mach-pxa/hx4700.c
1244 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1245 F:      sound/soc/pxa/hx4700.c
1246
1247 ARM/HISILICON SOC SUPPORT
1248 M:      Wei Xu <xuwei5@hisilicon.com>
1249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250 W:      http://www.hisilicon.com
1251 S:      Supported
1252 T:      git git://github.com/hisilicon/linux-hisi.git
1253 F:      arch/arm/mach-hisi/
1254 F:      arch/arm/boot/dts/hi3*
1255 F:      arch/arm/boot/dts/hip*
1256 F:      arch/arm/boot/dts/hisi*
1257 F:      arch/arm64/boot/dts/hisilicon/
1258
1259 ARM/HP JORNADA 7XX MACHINE SUPPORT
1260 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1261 W:      www.jlime.com
1262 S:      Maintained
1263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1264 F:      arch/arm/mach-sa1100/jornada720.c
1265 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1266
1267 ARM/IGEP MACHINE SUPPORT
1268 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1269 M:      Javier Martinez Canillas <javier@dowhile0.org>
1270 L:      linux-omap@vger.kernel.org
1271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1272 S:      Maintained
1273 F:      arch/arm/boot/dts/omap3-igep*
1274
1275 ARM/INCOME PXA270 SUPPORT
1276 M:      Marek Vasut <marek.vasut@gmail.com>
1277 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1278 S:      Maintained
1279 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1280
1281 ARM/INTEL IOP32X ARM ARCHITECTURE
1282 M:      Lennert Buytenhek <kernel@wantstofly.org>
1283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1284 S:      Maintained
1285
1286 ARM/INTEL IOP33X ARM ARCHITECTURE
1287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1288 S:      Orphan
1289
1290 ARM/INTEL IOP13XX ARM ARCHITECTURE
1291 M:      Lennert Buytenhek <kernel@wantstofly.org>
1292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1293 S:      Maintained
1294
1295 ARM/INTEL IQ81342EX MACHINE SUPPORT
1296 M:      Lennert Buytenhek <kernel@wantstofly.org>
1297 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1298 S:      Maintained
1299
1300 ARM/INTEL IXDP2850 MACHINE SUPPORT
1301 M:      Lennert Buytenhek <kernel@wantstofly.org>
1302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1303 S:      Maintained
1304
1305 ARM/INTEL IXP4XX ARM ARCHITECTURE
1306 M:      Imre Kaloz <kaloz@openwrt.org>
1307 M:      Krzysztof Halasa <khalasa@piap.pl>
1308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1309 S:      Maintained
1310 F:      arch/arm/mach-ixp4xx/
1311
1312 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1313 M:      Jonathan Cameron <jic23@cam.ac.uk>
1314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315 S:      Maintained
1316 F:      arch/arm/mach-pxa/stargate2.c
1317 F:      drivers/pcmcia/pxa2xx_stargate2.c
1318
1319 ARM/INTEL XSC3 (MANZANO) ARM CORE
1320 M:      Lennert Buytenhek <kernel@wantstofly.org>
1321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1322 S:      Maintained
1323
1324 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1325 M:      Lennert Buytenhek <kernel@wantstofly.org>
1326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1327 S:      Maintained
1328
1329 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1330 M:      Santosh Shilimkar <ssantosh@kernel.org>
1331 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1332 S:      Maintained
1333 F:      arch/arm/mach-keystone/
1334 F:      arch/arm/boot/dts/keystone-*
1335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1336
1337 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1338 M:      Santosh Shilimkar <ssantosh@kernel.org>
1339 L:      linux-kernel@vger.kernel.org
1340 S:      Maintained
1341 F:      drivers/clk/keystone/
1342
1343 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1344 M:      Santosh Shilimkar <ssantosh@kernel.org>
1345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1346 L:      linux-kernel@vger.kernel.org
1347 S:      Maintained
1348 F:      drivers/clocksource/timer-keystone.c
1349
1350 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1351 M:      Santosh Shilimkar <ssantosh@kernel.org>
1352 L:      linux-kernel@vger.kernel.org
1353 S:      Maintained
1354 F:      drivers/power/reset/keystone-reset.c
1355
1356 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1357 M:      Santosh Shilimkar <ssantosh@kernel.org>
1358 L:      linux-kernel@vger.kernel.org
1359 S:      Maintained
1360 F:      drivers/memory/*emif*
1361
1362 ARM/LG1K ARCHITECTURE
1363 M:      Chanho Min <chanho.min@lge.com>
1364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1365 S:      Maintained
1366 F:      arch/arm64/boot/dts/lg/
1367
1368 ARM/LOGICPD PXA270 MACHINE SUPPORT
1369 M:      Lennert Buytenhek <kernel@wantstofly.org>
1370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1371 S:      Maintained
1372
1373 ARM/LPC18XX ARCHITECTURE
1374 M:      Joachim Eastwood <manabian@gmail.com>
1375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1376 S:      Maintained
1377 F:      arch/arm/boot/dts/lpc43*
1378 F:      drivers/clk/nxp/clk-lpc18xx*
1379 F:      drivers/clocksource/time-lpc32xx.c
1380 F:      drivers/i2c/busses/i2c-lpc2k.c
1381 F:      drivers/memory/pl172.c
1382 F:      drivers/mtd/spi-nor/nxp-spifi.c
1383 F:      drivers/rtc/rtc-lpc24xx.c
1384 N:      lpc18xx
1385
1386 ARM/LPC32XX SOC SUPPORT
1387 M:      Vladimir Zapolskiy <vz@mleia.com>
1388 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1390 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1391 S:      Maintained
1392 F:      arch/arm/boot/dts/lpc32*
1393 F:      arch/arm/mach-lpc32xx/
1394 F:      drivers/i2c/busses/i2c-pnx.c
1395 F:      drivers/net/ethernet/nxp/lpc_eth.c
1396 F:      drivers/usb/host/ohci-nxp.c
1397 F:      drivers/watchdog/pnx4008_wdt.c
1398 N:      lpc32xx
1399
1400 ARM/MAGICIAN MACHINE SUPPORT
1401 M:      Philipp Zabel <philipp.zabel@gmail.com>
1402 S:      Maintained
1403
1404 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1405 M:      Jason Cooper <jason@lakedaemon.net>
1406 M:      Andrew Lunn <andrew@lunn.ch>
1407 M:      Gregory Clement <gregory.clement@free-electrons.com>
1408 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 S:      Maintained
1411 F:      arch/arm/mach-mvebu/
1412 F:      drivers/rtc/rtc-armada38x.c
1413 F:      arch/arm/boot/dts/armada*
1414 F:      arch/arm/boot/dts/kirkwood*
1415 F:      arch/arm64/boot/dts/marvell/armada*
1416 F:      drivers/cpufreq/mvebu-cpufreq.c
1417 F:      arch/arm/configs/mvebu_*_defconfig
1418
1419 ARM/Marvell Berlin SoC support
1420 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1422 S:      Maintained
1423 F:      arch/arm/mach-berlin/
1424 F:      arch/arm/boot/dts/berlin*
1425 F:      arch/arm64/boot/dts/marvell/berlin*
1426
1427
1428 ARM/Marvell Dove/MV78xx0/Orion SOC support
1429 M:      Jason Cooper <jason@lakedaemon.net>
1430 M:      Andrew Lunn <andrew@lunn.ch>
1431 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1432 M:      Gregory Clement <gregory.clement@free-electrons.com>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S:      Maintained
1435 F:      arch/arm/mach-dove/
1436 F:      arch/arm/mach-mv78xx0/
1437 F:      arch/arm/mach-orion5x/
1438 F:      arch/arm/plat-orion/
1439 F:      arch/arm/boot/dts/dove*
1440 F:      arch/arm/boot/dts/orion5x*
1441
1442
1443 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1444 M:      Alexander Clouter <alex@digriz.org.uk>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 W:      http://www.digriz.org.uk/ts78xx/kernel
1447 S:      Maintained
1448 F:      arch/arm/mach-orion5x/ts78xx-*
1449
1450 ARM/OXNAS platform support
1451 M:      Neil Armstrong <narmstrong@baylibre.com>
1452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1453 S:      Maintained
1454 F:      arch/arm/mach-oxnas/
1455 F:      arch/arm/boot/dts/oxnas*
1456 F:      arch/arm/boot/dts/wd-mbwe.dts
1457 N:      oxnas
1458
1459 ARM/Mediatek RTC DRIVER
1460 M:      Eddie Huang <eddie.huang@mediatek.com>
1461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1462 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1463 S:      Maintained
1464 F:      drivers/rtc/rtc-mt6397.c
1465
1466 ARM/Mediatek SoC support
1467 M:      Matthias Brugger <matthias.bgg@gmail.com>
1468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1469 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1470 S:      Maintained
1471 F:      arch/arm/boot/dts/mt6*
1472 F:      arch/arm/boot/dts/mt8*
1473 F:      arch/arm/mach-mediatek/
1474 N:      mtk
1475 K:      mediatek
1476
1477 ARM/Mediatek USB3 PHY DRIVER
1478 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1480 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1481 S:      Maintained
1482 F:      drivers/phy/phy-mt65xx-usb3.c
1483
1484 ARM/MICREL KS8695 ARCHITECTURE
1485 M:      Greg Ungerer <gerg@uclinux.org>
1486 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1487 F:      arch/arm/mach-ks8695/
1488 S:      Odd Fixes
1489
1490 ARM/MIOA701 MACHINE SUPPORT
1491 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1493 F:      arch/arm/mach-pxa/mioa701.c
1494 S:      Maintained
1495
1496 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1497 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1498 S:      Maintained
1499
1500 ARM/NOMADIK ARCHITECTURE
1501 M:      Alessandro Rubini <rubini@unipv.it>
1502 M:      Linus Walleij <linus.walleij@linaro.org>
1503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1504 S:      Maintained
1505 F:      arch/arm/mach-nomadik/
1506 F:      drivers/pinctrl/nomadik/
1507 F:      drivers/i2c/busses/i2c-nomadik.c
1508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1509
1510 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1511 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1512 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1513 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1514 S:      Supported
1515
1516 ARM/TOSA MACHINE SUPPORT
1517 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1518 M:      Dirk Opfer <dirk@opfer-online.de>
1519 S:      Maintained
1520
1521 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1522 M:      Marek Vasut <marek.vasut@gmail.com>
1523 L:      linux-arm-kernel@lists.infradead.org
1524 W:      http://hackndev.com
1525 S:      Maintained
1526 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1527 F:      arch/arm/mach-pxa/palmtx.c
1528 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1529 F:      arch/arm/mach-pxa/palmt5.c
1530 F:      arch/arm/mach-pxa/include/mach/palmld.h
1531 F:      arch/arm/mach-pxa/palmld.c
1532 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1533 F:      arch/arm/mach-pxa/palmte2.c
1534 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1535 F:      arch/arm/mach-pxa/palmtc.c
1536
1537 ARM/PALM TREO SUPPORT
1538 M:      Tomas Cech <sleep_walker@suse.com>
1539 L:      linux-arm-kernel@lists.infradead.org
1540 W:      http://hackndev.com
1541 S:      Maintained
1542 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1543 F:      arch/arm/mach-pxa/palmtreo.c
1544
1545 ARM/PALMZ72 SUPPORT
1546 M:      Sergey Lapin <slapin@ossfans.org>
1547 L:      linux-arm-kernel@lists.infradead.org
1548 W:      http://hackndev.com
1549 S:      Maintained
1550 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1551 F:      arch/arm/mach-pxa/palmz72.c
1552
1553 ARM/PLEB SUPPORT
1554 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1555 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1556 S:      Maintained
1557
1558 ARM/PT DIGITAL BOARD PORT
1559 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1561 W:      http://www.armlinux.org.uk/
1562 S:      Maintained
1563
1564 ARM/QUALCOMM SUPPORT
1565 M:      Andy Gross <andy.gross@linaro.org>
1566 M:      David Brown <david.brown@linaro.org>
1567 L:      linux-arm-msm@vger.kernel.org
1568 L:      linux-soc@vger.kernel.org
1569 S:      Maintained
1570 F:      Documentation/devicetree/bindings/soc/qcom/
1571 F:      arch/arm/boot/dts/qcom-*.dts
1572 F:      arch/arm/boot/dts/qcom-*.dtsi
1573 F:      arch/arm/mach-qcom/
1574 F:      arch/arm64/boot/dts/qcom/*
1575 F:      drivers/i2c/busses/i2c-qup.c
1576 F:      drivers/clk/qcom/
1577 F:      drivers/soc/qcom/
1578 F:      drivers/spi/spi-qup.c
1579 F:      drivers/tty/serial/msm_serial.h
1580 F:      drivers/tty/serial/msm_serial.c
1581 F:      drivers/*/pm8???-*
1582 F:      drivers/mfd/ssbi.c
1583 F:      drivers/firmware/qcom_scm.c
1584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1585
1586 ARM/RADISYS ENP2611 MACHINE SUPPORT
1587 M:      Lennert Buytenhek <kernel@wantstofly.org>
1588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1589 S:      Maintained
1590
1591 ARM/RENESAS ARM64 ARCHITECTURE
1592 M:      Simon Horman <horms@verge.net.au>
1593 M:      Magnus Damm <magnus.damm@gmail.com>
1594 L:      linux-renesas-soc@vger.kernel.org
1595 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1597 S:      Supported
1598 F:      arch/arm64/boot/dts/renesas/
1599 F:      drivers/soc/renesas/
1600 F:      include/linux/soc/renesas/
1601
1602 ARM/RISCPC ARCHITECTURE
1603 M:      Russell King <linux@armlinux.org.uk>
1604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1605 W:      http://www.armlinux.org.uk/
1606 S:      Maintained
1607 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1608 F:      arch/arm/include/asm/hardware/ioc.h
1609 F:      arch/arm/include/asm/hardware/iomd.h
1610 F:      arch/arm/include/asm/hardware/memc.h
1611 F:      arch/arm/mach-rpc/
1612 F:      drivers/net/ethernet/8390/etherh.c
1613 F:      drivers/net/ethernet/i825xx/ether1*
1614 F:      drivers/net/ethernet/seeq/ether3*
1615 F:      drivers/scsi/arm/
1616
1617 ARM/Rockchip SoC support
1618 M:      Heiko Stuebner <heiko@sntech.de>
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 L:      linux-rockchip@lists.infradead.org
1621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1622 S:      Maintained
1623 F:      arch/arm/boot/dts/rk3*
1624 F:      arch/arm/mach-rockchip/
1625 F:      drivers/clk/rockchip/
1626 F:      drivers/i2c/busses/i2c-rk3x.c
1627 F:      drivers/*/*rockchip*
1628 F:      drivers/*/*/*rockchip*
1629 F:      sound/soc/rockchip/
1630 N:      rockchip
1631
1632 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1633 M:      Kukjin Kim <kgene@kernel.org>
1634 M:      Krzysztof Kozlowski <krzk@kernel.org>
1635 R:      Javier Martinez Canillas <javier@osg.samsung.com>
1636 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1637 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1638 S:      Maintained
1639 F:      arch/arm/boot/dts/s3c*
1640 F:      arch/arm/boot/dts/s5p*
1641 F:      arch/arm/boot/dts/samsung*
1642 F:      arch/arm/boot/dts/exynos*
1643 F:      arch/arm64/boot/dts/exynos/
1644 F:      arch/arm/plat-samsung/
1645 F:      arch/arm/mach-s3c24*/
1646 F:      arch/arm/mach-s3c64xx/
1647 F:      arch/arm/mach-s5p*/
1648 F:      arch/arm/mach-exynos*/
1649 F:      drivers/*/*s3c24*
1650 F:      drivers/*/*/*s3c24*
1651 F:      drivers/*/*s3c64xx*
1652 F:      drivers/*/*s5pv210*
1653 F:      drivers/memory/samsung/*
1654 F:      drivers/soc/samsung/*
1655 F:      Documentation/arm/Samsung/
1656 F:      Documentation/devicetree/bindings/arm/samsung/
1657 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1658 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1659 N:      exynos
1660
1661 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1662 M:      Kyungmin Park <kyungmin.park@samsung.com>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      arch/arm/mach-s5pv210/
1666
1667 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1668 M:      Kyungmin Park <kyungmin.park@samsung.com>
1669 M:      Kamil Debski <kamil@wypas.org>
1670 M:      Andrzej Hajda <a.hajda@samsung.com>
1671 L:      linux-arm-kernel@lists.infradead.org
1672 L:      linux-media@vger.kernel.org
1673 S:      Maintained
1674 F:      drivers/media/platform/s5p-g2d/
1675
1676 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1677 M:      Kyungmin Park <kyungmin.park@samsung.com>
1678 M:      Kamil Debski <kamil@wypas.org>
1679 M:      Jeongtae Park <jtp.park@samsung.com>
1680 M:      Andrzej Hajda <a.hajda@samsung.com>
1681 L:      linux-arm-kernel@lists.infradead.org
1682 L:      linux-media@vger.kernel.org
1683 S:      Maintained
1684 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1685 F:      drivers/media/platform/s5p-mfc/
1686
1687 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1688 M:      Kyungmin Park <kyungmin.park@samsung.com>
1689 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1690 L:      linux-arm-kernel@lists.infradead.org
1691 L:      linux-media@vger.kernel.org
1692 S:      Maintained
1693 F:      drivers/media/platform/s5p-tv/
1694
1695 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1696 M:      Kyungmin Park <kyungmin.park@samsung.com>
1697 L:      linux-arm-kernel@lists.infradead.org
1698 L:      linux-media@vger.kernel.org
1699 S:      Maintained
1700 F:      drivers/staging/media/platform/s5p-cec/
1701
1702 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1703 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1704 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1705 L:      linux-arm-kernel@lists.infradead.org
1706 L:      linux-media@vger.kernel.org
1707 S:      Maintained
1708 F:      drivers/media/platform/s5p-jpeg/
1709
1710 ARM/SHMOBILE ARM ARCHITECTURE
1711 M:      Simon Horman <horms@verge.net.au>
1712 M:      Magnus Damm <magnus.damm@gmail.com>
1713 L:      linux-renesas-soc@vger.kernel.org
1714 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1716 S:      Supported
1717 F:      arch/arm/boot/dts/emev2*
1718 F:      arch/arm/boot/dts/r7s*
1719 F:      arch/arm/boot/dts/r8a*
1720 F:      arch/arm/boot/dts/sh*
1721 F:      arch/arm/configs/shmobile_defconfig
1722 F:      arch/arm/include/debug/renesas-scif.S
1723 F:      arch/arm/mach-shmobile/
1724 F:      drivers/soc/renesas/
1725 F:      include/linux/soc/renesas/
1726
1727 ARM/SOCFPGA ARCHITECTURE
1728 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1729 S:      Maintained
1730 F:      arch/arm/mach-socfpga/
1731 F:      arch/arm/boot/dts/socfpga*
1732 F:      arch/arm/configs/socfpga_defconfig
1733 F:      arch/arm64/boot/dts/altera/
1734 W:      http://www.rocketboards.org
1735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1736
1737 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1738 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1739 S:      Maintained
1740 F:      drivers/clk/socfpga/
1741
1742 ARM/SOCFPGA EDAC SUPPORT
1743 M:      Thor Thayer <tthayer@opensource.altera.com>
1744 S:      Maintained
1745 F:      drivers/edac/altera_edac.
1746
1747 ARM/STI ARCHITECTURE
1748 M:      Patrice Chotard <patrice.chotard@st.com>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 L:      kernel@stlinux.com
1751 W:      http://www.stlinux.com
1752 S:      Maintained
1753 F:      arch/arm/mach-sti/
1754 F:      arch/arm/boot/dts/sti*
1755 F:      drivers/char/hw_random/st-rng.c
1756 F:      drivers/clocksource/arm_global_timer.c
1757 F:      drivers/clocksource/clksrc_st_lpc.c
1758 F:      drivers/cpufreq/sti-cpufreq.c
1759 F:      drivers/i2c/busses/i2c-st.c
1760 F:      drivers/media/rc/st_rc.c
1761 F:      drivers/media/platform/sti/c8sectpfe/
1762 F:      drivers/mmc/host/sdhci-st.c
1763 F:      drivers/phy/phy-miphy28lp.c
1764 F:      drivers/phy/phy-miphy365x.c
1765 F:      drivers/phy/phy-stih407-usb.c
1766 F:      drivers/phy/phy-stih41x-usb.c
1767 F:      drivers/pinctrl/pinctrl-st.c
1768 F:      drivers/remoteproc/st_remoteproc.c
1769 F:      drivers/reset/sti/
1770 F:      drivers/rtc/rtc-st-lpc.c
1771 F:      drivers/tty/serial/st-asc.c
1772 F:      drivers/usb/dwc3/dwc3-st.c
1773 F:      drivers/usb/host/ehci-st.c
1774 F:      drivers/usb/host/ohci-st.c
1775 F:      drivers/watchdog/st_lpc_wdt.c
1776 F:      drivers/ata/ahci_st.c
1777
1778 ARM/STM32 ARCHITECTURE
1779 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1780 M:      Alexandre Torgue <alexandre.torgue@st.com>
1781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 S:      Maintained
1783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1784 N:      stm32
1785 F:      drivers/clocksource/armv7m_systick.c
1786
1787 ARM/TANGO ARCHITECTURE
1788 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1789 L:      linux-arm-kernel@lists.infradead.org
1790 S:      Maintained
1791 N:      tango
1792
1793 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1794 M:      Lennert Buytenhek <kernel@wantstofly.org>
1795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1796 S:      Maintained
1797
1798 ARM/TETON BGA MACHINE SUPPORT
1799 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Maintained
1802
1803 ARM/THECUS N2100 MACHINE SUPPORT
1804 M:      Lennert Buytenhek <kernel@wantstofly.org>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 S:      Maintained
1807
1808 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1809 M:      Wan ZongShun <mcuos.com@gmail.com>
1810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1811 W:      http://www.mcuos.com
1812 S:      Maintained
1813 F:      arch/arm/mach-w90x900/
1814 F:      drivers/input/keyboard/w90p910_keypad.c
1815 F:      drivers/input/touchscreen/w90p910_ts.c
1816 F:      drivers/watchdog/nuc900_wdt.c
1817 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1818 F:      drivers/mtd/nand/nuc900_nand.c
1819 F:      drivers/rtc/rtc-nuc900.c
1820 F:      drivers/spi/spi-nuc900.c
1821 F:      drivers/usb/host/ehci-w90x900.c
1822 F:      drivers/video/fbdev/nuc900fb.c
1823
1824 ARM/U300 MACHINE SUPPORT
1825 M:      Linus Walleij <linus.walleij@linaro.org>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Supported
1828 F:      arch/arm/mach-u300/
1829 F:      drivers/clocksource/timer-u300.c
1830 F:      drivers/i2c/busses/i2c-stu300.c
1831 F:      drivers/rtc/rtc-coh901331.c
1832 F:      drivers/watchdog/coh901327_wdt.c
1833 F:      drivers/dma/coh901318*
1834 F:      drivers/mfd/ab3100*
1835 F:      drivers/rtc/rtc-ab3100.c
1836 F:      drivers/rtc/rtc-coh901331.c
1837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1838
1839 ARM/UNIPHIER ARCHITECTURE
1840 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1843 S:      Maintained
1844 F:      arch/arm/boot/dts/uniphier*
1845 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1846 F:      arch/arm/mach-uniphier/
1847 F:      arch/arm/mm/cache-uniphier.c
1848 F:      arch/arm64/boot/dts/socionext/
1849 F:      drivers/bus/uniphier-system-bus.c
1850 F:      drivers/clk/uniphier/
1851 F:      drivers/i2c/busses/i2c-uniphier*
1852 F:      drivers/pinctrl/uniphier/
1853 F:      drivers/tty/serial/8250/8250_uniphier.c
1854 N:      uniphier
1855
1856 ARM/Ux500 ARM ARCHITECTURE
1857 M:      Linus Walleij <linus.walleij@linaro.org>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 S:      Maintained
1860 F:      arch/arm/mach-ux500/
1861 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1862 F:      drivers/dma/ste_dma40*
1863 F:      drivers/hwspinlock/u8500_hsem.c
1864 F:      drivers/mfd/abx500*
1865 F:      drivers/mfd/ab8500*
1866 F:      drivers/mfd/dbx500*
1867 F:      drivers/mfd/db8500*
1868 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1869 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1870 F:      drivers/rtc/rtc-ab8500.c
1871 F:      drivers/rtc/rtc-pl031.c
1872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1873
1874 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1875 M:      Ulf Hansson <ulf.hansson@linaro.org>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 T:      git git://git.linaro.org/people/ulfh/clk.git
1878 S:      Maintained
1879 F:      drivers/clk/ux500/
1880
1881 ARM/VERSATILE EXPRESS PLATFORM
1882 M:      Liviu Dudau <liviu.dudau@arm.com>
1883 M:      Sudeep Holla <sudeep.holla@arm.com>
1884 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      arch/arm/boot/dts/vexpress*
1888 F:      arch/arm64/boot/dts/arm/
1889 F:      arch/arm/mach-vexpress/
1890 F:      */*/vexpress*
1891 F:      */*/*/vexpress*
1892 F:      drivers/clk/versatile/clk-vexpress-osc.c
1893 F:      drivers/clocksource/versatile.c
1894 N:      mps2
1895
1896 ARM/VFP SUPPORT
1897 M:      Russell King <linux@armlinux.org.uk>
1898 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1899 W:      http://www.armlinux.org.uk/
1900 S:      Maintained
1901 F:      arch/arm/vfp/
1902
1903 ARM/VOIPAC PXA270 SUPPORT
1904 M:      Marek Vasut <marek.vasut@gmail.com>
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 F:      arch/arm/mach-pxa/vpac270.c
1908 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1909
1910 ARM/VT8500 ARM ARCHITECTURE
1911 M:      Tony Prisk <linux@prisktech.co.nz>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 S:      Maintained
1914 F:      arch/arm/mach-vt8500/
1915 F:      drivers/clocksource/vt8500_timer.c
1916 F:      drivers/i2c/busses/i2c-wmt.c
1917 F:      drivers/mmc/host/wmt-sdmmc.c
1918 F:      drivers/pwm/pwm-vt8500.c
1919 F:      drivers/rtc/rtc-vt8500.c
1920 F:      drivers/tty/serial/vt8500_serial.c
1921 F:      drivers/usb/host/ehci-platform.c
1922 F:      drivers/usb/host/uhci-platform.c
1923 F:      drivers/video/fbdev/vt8500lcdfb.*
1924 F:      drivers/video/fbdev/wm8505fb*
1925 F:      drivers/video/fbdev/wmt_ge_rops.*
1926
1927 ARM/ZIPIT Z2 SUPPORT
1928 M:      Marek Vasut <marek.vasut@gmail.com>
1929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1930 S:      Maintained
1931 F:      arch/arm/mach-pxa/z2.c
1932 F:      arch/arm/mach-pxa/include/mach/z2.h
1933
1934 ARM/ZTE ARCHITECTURE
1935 M:      Jun Nie <jun.nie@linaro.org>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      arch/arm/mach-zx/
1939 F:      drivers/clk/zte/
1940 F:      Documentation/devicetree/bindings/arm/zte.txt
1941 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1942
1943 ARM/ZYNQ ARCHITECTURE
1944 M:      Michal Simek <michal.simek@xilinx.com>
1945 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 W:      http://wiki.xilinx.com
1948 T:      git https://github.com/Xilinx/linux-xlnx.git
1949 S:      Supported
1950 F:      arch/arm/mach-zynq/
1951 F:      drivers/cpuidle/cpuidle-zynq.c
1952 F:      drivers/block/xsysace.c
1953 N:      zynq
1954 N:      xilinx
1955 F:      drivers/clocksource/cadence_ttc_timer.c
1956 F:      drivers/i2c/busses/i2c-cadence.c
1957 F:      drivers/mmc/host/sdhci-of-arasan.c
1958 F:      drivers/edac/synopsys_edac.c
1959
1960 ARM SMMU DRIVERS
1961 M:      Will Deacon <will.deacon@arm.com>
1962 R:      Robin Murphy <robin.murphy@arm.com>
1963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1964 S:      Maintained
1965 F:      drivers/iommu/arm-smmu.c
1966 F:      drivers/iommu/arm-smmu-v3.c
1967 F:      drivers/iommu/io-pgtable-arm.c
1968 F:      drivers/iommu/io-pgtable-arm-v7s.c
1969
1970 ARM64 PORT (AARCH64 ARCHITECTURE)
1971 M:      Catalin Marinas <catalin.marinas@arm.com>
1972 M:      Will Deacon <will.deacon@arm.com>
1973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1975 S:      Maintained
1976 F:      arch/arm64/
1977 F:      Documentation/arm64/
1978
1979 AS3645A LED FLASH CONTROLLER DRIVER
1980 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1981 L:      linux-media@vger.kernel.org
1982 T:      git git://linuxtv.org/media_tree.git
1983 S:      Maintained
1984 F:      drivers/media/i2c/as3645a.c
1985 F:      include/media/i2c/as3645a.h
1986
1987 ASC7621 HARDWARE MONITOR DRIVER
1988 M:      George Joseph <george.joseph@fairview5.com>
1989 L:      linux-hwmon@vger.kernel.org
1990 S:      Maintained
1991 F:      Documentation/hwmon/asc7621
1992 F:      drivers/hwmon/asc7621.c
1993
1994 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1995 M:      Corentin Chary <corentin.chary@gmail.com>
1996 L:      acpi4asus-user@lists.sourceforge.net
1997 L:      platform-driver-x86@vger.kernel.org
1998 W:      http://acpi4asus.sf.net
1999 S:      Maintained
2000 F:      drivers/platform/x86/asus*.c
2001 F:      drivers/platform/x86/eeepc*.c
2002
2003 ASUS WIRELESS RADIO CONTROL DRIVER
2004 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2005 L:      platform-driver-x86@vger.kernel.org
2006 S:      Maintained
2007 F:      drivers/platform/x86/asus-wireless.c
2008
2009 ASYMMETRIC KEYS
2010 M:      David Howells <dhowells@redhat.com>
2011 L:      keyrings@vger.kernel.org
2012 S:      Maintained
2013 F:      Documentation/crypto/asymmetric-keys.txt
2014 F:      include/linux/verification.h
2015 F:      include/crypto/public_key.h
2016 F:      include/crypto/pkcs7.h
2017 F:      crypto/asymmetric_keys/
2018
2019 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2020 R:      Dan Williams <dan.j.williams@intel.com>
2021 W:      http://sourceforge.net/projects/xscaleiop
2022 S:      Odd fixes
2023 F:      Documentation/crypto/async-tx-api.txt
2024 F:      crypto/async_tx/
2025 F:      drivers/dma/
2026 F:      include/linux/dmaengine.h
2027 F:      include/linux/async_tx.h
2028
2029 AT24 EEPROM DRIVER
2030 M:      Wolfram Sang <wsa@the-dreams.de>
2031 L:      linux-i2c@vger.kernel.org
2032 S:      Maintained
2033 F:      drivers/misc/eeprom/at24.c
2034 F:      include/linux/platform_data/at24.h
2035
2036 ATA OVER ETHERNET (AOE) DRIVER
2037 M:      "Ed L. Cashin" <ed.cashin@acm.org>
2038 W:      http://www.openaoe.org/
2039 S:      Supported
2040 F:      Documentation/aoe/
2041 F:      drivers/block/aoe/
2042
2043 ATHEROS 71XX/9XXX GPIO DRIVER
2044 M:      Alban Bedel <albeu@free.fr>
2045 W:      https://github.com/AlbanBedel/linux
2046 T:      git git://github.com/AlbanBedel/linux
2047 S:      Maintained
2048 F:      drivers/gpio/gpio-ath79.c
2049 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2050
2051 ATHEROS ATH GENERIC UTILITIES
2052 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2053 L:      linux-wireless@vger.kernel.org
2054 S:      Supported
2055 F:      drivers/net/wireless/ath/*
2056
2057 ATHEROS ATH5K WIRELESS DRIVER
2058 M:      Jiri Slaby <jirislaby@gmail.com>
2059 M:      Nick Kossifidis <mickflemm@gmail.com>
2060 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
2061 L:      linux-wireless@vger.kernel.org
2062 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2063 S:      Maintained
2064 F:      drivers/net/wireless/ath/ath5k/
2065
2066 ATHEROS ATH6KL WIRELESS DRIVER
2067 M:      Kalle Valo <kvalo@qca.qualcomm.com>
2068 L:      linux-wireless@vger.kernel.org
2069 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2071 S:      Supported
2072 F:      drivers/net/wireless/ath/ath6kl/
2073
2074 WILOCITY WIL6210 WIRELESS DRIVER
2075 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2076 L:      linux-wireless@vger.kernel.org
2077 L:      wil6210@qca.qualcomm.com
2078 S:      Supported
2079 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2080 F:      drivers/net/wireless/ath/wil6210/
2081 F:      include/uapi/linux/wil6210_uapi.h
2082
2083 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2084 M:      Christian Lamparter <chunkeey@googlemail.com>
2085 L:      linux-wireless@vger.kernel.org
2086 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2087 S:      Maintained
2088 F:      drivers/net/wireless/ath/carl9170/
2089
2090 ATK0110 HWMON DRIVER
2091 M:      Luca Tettamanti <kronos.it@gmail.com>
2092 L:      linux-hwmon@vger.kernel.org
2093 S:      Maintained
2094 F:      drivers/hwmon/asus_atk0110.c
2095
2096 ATI_REMOTE2 DRIVER
2097 M:      Ville Syrjala <syrjala@sci.fi>
2098 S:      Maintained
2099 F:      drivers/input/misc/ati_remote2.c
2100
2101 ATLX ETHERNET DRIVERS
2102 M:      Jay Cliburn <jcliburn@gmail.com>
2103 M:      Chris Snook <chris.snook@gmail.com>
2104 L:      netdev@vger.kernel.org
2105 W:      http://sourceforge.net/projects/atl1
2106 W:      http://atl1.sourceforge.net
2107 S:      Maintained
2108 F:      drivers/net/ethernet/atheros/
2109
2110 ATM
2111 M:      Chas Williams <3chas3@gmail.com>
2112 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2113 L:      netdev@vger.kernel.org
2114 W:      http://linux-atm.sourceforge.net
2115 S:      Maintained
2116 F:      drivers/atm/
2117 F:      include/linux/atm*
2118 F:      include/uapi/linux/atm*
2119
2120 ATMEL AT91 / AT32 MCI DRIVER
2121 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2122 S:      Maintained
2123 F:      drivers/mmc/host/atmel-mci.c
2124
2125 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2126 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2127 S:      Supported
2128 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2129
2130 ATMEL SAMA5D2 ADC DRIVER
2131 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2132 L:      linux-iio@vger.kernel.org
2133 S:      Supported
2134 F:      drivers/iio/adc/at91-sama5d2_adc.c
2135
2136 ATMEL Audio ALSA driver
2137 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2138 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2139 S:      Supported
2140 F:      sound/soc/atmel
2141
2142 ATMEL DMA DRIVER
2143 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2145 S:      Supported
2146 F:      drivers/dma/at_hdmac.c
2147 F:      drivers/dma/at_hdmac_regs.h
2148 F:      include/linux/platform_data/dma-atmel.h
2149
2150 ATMEL XDMA DRIVER
2151 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2152 L:      linux-arm-kernel@lists.infradead.org
2153 L:      dmaengine@vger.kernel.org
2154 S:      Supported
2155 F:      drivers/dma/at_xdmac.c
2156
2157 ATMEL I2C DRIVER
2158 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2159 L:      linux-i2c@vger.kernel.org
2160 S:      Supported
2161 F:      drivers/i2c/busses/i2c-at91.c
2162
2163 ATMEL ISI DRIVER
2164 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2165 L:      linux-media@vger.kernel.org
2166 S:      Supported
2167 F:      drivers/media/platform/soc_camera/atmel-isi.c
2168 F:      include/media/atmel-isi.h
2169
2170 ATMEL LCDFB DRIVER
2171 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2172 L:      linux-fbdev@vger.kernel.org
2173 S:      Maintained
2174 F:      drivers/video/fbdev/atmel_lcdfb.c
2175 F:      include/video/atmel_lcdc.h
2176
2177 ATMEL MACB ETHERNET DRIVER
2178 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2179 S:      Supported
2180 F:      drivers/net/ethernet/cadence/
2181
2182 ATMEL NAND DRIVER
2183 M:      Wenyou Yang <wenyou.yang@atmel.com>
2184 M:      Josh Wu <rainyfeeling@outlook.com>
2185 L:      linux-mtd@lists.infradead.org
2186 S:      Supported
2187 F:      drivers/mtd/nand/atmel_nand*
2188
2189 ATMEL SDMMC DRIVER
2190 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2191 L:      linux-mmc@vger.kernel.org
2192 S:      Supported
2193 F:      drivers/mmc/host/sdhci-of-at91.c
2194
2195 ATMEL SPI DRIVER
2196 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2197 S:      Supported
2198 F:      drivers/spi/spi-atmel.*
2199
2200 ATMEL SSC DRIVER
2201 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Supported
2204 F:      drivers/misc/atmel-ssc.c
2205 F:      include/linux/atmel-ssc.h
2206
2207 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2208 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2210 S:      Supported
2211 F:      drivers/misc/atmel_tclib.c
2212 F:      drivers/clocksource/tcb_clksrc.c
2213
2214 ATMEL USBA UDC DRIVER
2215 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 S:      Supported
2218 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2219
2220 ATMEL WIRELESS DRIVER
2221 M:      Simon Kelley <simon@thekelleys.org.uk>
2222 L:      linux-wireless@vger.kernel.org
2223 W:      http://www.thekelleys.org.uk/atmel
2224 W:      http://atmelwlandriver.sourceforge.net/
2225 S:      Maintained
2226 F:      drivers/net/wireless/atmel/atmel*
2227
2228 ATMEL MAXTOUCH DRIVER
2229 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2230 T:      git git://github.com/atmel-maxtouch/linux.git
2231 S:      Supported
2232 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2233 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2234 F:      include/linux/platform_data/atmel_mxt_ts.h
2235
2236 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2237 M:      Bradley Grove <linuxdrivers@attotech.com>
2238 L:      linux-scsi@vger.kernel.org
2239 W:      http://www.attotech.com
2240 S:      Supported
2241 F:      drivers/scsi/esas2r
2242
2243 ATUSB IEEE 802.15.4 RADIO DRIVER
2244 M:      Stefan Schmidt <stefan@osg.samsung.com>
2245 L:      linux-wpan@vger.kernel.org
2246 S:      Maintained
2247 F:      drivers/net/ieee802154/atusb.c
2248 F:      drivers/net/ieee802154/atusb.h
2249 F:      drivers/net/ieee802154/at86rf230.h
2250
2251 AUDIT SUBSYSTEM
2252 M:      Paul Moore <paul@paul-moore.com>
2253 M:      Eric Paris <eparis@redhat.com>
2254 L:      linux-audit@redhat.com (moderated for non-subscribers)
2255 W:      http://people.redhat.com/sgrubb/audit/
2256 T:      git git://git.infradead.org/users/pcmoore/audit
2257 S:      Maintained
2258 F:      include/linux/audit.h
2259 F:      include/uapi/linux/audit.h
2260 F:      kernel/audit*
2261
2262 AUXILIARY DISPLAY DRIVERS
2263 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2264 W:      http://miguelojeda.es/auxdisplay.htm
2265 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2266 S:      Maintained
2267 F:      drivers/auxdisplay/
2268 F:      include/linux/cfag12864b.h
2269
2270 AVR32 ARCHITECTURE
2271 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2272 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2273 W:      http://www.atmel.com/products/AVR32/
2274 W:      http://mirror.egtvedt.no/avr32linux.org/
2275 W:      http://avrfreaks.net/
2276 S:      Maintained
2277 F:      arch/avr32/
2278
2279 AVR32/AT32AP MACHINE SUPPORT
2280 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2281 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2282 S:      Maintained
2283 F:      arch/avr32/mach-at32ap/
2284
2285 AX.25 NETWORK LAYER
2286 M:      Ralf Baechle <ralf@linux-mips.org>
2287 L:      linux-hams@vger.kernel.org
2288 W:      http://www.linux-ax25.org/
2289 S:      Maintained
2290 F:      include/uapi/linux/ax25.h
2291 F:      include/net/ax25.h
2292 F:      net/ax25/
2293
2294 AZ6007 DVB DRIVER
2295 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2296 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2297 L:      linux-media@vger.kernel.org
2298 W:      https://linuxtv.org
2299 T:      git git://linuxtv.org/media_tree.git
2300 S:      Maintained
2301 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2302
2303 AZTECH FM RADIO RECEIVER DRIVER
2304 M:      Hans Verkuil <hverkuil@xs4all.nl>
2305 L:      linux-media@vger.kernel.org
2306 T:      git git://linuxtv.org/media_tree.git
2307 W:      https://linuxtv.org
2308 S:      Maintained
2309 F:      drivers/media/radio/radio-aztech*
2310
2311 B43 WIRELESS DRIVER
2312 L:      linux-wireless@vger.kernel.org
2313 L:      b43-dev@lists.infradead.org
2314 W:      http://wireless.kernel.org/en/users/Drivers/b43
2315 S:      Odd Fixes
2316 F:      drivers/net/wireless/broadcom/b43/
2317
2318 B43LEGACY WIRELESS DRIVER
2319 M:      Larry Finger <Larry.Finger@lwfinger.net>
2320 L:      linux-wireless@vger.kernel.org
2321 L:      b43-dev@lists.infradead.org
2322 W:      http://wireless.kernel.org/en/users/Drivers/b43
2323 S:      Maintained
2324 F:      drivers/net/wireless/broadcom/b43legacy/
2325
2326 BACKLIGHT CLASS/SUBSYSTEM
2327 M:      Jingoo Han <jingoohan1@gmail.com>
2328 M:      Lee Jones <lee.jones@linaro.org>
2329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2330 S:      Maintained
2331 F:      drivers/video/backlight/
2332 F:      include/linux/backlight.h
2333
2334 BATMAN ADVANCED
2335 M:      Marek Lindner <mareklindner@neomailbox.ch>
2336 M:      Simon Wunderlich <sw@simonwunderlich.de>
2337 M:      Antonio Quartulli <a@unstable.cc>
2338 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2339 W:      https://www.open-mesh.org/
2340 Q:      https://patchwork.open-mesh.org/project/batman/list/
2341 S:      Maintained
2342 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2343 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2344 F:      Documentation/networking/batman-adv.txt
2345 F:      include/uapi/linux/batman_adv.h
2346 F:      net/batman-adv/
2347
2348 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2349 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2350 L:      linux-hams@vger.kernel.org
2351 W:      http://www.baycom.org/~tom/ham/ham.html
2352 S:      Maintained
2353 F:      drivers/net/hamradio/baycom*
2354
2355 BCACHE (BLOCK LAYER CACHE)
2356 M:      Kent Overstreet <kent.overstreet@gmail.com>
2357 L:      linux-bcache@vger.kernel.org
2358 W:      http://bcache.evilpiepirate.org
2359 S:      Orphan
2360 F:      drivers/md/bcache/
2361
2362 BDISP ST MEDIA DRIVER
2363 M:      Fabien Dessenne <fabien.dessenne@st.com>
2364 L:      linux-media@vger.kernel.org
2365 T:      git git://linuxtv.org/media_tree.git
2366 W:      https://linuxtv.org
2367 S:      Supported
2368 F:      drivers/media/platform/sti/bdisp
2369
2370 BEFS FILE SYSTEM
2371 M:      Luis de Bethencourt <luisbg@osg.samsung.com>
2372 M:      Salah Triki <salah.triki@gmail.com>
2373 S:      Maintained
2374 T:      git git://github.com/luisbg/linux-befs.git
2375 F:      Documentation/filesystems/befs.txt
2376 F:      fs/befs/
2377
2378 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2379 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2380 L:      netdev@vger.kernel.org
2381 S:      Maintained
2382 F:      drivers/net/ethernet/ec_bhf.c
2383
2384 BFS FILE SYSTEM
2385 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2386 S:      Maintained
2387 F:      Documentation/filesystems/bfs.txt
2388 F:      fs/bfs/
2389 F:      include/uapi/linux/bfs_fs.h
2390
2391 BLACKFIN ARCHITECTURE
2392 M:      Steven Miao <realmz6@gmail.com>
2393 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2394 T:      git git://git.code.sf.net/p/adi-linux/code
2395 W:      http://blackfin.uclinux.org
2396 S:      Supported
2397 F:      arch/blackfin/
2398
2399 BLACKFIN EMAC DRIVER
2400 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2401 W:      http://blackfin.uclinux.org
2402 S:      Supported
2403 F:      drivers/net/ethernet/adi/
2404
2405 BLACKFIN RTC DRIVER
2406 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2407 W:      http://blackfin.uclinux.org
2408 S:      Supported
2409 F:      drivers/rtc/rtc-bfin.c
2410
2411 BLACKFIN SDH DRIVER
2412 M:      Sonic Zhang <sonic.zhang@analog.com>
2413 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2414 W:      http://blackfin.uclinux.org
2415 S:      Supported
2416 F:      drivers/mmc/host/bfin_sdh.c
2417
2418 BLACKFIN SERIAL DRIVER
2419 M:      Sonic Zhang <sonic.zhang@analog.com>
2420 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2421 W:      http://blackfin.uclinux.org
2422 S:      Supported
2423 F:      drivers/tty/serial/bfin_uart.c
2424
2425 BLACKFIN WATCHDOG DRIVER
2426 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2427 W:      http://blackfin.uclinux.org
2428 S:      Supported
2429 F:      drivers/watchdog/bfin_wdt.c
2430
2431 BLACKFIN I2C TWI DRIVER
2432 M:      Sonic Zhang <sonic.zhang@analog.com>
2433 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2434 W:      http://blackfin.uclinux.org/
2435 S:      Supported
2436 F:      drivers/i2c/busses/i2c-bfin-twi.c
2437
2438 BLACKFIN MEDIA DRIVER
2439 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2440 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2441 W:      http://blackfin.uclinux.org/
2442 S:      Supported
2443 F:      drivers/media/platform/blackfin/
2444 F:      drivers/media/i2c/adv7183*
2445 F:      drivers/media/i2c/vs6624*
2446
2447 BLINKM RGB LED DRIVER
2448 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2449 S:      Maintained
2450 F:      drivers/leds/leds-blinkm.c
2451
2452 BLOCK LAYER
2453 M:      Jens Axboe <axboe@kernel.dk>
2454 L:      linux-block@vger.kernel.org
2455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2456 S:      Maintained
2457 F:      block/
2458 F:      kernel/trace/blktrace.c
2459
2460 BLOCK2MTD DRIVER
2461 M:      Joern Engel <joern@lazybastard.org>
2462 L:      linux-mtd@lists.infradead.org
2463 S:      Maintained
2464 F:      drivers/mtd/devices/block2mtd.c
2465
2466 BLUETOOTH DRIVERS
2467 M:      Marcel Holtmann <marcel@holtmann.org>
2468 M:      Gustavo Padovan <gustavo@padovan.org>
2469 M:      Johan Hedberg <johan.hedberg@gmail.com>
2470 L:      linux-bluetooth@vger.kernel.org
2471 W:      http://www.bluez.org/
2472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2474 S:      Maintained
2475 F:      drivers/bluetooth/
2476
2477 BLUETOOTH SUBSYSTEM
2478 M:      Marcel Holtmann <marcel@holtmann.org>
2479 M:      Gustavo Padovan <gustavo@padovan.org>
2480 M:      Johan Hedberg <johan.hedberg@gmail.com>
2481 L:      linux-bluetooth@vger.kernel.org
2482 W:      http://www.bluez.org/
2483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2485 S:      Maintained
2486 F:      net/bluetooth/
2487 F:      include/net/bluetooth/
2488
2489 BONDING DRIVER
2490 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2491 M:      Veaceslav Falico <vfalico@gmail.com>
2492 M:      Andy Gospodarek <andy@greyhouse.net>
2493 L:      netdev@vger.kernel.org
2494 W:      http://sourceforge.net/projects/bonding/
2495 S:      Supported
2496 F:      drivers/net/bonding/
2497 F:      include/uapi/linux/if_bonding.h
2498
2499 BPF (Safe dynamic programs and tools)
2500 M:      Alexei Starovoitov <ast@kernel.org>
2501 L:      netdev@vger.kernel.org
2502 L:      linux-kernel@vger.kernel.org
2503 S:      Supported
2504 F:      kernel/bpf/
2505
2506 BROADCOM B44 10/100 ETHERNET DRIVER
2507 M:      Michael Chan <michael.chan@broadcom.com>
2508 L:      netdev@vger.kernel.org
2509 S:      Supported
2510 F:      drivers/net/ethernet/broadcom/b44.*
2511
2512 BROADCOM B53 ETHERNET SWITCH DRIVER
2513 M:      Florian Fainelli <f.fainelli@gmail.com>
2514 L:      netdev@vger.kernel.org
2515 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
2516 S:      Supported
2517 F:      drivers/net/dsa/b53/*
2518 F:      include/linux/platform_data/b53.h
2519
2520 BROADCOM GENET ETHERNET DRIVER
2521 M:      Florian Fainelli <f.fainelli@gmail.com>
2522 L:      netdev@vger.kernel.org
2523 S:      Supported
2524 F:      drivers/net/ethernet/broadcom/genet/
2525
2526 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2527 M:      Sony Chacko <sony.chacko@qlogic.com>
2528 M:      Dept-HSGLinuxNICDev@qlogic.com
2529 L:      netdev@vger.kernel.org
2530 S:      Supported
2531 F:      drivers/net/ethernet/broadcom/bnx2.*
2532 F:      drivers/net/ethernet/broadcom/bnx2_*
2533
2534 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2535 M:      Ariel Elior <ariel.elior@qlogic.com>
2536 L:      netdev@vger.kernel.org
2537 S:      Supported
2538 F:      drivers/net/ethernet/broadcom/bnx2x/
2539
2540 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2541 M:      Florian Fainelli <f.fainelli@gmail.com>
2542 M:      Ray Jui <rjui@broadcom.com>
2543 M:      Scott Branden <sbranden@broadcom.com>
2544 M:      bcm-kernel-feedback-list@broadcom.com
2545 T:      git git://github.com/broadcom/mach-bcm
2546 S:      Maintained
2547 N:      bcm281*
2548 N:      bcm113*
2549 N:      bcm216*
2550 N:      kona
2551 F:      arch/arm/mach-bcm/
2552
2553 BROADCOM BCM2835 ARM ARCHITECTURE
2554 M:      Stephen Warren <swarren@wwwdotorg.org>
2555 M:      Lee Jones <lee@kernel.org>
2556 M:      Eric Anholt <eric@anholt.net>
2557 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2560 S:      Maintained
2561 N:      bcm2835
2562
2563 BROADCOM BCM47XX MIPS ARCHITECTURE
2564 M:      Hauke Mehrtens <hauke@hauke-m.de>
2565 M:      Rafał Miłecki <zajec5@gmail.com>
2566 L:      linux-mips@linux-mips.org
2567 S:      Maintained
2568 F:      Documentation/devicetree/bindings/mips/brcm/
2569 F:      arch/mips/bcm47xx/*
2570 F:      arch/mips/include/asm/mach-bcm47xx/*
2571
2572 BROADCOM BCM5301X ARM ARCHITECTURE
2573 M:      Hauke Mehrtens <hauke@hauke-m.de>
2574 M:      Rafał Miłecki <zajec5@gmail.com>
2575 M:      bcm-kernel-feedback-list@broadcom.com
2576 L:      linux-arm-kernel@lists.infradead.org
2577 S:      Maintained
2578 F:      arch/arm/mach-bcm/bcm_5301x.c
2579 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2580 F:      arch/arm/boot/dts/bcm470*
2581
2582 BROADCOM BCM63XX ARM ARCHITECTURE
2583 M:      Florian Fainelli <f.fainelli@gmail.com>
2584 M:      bcm-kernel-feedback-list@broadcom.com
2585 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2586 T:      git git://github.com/broadcom/stblinux.git
2587 S:      Maintained
2588 N:      bcm63xx
2589
2590 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2591 M:      Kevin Cernekee <cernekee@gmail.com>
2592 L:      linux-usb@vger.kernel.org
2593 S:      Maintained
2594 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2595
2596 BROADCOM BCM7XXX ARM ARCHITECTURE
2597 M:      Brian Norris <computersforpeace@gmail.com>
2598 M:      Gregory Fong <gregory.0xf0@gmail.com>
2599 M:      Florian Fainelli <f.fainelli@gmail.com>
2600 M:      bcm-kernel-feedback-list@broadcom.com
2601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2602 T:      git git://github.com/broadcom/stblinux.git
2603 S:      Maintained
2604 F:      arch/arm/mach-bcm/*brcmstb*
2605 F:      arch/arm/boot/dts/bcm7*.dts*
2606 F:      drivers/bus/brcmstb_gisb.c
2607 N:      brcmstb
2608
2609 BROADCOM BMIPS MIPS ARCHITECTURE
2610 M:      Kevin Cernekee <cernekee@gmail.com>
2611 M:      Florian Fainelli <f.fainelli@gmail.com>
2612 L:      linux-mips@linux-mips.org
2613 T:      git git://github.com/broadcom/stblinux.git
2614 S:      Maintained
2615 F:      arch/mips/bmips/*
2616 F:      arch/mips/include/asm/mach-bmips/*
2617 F:      arch/mips/kernel/*bmips*
2618 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2619 F:      drivers/irqchip/irq-bcm63*
2620 F:      drivers/irqchip/irq-bcm7*
2621 F:      drivers/irqchip/irq-brcmstb*
2622 F:      include/linux/bcm963xx_nvram.h
2623 F:      include/linux/bcm963xx_tag.h
2624
2625 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2626 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2627 M:      Prashant Sreedharan <prashant@broadcom.com>
2628 M:      Michael Chan <mchan@broadcom.com>
2629 L:      netdev@vger.kernel.org
2630 S:      Supported
2631 F:      drivers/net/ethernet/broadcom/tg3.*
2632
2633 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2634 M:      Arend van Spriel <arend.vanspriel@broadcom.com>
2635 M:      Franky Lin <franky.lin@broadcom.com>
2636 M:      Hante Meuleman <hante.meuleman@broadcom.com>
2637 L:      linux-wireless@vger.kernel.org
2638 L:      brcm80211-dev-list.pdl@broadcom.com
2639 S:      Supported
2640 F:      drivers/net/wireless/broadcom/brcm80211/
2641
2642 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2643 M:      QLogic-Storage-Upstream@qlogic.com
2644 L:      linux-scsi@vger.kernel.org
2645 S:      Supported
2646 F:      drivers/scsi/bnx2fc/
2647
2648 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2649 M:      QLogic-Storage-Upstream@qlogic.com
2650 L:      linux-scsi@vger.kernel.org
2651 S:      Supported
2652 F:      drivers/scsi/bnx2i/
2653
2654 BROADCOM IPROC ARM ARCHITECTURE
2655 M:      Ray Jui <rjui@broadcom.com>
2656 M:      Scott Branden <sbranden@broadcom.com>
2657 M:      Jon Mason <jonmason@broadcom.com>
2658 M:      bcm-kernel-feedback-list@broadcom.com
2659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2660 T:      git git://github.com/broadcom/cygnus-linux.git
2661 S:      Maintained
2662 N:      iproc
2663 N:      cygnus
2664 N:      bcm[-_]nsp
2665 N:      bcm9113*
2666 N:      bcm9583*
2667 N:      bcm9585*
2668 N:      bcm9586*
2669 N:      bcm988312
2670 N:      bcm113*
2671 N:      bcm583*
2672 N:      bcm585*
2673 N:      bcm586*
2674 N:      bcm88312
2675 F:      arch/arm64/boot/dts/broadcom/ns2*
2676 F:      drivers/clk/bcm/clk-ns*
2677 F:      drivers/pinctrl/bcm/pinctrl-ns*
2678
2679 BROADCOM BRCMSTB GPIO DRIVER
2680 M:      Gregory Fong <gregory.0xf0@gmail.com>
2681 L:      bcm-kernel-feedback-list@broadcom.com
2682 S:      Supported
2683 F:      drivers/gpio/gpio-brcmstb.c
2684 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2685
2686 BROADCOM KONA GPIO DRIVER
2687 M:      Ray Jui <rjui@broadcom.com>
2688 L:      bcm-kernel-feedback-list@broadcom.com
2689 S:      Supported
2690 F:      drivers/gpio/gpio-bcm-kona.c
2691 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2692
2693 BROADCOM NVRAM DRIVER
2694 M:      Rafał Miłecki <zajec5@gmail.com>
2695 L:      linux-mips@linux-mips.org
2696 S:      Maintained
2697 F:      drivers/firmware/broadcom/*
2698
2699 BROADCOM STB NAND FLASH DRIVER
2700 M:      Brian Norris <computersforpeace@gmail.com>
2701 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2702 L:      linux-mtd@lists.infradead.org
2703 L:      bcm-kernel-feedback-list@broadcom.com
2704 S:      Maintained
2705 F:      drivers/mtd/nand/brcmnand/
2706
2707 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2708 M:      Rafał Miłecki <zajec5@gmail.com>
2709 L:      linux-wireless@vger.kernel.org
2710 S:      Maintained
2711 F:      drivers/bcma/
2712 F:      include/linux/bcma/
2713
2714 BROADCOM SYSTEMPORT ETHERNET DRIVER
2715 M:      Florian Fainelli <f.fainelli@gmail.com>
2716 L:      netdev@vger.kernel.org
2717 S:      Supported
2718 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2719
2720 BROADCOM VULCAN ARM64 SOC
2721 M:      Jayachandran C. <jchandra@broadcom.com>
2722 M:      bcm-kernel-feedback-list@broadcom.com
2723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2724 S:      Maintained
2725 F:      arch/arm64/boot/dts/broadcom/vulcan*
2726
2727 BROCADE BFA FC SCSI DRIVER
2728 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2729 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2730 L:      linux-scsi@vger.kernel.org
2731 S:      Supported
2732 F:      drivers/scsi/bfa/
2733
2734 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2735 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2736 L:      netdev@vger.kernel.org
2737 S:      Supported
2738 F:      drivers/net/ethernet/brocade/bna/
2739
2740 BSG (block layer generic sg v4 driver)
2741 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2742 L:      linux-scsi@vger.kernel.org
2743 S:      Supported
2744 F:      block/bsg.c
2745 F:      include/linux/bsg.h
2746 F:      include/uapi/linux/bsg.h
2747
2748 BT87X AUDIO DRIVER
2749 M:      Clemens Ladisch <clemens@ladisch.de>
2750 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2751 T:      git git://git.alsa-project.org/alsa-kernel.git
2752 S:      Maintained
2753 F:      Documentation/sound/alsa/Bt87x.txt
2754 F:      sound/pci/bt87x.c
2755
2756 BT8XXGPIO DRIVER
2757 M:      Michael Buesch <m@bues.ch>
2758 W:      http://bu3sch.de/btgpio.php
2759 S:      Maintained
2760 F:      drivers/gpio/gpio-bt8xx.c
2761
2762 BTRFS FILE SYSTEM
2763 M:      Chris Mason <clm@fb.com>
2764 M:      Josef Bacik <jbacik@fb.com>
2765 M:      David Sterba <dsterba@suse.com>
2766 L:      linux-btrfs@vger.kernel.org
2767 W:      http://btrfs.wiki.kernel.org/
2768 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2770 S:      Maintained
2771 F:      Documentation/filesystems/btrfs.txt
2772 F:      fs/btrfs/
2773
2774 BTTV VIDEO4LINUX DRIVER
2775 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
2776 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
2777 L:      linux-media@vger.kernel.org
2778 W:      https://linuxtv.org
2779 T:      git git://linuxtv.org/media_tree.git
2780 S:      Odd fixes
2781 F:      Documentation/video4linux/bttv/
2782 F:      drivers/media/pci/bt8xx/bttv*
2783
2784 BUSLOGIC SCSI DRIVER
2785 M:      Khalid Aziz <khalid@gonehiking.org>
2786 L:      linux-scsi@vger.kernel.org
2787 S:      Maintained
2788 F:      drivers/scsi/BusLogic.*
2789 F:      drivers/scsi/FlashPoint.*
2790
2791 C-MEDIA CMI8788 DRIVER
2792 M:      Clemens Ladisch <clemens@ladisch.de>
2793 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2794 T:      git git://git.alsa-project.org/alsa-kernel.git
2795 S:      Maintained
2796 F:      sound/pci/oxygen/
2797
2798 C6X ARCHITECTURE
2799 M:      Mark Salter <msalter@redhat.com>
2800 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2801 L:      linux-c6x-dev@linux-c6x.org
2802 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2803 S:      Maintained
2804 F:      arch/c6x/
2805
2806 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2807 M:      David Howells <dhowells@redhat.com>
2808 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2809 S:      Supported
2810 F:      Documentation/filesystems/caching/cachefiles.txt
2811 F:      fs/cachefiles/
2812
2813 CADET FM/AM RADIO RECEIVER DRIVER
2814 M:      Hans Verkuil <hverkuil@xs4all.nl>
2815 L:      linux-media@vger.kernel.org
2816 T:      git git://linuxtv.org/media_tree.git
2817 W:      https://linuxtv.org
2818 S:      Maintained
2819 F:      drivers/media/radio/radio-cadet*
2820
2821 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2822 M:      Jonathan Corbet <corbet@lwn.net>
2823 L:      linux-media@vger.kernel.org
2824 T:      git git://linuxtv.org/media_tree.git
2825 S:      Maintained
2826 F:      Documentation/video4linux/cafe_ccic
2827 F:      drivers/media/platform/marvell-ccic/
2828
2829 CAIF NETWORK LAYER
2830 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2831 L:      netdev@vger.kernel.org
2832 S:      Supported
2833 F:      Documentation/networking/caif/
2834 F:      drivers/net/caif/
2835 F:      include/uapi/linux/caif/
2836 F:      include/net/caif/
2837 F:      net/caif/
2838
2839 CALGARY x86-64 IOMMU
2840 M:      Muli Ben-Yehuda <mulix@mulix.org>
2841 M:      Jon Mason <jdmason@kudzu.us>
2842 L:      iommu@lists.linux-foundation.org
2843 S:      Maintained
2844 F:      arch/x86/kernel/pci-calgary_64.c
2845 F:      arch/x86/kernel/tce_64.c
2846 F:      arch/x86/include/asm/calgary.h
2847 F:      arch/x86/include/asm/tce.h
2848
2849 CAN NETWORK LAYER
2850 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2851 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2852 L:      linux-can@vger.kernel.org
2853 W:      https://github.com/linux-can
2854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2856 S:      Maintained
2857 F:      Documentation/networking/can.txt
2858 F:      net/can/
2859 F:      include/linux/can/core.h
2860 F:      include/uapi/linux/can.h
2861 F:      include/uapi/linux/can/bcm.h
2862 F:      include/uapi/linux/can/raw.h
2863 F:      include/uapi/linux/can/gw.h
2864
2865 CAN NETWORK DRIVERS
2866 M:      Wolfgang Grandegger <wg@grandegger.com>
2867 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2868 L:      linux-can@vger.kernel.org
2869 W:      https://github.com/linux-can
2870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2872 S:      Maintained
2873 F:      Documentation/devicetree/bindings/net/can/
2874 F:      drivers/net/can/
2875 F:      include/linux/can/dev.h
2876 F:      include/linux/can/platform/
2877 F:      include/uapi/linux/can/error.h
2878 F:      include/uapi/linux/can/netlink.h
2879
2880 CAPABILITIES
2881 M:      Serge Hallyn <serge@hallyn.com>
2882 L:      linux-security-module@vger.kernel.org
2883 S:      Supported
2884 F:      include/linux/capability.h
2885 F:      include/uapi/linux/capability.h
2886 F:      security/commoncap.c
2887 F:      kernel/capability.c
2888
2889 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2890 M:      Kevin Tsai <ktsai@capellamicro.com>
2891 S:      Maintained
2892 F:      drivers/iio/light/cm*
2893 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2894
2895 CAVIUM LIQUIDIO NETWORK DRIVER
2896 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2897 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2898 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2899 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2900 L:     netdev@vger.kernel.org
2901 W:     http://www.cavium.com
2902 S:     Supported
2903 F:     drivers/net/ethernet/cavium/liquidio/
2904
2905 CC2520 IEEE-802.15.4 RADIO DRIVER
2906 M:      Varka Bhadram <varkabhadram@gmail.com>
2907 L:      linux-wpan@vger.kernel.org
2908 S:      Maintained
2909 F:      drivers/net/ieee802154/cc2520.c
2910 F:      include/linux/spi/cc2520.h
2911 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2912
2913 CEC DRIVER
2914 M:      Hans Verkuil <hans.verkuil@cisco.com>
2915 L:      linux-media@vger.kernel.org
2916 T:      git git://linuxtv.org/media_tree.git
2917 W:      http://linuxtv.org
2918 S:      Supported
2919 F:      Documentation/cec.txt
2920 F:      Documentation/DocBook/media/v4l/cec*
2921 F:      drivers/staging/media/cec/
2922 F:      drivers/media/cec-edid.c
2923 F:      drivers/media/rc/keymaps/rc-cec.c
2924 F:      include/media/cec.h
2925 F:      include/media/cec-edid.h
2926 F:      include/linux/cec.h
2927 F:      include/linux/cec-funcs.h
2928
2929 CELL BROADBAND ENGINE ARCHITECTURE
2930 M:      Arnd Bergmann <arnd@arndb.de>
2931 L:      linuxppc-dev@lists.ozlabs.org
2932 W:      http://www.ibm.com/developerworks/power/cell/
2933 S:      Supported
2934 F:      arch/powerpc/include/asm/cell*.h
2935 F:      arch/powerpc/include/asm/spu*.h
2936 F:      arch/powerpc/include/uapi/asm/spu*.h
2937 F:      arch/powerpc/oprofile/*cell*
2938 F:      arch/powerpc/platforms/cell/
2939
2940 CEPH COMMON CODE (LIBCEPH)
2941 M:      Ilya Dryomov <idryomov@gmail.com>
2942 M:      "Yan, Zheng" <zyan@redhat.com>
2943 M:      Sage Weil <sage@redhat.com>
2944 L:      ceph-devel@vger.kernel.org
2945 W:      http://ceph.com/
2946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2947 T:      git git://github.com/ceph/ceph-client.git
2948 S:      Supported
2949 F:      net/ceph/
2950 F:      include/linux/ceph/
2951 F:      include/linux/crush/
2952
2953 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2954 M:      "Yan, Zheng" <zyan@redhat.com>
2955 M:      Sage Weil <sage@redhat.com>
2956 M:      Ilya Dryomov <idryomov@gmail.com>
2957 L:      ceph-devel@vger.kernel.org
2958 W:      http://ceph.com/
2959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2960 T:      git git://github.com/ceph/ceph-client.git
2961 S:      Supported
2962 F:      Documentation/filesystems/ceph.txt
2963 F:      fs/ceph/
2964
2965 CERTIFICATE HANDLING:
2966 M:      David Howells <dhowells@redhat.com>
2967 M:      David Woodhouse <dwmw2@infradead.org>
2968 L:      keyrings@vger.kernel.org
2969 S:      Maintained
2970 F:      Documentation/module-signing.txt
2971 F:      certs/
2972 F:      scripts/sign-file.c
2973 F:      scripts/extract-cert.c
2974
2975 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2976 L:      linux-usb@vger.kernel.org
2977 S:      Orphan
2978 F:      Documentation/usb/WUSB-Design-overview.txt
2979 F:      Documentation/usb/wusb-cbaf
2980 F:      drivers/usb/host/hwa-hc.c
2981 F:      drivers/usb/host/whci/
2982 F:      drivers/usb/wusbcore/
2983 F:      include/linux/usb/wusb*
2984
2985 CFAG12864B LCD DRIVER
2986 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2987 W:      http://miguelojeda.es/auxdisplay.htm
2988 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2989 S:      Maintained
2990 F:      drivers/auxdisplay/cfag12864b.c
2991 F:      include/linux/cfag12864b.h
2992
2993 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2994 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2995 W:      http://miguelojeda.es/auxdisplay.htm
2996 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2997 S:      Maintained
2998 F:      drivers/auxdisplay/cfag12864bfb.c
2999 F:      include/linux/cfag12864b.h
3000
3001 CFG80211 and NL80211
3002 M:      Johannes Berg <johannes@sipsolutions.net>
3003 L:      linux-wireless@vger.kernel.org
3004 W:      http://wireless.kernel.org/
3005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3007 S:      Maintained
3008 F:      include/uapi/linux/nl80211.h
3009 F:      include/net/cfg80211.h
3010 F:      net/wireless/*
3011 X:      net/wireless/wext*
3012
3013 CHAR and MISC DRIVERS
3014 M:      Arnd Bergmann <arnd@arndb.de>
3015 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3017 S:      Supported
3018 F:      drivers/char/*
3019 F:      drivers/misc/*
3020 F:      include/linux/miscdevice.h
3021
3022 CHECKPATCH
3023 M:      Andy Whitcroft <apw@canonical.com>
3024 M:      Joe Perches <joe@perches.com>
3025 S:      Maintained
3026 F:      scripts/checkpatch.pl
3027
3028 CHINESE DOCUMENTATION
3029 M:      Harry Wei <harryxiyou@gmail.com>
3030 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
3031 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
3032 S:      Maintained
3033 F:      Documentation/zh_CN/
3034
3035 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3036 M:      Peter Chen <Peter.Chen@nxp.com>
3037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3038 L:      linux-usb@vger.kernel.org
3039 S:      Maintained
3040 F:      drivers/usb/chipidea/
3041
3042 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3043 M:      Hans de Goede <hdegoede@redhat.com>
3044 L:      linux-input@vger.kernel.org
3045 S:      Maintained
3046 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3047 F:      drivers/input/touchscreen/chipone_icn8318.c
3048
3049 CHROME HARDWARE PLATFORM SUPPORT
3050 M:      Olof Johansson <olof@lixom.net>
3051 S:      Maintained
3052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3053 F:      drivers/platform/chrome/
3054
3055 CISCO VIC ETHERNET NIC DRIVER
3056 M:      Christian Benvenuti <benve@cisco.com>
3057 M:      Sujith Sankar <ssujith@cisco.com>
3058 M:      Govindarajulu Varadarajan <_govind@gmx.com>
3059 M:      Neel Patel <neepatel@cisco.com>
3060 S:      Supported
3061 F:      drivers/net/ethernet/cisco/enic/
3062
3063 CISCO VIC LOW LATENCY NIC DRIVER
3064 M:      Christian Benvenuti <benve@cisco.com>
3065 M:      Dave Goodell <dgoodell@cisco.com>
3066 S:      Supported
3067 F:      drivers/infiniband/hw/usnic/
3068
3069 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3070 M:      Hartley Sweeten <hsweeten@visionengravers.com>
3071 L:      netdev@vger.kernel.org
3072 S:      Maintained
3073 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3074
3075 CIRRUS LOGIC AUDIO CODEC DRIVERS
3076 M:      Brian Austin <brian.austin@cirrus.com>
3077 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
3078 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3079 S:      Maintained
3080 F:      sound/soc/codecs/cs*
3081
3082 CLEANCACHE API
3083 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
3084 L:      linux-kernel@vger.kernel.org
3085 S:      Maintained
3086 F:      mm/cleancache.c
3087 F:      include/linux/cleancache.h
3088
3089 CLK API
3090 M:      Russell King <linux@armlinux.org.uk>
3091 L:      linux-clk@vger.kernel.org
3092 S:      Maintained
3093 F:      include/linux/clk.h
3094
3095 CLOCKSOURCE, CLOCKEVENT DRIVERS
3096 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3097 M:      Thomas Gleixner <tglx@linutronix.de>
3098 L:      linux-kernel@vger.kernel.org
3099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3100 S:      Supported
3101 F:      drivers/clocksource
3102
3103 CISCO FCOE HBA DRIVER
3104 M:      Hiral Patel <hiralpat@cisco.com>
3105 M:      Suma Ramars <sramars@cisco.com>
3106 M:      Brian Uchino <buchino@cisco.com>
3107 L:      linux-scsi@vger.kernel.org
3108 S:      Supported
3109 F:      drivers/scsi/fnic/
3110
3111 CISCO SCSI HBA DRIVER
3112 M:      Narsimhulu Musini <nmusini@cisco.com>
3113 M:      Sesidhar Baddela <sebaddel@cisco.com>
3114 L:      linux-scsi@vger.kernel.org
3115 S:      Supported
3116 F:      drivers/scsi/snic/
3117
3118 CMPC ACPI DRIVER
3119 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3120 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3121 L:      platform-driver-x86@vger.kernel.org
3122 S:      Supported
3123 F:      drivers/platform/x86/classmate-laptop.c
3124
3125 COBALT MEDIA DRIVER
3126 M:      Hans Verkuil <hans.verkuil@cisco.com>
3127 L:      linux-media@vger.kernel.org
3128 T:      git git://linuxtv.org/media_tree.git
3129 W:      https://linuxtv.org
3130 S:      Supported
3131 F:      drivers/media/pci/cobalt/
3132
3133 COCCINELLE/Semantic Patches (SmPL)
3134 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3135 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3136 M:      Nicolas Palix <nicolas.palix@imag.fr>
3137 M:      Michal Marek <mmarek@suse.com>
3138 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3140 W:      http://coccinelle.lip6.fr/
3141 S:      Supported
3142 F:      Documentation/coccinelle.txt
3143 F:      scripts/coccinelle/
3144 F:      scripts/coccicheck
3145
3146 CODA FILE SYSTEM
3147 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3148 M:      coda@cs.cmu.edu
3149 L:      codalist@coda.cs.cmu.edu
3150 W:      http://www.coda.cs.cmu.edu/
3151 S:      Maintained
3152 F:      Documentation/filesystems/coda.txt
3153 F:      fs/coda/
3154 F:      include/linux/coda*.h
3155 F:      include/uapi/linux/coda*.h
3156
3157 CODA V4L2 MEM2MEM DRIVER
3158 M:      Philipp Zabel <p.zabel@pengutronix.de>
3159 L:      linux-media@vger.kernel.org
3160 S:      Maintained
3161 F:      Documentation/devicetree/bindings/media/coda.txt
3162 F:      drivers/media/platform/coda/
3163
3164 COMMON CLK FRAMEWORK
3165 M:      Michael Turquette <mturquette@baylibre.com>
3166 M:      Stephen Boyd <sboyd@codeaurora.org>
3167 L:      linux-clk@vger.kernel.org
3168 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3170 S:      Maintained
3171 F:      Documentation/devicetree/bindings/clock/
3172 F:      drivers/clk/
3173 X:      drivers/clk/clkdev.c
3174 F:      include/linux/clk-pr*
3175 F:      include/linux/clk/
3176
3177 COMMON INTERNET FILE SYSTEM (CIFS)
3178 M:      Steve French <sfrench@samba.org>
3179 L:      linux-cifs@vger.kernel.org
3180 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3181 W:      http://linux-cifs.samba.org/
3182 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3183 S:      Supported
3184 F:      Documentation/filesystems/cifs/
3185 F:      fs/cifs/
3186
3187 COMPACTPCI HOTPLUG CORE
3188 M:      Scott Murray <scott@spiteful.org>
3189 L:      linux-pci@vger.kernel.org
3190 S:      Maintained
3191 F:      drivers/pci/hotplug/cpci_hotplug*
3192
3193 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3194 M:      Scott Murray <scott@spiteful.org>
3195 L:      linux-pci@vger.kernel.org
3196 S:      Maintained
3197 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3198
3199 COMPACTPCI HOTPLUG GENERIC DRIVER
3200 M:      Scott Murray <scott@spiteful.org>
3201 L:      linux-pci@vger.kernel.org
3202 S:      Maintained
3203 F:      drivers/pci/hotplug/cpcihp_generic.c
3204
3205 COMPAL LAPTOP SUPPORT
3206 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3207 L:      platform-driver-x86@vger.kernel.org
3208 S:      Maintained
3209 F:      drivers/platform/x86/compal-laptop.c
3210
3211 CONEXANT ACCESSRUNNER USB DRIVER
3212 L:      accessrunner-general@lists.sourceforge.net
3213 W:      http://accessrunner.sourceforge.net/
3214 S:      Orphan
3215 F:      drivers/usb/atm/cxacru.c
3216
3217 CONFIGFS
3218 M:      Joel Becker <jlbec@evilplan.org>
3219 M:      Christoph Hellwig <hch@lst.de>
3220 T:      git git://git.infradead.org/users/hch/configfs.git
3221 S:      Supported
3222 F:      fs/configfs/
3223 F:      include/linux/configfs.h
3224
3225 CONNECTOR
3226 M:      Evgeniy Polyakov <zbr@ioremap.net>
3227 L:      netdev@vger.kernel.org
3228 S:      Maintained
3229 F:      drivers/connector/
3230
3231 CONTROL GROUP (CGROUP)
3232 M:      Tejun Heo <tj@kernel.org>
3233 M:      Li Zefan <lizefan@huawei.com>
3234 M:      Johannes Weiner <hannes@cmpxchg.org>
3235 L:      cgroups@vger.kernel.org
3236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3237 S:      Maintained
3238 F:      Documentation/cgroup*
3239 F:      include/linux/cgroup*
3240 F:      kernel/cgroup*
3241
3242 CONTROL GROUP - CPUSET
3243 M:      Li Zefan <lizefan@huawei.com>
3244 L:      cgroups@vger.kernel.org
3245 W:      http://www.bullopensource.org/cpuset/
3246 W:      http://oss.sgi.com/projects/cpusets/
3247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3248 S:      Maintained
3249 F:      Documentation/cgroup-v1/cpusets.txt
3250 F:      include/linux/cpuset.h
3251 F:      kernel/cpuset.c
3252
3253 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3254 M:      Johannes Weiner <hannes@cmpxchg.org>
3255 M:      Michal Hocko <mhocko@kernel.org>
3256 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
3257 L:      cgroups@vger.kernel.org
3258 L:      linux-mm@kvack.org
3259 S:      Maintained
3260 F:      mm/memcontrol.c
3261 F:      mm/swap_cgroup.c
3262
3263 CORETEMP HARDWARE MONITORING DRIVER
3264 M:      Fenghua Yu <fenghua.yu@intel.com>
3265 L:      linux-hwmon@vger.kernel.org
3266 S:      Maintained
3267 F:      Documentation/hwmon/coretemp
3268 F:      drivers/hwmon/coretemp.c
3269
3270 COSA/SRP SYNC SERIAL DRIVER
3271 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3272 W:      http://www.fi.muni.cz/~kas/cosa/
3273 S:      Maintained
3274 F:      drivers/net/wan/cosa*
3275
3276 CPMAC ETHERNET DRIVER
3277 M:      Florian Fainelli <f.fainelli@gmail.com>
3278 L:      netdev@vger.kernel.org
3279 S:      Maintained
3280 F:      drivers/net/ethernet/ti/cpmac.c
3281
3282 CPU FREQUENCY DRIVERS
3283 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3284 M:      Viresh Kumar <viresh.kumar@linaro.org>
3285 L:      linux-pm@vger.kernel.org
3286 S:      Maintained
3287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3288 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3289 F:      Documentation/cpu-freq/
3290 F:      drivers/cpufreq/
3291 F:      include/linux/cpufreq.h
3292
3293 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3294 M:      Viresh Kumar <viresh.kumar@linaro.org>
3295 M:      Sudeep Holla <sudeep.holla@arm.com>
3296 L:      linux-pm@vger.kernel.org
3297 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3298 S:      Maintained
3299 F:      drivers/cpufreq/arm_big_little.h
3300 F:      drivers/cpufreq/arm_big_little.c
3301 F:      drivers/cpufreq/arm_big_little_dt.c
3302
3303 CPUIDLE DRIVER - ARM BIG LITTLE
3304 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3305 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3306 L:      linux-pm@vger.kernel.org
3307 L:      linux-arm-kernel@lists.infradead.org
3308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3309 S:      Maintained
3310 F:      drivers/cpuidle/cpuidle-big_little.c
3311
3312 CPUIDLE DRIVER - ARM EXYNOS
3313 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3314 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3315 M:      Kukjin Kim <kgene@kernel.org>
3316 L:      linux-pm@vger.kernel.org
3317 L:      linux-samsung-soc@vger.kernel.org
3318 S:      Supported
3319 F:      drivers/cpuidle/cpuidle-exynos.c
3320 F:      arch/arm/mach-exynos/pm.c
3321
3322 CPUIDLE DRIVERS
3323 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3324 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3325 L:      linux-pm@vger.kernel.org
3326 S:      Maintained
3327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3328 F:      drivers/cpuidle/*
3329 F:      include/linux/cpuidle.h
3330
3331 CPUID/MSR DRIVER
3332 M:      "H. Peter Anvin" <hpa@zytor.com>
3333 S:      Maintained
3334 F:      arch/x86/kernel/cpuid.c
3335 F:      arch/x86/kernel/msr.c
3336
3337 CPU POWER MONITORING SUBSYSTEM
3338 M:      Thomas Renninger <trenn@suse.com>
3339 L:      linux-pm@vger.kernel.org
3340 S:      Maintained
3341 F:      tools/power/cpupower/
3342
3343 CRAMFS FILESYSTEM
3344 W:      http://sourceforge.net/projects/cramfs/
3345 S:      Orphan / Obsolete
3346 F:      Documentation/filesystems/cramfs.txt
3347 F:      fs/cramfs/
3348
3349 CRIS PORT
3350 M:      Mikael Starvik <starvik@axis.com>
3351 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3352 L:      linux-cris-kernel@axis.com
3353 W:      http://developer.axis.com
3354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3355 S:      Maintained
3356 F:      arch/cris/
3357 F:      drivers/tty/serial/crisv10.*
3358
3359 CRYPTO API
3360 M:      Herbert Xu <herbert@gondor.apana.org.au>
3361 M:      "David S. Miller" <davem@davemloft.net>
3362 L:      linux-crypto@vger.kernel.org
3363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3365 S:      Maintained
3366 F:      Documentation/crypto/
3367 F:      Documentation/devicetree/bindings/crypto/
3368 F:      Documentation/DocBook/crypto-API.tmpl
3369 F:      arch/*/crypto/
3370 F:      crypto/
3371 F:      drivers/crypto/
3372 F:      include/crypto/
3373
3374 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3375 M:      Neil Horman <nhorman@tuxdriver.com>
3376 L:      linux-crypto@vger.kernel.org
3377 S:      Maintained
3378 F:      crypto/ansi_cprng.c
3379 F:      crypto/rng.c
3380
3381 CS3308 MEDIA DRIVER
3382 M:      Hans Verkuil <hverkuil@xs4all.nl>
3383 L:      linux-media@vger.kernel.org
3384 T:      git git://linuxtv.org/media_tree.git
3385 W:      http://linuxtv.org
3386 S:      Odd Fixes
3387 F:      drivers/media/i2c/cs3308.c
3388 F:      drivers/media/i2c/cs3308.h
3389
3390 CS5535 Audio ALSA driver
3391 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3392 S:      Maintained
3393 F:      sound/pci/cs5535audio/
3394
3395 CW1200 WLAN driver
3396 M:      Solomon Peachy <pizza@shaftnet.org>
3397 S:      Maintained
3398 F:      drivers/net/wireless/st/cw1200/
3399
3400 CX18 VIDEO4LINUX DRIVER
3401 M:      Andy Walls <awalls@md.metrocast.net>
3402 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3403 L:      linux-media@vger.kernel.org
3404 T:      git git://linuxtv.org/media_tree.git
3405 W:      https://linuxtv.org
3406 W:      http://www.ivtvdriver.org/index.php/Cx18
3407 S:      Maintained
3408 F:      Documentation/video4linux/cx18.txt
3409 F:      drivers/media/pci/cx18/
3410 F:      include/uapi/linux/ivtv*
3411
3412 CX2341X MPEG ENCODER HELPER MODULE
3413 M:      Hans Verkuil <hverkuil@xs4all.nl>
3414 L:      linux-media@vger.kernel.org
3415 T:      git git://linuxtv.org/media_tree.git
3416 W:      https://linuxtv.org
3417 S:      Maintained
3418 F:      drivers/media/common/cx2341x*
3419 F:      include/media/cx2341x*
3420
3421 CX24120 MEDIA DRIVER
3422 M:      Jemma Denson <jdenson@gmail.com>
3423 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3424 L:      linux-media@vger.kernel.org
3425 W:      https://linuxtv.org
3426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3427 S:      Maintained
3428 F:      drivers/media/dvb-frontends/cx24120*
3429
3430 CX88 VIDEO4LINUX DRIVER
3431 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
3432 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3433 L:      linux-media@vger.kernel.org
3434 W:      https://linuxtv.org
3435 T:      git git://linuxtv.org/media_tree.git
3436 S:      Odd fixes
3437 F:      Documentation/video4linux/cx88/
3438 F:      drivers/media/pci/cx88/
3439
3440 CXD2820R MEDIA DRIVER
3441 M:      Antti Palosaari <crope@iki.fi>
3442 L:      linux-media@vger.kernel.org
3443 W:      https://linuxtv.org
3444 W:      http://palosaari.fi/linux/
3445 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3446 T:      git git://linuxtv.org/anttip/media_tree.git
3447 S:      Maintained
3448 F:      drivers/media/dvb-frontends/cxd2820r*
3449
3450 CXGB3 ETHERNET DRIVER (CXGB3)
3451 M:      Santosh Raspatur <santosh@chelsio.com>
3452 L:      netdev@vger.kernel.org
3453 W:      http://www.chelsio.com
3454 S:      Supported
3455 F:      drivers/net/ethernet/chelsio/cxgb3/
3456
3457 CXGB3 ISCSI DRIVER (CXGB3I)
3458 M:      Karen Xie <kxie@chelsio.com>
3459 L:      linux-scsi@vger.kernel.org
3460 W:      http://www.chelsio.com
3461 S:      Supported
3462 F:      drivers/scsi/cxgbi/cxgb3i
3463
3464 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3465 M:      Steve Wise <swise@chelsio.com>
3466 L:      linux-rdma@vger.kernel.org
3467 W:      http://www.openfabrics.org
3468 S:      Supported
3469 F:      drivers/infiniband/hw/cxgb3/
3470
3471 CXGB4 ETHERNET DRIVER (CXGB4)
3472 M:      Hariprasad S <hariprasad@chelsio.com>
3473 L:      netdev@vger.kernel.org
3474 W:      http://www.chelsio.com
3475 S:      Supported
3476 F:      drivers/net/ethernet/chelsio/cxgb4/
3477
3478 CXGB4 ISCSI DRIVER (CXGB4I)
3479 M:      Karen Xie <kxie@chelsio.com>
3480 L:      linux-scsi@vger.kernel.org
3481 W:      http://www.chelsio.com
3482 S:      Supported
3483 F:      drivers/scsi/cxgbi/cxgb4i
3484
3485 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3486 M:      Steve Wise <swise@chelsio.com>
3487 L:      linux-rdma@vger.kernel.org
3488 W:      http://www.openfabrics.org
3489 S:      Supported
3490 F:      drivers/infiniband/hw/cxgb4/
3491
3492 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3493 M:      Casey Leedom <leedom@chelsio.com>
3494 L:      netdev@vger.kernel.org
3495 W:      http://www.chelsio.com
3496 S:      Supported
3497 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3498
3499 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3500 M:      Ian Munsie <imunsie@au1.ibm.com>
3501 M:      Michael Neuling <mikey@neuling.org>
3502 L:      linuxppc-dev@lists.ozlabs.org
3503 S:      Supported
3504 F:      drivers/misc/cxl/
3505 F:      include/misc/cxl*
3506 F:      include/uapi/misc/cxl.h
3507 F:      Documentation/powerpc/cxl.txt
3508 F:      Documentation/powerpc/cxl.txt
3509 F:      Documentation/ABI/testing/sysfs-class-cxl
3510
3511 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3512 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3513 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3514 M:      Uma Krishnan <ukrishn@linux.vnet.ibm.com>
3515 L:      linux-scsi@vger.kernel.org
3516 S:      Supported
3517 F:      drivers/scsi/cxlflash/
3518 F:      include/uapi/scsi/cxlflash_ioctls.h
3519 F:      Documentation/powerpc/cxlflash.txt
3520
3521 STMMAC ETHERNET DRIVER
3522 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3523 M:      Alexandre Torgue <alexandre.torgue@st.com>
3524 L:      netdev@vger.kernel.org
3525 W:      http://www.stlinux.com
3526 S:      Supported
3527 F:      drivers/net/ethernet/stmicro/stmmac/
3528
3529 CYBERPRO FB DRIVER
3530 M:      Russell King <linux@armlinux.org.uk>
3531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3532 W:      http://www.armlinux.org.uk/
3533 S:      Maintained
3534 F:      drivers/video/fbdev/cyber2000fb.*
3535
3536 CYCLADES ASYNC MUX DRIVER
3537 W:      http://www.cyclades.com/
3538 S:      Orphan
3539 F:      drivers/tty/cyclades.c
3540 F:      include/linux/cyclades.h
3541 F:      include/uapi/linux/cyclades.h
3542
3543 CYCLADES PC300 DRIVER
3544 W:      http://www.cyclades.com/
3545 S:      Orphan
3546 F:      drivers/net/wan/pc300*
3547
3548 CYPRESS_FIRMWARE MEDIA DRIVER
3549 M:      Antti Palosaari <crope@iki.fi>
3550 L:      linux-media@vger.kernel.org
3551 W:      https://linuxtv.org
3552 W:      http://palosaari.fi/linux/
3553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3554 T:      git git://linuxtv.org/anttip/media_tree.git
3555 S:      Maintained
3556 F:      drivers/media/common/cypress_firmware*
3557
3558 CYTTSP TOUCHSCREEN DRIVER
3559 M:      Ferruh Yigit <fery@cypress.com>
3560 L:      linux-input@vger.kernel.org
3561 S:      Supported
3562 F:      drivers/input/touchscreen/cyttsp*
3563 F:      include/linux/input/cyttsp.h
3564
3565 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3566 M:      Joshua Kinard <kumba@gentoo.org>
3567 S:      Maintained
3568 F:      drivers/rtc/rtc-ds1685.c
3569 F:      include/linux/rtc/ds1685.h
3570
3571 DAMA SLAVE for AX.25
3572 M:      Joerg Reuter <jreuter@yaina.de>
3573 W:      http://yaina.de/jreuter/
3574 W:      http://www.qsl.net/dl1bke/
3575 L:      linux-hams@vger.kernel.org
3576 S:      Maintained
3577 F:      net/ax25/af_ax25.c
3578 F:      net/ax25/ax25_dev.c
3579 F:      net/ax25/ax25_ds_*
3580 F:      net/ax25/ax25_in.c
3581 F:      net/ax25/ax25_out.c
3582 F:      net/ax25/ax25_timer.c
3583 F:      net/ax25/sysctl_net_ax25.c
3584
3585 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3586 L:      netdev@vger.kernel.org
3587 S:      Orphan
3588 F:      Documentation/networking/dmfe.txt
3589 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3590
3591 DC390/AM53C974 SCSI driver
3592 M:      Hannes Reinecke <hare@suse.com>
3593 L:      linux-scsi@vger.kernel.org
3594 S:      Maintained
3595 F:      drivers/scsi/am53c974.c
3596
3597 DC395x SCSI driver
3598 M:      Oliver Neukum <oliver@neukum.org>
3599 M:      Ali Akcaagac <aliakc@web.de>
3600 M:      Jamie Lenehan <lenehan@twibble.org>
3601 L:      dc395x@twibble.org
3602 W:      http://twibble.org/dist/dc395x/
3603 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3604 S:      Maintained
3605 F:      Documentation/scsi/dc395x.txt
3606 F:      drivers/scsi/dc395x.*
3607
3608 DCCP PROTOCOL
3609 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3610 L:      dccp@vger.kernel.org
3611 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3612 S:      Maintained
3613 F:      include/linux/dccp.h
3614 F:      include/uapi/linux/dccp.h
3615 F:      include/linux/tfrc.h
3616 F:      net/dccp/
3617
3618 DECnet NETWORK LAYER
3619 W:      http://linux-decnet.sourceforge.net
3620 L:      linux-decnet-user@lists.sourceforge.net
3621 S:      Orphan
3622 F:      Documentation/networking/decnet.txt
3623 F:      net/decnet/
3624
3625 DECSTATION PLATFORM SUPPORT
3626 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3627 L:      linux-mips@linux-mips.org
3628 W:      http://www.linux-mips.org/wiki/DECstation
3629 S:      Maintained
3630 F:      arch/mips/dec/
3631 F:      arch/mips/include/asm/dec/
3632 F:      arch/mips/include/asm/mach-dec/
3633
3634 DEFXX FDDI NETWORK DRIVER
3635 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3636 S:      Maintained
3637 F:      drivers/net/fddi/defxx.*
3638
3639 DELL LAPTOP DRIVER
3640 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3641 M:      Pali Rohár <pali.rohar@gmail.com>
3642 L:      platform-driver-x86@vger.kernel.org
3643 S:      Maintained
3644 F:      drivers/platform/x86/dell-laptop.c
3645
3646 DELL LAPTOP RBTN DRIVER
3647 M:      Pali Rohár <pali.rohar@gmail.com>
3648 S:      Maintained
3649 F:      drivers/platform/x86/dell-rbtn.*
3650
3651 DELL LAPTOP FREEFALL DRIVER
3652 M:      Pali Rohár <pali.rohar@gmail.com>
3653 S:      Maintained
3654 F:      drivers/platform/x86/dell-smo8800.c
3655
3656 DELL LAPTOP SMM DRIVER
3657 M:      Pali Rohár <pali.rohar@gmail.com>
3658 S:      Maintained
3659 F:      drivers/hwmon/dell-smm-hwmon.c
3660 F:      include/uapi/linux/i8k.h
3661
3662 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3663 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3664 S:      Maintained
3665 F:      Documentation/dcdbas.txt
3666 F:      drivers/firmware/dcdbas.*
3667
3668 DELL WMI EXTRAS DRIVER
3669 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3670 M:      Pali Rohár <pali.rohar@gmail.com>
3671 S:      Maintained
3672 F:      drivers/platform/x86/dell-wmi.c
3673
3674 DESIGNWARE USB2 DRD IP DRIVER
3675 M:      John Youn <johnyoun@synopsys.com>
3676 L:      linux-usb@vger.kernel.org
3677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3678 S:      Maintained
3679 F:      drivers/usb/dwc2/
3680
3681 DESIGNWARE USB3 DRD IP DRIVER
3682 M:      Felipe Balbi <balbi@kernel.org>
3683 L:      linux-usb@vger.kernel.org
3684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3685 S:      Maintained
3686 F:      drivers/usb/dwc3/
3687
3688 DEVICE COREDUMP (DEV_COREDUMP)
3689 M:      Johannes Berg <johannes@sipsolutions.net>
3690 L:      linux-kernel@vger.kernel.org
3691 S:      Maintained
3692 F:      drivers/base/devcoredump.c
3693 F:      include/linux/devcoredump.h
3694
3695 DEVICE FREQUENCY (DEVFREQ)
3696 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3697 M:      Kyungmin Park <kyungmin.park@samsung.com>
3698 L:      linux-pm@vger.kernel.org
3699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3700 S:      Maintained
3701 F:      drivers/devfreq/
3702 F:      include/linux/devfreq.h
3703 F:      Documentation/devicetree/bindings/devfreq/
3704
3705 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3706 M:      Chanwoo Choi <cw00.choi@samsung.com>
3707 L:      linux-pm@vger.kernel.org
3708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3709 S:      Supported
3710 F:      drivers/devfreq/event/
3711 F:      drivers/devfreq/devfreq-event.c
3712 F:      include/linux/devfreq-event.h
3713 F:      Documentation/devicetree/bindings/devfreq/event/
3714
3715 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3716 M:      Chanwoo Choi <cw00.choi@samsung.com>
3717 L:      linux-pm@vger.kernel.org
3718 L:      linux-samsung-soc@vger.kernel.org
3719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3720 S:      Maintained
3721 F:      drivers/devfreq/exynos-bus.c
3722 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3723
3724 DEVICE NUMBER REGISTRY
3725 M:      Torben Mathiasen <device@lanana.org>
3726 W:      http://lanana.org/docs/device-list/index.html
3727 S:      Maintained
3728
3729 DEVICE-MAPPER  (LVM)
3730 M:      Alasdair Kergon <agk@redhat.com>
3731 M:      Mike Snitzer <snitzer@redhat.com>
3732 M:      dm-devel@redhat.com
3733 L:      dm-devel@redhat.com
3734 W:      http://sources.redhat.com/dm
3735 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3737 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3738 S:      Maintained
3739 F:      Documentation/device-mapper/
3740 F:      drivers/md/dm*
3741 F:      drivers/md/persistent-data/
3742 F:      include/linux/device-mapper.h
3743 F:      include/linux/dm-*.h
3744 F:      include/uapi/linux/dm-*.h
3745
3746 DEVLINK
3747 M:      Jiri Pirko <jiri@mellanox.com>
3748 L:      netdev@vger.kernel.org
3749 S:      Supported
3750 F:      net/core/devlink.c
3751 F:      include/net/devlink.h
3752 F:      include/uapi/linux/devlink.h
3753
3754 DIALOG SEMICONDUCTOR DRIVERS
3755 M:      Support Opensource <support.opensource@diasemi.com>
3756 W:      http://www.dialog-semiconductor.com/products
3757 S:      Supported
3758 F:      Documentation/hwmon/da90??
3759 F:      Documentation/devicetree/bindings/mfd/da90*.txt
3760 F:      Documentation/devicetree/bindings/regulator/da92*.txt
3761 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3762 F:      drivers/gpio/gpio-da90??.c
3763 F:      drivers/hwmon/da90??-hwmon.c
3764 F:      drivers/iio/adc/da91??-*.c
3765 F:      drivers/input/misc/da90??_onkey.c
3766 F:      drivers/input/touchscreen/da9052_tsi.c
3767 F:      drivers/leds/leds-da90??.c
3768 F:      drivers/mfd/da903x.c
3769 F:      drivers/mfd/da90??-*.c
3770 F:      drivers/mfd/da91??-*.c
3771 F:      drivers/power/da9052-battery.c
3772 F:      drivers/power/da91??-*.c
3773 F:      drivers/regulator/da903x.c
3774 F:      drivers/regulator/da9???-regulator.[ch]
3775 F:      drivers/rtc/rtc-da90??.c
3776 F:      drivers/video/backlight/da90??_bl.c
3777 F:      drivers/watchdog/da90??_wdt.c
3778 F:      include/linux/mfd/da903x.h
3779 F:      include/linux/mfd/da9052/
3780 F:      include/linux/mfd/da9055/
3781 F:      include/linux/mfd/da9062/
3782 F:      include/linux/mfd/da9063/
3783 F:      include/linux/mfd/da9150/
3784 F:      include/linux/regulator/da9211.h
3785 F:      include/sound/da[79]*.h
3786 F:      sound/soc/codecs/da[79]*.[ch]
3787
3788 DIGI NEO AND CLASSIC PCI PRODUCTS
3789 M:      Lidza Louina <lidza.louina@gmail.com>
3790 M:      Mark Hounschell <markh@compro.net>
3791 L:      driverdev-devel@linuxdriverproject.org
3792 S:      Maintained
3793 F:      drivers/staging/dgnc/
3794
3795 DIOLAN U2C-12 I2C DRIVER
3796 M:      Guenter Roeck <linux@roeck-us.net>
3797 L:      linux-i2c@vger.kernel.org
3798 S:      Maintained
3799 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3800
3801 DIRECT ACCESS (DAX)
3802 M:      Matthew Wilcox <willy@linux.intel.com>
3803 L:      linux-fsdevel@vger.kernel.org
3804 S:      Supported
3805 F:      fs/dax.c
3806
3807 DIRECTORY NOTIFICATION (DNOTIFY)
3808 M:      Eric Paris <eparis@parisplace.org>
3809 S:      Maintained
3810 F:      Documentation/filesystems/dnotify.txt
3811 F:      fs/notify/dnotify/
3812 F:      include/linux/dnotify.h
3813
3814 DISK GEOMETRY AND PARTITION HANDLING
3815 M:      Andries Brouwer <aeb@cwi.nl>
3816 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3817 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3818 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3819 S:      Maintained
3820
3821 DISKQUOTA
3822 M:      Jan Kara <jack@suse.com>
3823 S:      Maintained
3824 F:      Documentation/filesystems/quota.txt
3825 F:      fs/quota/
3826 F:      include/linux/quota*.h
3827 F:      include/uapi/linux/quota*.h
3828
3829 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3830 M:      Bernie Thompson <bernie@plugable.com>
3831 L:      linux-fbdev@vger.kernel.org
3832 S:      Maintained
3833 W:      http://plugable.com/category/projects/udlfb/
3834 F:      drivers/video/fbdev/udlfb.c
3835 F:      include/video/udlfb.h
3836 F:      Documentation/fb/udlfb.txt
3837
3838 DISTRIBUTED LOCK MANAGER (DLM)
3839 M:      Christine Caulfield <ccaulfie@redhat.com>
3840 M:      David Teigland <teigland@redhat.com>
3841 L:      cluster-devel@redhat.com
3842 W:      http://sources.redhat.com/cluster/
3843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3844 S:      Supported
3845 F:      fs/dlm/
3846
3847 DMA BUFFER SHARING FRAMEWORK
3848 M:      Sumit Semwal <sumit.semwal@linaro.org>
3849 S:      Maintained
3850 L:      linux-media@vger.kernel.org
3851 L:      dri-devel@lists.freedesktop.org
3852 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3853 F:      drivers/dma-buf/
3854 F:      include/linux/dma-buf*
3855 F:      include/linux/reservation.h
3856 F:      include/linux/*fence.h
3857 F:      Documentation/dma-buf-sharing.txt
3858 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3859
3860 SYNC FILE FRAMEWORK
3861 M:      Sumit Semwal <sumit.semwal@linaro.org>
3862 R:      Gustavo Padovan <gustavo@padovan.org>
3863 S:      Maintained
3864 L:      linux-media@vger.kernel.org
3865 L:      dri-devel@lists.freedesktop.org
3866 F:      drivers/dma-buf/sync_file.c
3867 F:      include/linux/sync_file.h
3868 F:      Documentation/sync_file.txt
3869 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3870
3871 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3872 M:      Vinod Koul <vinod.koul@intel.com>
3873 L:      dmaengine@vger.kernel.org
3874 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3875 S:      Maintained
3876 F:      drivers/dma/
3877 F:      include/linux/dmaengine.h
3878 F:      Documentation/devicetree/bindings/dma/
3879 F:      Documentation/dmaengine/
3880 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3881
3882 DME1737 HARDWARE MONITOR DRIVER
3883 M:      Juerg Haefliger <juergh@gmail.com>
3884 L:      linux-hwmon@vger.kernel.org
3885 S:      Maintained
3886 F:      Documentation/hwmon/dme1737
3887 F:      drivers/hwmon/dme1737.c
3888
3889 DMI/SMBIOS SUPPORT
3890 M:      Jean Delvare <jdelvare@suse.com>
3891 S:      Maintained
3892 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3893 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3894 F:      drivers/firmware/dmi-id.c
3895 F:      drivers/firmware/dmi_scan.c
3896 F:      include/linux/dmi.h
3897
3898 DOCUMENTATION
3899 M:      Jonathan Corbet <corbet@lwn.net>
3900 L:      linux-doc@vger.kernel.org
3901 S:      Maintained
3902 F:      Documentation/
3903 F:      scripts/docproc.c
3904 F:      scripts/kernel-doc*
3905 X:      Documentation/ABI/
3906 X:      Documentation/devicetree/
3907 X:      Documentation/acpi
3908 X:      Documentation/power
3909 X:      Documentation/spi
3910 X:      Documentation/DocBook/media
3911 T:      git git://git.lwn.net/linux.git docs-next
3912
3913 DOUBLETALK DRIVER
3914 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3915 L:      blinux-list@redhat.com
3916 S:      Maintained
3917 F:      drivers/char/dtlk.c
3918 F:      include/linux/dtlk.h
3919
3920 DPT_I2O SCSI RAID DRIVER
3921 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3922 L:      linux-scsi@vger.kernel.org
3923 W:      http://www.adaptec.com/
3924 S:      Maintained
3925 F:      drivers/scsi/dpt*
3926 F:      drivers/scsi/dpt/
3927
3928 DRBD DRIVER
3929 M:      Philipp Reisner <philipp.reisner@linbit.com>
3930 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3931 L:      drbd-dev@lists.linbit.com
3932 W:      http://www.drbd.org
3933 T:      git git://git.linbit.com/linux-drbd.git
3934 T:      git git://git.linbit.com/drbd-8.4.git
3935 S:      Supported
3936 F:      drivers/block/drbd/
3937 F:      lib/lru_cache.c
3938 F:      Documentation/blockdev/drbd/
3939
3940 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3941 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3943 S:      Supported
3944 F:      Documentation/kobject.txt
3945 F:      drivers/base/
3946 F:      fs/debugfs/
3947 F:      fs/kernfs/
3948 F:      fs/sysfs/
3949 F:      include/linux/debugfs.h
3950 F:      include/linux/kobj*
3951 F:      lib/kobj*
3952
3953 DRM DRIVERS
3954 M:      David Airlie <airlied@linux.ie>
3955 L:      dri-devel@lists.freedesktop.org
3956 T:      git git://people.freedesktop.org/~airlied/linux
3957 S:      Maintained
3958 F:      drivers/gpu/drm/
3959 F:      drivers/gpu/vga/
3960 F:      Documentation/devicetree/bindings/display/
3961 F:      Documentation/devicetree/bindings/gpu/
3962 F:      Documentation/devicetree/bindings/video/
3963 F:      Documentation/gpu/
3964 F:      include/drm/
3965 F:      include/uapi/drm/
3966
3967 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
3968 M:      Dave Airlie <airlied@redhat.com>
3969 S:      Odd Fixes
3970 F:      drivers/gpu/drm/ast/
3971
3972 DRM DRIVER FOR BOCHS VIRTUAL GPU
3973 M:      Gerd Hoffmann <kraxel@redhat.com>
3974 S:      Odd Fixes
3975 F:      drivers/gpu/drm/bochs/
3976
3977 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
3978 M:      Dave Airlie <airlied@redhat.com>
3979 S:      Odd Fixes
3980 F:      drivers/gpu/drm/cirrus/
3981
3982 RADEON and AMDGPU DRM DRIVERS
3983 M:      Alex Deucher <alexander.deucher@amd.com>
3984 M:      Christian König <christian.koenig@amd.com>
3985 L:      dri-devel@lists.freedesktop.org
3986 T:      git git://people.freedesktop.org/~agd5f/linux
3987 S:      Supported
3988 F:      drivers/gpu/drm/radeon/
3989 F:      include/uapi/drm/radeon_drm.h
3990 F:      drivers/gpu/drm/amd/
3991 F:      include/uapi/drm/amdgpu_drm.h
3992
3993 DRM PANEL DRIVERS
3994 M:      Thierry Reding <thierry.reding@gmail.com>
3995 L:      dri-devel@lists.freedesktop.org
3996 T:      git git://anongit.freedesktop.org/tegra/linux.git
3997 S:      Maintained
3998 F:      drivers/gpu/drm/drm_panel.c
3999 F:      drivers/gpu/drm/panel/
4000 F:      include/drm/drm_panel.h
4001 F:      Documentation/devicetree/bindings/display/panel/
4002
4003 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
4004 M:      Daniel Vetter <daniel.vetter@intel.com>
4005 M:      Jani Nikula <jani.nikula@linux.intel.com>
4006 L:      intel-gfx@lists.freedesktop.org
4007 L:      dri-devel@lists.freedesktop.org
4008 W:      https://01.org/linuxgraphics/
4009 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
4010 T:      git git://anongit.freedesktop.org/drm-intel
4011 S:      Supported
4012 F:      drivers/gpu/drm/i915/
4013 F:      include/drm/i915*
4014 F:      include/uapi/drm/i915_drm.h
4015 F:      Documentation/gpu/i915.rst
4016
4017 DRM DRIVERS FOR ATMEL HLCDC
4018 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
4019 L:      dri-devel@lists.freedesktop.org
4020 S:      Supported
4021 F:      drivers/gpu/drm/atmel-hlcdc/
4022 F:      Documentation/devicetree/bindings/drm/atmel/
4023
4024 DRM DRIVERS FOR ALLWINNER A10
4025 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
4026 L:      dri-devel@lists.freedesktop.org
4027 S:      Supported
4028 F:      drivers/gpu/drm/sun4i/
4029 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4030
4031 DRM DRIVERS FOR EXYNOS
4032 M:      Inki Dae <inki.dae@samsung.com>
4033 M:      Joonyoung Shim <jy0922.shim@samsung.com>
4034 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
4035 M:      Kyungmin Park <kyungmin.park@samsung.com>
4036 L:      dri-devel@lists.freedesktop.org
4037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4038 S:      Supported
4039 F:      drivers/gpu/drm/exynos/
4040 F:      include/uapi/drm/exynos_drm.h
4041 F:      Documentation/devicetree/bindings/display/exynos/
4042
4043 DRM DRIVERS FOR FREESCALE DCU
4044 M:      Stefan Agner <stefan@agner.ch>
4045 M:      Alison Wang <alison.wang@freescale.com>
4046 L:      dri-devel@lists.freedesktop.org
4047 S:      Supported
4048 F:      drivers/gpu/drm/fsl-dcu/
4049 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4050 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4051 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4052
4053 DRM DRIVERS FOR FREESCALE IMX
4054 M:      Philipp Zabel <p.zabel@pengutronix.de>
4055 L:      dri-devel@lists.freedesktop.org
4056 S:      Maintained
4057 F:      drivers/gpu/drm/imx/
4058 F:      drivers/gpu/ipu-v3/
4059 F:      Documentation/devicetree/bindings/display/imx/
4060
4061 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4062 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
4063 L:      dri-devel@lists.freedesktop.org
4064 T:      git git://github.com/patjak/drm-gma500
4065 S:      Maintained
4066 F:      drivers/gpu/drm/gma500/
4067
4068 DRM DRIVERS FOR HISILICON
4069 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
4070 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
4071 R:      Chen Feng <puck.chen@hisilicon.com>
4072 L:      dri-devel@lists.freedesktop.org
4073 T:      git git://github.com/xin3liang/linux.git
4074 S:      Maintained
4075 F:      drivers/gpu/drm/hisilicon/
4076 F:      Documentation/devicetree/bindings/display/hisilicon/
4077
4078 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4079 S:      Orphan / Obsolete
4080 F:      drivers/gpu/drm/i810/
4081 F:      include/uapi/drm/i810_drm.h
4082
4083 DRM DRIVER FOR MSM ADRENO GPU
4084 M:      Rob Clark <robdclark@gmail.com>
4085 L:      linux-arm-msm@vger.kernel.org
4086 L:      dri-devel@lists.freedesktop.org
4087 L:      freedreno@lists.freedesktop.org
4088 T:      git git://people.freedesktop.org/~robclark/linux
4089 S:      Maintained
4090 F:      drivers/gpu/drm/msm/
4091 F:      include/uapi/drm/msm_drm.h
4092 F:      Documentation/devicetree/bindings/display/msm/
4093
4094 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4095 M:      Ben Skeggs <bskeggs@redhat.com>
4096 L:      dri-devel@lists.freedesktop.org
4097 L:      nouveau@lists.freedesktop.org
4098 T:      git git://github.com/skeggsb/linux
4099 S:      Supported
4100 F:      drivers/gpu/drm/nouveau/
4101 F:      include/uapi/drm/nouveau_drm.h
4102
4103 DRM DRIVERS FOR NVIDIA TEGRA
4104 M:      Thierry Reding <thierry.reding@gmail.com>
4105 L:      dri-devel@lists.freedesktop.org
4106 L:      linux-tegra@vger.kernel.org
4107 T:      git git://anongit.freedesktop.org/tegra/linux.git
4108 S:      Supported
4109 F:      drivers/gpu/drm/tegra/
4110 F:      drivers/gpu/host1x/
4111 F:      include/linux/host1x.h
4112 F:      include/uapi/drm/tegra_drm.h
4113 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4114
4115 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4116 S:      Orphan / Obsolete
4117 F:      drivers/gpu/drm/mga/
4118 F:      include/uapi/drm/mga_drm.h
4119
4120 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4121 M:      Dave Airlie <airlied@redhat.com>
4122 S:      Odd Fixes
4123 F:      drivers/gpu/drm/mgag200/
4124
4125 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4126 S:      Orphan / Obsolete
4127 F:      drivers/gpu/drm/r128/
4128 F:      include/uapi/drm/r128_drm.h
4129
4130 DRM DRIVERS FOR RENESAS
4131 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
4132 L:      dri-devel@lists.freedesktop.org
4133 L:      linux-renesas-soc@vger.kernel.org
4134 T:      git git://linuxtv.org/pinchartl/fbdev
4135 S:      Supported
4136 F:      drivers/gpu/drm/rcar-du/
4137 F:      drivers/gpu/drm/shmobile/
4138 F:      include/linux/platform_data/shmob_drm.h
4139 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4140
4141 DRM DRIVER FOR QXL VIRTUAL GPU
4142 M:      Dave Airlie <airlied@redhat.com>
4143 S:      Odd Fixes
4144 F:      drivers/gpu/drm/qxl/
4145 F:      include/uapi/drm/qxl_drm.h
4146
4147 DRM DRIVERS FOR ROCKCHIP
4148 M:      Mark Yao <mark.yao@rock-chips.com>
4149 L:      dri-devel@lists.freedesktop.org
4150 S:      Maintained
4151 F:      drivers/gpu/drm/rockchip/
4152 F:      Documentation/devicetree/bindings/display/rockchip/
4153
4154 DRM DRIVER FOR SAVAGE VIDEO CARDS
4155 S:      Orphan / Obsolete
4156 F:      drivers/gpu/drm/savage/
4157 F:      include/uapi/drm/savage_drm.h
4158
4159 DRM DRIVER FOR SIS VIDEO CARDS
4160 S:      Orphan / Obsolete
4161 F:      drivers/gpu/drm/sis/
4162 F:      include/uapi/drm/sis_drm.h
4163
4164 DRM DRIVERS FOR STI
4165 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
4166 M:      Vincent Abriou <vincent.abriou@st.com>
4167 L:      dri-devel@lists.freedesktop.org
4168 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
4169 S:      Maintained
4170 F:      drivers/gpu/drm/sti
4171 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4172
4173 DRM DRIVER FOR TDFX VIDEO CARDS
4174 S:      Orphan / Obsolete
4175 F:      drivers/gpu/drm/tdfx/
4176
4177 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4178 M:      Dave Airlie <airlied@redhat.com>
4179 S:      Odd Fixes
4180 F:      drivers/gpu/drm/udl/
4181
4182 DRM DRIVERS FOR VIVANTE GPU IP
4183 M:      Lucas Stach <l.stach@pengutronix.de>
4184 R:      Russell King <linux+etnaviv@armlinux.org.uk>
4185 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
4186 L:      dri-devel@lists.freedesktop.org
4187 S:      Maintained
4188 F:      drivers/gpu/drm/etnaviv/
4189 F:      include/uapi/drm/etnaviv_drm.h
4190 F:      Documentation/devicetree/bindings/display/etnaviv/
4191
4192 DRM DRIVER FOR VMWARE VIRTUAL GPU
4193 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
4194 M:      Sinclair Yeh <syeh@vmware.com>
4195 M:      Thomas Hellstrom <thellstrom@vmware.com>
4196 L:      dri-devel@lists.freedesktop.org
4197 T:      git git://people.freedesktop.org/~syeh/repos_linux
4198 T:      git git://people.freedesktop.org/~thomash/linux
4199 S:      Supported
4200 F:      drivers/gpu/drm/vmwgfx/
4201 F:      include/uapi/drm/vmwgfx_drm.h
4202
4203 DRM DRIVERS FOR VC4
4204 M:      Eric Anholt <eric@anholt.net>
4205 T:      git git://github.com/anholt/linux
4206 S:      Supported
4207 F:      drivers/gpu/drm/vc4/
4208 F:      include/uapi/drm/vc4_drm.h
4209 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4210
4211 DRM DRIVERS FOR TI OMAP
4212 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4213 L:      dri-devel@lists.freedesktop.org
4214 S:      Maintained
4215 F:      drivers/gpu/drm/omapdrm/
4216 F:      Documentation/devicetree/bindings/display/ti/
4217
4218 DRM DRIVERS FOR TI LCDC
4219 M:      Jyri Sarha <jsarha@ti.com>
4220 R:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4221 L:      dri-devel@lists.freedesktop.org
4222 S:      Maintained
4223 F:      drivers/gpu/drm/tilcdc/
4224 F:      Documentation/devicetree/bindings/display/tilcdc/
4225
4226 DSBR100 USB FM RADIO DRIVER
4227 M:      Alexey Klimov <klimov.linux@gmail.com>
4228 L:      linux-media@vger.kernel.org
4229 T:      git git://linuxtv.org/media_tree.git
4230 S:      Maintained
4231 F:      drivers/media/radio/dsbr100.c
4232
4233 DSCC4 DRIVER
4234 M:      Francois Romieu <romieu@fr.zoreil.com>
4235 L:      netdev@vger.kernel.org
4236 S:      Maintained
4237 F:      drivers/net/wan/dscc4.c
4238
4239 DT3155 MEDIA DRIVER
4240 M:      Hans Verkuil <hverkuil@xs4all.nl>
4241 L:      linux-media@vger.kernel.org
4242 T:      git git://linuxtv.org/media_tree.git
4243 W:      https://linuxtv.org
4244 S:      Odd Fixes
4245 F:      drivers/media/pci/dt3155/
4246
4247 DVB_USB_AF9015 MEDIA DRIVER
4248 M:      Antti Palosaari <crope@iki.fi>
4249 L:      linux-media@vger.kernel.org
4250 W:      https://linuxtv.org
4251 W:      http://palosaari.fi/linux/
4252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4253 T:      git git://linuxtv.org/anttip/media_tree.git
4254 S:      Maintained
4255 F:      drivers/media/usb/dvb-usb-v2/af9015*
4256
4257 DVB_USB_AF9035 MEDIA DRIVER
4258 M:      Antti Palosaari <crope@iki.fi>
4259 L:      linux-media@vger.kernel.org
4260 W:      https://linuxtv.org
4261 W:      http://palosaari.fi/linux/
4262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4263 T:      git git://linuxtv.org/anttip/media_tree.git
4264 S:      Maintained
4265 F:      drivers/media/usb/dvb-usb-v2/af9035*
4266
4267 DVB_USB_ANYSEE MEDIA DRIVER
4268 M:      Antti Palosaari <crope@iki.fi>
4269 L:      linux-media@vger.kernel.org
4270 W:      https://linuxtv.org
4271 W:      http://palosaari.fi/linux/
4272 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4273 T:      git git://linuxtv.org/anttip/media_tree.git
4274 S:      Maintained
4275 F:      drivers/media/usb/dvb-usb-v2/anysee*
4276
4277 DVB_USB_AU6610 MEDIA DRIVER
4278 M:      Antti Palosaari <crope@iki.fi>
4279 L:      linux-media@vger.kernel.org
4280 W:      https://linuxtv.org
4281 W:      http://palosaari.fi/linux/
4282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4283 T:      git git://linuxtv.org/anttip/media_tree.git
4284 S:      Maintained
4285 F:      drivers/media/usb/dvb-usb-v2/au6610*
4286
4287 DVB_USB_CE6230 MEDIA DRIVER
4288 M:      Antti Palosaari <crope@iki.fi>
4289 L:      linux-media@vger.kernel.org
4290 W:      https://linuxtv.org
4291 W:      http://palosaari.fi/linux/
4292 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4293 T:      git git://linuxtv.org/anttip/media_tree.git
4294 S:      Maintained
4295 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4296
4297 DVB_USB_CXUSB MEDIA DRIVER
4298 M:      Michael Krufky <mkrufky@linuxtv.org>
4299 L:      linux-media@vger.kernel.org
4300 W:      https://linuxtv.org
4301 W:      http://github.com/mkrufky
4302 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4303 T:      git git://linuxtv.org/media_tree.git
4304 S:      Maintained
4305 F:      drivers/media/usb/dvb-usb/cxusb*
4306
4307 DVB_USB_EC168 MEDIA DRIVER
4308 M:      Antti Palosaari <crope@iki.fi>
4309 L:      linux-media@vger.kernel.org
4310 W:      https://linuxtv.org
4311 W:      http://palosaari.fi/linux/
4312 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4313 T:      git git://linuxtv.org/anttip/media_tree.git
4314 S:      Maintained
4315 F:      drivers/media/usb/dvb-usb-v2/ec168*
4316
4317 DVB_USB_GL861 MEDIA DRIVER
4318 M:      Antti Palosaari <crope@iki.fi>
4319 L:      linux-media@vger.kernel.org
4320 W:      https://linuxtv.org
4321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4322 T:      git git://linuxtv.org/anttip/media_tree.git
4323 S:      Maintained
4324 F:      drivers/media/usb/dvb-usb-v2/gl861*
4325
4326 DVB_USB_MXL111SF MEDIA DRIVER
4327 M:      Michael Krufky <mkrufky@linuxtv.org>
4328 L:      linux-media@vger.kernel.org
4329 W:      https://linuxtv.org
4330 W:      http://github.com/mkrufky
4331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4332 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4333 S:      Maintained
4334 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4335
4336 DVB_USB_RTL28XXU MEDIA DRIVER
4337 M:      Antti Palosaari <crope@iki.fi>
4338 L:      linux-media@vger.kernel.org
4339 W:      https://linuxtv.org
4340 W:      http://palosaari.fi/linux/
4341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4342 T:      git git://linuxtv.org/anttip/media_tree.git
4343 S:      Maintained
4344 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4345
4346 DVB_USB_V2 MEDIA DRIVER
4347 M:      Antti Palosaari <crope@iki.fi>
4348 L:      linux-media@vger.kernel.org
4349 W:      https://linuxtv.org
4350 W:      http://palosaari.fi/linux/
4351 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4352 T:      git git://linuxtv.org/anttip/media_tree.git
4353 S:      Maintained
4354 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4355 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4356
4357 DYNAMIC DEBUG
4358 M:      Jason Baron <jbaron@akamai.com>
4359 S:      Maintained
4360 F:      lib/dynamic_debug.c
4361 F:      include/linux/dynamic_debug.h
4362
4363 DZ DECSTATION DZ11 SERIAL DRIVER
4364 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4365 S:      Maintained
4366 F:      drivers/tty/serial/dz.*
4367
4368 E3X0 POWER BUTTON DRIVER
4369 M:      Moritz Fischer <moritz.fischer@ettus.com>
4370 L:      usrp-users@lists.ettus.com
4371 W:      http://www.ettus.com
4372 S:      Supported
4373 F:      drivers/input/misc/e3x0-button.c
4374 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4375
4376 E4000 MEDIA DRIVER
4377 M:      Antti Palosaari <crope@iki.fi>
4378 L:      linux-media@vger.kernel.org
4379 W:      https://linuxtv.org
4380 W:      http://palosaari.fi/linux/
4381 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4382 T:      git git://linuxtv.org/anttip/media_tree.git
4383 S:      Maintained
4384 F:      drivers/media/tuners/e4000*
4385
4386 EATA ISA/EISA/PCI SCSI DRIVER
4387 M:      Dario Ballabio <ballabio_dario@emc.com>
4388 L:      linux-scsi@vger.kernel.org
4389 S:      Maintained
4390 F:      drivers/scsi/eata.c
4391
4392 EC100 MEDIA DRIVER
4393 M:      Antti Palosaari <crope@iki.fi>
4394 L:      linux-media@vger.kernel.org
4395 W:      https://linuxtv.org
4396 W:      http://palosaari.fi/linux/
4397 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4398 T:      git git://linuxtv.org/anttip/media_tree.git
4399 S:      Maintained
4400 F:      drivers/media/dvb-frontends/ec100*
4401
4402 ECRYPT FILE SYSTEM
4403 M:      Tyler Hicks <tyhicks@canonical.com>
4404 L:      ecryptfs@vger.kernel.org
4405 W:      http://ecryptfs.org
4406 W:      https://launchpad.net/ecryptfs
4407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4408 S:      Supported
4409 F:      Documentation/filesystems/ecryptfs.txt
4410 F:      fs/ecryptfs/
4411
4412 EDAC-CORE
4413 M:      Borislav Petkov <bp@alien8.de>
4414 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4415 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4416 L:      linux-edac@vger.kernel.org
4417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4419 S:      Supported
4420 F:      Documentation/edac.txt
4421 F:      drivers/edac/
4422 F:      include/linux/edac.h
4423
4424 EDAC-AMD64
4425 M:      Borislav Petkov <bp@alien8.de>
4426 L:      linux-edac@vger.kernel.org
4427 S:      Maintained
4428 F:      drivers/edac/amd64_edac*
4429
4430 EDAC-CALXEDA
4431 M:      Robert Richter <rric@kernel.org>
4432 L:      linux-edac@vger.kernel.org
4433 S:      Maintained
4434 F:      drivers/edac/highbank*
4435
4436 EDAC-CAVIUM
4437 M:      Ralf Baechle <ralf@linux-mips.org>
4438 M:      David Daney <david.daney@cavium.com>
4439 L:      linux-edac@vger.kernel.org
4440 L:      linux-mips@linux-mips.org
4441 S:      Supported
4442 F:      drivers/edac/octeon_edac*
4443
4444 EDAC-E752X
4445 M:      Mark Gross <mark.gross@intel.com>
4446 L:      linux-edac@vger.kernel.org
4447 S:      Maintained
4448 F:      drivers/edac/e752x_edac.c
4449
4450 EDAC-E7XXX
4451 L:      linux-edac@vger.kernel.org
4452 S:      Maintained
4453 F:      drivers/edac/e7xxx_edac.c
4454
4455 EDAC-FSL_DDR
4456 M:      York Sun <york.sun@nxp.com>
4457 L:      linux-edac@vger.kernel.org
4458 S:      Maintained
4459 F:      drivers/edac/fsl_ddr_edac.*
4460
4461 EDAC-GHES
4462 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4463 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4464 L:      linux-edac@vger.kernel.org
4465 S:      Maintained
4466 F:      drivers/edac/ghes_edac.c
4467
4468 EDAC-I82443BXGX
4469 M:      Tim Small <tim@buttersideup.com>
4470 L:      linux-edac@vger.kernel.org
4471 S:      Maintained
4472 F:      drivers/edac/i82443bxgx_edac.c
4473
4474 EDAC-I3000
4475 L:      linux-edac@vger.kernel.org
4476 S:      Orphan
4477 F:      drivers/edac/i3000_edac.c
4478
4479 EDAC-I5000
4480 L:      linux-edac@vger.kernel.org
4481 S:      Maintained
4482 F:      drivers/edac/i5000_edac.c
4483
4484 EDAC-I5400
4485 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4486 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4487 L:      linux-edac@vger.kernel.org
4488 S:      Maintained
4489 F:      drivers/edac/i5400_edac.c
4490
4491 EDAC-I7300
4492 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4493 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4494 L:      linux-edac@vger.kernel.org
4495 S:      Maintained
4496 F:      drivers/edac/i7300_edac.c
4497
4498 EDAC-I7CORE
4499 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4500 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4501 L:      linux-edac@vger.kernel.org
4502 S:      Maintained
4503 F:      drivers/edac/i7core_edac.c
4504
4505 EDAC-I82975X
4506 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4507 M:      "Arvind R." <arvino55@gmail.com>
4508 L:      linux-edac@vger.kernel.org
4509 S:      Maintained
4510 F:      drivers/edac/i82975x_edac.c
4511
4512 EDAC-IE31200
4513 M:      Jason Baron <jbaron@akamai.com>
4514 L:      linux-edac@vger.kernel.org
4515 S:      Maintained
4516 F:      drivers/edac/ie31200_edac.c
4517
4518 EDAC-MPC85XX
4519 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4520 L:      linux-edac@vger.kernel.org
4521 S:      Maintained
4522 F:      drivers/edac/mpc85xx_edac.[ch]
4523
4524 EDAC-PASEMI
4525 M:      Egor Martovetsky <egor@pasemi.com>
4526 L:      linux-edac@vger.kernel.org
4527 S:      Maintained
4528 F:      drivers/edac/pasemi_edac.c
4529
4530 EDAC-R82600
4531 M:      Tim Small <tim@buttersideup.com>
4532 L:      linux-edac@vger.kernel.org
4533 S:      Maintained
4534 F:      drivers/edac/r82600_edac.c
4535
4536 EDAC-SBRIDGE
4537 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4538 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4539 L:      linux-edac@vger.kernel.org
4540 S:      Maintained
4541 F:      drivers/edac/sb_edac.c
4542
4543 EDAC-SKYLAKE
4544 M:      Tony Luck <tony.luck@intel.com>
4545 L:      linux-edac@vger.kernel.org
4546 S:      Maintained
4547 F:      drivers/edac/skx_edac.c
4548
4549 EDAC-XGENE
4550 APPLIED MICRO (APM) X-GENE SOC EDAC
4551 M:     Loc Ho <lho@apm.com>
4552 S:     Supported
4553 F:     drivers/edac/xgene_edac.c
4554 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4555
4556 EDIROL UA-101/UA-1000 DRIVER
4557 M:      Clemens Ladisch <clemens@ladisch.de>
4558 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4559 T:      git git://git.alsa-project.org/alsa-kernel.git
4560 S:      Maintained
4561 F:      sound/usb/misc/ua101.c
4562
4563 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4564 M:      Matt Fleming <matt@codeblueprint.co.uk>
4565 L:      linux-efi@vger.kernel.org
4566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4567 S:      Maintained
4568 F:      Documentation/efi-stub.txt
4569 F:      arch/ia64/kernel/efi.c
4570 F:      arch/x86/boot/compressed/eboot.[ch]
4571 F:      arch/x86/include/asm/efi.h
4572 F:      arch/x86/platform/efi/
4573 F:      drivers/firmware/efi/
4574 F:      include/linux/efi*.h
4575
4576 EFI VARIABLE FILESYSTEM
4577 M:      Matthew Garrett <matthew.garrett@nebula.com>
4578 M:      Jeremy Kerr <jk@ozlabs.org>
4579 M:      Matt Fleming <matt@codeblueprint.co.uk>
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4581 L:      linux-efi@vger.kernel.org
4582 S:      Maintained
4583 F:      fs/efivarfs/
4584
4585 EFIFB FRAMEBUFFER DRIVER
4586 L:      linux-fbdev@vger.kernel.org
4587 M:      Peter Jones <pjones@redhat.com>
4588 S:      Maintained
4589 F:      drivers/video/fbdev/efifb.c
4590
4591 EFI TEST DRIVER
4592 L:      linux-efi@vger.kernel.org
4593 M:      Ivan Hu <ivan.hu@canonical.com>
4594 M:      Matt Fleming <matt@codeblueprint.co.uk>
4595 S:      Maintained
4596 F:      drivers/firmware/efi/test/
4597
4598 EFS FILESYSTEM
4599 W:      http://aeschi.ch.eu.org/efs/
4600 S:      Orphan
4601 F:      fs/efs/
4602
4603 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4604 M:      Douglas Miller <dougmill@linux.vnet.ibm.com>
4605 L:      netdev@vger.kernel.org
4606 S:      Maintained
4607 F:      drivers/net/ethernet/ibm/ehea/
4608
4609 EM28XX VIDEO4LINUX DRIVER
4610 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
4611 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4612 L:      linux-media@vger.kernel.org
4613 W:      https://linuxtv.org
4614 T:      git git://linuxtv.org/media_tree.git
4615 S:      Maintained
4616 F:      drivers/media/usb/em28xx/
4617
4618 EMBEDDED LINUX
4619 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4620 M:      Matt Mackall <mpm@selenic.com>
4621 M:      David Woodhouse <dwmw2@infradead.org>
4622 L:      linux-embedded@vger.kernel.org
4623 S:      Maintained
4624
4625 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4626 M:      James Smart <james.smart@avagotech.com>
4627 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4628 L:      linux-scsi@vger.kernel.org
4629 W:      http://www.avagotech.com
4630 S:      Supported
4631 F:      drivers/scsi/lpfc/
4632
4633 ENE CB710 FLASH CARD READER DRIVER
4634 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4635 S:      Maintained
4636 F:      drivers/misc/cb710/
4637 F:      drivers/mmc/host/cb710-mmc.*
4638 F:      include/linux/cb710.h
4639
4640 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4641 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4642 S:      Maintained
4643 F:      drivers/media/rc/ene_ir.*
4644
4645 EPSON S1D13XXX FRAMEBUFFER DRIVER
4646 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4647 S:      Maintained
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4649 F:      drivers/video/fbdev/s1d13xxxfb.c
4650 F:      include/video/s1d13xxxfb.h
4651
4652 ET131X NETWORK DRIVER
4653 M:      Mark Einon <mark.einon@gmail.com>
4654 S:      Odd Fixes
4655 F:      drivers/net/ethernet/agere/
4656
4657 ETHERNET BRIDGE
4658 M:      Stephen Hemminger <stephen@networkplumber.org>
4659 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4660 L:      netdev@vger.kernel.org
4661 W:      http://www.linuxfoundation.org/en/Net:Bridge
4662 S:      Maintained
4663 F:      include/linux/netfilter_bridge/
4664 F:      net/bridge/
4665
4666 ETHERNET PHY LIBRARY
4667 M:      Florian Fainelli <f.fainelli@gmail.com>
4668 L:      netdev@vger.kernel.org
4669 S:      Maintained
4670 F:      include/linux/phy.h
4671 F:      include/linux/phy_fixed.h
4672 F:      drivers/net/phy/
4673 F:      Documentation/networking/phy.txt
4674 F:      drivers/of/of_mdio.c
4675 F:      drivers/of/of_net.c
4676
4677 EXT2 FILE SYSTEM
4678 M:      Jan Kara <jack@suse.com>
4679 L:      linux-ext4@vger.kernel.org
4680 S:      Maintained
4681 F:      Documentation/filesystems/ext2.txt
4682 F:      fs/ext2/
4683 F:      include/linux/ext2*
4684
4685 EXT4 FILE SYSTEM
4686 M:      "Theodore Ts'o" <tytso@mit.edu>
4687 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4688 L:      linux-ext4@vger.kernel.org
4689 W:      http://ext4.wiki.kernel.org
4690 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4692 S:      Maintained
4693 F:      Documentation/filesystems/ext4.txt
4694 F:      fs/ext4/
4695
4696 Extended Verification Module (EVM)
4697 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4698 L:      linux-ima-devel@lists.sourceforge.net
4699 L:      linux-security-module@vger.kernel.org
4700 S:      Supported
4701 F:      security/integrity/evm/
4702
4703 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4704 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4705 M:      Chanwoo Choi <cw00.choi@samsung.com>
4706 L:      linux-kernel@vger.kernel.org
4707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4708 S:      Maintained
4709 F:      drivers/extcon/
4710 F:      include/linux/extcon/
4711 F:      include/linux/extcon.h
4712 F:      Documentation/extcon/
4713 F:      Documentation/devicetree/bindings/extcon/
4714
4715 EXYNOS DP DRIVER
4716 M:      Jingoo Han <jingoohan1@gmail.com>
4717 L:      dri-devel@lists.freedesktop.org
4718 S:      Maintained
4719 F:      drivers/gpu/drm/exynos/exynos_dp*
4720
4721 EXYNOS SYSMMU (IOMMU) driver
4722 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4723 L:      iommu@lists.linux-foundation.org
4724 S:      Maintained
4725 F:      drivers/iommu/exynos-iommu.c
4726
4727 EXYNOS MIPI DISPLAY DRIVERS
4728 M:      Inki Dae <inki.dae@samsung.com>
4729 M:      Donghwa Lee <dh09.lee@samsung.com>
4730 M:      Kyungmin Park <kyungmin.park@samsung.com>
4731 L:      linux-fbdev@vger.kernel.org
4732 S:      Maintained
4733 F:      drivers/video/fbdev/exynos/exynos_mipi*
4734 F:      include/video/exynos_mipi*
4735
4736 EZchip NPS platform support
4737 M:      Noam Camus <noamc@ezchip.com>
4738 S:      Supported
4739 F:      arch/arc/plat-eznps
4740 F:      arch/arc/boot/dts/eznps.dts
4741
4742 F71805F HARDWARE MONITORING DRIVER
4743 M:      Jean Delvare <jdelvare@suse.com>
4744 L:      linux-hwmon@vger.kernel.org
4745 S:      Maintained
4746 F:      Documentation/hwmon/f71805f
4747 F:      drivers/hwmon/f71805f.c
4748
4749 FC0011 TUNER DRIVER
4750 M:      Michael Buesch <m@bues.ch>
4751 L:      linux-media@vger.kernel.org
4752 S:      Maintained
4753 F:      drivers/media/tuners/fc0011.h
4754 F:      drivers/media/tuners/fc0011.c
4755
4756 FC2580 MEDIA DRIVER
4757 M:      Antti Palosaari <crope@iki.fi>
4758 L:      linux-media@vger.kernel.org
4759 W:      https://linuxtv.org
4760 W:      http://palosaari.fi/linux/
4761 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4762 T:      git git://linuxtv.org/anttip/media_tree.git
4763 S:      Maintained
4764 F:      drivers/media/tuners/fc2580*
4765
4766 FANOTIFY
4767 M:      Eric Paris <eparis@redhat.com>
4768 S:      Maintained
4769 F:      fs/notify/fanotify/
4770 F:      include/linux/fanotify.h
4771 F:      include/uapi/linux/fanotify.h
4772
4773 FARSYNC SYNCHRONOUS DRIVER
4774 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4775 W:      http://www.farsite.co.uk/
4776 S:      Supported
4777 F:      drivers/net/wan/farsync.*
4778
4779 FAULT INJECTION SUPPORT
4780 M:      Akinobu Mita <akinobu.mita@gmail.com>
4781 S:      Supported
4782 F:      Documentation/fault-injection/
4783 F:      lib/fault-inject.c
4784
4785 FBTFT Framebuffer drivers
4786 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4787 M:      Noralf Trønnes <noralf@tronnes.org>
4788 S:      Maintained
4789 F:      drivers/staging/fbtft/
4790
4791 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4792 M:      Johannes Thumshirn <jth@kernel.org>
4793 L:      fcoe-devel@open-fcoe.org
4794 W:      www.Open-FCoE.org
4795 S:      Supported
4796 F:      drivers/scsi/libfc/
4797 F:      drivers/scsi/fcoe/
4798 F:      include/scsi/fc/
4799 F:      include/scsi/libfc.h
4800 F:      include/scsi/libfcoe.h
4801 F:      include/uapi/scsi/fc/
4802
4803 FILE LOCKING (flock() and fcntl()/lockf())
4804 M:      Jeff Layton <jlayton@poochiereds.net>
4805 M:      "J. Bruce Fields" <bfields@fieldses.org>
4806 L:      linux-fsdevel@vger.kernel.org
4807 S:      Maintained
4808 F:      include/linux/fcntl.h
4809 F:      include/linux/fs.h
4810 F:      include/uapi/linux/fcntl.h
4811 F:      include/uapi/linux/fs.h
4812 F:      fs/fcntl.c
4813 F:      fs/locks.c
4814
4815 FILESYSTEMS (VFS and infrastructure)
4816 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4817 L:      linux-fsdevel@vger.kernel.org
4818 S:      Maintained
4819 F:      fs/*
4820
4821 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4822 M:      Riku Voipio <riku.voipio@iki.fi>
4823 L:      linux-hwmon@vger.kernel.org
4824 S:      Maintained
4825 F:      drivers/hwmon/f75375s.c
4826 F:      include/linux/f75375s.h
4827
4828 FIREWIRE AUDIO DRIVERS
4829 M:      Clemens Ladisch <clemens@ladisch.de>
4830 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4831 T:      git git://git.alsa-project.org/alsa-kernel.git
4832 S:      Maintained
4833 F:      sound/firewire/
4834
4835 FIREWIRE MEDIA DRIVERS (firedtv)
4836 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4837 L:      linux-media@vger.kernel.org
4838 L:      linux1394-devel@lists.sourceforge.net
4839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4840 S:      Maintained
4841 F:      drivers/media/firewire/
4842
4843 FIREWIRE SBP-2 TARGET
4844 M:      Chris Boot <bootc@bootc.net>
4845 L:      linux-scsi@vger.kernel.org
4846 L:      target-devel@vger.kernel.org
4847 L:      linux1394-devel@lists.sourceforge.net
4848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4849 S:      Maintained
4850 F:      drivers/target/sbp/
4851
4852 FIREWIRE SUBSYSTEM
4853 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4854 L:      linux1394-devel@lists.sourceforge.net
4855 W:      http://ieee1394.wiki.kernel.org/
4856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4857 S:      Maintained
4858 F:      drivers/firewire/
4859 F:      include/linux/firewire.h
4860 F:      include/uapi/linux/firewire*.h
4861 F:      tools/firewire/
4862
4863 FIRMWARE LOADER (request_firmware)
4864 M:      Ming Lei <ming.lei@canonical.com>
4865 M:      Luis R. Rodriguez <mcgrof@kernel.org>
4866 L:      linux-kernel@vger.kernel.org
4867 S:      Maintained
4868 F:      Documentation/firmware_class/
4869 F:      drivers/base/firmware*.c
4870 F:      include/linux/firmware.h
4871
4872 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4873 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4874 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4875 S:      Maintained
4876 F:      drivers/block/rsxx/
4877
4878 FLOPPY DRIVER
4879 M:      Jiri Kosina <jikos@kernel.org>
4880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4881 S:      Odd fixes
4882 F:      drivers/block/floppy.c
4883
4884 FMC SUBSYSTEM
4885 M:      Alessandro Rubini <rubini@gnudd.com>
4886 W:      http://www.ohwr.org/projects/fmc-bus
4887 S:      Supported
4888 F:      drivers/fmc/
4889 F:      include/linux/fmc*.h
4890 F:      include/linux/ipmi-fru.h
4891 K:      fmc_d.*register
4892
4893 FPGA MANAGER FRAMEWORK
4894 M:      Alan Tull <atull@opensource.altera.com>
4895 R:      Moritz Fischer <moritz.fischer@ettus.com>
4896 S:      Maintained
4897 F:      drivers/fpga/
4898 F:      include/linux/fpga/fpga-mgr.h
4899 W:      http://www.rocketboards.org
4900
4901 FPU EMULATOR
4902 M:      Bill Metzenthen <billm@melbpc.org.au>
4903 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4904 S:      Maintained
4905 F:      arch/x86/math-emu/
4906
4907 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4908 L:      netdev@vger.kernel.org
4909 S:      Orphan
4910 F:      drivers/net/wan/dlci.c
4911 F:      drivers/net/wan/sdla.c
4912
4913 FRAMEBUFFER LAYER
4914 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4915 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4916 L:      linux-fbdev@vger.kernel.org
4917 W:      http://linux-fbdev.sourceforge.net/
4918 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4920 S:      Maintained
4921 F:      Documentation/fb/
4922 F:      drivers/video/
4923 F:      include/video/
4924 F:      include/linux/fb.h
4925 F:      include/uapi/video/
4926 F:      include/uapi/linux/fb.h
4927
4928 FREESCALE DIU FRAMEBUFFER DRIVER
4929 M:      Timur Tabi <timur@tabi.org>
4930 L:      linux-fbdev@vger.kernel.org
4931 S:      Maintained
4932 F:      drivers/video/fbdev/fsl-diu-fb.*
4933
4934 FREESCALE DMA DRIVER
4935 M:      Li Yang <leoli@freescale.com>
4936 M:      Zhang Wei <zw@zh-kernel.org>
4937 L:      linuxppc-dev@lists.ozlabs.org
4938 S:      Maintained
4939 F:      drivers/dma/fsldma.*
4940
4941 FREESCALE GPMI NAND DRIVER
4942 M:      Han Xu <han.xu@nxp.com>
4943 L:      linux-mtd@lists.infradead.org
4944 S:      Maintained
4945 F:      drivers/mtd/nand/gpmi-nand/*
4946
4947 FREESCALE I2C CPM DRIVER
4948 M:      Jochen Friedrich <jochen@scram.de>
4949 L:      linuxppc-dev@lists.ozlabs.org
4950 L:      linux-i2c@vger.kernel.org
4951 S:      Maintained
4952 F:      drivers/i2c/busses/i2c-cpm.c
4953
4954 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4955 M:      Sascha Hauer <kernel@pengutronix.de>
4956 L:      linux-fbdev@vger.kernel.org
4957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4958 S:      Maintained
4959 F:      include/linux/platform_data/video-imxfb.h
4960 F:      drivers/video/fbdev/imxfb.c
4961
4962 FREESCALE QUAD SPI DRIVER
4963 M:      Han Xu <han.xu@nxp.com>
4964 L:      linux-mtd@lists.infradead.org
4965 S:      Maintained
4966 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4967
4968 FREESCALE SOC FS_ENET DRIVER
4969 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4970 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4971 L:      linuxppc-dev@lists.ozlabs.org
4972 L:      netdev@vger.kernel.org
4973 S:      Maintained
4974 F:      drivers/net/ethernet/freescale/fs_enet/
4975 F:      include/linux/fs_enet_pd.h
4976
4977 FREESCALE IMX / MXC FEC DRIVER
4978 M:      Fugang Duan <fugang.duan@nxp.com>
4979 L:      netdev@vger.kernel.org
4980 S:      Maintained
4981 F:      drivers/net/ethernet/freescale/fec_main.c
4982 F:      drivers/net/ethernet/freescale/fec_ptp.c
4983 F:      drivers/net/ethernet/freescale/fec.h
4984 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4985
4986 FREESCALE QUICC ENGINE LIBRARY
4987 L:      linuxppc-dev@lists.ozlabs.org
4988 S:      Orphan
4989 F:      drivers/soc/fsl/qe/
4990 F:      include/soc/fsl/*qe*.h
4991 F:      include/soc/fsl/*ucc*.h
4992
4993 FREESCALE USB PERIPHERAL DRIVERS
4994 M:      Li Yang <leoli@freescale.com>
4995 L:      linux-usb@vger.kernel.org
4996 L:      linuxppc-dev@lists.ozlabs.org
4997 S:      Maintained
4998 F:      drivers/usb/gadget/udc/fsl*
4999
5000 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5001 M:      Li Yang <leoli@freescale.com>
5002 L:      netdev@vger.kernel.org
5003 L:      linuxppc-dev@lists.ozlabs.org
5004 S:      Maintained
5005 F:      drivers/net/ethernet/freescale/ucc_geth*
5006
5007 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5008 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
5009 L:      netdev@vger.kernel.org
5010 S:      Maintained
5011 F:      drivers/net/ethernet/freescale/gianfar*
5012 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5013 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5014
5015 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5016 M:      Zhao Qiang <qiang.zhao@nxp.com>
5017 L:      netdev@vger.kernel.org
5018 L:      linuxppc-dev@lists.ozlabs.org
5019 S:      Maintained
5020 F:      drivers/net/wan/fsl_ucc_hdlc*
5021
5022 FREESCALE QUICC ENGINE UCC UART DRIVER
5023 M:      Timur Tabi <timur@tabi.org>
5024 L:      linuxppc-dev@lists.ozlabs.org
5025 S:      Maintained
5026 F:      drivers/tty/serial/ucc_uart.c
5027
5028 FREESCALE SOC SOUND DRIVERS
5029 M:      Timur Tabi <timur@tabi.org>
5030 M:      Nicolin Chen <nicoleotsuka@gmail.com>
5031 M:      Xiubo Li <Xiubo.Lee@gmail.com>
5032 R:      Fabio Estevam <fabio.estevam@nxp.com>
5033 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5034 L:      linuxppc-dev@lists.ozlabs.org
5035 S:      Maintained
5036 F:      sound/soc/fsl/fsl*
5037 F:      sound/soc/fsl/imx*
5038 F:      sound/soc/fsl/mpc8610_hpcd.c
5039
5040 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
5041 M:      "J. German Rivera" <German.Rivera@freescale.com>
5042 M:      Stuart Yoder <stuart.yoder@nxp.com>
5043 L:      linux-kernel@vger.kernel.org
5044 S:      Maintained
5045 F:      drivers/staging/fsl-mc/
5046
5047 FREEVXFS FILESYSTEM
5048 M:      Christoph Hellwig <hch@infradead.org>
5049 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5050 S:      Maintained
5051 F:      fs/freevxfs/
5052
5053 FREEZER
5054 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5055 M:      Pavel Machek <pavel@ucw.cz>
5056 L:      linux-pm@vger.kernel.org
5057 S:      Supported
5058 F:      Documentation/power/freezing-of-tasks.txt
5059 F:      include/linux/freezer.h
5060 F:      kernel/freezer.c
5061
5062 FRONTSWAP API
5063 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
5064 L:      linux-kernel@vger.kernel.org
5065 S:      Maintained
5066 F:      mm/frontswap.c
5067 F:      include/linux/frontswap.h
5068
5069 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5070 M:      David Howells <dhowells@redhat.com>
5071 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
5072 S:      Supported
5073 F:      Documentation/filesystems/caching/
5074 F:      fs/fscache/
5075 F:      include/linux/fscache*.h
5076
5077 FS-CRYPTO: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5078 M:      Theodore Y. Ts'o <tytso@mit.edu>
5079 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5080 S:      Supported
5081 F:      fs/crypto/
5082 F:      include/linux/fscrypto.h
5083
5084 F2FS FILE SYSTEM
5085 M:      Jaegeuk Kim <jaegeuk@kernel.org>
5086 M:      Changman Lee <cm224.lee@samsung.com>
5087 R:      Chao Yu <yuchao0@huawei.com>
5088 L:      linux-f2fs-devel@lists.sourceforge.net
5089 W:      http://en.wikipedia.org/wiki/F2FS
5090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5091 S:      Maintained
5092 F:      Documentation/filesystems/f2fs.txt
5093 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5094 F:      fs/f2fs/
5095 F:      include/linux/f2fs_fs.h
5096 F:      include/trace/events/f2fs.h
5097
5098 FUJITSU FR-V (FRV) PORT
5099 S:      Orphan
5100 F:      arch/frv/
5101
5102 FUJITSU LAPTOP EXTRAS
5103 M:      Jonathan Woithe <jwoithe@just42.net>
5104 L:      platform-driver-x86@vger.kernel.org
5105 S:      Maintained
5106 F:      drivers/platform/x86/fujitsu-laptop.c
5107
5108 FUJITSU M-5MO LS CAMERA ISP DRIVER
5109 M:      Kyungmin Park <kyungmin.park@samsung.com>
5110 M:      Heungjun Kim <riverful.kim@samsung.com>
5111 L:      linux-media@vger.kernel.org
5112 S:      Maintained
5113 F:      drivers/media/i2c/m5mols/
5114 F:      include/media/i2c/m5mols.h
5115
5116 FUJITSU TABLET EXTRAS
5117 M:      Robert Gerlach <khnz@gmx.de>
5118 L:      platform-driver-x86@vger.kernel.org
5119 S:      Maintained
5120 F:      drivers/platform/x86/fujitsu-tablet.c
5121
5122 FUSE: FILESYSTEM IN USERSPACE
5123 M:      Miklos Szeredi <miklos@szeredi.hu>
5124 L:      linux-fsdevel@vger.kernel.org
5125 W:      http://fuse.sourceforge.net/
5126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5127 S:      Maintained
5128 F:      fs/fuse/
5129 F:      include/uapi/linux/fuse.h
5130 F:      Documentation/filesystems/fuse.txt
5131
5132 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5133 M:      Rik Faith <faith@cs.unc.edu>
5134 L:      linux-scsi@vger.kernel.org
5135 S:      Odd Fixes (e.g., new signatures)
5136 F:      drivers/scsi/fdomain.*
5137
5138 GCC PLUGINS
5139 M:      Kees Cook <keescook@chromium.org>
5140 R:      Emese Revfy <re.emese@gmail.com>
5141 L:      kernel-hardening@lists.openwall.com
5142 S:      Maintained
5143 F:      scripts/gcc-plugins/
5144 F:      scripts/gcc-plugin.sh
5145 F:      Documentation/gcc-plugins.txt
5146
5147 GCOV BASED KERNEL PROFILING
5148 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
5149 S:      Maintained
5150 F:      kernel/gcov/
5151 F:      Documentation/gcov.txt
5152
5153 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5154 M:      Achim Leubner <achim_leubner@adaptec.com>
5155 L:      linux-scsi@vger.kernel.org
5156 W:      http://www.icp-vortex.com/
5157 S:      Supported
5158 F:      drivers/scsi/gdt*
5159
5160 GDB KERNEL DEBUGGING HELPER SCRIPTS
5161 M:      Jan Kiszka <jan.kiszka@siemens.com>
5162 M:      Kieran Bingham <kieran@bingham.xyz>
5163 S:      Supported
5164 F:      scripts/gdb/
5165
5166 GEMTEK FM RADIO RECEIVER DRIVER
5167 M:      Hans Verkuil <hverkuil@xs4all.nl>
5168 L:      linux-media@vger.kernel.org
5169 T:      git git://linuxtv.org/media_tree.git
5170 W:      https://linuxtv.org
5171 S:      Maintained
5172 F:      drivers/media/radio/radio-gemtek*
5173
5174 GENERIC GPIO I2C DRIVER
5175 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
5176 S:      Supported
5177 F:      drivers/i2c/busses/i2c-gpio.c
5178 F:      include/linux/i2c-gpio.h
5179
5180 GENERIC GPIO I2C MULTIPLEXER DRIVER
5181 M:      Peter Korsgaard <peter.korsgaard@barco.com>
5182 L:      linux-i2c@vger.kernel.org
5183 S:      Supported
5184 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5185 F:      include/linux/i2c-mux-gpio.h
5186 F:      Documentation/i2c/muxes/i2c-mux-gpio
5187
5188 GENERIC HDLC (WAN) DRIVERS
5189 M:      Krzysztof Halasa <khc@pm.waw.pl>
5190 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5191 S:      Maintained
5192 F:      drivers/net/wan/c101.c
5193 F:      drivers/net/wan/hd6457*
5194 F:      drivers/net/wan/hdlc*
5195 F:      drivers/net/wan/n2.c
5196 F:      drivers/net/wan/pc300too.c
5197 F:      drivers/net/wan/pci200syn.c
5198 F:      drivers/net/wan/wanxl*
5199
5200 GENERIC INCLUDE/ASM HEADER FILES
5201 M:      Arnd Bergmann <arnd@arndb.de>
5202 L:      linux-arch@vger.kernel.org
5203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5204 S:      Maintained
5205 F:      include/asm-generic/
5206 F:      include/uapi/asm-generic/
5207
5208 GENERIC PHY FRAMEWORK
5209 M:      Kishon Vijay Abraham I <kishon@ti.com>
5210 L:      linux-kernel@vger.kernel.org
5211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5212 S:      Supported
5213 F:      drivers/phy/
5214 F:      include/linux/phy/
5215
5216 GENERIC PM DOMAINS
5217 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5218 M:      Kevin Hilman <khilman@kernel.org>
5219 M:      Ulf Hansson <ulf.hansson@linaro.org>
5220 L:      linux-pm@vger.kernel.org
5221 S:      Supported
5222 F:      drivers/base/power/domain*.c
5223 F:      include/linux/pm_domain.h
5224
5225 GENERIC UIO DRIVER FOR PCI DEVICES
5226 M:      "Michael S. Tsirkin" <mst@redhat.com>
5227 L:      kvm@vger.kernel.org
5228 S:      Supported
5229 F:      drivers/uio/uio_pci_generic.c
5230
5231 GET_MAINTAINER SCRIPT
5232 M:      Joe Perches <joe@perches.com>
5233 S:      Maintained
5234 F:      scripts/get_maintainer.pl
5235
5236 GFS2 FILE SYSTEM
5237 M:      Steven Whitehouse <swhiteho@redhat.com>
5238 M:      Bob Peterson <rpeterso@redhat.com>
5239 L:      cluster-devel@redhat.com
5240 W:      http://sources.redhat.com/cluster/
5241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5242 S:      Supported
5243 F:      Documentation/filesystems/gfs2*.txt
5244 F:      fs/gfs2/
5245 F:      include/uapi/linux/gfs2_ondisk.h
5246
5247 GIGASET ISDN DRIVERS
5248 M:      Paul Bolle <pebolle@tiscali.nl>
5249 L:      gigaset307x-common@lists.sourceforge.net
5250 W:      http://gigaset307x.sourceforge.net/
5251 S:      Odd Fixes
5252 F:      Documentation/isdn/README.gigaset
5253 F:      drivers/isdn/gigaset/
5254 F:      include/uapi/linux/gigaset_dev.h
5255
5256 GO7007 MPEG CODEC
5257 M:      Hans Verkuil <hans.verkuil@cisco.com>
5258 L:      linux-media@vger.kernel.org
5259 S:      Maintained
5260 F:      drivers/media/usb/go7007/
5261
5262 GOODIX TOUCHSCREEN
5263 M:      Bastien Nocera <hadess@hadess.net>
5264 L:      linux-input@vger.kernel.org
5265 S:      Maintained
5266 F:      drivers/input/touchscreen/goodix.c
5267
5268 GPIO SUBSYSTEM
5269 M:      Linus Walleij <linus.walleij@linaro.org>
5270 M:      Alexandre Courbot <gnurou@gmail.com>
5271 L:      linux-gpio@vger.kernel.org
5272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5273 S:      Maintained
5274 F:      Documentation/devicetree/bindings/gpio/
5275 F:      Documentation/gpio/
5276 F:      Documentation/ABI/testing/gpio-cdev
5277 F:      Documentation/ABI/obsolete/sysfs-gpio
5278 F:      drivers/gpio/
5279 F:      include/linux/gpio/
5280 F:      include/linux/gpio.h
5281 F:      include/asm-generic/gpio.h
5282 F:      include/uapi/linux/gpio.h
5283 F:      tools/gpio/
5284
5285 GRE DEMULTIPLEXER DRIVER
5286 M:      Dmitry Kozlov <xeb@mail.ru>
5287 L:      netdev@vger.kernel.org
5288 S:      Maintained
5289 F:      net/ipv4/gre_demux.c
5290 F:      net/ipv4/gre_offload.c
5291 F:      include/net/gre.h
5292
5293 GRETH 10/100/1G Ethernet MAC device driver
5294 M:      Andreas Larsson <andreas@gaisler.com>
5295 L:      netdev@vger.kernel.org
5296 S:      Maintained
5297 F:      drivers/net/ethernet/aeroflex/
5298
5299 GSPCA FINEPIX SUBDRIVER
5300 M:      Frank Zago <frank@zago.net>
5301 L:      linux-media@vger.kernel.org
5302 T:      git git://linuxtv.org/media_tree.git
5303 S:      Maintained
5304 F:      drivers/media/usb/gspca/finepix.c
5305
5306 GSPCA GL860 SUBDRIVER
5307 M:      Olivier Lorin <o.lorin@laposte.net>
5308 L:      linux-media@vger.kernel.org
5309 T:      git git://linuxtv.org/media_tree.git
5310 S:      Maintained
5311 F:      drivers/media/usb/gspca/gl860/
5312
5313 GSPCA M5602 SUBDRIVER
5314 M:      Erik Andren <erik.andren@gmail.com>
5315 L:      linux-media@vger.kernel.org
5316 T:      git git://linuxtv.org/media_tree.git
5317 S:      Maintained
5318 F:      drivers/media/usb/gspca/m5602/
5319
5320 GSPCA PAC207 SONIXB SUBDRIVER
5321 M:      Hans Verkuil <hverkuil@xs4all.nl>
5322 L:      linux-media@vger.kernel.org
5323 T:      git git://linuxtv.org/media_tree.git
5324 S:      Odd Fixes
5325 F:      drivers/media/usb/gspca/pac207.c
5326
5327 GSPCA SN9C20X SUBDRIVER
5328 M:      Brian Johnson <brijohn@gmail.com>
5329 L:      linux-media@vger.kernel.org
5330 T:      git git://linuxtv.org/media_tree.git
5331 S:      Maintained
5332 F:      drivers/media/usb/gspca/sn9c20x.c
5333
5334 GSPCA T613 SUBDRIVER
5335 M:      Leandro Costantino <lcostantino@gmail.com>
5336 L:      linux-media@vger.kernel.org
5337 T:      git git://linuxtv.org/media_tree.git
5338 S:      Maintained
5339 F:      drivers/media/usb/gspca/t613.c
5340
5341 GSPCA USB WEBCAM DRIVER
5342 M:      Hans Verkuil <hverkuil@xs4all.nl>
5343 L:      linux-media@vger.kernel.org
5344 T:      git git://linuxtv.org/media_tree.git
5345 S:      Odd Fixes
5346 F:      drivers/media/usb/gspca/
5347
5348 GUID PARTITION TABLE (GPT)
5349 M:      Davidlohr Bueso <dave@stgolabs.net>
5350 L:      linux-efi@vger.kernel.org
5351 S:      Maintained
5352 F:      block/partitions/efi.*
5353
5354 STK1160 USB VIDEO CAPTURE DRIVER
5355 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5356 L:      linux-media@vger.kernel.org
5357 T:      git git://linuxtv.org/media_tree.git
5358 S:      Maintained
5359 F:      drivers/media/usb/stk1160/
5360
5361 H8/300 ARCHITECTURE
5362 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5363 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5364 W:      http://uclinux-h8.sourceforge.jp
5365 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5366 S:      Maintained
5367 F:      arch/h8300/
5368 F:      drivers/clocksource/h8300_*.c
5369 F:      drivers/clk/h8300/
5370 F:      drivers/irqchip/irq-renesas-h8*.c
5371
5372 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5373 M:      Frank Seidel <frank@f-seidel.de>
5374 L:      platform-driver-x86@vger.kernel.org
5375 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5376 S:      Maintained
5377 F:      drivers/platform/x86/hdaps.c
5378
5379 HDPVR USB VIDEO ENCODER DRIVER
5380 M:      Hans Verkuil <hverkuil@xs4all.nl>
5381 L:      linux-media@vger.kernel.org
5382 T:      git git://linuxtv.org/media_tree.git
5383 W:      https://linuxtv.org
5384 S:      Odd Fixes
5385 F:      drivers/media/usb/hdpvr/
5386
5387 HWPOISON MEMORY FAILURE HANDLING
5388 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5389 L:      linux-mm@kvack.org
5390 S:      Maintained
5391 F:      mm/memory-failure.c
5392 F:      mm/hwpoison-inject.c
5393
5394 HYPERVISOR VIRTUAL CONSOLE DRIVER
5395 L:      linuxppc-dev@lists.ozlabs.org
5396 S:      Odd Fixes
5397 F:      drivers/tty/hvc/
5398
5399 HACKRF MEDIA DRIVER
5400 M:      Antti Palosaari <crope@iki.fi>
5401 L:      linux-media@vger.kernel.org
5402 W:      https://linuxtv.org
5403 W:      http://palosaari.fi/linux/
5404 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5405 T:      git git://linuxtv.org/anttip/media_tree.git
5406 S:      Maintained
5407 F:      drivers/media/usb/hackrf/
5408
5409 HARDWARE MONITORING
5410 M:      Jean Delvare <jdelvare@suse.com>
5411 M:      Guenter Roeck <linux@roeck-us.net>
5412 L:      linux-hwmon@vger.kernel.org
5413 W:      http://hwmon.wiki.kernel.org/
5414 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5416 S:      Maintained
5417 F:      Documentation/hwmon/
5418 F:      drivers/hwmon/
5419 F:      include/linux/hwmon*.h
5420
5421 HARDWARE RANDOM NUMBER GENERATOR CORE
5422 M:      Matt Mackall <mpm@selenic.com>
5423 M:      Herbert Xu <herbert@gondor.apana.org.au>
5424 L:      linux-crypto@vger.kernel.org
5425 S:      Odd fixes
5426 F:      Documentation/devicetree/bindings/rng/
5427 F:      Documentation/hw_random.txt
5428 F:      drivers/char/hw_random/
5429 F:      include/linux/hw_random.h
5430
5431 HARDWARE SPINLOCK CORE
5432 M:      Ohad Ben-Cohen <ohad@wizery.com>
5433 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5434 L:      linux-remoteproc@vger.kernel.org
5435 S:      Maintained
5436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5437 F:      Documentation/devicetree/bindings/hwlock/
5438 F:      Documentation/hwspinlock.txt
5439 F:      drivers/hwspinlock/
5440 F:      include/linux/hwspinlock.h
5441
5442 HARMONY SOUND DRIVER
5443 L:      linux-parisc@vger.kernel.org
5444 S:      Maintained
5445 F:      sound/parisc/harmony.*
5446
5447 HD29L2 MEDIA DRIVER
5448 M:      Antti Palosaari <crope@iki.fi>
5449 L:      linux-media@vger.kernel.org
5450 W:      https://linuxtv.org
5451 W:      http://palosaari.fi/linux/
5452 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5453 T:      git git://linuxtv.org/anttip/media_tree.git
5454 S:      Maintained
5455 F:      drivers/media/dvb-frontends/hd29l2*
5456
5457 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
5458 M:      Brian Boylston <brian.boylston@hpe.com>
5459 S:      Supported
5460 F:      Documentation/watchdog/hpwdt.txt
5461 F:      drivers/watchdog/hpwdt.c
5462
5463 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5464 M:      Don Brace <don.brace@microsemi.com>
5465 L:      iss_storagedev@hp.com
5466 L:      esc.storagedev@microsemi.com
5467 L:      linux-scsi@vger.kernel.org
5468 S:      Supported
5469 F:      Documentation/scsi/hpsa.txt
5470 F:      drivers/scsi/hpsa*.[ch]
5471 F:      include/linux/cciss*.h
5472 F:      include/uapi/linux/cciss*.h
5473
5474 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5475 M:      Don Brace <don.brace@microsemi.com>
5476 L:      iss_storagedev@hp.com
5477 L:      esc.storagedev@microsemi.com
5478 L:      linux-scsi@vger.kernel.org
5479 S:      Supported
5480 F:      Documentation/blockdev/cciss.txt
5481 F:      drivers/block/cciss*
5482 F:      include/linux/cciss_ioctl.h
5483 F:      include/uapi/linux/cciss_ioctl.h
5484
5485 HFI1 DRIVER
5486 M:      Mike Marciniszyn <mike.marciniszyn@intel.com>
5487 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
5488 L:      linux-rdma@vger.kernel.org
5489 S:      Supported
5490 F:      drivers/infiniband/hw/hfi1
5491
5492 HFS FILESYSTEM
5493 L:      linux-fsdevel@vger.kernel.org
5494 S:      Orphan
5495 F:      Documentation/filesystems/hfs.txt
5496 F:      fs/hfs/
5497
5498 HFSPLUS FILESYSTEM
5499 L:      linux-fsdevel@vger.kernel.org
5500 S:      Orphan
5501 F:      Documentation/filesystems/hfsplus.txt
5502 F:      fs/hfsplus/
5503
5504 HGA FRAMEBUFFER DRIVER
5505 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5506 L:      linux-nvidia@lists.surfsouth.com
5507 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5508 S:      Maintained
5509 F:      drivers/video/fbdev/hgafb.c
5510
5511 HIBERNATION (aka Software Suspend, aka swsusp)
5512 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5513 M:      Pavel Machek <pavel@ucw.cz>
5514 L:      linux-pm@vger.kernel.org
5515 S:      Supported
5516 F:      arch/x86/power/
5517 F:      drivers/base/power/
5518 F:      kernel/power/
5519 F:      include/linux/suspend.h
5520 F:      include/linux/freezer.h
5521 F:      include/linux/pm.h
5522 F:      arch/*/include/asm/suspend*.h
5523
5524 HID CORE LAYER
5525 M:      Jiri Kosina <jikos@kernel.org>
5526 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5527 L:      linux-input@vger.kernel.org
5528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5529 S:      Maintained
5530 F:      drivers/hid/
5531 F:      include/linux/hid*
5532 F:      include/uapi/linux/hid*
5533
5534 HID SENSOR HUB DRIVERS
5535 M:      Jiri Kosina <jikos@kernel.org>
5536 M:      Jonathan Cameron <jic23@kernel.org>
5537 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5538 L:      linux-input@vger.kernel.org
5539 L:      linux-iio@vger.kernel.org
5540 S:      Maintained
5541 F:      Documentation/hid/hid-sensor*
5542 F:      drivers/hid/hid-sensor-*
5543 F:      drivers/iio/*/hid-*
5544 F:      include/linux/hid-sensor-*
5545
5546 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5547 M:      Thomas Gleixner <tglx@linutronix.de>
5548 L:      linux-kernel@vger.kernel.org
5549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5550 S:      Maintained
5551 F:      Documentation/timers/
5552 F:      kernel/time/hrtimer.c
5553 F:      kernel/time/clockevents.c
5554 F:      kernel/time/tick*.*
5555 F:      kernel/time/timer_*.c
5556 F:      include/linux/clockchips.h
5557 F:      include/linux/hrtimer.h
5558
5559 HIGH-SPEED SCC DRIVER FOR AX.25
5560 L:      linux-hams@vger.kernel.org
5561 S:      Orphan
5562 F:      drivers/net/hamradio/dmascc.c
5563 F:      drivers/net/hamradio/scc.c
5564
5565 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5566 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5567 W:      http://www.highpoint-tech.com
5568 S:      Supported
5569 F:      Documentation/scsi/hptiop.txt
5570 F:      drivers/scsi/hptiop.c
5571
5572 HIPPI
5573 M:      Jes Sorensen <jes@trained-monkey.org>
5574 L:      linux-hippi@sunsite.dk
5575 S:      Maintained
5576 F:      include/linux/hippidevice.h
5577 F:      include/uapi/linux/if_hippi.h
5578 F:      net/802/hippi.c
5579 F:      drivers/net/hippi/
5580
5581 HISILICON NETWORK SUBSYSTEM DRIVER
5582 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
5583 M:      Salil Mehta <salil.mehta@huawei.com>
5584 L:      netdev@vger.kernel.org
5585 W:      http://www.hisilicon.com
5586 S:      Maintained
5587 F:      drivers/net/ethernet/hisilicon/
5588 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
5589
5590 HISILICON SAS Controller
5591 M:      John Garry <john.garry@huawei.com>
5592 W:      http://www.hisilicon.com
5593 S:      Supported
5594 F:      drivers/scsi/hisi_sas/
5595 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5596
5597 HOST AP DRIVER
5598 M:      Jouni Malinen <j@w1.fi>
5599 L:      hostap@shmoo.com (subscribers-only)
5600 L:      linux-wireless@vger.kernel.org
5601 W:      http://hostap.epitest.fi/
5602 S:      Maintained
5603 F:      drivers/net/wireless/intersil/hostap/
5604
5605 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5606 L:      platform-driver-x86@vger.kernel.org
5607 S:      Orphan
5608 F:      drivers/platform/x86/tc1100-wmi.c
5609
5610 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5611 M:      Jaroslav Kysela <perex@perex.cz>
5612 S:      Maintained
5613 F:      drivers/net/ethernet/hp/hp100.*
5614
5615 HPET:   High Precision Event Timers driver
5616 M:      Clemens Ladisch <clemens@ladisch.de>
5617 S:      Maintained
5618 F:      Documentation/timers/hpet.txt
5619 F:      drivers/char/hpet.c
5620 F:      include/linux/hpet.h
5621 F:      include/uapi/linux/hpet.h
5622
5623 HPET:   x86
5624 S:      Orphan
5625 F:      arch/x86/kernel/hpet.c
5626 F:      arch/x86/include/asm/hpet.h
5627
5628 HPFS FILESYSTEM
5629 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5630 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5631 S:      Maintained
5632 F:      fs/hpfs/
5633
5634 HSI SUBSYSTEM
5635 M:      Sebastian Reichel <sre@kernel.org>
5636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5637 S:      Maintained
5638 F:      Documentation/ABI/testing/sysfs-bus-hsi
5639 F:      Documentation/hsi.txt
5640 F:      drivers/hsi/
5641 F:      include/linux/hsi/
5642 F:      include/uapi/linux/hsi/
5643
5644 HSO 3G MODEM DRIVER
5645 M:      Jan Dumon <j.dumon@option.com>
5646 W:      http://www.pharscape.org
5647 S:      Maintained
5648 F:      drivers/net/usb/hso.c
5649
5650 HSR NETWORK PROTOCOL
5651 M:      Arvid Brodin <arvid.brodin@alten.se>
5652 L:      netdev@vger.kernel.org
5653 S:      Maintained
5654 F:      net/hsr/
5655
5656 HTCPEN TOUCHSCREEN DRIVER
5657 M:      Pau Oliva Fora <pof@eslack.org>
5658 L:      linux-input@vger.kernel.org
5659 S:      Maintained
5660 F:      drivers/input/touchscreen/htcpen.c
5661
5662 HUGETLB FILESYSTEM
5663 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5664 S:      Maintained
5665 F:      fs/hugetlbfs/
5666
5667 Hyper-V CORE AND DRIVERS
5668 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5669 M:      Haiyang Zhang <haiyangz@microsoft.com>
5670 L:      devel@linuxdriverproject.org
5671 S:      Maintained
5672 F:      arch/x86/include/asm/mshyperv.h
5673 F:      arch/x86/include/uapi/asm/hyperv.h
5674 F:      arch/x86/kernel/cpu/mshyperv.c
5675 F:      drivers/hid/hid-hyperv.c
5676 F:      drivers/hv/
5677 F:      drivers/input/serio/hyperv-keyboard.c
5678 F:      drivers/pci/host/pci-hyperv.c
5679 F:      drivers/net/hyperv/
5680 F:      drivers/scsi/storvsc_drv.c
5681 F:      drivers/video/fbdev/hyperv_fb.c
5682 F:      include/linux/hyperv.h
5683 F:      tools/hv/
5684 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5685
5686 I2C MUXES
5687 M:      Peter Rosin <peda@axentia.se>
5688 L:      linux-i2c@vger.kernel.org
5689 S:      Maintained
5690 F:      Documentation/i2c/i2c-topology
5691 F:      Documentation/i2c/muxes/
5692 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5693 F:      drivers/i2c/i2c-mux.c
5694 F:      drivers/i2c/muxes/
5695 F:      include/linux/i2c-mux.h
5696
5697 I2C OVER PARALLEL PORT
5698 M:      Jean Delvare <jdelvare@suse.com>
5699 L:      linux-i2c@vger.kernel.org
5700 S:      Maintained
5701 F:      Documentation/i2c/busses/i2c-parport
5702 F:      Documentation/i2c/busses/i2c-parport-light
5703 F:      drivers/i2c/busses/i2c-parport.c
5704 F:      drivers/i2c/busses/i2c-parport-light.c
5705
5706 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5707 M:      Jean Delvare <jdelvare@suse.com>
5708 L:      linux-i2c@vger.kernel.org
5709 S:      Maintained
5710 F:      Documentation/i2c/busses/i2c-ali1535
5711 F:      Documentation/i2c/busses/i2c-ali1563
5712 F:      Documentation/i2c/busses/i2c-ali15x3
5713 F:      Documentation/i2c/busses/i2c-amd756
5714 F:      Documentation/i2c/busses/i2c-amd8111
5715 F:      Documentation/i2c/busses/i2c-i801
5716 F:      Documentation/i2c/busses/i2c-nforce2
5717 F:      Documentation/i2c/busses/i2c-piix4
5718 F:      Documentation/i2c/busses/i2c-sis5595
5719 F:      Documentation/i2c/busses/i2c-sis630
5720 F:      Documentation/i2c/busses/i2c-sis96x
5721 F:      Documentation/i2c/busses/i2c-via
5722 F:      Documentation/i2c/busses/i2c-viapro
5723 F:      drivers/i2c/busses/i2c-ali1535.c
5724 F:      drivers/i2c/busses/i2c-ali1563.c
5725 F:      drivers/i2c/busses/i2c-ali15x3.c
5726 F:      drivers/i2c/busses/i2c-amd756.c
5727 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5728 F:      drivers/i2c/busses/i2c-amd8111.c
5729 F:      drivers/i2c/busses/i2c-i801.c
5730 F:      drivers/i2c/busses/i2c-isch.c
5731 F:      drivers/i2c/busses/i2c-nforce2.c
5732 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5733 F:      drivers/i2c/busses/i2c-piix4.c
5734 F:      drivers/i2c/busses/i2c-sis5595.c
5735 F:      drivers/i2c/busses/i2c-sis630.c
5736 F:      drivers/i2c/busses/i2c-sis96x.c
5737 F:      drivers/i2c/busses/i2c-via.c
5738 F:      drivers/i2c/busses/i2c-viapro.c
5739
5740 I2C/SMBUS ISMT DRIVER
5741 M:      Seth Heasley <seth.heasley@intel.com>
5742 M:      Neil Horman <nhorman@tuxdriver.com>
5743 L:      linux-i2c@vger.kernel.org
5744 F:      drivers/i2c/busses/i2c-ismt.c
5745 F:      Documentation/i2c/busses/i2c-ismt
5746
5747 I2C/SMBUS STUB DRIVER
5748 M:      Jean Delvare <jdelvare@suse.com>
5749 L:      linux-i2c@vger.kernel.org
5750 S:      Maintained
5751 F:      drivers/i2c/i2c-stub.c
5752
5753 I2C SUBSYSTEM
5754 M:      Wolfram Sang <wsa@the-dreams.de>
5755 L:      linux-i2c@vger.kernel.org
5756 W:      https://i2c.wiki.kernel.org/
5757 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5759 S:      Maintained
5760 F:      Documentation/devicetree/bindings/i2c/
5761 F:      Documentation/i2c/
5762 F:      drivers/i2c/
5763 F:      drivers/i2c/*/
5764 F:      include/linux/i2c.h
5765 F:      include/linux/i2c-*.h
5766 F:      include/uapi/linux/i2c.h
5767 F:      include/uapi/linux/i2c-*.h
5768
5769 I2C ACPI SUPPORT
5770 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5771 L:      linux-i2c@vger.kernel.org
5772 L:      linux-acpi@vger.kernel.org
5773 S:      Maintained
5774
5775 I2C-TAOS-EVM DRIVER
5776 M:      Jean Delvare <jdelvare@suse.com>
5777 L:      linux-i2c@vger.kernel.org
5778 S:      Maintained
5779 F:      Documentation/i2c/busses/i2c-taos-evm
5780 F:      drivers/i2c/busses/i2c-taos-evm.c
5781
5782 I2C-TINY-USB DRIVER
5783 M:      Till Harbaum <till@harbaum.org>
5784 L:      linux-i2c@vger.kernel.org
5785 W:      http://www.harbaum.org/till/i2c_tiny_usb
5786 S:      Maintained
5787 F:      drivers/i2c/busses/i2c-tiny-usb.c
5788
5789 i386 BOOT CODE
5790 M:      "H. Peter Anvin" <hpa@zytor.com>
5791 S:      Maintained
5792 F:      arch/x86/boot/
5793
5794 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5795 M:      "H. Peter Anvin" <hpa@zytor.com>
5796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5797 S:      Maintained
5798
5799 IA64 (Itanium) PLATFORM
5800 M:      Tony Luck <tony.luck@intel.com>
5801 M:      Fenghua Yu <fenghua.yu@intel.com>
5802 L:      linux-ia64@vger.kernel.org
5803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5804 S:      Maintained
5805 F:      arch/ia64/
5806
5807 IBM Power VMX Cryptographic instructions
5808 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5809 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5810 L:      linux-crypto@vger.kernel.org
5811 S:      Supported
5812 F:      drivers/crypto/vmx/Makefile
5813 F:      drivers/crypto/vmx/Kconfig
5814 F:      drivers/crypto/vmx/vmx.c
5815 F:      drivers/crypto/vmx/aes*
5816 F:      drivers/crypto/vmx/ghash*
5817 F:      drivers/crypto/vmx/ppc-xlate.pl
5818
5819 IBM Power in-Nest Crypto Acceleration
5820 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5821 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5822 L:      linux-crypto@vger.kernel.org
5823 S:      Supported
5824 F:      drivers/crypto/nx/Makefile
5825 F:      drivers/crypto/nx/Kconfig
5826 F:      drivers/crypto/nx/nx-aes*
5827 F:      drivers/crypto/nx/nx-sha*
5828 F:      drivers/crypto/nx/nx.*
5829 F:      drivers/crypto/nx/nx_csbcpb.h
5830 F:      drivers/crypto/nx/nx_debugfs.h
5831
5832 IBM Power 842 compression accelerator
5833 M:      Dan Streetman <ddstreet@ieee.org>
5834 S:      Supported
5835 F:      drivers/crypto/nx/Makefile
5836 F:      drivers/crypto/nx/Kconfig
5837 F:      drivers/crypto/nx/nx-842*
5838 F:      include/linux/sw842.h
5839 F:      crypto/842.c
5840 F:      lib/842/
5841
5842 IBM Power Linux RAID adapter
5843 M:      Brian King <brking@us.ibm.com>
5844 S:      Supported
5845 F:      drivers/scsi/ipr.*
5846
5847 IBM Power Virtual Ethernet Device Driver
5848 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5849 L:      netdev@vger.kernel.org
5850 S:      Supported
5851 F:      drivers/net/ethernet/ibm/ibmveth.*
5852
5853 IBM Power SRIOV Virtual NIC Device Driver
5854 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5855 M:      John Allen <jallen@linux.vnet.ibm.com>
5856 L:      netdev@vger.kernel.org
5857 S:      Supported
5858 F:      drivers/net/ethernet/ibm/ibmvnic.*
5859
5860 IBM Power Virtual SCSI Device Drivers
5861 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5862 L:      linux-scsi@vger.kernel.org
5863 S:      Supported
5864 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5865 F:      include/scsi/viosrp.h
5866
5867 IBM Power Virtual SCSI Device Target Driver
5868 M:      Bryant G. Ly <bryantly@linux.vnet.ibm.com>
5869 M:      Michael Cyr <mikecyr@linux.vnet.ibm.com>
5870 L:      linux-scsi@vger.kernel.org
5871 L:      target-devel@vger.kernel.org
5872 S:      Supported
5873 F:      drivers/scsi/ibmvscsi_tgt/
5874
5875 IBM Power Virtual FC Device Drivers
5876 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5877 L:      linux-scsi@vger.kernel.org
5878 S:      Supported
5879 F:      drivers/scsi/ibmvscsi/ibmvfc*
5880
5881 IBM ServeRAID RAID DRIVER
5882 S:      Orphan
5883 F:      drivers/scsi/ips.*
5884
5885 ICH LPC AND GPIO DRIVER
5886 M:      Peter Tyser <ptyser@xes-inc.com>
5887 S:      Maintained
5888 F:      drivers/mfd/lpc_ich.c
5889 F:      drivers/gpio/gpio-ich.c
5890
5891 IDE SUBSYSTEM
5892 M:      "David S. Miller" <davem@davemloft.net>
5893 L:      linux-ide@vger.kernel.org
5894 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5896 S:      Maintained
5897 F:      Documentation/ide/
5898 F:      drivers/ide/
5899 F:      include/linux/ide.h
5900
5901 IDEAPAD LAPTOP EXTRAS DRIVER
5902 M:      Ike Panhc <ike.pan@canonical.com>
5903 L:      platform-driver-x86@vger.kernel.org
5904 W:      http://launchpad.net/ideapad-laptop
5905 S:      Maintained
5906 F:      drivers/platform/x86/ideapad-laptop.c
5907
5908 IDEAPAD LAPTOP SLIDEBAR DRIVER
5909 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5910 L:      linux-input@vger.kernel.org
5911 W:      https://github.com/o2genum/ideapad-slidebar
5912 S:      Maintained
5913 F:      drivers/input/misc/ideapad_slidebar.c
5914
5915 IDE/ATAPI DRIVERS
5916 M:      Borislav Petkov <bp@alien8.de>
5917 L:      linux-ide@vger.kernel.org
5918 S:      Maintained
5919 F:      Documentation/cdrom/ide-cd
5920 F:      drivers/ide/ide-cd*
5921
5922 IDLE-I7300
5923 M:      Andy Henroid <andrew.d.henroid@intel.com>
5924 L:      linux-pm@vger.kernel.org
5925 S:      Supported
5926 F:      drivers/idle/i7300_idle.c
5927
5928 IEEE 802.15.4 SUBSYSTEM
5929 M:      Alexander Aring <aar@pengutronix.de>
5930 L:      linux-wpan@vger.kernel.org
5931 W:      http://wpan.cakelab.org/
5932 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5934 S:      Maintained
5935 F:      net/ieee802154/
5936 F:      net/mac802154/
5937 F:      drivers/net/ieee802154/
5938 F:      include/linux/nl802154.h
5939 F:      include/linux/ieee802154.h
5940 F:      include/net/nl802154.h
5941 F:      include/net/mac802154.h
5942 F:      include/net/af_ieee802154.h
5943 F:      include/net/cfg802154.h
5944 F:      include/net/ieee802154_netdev.h
5945 F:      Documentation/networking/ieee802154.txt
5946
5947 IGORPLUG-USB IR RECEIVER
5948 M:      Sean Young <sean@mess.org>
5949 L:      linux-media@vger.kernel.org
5950 S:      Maintained
5951 F:      drivers/media/rc/igorplugusb.c
5952
5953 IGUANAWORKS USB IR TRANSCEIVER
5954 M:      Sean Young <sean@mess.org>
5955 L:      linux-media@vger.kernel.org
5956 S:      Maintained
5957 F:      drivers/media/rc/iguanair.c
5958
5959 IIO SUBSYSTEM AND DRIVERS
5960 M:      Jonathan Cameron <jic23@kernel.org>
5961 R:      Hartmut Knaack <knaack.h@gmx.de>
5962 R:      Lars-Peter Clausen <lars@metafoo.de>
5963 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
5964 L:      linux-iio@vger.kernel.org
5965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
5966 S:      Maintained
5967 F:      Documentation/devicetree/bindings/iio/
5968 F:      drivers/iio/
5969 F:      drivers/staging/iio/
5970 F:      include/linux/iio/
5971 F:      tools/iio/
5972
5973 IKANOS/ADI EAGLE ADSL USB DRIVER
5974 M:      Matthieu Castet <castet.matthieu@free.fr>
5975 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5976 S:      Maintained
5977 F:      drivers/usb/atm/ueagle-atm.c
5978
5979 INA209 HARDWARE MONITOR DRIVER
5980 M:      Guenter Roeck <linux@roeck-us.net>
5981 L:      linux-hwmon@vger.kernel.org
5982 S:      Maintained
5983 F:      Documentation/hwmon/ina209
5984 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5985 F:      drivers/hwmon/ina209.c
5986
5987 INA2XX HARDWARE MONITOR DRIVER
5988 M:      Guenter Roeck <linux@roeck-us.net>
5989 L:      linux-hwmon@vger.kernel.org
5990 S:      Maintained
5991 F:      Documentation/hwmon/ina2xx
5992 F:      drivers/hwmon/ina2xx.c
5993 F:      include/linux/platform_data/ina2xx.h
5994
5995 INDUSTRY PACK SUBSYSTEM (IPACK)
5996 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5997 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5998 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5999 L:      industrypack-devel@lists.sourceforge.net
6000 W:      http://industrypack.sourceforge.net
6001 S:      Maintained
6002 F:      drivers/ipack/
6003
6004 INGENIC JZ4780 DMA Driver
6005 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
6006 S:      Maintained
6007 F:      drivers/dma/dma-jz4780.c
6008
6009 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6010 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6011 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
6012 L:      linux-ima-devel@lists.sourceforge.net
6013 L:      linux-ima-user@lists.sourceforge.net
6014 L:      linux-security-module@vger.kernel.org
6015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6016 S:      Supported
6017 F:      security/integrity/ima/
6018
6019 IMGTEC IR DECODER DRIVER
6020 M:      James Hogan <james.hogan@imgtec.com>
6021 S:      Maintained
6022 F:      drivers/media/rc/img-ir/
6023
6024 IMS TWINTURBO FRAMEBUFFER DRIVER
6025 L:      linux-fbdev@vger.kernel.org
6026 S:      Orphan
6027 F:      drivers/video/fbdev/imsttfb.c
6028
6029 INFINIBAND SUBSYSTEM
6030 M:      Doug Ledford <dledford@redhat.com>
6031 M:      Sean Hefty <sean.hefty@intel.com>
6032 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
6033 L:      linux-rdma@vger.kernel.org
6034 W:      http://www.openfabrics.org/
6035 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6037 S:      Supported
6038 F:      Documentation/infiniband/
6039 F:      drivers/infiniband/
6040 F:      include/uapi/linux/if_infiniband.h
6041 F:      include/uapi/rdma/
6042 F:      include/rdma/
6043
6044 INOTIFY
6045 M:      John McCutchan <john@johnmccutchan.com>
6046 M:      Robert Love <rlove@rlove.org>
6047 M:      Eric Paris <eparis@parisplace.org>
6048 S:      Maintained
6049 F:      Documentation/filesystems/inotify.txt
6050 F:      fs/notify/inotify/
6051 F:      include/linux/inotify.h
6052 F:      include/uapi/linux/inotify.h
6053
6054 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6055 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
6056 L:      linux-input@vger.kernel.org
6057 Q:      http://patchwork.kernel.org/project/linux-input/list/
6058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6059 S:      Maintained
6060 F:      drivers/input/
6061 F:      include/linux/input.h
6062 F:      include/uapi/linux/input.h
6063 F:      include/linux/input/
6064 F:      Documentation/devicetree/bindings/input/
6065
6066 INPUT MULTITOUCH (MT) PROTOCOL
6067 M:      Henrik Rydberg <rydberg@bitmath.org>
6068 L:      linux-input@vger.kernel.org
6069 S:      Odd fixes
6070 F:      Documentation/input/multi-touch-protocol.txt
6071 F:      drivers/input/input-mt.c
6072 K:      \b(ABS|SYN)_MT_
6073
6074 INTEL ASoC BDW/HSW DRIVERS
6075 M:      Jie Yang <yang.jie@linux.intel.com>
6076 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6077 S:      Supported
6078 F:      sound/soc/intel/common/sst-dsp*
6079 F:      sound/soc/intel/common/sst-firmware.c
6080 F:      sound/soc/intel/boards/broadwell.c
6081 F:      sound/soc/intel/haswell/
6082
6083 INTEL C600 SERIES SAS CONTROLLER DRIVER
6084 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
6085 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
6086 L:      linux-scsi@vger.kernel.org
6087 T:      git git://git.code.sf.net/p/intel-sas/isci
6088 S:      Supported
6089 F:      drivers/scsi/isci/
6090
6091 INTEL HID EVENT DRIVER
6092 M:      Alex Hung <alex.hung@canonical.com>
6093 L:      platform-driver-x86@vger.kernel.org
6094 S:      Maintained
6095 F:      drivers/platform/x86/intel-hid.c
6096
6097 INTEL VIRTUAL BUTTON DRIVER
6098 M:      AceLan Kao <acelan.kao@canonical.com>
6099 L:      platform-driver-x86@vger.kernel.org
6100 S:      Maintained
6101 F:      drivers/platform/x86/intel-vbtn.c
6102
6103 INTEL IDLE DRIVER
6104 M:      Len Brown <lenb@kernel.org>
6105 L:      linux-pm@vger.kernel.org
6106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6107 S:      Supported
6108 F:      drivers/idle/intel_idle.c
6109
6110 INTEL PSTATE DRIVER
6111 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
6112 M:      Len Brown <lenb@kernel.org>
6113 L:      linux-pm@vger.kernel.org
6114 S:      Supported
6115 F:      drivers/cpufreq/intel_pstate.c
6116
6117 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6118 M:      Maik Broemme <mbroemme@libmpq.org>
6119 L:      linux-fbdev@vger.kernel.org
6120 S:      Maintained
6121 F:      Documentation/fb/intelfb.txt
6122 F:      drivers/video/fbdev/intelfb/
6123
6124 INTEL 810/815 FRAMEBUFFER DRIVER
6125 M:      Antonino Daplas <adaplas@gmail.com>
6126 L:      linux-fbdev@vger.kernel.org
6127 S:      Maintained
6128 F:      drivers/video/fbdev/i810/
6129
6130 INTEL MENLOW THERMAL DRIVER
6131 M:      Sujith Thomas <sujith.thomas@intel.com>
6132 L:      platform-driver-x86@vger.kernel.org
6133 W:      https://01.org/linux-acpi
6134 S:      Supported
6135 F:      drivers/platform/x86/intel_menlow.c
6136
6137 INTEL I/OAT DMA DRIVER
6138 M:      Dave Jiang <dave.jiang@intel.com>
6139 R:      Dan Williams <dan.j.williams@intel.com>
6140 L:      dmaengine@vger.kernel.org
6141 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6142 S:      Supported
6143 F:      drivers/dma/ioat*
6144
6145 INTEL IOMMU (VT-d)
6146 M:      David Woodhouse <dwmw2@infradead.org>
6147 L:      iommu@lists.linux-foundation.org
6148 T:      git git://git.infradead.org/iommu-2.6.git
6149 S:      Supported
6150 F:      drivers/iommu/intel-iommu.c
6151 F:      include/linux/intel-iommu.h
6152
6153 INTEL IOP-ADMA DMA DRIVER
6154 R:      Dan Williams <dan.j.williams@intel.com>
6155 S:      Odd fixes
6156 F:      drivers/dma/iop-adma.c
6157
6158 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6159 M:      Krzysztof Halasa <khalasa@piap.pl>
6160 S:      Maintained
6161 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
6162 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
6163 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6164 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
6165 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
6166 F:      drivers/net/wan/ixp4xx_hss.c
6167
6168 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6169 M:      Deepak Saxena <dsaxena@plexity.net>
6170 S:      Maintained
6171 F:      drivers/char/hw_random/ixp4xx-rng.c
6172
6173 INTEL ETHERNET DRIVERS
6174 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
6175 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
6176 W:      http://www.intel.com/support/feedback.htm
6177 W:      http://e1000.sourceforge.net/
6178 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6181 S:      Supported
6182 F:      Documentation/networking/e100.txt
6183 F:      Documentation/networking/e1000.txt
6184 F:      Documentation/networking/e1000e.txt
6185 F:      Documentation/networking/igb.txt
6186 F:      Documentation/networking/igbvf.txt
6187 F:      Documentation/networking/ixgb.txt
6188 F:      Documentation/networking/ixgbe.txt
6189 F:      Documentation/networking/ixgbevf.txt
6190 F:      Documentation/networking/i40e.txt
6191 F:      Documentation/networking/i40evf.txt
6192 F:      drivers/net/ethernet/intel/
6193 F:      drivers/net/ethernet/intel/*/
6194
6195 INTEL RDMA RNIC DRIVER
6196 M:     Faisal Latif <faisal.latif@intel.com>
6197 R:     Chien Tin Tung <chien.tin.tung@intel.com>
6198 R:     Mustafa Ismail <mustafa.ismail@intel.com>
6199 R:     Shiraz Saleem <shiraz.saleem@intel.com>
6200 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
6201 L:     linux-rdma@vger.kernel.org
6202 S:     Supported
6203 F:     drivers/infiniband/hw/i40iw/
6204
6205 INTEL MERRIFIELD GPIO DRIVER
6206 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
6207 L:      linux-gpio@vger.kernel.org
6208 S:      Maintained
6209 F:      drivers/gpio/gpio-merrifield.c
6210
6211 INTEL-MID GPIO DRIVER
6212 M:      David Cohen <david.a.cohen@linux.intel.com>
6213 L:      linux-gpio@vger.kernel.org
6214 S:      Maintained
6215 F:      drivers/gpio/gpio-intel-mid.c
6216
6217 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6218 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
6219 L:      linux-wireless@vger.kernel.org
6220 S:      Maintained
6221 F:      Documentation/networking/README.ipw2100
6222 F:      Documentation/networking/README.ipw2200
6223 F:      drivers/net/wireless/intel/ipw2x00/
6224
6225 INTEL(R) TRACE HUB
6226 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
6227 S:      Supported
6228 F:      Documentation/trace/intel_th.txt
6229 F:      drivers/hwtracing/intel_th/
6230
6231 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6232 M:      Ning Sun <ning.sun@intel.com>
6233 L:      tboot-devel@lists.sourceforge.net
6234 W:      http://tboot.sourceforge.net
6235 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6236 S:      Supported
6237 F:      Documentation/intel_txt.txt
6238 F:      include/linux/tboot.h
6239 F:      arch/x86/kernel/tboot.c
6240
6241 INTEL WIRELESS WIMAX CONNECTION 2400
6242 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
6243 M:      linux-wimax@intel.com
6244 L:      wimax@linuxwimax.org (subscribers-only)
6245 S:      Supported
6246 W:      http://linuxwimax.org
6247 F:      Documentation/wimax/README.i2400m
6248 F:      drivers/net/wimax/i2400m/
6249 F:      include/uapi/linux/wimax/i2400m.h
6250
6251 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6252 M:      Stanislaw Gruszka <sgruszka@redhat.com>
6253 L:      linux-wireless@vger.kernel.org
6254 S:      Supported
6255 F:      drivers/net/wireless/intel/iwlegacy/
6256
6257 INTEL WIRELESS WIFI LINK (iwlwifi)
6258 M:      Johannes Berg <johannes.berg@intel.com>
6259 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
6260 M:      Luca Coelho <luciano.coelho@intel.com>
6261 M:      Intel Linux Wireless <linuxwifi@intel.com>
6262 L:      linux-wireless@vger.kernel.org
6263 W:      http://intellinuxwireless.org
6264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6265 S:      Supported
6266 F:      drivers/net/wireless/intel/iwlwifi/
6267
6268 INTEL MANAGEMENT ENGINE (mei)
6269 M:      Tomas Winkler <tomas.winkler@intel.com>
6270 L:      linux-kernel@vger.kernel.org
6271 S:      Supported
6272 F:      include/uapi/linux/mei.h
6273 F:      include/linux/mei_cl_bus.h
6274 F:      drivers/misc/mei/*
6275 F:      drivers/watchdog/mei_wdt.c
6276 F:      Documentation/misc-devices/mei/*
6277
6278 INTEL MIC DRIVERS (mic)
6279 M:      Sudeep Dutt <sudeep.dutt@intel.com>
6280 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
6281 S:      Supported
6282 W:      https://github.com/sudeepdutt/mic
6283 W:      http://software.intel.com/en-us/mic-developer
6284 F:      include/linux/mic_bus.h
6285 F:      include/linux/scif.h
6286 F:      include/uapi/linux/mic_common.h
6287 F:      include/uapi/linux/mic_ioctl.h
6288 F:      include/uapi/linux/scif_ioctl.h
6289 F:      drivers/misc/mic/
6290 F:      drivers/dma/mic_x100_dma.c
6291 F:      drivers/dma/mic_x100_dma.h
6292 F:      Documentation/mic/
6293
6294 INTEL PMC/P-Unit IPC DRIVER
6295 M:      Zha Qipeng<qipeng.zha@intel.com>
6296 L:      platform-driver-x86@vger.kernel.org
6297 S:      Maintained
6298 F:      drivers/platform/x86/intel_pmc_ipc.c
6299 F:      drivers/platform/x86/intel_punit_ipc.c
6300 F:      arch/x86/include/asm/intel_pmc_ipc.h
6301 F:      arch/x86/include/asm/intel_punit_ipc.h
6302
6303 INTEL TELEMETRY DRIVER
6304 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6305 L:      platform-driver-x86@vger.kernel.org
6306 S:      Maintained
6307 F:      arch/x86/include/asm/intel_telemetry.h
6308 F:      drivers/platform/x86/intel_telemetry*
6309
6310 INTEL PMC CORE DRIVER
6311 M:      Rajneesh Bhardwaj <rajneesh.bhardwaj@intel.com>
6312 M:      Vishwanath Somayaji <vishwanath.somayaji@intel.com>
6313 L:      platform-driver-x86@vger.kernel.org
6314 S:      Maintained
6315 F:      arch/x86/include/asm/pmc_core.h
6316 F:      drivers/platform/x86/intel_pmc_core*
6317
6318 IOC3 ETHERNET DRIVER
6319 M:      Ralf Baechle <ralf@linux-mips.org>
6320 L:      linux-mips@linux-mips.org
6321 S:      Maintained
6322 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6323
6324 IOC3 SERIAL DRIVER
6325 M:      Pat Gefre <pfg@sgi.com>
6326 L:      linux-serial@vger.kernel.org
6327 S:      Maintained
6328 F:      drivers/tty/serial/ioc3_serial.c
6329
6330 IOMMU DRIVERS
6331 M:      Joerg Roedel <joro@8bytes.org>
6332 L:      iommu@lists.linux-foundation.org
6333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6334 S:      Maintained
6335 F:      Documentation/devicetree/bindings/iommu/
6336 F:      drivers/iommu/
6337
6338 IP MASQUERADING
6339 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
6340 S:      Maintained
6341 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
6342
6343 IPMI SUBSYSTEM
6344 M:      Corey Minyard <minyard@acm.org>
6345 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
6346 W:      http://openipmi.sourceforge.net/
6347 S:      Supported
6348 F:      Documentation/IPMI.txt
6349 F:      drivers/char/ipmi/
6350 F:      include/linux/ipmi*
6351 F:      include/uapi/linux/ipmi*
6352
6353 QCOM AUDIO (ASoC) DRIVERS
6354 M:      Patrick Lai <plai@codeaurora.org>
6355 M:      Banajit Goswami <bgoswami@codeaurora.org>
6356 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6357 S:      Supported
6358 F:      sound/soc/qcom/
6359
6360 IPS SCSI RAID DRIVER
6361 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6362 L:      linux-scsi@vger.kernel.org
6363 W:      http://www.adaptec.com/
6364 S:      Maintained
6365 F:      drivers/scsi/ips*
6366
6367 IPVS
6368 M:      Wensong Zhang <wensong@linux-vs.org>
6369 M:      Simon Horman <horms@verge.net.au>
6370 M:      Julian Anastasov <ja@ssi.bg>
6371 L:      netdev@vger.kernel.org
6372 L:      lvs-devel@vger.kernel.org
6373 S:      Maintained
6374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6376 F:      Documentation/networking/ipvs-sysctl.txt
6377 F:      include/net/ip_vs.h
6378 F:      include/uapi/linux/ip_vs.h
6379 F:      net/netfilter/ipvs/
6380
6381 IPWIRELESS DRIVER
6382 M:      Jiri Kosina <jikos@kernel.org>
6383 M:      David Sterba <dsterba@suse.com>
6384 S:      Odd Fixes
6385 F:      drivers/tty/ipwireless/
6386
6387 IPX NETWORK LAYER
6388 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6389 L:      netdev@vger.kernel.org
6390 S:      Maintained
6391 F:      include/net/ipx.h
6392 F:      include/uapi/linux/ipx.h
6393 F:      net/ipx/
6394
6395 IRDA SUBSYSTEM
6396 M:      Samuel Ortiz <samuel@sortiz.org>
6397 L:      irda-users@lists.sourceforge.net (subscribers-only)
6398 L:      netdev@vger.kernel.org
6399 W:      http://irda.sourceforge.net/
6400 S:      Maintained
6401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6402 F:      Documentation/networking/irda.txt
6403 F:      drivers/net/irda/
6404 F:      include/net/irda/
6405 F:      net/irda/
6406
6407 IRQ SUBSYSTEM
6408 M:      Thomas Gleixner <tglx@linutronix.de>
6409 L:      linux-kernel@vger.kernel.org
6410 S:      Maintained
6411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6412 F:      kernel/irq/
6413
6414 IRQCHIP DRIVERS
6415 M:      Thomas Gleixner <tglx@linutronix.de>
6416 M:      Jason Cooper <jason@lakedaemon.net>
6417 M:      Marc Zyngier <marc.zyngier@arm.com>
6418 L:      linux-kernel@vger.kernel.org
6419 S:      Maintained
6420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6421 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6422 F:      Documentation/devicetree/bindings/interrupt-controller/
6423 F:      drivers/irqchip/
6424
6425 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6426 M:      Marc Zyngier <marc.zyngier@arm.com>
6427 S:      Maintained
6428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6429 F:      Documentation/IRQ-domain.txt
6430 F:      include/linux/irqdomain.h
6431 F:      kernel/irq/irqdomain.c
6432 F:      kernel/irq/msi.c
6433
6434 ISA
6435 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6436 S:      Maintained
6437 F:      Documentation/isa.txt
6438 F:      drivers/base/isa.c
6439 F:      include/linux/isa.h
6440
6441 ISAPNP
6442 M:      Jaroslav Kysela <perex@perex.cz>
6443 S:      Maintained
6444 F:      Documentation/isapnp.txt
6445 F:      drivers/pnp/isapnp/
6446 F:      include/linux/isapnp.h
6447
6448 ISA RADIO MODULE
6449 M:      Hans Verkuil <hverkuil@xs4all.nl>
6450 L:      linux-media@vger.kernel.org
6451 T:      git git://linuxtv.org/media_tree.git
6452 W:      https://linuxtv.org
6453 S:      Maintained
6454 F:      drivers/media/radio/radio-isa*
6455
6456 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6457 M:      Peter Jones <pjones@redhat.com>
6458 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6459 S:      Maintained
6460 F:      drivers/firmware/iscsi_ibft*
6461
6462 ISCSI
6463 M:      Mike Christie <michaelc@cs.wisc.edu>
6464 L:      open-iscsi@googlegroups.com
6465 W:      www.open-iscsi.org
6466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6467 S:      Maintained
6468 F:      drivers/scsi/*iscsi*
6469 F:      include/scsi/*iscsi*
6470
6471 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6472 M:      Or Gerlitz <ogerlitz@mellanox.com>
6473 M:      Sagi Grimberg <sagi@grimberg.me>
6474 M:      Roi Dayan <roid@mellanox.com>
6475 L:      linux-rdma@vger.kernel.org
6476 S:      Supported
6477 W:      http://www.openfabrics.org
6478 W:      www.open-iscsi.org
6479 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6480 F:      drivers/infiniband/ulp/iser/
6481
6482 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6483 M:      Sagi Grimberg <sagi@grimberg.me>
6484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6485 L:      linux-rdma@vger.kernel.org
6486 L:      target-devel@vger.kernel.org
6487 S:      Supported
6488 W:      http://www.linux-iscsi.org
6489 F:      drivers/infiniband/ulp/isert
6490
6491 ISDN SUBSYSTEM
6492 M:      Karsten Keil <isdn@linux-pingi.de>
6493 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6494 L:      netdev@vger.kernel.org
6495 W:      http://www.isdn4linux.de
6496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6497 S:      Maintained
6498 F:      Documentation/isdn/
6499 F:      drivers/isdn/
6500 F:      include/linux/isdn.h
6501 F:      include/linux/isdn/
6502 F:      include/uapi/linux/isdn.h
6503 F:      include/uapi/linux/isdn/
6504
6505 ISDN SUBSYSTEM (Eicon active card driver)
6506 M:      Armin Schindler <mac@melware.de>
6507 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6508 W:      http://www.melware.de
6509 S:      Maintained
6510 F:      drivers/isdn/hardware/eicon/
6511
6512 IT87 HARDWARE MONITORING DRIVER
6513 M:      Jean Delvare <jdelvare@suse.com>
6514 L:      linux-hwmon@vger.kernel.org
6515 S:      Maintained
6516 F:      Documentation/hwmon/it87
6517 F:      drivers/hwmon/it87.c
6518
6519 IT913X MEDIA DRIVER
6520 M:      Antti Palosaari <crope@iki.fi>
6521 L:      linux-media@vger.kernel.org
6522 W:      https://linuxtv.org
6523 W:      http://palosaari.fi/linux/
6524 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6525 T:      git git://linuxtv.org/anttip/media_tree.git
6526 S:      Maintained
6527 F:      drivers/media/tuners/it913x*
6528
6529 IVTV VIDEO4LINUX DRIVER
6530 M:      Andy Walls <awalls@md.metrocast.net>
6531 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6532 L:      linux-media@vger.kernel.org
6533 T:      git git://linuxtv.org/media_tree.git
6534 W:      http://www.ivtvdriver.org
6535 S:      Maintained
6536 F:      Documentation/video4linux/*.ivtv
6537 F:      drivers/media/pci/ivtv/
6538 F:      include/uapi/linux/ivtv*
6539
6540 IX2505V MEDIA DRIVER
6541 M:      Malcolm Priestley <tvboxspy@gmail.com>
6542 L:      linux-media@vger.kernel.org
6543 W:      https://linuxtv.org
6544 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6545 S:      Maintained
6546 F:      drivers/media/dvb-frontends/ix2505v*
6547
6548 JC42.4 TEMPERATURE SENSOR DRIVER
6549 M:      Guenter Roeck <linux@roeck-us.net>
6550 L:      linux-hwmon@vger.kernel.org
6551 S:      Maintained
6552 F:      drivers/hwmon/jc42.c
6553 F:      Documentation/hwmon/jc42
6554
6555 JFS FILESYSTEM
6556 M:      Dave Kleikamp <shaggy@kernel.org>
6557 L:      jfs-discussion@lists.sourceforge.net
6558 W:      http://jfs.sourceforge.net/
6559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6560 S:      Maintained
6561 F:      Documentation/filesystems/jfs.txt
6562 F:      fs/jfs/
6563
6564 JME NETWORK DRIVER
6565 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6566 L:      netdev@vger.kernel.org
6567 S:      Maintained
6568 F:      drivers/net/ethernet/jme.*
6569
6570 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6571 M:      David Woodhouse <dwmw2@infradead.org>
6572 L:      linux-mtd@lists.infradead.org
6573 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6574 S:      Maintained
6575 F:      fs/jffs2/
6576 F:      include/uapi/linux/jffs2.h
6577
6578 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6579 M:      "Theodore Ts'o" <tytso@mit.edu>
6580 M:      Jan Kara <jack@suse.com>
6581 L:      linux-ext4@vger.kernel.org
6582 S:      Maintained
6583 F:      fs/jbd2/
6584 F:      include/linux/jbd2.h
6585
6586 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6587 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6588 L:      linux-media@vger.kernel.org
6589 S:      Maintained
6590 F:      drivers/media/platform/rcar_jpu.c
6591
6592 JSM Neo PCI based serial card
6593 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6594 L:      linux-serial@vger.kernel.org
6595 S:      Maintained
6596 F:      drivers/tty/serial/jsm/
6597
6598 K10TEMP HARDWARE MONITORING DRIVER
6599 M:      Clemens Ladisch <clemens@ladisch.de>
6600 L:      linux-hwmon@vger.kernel.org
6601 S:      Maintained
6602 F:      Documentation/hwmon/k10temp
6603 F:      drivers/hwmon/k10temp.c
6604
6605 K8TEMP HARDWARE MONITORING DRIVER
6606 M:      Rudolf Marek <r.marek@assembler.cz>
6607 L:      linux-hwmon@vger.kernel.org
6608 S:      Maintained
6609 F:      Documentation/hwmon/k8temp
6610 F:      drivers/hwmon/k8temp.c
6611
6612 KASAN
6613 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6614 R:      Alexander Potapenko <glider@google.com>
6615 R:      Dmitry Vyukov <dvyukov@google.com>
6616 L:      kasan-dev@googlegroups.com
6617 S:      Maintained
6618 F:      arch/*/include/asm/kasan.h
6619 F:      arch/*/mm/kasan_init*
6620 F:      Documentation/kasan.txt
6621 F:      include/linux/kasan*.h
6622 F:      lib/test_kasan.c
6623 F:      mm/kasan/
6624 F:      scripts/Makefile.kasan
6625
6626 KCONFIG
6627 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6628 L:      linux-kbuild@vger.kernel.org
6629 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6630 S:      Maintained
6631 F:      Documentation/kbuild/kconfig-language.txt
6632 F:      scripts/kconfig/
6633
6634 KDUMP
6635 M:      Dave Young <dyoung@redhat.com>
6636 M:      Baoquan He <bhe@redhat.com>
6637 R:      Vivek Goyal <vgoyal@redhat.com>
6638 L:      kexec@lists.infradead.org
6639 W:      http://lse.sourceforge.net/kdump/
6640 S:      Maintained
6641 F:      Documentation/kdump/
6642
6643 KEENE FM RADIO TRANSMITTER DRIVER
6644 M:      Hans Verkuil <hverkuil@xs4all.nl>
6645 L:      linux-media@vger.kernel.org
6646 T:      git git://linuxtv.org/media_tree.git
6647 W:      https://linuxtv.org
6648 S:      Maintained
6649 F:      drivers/media/radio/radio-keene*
6650
6651 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6652 M:      Ian Kent <raven@themaw.net>
6653 L:      autofs@vger.kernel.org
6654 S:      Maintained
6655 F:      fs/autofs4/
6656
6657 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6658 M:      Michal Marek <mmarek@suse.com>
6659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6661 L:      linux-kbuild@vger.kernel.org
6662 S:      Maintained
6663 F:      Documentation/kbuild/
6664 F:      Makefile
6665 F:      scripts/Makefile.*
6666 F:      scripts/basic/
6667 F:      scripts/mk*
6668 F:      scripts/package/
6669
6670 KERNEL JANITORS
6671 L:      kernel-janitors@vger.kernel.org
6672 W:      http://kernelnewbies.org/KernelJanitors
6673 S:      Odd Fixes
6674
6675 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6676 M:      "J. Bruce Fields" <bfields@fieldses.org>
6677 M:      Jeff Layton <jlayton@poochiereds.net>
6678 L:      linux-nfs@vger.kernel.org
6679 W:      http://nfs.sourceforge.net/
6680 T:      git git://linux-nfs.org/~bfields/linux.git
6681 S:      Supported
6682 F:      fs/nfsd/
6683 F:      include/uapi/linux/nfsd/
6684 F:      fs/lockd/
6685 F:      fs/nfs_common/
6686 F:      net/sunrpc/
6687 F:      include/linux/lockd/
6688 F:      include/linux/sunrpc/
6689 F:      include/uapi/linux/sunrpc/
6690
6691 KERNEL SELFTEST FRAMEWORK
6692 M:      Shuah Khan <shuahkh@osg.samsung.com>
6693 M:      Shuah Khan <shuah@kernel.org>
6694 L:      linux-kselftest@vger.kernel.org
6695 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6696 S:      Maintained
6697 F:      tools/testing/selftests
6698
6699 KERNEL VIRTUAL MACHINE (KVM)
6700 M:      Paolo Bonzini <pbonzini@redhat.com>
6701 M:      Radim Krčmář <rkrcmar@redhat.com>
6702 L:      kvm@vger.kernel.org
6703 W:      http://www.linux-kvm.org
6704 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6705 S:      Supported
6706 F:      Documentation/*/kvm*.txt
6707 F:      Documentation/virtual/kvm/
6708 F:      arch/*/kvm/
6709 F:      arch/x86/kernel/kvm.c
6710 F:      arch/x86/kernel/kvmclock.c
6711 F:      arch/*/include/asm/kvm*
6712 F:      include/linux/kvm*
6713 F:      include/uapi/linux/kvm*
6714 F:      virt/kvm/
6715 F:      tools/kvm/
6716
6717 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6718 M:      Joerg Roedel <joro@8bytes.org>
6719 L:      kvm@vger.kernel.org
6720 W:      http://www.linux-kvm.org/
6721 S:      Maintained
6722 F:      arch/x86/include/asm/svm.h
6723 F:      arch/x86/kvm/svm.c
6724
6725 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6726 M:      Alexander Graf <agraf@suse.com>
6727 L:      kvm-ppc@vger.kernel.org
6728 W:      http://www.linux-kvm.org/
6729 T:      git git://github.com/agraf/linux-2.6.git
6730 S:      Supported
6731 F:      arch/powerpc/include/asm/kvm*
6732 F:      arch/powerpc/kvm/
6733
6734 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6735 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6736 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6737 L:      linux-s390@vger.kernel.org
6738 W:      http://www.ibm.com/developerworks/linux/linux390/
6739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6740 S:      Supported
6741 F:      Documentation/s390/kvm.txt
6742 F:      arch/s390/include/asm/kvm*
6743 F:      arch/s390/kvm/
6744
6745 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6746 M:      Christoffer Dall <christoffer.dall@linaro.org>
6747 M:      Marc Zyngier <marc.zyngier@arm.com>
6748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6749 L:      kvmarm@lists.cs.columbia.edu
6750 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6752 S:      Supported
6753 F:      arch/arm/include/uapi/asm/kvm*
6754 F:      arch/arm/include/asm/kvm*
6755 F:      arch/arm/kvm/
6756 F:      virt/kvm/arm/
6757 F:      include/kvm/arm_*
6758
6759 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6760 M:      Christoffer Dall <christoffer.dall@linaro.org>
6761 M:      Marc Zyngier <marc.zyngier@arm.com>
6762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6763 L:      kvmarm@lists.cs.columbia.edu
6764 S:      Maintained
6765 F:      arch/arm64/include/uapi/asm/kvm*
6766 F:      arch/arm64/include/asm/kvm*
6767 F:      arch/arm64/kvm/
6768
6769 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6770 M:      James Hogan <james.hogan@imgtec.com>
6771 L:      linux-mips@linux-mips.org
6772 S:      Supported
6773 F:      arch/mips/include/uapi/asm/kvm*
6774 F:      arch/mips/include/asm/kvm*
6775 F:      arch/mips/kvm/
6776
6777 KEXEC
6778 M:      Eric Biederman <ebiederm@xmission.com>
6779 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6780 L:      kexec@lists.infradead.org
6781 S:      Maintained
6782 F:      include/linux/kexec.h
6783 F:      include/uapi/linux/kexec.h
6784 F:      kernel/kexec*
6785
6786 KEYS/KEYRINGS:
6787 M:      David Howells <dhowells@redhat.com>
6788 L:      keyrings@vger.kernel.org
6789 S:      Maintained
6790 F:      Documentation/security/keys.txt
6791 F:      include/linux/key.h
6792 F:      include/linux/key-type.h
6793 F:      include/linux/keyctl.h
6794 F:      include/uapi/linux/keyctl.h
6795 F:      include/keys/
6796 F:      security/keys/
6797
6798 KEYS-TRUSTED
6799 M:      David Safford <safford@us.ibm.com>
6800 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6801 L:      linux-security-module@vger.kernel.org
6802 L:      keyrings@vger.kernel.org
6803 S:      Supported
6804 F:      Documentation/security/keys-trusted-encrypted.txt
6805 F:      include/keys/trusted-type.h
6806 F:      security/keys/trusted.c
6807 F:      security/keys/trusted.h
6808
6809 KEYS-ENCRYPTED
6810 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6811 M:      David Safford <safford@us.ibm.com>
6812 L:      linux-security-module@vger.kernel.org
6813 L:      keyrings@vger.kernel.org
6814 S:      Supported
6815 F:      Documentation/security/keys-trusted-encrypted.txt
6816 F:      include/keys/encrypted-type.h
6817 F:      security/keys/encrypted-keys/
6818
6819 KGDB / KDB /debug_core
6820 M:      Jason Wessel <jason.wessel@windriver.com>
6821 W:      http://kgdb.wiki.kernel.org/
6822 L:      kgdb-bugreport@lists.sourceforge.net
6823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6824 S:      Maintained
6825 F:      Documentation/DocBook/kgdb.tmpl
6826 F:      drivers/misc/kgdbts.c
6827 F:      drivers/tty/serial/kgdboc.c
6828 F:      include/linux/kdb.h
6829 F:      include/linux/kgdb.h
6830 F:      kernel/debug/
6831
6832 KMEMCHECK
6833 M:      Vegard Nossum <vegardno@ifi.uio.no>
6834 M:      Pekka Enberg <penberg@kernel.org>
6835 S:      Maintained
6836 F:      Documentation/kmemcheck.txt
6837 F:      arch/x86/include/asm/kmemcheck.h
6838 F:      arch/x86/mm/kmemcheck/
6839 F:      include/linux/kmemcheck.h
6840 F:      mm/kmemcheck.c
6841
6842 KMEMLEAK
6843 M:      Catalin Marinas <catalin.marinas@arm.com>
6844 S:      Maintained
6845 F:      Documentation/kmemleak.txt
6846 F:      include/linux/kmemleak.h
6847 F:      mm/kmemleak.c
6848 F:      mm/kmemleak-test.c
6849
6850 KPROBES
6851 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6852 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6853 M:      "David S. Miller" <davem@davemloft.net>
6854 M:      Masami Hiramatsu <mhiramat@kernel.org>
6855 S:      Maintained
6856 F:      Documentation/kprobes.txt
6857 F:      include/linux/kprobes.h
6858 F:      kernel/kprobes.c
6859
6860 KS0108 LCD CONTROLLER DRIVER
6861 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6862 W:      http://miguelojeda.es/auxdisplay.htm
6863 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6864 S:      Maintained
6865 F:      Documentation/auxdisplay/ks0108
6866 F:      drivers/auxdisplay/ks0108.c
6867 F:      include/linux/ks0108.h
6868
6869 L3MDEV
6870 M:      David Ahern <dsa@cumulusnetworks.com>
6871 L:      netdev@vger.kernel.org
6872 S:      Maintained
6873 F:      net/l3mdev
6874 F:      include/net/l3mdev.h
6875
6876 LANTIQ MIPS ARCHITECTURE
6877 M:      John Crispin <john@phrozen.org>
6878 L:      linux-mips@linux-mips.org
6879 S:      Maintained
6880 F:      arch/mips/lantiq
6881
6882 LAPB module
6883 L:      linux-x25@vger.kernel.org
6884 S:      Orphan
6885 F:      Documentation/networking/lapb-module.txt
6886 F:      include/*/lapb.h
6887 F:      net/lapb/
6888
6889 LASI 53c700 driver for PARISC
6890 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6891 L:      linux-scsi@vger.kernel.org
6892 S:      Maintained
6893 F:      Documentation/scsi/53c700.txt
6894 F:      drivers/scsi/53c700*
6895
6896 LED SUBSYSTEM
6897 M:      Richard Purdie <rpurdie@rpsys.net>
6898 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6899 L:      linux-leds@vger.kernel.org
6900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6901 S:      Maintained
6902 F:      Documentation/devicetree/bindings/leds/
6903 F:      drivers/leds/
6904 F:      include/linux/leds.h
6905
6906 LEGACY EEPROM DRIVER
6907 M:      Jean Delvare <jdelvare@suse.com>
6908 S:      Maintained
6909 F:      Documentation/misc-devices/eeprom
6910 F:      drivers/misc/eeprom/eeprom.c
6911
6912 LEGO USB Tower driver
6913 M:      Juergen Stuber <starblue@users.sourceforge.net>
6914 L:      legousb-devel@lists.sourceforge.net
6915 W:      http://legousb.sourceforge.net/
6916 S:      Maintained
6917 F:      drivers/usb/misc/legousbtower.c
6918
6919 LG2160 MEDIA DRIVER
6920 M:      Michael Krufky <mkrufky@linuxtv.org>
6921 L:      linux-media@vger.kernel.org
6922 W:      https://linuxtv.org
6923 W:      http://github.com/mkrufky
6924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6925 T:      git git://linuxtv.org/mkrufky/tuners.git
6926 S:      Maintained
6927 F:      drivers/media/dvb-frontends/lg2160.*
6928
6929 LGDT3305 MEDIA DRIVER
6930 M:      Michael Krufky <mkrufky@linuxtv.org>
6931 L:      linux-media@vger.kernel.org
6932 W:      https://linuxtv.org
6933 W:      http://github.com/mkrufky
6934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6935 T:      git git://linuxtv.org/mkrufky/tuners.git
6936 S:      Maintained
6937 F:      drivers/media/dvb-frontends/lgdt3305.*
6938
6939 LGUEST
6940 M:      Rusty Russell <rusty@rustcorp.com.au>
6941 L:      lguest@lists.ozlabs.org
6942 W:      http://lguest.ozlabs.org/
6943 S:      Odd Fixes
6944 F:      arch/x86/include/asm/lguest*.h
6945 F:      arch/x86/lguest/
6946 F:      drivers/lguest/
6947 F:      include/linux/lguest*.h
6948 F:      tools/lguest/
6949
6950 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6951 M:      Tejun Heo <tj@kernel.org>
6952 L:      linux-ide@vger.kernel.org
6953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6954 S:      Maintained
6955 F:      drivers/ata/
6956 F:      include/linux/ata.h
6957 F:      include/linux/libata.h
6958 F:      Documentation/devicetree/bindings/ata/
6959
6960 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6961 M:      Viresh Kumar <vireshk@kernel.org>
6962 L:      linux-ide@vger.kernel.org
6963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6964 S:      Maintained
6965 F:      include/linux/pata_arasan_cf_data.h
6966 F:      drivers/ata/pata_arasan_cf.c
6967
6968 LIBATA PATA DRIVERS
6969 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6970 M:      Tejun Heo <tj@kernel.org>
6971 L:      linux-ide@vger.kernel.org
6972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6973 S:      Maintained
6974 F:      drivers/ata/pata_*.c
6975 F:      drivers/ata/ata_generic.c
6976
6977 LIBATA SATA AHCI PLATFORM devices support
6978 M:      Hans de Goede <hdegoede@redhat.com>
6979 M:      Tejun Heo <tj@kernel.org>
6980 L:      linux-ide@vger.kernel.org
6981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6982 S:      Maintained
6983 F:      drivers/ata/ahci_platform.c
6984 F:      drivers/ata/libahci_platform.c
6985 F:      include/linux/ahci_platform.h
6986
6987 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6988 M:      Mikael Pettersson <mikpelinux@gmail.com>
6989 L:      linux-ide@vger.kernel.org
6990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6991 S:      Maintained
6992 F:      drivers/ata/sata_promise.*
6993
6994 LIBLOCKDEP
6995 M:      Sasha Levin <sasha.levin@oracle.com>
6996 S:      Maintained
6997 F:      tools/lib/lockdep/
6998
6999 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7000 M:      Dan Williams <dan.j.williams@intel.com>
7001 L:      linux-nvdimm@lists.01.org
7002 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7004 S:      Supported
7005 F:      drivers/nvdimm/*
7006 F:      include/linux/nd.h
7007 F:      include/linux/libnvdimm.h
7008 F:      include/uapi/linux/ndctl.h
7009
7010 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7011 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7012 L:      linux-nvdimm@lists.01.org
7013 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7014 S:      Supported
7015 F:      drivers/nvdimm/blk.c
7016 F:      drivers/nvdimm/region_devs.c
7017 F:      drivers/acpi/nfit*
7018
7019 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7020 M:      Vishal Verma <vishal.l.verma@intel.com>
7021 L:      linux-nvdimm@lists.01.org
7022 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7023 S:      Supported
7024 F:      drivers/nvdimm/btt*
7025
7026 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7027 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
7028 L:      linux-nvdimm@lists.01.org
7029 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7030 S:      Supported
7031 F:      drivers/nvdimm/pmem.c
7032 F:      include/linux/pmem.h
7033 F:      arch/*/include/asm/pmem.h
7034
7035 LIGHTNVM PLATFORM SUPPORT
7036 M:      Matias Bjorling <mb@lightnvm.io>
7037 W:      http://github/OpenChannelSSD
7038 L:      linux-block@vger.kernel.org
7039 S:      Maintained
7040 F:      drivers/lightnvm/
7041 F:      include/linux/lightnvm.h
7042 F:      include/uapi/linux/lightnvm.h
7043
7044 LINUX FOR IBM pSERIES (RS/6000)
7045 M:      Paul Mackerras <paulus@au.ibm.com>
7046 W:      http://www.ibm.com/linux/ltc/projects/ppc
7047 S:      Supported
7048 F:      arch/powerpc/boot/rs6000.h
7049
7050 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7051 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7052 M:      Paul Mackerras <paulus@samba.org>
7053 M:      Michael Ellerman <mpe@ellerman.id.au>
7054 W:      http://www.penguinppc.org/
7055 L:      linuxppc-dev@lists.ozlabs.org
7056 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7058 S:      Supported
7059 F:      Documentation/powerpc/
7060 F:      arch/powerpc/
7061 F:      drivers/char/tpm/tpm_ibmvtpm*
7062 F:      drivers/crypto/nx/
7063 F:      drivers/crypto/vmx/
7064 F:      drivers/net/ethernet/ibm/ibmveth.*
7065 F:      drivers/net/ethernet/ibm/ibmvnic.*
7066 F:      drivers/pci/hotplug/pnv_php.c
7067 F:      drivers/pci/hotplug/rpa*
7068 F:      drivers/scsi/ibmvscsi/
7069 N:      opal
7070 N:      /pmac
7071 N:      powermac
7072 N:      powernv
7073 N:      [^a-z0-9]ps3
7074 N:      pseries
7075
7076 LINUX FOR POWER MACINTOSH
7077 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
7078 W:      http://www.penguinppc.org/
7079 L:      linuxppc-dev@lists.ozlabs.org
7080 S:      Maintained
7081 F:      arch/powerpc/platforms/powermac/
7082 F:      drivers/macintosh/
7083
7084 LINUX FOR POWERPC EMBEDDED MPC5XXX
7085 M:      Anatolij Gustschin <agust@denx.de>
7086 L:      linuxppc-dev@lists.ozlabs.org
7087 T:      git git://git.denx.de/linux-denx-agust.git
7088 S:      Maintained
7089 F:      arch/powerpc/platforms/512x/
7090 F:      arch/powerpc/platforms/52xx/
7091
7092 LINUX FOR POWERPC EMBEDDED PPC4XX
7093 M:      Alistair Popple <alistair@popple.id.au>
7094 M:      Matt Porter <mporter@kernel.crashing.org>
7095 W:      http://www.penguinppc.org/
7096 L:      linuxppc-dev@lists.ozlabs.org
7097 S:      Maintained
7098 F:      arch/powerpc/platforms/40x/
7099 F:      arch/powerpc/platforms/44x/
7100
7101 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7102 L:      linuxppc-dev@lists.ozlabs.org
7103 S:      Orphan
7104 F:      arch/powerpc/*/*virtex*
7105 F:      arch/powerpc/*/*/*virtex*
7106
7107 LINUX FOR POWERPC EMBEDDED PPC8XX
7108 M:      Vitaly Bordug <vitb@kernel.crashing.org>
7109 W:      http://www.penguinppc.org/
7110 L:      linuxppc-dev@lists.ozlabs.org
7111 S:      Maintained
7112 F:      arch/powerpc/platforms/8xx/
7113
7114 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7115 M:      Scott Wood <oss@buserror.net>
7116 M:      Kumar Gala <galak@kernel.crashing.org>
7117 W:      http://www.penguinppc.org/
7118 L:      linuxppc-dev@lists.ozlabs.org
7119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7120 S:      Maintained
7121 F:      arch/powerpc/platforms/83xx/
7122 F:      arch/powerpc/platforms/85xx/
7123
7124 LINUX FOR POWERPC PA SEMI PWRFICIENT
7125 M:      Olof Johansson <olof@lixom.net>
7126 L:      linuxppc-dev@lists.ozlabs.org
7127 S:      Maintained
7128 F:      arch/powerpc/platforms/pasemi/
7129 F:      drivers/*/*pasemi*
7130 F:      drivers/*/*/*pasemi*
7131
7132 LINUX SECURITY MODULE (LSM) FRAMEWORK
7133 M:      Chris Wright <chrisw@sous-sol.org>
7134 L:      linux-security-module@vger.kernel.org
7135 S:      Supported
7136
7137 LIS3LV02D ACCELEROMETER DRIVER
7138 M:      Eric Piel <eric.piel@tremplin-utc.net>
7139 S:      Maintained
7140 F:      Documentation/misc-devices/lis3lv02d
7141 F:      drivers/misc/lis3lv02d/
7142 F:      drivers/platform/x86/hp_accel.c
7143
7144 LIVE PATCHING
7145 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7146 M:      Jessica Yu <jeyu@redhat.com>
7147 M:      Jiri Kosina <jikos@kernel.org>
7148 M:      Miroslav Benes <mbenes@suse.cz>
7149 R:      Petr Mladek <pmladek@suse.com>
7150 S:      Maintained
7151 F:      kernel/livepatch/
7152 F:      include/linux/livepatch.h
7153 F:      arch/x86/include/asm/livepatch.h
7154 F:      arch/x86/kernel/livepatch.c
7155 F:      Documentation/livepatch/
7156 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
7157 F:      samples/livepatch/
7158 L:      live-patching@vger.kernel.org
7159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7160
7161 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7162 M:      Kees Cook <keescook@chromium.org>
7163 S:      Maintained
7164 F:      drivers/misc/lkdtm*
7165
7166 LLC (802.2)
7167 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
7168 S:      Maintained
7169 F:      include/linux/llc.h
7170 F:      include/uapi/linux/llc.h
7171 F:      include/net/llc*
7172 F:      net/llc/
7173
7174 LM73 HARDWARE MONITOR DRIVER
7175 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
7176 L:      linux-hwmon@vger.kernel.org
7177 S:      Maintained
7178 F:      drivers/hwmon/lm73.c
7179
7180 LM78 HARDWARE MONITOR DRIVER
7181 M:      Jean Delvare <jdelvare@suse.com>
7182 L:      linux-hwmon@vger.kernel.org
7183 S:      Maintained
7184 F:      Documentation/hwmon/lm78
7185 F:      drivers/hwmon/lm78.c
7186
7187 LM83 HARDWARE MONITOR DRIVER
7188 M:      Jean Delvare <jdelvare@suse.com>
7189 L:      linux-hwmon@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/hwmon/lm83
7192 F:      drivers/hwmon/lm83.c
7193
7194 LM90 HARDWARE MONITOR DRIVER
7195 M:      Jean Delvare <jdelvare@suse.com>
7196 L:      linux-hwmon@vger.kernel.org
7197 S:      Maintained
7198 F:      Documentation/hwmon/lm90
7199 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
7200 F:      drivers/hwmon/lm90.c
7201
7202 LM95234 HARDWARE MONITOR DRIVER
7203 M:      Guenter Roeck <linux@roeck-us.net>
7204 L:      linux-hwmon@vger.kernel.org
7205 S:      Maintained
7206 F:      Documentation/hwmon/lm95234
7207 F:      drivers/hwmon/lm95234.c
7208
7209 LME2510 MEDIA DRIVER
7210 M:      Malcolm Priestley <tvboxspy@gmail.com>
7211 L:      linux-media@vger.kernel.org
7212 W:      https://linuxtv.org
7213 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7214 S:      Maintained
7215 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
7216
7217 LOCKING PRIMITIVES
7218 M:      Peter Zijlstra <peterz@infradead.org>
7219 M:      Ingo Molnar <mingo@redhat.com>
7220 L:      linux-kernel@vger.kernel.org
7221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7222 S:      Maintained
7223 F:      Documentation/locking/
7224 F:      include/linux/lockdep.h
7225 F:      include/linux/spinlock*.h
7226 F:      arch/*/include/asm/spinlock*.h
7227 F:      include/linux/rwlock*.h
7228 F:      include/linux/mutex*.h
7229 F:      arch/*/include/asm/mutex*.h
7230 F:      include/linux/rwsem*.h
7231 F:      arch/*/include/asm/rwsem.h
7232 F:      include/linux/seqlock.h
7233 F:      lib/locking*.[ch]
7234 F:      kernel/locking/
7235
7236 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7237 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
7238 L:      linux-ntfs-dev@lists.sourceforge.net
7239 W:      http://www.linux-ntfs.org/content/view/19/37/
7240 S:      Maintained
7241 F:      Documentation/ldm.txt
7242 F:      block/partitions/ldm.*
7243
7244 LogFS
7245 M:      Joern Engel <joern@logfs.org>
7246 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
7247 L:      logfs@logfs.org
7248 W:      logfs.org
7249 S:      Maintained
7250 F:      fs/logfs/
7251
7252 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7253 M:      Sathya Prakash <sathya.prakash@broadcom.com>
7254 M:      Chaitra P B <chaitra.basappa@broadcom.com>
7255 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
7256 L:      MPT-FusionLinux.pdl@broadcom.com
7257 L:      linux-scsi@vger.kernel.org
7258 W:      http://www.avagotech.com/support/
7259 S:      Supported
7260 F:      drivers/message/fusion/
7261 F:      drivers/scsi/mpt2sas/
7262 F:      drivers/scsi/mpt3sas/
7263
7264 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7265 M:      Matthew Wilcox <matthew@wil.cx>
7266 L:      linux-scsi@vger.kernel.org
7267 S:      Maintained
7268 F:      drivers/scsi/sym53c8xx_2/
7269
7270 LTC4261 HARDWARE MONITOR DRIVER
7271 M:      Guenter Roeck <linux@roeck-us.net>
7272 L:      linux-hwmon@vger.kernel.org
7273 S:      Maintained
7274 F:      Documentation/hwmon/ltc4261
7275 F:      drivers/hwmon/ltc4261.c
7276
7277 LTP (Linux Test Project)
7278 M:      Mike Frysinger <vapier@gentoo.org>
7279 M:      Cyril Hrubis <chrubis@suse.cz>
7280 M:      Wanlong Gao <wanlong.gao@gmail.com>
7281 M:      Jan Stancek <jstancek@redhat.com>
7282 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
7283 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
7284 L:      ltp@lists.linux.it (subscribers-only)
7285 W:      http://linux-test-project.github.io/
7286 T:      git git://github.com/linux-test-project/ltp.git
7287 S:      Maintained
7288
7289 M32R ARCHITECTURE
7290 W:      http://www.linux-m32r.org/
7291 S:      Orphan
7292 F:      arch/m32r/
7293
7294 M68K ARCHITECTURE
7295 M:      Geert Uytterhoeven <geert@linux-m68k.org>
7296 L:      linux-m68k@lists.linux-m68k.org
7297 W:      http://www.linux-m68k.org/
7298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7299 S:      Maintained
7300 F:      arch/m68k/
7301 F:      drivers/zorro/
7302
7303 M68K ON APPLE MACINTOSH
7304 M:      Joshua Thompson <funaho@jurai.org>
7305 W:      http://www.mac.linux-m68k.org/
7306 L:      linux-m68k@lists.linux-m68k.org
7307 S:      Maintained
7308 F:      arch/m68k/mac/
7309
7310 M68K ON HP9000/300
7311 M:      Philip Blundell <philb@gnu.org>
7312 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
7313 S:      Maintained
7314 F:      arch/m68k/hp300/
7315
7316 M88DS3103 MEDIA DRIVER
7317 M:      Antti Palosaari <crope@iki.fi>
7318 L:      linux-media@vger.kernel.org
7319 W:      https://linuxtv.org
7320 W:      http://palosaari.fi/linux/
7321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7322 T:      git git://linuxtv.org/anttip/media_tree.git
7323 S:      Maintained
7324 F:      drivers/media/dvb-frontends/m88ds3103*
7325
7326 M88RS2000 MEDIA DRIVER
7327 M:      Malcolm Priestley <tvboxspy@gmail.com>
7328 L:      linux-media@vger.kernel.org
7329 W:      https://linuxtv.org
7330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7331 S:      Maintained
7332 F:      drivers/media/dvb-frontends/m88rs2000*
7333
7334 MA901 MASTERKIT USB FM RADIO DRIVER
7335 M:      Alexey Klimov <klimov.linux@gmail.com>
7336 L:      linux-media@vger.kernel.org
7337 T:      git git://linuxtv.org/media_tree.git
7338 S:      Maintained
7339 F:      drivers/media/radio/radio-ma901.c
7340
7341 MAC80211
7342 M:      Johannes Berg <johannes@sipsolutions.net>
7343 L:      linux-wireless@vger.kernel.org
7344 W:      http://wireless.kernel.org/
7345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7347 S:      Maintained
7348 F:      Documentation/networking/mac80211-injection.txt
7349 F:      include/net/mac80211.h
7350 F:      net/mac80211/
7351 F:      drivers/net/wireless/mac80211_hwsim.[ch]
7352
7353 MACVLAN DRIVER
7354 M:      Patrick McHardy <kaber@trash.net>
7355 L:      netdev@vger.kernel.org
7356 S:      Maintained
7357 F:      drivers/net/macvlan.c
7358 F:      include/linux/if_macvlan.h
7359
7360 MAILBOX API
7361 M:      Jassi Brar <jassisinghbrar@gmail.com>
7362 L:      linux-kernel@vger.kernel.org
7363 S:      Maintained
7364 F:      drivers/mailbox/
7365 F:      include/linux/mailbox_client.h
7366 F:      include/linux/mailbox_controller.h
7367
7368 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7369 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7370 W:      http://www.kernel.org/doc/man-pages
7371 L:      linux-man@vger.kernel.org
7372 S:      Maintained
7373
7374 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
7375 M:      Andrew Lunn <andrew@lunn.ch>
7376 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
7377 S:      Maintained
7378 F:      drivers/net/dsa/mv88e6xxx/
7379
7380 MARVELL ARMADA DRM SUPPORT
7381 M:      Russell King <rmk+kernel@armlinux.org.uk>
7382 S:      Maintained
7383 F:      drivers/gpu/drm/armada/
7384 F:      include/uapi/drm/armada_drm.h
7385 F:      Documentation/devicetree/bindings/display/armada/
7386
7387 MARVELL CRYPTO DRIVER
7388 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7389 M:      Arnaud Ebalard <arno@natisbad.org>
7390 F:      drivers/crypto/marvell/
7391 S:      Maintained
7392 L:      linux-crypto@vger.kernel.org
7393
7394 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7395 M:      Mirko Lindner <mlindner@marvell.com>
7396 M:      Stephen Hemminger <stephen@networkplumber.org>
7397 L:      netdev@vger.kernel.org
7398 S:      Maintained
7399 F:      drivers/net/ethernet/marvell/sk*
7400
7401 MARVELL LIBERTAS WIRELESS DRIVER
7402 L:      libertas-dev@lists.infradead.org
7403 S:      Orphan
7404 F:      drivers/net/wireless/marvell/libertas/
7405
7406 MARVELL MV643XX ETHERNET DRIVER
7407 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7408 L:      netdev@vger.kernel.org
7409 S:      Maintained
7410 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7411 F:      include/linux/mv643xx.h
7412
7413 MARVELL MVNETA ETHERNET DRIVER
7414 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7415 L:      netdev@vger.kernel.org
7416 S:      Maintained
7417 F:      drivers/net/ethernet/marvell/mvneta.*
7418
7419 MARVELL MWIFIEX WIRELESS DRIVER
7420 M:      Amitkumar Karwar <akarwar@marvell.com>
7421 M:      Nishant Sarmukadam <nishants@marvell.com>
7422 L:      linux-wireless@vger.kernel.org
7423 S:      Maintained
7424 F:      drivers/net/wireless/marvell/mwifiex/
7425
7426 MARVELL MWL8K WIRELESS DRIVER
7427 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7428 L:      linux-wireless@vger.kernel.org
7429 S:      Odd Fixes
7430 F:      drivers/net/wireless/marvell/mwl8k.c
7431
7432 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7433 M:      Nicolas Pitre <nico@fluxnic.net>
7434 S:      Odd Fixes
7435 F:      drivers/mmc/host/mvsdio.*
7436
7437 MATROX FRAMEBUFFER DRIVER
7438 L:      linux-fbdev@vger.kernel.org
7439 S:      Orphan
7440 F:      drivers/video/fbdev/matrox/matroxfb_*
7441 F:      include/uapi/linux/matroxfb.h
7442
7443 MAX16065 HARDWARE MONITOR DRIVER
7444 M:      Guenter Roeck <linux@roeck-us.net>
7445 L:      linux-hwmon@vger.kernel.org
7446 S:      Maintained
7447 F:      Documentation/hwmon/max16065
7448 F:      drivers/hwmon/max16065.c
7449
7450 MAX20751 HARDWARE MONITOR DRIVER
7451 M:      Guenter Roeck <linux@roeck-us.net>
7452 L:      linux-hwmon@vger.kernel.org
7453 S:      Maintained
7454 F:      Documentation/hwmon/max20751
7455 F:      drivers/hwmon/max20751.c
7456
7457 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7458 L:      linux-hwmon@vger.kernel.org
7459 S:      Orphan
7460 F:      Documentation/hwmon/max6650
7461 F:      drivers/hwmon/max6650.c
7462
7463 MAX6697 HARDWARE MONITOR DRIVER
7464 M:      Guenter Roeck <linux@roeck-us.net>
7465 L:      linux-hwmon@vger.kernel.org
7466 S:      Maintained
7467 F:      Documentation/hwmon/max6697
7468 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7469 F:      drivers/hwmon/max6697.c
7470 F:      include/linux/platform_data/max6697.h
7471
7472 MAX9860 MONO AUDIO VOICE CODEC DRIVER
7473 M:      Peter Rosin <peda@axentia.se>
7474 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7475 S:      Maintained
7476 F:      Documentation/devicetree/bindings/sound/max9860.txt
7477 F:      sound/soc/codecs/max9860.*
7478
7479 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7480 M:      Krzysztof Kozlowski <krzk@kernel.org>
7481 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7482 L:      linux-pm@vger.kernel.org
7483 S:      Supported
7484 F:      drivers/power/max14577_charger.c
7485 F:      drivers/power/max77693_charger.c
7486
7487 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7488 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7489 L:      linux-kernel@vger.kernel.org
7490 S:      Supported
7491 F:      drivers/*/*max77802*.c
7492 F:      Documentation/devicetree/bindings/*/*max77802.txt
7493 F:      include/dt-bindings/*/*max77802.h
7494
7495 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7496 M:      Chanwoo Choi <cw00.choi@samsung.com>
7497 M:      Krzysztof Kozlowski <krzk@kernel.org>
7498 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
7499 L:      linux-kernel@vger.kernel.org
7500 S:      Supported
7501 F:      drivers/*/max14577*.c
7502 F:      drivers/*/max77686*.c
7503 F:      drivers/*/max77693*.c
7504 F:      drivers/extcon/extcon-max14577.c
7505 F:      drivers/extcon/extcon-max77693.c
7506 F:      drivers/rtc/rtc-max77686.c
7507 F:      drivers/clk/clk-max77686.c
7508 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7509 F:      Documentation/devicetree/bindings/*/max77686.txt
7510 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7511 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7512 F:      include/linux/mfd/max14577*.h
7513 F:      include/linux/mfd/max77686*.h
7514 F:      include/linux/mfd/max77693*.h
7515
7516 MAXIRADIO FM RADIO RECEIVER DRIVER
7517 M:      Hans Verkuil <hverkuil@xs4all.nl>
7518 L:      linux-media@vger.kernel.org
7519 T:      git git://linuxtv.org/media_tree.git
7520 W:      https://linuxtv.org
7521 S:      Maintained
7522 F:      drivers/media/radio/radio-maxiradio*
7523
7524 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7525 M:      Peter Rosin <peda@axentia.se>
7526 L:      linux-iio@vger.kernel.org
7527 S:      Maintained
7528 F:      drivers/iio/potentiometer/mcp4531.c
7529
7530 MEDIA DRIVERS FOR RENESAS - FCP
7531 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7532 L:      linux-media@vger.kernel.org
7533 L:      linux-renesas-soc@vger.kernel.org
7534 T:      git git://linuxtv.org/media_tree.git
7535 S:      Supported
7536 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
7537 F:      drivers/media/platform/rcar-fcp.c
7538 F:      include/media/rcar-fcp.h
7539
7540 MEDIA DRIVERS FOR RENESAS - VSP1
7541 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7542 L:      linux-media@vger.kernel.org
7543 L:      linux-renesas-soc@vger.kernel.org
7544 T:      git git://linuxtv.org/media_tree.git
7545 S:      Supported
7546 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7547 F:      drivers/media/platform/vsp1/
7548
7549 MEDIA DRIVERS FOR HELENE
7550 M:      Abylay Ospan <aospan@netup.ru>
7551 L:      linux-media@vger.kernel.org
7552 W:      https://linuxtv.org
7553 W:      http://netup.tv/
7554 T:      git git://linuxtv.org/media_tree.git
7555 S:      Supported
7556 F:      drivers/media/dvb-frontends/helene*
7557
7558 MEDIA DRIVERS FOR ASCOT2E
7559 M:      Sergey Kozlov <serjk@netup.ru>
7560 M:      Abylay Ospan <aospan@netup.ru>
7561 L:      linux-media@vger.kernel.org
7562 W:      https://linuxtv.org
7563 W:      http://netup.tv/
7564 T:      git git://linuxtv.org/media_tree.git
7565 S:      Supported
7566 F:      drivers/media/dvb-frontends/ascot2e*
7567
7568 MEDIA DRIVERS FOR CXD2841ER
7569 M:      Sergey Kozlov <serjk@netup.ru>
7570 M:      Abylay Ospan <aospan@netup.ru>
7571 L:      linux-media@vger.kernel.org
7572 W:      https://linuxtv.org
7573 W:      http://netup.tv/
7574 T:      git git://linuxtv.org/media_tree.git
7575 S:      Supported
7576 F:      drivers/media/dvb-frontends/cxd2841er*
7577
7578 MEDIA DRIVERS FOR HORUS3A
7579 M:      Sergey Kozlov <serjk@netup.ru>
7580 M:      Abylay Ospan <aospan@netup.ru>
7581 L:      linux-media@vger.kernel.org
7582 W:      https://linuxtv.org
7583 W:      http://netup.tv/
7584 T:      git git://linuxtv.org/media_tree.git
7585 S:      Supported
7586 F:      drivers/media/dvb-frontends/horus3a*
7587
7588 MEDIA DRIVERS FOR LNBH25
7589 M:      Sergey Kozlov <serjk@netup.ru>
7590 M:      Abylay Ospan <aospan@netup.ru>
7591 L:      linux-media@vger.kernel.org
7592 W:      https://linuxtv.org
7593 W:      http://netup.tv/
7594 T:      git git://linuxtv.org/media_tree.git
7595 S:      Supported
7596 F:      drivers/media/dvb-frontends/lnbh25*
7597
7598 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7599 M:      Sergey Kozlov <serjk@netup.ru>
7600 M:      Abylay Ospan <aospan@netup.ru>
7601 L:      linux-media@vger.kernel.org
7602 W:      https://linuxtv.org
7603 W:      http://netup.tv/
7604 T:      git git://linuxtv.org/media_tree.git
7605 S:      Supported
7606 F:      drivers/media/pci/netup_unidvb/*
7607
7608 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7609 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
7610 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7611 P:      LinuxTV.org Project
7612 L:      linux-media@vger.kernel.org
7613 W:      https://linuxtv.org
7614 Q:      http://patchwork.kernel.org/project/linux-media/list/
7615 T:      git git://linuxtv.org/media_tree.git
7616 S:      Maintained
7617 F:      Documentation/dvb/
7618 F:      Documentation/video4linux/
7619 F:      Documentation/DocBook/media/
7620 F:      drivers/media/
7621 F:      drivers/staging/media/
7622 F:      include/linux/platform_data/media/
7623 F:      include/media/
7624 F:      include/uapi/linux/dvb/
7625 F:      include/uapi/linux/videodev2.h
7626 F:      include/uapi/linux/media.h
7627 F:      include/uapi/linux/v4l2-*
7628 F:      include/uapi/linux/meye.h
7629 F:      include/uapi/linux/ivtv*
7630 F:      include/uapi/linux/uvcvideo.h
7631
7632 MEDIATEK ETHERNET DRIVER
7633 M:      Felix Fietkau <nbd@openwrt.org>
7634 M:      John Crispin <blogic@openwrt.org>
7635 L:      netdev@vger.kernel.org
7636 S:      Maintained
7637 F:      drivers/net/ethernet/mediatek/
7638
7639 MEDIATEK MT7601U WIRELESS LAN DRIVER
7640 M:      Jakub Kicinski <kubakici@wp.pl>
7641 L:      linux-wireless@vger.kernel.org
7642 S:      Maintained
7643 F:      drivers/net/wireless/mediatek/mt7601u/
7644
7645 MEGARAID SCSI/SAS DRIVERS
7646 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7647 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7648 M:      Uday Lingala <uday.lingala@avagotech.com>
7649 L:      megaraidlinux.pdl@avagotech.com
7650 L:      linux-scsi@vger.kernel.org
7651 W:      http://www.lsi.com
7652 S:      Maintained
7653 F:      Documentation/scsi/megaraid.txt
7654 F:      drivers/scsi/megaraid.*
7655 F:      drivers/scsi/megaraid/
7656
7657 MELLANOX ETHERNET DRIVER (mlx4_en)
7658 M:      Tariq Toukan <tariqt@mellanox.com>
7659 L:      netdev@vger.kernel.org
7660 S:      Supported
7661 W:      http://www.mellanox.com
7662 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7663 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7664
7665 MELLANOX ETHERNET DRIVER (mlx5e)
7666 M:      Saeed Mahameed <saeedm@mellanox.com>
7667 L:      netdev@vger.kernel.org
7668 S:      Supported
7669 W:      http://www.mellanox.com
7670 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7671 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7672
7673 MELLANOX ETHERNET SWITCH DRIVERS
7674 M:      Jiri Pirko <jiri@mellanox.com>
7675 M:      Ido Schimmel <idosch@mellanox.com>
7676 L:      netdev@vger.kernel.org
7677 S:      Supported
7678 W:      http://www.mellanox.com
7679 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7680 F:      drivers/net/ethernet/mellanox/mlxsw/
7681
7682 MELLANOX MLXCPLD LED DRIVER
7683 M:      Vadim Pasternak <vadimp@mellanox.com>
7684 L:      linux-leds@vger.kernel.org
7685 S:      Supported
7686 F:      drivers/leds/leds-mlxcpld.c
7687 F:      Documentation/leds/leds-mlxcpld.txt
7688
7689 MELLANOX PLATFORM DRIVER
7690 M:      Vadim Pasternak <vadimp@mellanox.com>
7691 L:      platform-driver-x86@vger.kernel.org
7692 S:      Supported
7693 F:      arch/x86/platform/mellanox/mlx-platform.c
7694
7695 SOFT-ROCE DRIVER (rxe)
7696 M:      Moni Shoua <monis@mellanox.com>
7697 L:      linux-rdma@vger.kernel.org
7698 S:      Supported
7699 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
7700 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7701 F:      drivers/infiniband/sw/rxe/
7702 F:      include/uapi/rdma/rdma_user_rxe.h
7703
7704 MEMBARRIER SUPPORT
7705 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7706 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7707 L:      linux-kernel@vger.kernel.org
7708 S:      Supported
7709 F:      kernel/membarrier.c
7710 F:      include/uapi/linux/membarrier.h
7711
7712 MEMORY MANAGEMENT
7713 L:      linux-mm@kvack.org
7714 W:      http://www.linux-mm.org
7715 S:      Maintained
7716 F:      include/linux/mm.h
7717 F:      include/linux/gfp.h
7718 F:      include/linux/mmzone.h
7719 F:      include/linux/memory_hotplug.h
7720 F:      include/linux/vmalloc.h
7721 F:      mm/
7722
7723 MEMORY TECHNOLOGY DEVICES (MTD)
7724 M:      David Woodhouse <dwmw2@infradead.org>
7725 M:      Brian Norris <computersforpeace@gmail.com>
7726 L:      linux-mtd@lists.infradead.org
7727 W:      http://www.linux-mtd.infradead.org/
7728 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7729 T:      git git://git.infradead.org/linux-mtd.git
7730 T:      git git://git.infradead.org/l2-mtd.git
7731 S:      Maintained
7732 F:      Documentation/devicetree/bindings/mtd/
7733 F:      drivers/mtd/
7734 F:      include/linux/mtd/
7735 F:      include/uapi/mtd/
7736
7737 MEN A21 WATCHDOG DRIVER
7738 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7739 L:      linux-watchdog@vger.kernel.org
7740 S:      Maintained
7741 F:      drivers/watchdog/mena21_wdt.c
7742
7743 MEN CHAMELEON BUS (mcb)
7744 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7745 S:      Maintained
7746 F:      drivers/mcb/
7747 F:      include/linux/mcb.h
7748 F:      Documentation/men-chameleon-bus.txt
7749
7750 MEN F21BMC (Board Management Controller)
7751 M:      Andreas Werner <andreas.werner@men.de>
7752 S:      Supported
7753 F:      drivers/mfd/menf21bmc.c
7754 F:      drivers/watchdog/menf21bmc_wdt.c
7755 F:      drivers/leds/leds-menf21bmc.c
7756 F:      drivers/hwmon/menf21bmc_hwmon.c
7757 F:      Documentation/hwmon/menf21bmc
7758
7759 METAG ARCHITECTURE
7760 M:      James Hogan <james.hogan@imgtec.com>
7761 L:      linux-metag@vger.kernel.org
7762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7763 S:      Odd Fixes
7764 F:      arch/metag/
7765 F:      Documentation/metag/
7766 F:      Documentation/devicetree/bindings/metag/
7767 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7768 F:      drivers/clocksource/metag_generic.c
7769 F:      drivers/irqchip/irq-metag.c
7770 F:      drivers/irqchip/irq-metag-ext.c
7771 F:      drivers/tty/metag_da.c
7772
7773 MICROBLAZE ARCHITECTURE
7774 M:      Michal Simek <monstr@monstr.eu>
7775 W:      http://www.monstr.eu/fdt/
7776 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7777 S:      Supported
7778 F:      arch/microblaze/
7779
7780 MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER
7781 M:      Richard Genoud <richard.genoud@gmail.com>
7782 S:      Maintained
7783 F:      drivers/tty/serial/atmel_serial.c
7784 F:      include/linux/atmel_serial.h
7785
7786 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7787 M:      Chen Yu <yu.c.chen@intel.com>
7788 L:      platform-driver-x86@vger.kernel.org
7789 S:      Supported
7790 F:      drivers/platform/x86/surfacepro3_button.c
7791
7792 MICROTEK X6 SCANNER
7793 M:      Oliver Neukum <oliver@neukum.org>
7794 S:      Maintained
7795 F:      drivers/usb/image/microtek.*
7796
7797 MIPS
7798 M:      Ralf Baechle <ralf@linux-mips.org>
7799 L:      linux-mips@linux-mips.org
7800 W:      http://www.linux-mips.org/
7801 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7802 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7803 S:      Supported
7804 F:      Documentation/devicetree/bindings/mips/
7805 F:      Documentation/mips/
7806 F:      arch/mips/
7807
7808 MIPS/LOONGSON1 ARCHITECTURE
7809 M:      Keguang Zhang <keguang.zhang@gmail.com>
7810 L:      linux-mips@linux-mips.org
7811 S:      Maintained
7812 F:      arch/mips/loongson32/
7813 F:      arch/mips/include/asm/mach-loongson32/
7814 F:      drivers/*/*loongson1*
7815 F:      drivers/*/*/*loongson1*
7816
7817 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7818 M:      Hans Verkuil <hverkuil@xs4all.nl>
7819 L:      linux-media@vger.kernel.org
7820 T:      git git://linuxtv.org/media_tree.git
7821 W:      https://linuxtv.org
7822 S:      Odd Fixes
7823 F:      drivers/media/radio/radio-miropcm20*
7824
7825 MELLANOX MLX4 core VPI driver
7826 M:      Yishai Hadas <yishaih@mellanox.com>
7827 L:      netdev@vger.kernel.org
7828 L:      linux-rdma@vger.kernel.org
7829 W:      http://www.mellanox.com
7830 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7831 S:      Supported
7832 F:      drivers/net/ethernet/mellanox/mlx4/
7833 F:      include/linux/mlx4/
7834
7835 MELLANOX MLX4 IB driver
7836 M:      Yishai Hadas <yishaih@mellanox.com>
7837 L:      linux-rdma@vger.kernel.org
7838 W:      http://www.mellanox.com
7839 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7840 S:      Supported
7841 F:      drivers/infiniband/hw/mlx4/
7842 F:      include/linux/mlx4/
7843
7844 MELLANOX MLX5 core VPI driver
7845 M:      Matan Barak <matanb@mellanox.com>
7846 M:      Leon Romanovsky <leonro@mellanox.com>
7847 L:      netdev@vger.kernel.org
7848 L:      linux-rdma@vger.kernel.org
7849 W:      http://www.mellanox.com
7850 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7851 S:      Supported
7852 F:      drivers/net/ethernet/mellanox/mlx5/core/
7853 F:      include/linux/mlx5/
7854
7855 MELLANOX MLX5 IB driver
7856 M:      Matan Barak <matanb@mellanox.com>
7857 M:      Leon Romanovsky <leonro@mellanox.com>
7858 L:      linux-rdma@vger.kernel.org
7859 W:      http://www.mellanox.com
7860 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7861 S:      Supported
7862 F:      drivers/infiniband/hw/mlx5/
7863 F:      include/linux/mlx5/
7864
7865 MELEXIS MLX90614 DRIVER
7866 M:      Crt Mori <cmo@melexis.com>
7867 L:      linux-iio@vger.kernel.org
7868 W:      http://www.melexis.com
7869 S:      Supported
7870 F:      drivers/iio/temperature/mlx90614.c
7871
7872 MN88472 MEDIA DRIVER
7873 M:      Antti Palosaari <crope@iki.fi>
7874 L:      linux-media@vger.kernel.org
7875 W:      https://linuxtv.org
7876 W:      http://palosaari.fi/linux/
7877 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7878 S:      Maintained
7879 F:      drivers/media/dvb-frontends/mn88472*
7880
7881 MN88473 MEDIA DRIVER
7882 M:      Antti Palosaari <crope@iki.fi>
7883 L:      linux-media@vger.kernel.org
7884 W:      https://linuxtv.org
7885 W:      http://palosaari.fi/linux/
7886 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7887 S:      Maintained
7888 F:      drivers/media/dvb-frontends/mn88473*
7889
7890 MODULE SUPPORT
7891 M:      Rusty Russell <rusty@rustcorp.com.au>
7892 S:      Maintained
7893 F:      include/linux/module.h
7894 F:      kernel/module.c
7895
7896 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7897 W:      http://popies.net/meye/
7898 S:      Orphan
7899 F:      Documentation/video4linux/meye.txt
7900 F:      drivers/media/pci/meye/
7901 F:      include/uapi/linux/meye.h
7902
7903 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7904 M:      Jiri Slaby <jirislaby@gmail.com>
7905 S:      Maintained
7906 F:      Documentation/serial/moxa-smartio
7907 F:      drivers/tty/mxser.*
7908
7909 MR800 AVERMEDIA USB FM RADIO DRIVER
7910 M:      Alexey Klimov <klimov.linux@gmail.com>
7911 L:      linux-media@vger.kernel.org
7912 T:      git git://linuxtv.org/media_tree.git
7913 S:      Maintained
7914 F:      drivers/media/radio/radio-mr800.c
7915
7916 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7917 M:      Alan Ott <alan@signal11.us>
7918 L:      linux-wpan@vger.kernel.org
7919 S:      Maintained
7920 F:      drivers/net/ieee802154/mrf24j40.c
7921 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7922
7923 MSI LAPTOP SUPPORT
7924 M:      "Lee, Chun-Yi" <jlee@suse.com>
7925 L:      platform-driver-x86@vger.kernel.org
7926 S:      Maintained
7927 F:      drivers/platform/x86/msi-laptop.c
7928
7929 MSI WMI SUPPORT
7930 L:      platform-driver-x86@vger.kernel.org
7931 S:      Orphan
7932 F:      drivers/platform/x86/msi-wmi.c
7933
7934 MSI001 MEDIA DRIVER
7935 M:      Antti Palosaari <crope@iki.fi>
7936 L:      linux-media@vger.kernel.org
7937 W:      https://linuxtv.org
7938 W:      http://palosaari.fi/linux/
7939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7940 T:      git git://linuxtv.org/anttip/media_tree.git
7941 S:      Maintained
7942 F:      drivers/media/tuners/msi001*
7943
7944 MSI2500 MEDIA DRIVER
7945 M:      Antti Palosaari <crope@iki.fi>
7946 L:      linux-media@vger.kernel.org
7947 W:      https://linuxtv.org
7948 W:      http://palosaari.fi/linux/
7949 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7950 T:      git git://linuxtv.org/anttip/media_tree.git
7951 S:      Maintained
7952 F:      drivers/media/usb/msi2500/
7953
7954 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7955 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7956 L:      linux-mtd@lists.infradead.org
7957 S:      Maintained
7958 F:      drivers/mtd/devices/docg3*
7959
7960 MT9M032 APTINA SENSOR DRIVER
7961 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7962 L:      linux-media@vger.kernel.org
7963 T:      git git://linuxtv.org/media_tree.git
7964 S:      Maintained
7965 F:      drivers/media/i2c/mt9m032.c
7966 F:      include/media/i2c/mt9m032.h
7967
7968 MT9P031 APTINA CAMERA SENSOR
7969 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7970 L:      linux-media@vger.kernel.org
7971 T:      git git://linuxtv.org/media_tree.git
7972 S:      Maintained
7973 F:      drivers/media/i2c/mt9p031.c
7974 F:      include/media/i2c/mt9p031.h
7975
7976 MT9T001 APTINA CAMERA SENSOR
7977 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7978 L:      linux-media@vger.kernel.org
7979 T:      git git://linuxtv.org/media_tree.git
7980 S:      Maintained
7981 F:      drivers/media/i2c/mt9t001.c
7982 F:      include/media/i2c/mt9t001.h
7983
7984 MT9V032 APTINA CAMERA SENSOR
7985 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7986 L:      linux-media@vger.kernel.org
7987 T:      git git://linuxtv.org/media_tree.git
7988 S:      Maintained
7989 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7990 F:      drivers/media/i2c/mt9v032.c
7991 F:      include/media/i2c/mt9v032.h
7992
7993 MULTIFUNCTION DEVICES (MFD)
7994 M:      Lee Jones <lee.jones@linaro.org>
7995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7996 S:      Supported
7997 F:      drivers/mfd/
7998 F:      include/linux/mfd/
7999
8000 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
8001 M:      Ulf Hansson <ulf.hansson@linaro.org>
8002 L:      linux-mmc@vger.kernel.org
8003 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
8004 S:      Maintained
8005 F:      Documentation/devicetree/bindings/mmc/
8006 F:      drivers/mmc/
8007 F:      include/linux/mmc/
8008 F:      include/uapi/linux/mmc/
8009
8010 MULTIMEDIA CARD (MMC) ETC. OVER SPI
8011 S:      Orphan
8012 F:      drivers/mmc/host/mmc_spi.c
8013 F:      include/linux/spi/mmc_spi.h
8014
8015 MULTISOUND SOUND DRIVER
8016 M:      Andrew Veliath <andrewtv@usa.net>
8017 S:      Maintained
8018 F:      Documentation/sound/oss/MultiSound
8019 F:      sound/oss/msnd*
8020
8021 MULTITECH MULTIPORT CARD (ISICOM)
8022 S:      Orphan
8023 F:      drivers/tty/isicom.c
8024 F:      include/linux/isicom.h
8025
8026 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
8027 M:      Bin Liu <b-liu@ti.com>
8028 L:      linux-usb@vger.kernel.org
8029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8030 S:      Maintained
8031 F:      drivers/usb/musb/
8032
8033 MXL5007T MEDIA DRIVER
8034 M:      Michael Krufky <mkrufky@linuxtv.org>
8035 L:      linux-media@vger.kernel.org
8036 W:      https://linuxtv.org
8037 W:      http://github.com/mkrufky
8038 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8039 T:      git git://linuxtv.org/mkrufky/tuners.git
8040 S:      Maintained
8041 F:      drivers/media/tuners/mxl5007t.*
8042
8043 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
8044 M:      Hyong-Youb Kim <hykim@myri.com>
8045 L:      netdev@vger.kernel.org
8046 W:      https://www.myricom.com/support/downloads/myri10ge.html
8047 S:      Supported
8048 F:      drivers/net/ethernet/myricom/myri10ge/
8049
8050 NAND FLASH SUBSYSTEM
8051 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
8052 R:      Richard Weinberger <richard@nod.at>
8053 L:      linux-mtd@lists.infradead.org
8054 W:      http://www.linux-mtd.infradead.org/
8055 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8056 T:      git git://github.com/linux-nand/linux.git
8057 S:      Maintained
8058 F:      drivers/mtd/nand/
8059 F:      include/linux/mtd/nand*.h
8060
8061 NATSEMI ETHERNET DRIVER (DP8381x)
8062 S:      Orphan
8063 F:      drivers/net/ethernet/natsemi/natsemi.c
8064
8065 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
8066 M:      Daniel Mack <zonque@gmail.com>
8067 S:      Maintained
8068 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8069 W:      http://www.native-instruments.com
8070 F:      sound/usb/caiaq/
8071
8072 NCP FILESYSTEM
8073 M:      Petr Vandrovec <petr@vandrovec.name>
8074 S:      Odd Fixes
8075 F:      fs/ncpfs/
8076
8077 NCR 5380 SCSI DRIVERS
8078 M:      Finn Thain <fthain@telegraphics.com.au>
8079 M:      Michael Schmitz <schmitzmic@gmail.com>
8080 L:      linux-scsi@vger.kernel.org
8081 S:      Maintained
8082 F:      Documentation/scsi/g_NCR5380.txt
8083 F:      Documentation/scsi/dtc3x80.txt
8084 F:      drivers/scsi/NCR5380.*
8085 F:      drivers/scsi/arm/cumana_1.c
8086 F:      drivers/scsi/arm/oak.c
8087 F:      drivers/scsi/atari_scsi.*
8088 F:      drivers/scsi/dmx3191d.c
8089 F:      drivers/scsi/dtc.*
8090 F:      drivers/scsi/g_NCR5380.*
8091 F:      drivers/scsi/g_NCR5380_mmio.c
8092 F:      drivers/scsi/mac_scsi.*
8093 F:      drivers/scsi/pas16.*
8094 F:      drivers/scsi/sun3_scsi.*
8095 F:      drivers/scsi/sun3_scsi_vme.c
8096 F:      drivers/scsi/t128.*
8097
8098 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
8099 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
8100 L:      linux-scsi@vger.kernel.org
8101 S:      Maintained
8102 F:      drivers/scsi/NCR_D700.*
8103
8104 NCT6775 HARDWARE MONITOR DRIVER
8105 M:      Guenter Roeck <linux@roeck-us.net>
8106 L:      linux-hwmon@vger.kernel.org
8107 S:      Maintained
8108 F:      Documentation/hwmon/nct6775
8109 F:      drivers/hwmon/nct6775.c
8110
8111 NETEFFECT IWARP RNIC DRIVER (IW_NES)
8112 M:      Faisal Latif <faisal.latif@intel.com>
8113 L:      linux-rdma@vger.kernel.org
8114 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
8115 S:      Supported
8116 F:      drivers/infiniband/hw/nes/
8117
8118 NETEM NETWORK EMULATOR
8119 M:      Stephen Hemminger <stephen@networkplumber.org>
8120 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
8121 S:      Maintained
8122 F:      net/sched/sch_netem.c
8123
8124 NETERION 10GbE DRIVERS (s2io/vxge)
8125 M:      Jon Mason <jdmason@kudzu.us>
8126 L:      netdev@vger.kernel.org
8127 S:      Supported
8128 F:      Documentation/networking/s2io.txt
8129 F:      Documentation/networking/vxge.txt
8130 F:      drivers/net/ethernet/neterion/
8131
8132 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
8133 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8134 M:      Patrick McHardy <kaber@trash.net>
8135 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
8136 L:      netfilter-devel@vger.kernel.org
8137 L:      coreteam@netfilter.org
8138 W:      http://www.netfilter.org/
8139 W:      http://www.iptables.org/
8140 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
8141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
8142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
8143 S:      Supported
8144 F:      include/linux/netfilter*
8145 F:      include/linux/netfilter/
8146 F:      include/net/netfilter/
8147 F:      include/uapi/linux/netfilter*
8148 F:      include/uapi/linux/netfilter/
8149 F:      net/*/netfilter.c
8150 F:      net/*/netfilter/
8151 F:      net/netfilter/
8152 F:      net/bridge/br_netfilter*.c
8153
8154 NETLABEL
8155 M:      Paul Moore <paul@paul-moore.com>
8156 W:      http://netlabel.sf.net
8157 L:      netdev@vger.kernel.org
8158 S:      Maintained
8159 F:      Documentation/netlabel/
8160 F:      include/net/netlabel.h
8161 F:      net/netlabel/
8162
8163 NETROM NETWORK LAYER
8164 M:      Ralf Baechle <ralf@linux-mips.org>
8165 L:      linux-hams@vger.kernel.org
8166 W:      http://www.linux-ax25.org/
8167 S:      Maintained
8168 F:      include/net/netrom.h
8169 F:      include/uapi/linux/netrom.h
8170 F:      net/netrom/
8171
8172 NETRONOME ETHERNET DRIVERS
8173 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
8174 L:      oss-drivers@netronome.com
8175 S:      Maintained
8176 F:      drivers/net/ethernet/netronome/
8177
8178 NETWORK BLOCK DEVICE (NBD)
8179 M:      Markus Pargmann <mpa@pengutronix.de>
8180 S:      Maintained
8181 L:      nbd-general@lists.sourceforge.net
8182 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
8183 F:      Documentation/blockdev/nbd.txt
8184 F:      drivers/block/nbd.c
8185 F:      include/uapi/linux/nbd.h
8186
8187 NETWORK DROP MONITOR
8188 M:      Neil Horman <nhorman@tuxdriver.com>
8189 L:      netdev@vger.kernel.org
8190 S:      Maintained
8191 W:      https://fedorahosted.org/dropwatch/
8192 F:      net/core/drop_monitor.c
8193
8194 NETWORKING [DSA]
8195 M:      Andrew Lunn <andrew@lunn.ch>
8196 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
8197 M:      Florian Fainelli <f.fainelli@gmail.com>
8198 S:      Maintained
8199 F:      net/dsa/
8200 F:      include/net/dsa.h
8201 F:      drivers/net/dsa/
8202
8203 NETWORKING [GENERAL]
8204 M:      "David S. Miller" <davem@davemloft.net>
8205 L:      netdev@vger.kernel.org
8206 W:      http://www.linuxfoundation.org/en/Net
8207 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8210 S:      Maintained
8211 F:      net/
8212 F:      include/net/
8213 F:      include/linux/in.h
8214 F:      include/linux/net.h
8215 F:      include/linux/netdevice.h
8216 F:      include/uapi/linux/in.h
8217 F:      include/uapi/linux/net.h
8218 F:      include/uapi/linux/netdevice.h
8219 F:      include/uapi/linux/net_namespace.h
8220 F:      tools/net/
8221 F:      tools/testing/selftests/net/
8222 F:      lib/random32.c
8223 F:      lib/test_bpf.c
8224
8225 NETWORKING [IPv4/IPv6]
8226 M:      "David S. Miller" <davem@davemloft.net>
8227 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
8228 M:      James Morris <jmorris@namei.org>
8229 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
8230 M:      Patrick McHardy <kaber@trash.net>
8231 L:      netdev@vger.kernel.org
8232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8233 S:      Maintained
8234 F:      net/ipv4/
8235 F:      net/ipv6/
8236 F:      include/net/ip*
8237 F:      arch/x86/net/*
8238
8239 NETWORKING [IPSEC]
8240 M:      Steffen Klassert <steffen.klassert@secunet.com>
8241 M:      Herbert Xu <herbert@gondor.apana.org.au>
8242 M:      "David S. Miller" <davem@davemloft.net>
8243 L:      netdev@vger.kernel.org
8244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
8245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
8246 S:      Maintained
8247 F:      net/core/flow.c
8248 F:      net/xfrm/
8249 F:      net/key/
8250 F:      net/ipv4/xfrm*
8251 F:      net/ipv4/esp4.c
8252 F:      net/ipv4/ah4.c
8253 F:      net/ipv4/ipcomp.c
8254 F:      net/ipv4/ip_vti.c
8255 F:      net/ipv6/xfrm*
8256 F:      net/ipv6/esp6.c
8257 F:      net/ipv6/ah6.c
8258 F:      net/ipv6/ipcomp6.c
8259 F:      net/ipv6/ip6_vti.c
8260 F:      include/uapi/linux/xfrm.h
8261 F:      include/net/xfrm.h
8262
8263 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
8264 M:      Paul Moore <paul@paul-moore.com>
8265 L:      netdev@vger.kernel.org
8266 S:      Maintained
8267
8268 NETWORKING [WIRELESS]
8269 L:      linux-wireless@vger.kernel.org
8270 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8271
8272 NETWORKING DRIVERS
8273 L:      netdev@vger.kernel.org
8274 W:      http://www.linuxfoundation.org/en/Net
8275 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8278 S:      Odd Fixes
8279 F:      Documentation/devicetree/bindings/net/
8280 F:      drivers/net/
8281 F:      include/linux/if_*
8282 F:      include/linux/netdevice.h
8283 F:      include/linux/etherdevice.h
8284 F:      include/linux/fcdevice.h
8285 F:      include/linux/fddidevice.h
8286 F:      include/linux/hippidevice.h
8287 F:      include/linux/inetdevice.h
8288 F:      include/uapi/linux/if_*
8289 F:      include/uapi/linux/netdevice.h
8290
8291 NETWORKING DRIVERS (WIRELESS)
8292 M:      Kalle Valo <kvalo@codeaurora.org>
8293 L:      linux-wireless@vger.kernel.org
8294 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
8296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
8297 S:      Maintained
8298 F:      Documentation/devicetree/bindings/net/wireless/
8299 F:      drivers/net/wireless/
8300
8301 NETXEN (1/10) GbE SUPPORT
8302 M:      Manish Chopra <manish.chopra@qlogic.com>
8303 M:      Sony Chacko <sony.chacko@qlogic.com>
8304 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
8305 L:      netdev@vger.kernel.org
8306 W:      http://www.qlogic.com
8307 S:      Supported
8308 F:      drivers/net/ethernet/qlogic/netxen/
8309
8310 NFC SUBSYSTEM
8311 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
8312 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
8313 M:      Samuel Ortiz <sameo@linux.intel.com>
8314 L:      linux-wireless@vger.kernel.org
8315 L:      linux-nfc@lists.01.org (subscribers-only)
8316 S:      Supported
8317 F:      net/nfc/
8318 F:      include/net/nfc/
8319 F:      include/uapi/linux/nfc.h
8320 F:      drivers/nfc/
8321 F:      include/linux/platform_data/nfcmrvl.h
8322 F:      include/linux/platform_data/nxp-nci.h
8323 F:      include/linux/platform_data/pn544.h
8324 F:      include/linux/platform_data/st21nfca.h
8325 F:      include/linux/platform_data/st-nci.h
8326 F:      Documentation/devicetree/bindings/net/nfc/
8327
8328 NFS, SUNRPC, AND LOCKD CLIENTS
8329 M:      Trond Myklebust <trond.myklebust@primarydata.com>
8330 M:      Anna Schumaker <anna.schumaker@netapp.com>
8331 L:      linux-nfs@vger.kernel.org
8332 W:      http://client.linux-nfs.org
8333 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
8334 S:      Maintained
8335 F:      fs/lockd/
8336 F:      fs/nfs/
8337 F:      fs/nfs_common/
8338 F:      net/sunrpc/
8339 F:      include/linux/lockd/
8340 F:      include/linux/nfs*
8341 F:      include/linux/sunrpc/
8342 F:      include/uapi/linux/nfs*
8343 F:      include/uapi/linux/sunrpc/
8344
8345 NILFS2 FILESYSTEM
8346 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
8347 L:      linux-nilfs@vger.kernel.org
8348 W:      http://nilfs.sourceforge.net/
8349 W:      http://nilfs.osdn.jp/
8350 T:      git git://github.com/konis/nilfs2.git
8351 S:      Supported
8352 F:      Documentation/filesystems/nilfs2.txt
8353 F:      fs/nilfs2/
8354 F:      include/trace/events/nilfs2.h
8355 F:      include/uapi/linux/nilfs2_api.h
8356 F:      include/uapi/linux/nilfs2_ondisk.h
8357
8358 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
8359 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8360 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8361 S:      Maintained
8362 F:      Documentation/scsi/NinjaSCSI.txt
8363 F:      drivers/scsi/pcmcia/nsp_*
8364
8365 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
8366 M:      GOTO Masanori <gotom@debian.or.jp>
8367 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
8368 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
8369 S:      Maintained
8370 F:      Documentation/scsi/NinjaSCSI.txt
8371 F:      drivers/scsi/nsp32*
8372
8373 NIOS2 ARCHITECTURE
8374 M:      Ley Foon Tan <lftan@altera.com>
8375 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
8376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
8377 S:      Maintained
8378 F:      arch/nios2/
8379
8380 NOKIA N900 POWER SUPPLY DRIVERS
8381 R:      Pali Rohár <pali.rohar@gmail.com>
8382 F:      include/linux/power/bq2415x_charger.h
8383 F:      include/linux/power/bq27xxx_battery.h
8384 F:      include/linux/power/isp1704_charger.h
8385 F:      drivers/power/bq2415x_charger.c
8386 F:      drivers/power/bq27xxx_battery.c
8387 F:      drivers/power/bq27xxx_battery_i2c.c
8388 F:      drivers/power/isp1704_charger.c
8389 F:      drivers/power/rx51_battery.c
8390
8391 NTB DRIVER CORE
8392 M:      Jon Mason <jdmason@kudzu.us>
8393 M:      Dave Jiang <dave.jiang@intel.com>
8394 M:      Allen Hubbe <Allen.Hubbe@emc.com>
8395 L:      linux-ntb@googlegroups.com
8396 S:      Supported
8397 W:      https://github.com/jonmason/ntb/wiki
8398 T:      git git://github.com/jonmason/ntb.git
8399 F:      drivers/ntb/
8400 F:      drivers/net/ntb_netdev.c
8401 F:      include/linux/ntb.h
8402 F:      include/linux/ntb_transport.h
8403 F:      tools/testing/selftests/ntb/
8404
8405 NTB INTEL DRIVER
8406 M:      Jon Mason <jdmason@kudzu.us>
8407 M:      Dave Jiang <dave.jiang@intel.com>
8408 L:      linux-ntb@googlegroups.com
8409 S:      Supported
8410 W:      https://github.com/jonmason/ntb/wiki
8411 T:      git git://github.com/jonmason/ntb.git
8412 F:      drivers/ntb/hw/intel/
8413
8414 NTB AMD DRIVER
8415 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
8416 L:      linux-ntb@googlegroups.com
8417 S:      Supported
8418 F:      drivers/ntb/hw/amd/
8419
8420 NTFS FILESYSTEM
8421 M:      Anton Altaparmakov <anton@tuxera.com>
8422 L:      linux-ntfs-dev@lists.sourceforge.net
8423 W:      http://www.tuxera.com/
8424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
8425 S:      Supported
8426 F:      Documentation/filesystems/ntfs.txt
8427 F:      fs/ntfs/
8428
8429 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
8430 M:      Antonino Daplas <adaplas@gmail.com>
8431 L:      linux-fbdev@vger.kernel.org
8432 S:      Maintained
8433 F:      drivers/video/fbdev/riva/
8434 F:      drivers/video/fbdev/nvidia/
8435
8436 NVM EXPRESS DRIVER
8437 M:      Keith Busch <keith.busch@intel.com>
8438 M:      Jens Axboe <axboe@fb.com>
8439 L:      linux-nvme@lists.infradead.org
8440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8441 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
8442 S:      Supported
8443 F:      drivers/nvme/host/
8444 F:      include/linux/nvme.h
8445
8446 NVM EXPRESS TARGET DRIVER
8447 M:      Christoph Hellwig <hch@lst.de>
8448 M:      Sagi Grimberg <sagi@grimberg.me>
8449 L:      linux-nvme@lists.infradead.org
8450 S:      Supported
8451 F:      drivers/nvme/target/
8452
8453 NVMEM FRAMEWORK
8454 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8455 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8456 S:      Maintained
8457 F:      drivers/nvmem/
8458 F:      Documentation/devicetree/bindings/nvmem/
8459 F:      include/linux/nvmem-consumer.h
8460 F:      include/linux/nvmem-provider.h
8461
8462 NXP-NCI NFC DRIVER
8463 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8464 R:      Charles Gorand <charles.gorand@effinnov.com>
8465 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8466 S:      Supported
8467 F:      drivers/nfc/nxp-nci
8468
8469 NXP TDA998X DRM DRIVER
8470 M:      Russell King <rmk+kernel@armlinux.org.uk>
8471 S:      Supported
8472 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8473 F:      include/drm/i2c/tda998x.h
8474
8475 NXP TFA9879 DRIVER
8476 M:      Peter Rosin <peda@axentia.se>
8477 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8478 S:      Maintained
8479 F:      sound/soc/codecs/tfa9879*
8480
8481 OBJTOOL
8482 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8483 S:      Supported
8484 F:      tools/objtool/
8485
8486 OMAP SUPPORT
8487 M:      Tony Lindgren <tony@atomide.com>
8488 L:      linux-omap@vger.kernel.org
8489 W:      http://www.muru.com/linux/omap/
8490 W:      http://linux.omap.com/
8491 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8493 S:      Maintained
8494 F:      arch/arm/*omap*/
8495 F:      arch/arm/configs/omap1_defconfig
8496 F:      arch/arm/configs/omap2plus_defconfig
8497 F:      drivers/i2c/busses/i2c-omap.c
8498 F:      drivers/irqchip/irq-omap-intc.c
8499 F:      drivers/mfd/*omap*.c
8500 F:      drivers/mfd/menelaus.c
8501 F:      drivers/mfd/palmas.c
8502 F:      drivers/mfd/tps65217.c
8503 F:      drivers/mfd/tps65218.c
8504 F:      drivers/mfd/tps65910.c
8505 F:      drivers/mfd/twl-core.[ch]
8506 F:      drivers/mfd/twl4030*.c
8507 F:      drivers/mfd/twl6030*.c
8508 F:      drivers/mfd/twl6040*.c
8509 F:      drivers/regulator/palmas-regulator*.c
8510 F:      drivers/regulator/pbias-regulator.c
8511 F:      drivers/regulator/tps65217-regulator.c
8512 F:      drivers/regulator/tps65218-regulator.c
8513 F:      drivers/regulator/tps65910-regulator.c
8514 F:      drivers/regulator/twl-regulator.c
8515 F:      include/linux/i2c-omap.h
8516
8517 OMAP DEVICE TREE SUPPORT
8518 M:      Benoît Cousson <bcousson@baylibre.com>
8519 M:      Tony Lindgren <tony@atomide.com>
8520 L:      linux-omap@vger.kernel.org
8521 L:      devicetree@vger.kernel.org
8522 S:      Maintained
8523 F:      arch/arm/boot/dts/*omap*
8524 F:      arch/arm/boot/dts/*am3*
8525 F:      arch/arm/boot/dts/*am4*
8526 F:      arch/arm/boot/dts/*am5*
8527 F:      arch/arm/boot/dts/*dra7*
8528
8529 OMAP CLOCK FRAMEWORK SUPPORT
8530 M:      Paul Walmsley <paul@pwsan.com>
8531 L:      linux-omap@vger.kernel.org
8532 S:      Maintained
8533 F:      arch/arm/*omap*/*clock*
8534
8535 OMAP POWER MANAGEMENT SUPPORT
8536 M:      Kevin Hilman <khilman@kernel.org>
8537 L:      linux-omap@vger.kernel.org
8538 S:      Maintained
8539 F:      arch/arm/*omap*/*pm*
8540 F:      drivers/cpufreq/omap-cpufreq.c
8541
8542 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8543 M:      Rajendra Nayak <rnayak@codeaurora.org>
8544 M:      Paul Walmsley <paul@pwsan.com>
8545 L:      linux-omap@vger.kernel.org
8546 S:      Maintained
8547 F:      arch/arm/mach-omap2/prm*
8548
8549 OMAP AUDIO SUPPORT
8550 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8551 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8553 L:      linux-omap@vger.kernel.org
8554 S:      Maintained
8555 F:      sound/soc/omap/
8556
8557 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8558 M:      Roger Quadros <rogerq@ti.com>
8559 M:      Tony Lindgren <tony@atomide.com>
8560 L:      linux-omap@vger.kernel.org
8561 S:      Maintained
8562 F:      drivers/memory/omap-gpmc.c
8563 F:      arch/arm/mach-omap2/*gpmc*
8564
8565 OMAP FRAMEBUFFER SUPPORT
8566 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8567 L:      linux-fbdev@vger.kernel.org
8568 L:      linux-omap@vger.kernel.org
8569 S:      Maintained
8570 F:      drivers/video/fbdev/omap/
8571
8572 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8573 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8574 L:      linux-omap@vger.kernel.org
8575 L:      linux-fbdev@vger.kernel.org
8576 S:      Maintained
8577 F:      drivers/video/fbdev/omap2/
8578 F:      Documentation/arm/OMAP/DSS
8579
8580 OMAP HARDWARE SPINLOCK SUPPORT
8581 M:      Ohad Ben-Cohen <ohad@wizery.com>
8582 L:      linux-omap@vger.kernel.org
8583 S:      Maintained
8584 F:      drivers/hwspinlock/omap_hwspinlock.c
8585
8586 OMAP MMC SUPPORT
8587 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8588 L:      linux-omap@vger.kernel.org
8589 S:      Maintained
8590 F:      drivers/mmc/host/omap.c
8591
8592 OMAP HS MMC SUPPORT
8593 L:      linux-mmc@vger.kernel.org
8594 L:      linux-omap@vger.kernel.org
8595 S:      Orphan
8596 F:      drivers/mmc/host/omap_hsmmc.c
8597
8598 OMAP RANDOM NUMBER GENERATOR SUPPORT
8599 M:      Deepak Saxena <dsaxena@plexity.net>
8600 S:      Maintained
8601 F:      drivers/char/hw_random/omap-rng.c
8602
8603 OMAP HWMOD SUPPORT
8604 M:      Benoît Cousson <bcousson@baylibre.com>
8605 M:      Paul Walmsley <paul@pwsan.com>
8606 L:      linux-omap@vger.kernel.org
8607 S:      Maintained
8608 F:      arch/arm/mach-omap2/omap_hwmod.*
8609
8610 OMAP HWMOD DATA
8611 M:      Paul Walmsley <paul@pwsan.com>
8612 L:      linux-omap@vger.kernel.org
8613 S:      Maintained
8614 F:      arch/arm/mach-omap2/omap_hwmod*data*
8615
8616 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8617 M:      Benoît Cousson <bcousson@baylibre.com>
8618 L:      linux-omap@vger.kernel.org
8619 S:      Maintained
8620 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8621
8622 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8623 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8624 L:      linux-media@vger.kernel.org
8625 S:      Maintained
8626 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8627 F:      drivers/media/platform/omap3isp/
8628 F:      drivers/staging/media/omap4iss/
8629
8630 OMAP USB SUPPORT
8631 L:      linux-usb@vger.kernel.org
8632 L:      linux-omap@vger.kernel.org
8633 S:      Orphan
8634 F:      drivers/usb/*/*omap*
8635 F:      arch/arm/*omap*/usb*
8636
8637 OMAP GPIO DRIVER
8638 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8639 M:      Santosh Shilimkar <ssantosh@kernel.org>
8640 M:      Kevin Hilman <khilman@kernel.org>
8641 L:      linux-omap@vger.kernel.org
8642 S:      Maintained
8643 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8644 F:      drivers/gpio/gpio-omap.c
8645
8646 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8647 M:      Mark Jackson <mpfj@newflow.co.uk>
8648 L:      linux-omap@vger.kernel.org
8649 S:      Maintained
8650 F:      arch/arm/boot/dts/am335x-nano.dts
8651
8652 OMFS FILESYSTEM
8653 M:      Bob Copeland <me@bobcopeland.com>
8654 L:      linux-karma-devel@lists.sourceforge.net
8655 S:      Maintained
8656 F:      Documentation/filesystems/omfs.txt
8657 F:      fs/omfs/
8658
8659 OMNIKEY CARDMAN 4000 DRIVER
8660 M:      Harald Welte <laforge@gnumonks.org>
8661 S:      Maintained
8662 F:      drivers/char/pcmcia/cm4000_cs.c
8663 F:      include/linux/cm4000_cs.h
8664 F:      include/uapi/linux/cm4000_cs.h
8665
8666 OMNIKEY CARDMAN 4040 DRIVER
8667 M:      Harald Welte <laforge@gnumonks.org>
8668 S:      Maintained
8669 F:      drivers/char/pcmcia/cm4040_cs.*
8670
8671 OMNIVISION OV7670 SENSOR DRIVER
8672 M:      Jonathan Corbet <corbet@lwn.net>
8673 L:      linux-media@vger.kernel.org
8674 T:      git git://linuxtv.org/media_tree.git
8675 S:      Maintained
8676 F:      drivers/media/i2c/ov7670.c
8677
8678 ONENAND FLASH DRIVER
8679 M:      Kyungmin Park <kyungmin.park@samsung.com>
8680 L:      linux-mtd@lists.infradead.org
8681 S:      Maintained
8682 F:      drivers/mtd/onenand/
8683 F:      include/linux/mtd/onenand*.h
8684
8685 ONSTREAM SCSI TAPE DRIVER
8686 M:      Willem Riede <osst@riede.org>
8687 L:      osst-users@lists.sourceforge.net
8688 L:      linux-scsi@vger.kernel.org
8689 S:      Maintained
8690 F:      Documentation/scsi/osst.txt
8691 F:      drivers/scsi/osst.*
8692 F:      drivers/scsi/osst_*.h
8693 F:      drivers/scsi/st.h
8694
8695 OPENCORES I2C BUS DRIVER
8696 M:      Peter Korsgaard <jacmet@sunsite.dk>
8697 L:      linux-i2c@vger.kernel.org
8698 S:      Maintained
8699 F:      Documentation/i2c/busses/i2c-ocores
8700 F:      drivers/i2c/busses/i2c-ocores.c
8701
8702 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8703 M:      Rob Herring <robh+dt@kernel.org>
8704 M:      Frank Rowand <frowand.list@gmail.com>
8705 L:      devicetree@vger.kernel.org
8706 W:      http://www.devicetree.org/
8707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8708 S:      Maintained
8709 F:      drivers/of/
8710 F:      include/linux/of*.h
8711 F:      scripts/dtc/
8712
8713 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8714 M:      Rob Herring <robh+dt@kernel.org>
8715 M:      Mark Rutland <mark.rutland@arm.com>
8716 L:      devicetree@vger.kernel.org
8717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8718 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
8719 S:      Maintained
8720 F:      Documentation/devicetree/
8721 F:      arch/*/boot/dts/
8722 F:      include/dt-bindings/
8723
8724 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8725 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8726 L:      devicetree@vger.kernel.org
8727 S:      Maintained
8728 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8729 F:      Documentation/devicetree/overlay-notes.txt
8730 F:      drivers/of/overlay.c
8731 F:      drivers/of/resolver.c
8732
8733 OPENRISC ARCHITECTURE
8734 M:      Jonas Bonn <jonas@southpole.se>
8735 W:      http://openrisc.net
8736 S:      Maintained
8737 T:      git git://openrisc.net/~jonas/linux
8738 F:      arch/openrisc/
8739
8740 OPENVSWITCH
8741 M:      Pravin Shelar <pshelar@nicira.com>
8742 L:      netdev@vger.kernel.org
8743 L:      dev@openvswitch.org
8744 W:      http://openvswitch.org
8745 S:      Maintained
8746 F:      net/openvswitch/
8747 F:      include/uapi/linux/openvswitch.h
8748
8749 OPERATING PERFORMANCE POINTS (OPP)
8750 M:      Viresh Kumar <vireshk@kernel.org>
8751 M:      Nishanth Menon <nm@ti.com>
8752 M:      Stephen Boyd <sboyd@codeaurora.org>
8753 L:      linux-pm@vger.kernel.org
8754 S:      Maintained
8755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8756 F:      drivers/base/power/opp/
8757 F:      include/linux/pm_opp.h
8758 F:      Documentation/power/opp.txt
8759 F:      Documentation/devicetree/bindings/opp/
8760
8761 OPL4 DRIVER
8762 M:      Clemens Ladisch <clemens@ladisch.de>
8763 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8764 T:      git git://git.alsa-project.org/alsa-kernel.git
8765 S:      Maintained
8766 F:      sound/drivers/opl4/
8767
8768 OPROFILE
8769 M:      Robert Richter <rric@kernel.org>
8770 L:      oprofile-list@lists.sf.net
8771 S:      Maintained
8772 F:      arch/*/include/asm/oprofile*.h
8773 F:      arch/*/oprofile/
8774 F:      drivers/oprofile/
8775 F:      include/linux/oprofile.h
8776
8777 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8778 M:      Mark Fasheh <mfasheh@versity.com>
8779 M:      Joel Becker <jlbec@evilplan.org>
8780 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8781 W:      http://ocfs2.wiki.kernel.org
8782 S:      Supported
8783 F:      Documentation/filesystems/ocfs2.txt
8784 F:      Documentation/filesystems/dlmfs.txt
8785 F:      fs/ocfs2/
8786
8787 ORINOCO DRIVER
8788 L:      linux-wireless@vger.kernel.org
8789 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8790 W:      http://www.nongnu.org/orinoco/
8791 S:      Orphan
8792 F:      drivers/net/wireless/intersil/orinoco/
8793
8794 OSD LIBRARY and FILESYSTEM
8795 M:      Boaz Harrosh <ooo@electrozaur.com>
8796 M:      Benny Halevy <bhalevy@primarydata.com>
8797 L:      osd-dev@open-osd.org
8798 W:      http://open-osd.org
8799 T:      git git://git.open-osd.org/open-osd.git
8800 S:      Maintained
8801 F:      drivers/scsi/osd/
8802 F:      include/scsi/osd_*
8803 F:      fs/exofs/
8804
8805 OVERLAY FILESYSTEM
8806 M:      Miklos Szeredi <miklos@szeredi.hu>
8807 L:      linux-unionfs@vger.kernel.org
8808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8809 S:      Supported
8810 F:      fs/overlayfs/
8811 F:      Documentation/filesystems/overlayfs.txt
8812
8813 ORANGEFS FILESYSTEM
8814 M:      Mike Marshall <hubcap@omnibond.com>
8815 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8817 S:      Supported
8818 F:      fs/orangefs/
8819 F:      Documentation/filesystems/orangefs.txt
8820
8821 P54 WIRELESS DRIVER
8822 M:      Christian Lamparter <chunkeey@googlemail.com>
8823 L:      linux-wireless@vger.kernel.org
8824 W:      http://wireless.kernel.org/en/users/Drivers/p54
8825 S:      Maintained
8826 F:      drivers/net/wireless/intersil/p54/
8827
8828 PA SEMI ETHERNET DRIVER
8829 M:      Olof Johansson <olof@lixom.net>
8830 L:      netdev@vger.kernel.org
8831 S:      Maintained
8832 F:      drivers/net/ethernet/pasemi/*
8833
8834 PA SEMI SMBUS DRIVER
8835 M:      Olof Johansson <olof@lixom.net>
8836 L:      linux-i2c@vger.kernel.org
8837 S:      Maintained
8838 F:      drivers/i2c/busses/i2c-pasemi.c
8839
8840 PADATA PARALLEL EXECUTION MECHANISM
8841 M:      Steffen Klassert <steffen.klassert@secunet.com>
8842 L:      linux-crypto@vger.kernel.org
8843 S:      Maintained
8844 F:      kernel/padata.c
8845 F:      include/linux/padata.h
8846 F:      Documentation/padata.txt
8847
8848 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8849 M:      Harald Welte <laforge@gnumonks.org>
8850 L:      platform-driver-x86@vger.kernel.org
8851 S:      Maintained
8852 F:      drivers/platform/x86/panasonic-laptop.c
8853
8854 PANASONIC MN10300/AM33/AM34 PORT
8855 M:      David Howells <dhowells@redhat.com>
8856 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8857 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8858 S:      Maintained
8859 F:      Documentation/mn10300/
8860 F:      arch/mn10300/
8861
8862 PARALLEL LCD/KEYPAD PANEL DRIVER
8863 M:      Willy Tarreau <willy@haproxy.com>
8864 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8865 S:      Odd Fixes
8866 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8867 F:      drivers/misc/panel.c
8868
8869 PARALLEL PORT SUBSYSTEM
8870 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8871 M:      Sudip Mukherjee <sudip@vectorindia.org>
8872 L:      linux-parport@lists.infradead.org (subscribers-only)
8873 S:      Maintained
8874 F:      drivers/parport/
8875 F:      include/linux/parport*.h
8876 F:      drivers/char/ppdev.c
8877 F:      include/uapi/linux/ppdev.h
8878 F:      Documentation/parport*.txt
8879
8880 PARAVIRT_OPS INTERFACE
8881 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8882 M:      Chris Wright <chrisw@sous-sol.org>
8883 M:      Alok Kataria <akataria@vmware.com>
8884 M:      Rusty Russell <rusty@rustcorp.com.au>
8885 L:      virtualization@lists.linux-foundation.org
8886 S:      Supported
8887 F:      Documentation/virtual/paravirt_ops.txt
8888 F:      arch/*/kernel/paravirt*
8889 F:      arch/*/include/asm/paravirt.h
8890 F:      include/linux/hypervisor.h
8891
8892 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8893 M:      Tim Waugh <tim@cyberelk.net>
8894 L:      linux-parport@lists.infradead.org (subscribers-only)
8895 S:      Maintained
8896 F:      Documentation/blockdev/paride.txt
8897 F:      drivers/block/paride/
8898
8899 PARISC ARCHITECTURE
8900 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8901 M:      Helge Deller <deller@gmx.de>
8902 L:      linux-parisc@vger.kernel.org
8903 W:      http://www.parisc-linux.org/
8904 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8907 S:      Maintained
8908 F:      arch/parisc/
8909 F:      Documentation/parisc/
8910 F:      drivers/parisc/
8911 F:      drivers/char/agp/parisc-agp.c
8912 F:      drivers/input/serio/gscps2.c
8913 F:      drivers/parport/parport_gsc.*
8914 F:      drivers/tty/serial/8250/8250_gsc.c
8915 F:      drivers/video/fbdev/sti*
8916 F:      drivers/video/console/sti*
8917 F:      drivers/video/logo/logo_parisc*
8918
8919 PC87360 HARDWARE MONITORING DRIVER
8920 M:      Jim Cromie <jim.cromie@gmail.com>
8921 L:      linux-hwmon@vger.kernel.org
8922 S:      Maintained
8923 F:      Documentation/hwmon/pc87360
8924 F:      drivers/hwmon/pc87360.c
8925
8926 PC8736x GPIO DRIVER
8927 M:      Jim Cromie <jim.cromie@gmail.com>
8928 S:      Maintained
8929 F:      drivers/char/pc8736x_gpio.c
8930
8931 PC87427 HARDWARE MONITORING DRIVER
8932 M:      Jean Delvare <jdelvare@suse.com>
8933 L:      linux-hwmon@vger.kernel.org
8934 S:      Maintained
8935 F:      Documentation/hwmon/pc87427
8936 F:      drivers/hwmon/pc87427.c
8937
8938 PCA9532 LED DRIVER
8939 M:      Riku Voipio <riku.voipio@iki.fi>
8940 S:      Maintained
8941 F:      drivers/leds/leds-pca9532.c
8942 F:      include/linux/leds-pca9532.h
8943
8944 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8945 M:      Guenter Roeck <linux@roeck-us.net>
8946 L:      linux-i2c@vger.kernel.org
8947 S:      Maintained
8948 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8949
8950 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8951 M:      Khalid Aziz <khalid@gonehiking.org>
8952 S:      Maintained
8953 F:      drivers/firmware/pcdp.*
8954
8955 PCI ERROR RECOVERY
8956 M:      Linas Vepstas <linasvepstas@gmail.com>
8957 L:      linux-pci@vger.kernel.org
8958 S:      Supported
8959 F:      Documentation/PCI/pci-error-recovery.txt
8960
8961 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8962 M:      Russell Currey <ruscur@russell.cc>
8963 L:      linuxppc-dev@lists.ozlabs.org
8964 S:      Supported
8965 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8966 F:      arch/powerpc/kernel/eeh*.c
8967 F:      arch/powerpc/platforms/*/eeh*.c
8968 F:      arch/powerpc/include/*/eeh*.h
8969
8970 PCI SUBSYSTEM
8971 M:      Bjorn Helgaas <bhelgaas@google.com>
8972 L:      linux-pci@vger.kernel.org
8973 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8975 S:      Supported
8976 F:      Documentation/devicetree/bindings/pci/
8977 F:      Documentation/PCI/
8978 F:      drivers/pci/
8979 F:      include/linux/pci*
8980 F:      arch/x86/pci/
8981 F:      arch/x86/kernel/quirks.c
8982
8983 PCI DRIVER FOR ALTERA PCIE IP
8984 M:      Ley Foon Tan <lftan@altera.com>
8985 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8986 L:      linux-pci@vger.kernel.org
8987 S:      Supported
8988 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8989 F:      drivers/pci/host/pcie-altera.c
8990
8991 PCI DRIVER FOR ARM VERSATILE PLATFORM
8992 M:      Rob Herring <robh@kernel.org>
8993 L:      linux-pci@vger.kernel.org
8994 L:      linux-arm-kernel@lists.infradead.org
8995 S:      Maintained
8996 F:      Documentation/devicetree/bindings/pci/versatile.txt
8997 F:      drivers/pci/host/pci-versatile.c
8998
8999 PCI DRIVER FOR APPLIEDMICRO XGENE
9000 M:      Tanmay Inamdar <tinamdar@apm.com>
9001 L:      linux-pci@vger.kernel.org
9002 L:      linux-arm-kernel@lists.infradead.org
9003 S:      Maintained
9004 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
9005 F:      drivers/pci/host/pci-xgene.c
9006
9007 PCI DRIVER FOR FREESCALE LAYERSCAPE
9008 M:      Minghuan Lian <minghuan.Lian@freescale.com>
9009 M:      Mingkai Hu <mingkai.hu@freescale.com>
9010 M:      Roy Zang <tie-fei.zang@freescale.com>
9011 L:      linuxppc-dev@lists.ozlabs.org
9012 L:      linux-pci@vger.kernel.org
9013 L:      linux-arm-kernel@lists.infradead.org
9014 S:      Maintained
9015 F:      drivers/pci/host/*layerscape*
9016
9017 PCI DRIVER FOR IMX6
9018 M:      Richard Zhu <Richard.Zhu@freescale.com>
9019 M:      Lucas Stach <l.stach@pengutronix.de>
9020 L:      linux-pci@vger.kernel.org
9021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9022 S:      Maintained
9023 F:      drivers/pci/host/*imx6*
9024
9025 PCI DRIVER FOR TI KEYSTONE
9026 M:      Murali Karicheri <m-karicheri2@ti.com>
9027 L:      linux-pci@vger.kernel.org
9028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9029 S:      Maintained
9030 F:      drivers/pci/host/*keystone*
9031
9032 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
9033 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9034 M:      Jason Cooper <jason@lakedaemon.net>
9035 L:      linux-pci@vger.kernel.org
9036 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9037 S:      Maintained
9038 F:      drivers/pci/host/*mvebu*
9039
9040 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
9041 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
9042 L:      linux-pci@vger.kernel.org
9043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9044 S:      Maintained
9045 F:      drivers/pci/host/pci-aardvark.c
9046
9047 PCI DRIVER FOR NVIDIA TEGRA
9048 M:      Thierry Reding <thierry.reding@gmail.com>
9049 L:      linux-tegra@vger.kernel.org
9050 L:      linux-pci@vger.kernel.org
9051 S:      Supported
9052 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
9053 F:      drivers/pci/host/pci-tegra.c
9054
9055 PCI DRIVER FOR TI DRA7XX
9056 M:      Kishon Vijay Abraham I <kishon@ti.com>
9057 L:      linux-omap@vger.kernel.org
9058 L:      linux-pci@vger.kernel.org
9059 S:      Supported
9060 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
9061 F:      drivers/pci/host/pci-dra7xx.c
9062
9063 PCI DRIVER FOR RENESAS R-CAR
9064 M:      Simon Horman <horms@verge.net.au>
9065 L:      linux-pci@vger.kernel.org
9066 L:      linux-renesas-soc@vger.kernel.org
9067 S:      Maintained
9068 F:      drivers/pci/host/*rcar*
9069
9070 PCI DRIVER FOR SAMSUNG EXYNOS
9071 M:      Jingoo Han <jingoohan1@gmail.com>
9072 L:      linux-pci@vger.kernel.org
9073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9074 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9075 S:      Maintained
9076 F:      drivers/pci/host/pci-exynos.c
9077
9078 PCI DRIVER FOR SYNOPSIS DESIGNWARE
9079 M:      Jingoo Han <jingoohan1@gmail.com>
9080 M:      Pratyush Anand <pratyush.anand@gmail.com>
9081 L:      linux-pci@vger.kernel.org
9082 S:      Maintained
9083 F:      drivers/pci/host/*designware*
9084
9085 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
9086 M:      Joao Pinto <jpinto@synopsys.com>
9087 L:      linux-pci@vger.kernel.org
9088 S:      Maintained
9089 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
9090 F:      drivers/pci/host/pcie-designware-plat.c
9091
9092 PCI DRIVER FOR GENERIC OF HOSTS
9093 M:      Will Deacon <will.deacon@arm.com>
9094 L:      linux-pci@vger.kernel.org
9095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9096 S:      Maintained
9097 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
9098 F:      drivers/pci/host/pci-host-common.c
9099 F:      drivers/pci/host/pci-host-generic.c
9100
9101 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
9102 M:      Keith Busch <keith.busch@intel.com>
9103 L:      linux-pci@vger.kernel.org
9104 S:      Supported
9105 F:      arch/x86/pci/vmd.c
9106
9107 PCIE DRIVER FOR ST SPEAR13XX
9108 M:      Pratyush Anand <pratyush.anand@gmail.com>
9109 L:      linux-pci@vger.kernel.org
9110 S:      Maintained
9111 F:      drivers/pci/host/*spear*
9112
9113 PCI MSI DRIVER FOR ALTERA MSI IP
9114 M:      Ley Foon Tan <lftan@altera.com>
9115 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
9116 L:      linux-pci@vger.kernel.org
9117 S:      Supported
9118 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
9119 F:      drivers/pci/host/pcie-altera-msi.c
9120
9121 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
9122 M:      Duc Dang <dhdang@apm.com>
9123 L:      linux-pci@vger.kernel.org
9124 L:      linux-arm-kernel@lists.infradead.org
9125 S:      Maintained
9126 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
9127 F:      drivers/pci/host/pci-xgene-msi.c
9128
9129 PCIE DRIVER FOR AXIS ARTPEC
9130 M:      Niklas Cassel <niklas.cassel@axis.com>
9131 M:      Jesper Nilsson <jesper.nilsson@axis.com>
9132 L:      linux-arm-kernel@axis.com
9133 L:      linux-pci@vger.kernel.org
9134 S:      Maintained
9135 F:      Documentation/devicetree/bindings/pci/axis,artpec*
9136 F:      drivers/pci/host/*artpec*
9137
9138 PCIE DRIVER FOR HISILICON
9139 M:      Zhou Wang <wangzhou1@hisilicon.com>
9140 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
9141 L:      linux-pci@vger.kernel.org
9142 S:      Maintained
9143 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
9144 F:      drivers/pci/host/pcie-hisi.c
9145
9146 PCIE DRIVER FOR QUALCOMM MSM
9147 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
9148 L:     linux-pci@vger.kernel.org
9149 L:     linux-arm-msm@vger.kernel.org
9150 S:     Maintained
9151 F:     drivers/pci/host/*qcom*
9152
9153 PCIE DRIVER FOR CAVIUM THUNDERX
9154 M:      David Daney <david.daney@cavium.com>
9155 L:      linux-pci@vger.kernel.org
9156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9157 S:      Supported
9158 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
9159 F:      drivers/pci/host/pci-thunder-*
9160
9161 PCMCIA SUBSYSTEM
9162 P:      Linux PCMCIA Team
9163 L:      linux-pcmcia@lists.infradead.org
9164 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
9165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
9166 S:      Maintained
9167 F:      Documentation/pcmcia/
9168 F:      drivers/pcmcia/
9169 F:      include/pcmcia/
9170
9171 PCNET32 NETWORK DRIVER
9172 M:      Don Fry <pcnet32@frontier.com>
9173 L:      netdev@vger.kernel.org
9174 S:      Maintained
9175 F:      drivers/net/ethernet/amd/pcnet32.c
9176
9177 PCRYPT PARALLEL CRYPTO ENGINE
9178 M:      Steffen Klassert <steffen.klassert@secunet.com>
9179 L:      linux-crypto@vger.kernel.org
9180 S:      Maintained
9181 F:      crypto/pcrypt.c
9182 F:      include/crypto/pcrypt.h
9183
9184 PER-CPU MEMORY ALLOCATOR
9185 M:      Tejun Heo <tj@kernel.org>
9186 M:      Christoph Lameter <cl@linux.com>
9187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
9188 S:      Maintained
9189 F:      include/linux/percpu*.h
9190 F:      mm/percpu*.c
9191 F:      arch/*/include/asm/percpu.h
9192
9193 PER-TASK DELAY ACCOUNTING
9194 M:      Balbir Singh <bsingharora@gmail.com>
9195 S:      Maintained
9196 F:      include/linux/delayacct.h
9197 F:      kernel/delayacct.c
9198
9199 PERFORMANCE EVENTS SUBSYSTEM
9200 M:      Peter Zijlstra <peterz@infradead.org>
9201 M:      Ingo Molnar <mingo@redhat.com>
9202 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
9203 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9204 L:      linux-kernel@vger.kernel.org
9205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9206 S:      Supported
9207 F:      kernel/events/*
9208 F:      include/linux/perf_event.h
9209 F:      include/uapi/linux/perf_event.h
9210 F:      arch/*/kernel/perf_event*.c
9211 F:      arch/*/kernel/*/perf_event*.c
9212 F:      arch/*/kernel/*/*/perf_event*.c
9213 F:      arch/*/include/asm/perf_event.h
9214 F:      arch/*/kernel/perf_callchain.c
9215 F:      arch/*/events/*
9216 F:      tools/perf/
9217
9218 PERSONALITY HANDLING
9219 M:      Christoph Hellwig <hch@infradead.org>
9220 L:      linux-abi-devel@lists.sourceforge.net
9221 S:      Maintained
9222 F:      include/linux/personality.h
9223 F:      include/uapi/linux/personality.h
9224
9225 PHONET PROTOCOL
9226 M:      Remi Denis-Courmont <courmisch@gmail.com>
9227 S:      Supported
9228 F:      Documentation/networking/phonet.txt
9229 F:      include/linux/phonet.h
9230 F:      include/net/phonet/
9231 F:      include/uapi/linux/phonet.h
9232 F:      net/phonet/
9233
9234 PHRAM MTD DRIVER
9235 M:      Joern Engel <joern@lazybastard.org>
9236 L:      linux-mtd@lists.infradead.org
9237 S:      Maintained
9238 F:      drivers/mtd/devices/phram.c
9239
9240 PICOLCD HID DRIVER
9241 M:      Bruno Prémont <bonbons@linux-vserver.org>
9242 L:      linux-input@vger.kernel.org
9243 S:      Maintained
9244 F:      drivers/hid/hid-picolcd*
9245
9246 PICOXCELL SUPPORT
9247 M:      Jamie Iles <jamie@jamieiles.com>
9248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9249 T:      git git://github.com/jamieiles/linux-2.6-ji.git
9250 S:      Supported
9251 F:      arch/arm/boot/dts/picoxcell*
9252 F:      arch/arm/mach-picoxcell/
9253 F:      drivers/crypto/picoxcell*
9254
9255 PIN CONTROL SUBSYSTEM
9256 M:      Linus Walleij <linus.walleij@linaro.org>
9257 L:      linux-gpio@vger.kernel.org
9258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
9259 S:      Maintained
9260 F:      Documentation/devicetree/bindings/pinctrl/
9261 F:      Documentation/pinctrl.txt
9262 F:      drivers/pinctrl/
9263 F:      include/linux/pinctrl/
9264
9265 PIN CONTROLLER - ATMEL AT91
9266 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
9267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9268 S:      Maintained
9269 F:      drivers/pinctrl/pinctrl-at91.*
9270
9271 PIN CONTROLLER - ATMEL AT91 PIO4
9272 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
9273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9274 L:      linux-gpio@vger.kernel.org
9275 S:      Supported
9276 F:      drivers/pinctrl/pinctrl-at91-pio4.*
9277
9278 PIN CONTROLLER - INTEL
9279 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9280 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
9281 S:      Maintained
9282 F:      drivers/pinctrl/intel/
9283
9284 PIN CONTROLLER - RENESAS
9285 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
9286 M:      Geert Uytterhoeven <geert+renesas@glider.be>
9287 L:      linux-renesas-soc@vger.kernel.org
9288 S:      Maintained
9289 F:      drivers/pinctrl/sh-pfc/
9290
9291 PIN CONTROLLER - SAMSUNG
9292 M:      Tomasz Figa <tomasz.figa@gmail.com>
9293 M:      Krzysztof Kozlowski <krzk@kernel.org>
9294 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9296 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9297 S:      Maintained
9298 F:      drivers/pinctrl/samsung/
9299
9300 PIN CONTROLLER - SINGLE
9301 M:      Tony Lindgren <tony@atomide.com>
9302 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
9303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9304 L:      linux-omap@vger.kernel.org
9305 S:      Maintained
9306 F:      drivers/pinctrl/pinctrl-single.c
9307
9308 PIN CONTROLLER - ST SPEAR
9309 M:      Viresh Kumar <vireshk@kernel.org>
9310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9311 W:      http://www.st.com/spear
9312 S:      Maintained
9313 F:      drivers/pinctrl/spear/
9314
9315 PISTACHIO SOC SUPPORT
9316 M:      James Hartley <james.hartley@imgtec.com>
9317 M:      Ionela Voinescu <ionela.voinescu@imgtec.com>
9318 L:      linux-mips@linux-mips.org
9319 S:      Maintained
9320 F:      arch/mips/pistachio/
9321 F:      arch/mips/include/asm/mach-pistachio/
9322 F:      arch/mips/boot/dts/pistachio/
9323 F:      arch/mips/configs/pistachio*_defconfig
9324
9325 PKTCDVD DRIVER
9326 M:      Jiri Kosina <jikos@kernel.org>
9327 S:      Maintained
9328 F:      drivers/block/pktcdvd.c
9329 F:      include/linux/pktcdvd.h
9330 F:      include/uapi/linux/pktcdvd.h
9331
9332 PKUNITY SOC DRIVERS
9333 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
9334 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
9335 S:      Maintained
9336 T:      git git://github.com/gxt/linux.git
9337 F:      drivers/input/serio/i8042-unicore32io.h
9338 F:      drivers/i2c/busses/i2c-puv3.c
9339 F:      drivers/video/fbdev/fb-puv3.c
9340 F:      drivers/rtc/rtc-puv3.c
9341
9342 PMBUS HARDWARE MONITORING DRIVERS
9343 M:      Guenter Roeck <linux@roeck-us.net>
9344 L:      linux-hwmon@vger.kernel.org
9345 W:      http://hwmon.wiki.kernel.org/
9346 W:      http://www.roeck-us.net/linux/drivers/
9347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9348 S:      Maintained
9349 F:      Documentation/hwmon/pmbus
9350 F:      drivers/hwmon/pmbus/
9351 F:      include/linux/i2c/pmbus.h
9352
9353 PMC SIERRA MaxRAID DRIVER
9354 L:      linux-scsi@vger.kernel.org
9355 W:      http://www.pmc-sierra.com/
9356 S:      Orphan
9357 F:      drivers/scsi/pmcraid.*
9358
9359 PMC SIERRA PM8001 DRIVER
9360 M:      Jack Wang <jinpu.wang@profitbricks.com>
9361 M:      lindar_liu@usish.com
9362 L:      pmchba@pmcs.com
9363 L:      linux-scsi@vger.kernel.org
9364 S:      Supported
9365 F:      drivers/scsi/pm8001/
9366
9367 POSIX CLOCKS and TIMERS
9368 M:      Thomas Gleixner <tglx@linutronix.de>
9369 L:      linux-kernel@vger.kernel.org
9370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9371 S:      Maintained
9372 F:      fs/timerfd.c
9373 F:      include/linux/timer*
9374 F:      kernel/time/*timer*
9375
9376 POWER MANAGEMENT CORE
9377 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
9378 L:      linux-pm@vger.kernel.org
9379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
9380 S:      Supported
9381 F:      drivers/base/power/
9382 F:      include/linux/pm.h
9383 F:      include/linux/pm_*
9384 F:      include/linux/powercap.h
9385 F:      drivers/powercap/
9386
9387 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
9388 M:      Sebastian Reichel <sre@kernel.org>
9389 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
9390 M:      David Woodhouse <dwmw2@infradead.org>
9391 L:      linux-pm@vger.kernel.org
9392 T:      git git://git.infradead.org/battery-2.6.git
9393 S:      Maintained
9394 F:      Documentation/devicetree/bindings/power/
9395 F:      Documentation/devicetree/bindings/power_supply/
9396 F:      include/linux/power_supply.h
9397 F:      drivers/power/
9398 X:      drivers/power/avs/
9399
9400 POWER STATE COORDINATION INTERFACE (PSCI)
9401 M:      Mark Rutland <mark.rutland@arm.com>
9402 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
9403 L:      linux-arm-kernel@lists.infradead.org
9404 S:      Maintained
9405 F:      drivers/firmware/psci.c
9406 F:      include/linux/psci.h
9407 F:      include/uapi/linux/psci.h
9408
9409 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
9410 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
9411 L:      linuxppc-dev@lists.ozlabs.org
9412 S:      Maintained
9413 F:      drivers/char/powernv-op-panel.c
9414
9415 PNP SUPPORT
9416 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
9417 S:      Maintained
9418 F:      drivers/pnp/
9419
9420 PPP PROTOCOL DRIVERS AND COMPRESSORS
9421 M:      Paul Mackerras <paulus@samba.org>
9422 L:      linux-ppp@vger.kernel.org
9423 S:      Maintained
9424 F:      drivers/net/ppp/ppp_*
9425
9426 PPP OVER ATM (RFC 2364)
9427 M:      Mitchell Blank Jr <mitch@sfgoth.com>
9428 S:      Maintained
9429 F:      net/atm/pppoatm.c
9430 F:      include/uapi/linux/atmppp.h
9431
9432 PPP OVER ETHERNET
9433 M:      Michal Ostrowski <mostrows@earthlink.net>
9434 S:      Maintained
9435 F:      drivers/net/ppp/pppoe.c
9436 F:      drivers/net/ppp/pppox.c
9437
9438 PPP OVER L2TP
9439 M:      James Chapman <jchapman@katalix.com>
9440 S:      Maintained
9441 F:      net/l2tp/l2tp_ppp.c
9442 F:      include/linux/if_pppol2tp.h
9443 F:      include/uapi/linux/if_pppol2tp.h
9444
9445 PPS SUPPORT
9446 M:      Rodolfo Giometti <giometti@enneenne.com>
9447 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
9448 L:      linuxpps@ml.enneenne.com (subscribers-only)
9449 S:      Maintained
9450 F:      Documentation/pps/
9451 F:      drivers/pps/
9452 F:      include/linux/pps*.h
9453
9454 PPTP DRIVER
9455 M:      Dmitry Kozlov <xeb@mail.ru>
9456 L:      netdev@vger.kernel.org
9457 S:      Maintained
9458 F:      drivers/net/ppp/pptp.c
9459 W:      http://sourceforge.net/projects/accel-pptp
9460
9461 PREEMPTIBLE KERNEL
9462 M:      Robert Love <rml@tech9.net>
9463 L:      kpreempt-tech@lists.sourceforge.net
9464 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
9465 S:      Supported
9466 F:      Documentation/preempt-locking.txt
9467 F:      include/linux/preempt.h
9468
9469 PRISM54 WIRELESS DRIVER
9470 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
9471 L:      linux-wireless@vger.kernel.org
9472 W:      http://wireless.kernel.org/en/users/Drivers/p54
9473 S:      Obsolete
9474 F:      drivers/net/wireless/intersil/prism54/
9475
9476 PS3 NETWORK SUPPORT
9477 M:      Geoff Levand <geoff@infradead.org>
9478 L:      netdev@vger.kernel.org
9479 L:      linuxppc-dev@lists.ozlabs.org
9480 S:      Maintained
9481 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
9482
9483 PS3 PLATFORM SUPPORT
9484 M:      Geoff Levand <geoff@infradead.org>
9485 L:      linuxppc-dev@lists.ozlabs.org
9486 S:      Maintained
9487 F:      arch/powerpc/boot/ps3*
9488 F:      arch/powerpc/include/asm/lv1call.h
9489 F:      arch/powerpc/include/asm/ps3*.h
9490 F:      arch/powerpc/platforms/ps3/
9491 F:      drivers/*/ps3*
9492 F:      drivers/ps3/
9493 F:      drivers/rtc/rtc-ps3.c
9494 F:      drivers/usb/host/*ps3.c
9495 F:      sound/ppc/snd_ps3*
9496
9497 PS3VRAM DRIVER
9498 M:      Jim Paris <jim@jtan.com>
9499 M:      Geoff Levand <geoff@infradead.org>
9500 L:      linuxppc-dev@lists.ozlabs.org
9501 S:      Maintained
9502 F:      drivers/block/ps3vram.c
9503
9504 PSTORE FILESYSTEM
9505 M:      Anton Vorontsov <anton@enomsg.org>
9506 M:      Colin Cross <ccross@android.com>
9507 M:      Kees Cook <keescook@chromium.org>
9508 M:      Tony Luck <tony.luck@intel.com>
9509 S:      Maintained
9510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9511 F:      fs/pstore/
9512 F:      include/linux/pstore*
9513 F:      drivers/firmware/efi/efi-pstore.c
9514 F:      drivers/acpi/apei/erst.c
9515
9516 PTP HARDWARE CLOCK SUPPORT
9517 M:      Richard Cochran <richardcochran@gmail.com>
9518 L:      netdev@vger.kernel.org
9519 S:      Maintained
9520 W:      http://linuxptp.sourceforge.net/
9521 F:      Documentation/ABI/testing/sysfs-ptp
9522 F:      Documentation/ptp/*
9523 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9524 F:      drivers/net/phy/dp83640*
9525 F:      drivers/ptp/*
9526 F:      include/linux/ptp_cl*
9527
9528 PTRACE SUPPORT
9529 M:      Roland McGrath <roland@hack.frob.com>
9530 M:      Oleg Nesterov <oleg@redhat.com>
9531 S:      Maintained
9532 F:      include/asm-generic/syscall.h
9533 F:      include/linux/ptrace.h
9534 F:      include/linux/regset.h
9535 F:      include/linux/tracehook.h
9536 F:      include/uapi/linux/ptrace.h
9537 F:      kernel/ptrace.c
9538
9539 PULSE8-CEC DRIVER
9540 M:      Hans Verkuil <hverkuil@xs4all.nl>
9541 L:      linux-media@vger.kernel.org
9542 T:      git git://linuxtv.org/media_tree.git
9543 S:      Maintained
9544 F:      drivers/staging/media/pulse8-cec
9545
9546 PVRUSB2 VIDEO4LINUX DRIVER
9547 M:      Mike Isely <isely@pobox.com>
9548 L:      pvrusb2@isely.net       (subscribers-only)
9549 L:      linux-media@vger.kernel.org
9550 W:      http://www.isely.net/pvrusb2/
9551 T:      git git://linuxtv.org/media_tree.git
9552 S:      Maintained
9553 F:      Documentation/video4linux/README.pvrusb2
9554 F:      drivers/media/usb/pvrusb2/
9555
9556 PWC WEBCAM DRIVER
9557 M:      Hans Verkuil <hverkuil@xs4all.nl>
9558 L:      linux-media@vger.kernel.org
9559 T:      git git://linuxtv.org/media_tree.git
9560 S:      Odd Fixes
9561 F:      drivers/media/usb/pwc/*
9562
9563 PWM FAN DRIVER
9564 M:      Kamil Debski <kamil@wypas.org>
9565 M:      Lukasz Majewski <l.majewski@samsung.com>
9566 L:      linux-hwmon@vger.kernel.org
9567 S:      Supported
9568 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9569 F:      Documentation/hwmon/pwm-fan
9570 F:      drivers/hwmon/pwm-fan.c
9571
9572 PWM SUBSYSTEM
9573 M:      Thierry Reding <thierry.reding@gmail.com>
9574 L:      linux-pwm@vger.kernel.org
9575 S:      Maintained
9576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9577 F:      Documentation/pwm.txt
9578 F:      Documentation/devicetree/bindings/pwm/
9579 F:      include/linux/pwm.h
9580 F:      drivers/pwm/
9581 F:      drivers/video/backlight/pwm_bl.c
9582 F:      include/linux/pwm_backlight.h
9583
9584 PXA2xx/PXA3xx SUPPORT
9585 M:      Daniel Mack <daniel@zonque.org>
9586 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9587 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9589 T:      git git://github.com/hzhuang1/linux.git
9590 T:      git git://github.com/rjarzmik/linux.git
9591 S:      Maintained
9592 F:      arch/arm/boot/dts/pxa*
9593 F:      arch/arm/mach-pxa/
9594 F:      drivers/dma/pxa*
9595 F:      drivers/pcmcia/pxa2xx*
9596 F:      drivers/pinctrl/pxa/
9597 F:      drivers/spi/spi-pxa2xx*
9598 F:      drivers/usb/gadget/udc/pxa2*
9599 F:      include/sound/pxa2xx-lib.h
9600 F:      sound/arm/pxa*
9601 F:      sound/soc/pxa/
9602
9603 PXA GPIO DRIVER
9604 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9605 L:      linux-gpio@vger.kernel.org
9606 S:      Maintained
9607 F:      drivers/gpio/gpio-pxa.c
9608
9609 PXA3xx NAND FLASH DRIVER
9610 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9611 L:      linux-mtd@lists.infradead.org
9612 S:      Maintained
9613 F:      drivers/mtd/nand/pxa3xx_nand.c
9614
9615 MMP SUPPORT
9616 M:      Eric Miao <eric.y.miao@gmail.com>
9617 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9619 T:      git git://github.com/hzhuang1/linux.git
9620 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9621 S:      Maintained
9622 F:      arch/arm/boot/dts/mmp*
9623 F:      arch/arm/mach-mmp/
9624
9625 PXA MMCI DRIVER
9626 S:      Orphan
9627
9628 PXA RTC DRIVER
9629 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9630 L:      rtc-linux@googlegroups.com
9631 S:      Maintained
9632
9633 QAT DRIVER
9634 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
9635 M:      Salvatore Benedetto <salvatore.benedetto@intel.com>
9636 L:      qat-linux@intel.com
9637 S:      Supported
9638 F:      drivers/crypto/qat/
9639
9640 QIB DRIVER
9641 M:      Mike Marciniszyn <infinipath@intel.com>
9642 L:      linux-rdma@vger.kernel.org
9643 S:      Supported
9644 F:      drivers/infiniband/hw/qib/
9645
9646 QLOGIC QLA1280 SCSI DRIVER
9647 M:      Michael Reed <mdr@sgi.com>
9648 L:      linux-scsi@vger.kernel.org
9649 S:      Maintained
9650 F:      drivers/scsi/qla1280.[ch]
9651
9652 QLOGIC QLA2XXX FC-SCSI DRIVER
9653 M:      qla2xxx-upstream@qlogic.com
9654 L:      linux-scsi@vger.kernel.org
9655 S:      Supported
9656 F:      Documentation/scsi/LICENSE.qla2xxx
9657 F:      drivers/scsi/qla2xxx/
9658
9659 QLOGIC QLA4XXX iSCSI DRIVER
9660 M:      QLogic-Storage-Upstream@qlogic.com
9661 L:      linux-scsi@vger.kernel.org
9662 S:      Supported
9663 F:      Documentation/scsi/LICENSE.qla4xxx
9664 F:      drivers/scsi/qla4xxx/
9665
9666 QLOGIC QLA3XXX NETWORK DRIVER
9667 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9668 M:      Ron Mercer <ron.mercer@qlogic.com>
9669 M:      linux-driver@qlogic.com
9670 L:      netdev@vger.kernel.org
9671 S:      Supported
9672 F:      Documentation/networking/LICENSE.qla3xxx
9673 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9674
9675 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9676 M:      Dept-GELinuxNICDev@qlogic.com
9677 L:      netdev@vger.kernel.org
9678 S:      Supported
9679 F:      drivers/net/ethernet/qlogic/qlcnic/
9680
9681 QLOGIC QLGE 10Gb ETHERNET DRIVER
9682 M:      Harish Patil <harish.patil@qlogic.com>
9683 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9684 M:      Dept-GELinuxNICDev@qlogic.com
9685 M:      linux-driver@qlogic.com
9686 L:      netdev@vger.kernel.org
9687 S:      Supported
9688 F:      drivers/net/ethernet/qlogic/qlge/
9689
9690 QLOGIC QL4xxx ETHERNET DRIVER
9691 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9692 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9693 M:      everest-linux-l2@qlogic.com
9694 L:      netdev@vger.kernel.org
9695 S:      Supported
9696 F:      drivers/net/ethernet/qlogic/qed/
9697 F:      include/linux/qed/
9698 F:      drivers/net/ethernet/qlogic/qede/
9699
9700 QNX4 FILESYSTEM
9701 M:      Anders Larsen <al@alarsen.net>
9702 W:      http://www.alarsen.net/linux/qnx4fs/
9703 S:      Maintained
9704 F:      fs/qnx4/
9705 F:      include/uapi/linux/qnx4_fs.h
9706 F:      include/uapi/linux/qnxtypes.h
9707
9708 QT1010 MEDIA DRIVER
9709 M:      Antti Palosaari <crope@iki.fi>
9710 L:      linux-media@vger.kernel.org
9711 W:      https://linuxtv.org
9712 W:      http://palosaari.fi/linux/
9713 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9714 T:      git git://linuxtv.org/anttip/media_tree.git
9715 S:      Maintained
9716 F:      drivers/media/tuners/qt1010*
9717
9718 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9719 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9720 L:      linux-wireless@vger.kernel.org
9721 L:      ath9k-devel@lists.ath9k.org
9722 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9723 S:      Supported
9724 F:      drivers/net/wireless/ath/ath9k/
9725
9726 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9727 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9728 L:      ath10k@lists.infradead.org
9729 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9731 S:      Supported
9732 F:      drivers/net/wireless/ath/ath10k/
9733
9734 QUALCOMM HEXAGON ARCHITECTURE
9735 M:      Richard Kuo <rkuo@codeaurora.org>
9736 L:      linux-hexagon@vger.kernel.org
9737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9738 S:      Supported
9739 F:      arch/hexagon/
9740
9741 QUALCOMM WCN36XX WIRELESS DRIVER
9742 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9743 L:      wcn36xx@lists.infradead.org
9744 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9745 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9746 S:      Supported
9747 F:      drivers/net/wireless/ath/wcn36xx/
9748
9749 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9750 M:      Gabriel Somlo <somlo@cmu.edu>
9751 M:      "Michael S. Tsirkin" <mst@redhat.com>
9752 L:      qemu-devel@nongnu.org
9753 S:      Maintained
9754 F:      drivers/firmware/qemu_fw_cfg.c
9755
9756 RADOS BLOCK DEVICE (RBD)
9757 M:      Ilya Dryomov <idryomov@gmail.com>
9758 M:      Sage Weil <sage@redhat.com>
9759 M:      Alex Elder <elder@kernel.org>
9760 L:      ceph-devel@vger.kernel.org
9761 W:      http://ceph.com/
9762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9763 T:      git git://github.com/ceph/ceph-client.git
9764 S:      Supported
9765 F:      Documentation/ABI/testing/sysfs-bus-rbd
9766 F:      drivers/block/rbd.c
9767 F:      drivers/block/rbd_types.h
9768
9769 RADEON FRAMEBUFFER DISPLAY DRIVER
9770 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9771 L:      linux-fbdev@vger.kernel.org
9772 S:      Maintained
9773 F:      drivers/video/fbdev/aty/radeon*
9774 F:      include/uapi/linux/radeonfb.h
9775
9776 RADIOSHARK RADIO DRIVER
9777 M:      Hans Verkuil <hverkuil@xs4all.nl>
9778 L:      linux-media@vger.kernel.org
9779 T:      git git://linuxtv.org/media_tree.git
9780 S:      Maintained
9781 F:      drivers/media/radio/radio-shark.c
9782
9783 RADIOSHARK2 RADIO DRIVER
9784 M:      Hans Verkuil <hverkuil@xs4all.nl>
9785 L:      linux-media@vger.kernel.org
9786 T:      git git://linuxtv.org/media_tree.git
9787 S:      Maintained
9788 F:      drivers/media/radio/radio-shark2.c
9789 F:      drivers/media/radio/radio-tea5777.c
9790
9791 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9792 M:      Paul Mackerras <paulus@samba.org>
9793 L:      linux-fbdev@vger.kernel.org
9794 S:      Maintained
9795 F:      drivers/video/fbdev/aty/aty128fb.c
9796
9797 RALINK MIPS ARCHITECTURE
9798 M:      John Crispin <john@phrozen.org>
9799 L:      linux-mips@linux-mips.org
9800 S:      Maintained
9801 F:      arch/mips/ralink
9802
9803 RALINK RT2X00 WIRELESS LAN DRIVER
9804 P:      rt2x00 project
9805 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9806 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9807 L:      linux-wireless@vger.kernel.org
9808 S:      Maintained
9809 F:      drivers/net/wireless/ralink/rt2x00/
9810
9811 RAMDISK RAM BLOCK DEVICE DRIVER
9812 M:      Jens Axboe <axboe@kernel.dk>
9813 S:      Maintained
9814 F:      Documentation/blockdev/ramdisk.txt
9815 F:      drivers/block/brd.c
9816
9817 RANDOM NUMBER DRIVER
9818 M:      "Theodore Ts'o" <tytso@mit.edu>
9819 S:      Maintained
9820 F:      drivers/char/random.c
9821
9822 RAPIDIO SUBSYSTEM
9823 M:      Matt Porter <mporter@kernel.crashing.org>
9824 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9825 S:      Maintained
9826 F:      drivers/rapidio/
9827
9828 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9829 L:      linux-wireless@vger.kernel.org
9830 S:      Orphan
9831 F:      drivers/net/wireless/ray*
9832
9833 RCUTORTURE MODULE
9834 M:      Josh Triplett <josh@joshtriplett.org>
9835 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9836 L:      linux-kernel@vger.kernel.org
9837 S:      Supported
9838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9839 F:      Documentation/RCU/torture.txt
9840 F:      kernel/rcu/rcutorture.c
9841
9842 RCUTORTURE TEST FRAMEWORK
9843 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9844 M:      Josh Triplett <josh@joshtriplett.org>
9845 R:      Steven Rostedt <rostedt@goodmis.org>
9846 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9847 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9848 L:      linux-kernel@vger.kernel.org
9849 S:      Supported
9850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9851 F:      tools/testing/selftests/rcutorture
9852
9853 RDC R-321X SoC
9854 M:      Florian Fainelli <florian@openwrt.org>
9855 S:      Maintained
9856
9857 RDC R6040 FAST ETHERNET DRIVER
9858 M:      Florian Fainelli <f.fainelli@gmail.com>
9859 L:      netdev@vger.kernel.org
9860 S:      Maintained
9861 F:      drivers/net/ethernet/rdc/r6040.c
9862
9863 RDS - RELIABLE DATAGRAM SOCKETS
9864 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9865 L:      netdev@vger.kernel.org
9866 L:      linux-rdma@vger.kernel.org
9867 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9868 W:      https://oss.oracle.com/projects/rds/
9869 S:      Supported
9870 F:      net/rds/
9871 F:      Documentation/networking/rds.txt
9872
9873 RDMAVT - RDMA verbs software
9874 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9875 L:      linux-rdma@vger.kernel.org
9876 S:      Supported
9877 F:      drivers/infiniband/sw/rdmavt
9878
9879 READ-COPY UPDATE (RCU)
9880 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9881 M:      Josh Triplett <josh@joshtriplett.org>
9882 R:      Steven Rostedt <rostedt@goodmis.org>
9883 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9884 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9885 L:      linux-kernel@vger.kernel.org
9886 W:      http://www.rdrop.com/users/paulmck/RCU/
9887 S:      Supported
9888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9889 F:      Documentation/RCU/
9890 X:      Documentation/RCU/torture.txt
9891 F:      include/linux/rcu*
9892 X:      include/linux/srcu.h
9893 F:      kernel/rcu/
9894 X:      kernel/torture.c
9895
9896 REAL TIME CLOCK (RTC) SUBSYSTEM
9897 M:      Alessandro Zummo <a.zummo@towertech.it>
9898 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9899 L:      rtc-linux@googlegroups.com
9900 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9902 S:      Maintained
9903 F:      Documentation/devicetree/bindings/rtc/
9904 F:      Documentation/rtc.txt
9905 F:      drivers/rtc/
9906 F:      include/linux/rtc.h
9907 F:      include/uapi/linux/rtc.h
9908 F:      include/linux/rtc/
9909 F:      include/linux/platform_data/rtc-*
9910 F:      tools/testing/selftests/timers/rtctest.c
9911
9912 REALTEK AUDIO CODECS
9913 M:      Bard Liao <bardliao@realtek.com>
9914 M:      Oder Chiou <oder_chiou@realtek.com>
9915 S:      Maintained
9916 F:      sound/soc/codecs/rt*
9917 F:      include/sound/rt*.h
9918
9919 REISERFS FILE SYSTEM
9920 L:      reiserfs-devel@vger.kernel.org
9921 S:      Supported
9922 F:      fs/reiserfs/
9923
9924 REGISTER MAP ABSTRACTION
9925 M:      Mark Brown <broonie@kernel.org>
9926 L:      linux-kernel@vger.kernel.org
9927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9928 S:      Supported
9929 F:      Documentation/devicetree/bindings/regmap/
9930 F:      drivers/base/regmap/
9931 F:      include/linux/regmap.h
9932
9933 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9934 M:      Ohad Ben-Cohen <ohad@wizery.com>
9935 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9936 L:      linux-remoteproc@vger.kernel.org
9937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9938 S:      Maintained
9939 F:      Documentation/devicetree/bindings/remoteproc/
9940 F:      Documentation/remoteproc.txt
9941 F:      drivers/remoteproc/
9942 F:      include/linux/remoteproc.h
9943
9944 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9945 M:      Ohad Ben-Cohen <ohad@wizery.com>
9946 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9947 L:      linux-remoteproc@vger.kernel.org
9948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9949 S:      Maintained
9950 F:      drivers/rpmsg/
9951 F:      Documentation/rpmsg.txt
9952 F:      include/linux/rpmsg.h
9953
9954 RENESAS CLOCK DRIVERS
9955 M:      Geert Uytterhoeven <geert+renesas@glider.be>
9956 L:      linux-renesas-soc@vger.kernel.org
9957 S:      Supported
9958 F:      drivers/clk/renesas/
9959
9960 RENESAS ETHERNET DRIVERS
9961 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9962 L:      netdev@vger.kernel.org
9963 L:      linux-renesas-soc@vger.kernel.org
9964 F:      drivers/net/ethernet/renesas/
9965 F:      include/linux/sh_eth.h
9966
9967 RENESAS USB2 PHY DRIVER
9968 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9969 L:      linux-renesas-soc@vger.kernel.org
9970 S:      Maintained
9971 F:      drivers/phy/phy-rcar-gen3-usb2.c
9972
9973 RESET CONTROLLER FRAMEWORK
9974 M:      Philipp Zabel <p.zabel@pengutronix.de>
9975 T:      git git://git.pengutronix.de/git/pza/linux
9976 S:      Maintained
9977 F:      drivers/reset/
9978 F:      Documentation/devicetree/bindings/reset/
9979 F:      include/dt-bindings/reset/
9980 F:      include/linux/reset.h
9981 F:      include/linux/reset-controller.h
9982
9983 RFKILL
9984 M:      Johannes Berg <johannes@sipsolutions.net>
9985 L:      linux-wireless@vger.kernel.org
9986 W:      http://wireless.kernel.org/
9987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9989 S:      Maintained
9990 F:      Documentation/rfkill.txt
9991 F:      net/rfkill/
9992
9993 RHASHTABLE
9994 M:      Thomas Graf <tgraf@suug.ch>
9995 L:      netdev@vger.kernel.org
9996 S:      Maintained
9997 F:      lib/rhashtable.c
9998 F:      include/linux/rhashtable.h
9999
10000 RICOH SMARTMEDIA/XD DRIVER
10001 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10002 S:      Maintained
10003 F:      drivers/mtd/nand/r852.c
10004 F:      drivers/mtd/nand/r852.h
10005
10006 RICOH R5C592 MEMORYSTICK DRIVER
10007 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10008 S:      Maintained
10009 F:      drivers/memstick/host/r592.*
10010
10011 ROCCAT DRIVERS
10012 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
10013 W:      http://sourceforge.net/projects/roccat/
10014 S:      Maintained
10015 F:      drivers/hid/hid-roccat*
10016 F:      include/linux/hid-roccat*
10017 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
10018
10019 ROCKER DRIVER
10020 M:      Jiri Pirko <jiri@resnulli.us>
10021 L:      netdev@vger.kernel.org
10022 S:      Supported
10023 F:      drivers/net/ethernet/rocker/
10024
10025 ROCKETPORT DRIVER
10026 P:      Comtrol Corp.
10027 W:      http://www.comtrol.com
10028 S:      Maintained
10029 F:      Documentation/serial/rocket.txt
10030 F:      drivers/tty/rocket*
10031
10032 ROCKETPORT EXPRESS/INFINITY DRIVER
10033 M:      Kevin Cernekee <cernekee@gmail.com>
10034 L:      linux-serial@vger.kernel.org
10035 S:      Odd Fixes
10036 F:      drivers/tty/serial/rp2.*
10037
10038 ROSE NETWORK LAYER
10039 M:      Ralf Baechle <ralf@linux-mips.org>
10040 L:      linux-hams@vger.kernel.org
10041 W:      http://www.linux-ax25.org/
10042 S:      Maintained
10043 F:      include/net/rose.h
10044 F:      include/uapi/linux/rose.h
10045 F:      net/rose/
10046
10047 RTL2830 MEDIA DRIVER
10048 M:      Antti Palosaari <crope@iki.fi>
10049 L:      linux-media@vger.kernel.org
10050 W:      https://linuxtv.org
10051 W:      http://palosaari.fi/linux/
10052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10053 T:      git git://linuxtv.org/anttip/media_tree.git
10054 S:      Maintained
10055 F:      drivers/media/dvb-frontends/rtl2830*
10056
10057 RTL2832 MEDIA DRIVER
10058 M:      Antti Palosaari <crope@iki.fi>
10059 L:      linux-media@vger.kernel.org
10060 W:      https://linuxtv.org
10061 W:      http://palosaari.fi/linux/
10062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10063 T:      git git://linuxtv.org/anttip/media_tree.git
10064 S:      Maintained
10065 F:      drivers/media/dvb-frontends/rtl2832*
10066
10067 RTL2832_SDR MEDIA DRIVER
10068 M:      Antti Palosaari <crope@iki.fi>
10069 L:      linux-media@vger.kernel.org
10070 W:      https://linuxtv.org
10071 W:      http://palosaari.fi/linux/
10072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10073 T:      git git://linuxtv.org/anttip/media_tree.git
10074 S:      Maintained
10075 F:      drivers/media/dvb-frontends/rtl2832_sdr*
10076
10077 RTL8180 WIRELESS DRIVER
10078 L:      linux-wireless@vger.kernel.org
10079 W:      http://wireless.kernel.org/
10080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10081 S:      Orphan
10082 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
10083
10084 RTL8187 WIRELESS DRIVER
10085 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
10086 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
10087 M:      Larry Finger <Larry.Finger@lwfinger.net>
10088 L:      linux-wireless@vger.kernel.org
10089 W:      http://wireless.kernel.org/
10090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10091 S:      Maintained
10092 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
10093
10094 RTL8192CE WIRELESS DRIVER
10095 M:      Larry Finger <Larry.Finger@lwfinger.net>
10096 M:      Chaoming Li <chaoming_li@realsil.com.cn>
10097 L:      linux-wireless@vger.kernel.org
10098 W:      http://wireless.kernel.org/
10099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10100 S:      Maintained
10101 F:      drivers/net/wireless/realtek/rtlwifi/
10102 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
10103
10104 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
10105 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10106 L:      linux-wireless@vger.kernel.org
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
10108 S:      Maintained
10109 F:      drivers/net/wireless/realtek/rtl8xxxu/
10110
10111 S3 SAVAGE FRAMEBUFFER DRIVER
10112 M:      Antonino Daplas <adaplas@gmail.com>
10113 L:      linux-fbdev@vger.kernel.org
10114 S:      Maintained
10115 F:      drivers/video/fbdev/savage/
10116
10117 S390
10118 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
10119 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
10120 L:      linux-s390@vger.kernel.org
10121 W:      http://www.ibm.com/developerworks/linux/linux390/
10122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
10123 S:      Supported
10124 F:      arch/s390/
10125 F:      drivers/s390/
10126 F:      Documentation/s390/
10127 F:      Documentation/DocBook/s390*
10128
10129 S390 COMMON I/O LAYER
10130 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
10131 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
10132 L:      linux-s390@vger.kernel.org
10133 W:      http://www.ibm.com/developerworks/linux/linux390/
10134 S:      Supported
10135 F:      drivers/s390/cio/
10136
10137 S390 DASD DRIVER
10138 M:      Stefan Weinhuber <wein@de.ibm.com>
10139 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
10140 L:      linux-s390@vger.kernel.org
10141 W:      http://www.ibm.com/developerworks/linux/linux390/
10142 S:      Supported
10143 F:      drivers/s390/block/dasd*
10144 F:      block/partitions/ibm.c
10145
10146 S390 NETWORK DRIVERS
10147 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
10148 L:      linux-s390@vger.kernel.org
10149 W:      http://www.ibm.com/developerworks/linux/linux390/
10150 S:      Supported
10151 F:      drivers/s390/net/
10152
10153 S390 PCI SUBSYSTEM
10154 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
10155 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
10156 L:      linux-s390@vger.kernel.org
10157 W:      http://www.ibm.com/developerworks/linux/linux390/
10158 S:      Supported
10159 F:      arch/s390/pci/
10160 F:      drivers/pci/hotplug/s390_pci_hpc.c
10161
10162 S390 ZCRYPT DRIVER
10163 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
10164 L:      linux-s390@vger.kernel.org
10165 W:      http://www.ibm.com/developerworks/linux/linux390/
10166 S:      Supported
10167 F:      drivers/s390/crypto/
10168
10169 S390 ZFCP DRIVER
10170 M:      Steffen Maier <maier@linux.vnet.ibm.com>
10171 L:      linux-s390@vger.kernel.org
10172 W:      http://www.ibm.com/developerworks/linux/linux390/
10173 S:      Supported
10174 F:      drivers/s390/scsi/zfcp_*
10175
10176 S390 IUCV NETWORK LAYER
10177 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
10178 L:      linux-s390@vger.kernel.org
10179 W:      http://www.ibm.com/developerworks/linux/linux390/
10180 S:      Supported
10181 F:      drivers/s390/net/*iucv*
10182 F:      include/net/iucv/
10183 F:      net/iucv/
10184
10185 S390 IOMMU (PCI)
10186 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
10187 L:      linux-s390@vger.kernel.org
10188 W:      http://www.ibm.com/developerworks/linux/linux390/
10189 S:      Supported
10190 F:      drivers/iommu/s390-iommu.c
10191
10192 S3C24XX SD/MMC Driver
10193 M:      Ben Dooks <ben-linux@fluff.org>
10194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10195 S:      Supported
10196 F:      drivers/mmc/host/s3cmci.*
10197
10198 SAA6588 RDS RECEIVER DRIVER
10199 M:      Hans Verkuil <hverkuil@xs4all.nl>
10200 L:      linux-media@vger.kernel.org
10201 T:      git git://linuxtv.org/media_tree.git
10202 W:      https://linuxtv.org
10203 S:      Odd Fixes
10204 F:      drivers/media/i2c/saa6588*
10205
10206 SAA7134 VIDEO4LINUX DRIVER
10207 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
10208 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10209 L:      linux-media@vger.kernel.org
10210 W:      https://linuxtv.org
10211 T:      git git://linuxtv.org/media_tree.git
10212 S:      Odd fixes
10213 F:      Documentation/video4linux/*.saa7134
10214 F:      drivers/media/pci/saa7134/
10215
10216 SAA7146 VIDEO4LINUX-2 DRIVER
10217 M:      Hans Verkuil <hverkuil@xs4all.nl>
10218 L:      linux-media@vger.kernel.org
10219 T:      git git://linuxtv.org/media_tree.git
10220 S:      Maintained
10221 F:      drivers/media/common/saa7146/
10222 F:      drivers/media/pci/saa7146/
10223 F:      include/media/saa7146*
10224
10225 SAMSUNG LAPTOP DRIVER
10226 M:      Corentin Chary <corentin.chary@gmail.com>
10227 L:      platform-driver-x86@vger.kernel.org
10228 S:      Maintained
10229 F:      drivers/platform/x86/samsung-laptop.c
10230
10231 SAMSUNG AUDIO (ASoC) DRIVERS
10232 M:      Krzysztof Kozlowski <krzk@kernel.org>
10233 M:      Sangbeom Kim <sbkim73@samsung.com>
10234 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10235 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10236 S:      Supported
10237 F:      sound/soc/samsung/
10238
10239 SAMSUNG FRAMEBUFFER DRIVER
10240 M:      Jingoo Han <jingoohan1@gmail.com>
10241 L:      linux-fbdev@vger.kernel.org
10242 S:      Maintained
10243 F:      drivers/video/fbdev/s3c-fb.c
10244
10245 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
10246 M:      Sangbeom Kim <sbkim73@samsung.com>
10247 M:      Krzysztof Kozlowski <krzk@kernel.org>
10248 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
10249 L:      linux-kernel@vger.kernel.org
10250 L:      linux-samsung-soc@vger.kernel.org
10251 S:      Supported
10252 F:      drivers/mfd/sec*.c
10253 F:      drivers/regulator/s2m*.c
10254 F:      drivers/regulator/s5m*.c
10255 F:      drivers/clk/clk-s2mps11.c
10256 F:      drivers/rtc/rtc-s5m.c
10257 F:      include/linux/mfd/samsung/
10258 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
10259 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
10260 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
10261 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
10262
10263 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
10264 M:      Kyungmin Park <kyungmin.park@samsung.com>
10265 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10266 L:      linux-media@vger.kernel.org
10267 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
10268 S:      Supported
10269 F:      drivers/media/platform/exynos4-is/
10270
10271 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
10272 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
10273 L:      linux-media@vger.kernel.org
10274 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10275 S:      Maintained
10276 F:      drivers/media/platform/s3c-camif/
10277 F:      include/media/drv-intf/s3c_camif.h
10278
10279 SAMSUNG S5C73M3 CAMERA DRIVER
10280 M:      Kyungmin Park <kyungmin.park@samsung.com>
10281 M:      Andrzej Hajda <a.hajda@samsung.com>
10282 L:      linux-media@vger.kernel.org
10283 S:      Supported
10284 F:      drivers/media/i2c/s5c73m3/*
10285
10286 SAMSUNG S5K5BAF CAMERA DRIVER
10287 M:      Kyungmin Park <kyungmin.park@samsung.com>
10288 M:      Andrzej Hajda <a.hajda@samsung.com>
10289 L:      linux-media@vger.kernel.org
10290 S:      Supported
10291 F:      drivers/media/i2c/s5k5baf.c
10292
10293 SAMSUNG S3FWRN5 NFC DRIVER
10294 M:      Robert Baldyga <r.baldyga@samsung.com>
10295 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
10296 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
10297 S:      Supported
10298 F:      drivers/nfc/s3fwrn5
10299
10300 SAMSUNG SOC CLOCK DRIVERS
10301 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10302 M:      Tomasz Figa <tomasz.figa@gmail.com>
10303 M:      Chanwoo Choi <cw00.choi@samsung.com>
10304 S:      Supported
10305 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10306 F:      drivers/clk/samsung/
10307 F:      include/dt-bindings/clock/exynos*.h
10308 F:      Documentation/devicetree/bindings/clock/exynos*.txt
10309
10310 SAMSUNG SPI DRIVERS
10311 M:      Kukjin Kim <kgene@kernel.org>
10312 M:      Krzysztof Kozlowski <krzk@kernel.org>
10313 M:      Andi Shyti <andi.shyti@samsung.com>
10314 L:      linux-spi@vger.kernel.org
10315 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
10316 S:      Maintained
10317 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
10318 F:      drivers/spi/spi-s3c*
10319 F:      include/linux/platform_data/spi-s3c64xx.h
10320
10321 SAMSUNG SXGBE DRIVERS
10322 M:      Byungho An <bh74.an@samsung.com>
10323 M:      Girish K S <ks.giri@samsung.com>
10324 M:      Vipul Pandya <vipul.pandya@samsung.com>
10325 S:      Supported
10326 L:      netdev@vger.kernel.org
10327 F:      drivers/net/ethernet/samsung/sxgbe/
10328
10329 SAMSUNG THERMAL DRIVER
10330 M:      Lukasz Majewski <l.majewski@samsung.com>
10331 L:      linux-pm@vger.kernel.org
10332 L:      linux-samsung-soc@vger.kernel.org
10333 S:      Supported
10334 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
10335 F:      drivers/thermal/samsung/
10336
10337 SAMSUNG USB2 PHY DRIVER
10338 M:      Kamil Debski <kamil@wypas.org>
10339 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
10340 L:      linux-kernel@vger.kernel.org
10341 S:      Supported
10342 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
10343 F:      Documentation/phy/samsung-usb2.txt
10344 F:      drivers/phy/phy-exynos4210-usb2.c
10345 F:      drivers/phy/phy-exynos4x12-usb2.c
10346 F:      drivers/phy/phy-exynos5250-usb2.c
10347 F:      drivers/phy/phy-s5pv210-usb2.c
10348 F:      drivers/phy/phy-samsung-usb2.c
10349 F:      drivers/phy/phy-samsung-usb2.h
10350
10351 SERIAL DRIVERS
10352 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10353 L:      linux-serial@vger.kernel.org
10354 S:      Maintained
10355 F:      Documentation/devicetree/bindings/serial/
10356 F:      drivers/tty/serial/
10357
10358 SYNOPSYS DESIGNWARE DMAC DRIVER
10359 M:      Viresh Kumar <vireshk@kernel.org>
10360 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10361 S:      Maintained
10362 F:      include/linux/dma/dw.h
10363 F:      include/linux/platform_data/dma-dw.h
10364 F:      drivers/dma/dw/
10365
10366 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
10367 M: Lars Persson <lars.persson@axis.com>
10368 L: netdev@vger.kernel.org
10369 S: Supported
10370 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
10371 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
10372
10373 SYNOPSYS DESIGNWARE I2C DRIVER
10374 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10375 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
10376 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
10377 L:      linux-i2c@vger.kernel.org
10378 S:      Maintained
10379 F:      drivers/i2c/busses/i2c-designware-*
10380 F:      include/linux/platform_data/i2c-designware.h
10381
10382 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
10383 M:      Jaehoon Chung <jh80.chung@samsung.com>
10384 L:      linux-mmc@vger.kernel.org
10385 S:      Maintained
10386 F:      include/linux/mmc/dw_mmc.h
10387 F:      drivers/mmc/host/dw_mmc*
10388
10389 SYSTEM TRACE MODULE CLASS
10390 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10391 S:      Maintained
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
10393 F:      Documentation/trace/stm.txt
10394 F:      drivers/hwtracing/stm/
10395 F:      include/linux/stm.h
10396 F:      include/uapi/linux/stm.h
10397
10398 THUNDERBOLT DRIVER
10399 M:      Andreas Noever <andreas.noever@gmail.com>
10400 S:      Maintained
10401 F:      drivers/thunderbolt/
10402
10403 TI BQ27XXX POWER SUPPLY DRIVER
10404 R:      Andrew F. Davis <afd@ti.com>
10405 F:      include/linux/power/bq27xxx_battery.h
10406 F:      drivers/power/bq27xxx_battery.c
10407 F:      drivers/power/bq27xxx_battery_i2c.c
10408
10409 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
10410 M:      John Stultz <john.stultz@linaro.org>
10411 M:      Thomas Gleixner <tglx@linutronix.de>
10412 L:      linux-kernel@vger.kernel.org
10413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10414 S:      Supported
10415 F:      include/linux/clocksource.h
10416 F:      include/linux/time.h
10417 F:      include/linux/timex.h
10418 F:      include/uapi/linux/time.h
10419 F:      include/uapi/linux/timex.h
10420 F:      kernel/time/clocksource.c
10421 F:      kernel/time/time*.c
10422 F:      kernel/time/alarmtimer.c
10423 F:      kernel/time/ntp.c
10424 F:      tools/testing/selftests/timers/
10425
10426 SC1200 WDT DRIVER
10427 M:      Zwane Mwaikambo <zwanem@gmail.com>
10428 S:      Maintained
10429 F:      drivers/watchdog/sc1200wdt.c
10430
10431 SCHEDULER
10432 M:      Ingo Molnar <mingo@redhat.com>
10433 M:      Peter Zijlstra <peterz@infradead.org>
10434 L:      linux-kernel@vger.kernel.org
10435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
10436 S:      Maintained
10437 F:      kernel/sched/
10438 F:      include/linux/sched.h
10439 F:      include/uapi/linux/sched.h
10440 F:      include/linux/wait.h
10441
10442 SCORE ARCHITECTURE
10443 M:      Chen Liqin <liqin.linux@gmail.com>
10444 M:      Lennox Wu <lennox.wu@gmail.com>
10445 W:      http://www.sunplus.com
10446 S:      Supported
10447 F:      arch/score/
10448
10449 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
10450 M:      Sudeep Holla <sudeep.holla@arm.com>
10451 L:      linux-arm-kernel@lists.infradead.org
10452 S:      Maintained
10453 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
10454 F:      drivers/clk/clk-scpi.c
10455 F:      drivers/cpufreq/scpi-cpufreq.c
10456 F:      drivers/firmware/arm_scpi.c
10457 F:      include/linux/scpi_protocol.h
10458
10459 SCSI CDROM DRIVER
10460 M:      Jens Axboe <axboe@kernel.dk>
10461 L:      linux-scsi@vger.kernel.org
10462 W:      http://www.kernel.dk
10463 S:      Maintained
10464 F:      drivers/scsi/sr*
10465
10466 SCSI RDMA PROTOCOL (SRP) INITIATOR
10467 M:      Bart Van Assche <bart.vanassche@sandisk.com>
10468 L:      linux-rdma@vger.kernel.org
10469 S:      Supported
10470 W:      http://www.openfabrics.org
10471 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
10473 F:      drivers/infiniband/ulp/srp/
10474 F:      include/scsi/srp.h
10475
10476 SCSI SG DRIVER
10477 M:      Doug Gilbert <dgilbert@interlog.com>
10478 L:      linux-scsi@vger.kernel.org
10479 W:      http://sg.danny.cz/sg
10480 S:      Maintained
10481 F:      Documentation/scsi/scsi-generic.txt
10482 F:      drivers/scsi/sg.c
10483 F:      include/scsi/sg.h
10484
10485 SCSI SUBSYSTEM
10486 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
10487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
10488 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
10489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
10490 L:      linux-scsi@vger.kernel.org
10491 S:      Maintained
10492 F:      Documentation/devicetree/bindings/scsi/
10493 F:      drivers/scsi/
10494 F:      include/scsi/
10495
10496 SCSI TAPE DRIVER
10497 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
10498 L:      linux-scsi@vger.kernel.org
10499 S:      Maintained
10500 F:      Documentation/scsi/st.txt
10501 F:      drivers/scsi/st.*
10502 F:      drivers/scsi/st_*.h
10503
10504 SCTP PROTOCOL
10505 M:      Vlad Yasevich <vyasevich@gmail.com>
10506 M:      Neil Horman <nhorman@tuxdriver.com>
10507 L:      linux-sctp@vger.kernel.org
10508 W:      http://lksctp.sourceforge.net
10509 S:      Maintained
10510 F:      Documentation/networking/sctp.txt
10511 F:      include/linux/sctp.h
10512 F:      include/uapi/linux/sctp.h
10513 F:      include/net/sctp/
10514 F:      net/sctp/
10515
10516 SCx200 CPU SUPPORT
10517 M:      Jim Cromie <jim.cromie@gmail.com>
10518 S:      Odd Fixes
10519 F:      Documentation/i2c/busses/scx200_acb
10520 F:      arch/x86/platform/scx200/
10521 F:      drivers/watchdog/scx200_wdt.c
10522 F:      drivers/i2c/busses/scx200*
10523 F:      drivers/mtd/maps/scx200_docflash.c
10524 F:      include/linux/scx200.h
10525
10526 SCx200 GPIO DRIVER
10527 M:      Jim Cromie <jim.cromie@gmail.com>
10528 S:      Maintained
10529 F:      drivers/char/scx200_gpio.c
10530 F:      include/linux/scx200_gpio.h
10531
10532 SCx200 HRT CLOCKSOURCE DRIVER
10533 M:      Jim Cromie <jim.cromie@gmail.com>
10534 S:      Maintained
10535 F:      drivers/clocksource/scx200_hrt.c
10536
10537 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10538 M:      Sascha Sommer <saschasommer@freenet.de>
10539 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10540 S:      Maintained
10541 F:      drivers/mmc/host/sdricoh_cs.c
10542
10543 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10544 M:      Adrian Hunter <adrian.hunter@intel.com>
10545 L:      linux-mmc@vger.kernel.org
10546 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10547 S:      Maintained
10548 F:      drivers/mmc/host/sdhci*
10549 F:      include/linux/mmc/sdhci*
10550
10551 SECURE COMPUTING
10552 M:      Kees Cook <keescook@chromium.org>
10553 R:      Andy Lutomirski <luto@amacapital.net>
10554 R:      Will Drewry <wad@chromium.org>
10555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10556 S:      Supported
10557 F:      kernel/seccomp.c
10558 F:      include/uapi/linux/seccomp.h
10559 F:      include/linux/seccomp.h
10560 F:      tools/testing/selftests/seccomp/*
10561 K:      \bsecure_computing
10562 K:      \bTIF_SECCOMP\b
10563
10564 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
10565 M:      Al Cooper <alcooperx@gmail.com>
10566 L:      linux-mmc@vger.kernel.org
10567 L:      bcm-kernel-feedback-list@broadcom.com
10568 S:      Maintained
10569 F:      drivers/mmc/host/sdhci-brcmstb*
10570
10571 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10572 M:      Ben Dooks <ben-linux@fluff.org>
10573 M:      Jaehoon Chung <jh80.chung@samsung.com>
10574 L:      linux-mmc@vger.kernel.org
10575 S:      Maintained
10576 F:      drivers/mmc/host/sdhci-s3c*
10577
10578 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10579 M:      Viresh Kumar <vireshk@kernel.org>
10580 L:      linux-mmc@vger.kernel.org
10581 S:      Maintained
10582 F:      drivers/mmc/host/sdhci-spear.c
10583
10584 SECURITY SUBSYSTEM
10585 M:      James Morris <james.l.morris@oracle.com>
10586 M:      "Serge E. Hallyn" <serge@hallyn.com>
10587 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10589 W:      http://kernsec.org/
10590 S:      Supported
10591 F:      security/
10592
10593 SECURITY CONTACT
10594 M:      Security Officers <security@kernel.org>
10595 S:      Supported
10596
10597 SELINUX SECURITY MODULE
10598 M:      Paul Moore <paul@paul-moore.com>
10599 M:      Stephen Smalley <sds@tycho.nsa.gov>
10600 M:      Eric Paris <eparis@parisplace.org>
10601 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10602 W:      http://selinuxproject.org
10603 T:      git git://git.infradead.org/users/pcmoore/selinux
10604 S:      Supported
10605 F:      include/linux/selinux*
10606 F:      security/selinux/
10607 F:      scripts/selinux/
10608
10609 APPARMOR SECURITY MODULE
10610 M:      John Johansen <john.johansen@canonical.com>
10611 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10612 W:      apparmor.wiki.kernel.org
10613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10614 S:      Supported
10615 F:      security/apparmor/
10616
10617 LOADPIN SECURITY MODULE
10618 M:      Kees Cook <keescook@chromium.org>
10619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10620 S:      Supported
10621 F:      security/loadpin/
10622
10623 YAMA SECURITY MODULE
10624 M:      Kees Cook <keescook@chromium.org>
10625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10626 S:      Supported
10627 F:      security/yama/
10628
10629 SENSABLE PHANTOM
10630 M:      Jiri Slaby <jirislaby@gmail.com>
10631 S:      Maintained
10632 F:      drivers/misc/phantom.c
10633 F:      include/uapi/linux/phantom.h
10634
10635 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10636 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10637 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10638 M:      John Soni Jose <sony.john@avagotech.com>
10639 L:      linux-scsi@vger.kernel.org
10640 W:      http://www.avagotech.com
10641 S:      Supported
10642 F:      drivers/scsi/be2iscsi/
10643
10644 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
10645 M:      Sathya Perla <sathya.perla@broadcom.com>
10646 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10647 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10648 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10649 L:      netdev@vger.kernel.org
10650 W:      http://www.emulex.com
10651 S:      Supported
10652 F:      drivers/net/ethernet/emulex/benet/
10653
10654 EMULEX ONECONNECT ROCE DRIVER
10655 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10656 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10657 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10658 L:      linux-rdma@vger.kernel.org
10659 W:      http://www.emulex.com
10660 S:      Supported
10661 F:      drivers/infiniband/hw/ocrdma/
10662
10663 SFC NETWORK DRIVER
10664 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10665 M:      Edward Cree <ecree@solarflare.com>
10666 M:      Bert Kenward <bkenward@solarflare.com>
10667 L:      netdev@vger.kernel.org
10668 S:      Supported
10669 F:      drivers/net/ethernet/sfc/
10670
10671 SGI GRU DRIVER
10672 M:      Dimitri Sivanich <sivanich@sgi.com>
10673 S:      Maintained
10674 F:      drivers/misc/sgi-gru/
10675
10676 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10677 M:      Pat Gefre <pfg@sgi.com>
10678 L:      linux-ia64@vger.kernel.org
10679 S:      Supported
10680 F:      Documentation/ia64/serial.txt
10681 F:      drivers/tty/serial/ioc?_serial.c
10682 F:      include/linux/ioc?.h
10683
10684 SGI XP/XPC/XPNET DRIVER
10685 M:      Cliff Whickman <cpw@sgi.com>
10686 M:      Robin Holt <robinmholt@gmail.com>
10687 S:      Maintained
10688 F:      drivers/misc/sgi-xp/
10689
10690 SI2157 MEDIA DRIVER
10691 M:      Antti Palosaari <crope@iki.fi>
10692 L:      linux-media@vger.kernel.org
10693 W:      https://linuxtv.org
10694 W:      http://palosaari.fi/linux/
10695 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10696 T:      git git://linuxtv.org/anttip/media_tree.git
10697 S:      Maintained
10698 F:      drivers/media/tuners/si2157*
10699
10700 SI2168 MEDIA DRIVER
10701 M:      Antti Palosaari <crope@iki.fi>
10702 L:      linux-media@vger.kernel.org
10703 W:      https://linuxtv.org
10704 W:      http://palosaari.fi/linux/
10705 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10706 T:      git git://linuxtv.org/anttip/media_tree.git
10707 S:      Maintained
10708 F:      drivers/media/dvb-frontends/si2168*
10709
10710 SI470X FM RADIO RECEIVER I2C DRIVER
10711 M:      Hans Verkuil <hverkuil@xs4all.nl>
10712 L:      linux-media@vger.kernel.org
10713 T:      git git://linuxtv.org/media_tree.git
10714 W:      https://linuxtv.org
10715 S:      Odd Fixes
10716 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10717
10718 SI470X FM RADIO RECEIVER USB DRIVER
10719 M:      Hans Verkuil <hverkuil@xs4all.nl>
10720 L:      linux-media@vger.kernel.org
10721 T:      git git://linuxtv.org/media_tree.git
10722 W:      https://linuxtv.org
10723 S:      Maintained
10724 F:      drivers/media/radio/si470x/radio-si470x-common.c
10725 F:      drivers/media/radio/si470x/radio-si470x.h
10726 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10727
10728 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10729 M:      Eduardo Valentin <edubezval@gmail.com>
10730 L:      linux-media@vger.kernel.org
10731 T:      git git://linuxtv.org/media_tree.git
10732 W:      https://linuxtv.org
10733 S:      Odd Fixes
10734 F:      drivers/media/radio/si4713/si4713.?
10735
10736 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10737 M:      Eduardo Valentin <edubezval@gmail.com>
10738 L:      linux-media@vger.kernel.org
10739 T:      git git://linuxtv.org/media_tree.git
10740 W:      https://linuxtv.org
10741 S:      Odd Fixes
10742 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10743
10744 SI4713 FM RADIO TRANSMITTER USB DRIVER
10745 M:      Hans Verkuil <hverkuil@xs4all.nl>
10746 L:      linux-media@vger.kernel.org
10747 T:      git git://linuxtv.org/media_tree.git
10748 W:      https://linuxtv.org
10749 S:      Maintained
10750 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10751
10752 SIANO DVB DRIVER
10753 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
10754 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
10755 L:      linux-media@vger.kernel.org
10756 W:      https://linuxtv.org
10757 T:      git git://linuxtv.org/media_tree.git
10758 S:      Odd fixes
10759 F:      drivers/media/common/siano/
10760 F:      drivers/media/usb/siano/
10761 F:      drivers/media/usb/siano/
10762 F:      drivers/media/mmc/siano/
10763
10764 SIMPLEFB FB DRIVER
10765 M:      Hans de Goede <hdegoede@redhat.com>
10766 L:      linux-fbdev@vger.kernel.org
10767 S:      Maintained
10768 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10769 F:      drivers/video/fbdev/simplefb.c
10770 F:      include/linux/platform_data/simplefb.h
10771
10772 SH_VEU V4L2 MEM2MEM DRIVER
10773 L:      linux-media@vger.kernel.org
10774 S:      Orphan
10775 F:      drivers/media/platform/sh_veu.c
10776
10777 SH_VOU V4L2 OUTPUT DRIVER
10778 L:      linux-media@vger.kernel.org
10779 S:      Orphan
10780 F:      drivers/media/platform/sh_vou.c
10781 F:      include/media/drv-intf/sh_vou.h
10782
10783 SIMPLE FIRMWARE INTERFACE (SFI)
10784 M:      Len Brown <lenb@kernel.org>
10785 L:      sfi-devel@simplefirmware.org
10786 W:      http://simplefirmware.org/
10787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10788 S:      Supported
10789 F:      arch/x86/platform/sfi/
10790 F:      drivers/sfi/
10791 F:      include/linux/sfi*.h
10792
10793 SIMTEC EB110ATX (Chalice CATS)
10794 P:      Ben Dooks
10795 P:      Vincent Sanders <vince@simtec.co.uk>
10796 M:      Simtec Linux Team <linux@simtec.co.uk>
10797 W:      http://www.simtec.co.uk/products/EB110ATX/
10798 S:      Supported
10799
10800 SIMTEC EB2410ITX (BAST)
10801 P:      Ben Dooks
10802 P:      Vincent Sanders <vince@simtec.co.uk>
10803 M:      Simtec Linux Team <linux@simtec.co.uk>
10804 W:      http://www.simtec.co.uk/products/EB2410ITX/
10805 S:      Supported
10806 F:      arch/arm/mach-s3c24xx/mach-bast.c
10807 F:      arch/arm/mach-s3c24xx/bast-ide.c
10808 F:      arch/arm/mach-s3c24xx/bast-irq.c
10809
10810 TI DAVINCI MACHINE SUPPORT
10811 M:      Sekhar Nori <nsekhar@ti.com>
10812 M:      Kevin Hilman <khilman@kernel.org>
10813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
10815 S:      Supported
10816 F:      arch/arm/mach-davinci/
10817 F:      drivers/i2c/busses/i2c-davinci.c
10818
10819 TI DAVINCI SERIES MEDIA DRIVER
10820 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10821 L:      linux-media@vger.kernel.org
10822 W:      https://linuxtv.org
10823 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10824 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10825 S:      Maintained
10826 F:      drivers/media/platform/davinci/
10827 F:      include/media/davinci/
10828
10829 TI AM437X VPFE DRIVER
10830 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10831 L:      linux-media@vger.kernel.org
10832 W:      https://linuxtv.org
10833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10834 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10835 S:      Maintained
10836 F:      drivers/media/platform/am437x/
10837
10838 OV2659 OMNIVISION SENSOR DRIVER
10839 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10840 L:      linux-media@vger.kernel.org
10841 W:      https://linuxtv.org
10842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10843 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10844 S:      Maintained
10845 F:      drivers/media/i2c/ov2659.c
10846 F:      include/media/i2c/ov2659.h
10847
10848 SILICON MOTION SM712 FRAME BUFFER DRIVER
10849 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10850 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10851 M:      Sudip Mukherjee <sudip@vectorindia.org>
10852 L:      linux-fbdev@vger.kernel.org
10853 S:      Maintained
10854 F:      drivers/video/fbdev/sm712*
10855 F:      Documentation/fb/sm712fb.txt
10856
10857 SIS 190 ETHERNET DRIVER
10858 M:      Francois Romieu <romieu@fr.zoreil.com>
10859 L:      netdev@vger.kernel.org
10860 S:      Maintained
10861 F:      drivers/net/ethernet/sis/sis190.c
10862
10863 SIS 900/7016 FAST ETHERNET DRIVER
10864 M:      Daniele Venzano <venza@brownhat.org>
10865 W:      http://www.brownhat.org/sis900.html
10866 L:      netdev@vger.kernel.org
10867 S:      Maintained
10868 F:      drivers/net/ethernet/sis/sis900.*
10869
10870 SIS FRAMEBUFFER DRIVER
10871 M:      Thomas Winischhofer <thomas@winischhofer.net>
10872 W:      http://www.winischhofer.net/linuxsisvga.shtml
10873 S:      Maintained
10874 F:      Documentation/fb/sisfb.txt
10875 F:      drivers/video/fbdev/sis/
10876 F:      include/video/sisfb.h
10877
10878 SIS USB2VGA DRIVER
10879 M:      Thomas Winischhofer <thomas@winischhofer.net>
10880 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10881 S:      Maintained
10882 F:      drivers/usb/misc/sisusbvga/
10883
10884 SLAB ALLOCATOR
10885 M:      Christoph Lameter <cl@linux.com>
10886 M:      Pekka Enberg <penberg@kernel.org>
10887 M:      David Rientjes <rientjes@google.com>
10888 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10889 M:      Andrew Morton <akpm@linux-foundation.org>
10890 L:      linux-mm@kvack.org
10891 S:      Maintained
10892 F:      include/linux/sl?b*.h
10893 F:      mm/sl?b*
10894
10895 SLEEPABLE READ-COPY UPDATE (SRCU)
10896 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10897 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10898 M:      Josh Triplett <josh@joshtriplett.org>
10899 R:      Steven Rostedt <rostedt@goodmis.org>
10900 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10901 L:      linux-kernel@vger.kernel.org
10902 W:      http://www.rdrop.com/users/paulmck/RCU/
10903 S:      Supported
10904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10905 F:      include/linux/srcu.h
10906 F:      kernel/rcu/srcu.c
10907
10908 SMACK SECURITY MODULE
10909 M:      Casey Schaufler <casey@schaufler-ca.com>
10910 L:      linux-security-module@vger.kernel.org
10911 W:      http://schaufler-ca.com
10912 T:      git git://github.com/cschaufler/smack-next
10913 S:      Maintained
10914 F:      Documentation/security/Smack.txt
10915 F:      security/smack/
10916
10917 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10918 M:      Kevin Hilman <khilman@kernel.org>
10919 M:      Nishanth Menon <nm@ti.com>
10920 S:      Maintained
10921 F:      drivers/power/avs/
10922 F:      include/linux/power/smartreflex.h
10923 L:      linux-pm@vger.kernel.org
10924
10925 SMC91x ETHERNET DRIVER
10926 M:      Nicolas Pitre <nico@fluxnic.net>
10927 S:      Odd Fixes
10928 F:      drivers/net/ethernet/smsc/smc91x.*
10929
10930 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10931 M:      Sakari Ailus <sakari.ailus@iki.fi>
10932 L:      linux-media@vger.kernel.org
10933 S:      Maintained
10934 F:      drivers/media/i2c/smiapp/
10935 F:      include/media/i2c/smiapp.h
10936 F:      drivers/media/i2c/smiapp-pll.c
10937 F:      drivers/media/i2c/smiapp-pll.h
10938 F:      include/uapi/linux/smiapp.h
10939 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10940
10941 SMM665 HARDWARE MONITOR DRIVER
10942 M:      Guenter Roeck <linux@roeck-us.net>
10943 L:      linux-hwmon@vger.kernel.org
10944 S:      Maintained
10945 F:      Documentation/hwmon/smm665
10946 F:      drivers/hwmon/smm665.c
10947
10948 SMSC EMC2103 HARDWARE MONITOR DRIVER
10949 M:      Steve Glendinning <steve.glendinning@shawell.net>
10950 L:      linux-hwmon@vger.kernel.org
10951 S:      Maintained
10952 F:      Documentation/hwmon/emc2103
10953 F:      drivers/hwmon/emc2103.c
10954
10955 SMSC SCH5627 HARDWARE MONITOR DRIVER
10956 M:      Hans de Goede <hdegoede@redhat.com>
10957 L:      linux-hwmon@vger.kernel.org
10958 S:      Supported
10959 F:      Documentation/hwmon/sch5627
10960 F:      drivers/hwmon/sch5627.c
10961
10962 SMSC47B397 HARDWARE MONITOR DRIVER
10963 M:      Jean Delvare <jdelvare@suse.com>
10964 L:      linux-hwmon@vger.kernel.org
10965 S:      Maintained
10966 F:      Documentation/hwmon/smsc47b397
10967 F:      drivers/hwmon/smsc47b397.c
10968
10969 SMSC911x ETHERNET DRIVER
10970 M:      Steve Glendinning <steve.glendinning@shawell.net>
10971 L:      netdev@vger.kernel.org
10972 S:      Maintained
10973 F:      include/linux/smsc911x.h
10974 F:      drivers/net/ethernet/smsc/smsc911x.*
10975
10976 SMSC9420 PCI ETHERNET DRIVER
10977 M:      Steve Glendinning <steve.glendinning@shawell.net>
10978 L:      netdev@vger.kernel.org
10979 S:      Maintained
10980 F:      drivers/net/ethernet/smsc/smsc9420.*
10981
10982 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10983 M:      Steve Glendinning <steve.glendinning@shawell.net>
10984 L:      linux-fbdev@vger.kernel.org
10985 S:      Maintained
10986 F:      drivers/video/fbdev/smscufx.c
10987
10988 SOC-CAMERA V4L2 SUBSYSTEM
10989 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10990 L:      linux-media@vger.kernel.org
10991 T:      git git://linuxtv.org/media_tree.git
10992 S:      Maintained
10993 F:      include/media/soc*
10994 F:      drivers/media/i2c/soc_camera/
10995 F:      drivers/media/platform/soc_camera/
10996
10997 SOEKRIS NET48XX LED SUPPORT
10998 M:      Chris Boot <bootc@bootc.net>
10999 S:      Maintained
11000 F:      drivers/leds/leds-net48xx.c
11001
11002 SOFTLOGIC 6x10 MPEG CODEC
11003 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
11004 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
11005 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
11006 M:      Ismael Luceno <ismael@iodev.co.uk>
11007 L:      linux-media@vger.kernel.org
11008 S:      Supported
11009 F:      drivers/media/pci/solo6x10/
11010
11011 SOFTWARE RAID (Multiple Disks) SUPPORT
11012 M:      Shaohua Li <shli@kernel.org>
11013 L:      linux-raid@vger.kernel.org
11014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
11015 S:      Supported
11016 F:      drivers/md/
11017 F:      include/linux/raid/
11018 F:      include/uapi/linux/raid/
11019
11020 SONIC NETWORK DRIVER
11021 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
11022 L:      netdev@vger.kernel.org
11023 S:      Maintained
11024 F:      drivers/net/ethernet/natsemi/sonic.*
11025
11026 SONICS SILICON BACKPLANE DRIVER (SSB)
11027 M:      Michael Buesch <m@bues.ch>
11028 L:      linux-wireless@vger.kernel.org
11029 S:      Maintained
11030 F:      drivers/ssb/
11031 F:      include/linux/ssb/
11032
11033 SONY VAIO CONTROL DEVICE DRIVER
11034 M:      Mattia Dongili <malattia@linux.it>
11035 L:      platform-driver-x86@vger.kernel.org
11036 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
11037 S:      Maintained
11038 F:      Documentation/laptops/sony-laptop.txt
11039 F:      drivers/char/sonypi.c
11040 F:      drivers/platform/x86/sony-laptop.c
11041 F:      include/linux/sony-laptop.h
11042
11043 SONY MEMORYSTICK CARD SUPPORT
11044 M:      Alex Dubov <oakad@yahoo.com>
11045 W:      http://tifmxx.berlios.de/
11046 S:      Maintained
11047 F:      drivers/memstick/host/tifm_ms.c
11048
11049 SONY MEMORYSTICK STANDARD SUPPORT
11050 M:      Maxim Levitsky <maximlevitsky@gmail.com>
11051 S:      Maintained
11052 F:      drivers/memstick/core/ms_block.*
11053
11054 SOUND
11055 M:      Jaroslav Kysela <perex@perex.cz>
11056 M:      Takashi Iwai <tiwai@suse.com>
11057 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11058 W:      http://www.alsa-project.org/
11059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11060 T:      git git://git.alsa-project.org/alsa-kernel.git
11061 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
11062 S:      Maintained
11063 F:      Documentation/sound/
11064 F:      include/sound/
11065 F:      include/uapi/sound/
11066 F:      sound/
11067
11068 SOUND - COMPRESSED AUDIO
11069 M:      Vinod Koul <vinod.koul@intel.com>
11070 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11072 S:      Supported
11073 F:      Documentation/sound/alsa/compress_offload.txt
11074 F:      include/sound/compress_driver.h
11075 F:      include/uapi/sound/compress_*
11076 F:      sound/core/compress_offload.c
11077 F:      sound/soc/soc-compress.c
11078
11079 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
11080 M:      Liam Girdwood <lgirdwood@gmail.com>
11081 M:      Mark Brown <broonie@kernel.org>
11082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
11083 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11084 W:      http://alsa-project.org/main/index.php/ASoC
11085 S:      Supported
11086 F:      Documentation/devicetree/bindings/sound/
11087 F:      Documentation/sound/alsa/soc/
11088 F:      sound/soc/
11089 F:      include/sound/soc*
11090
11091 SOUND - DMAENGINE HELPERS
11092 M:      Lars-Peter Clausen <lars@metafoo.de>
11093 S:      Supported
11094 F:      include/sound/dmaengine_pcm.h
11095 F:      sound/core/pcm_dmaengine.c
11096 F:      sound/soc/soc-generic-dmaengine-pcm.c
11097
11098 SP2 MEDIA DRIVER
11099 M:      Olli Salonen <olli.salonen@iki.fi>
11100 L:      linux-media@vger.kernel.org
11101 W:      https://linuxtv.org
11102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11103 S:      Maintained
11104 F:      drivers/media/dvb-frontends/sp2*
11105
11106 SPARC + UltraSPARC (sparc/sparc64)
11107 M:      "David S. Miller" <davem@davemloft.net>
11108 L:      sparclinux@vger.kernel.org
11109 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
11110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
11111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
11112 S:      Maintained
11113 F:      arch/sparc/
11114 F:      drivers/sbus/
11115
11116 SPARC SERIAL DRIVERS
11117 M:      "David S. Miller" <davem@davemloft.net>
11118 L:      sparclinux@vger.kernel.org
11119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
11120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
11121 S:      Maintained
11122 F:      include/linux/sunserialcore.h
11123 F:      drivers/tty/serial/suncore.c
11124 F:      drivers/tty/serial/sunhv.c
11125 F:      drivers/tty/serial/sunsab.c
11126 F:      drivers/tty/serial/sunsab.h
11127 F:      drivers/tty/serial/sunsu.c
11128 F:      drivers/tty/serial/sunzilog.c
11129 F:      drivers/tty/serial/sunzilog.h
11130
11131 SPARSE CHECKER
11132 M:      "Christopher Li" <sparse@chrisli.org>
11133 L:      linux-sparse@vger.kernel.org
11134 W:      https://sparse.wiki.kernel.org/
11135 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
11136 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
11137 S:      Maintained
11138 F:      include/linux/compiler.h
11139
11140 SPEAR PLATFORM SUPPORT
11141 M:      Viresh Kumar <vireshk@kernel.org>
11142 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
11143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11144 W:      http://www.st.com/spear
11145 S:      Maintained
11146 F:      arch/arm/boot/dts/spear*
11147 F:      arch/arm/mach-spear/
11148
11149 SPEAR CLOCK FRAMEWORK SUPPORT
11150 M:      Viresh Kumar <vireshk@kernel.org>
11151 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11152 W:      http://www.st.com/spear
11153 S:      Maintained
11154 F:      drivers/clk/spear/
11155
11156 SPI SUBSYSTEM
11157 M:      Mark Brown <broonie@kernel.org>
11158 L:      linux-spi@vger.kernel.org
11159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
11160 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
11161 S:      Maintained
11162 F:      Documentation/devicetree/bindings/spi/
11163 F:      Documentation/spi/
11164 F:      drivers/spi/
11165 F:      include/linux/spi/
11166 F:      include/uapi/linux/spi/
11167 F:      tools/spi/
11168
11169 SPIDERNET NETWORK DRIVER for CELL
11170 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
11171 L:      netdev@vger.kernel.org
11172 S:      Supported
11173 F:      Documentation/networking/spider_net.txt
11174 F:      drivers/net/ethernet/toshiba/spider_net*
11175
11176 SPU FILE SYSTEM
11177 M:      Jeremy Kerr <jk@ozlabs.org>
11178 L:      linuxppc-dev@lists.ozlabs.org
11179 W:      http://www.ibm.com/developerworks/power/cell/
11180 S:      Supported
11181 F:      Documentation/filesystems/spufs.txt
11182 F:      arch/powerpc/platforms/cell/spufs/
11183
11184 SQUASHFS FILE SYSTEM
11185 M:      Phillip Lougher <phillip@squashfs.org.uk>
11186 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
11187 W:      http://squashfs.org.uk
11188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
11189 S:      Maintained
11190 F:      Documentation/filesystems/squashfs.txt
11191 F:      fs/squashfs/
11192
11193 SRM (Alpha) environment access
11194 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
11195 S:      Maintained
11196 F:      arch/alpha/kernel/srm_env.c
11197
11198 STABLE BRANCH
11199 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11200 L:      stable@vger.kernel.org
11201 S:      Supported
11202 F:      Documentation/stable_kernel_rules.txt
11203
11204 STAGING SUBSYSTEM
11205 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
11207 L:      devel@driverdev.osuosl.org
11208 S:      Supported
11209 F:      drivers/staging/
11210
11211 STAGING - COMEDI
11212 M:      Ian Abbott <abbotti@mev.co.uk>
11213 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
11214 S:      Odd Fixes
11215 F:      drivers/staging/comedi/
11216
11217 STAGING - FLARION FT1000 DRIVERS
11218 M:      Marek Belisko <marek.belisko@gmail.com>
11219 S:      Odd Fixes
11220 F:      drivers/staging/ft1000/
11221
11222 STAGING - INDUSTRIAL IO
11223 M:      Jonathan Cameron <jic23@kernel.org>
11224 L:      linux-iio@vger.kernel.org
11225 S:      Odd Fixes
11226 F:      Documentation/devicetree/bindings/staging/iio/
11227 F:      drivers/staging/iio/
11228
11229 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
11230 M:      Jarod Wilson <jarod@wilsonet.com>
11231 W:      http://www.lirc.org/
11232 S:      Odd Fixes
11233 F:      drivers/staging/media/lirc/
11234
11235 STAGING - LUSTRE PARALLEL FILESYSTEM
11236 M:      Oleg Drokin <oleg.drokin@intel.com>
11237 M:      Andreas Dilger <andreas.dilger@intel.com>
11238 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
11239 W:      http://wiki.lustre.org/
11240 S:      Maintained
11241 F:      drivers/staging/lustre
11242
11243 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
11244 M:      Marc Dietrich <marvin24@gmx.de>
11245 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
11246 L:      linux-tegra@vger.kernel.org
11247 S:      Maintained
11248 F:      drivers/staging/nvec/
11249
11250 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
11251 M:      Jens Frederich <jfrederich@gmail.com>
11252 M:      Daniel Drake <dsd@laptop.org>
11253 M:      Jon Nettleton <jon.nettleton@gmail.com>
11254 W:      http://wiki.laptop.org/go/DCON
11255 S:      Maintained
11256 F:      drivers/staging/olpc_dcon/
11257
11258 STAGING - REALTEK RTL8712U DRIVERS
11259 M:      Larry Finger <Larry.Finger@lwfinger.net>
11260 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
11261 S:      Odd Fixes
11262 F:      drivers/staging/rtl8712/
11263
11264 STAGING - REALTEK RTL8723U WIRELESS DRIVER
11265 M:      Larry Finger <Larry.Finger@lwfinger.net>
11266 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
11267 L:      linux-wireless@vger.kernel.org
11268 S:      Maintained
11269 F:      drivers/staging/rtl8723au/
11270
11271 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
11272 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
11273 M:      Teddy Wang <teddy.wang@siliconmotion.com>
11274 M:      Sudip Mukherjee <sudip@vectorindia.org>
11275 L:      linux-fbdev@vger.kernel.org
11276 S:      Maintained
11277 F:      drivers/staging/sm750fb/
11278
11279 STAGING - SLICOSS
11280 M:      Lior Dotan <liodot@gmail.com>
11281 M:      Christopher Harrer <charrer@alacritech.com>
11282 S:      Odd Fixes
11283 F:      drivers/staging/slicoss/
11284
11285 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
11286 M:      William Hubbs <w.d.hubbs@gmail.com>
11287 M:      Chris Brannon <chris@the-brannons.com>
11288 M:      Kirk Reiser <kirk@reisers.ca>
11289 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
11290 L:      speakup@linux-speakup.org
11291 W:      http://www.linux-speakup.org/
11292 S:      Odd Fixes
11293 F:      drivers/staging/speakup/
11294
11295 STAGING - VIA VT665X DRIVERS
11296 M:      Forest Bond <forest@alittletooquiet.net>
11297 S:      Odd Fixes
11298 F:      drivers/staging/vt665?/
11299
11300 STAGING - WILC1000 WIFI DRIVER
11301 M:      Aditya Shankar <aditya.shankar@microchip.com>
11302 M:      Ganesh Krishna <ganesh.krishna@microchip.com>
11303 L:      linux-wireless@vger.kernel.org
11304 S:      Supported
11305 F:      drivers/staging/wilc1000/
11306
11307 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
11308 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
11309 S:      Odd Fixes
11310 F:      drivers/staging/xgifb/
11311
11312 STARFIRE/DURALAN NETWORK DRIVER
11313 M:      Ion Badulescu <ionut@badula.org>
11314 S:      Odd Fixes
11315 F:      drivers/net/ethernet/adaptec/starfire*
11316
11317 SUN3/3X
11318 M:      Sam Creasey <sammy@sammy.net>
11319 W:      http://sammy.net/sun3/
11320 S:      Maintained
11321 F:      arch/m68k/kernel/*sun3*
11322 F:      arch/m68k/sun3*/
11323 F:      arch/m68k/include/asm/sun3*
11324 F:      drivers/net/ethernet/i825xx/sun3*
11325
11326 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
11327 M:      Hans de Goede <hdegoede@redhat.com>
11328 L:      linux-input@vger.kernel.org
11329 S:      Maintained
11330 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
11331 F:      drivers/input/keyboard/sun4i-lradc-keys.c
11332
11333 SUNDANCE NETWORK DRIVER
11334 M:      Denis Kirjanov <kda@linux-powerpc.org>
11335 L:      netdev@vger.kernel.org
11336 S:      Maintained
11337 F:      drivers/net/ethernet/dlink/sundance.c
11338
11339 SUPERH
11340 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
11341 M:      Rich Felker <dalias@libc.org>
11342 L:      linux-sh@vger.kernel.org
11343 Q:      http://patchwork.kernel.org/project/linux-sh/list/
11344 S:      Maintained
11345 F:      Documentation/sh/
11346 F:      arch/sh/
11347 F:      drivers/sh/
11348
11349 SUSPEND TO RAM
11350 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
11351 M:      Len Brown <len.brown@intel.com>
11352 M:      Pavel Machek <pavel@ucw.cz>
11353 L:      linux-pm@vger.kernel.org
11354 S:      Supported
11355 F:      Documentation/power/
11356 F:      arch/x86/kernel/acpi/
11357 F:      drivers/base/power/
11358 F:      kernel/power/
11359 F:      include/linux/suspend.h
11360 F:      include/linux/freezer.h
11361 F:      include/linux/pm.h
11362
11363 SVGA HANDLING
11364 M:      Martin Mares <mj@ucw.cz>
11365 L:      linux-video@atrey.karlin.mff.cuni.cz
11366 S:      Maintained
11367 F:      Documentation/svga.txt
11368 F:      arch/x86/boot/video*
11369
11370 SWIOTLB SUBSYSTEM
11371 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11372 L:      linux-kernel@vger.kernel.org
11373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
11374 S:      Supported
11375 F:      lib/swiotlb.c
11376 F:      arch/*/kernel/pci-swiotlb.c
11377 F:      include/linux/swiotlb.h
11378
11379 SWITCHDEV
11380 M:      Jiri Pirko <jiri@resnulli.us>
11381 L:      netdev@vger.kernel.org
11382 S:      Supported
11383 F:      net/switchdev/
11384 F:      include/net/switchdev.h
11385
11386 SYNOPSYS ARC ARCHITECTURE
11387 M:      Vineet Gupta <vgupta@synopsys.com>
11388 L:      linux-snps-arc@lists.infradead.org
11389 S:      Supported
11390 F:      arch/arc/
11391 F:      Documentation/devicetree/bindings/arc/*
11392 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
11393 F:      drivers/tty/serial/arc_uart.c
11394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
11395
11396 SYNOPSYS ARC SDP platform support
11397 M:      Alexey Brodkin <abrodkin@synopsys.com>
11398 S:      Supported
11399 F:      arch/arc/plat-axs10x
11400 F:      arch/arc/boot/dts/ax*
11401 F:      Documentation/devicetree/bindings/arc/axs10*
11402
11403 SYSTEM CONFIGURATION (SYSCON)
11404 M:      Lee Jones <lee.jones@linaro.org>
11405 M:      Arnd Bergmann <arnd@arndb.de>
11406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
11407 S:      Supported
11408 F:      drivers/mfd/syscon.c
11409
11410 SYSV FILESYSTEM
11411 M:      Christoph Hellwig <hch@infradead.org>
11412 S:      Maintained
11413 F:      Documentation/filesystems/sysv-fs.txt
11414 F:      fs/sysv/
11415 F:      include/linux/sysv_fs.h
11416
11417 TARGET SUBSYSTEM
11418 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
11419 L:      linux-scsi@vger.kernel.org
11420 L:      target-devel@vger.kernel.org
11421 W:      http://www.linux-iscsi.org
11422 W:      http://groups.google.com/group/linux-iscsi-target-dev
11423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
11424 S:      Supported
11425 F:      drivers/target/
11426 F:      include/target/
11427 F:      Documentation/target/
11428
11429 TASKSTATS STATISTICS INTERFACE
11430 M:      Balbir Singh <bsingharora@gmail.com>
11431 S:      Maintained
11432 F:      Documentation/accounting/taskstats*
11433 F:      include/linux/taskstats*
11434 F:      kernel/taskstats.c
11435
11436 TC CLASSIFIER
11437 M:      Jamal Hadi Salim <jhs@mojatatu.com>
11438 L:      netdev@vger.kernel.org
11439 S:      Maintained
11440 F:      include/net/pkt_cls.h
11441 F:      include/uapi/linux/pkt_cls.h
11442 F:      net/sched/
11443
11444 TCP LOW PRIORITY MODULE
11445 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
11446 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
11447 W:      http://tcp-lp-mod.sourceforge.net/
11448 S:      Maintained
11449 F:      net/ipv4/tcp_lp.c
11450
11451 TDA10071 MEDIA DRIVER
11452 M:      Antti Palosaari <crope@iki.fi>
11453 L:      linux-media@vger.kernel.org
11454 W:      https://linuxtv.org
11455 W:      http://palosaari.fi/linux/
11456 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11457 T:      git git://linuxtv.org/anttip/media_tree.git
11458 S:      Maintained
11459 F:      drivers/media/dvb-frontends/tda10071*
11460
11461 TDA18212 MEDIA DRIVER
11462 M:      Antti Palosaari <crope@iki.fi>
11463 L:      linux-media@vger.kernel.org
11464 W:      https://linuxtv.org
11465 W:      http://palosaari.fi/linux/
11466 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11467 T:      git git://linuxtv.org/anttip/media_tree.git
11468 S:      Maintained
11469 F:      drivers/media/tuners/tda18212*
11470
11471 TDA18218 MEDIA DRIVER
11472 M:      Antti Palosaari <crope@iki.fi>
11473 L:      linux-media@vger.kernel.org
11474 W:      https://linuxtv.org
11475 W:      http://palosaari.fi/linux/
11476 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11477 T:      git git://linuxtv.org/anttip/media_tree.git
11478 S:      Maintained
11479 F:      drivers/media/tuners/tda18218*
11480
11481 TDA18271 MEDIA DRIVER
11482 M:      Michael Krufky <mkrufky@linuxtv.org>
11483 L:      linux-media@vger.kernel.org
11484 W:      https://linuxtv.org
11485 W:      http://github.com/mkrufky
11486 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11487 T:      git git://linuxtv.org/mkrufky/tuners.git
11488 S:      Maintained
11489 F:      drivers/media/tuners/tda18271*
11490
11491 TDA827x MEDIA DRIVER
11492 M:      Michael Krufky <mkrufky@linuxtv.org>
11493 L:      linux-media@vger.kernel.org
11494 W:      https://linuxtv.org
11495 W:      http://github.com/mkrufky
11496 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11497 T:      git git://linuxtv.org/mkrufky/tuners.git
11498 S:      Maintained
11499 F:      drivers/media/tuners/tda8290.*
11500
11501 TDA8290 MEDIA DRIVER
11502 M:      Michael Krufky <mkrufky@linuxtv.org>
11503 L:      linux-media@vger.kernel.org
11504 W:      https://linuxtv.org
11505 W:      http://github.com/mkrufky
11506 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11507 T:      git git://linuxtv.org/mkrufky/tuners.git
11508 S:      Maintained
11509 F:      drivers/media/tuners/tda8290.*
11510
11511 TDA9840 MEDIA DRIVER
11512 M:      Hans Verkuil <hverkuil@xs4all.nl>
11513 L:      linux-media@vger.kernel.org
11514 T:      git git://linuxtv.org/media_tree.git
11515 W:      https://linuxtv.org
11516 S:      Maintained
11517 F:      drivers/media/i2c/tda9840*
11518
11519 TEA5761 TUNER DRIVER
11520 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11521 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11522 L:      linux-media@vger.kernel.org
11523 W:      https://linuxtv.org
11524 T:      git git://linuxtv.org/media_tree.git
11525 S:      Odd fixes
11526 F:      drivers/media/tuners/tea5761.*
11527
11528 TEA5767 TUNER DRIVER
11529 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11530 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11531 L:      linux-media@vger.kernel.org
11532 W:      https://linuxtv.org
11533 T:      git git://linuxtv.org/media_tree.git
11534 S:      Maintained
11535 F:      drivers/media/tuners/tea5767.*
11536
11537 TEA6415C MEDIA DRIVER
11538 M:      Hans Verkuil <hverkuil@xs4all.nl>
11539 L:      linux-media@vger.kernel.org
11540 T:      git git://linuxtv.org/media_tree.git
11541 W:      https://linuxtv.org
11542 S:      Maintained
11543 F:      drivers/media/i2c/tea6415c*
11544
11545 TEA6420 MEDIA DRIVER
11546 M:      Hans Verkuil <hverkuil@xs4all.nl>
11547 L:      linux-media@vger.kernel.org
11548 T:      git git://linuxtv.org/media_tree.git
11549 W:      https://linuxtv.org
11550 S:      Maintained
11551 F:      drivers/media/i2c/tea6420*
11552
11553 TEAM DRIVER
11554 M:      Jiri Pirko <jiri@resnulli.us>
11555 L:      netdev@vger.kernel.org
11556 S:      Supported
11557 F:      drivers/net/team/
11558 F:      include/linux/if_team.h
11559 F:      include/uapi/linux/if_team.h
11560
11561 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11562 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11563 S:      Maintained
11564 F:      arch/x86/platform/ts5500/
11565
11566 TECHNOTREND USB IR RECEIVER
11567 M:      Sean Young <sean@mess.org>
11568 L:      linux-media@vger.kernel.org
11569 S:      Maintained
11570 F:      drivers/media/rc/ttusbir.c
11571
11572 TEGRA ARCHITECTURE SUPPORT
11573 M:      Stephen Warren <swarren@wwwdotorg.org>
11574 M:      Thierry Reding <thierry.reding@gmail.com>
11575 M:      Alexandre Courbot <gnurou@gmail.com>
11576 L:      linux-tegra@vger.kernel.org
11577 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11579 S:      Supported
11580 N:      [^a-z]tegra
11581
11582 TEGRA CLOCK DRIVER
11583 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11584 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11585 S:      Supported
11586 F:      drivers/clk/tegra/
11587
11588 TEGRA DMA DRIVERS
11589 M:      Laxman Dewangan <ldewangan@nvidia.com>
11590 M:      Jon Hunter <jonathanh@nvidia.com>
11591 S:      Supported
11592 F:      drivers/dma/tegra*
11593
11594 TEGRA I2C DRIVER
11595 M:      Laxman Dewangan <ldewangan@nvidia.com>
11596 S:      Supported
11597 F:      drivers/i2c/busses/i2c-tegra.c
11598
11599 TEGRA IOMMU DRIVERS
11600 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11601 S:      Supported
11602 F:      drivers/iommu/tegra*
11603
11604 TEGRA KBC DRIVER
11605 M:      Rakesh Iyer <riyer@nvidia.com>
11606 M:      Laxman Dewangan <ldewangan@nvidia.com>
11607 S:      Supported
11608 F:      drivers/input/keyboard/tegra-kbc.c
11609
11610 TEGRA PWM DRIVER
11611 M:      Thierry Reding <thierry.reding@gmail.com>
11612 S:      Supported
11613 F:      drivers/pwm/pwm-tegra.c
11614
11615 TEGRA SERIAL DRIVER
11616 M:      Laxman Dewangan <ldewangan@nvidia.com>
11617 S:      Supported
11618 F:      drivers/tty/serial/serial-tegra.c
11619
11620 TEGRA SPI DRIVER
11621 M:      Laxman Dewangan <ldewangan@nvidia.com>
11622 S:      Supported
11623 F:      drivers/spi/spi-tegra*
11624
11625 TEHUTI ETHERNET DRIVER
11626 M:      Andy Gospodarek <andy@greyhouse.net>
11627 L:      netdev@vger.kernel.org
11628 S:      Supported
11629 F:      drivers/net/ethernet/tehuti/*
11630
11631 Telecom Clock Driver for MCPL0010
11632 M:      Mark Gross <mark.gross@intel.com>
11633 S:      Supported
11634 F:      drivers/char/tlclk.c
11635
11636 TENSILICA XTENSA PORT (xtensa)
11637 M:      Chris Zankel <chris@zankel.net>
11638 M:      Max Filippov <jcmvbkbc@gmail.com>
11639 L:      linux-xtensa@linux-xtensa.org
11640 T:      git git://github.com/czankel/xtensa-linux.git
11641 S:      Maintained
11642 F:      arch/xtensa/
11643 F:      drivers/irqchip/irq-xtensa-*
11644
11645 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11646 M:      Hans Verkuil <hverkuil@xs4all.nl>
11647 L:      linux-media@vger.kernel.org
11648 T:      git git://linuxtv.org/media_tree.git
11649 W:      https://linuxtv.org
11650 S:      Maintained
11651 F:      drivers/media/radio/radio-raremono.c
11652
11653 THERMAL
11654 M:      Zhang Rui <rui.zhang@intel.com>
11655 M:      Eduardo Valentin <edubezval@gmail.com>
11656 L:      linux-pm@vger.kernel.org
11657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11659 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11660 S:      Supported
11661 F:      drivers/thermal/
11662 F:      include/linux/thermal.h
11663 F:      include/uapi/linux/thermal.h
11664 F:      include/linux/cpu_cooling.h
11665 F:      Documentation/devicetree/bindings/thermal/
11666
11667 THERMAL/CPU_COOLING
11668 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11669 M:      Viresh Kumar <viresh.kumar@linaro.org>
11670 M:      Javi Merino <javi.merino@kernel.org>
11671 L:      linux-pm@vger.kernel.org
11672 S:      Supported
11673 F:      Documentation/thermal/cpu-cooling-api.txt
11674 F:      drivers/thermal/cpu_cooling.c
11675 F:      include/linux/cpu_cooling.h
11676
11677 THINKPAD ACPI EXTRAS DRIVER
11678 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11679 L:      ibm-acpi-devel@lists.sourceforge.net
11680 L:      platform-driver-x86@vger.kernel.org
11681 W:      http://ibm-acpi.sourceforge.net
11682 W:      http://thinkwiki.org/wiki/Ibm-acpi
11683 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11684 S:      Maintained
11685 F:      drivers/platform/x86/thinkpad_acpi.c
11686
11687 TI BANDGAP AND THERMAL DRIVER
11688 M:      Eduardo Valentin <edubezval@gmail.com>
11689 M:      Keerthy <j-keerthy@ti.com>
11690 L:      linux-pm@vger.kernel.org
11691 L:      linux-omap@vger.kernel.org
11692 S:      Maintained
11693 F:      drivers/thermal/ti-soc-thermal/
11694
11695 TI VPE/CAL DRIVERS
11696 M:      Benoit Parrot <bparrot@ti.com>
11697 L:      linux-media@vger.kernel.org
11698 W:      http://linuxtv.org/
11699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11700 S:      Maintained
11701 F:      drivers/media/platform/ti-vpe/
11702
11703 TI CDCE706 CLOCK DRIVER
11704 M:      Max Filippov <jcmvbkbc@gmail.com>
11705 S:      Maintained
11706 F:      drivers/clk/clk-cdce706.c
11707
11708 TI CLOCK DRIVER
11709 M:      Tero Kristo <t-kristo@ti.com>
11710 L:      linux-omap@vger.kernel.org
11711 S:      Maintained
11712 F:      drivers/clk/ti/
11713 F:      include/linux/clk/ti.h
11714
11715 TI ETHERNET SWITCH DRIVER (CPSW)
11716 M:      Mugunthan V N <mugunthanvnm@ti.com>
11717 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11718 L:      linux-omap@vger.kernel.org
11719 L:      netdev@vger.kernel.org
11720 S:      Maintained
11721 F:      drivers/net/ethernet/ti/cpsw*
11722 F:      drivers/net/ethernet/ti/davinci*
11723
11724 TI FLASH MEDIA INTERFACE DRIVER
11725 M:      Alex Dubov <oakad@yahoo.com>
11726 S:      Maintained
11727 F:      drivers/misc/tifm*
11728 F:      drivers/mmc/host/tifm_sd.c
11729 F:      include/linux/tifm.h
11730
11731 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11732 M:      Santosh Shilimkar <ssantosh@kernel.org>
11733 L:      linux-kernel@vger.kernel.org
11734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11735 S:      Maintained
11736 F:      drivers/soc/ti/*
11737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11738
11739
11740 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11741 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11742 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11744 S:      Maintained
11745 F:      sound/soc/codecs/lm49453*
11746 F:      sound/soc/codecs/isabelle*
11747
11748 TI LP855x BACKLIGHT DRIVER
11749 M:      Milo Kim <milo.kim@ti.com>
11750 S:      Maintained
11751 F:      Documentation/backlight/lp855x-driver.txt
11752 F:      drivers/video/backlight/lp855x_bl.c
11753 F:      include/linux/platform_data/lp855x.h
11754
11755 TI LP8727 CHARGER DRIVER
11756 M:      Milo Kim <milo.kim@ti.com>
11757 S:      Maintained
11758 F:      drivers/power/lp8727_charger.c
11759 F:      include/linux/platform_data/lp8727.h
11760
11761 TI LP8788 MFD DRIVER
11762 M:      Milo Kim <milo.kim@ti.com>
11763 S:      Maintained
11764 F:      drivers/iio/adc/lp8788_adc.c
11765 F:      drivers/leds/leds-lp8788.c
11766 F:      drivers/mfd/lp8788*.c
11767 F:      drivers/power/lp8788-charger.c
11768 F:      drivers/regulator/lp8788-*.c
11769 F:      include/linux/mfd/lp8788*.h
11770
11771 TI NETCP ETHERNET DRIVER
11772 M:      Wingman Kwok <w-kwok2@ti.com>
11773 M:      Murali Karicheri <m-karicheri2@ti.com>
11774 L:      netdev@vger.kernel.org
11775 S:      Maintained
11776 F:      drivers/net/ethernet/ti/netcp*
11777
11778 TI TAS571X FAMILY ASoC CODEC DRIVER
11779 M:      Kevin Cernekee <cernekee@chromium.org>
11780 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11781 S:      Odd Fixes
11782 F:      sound/soc/codecs/tas571x*
11783
11784 TI TWL4030 SERIES SOC CODEC DRIVER
11785 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11786 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11787 S:      Maintained
11788 F:      sound/soc/codecs/twl4030*
11789
11790 TI WILINK WIRELESS DRIVERS
11791 L:      linux-wireless@vger.kernel.org
11792 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11793 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11795 S:      Orphan
11796 F:      drivers/net/wireless/ti/
11797 F:      include/linux/wl12xx.h
11798
11799 TIPC NETWORK LAYER
11800 M:      Jon Maloy <jon.maloy@ericsson.com>
11801 M:      Ying Xue <ying.xue@windriver.com>
11802 L:      netdev@vger.kernel.org (core kernel code)
11803 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11804 W:      http://tipc.sourceforge.net/
11805 S:      Maintained
11806 F:      include/uapi/linux/tipc*.h
11807 F:      net/tipc/
11808
11809 TILE ARCHITECTURE
11810 M:      Chris Metcalf <cmetcalf@mellanox.com>
11811 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11813 S:      Supported
11814 F:      arch/tile/
11815 F:      drivers/char/tile-srom.c
11816 F:      drivers/edac/tile_edac.c
11817 F:      drivers/net/ethernet/tile/
11818 F:      drivers/rtc/rtc-tile.c
11819 F:      drivers/tty/hvc/hvc_tile.c
11820 F:      drivers/tty/serial/tilegx.c
11821 F:      drivers/usb/host/*-tilegx.c
11822 F:      include/linux/usb/tilegx.h
11823
11824 TLAN NETWORK DRIVER
11825 M:      Samuel Chessman <chessman@tux.org>
11826 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11827 W:      http://sourceforge.net/projects/tlan/
11828 S:      Maintained
11829 F:      Documentation/networking/tlan.txt
11830 F:      drivers/net/ethernet/ti/tlan.*
11831
11832 TOMOYO SECURITY MODULE
11833 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11834 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11835 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11836 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11837 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11838 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11839 W:      http://tomoyo.sourceforge.jp/
11840 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11841 S:      Maintained
11842 F:      security/tomoyo/
11843
11844 TOPSTAR LAPTOP EXTRAS DRIVER
11845 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11846 L:      platform-driver-x86@vger.kernel.org
11847 S:      Maintained
11848 F:      drivers/platform/x86/topstar-laptop.c
11849
11850 TOSHIBA ACPI EXTRAS DRIVER
11851 M:      Azael Avalos <coproscefalo@gmail.com>
11852 L:      platform-driver-x86@vger.kernel.org
11853 S:      Maintained
11854 F:      drivers/platform/x86/toshiba_acpi.c
11855
11856 TOSHIBA BLUETOOTH DRIVER
11857 M:      Azael Avalos <coproscefalo@gmail.com>
11858 L:      platform-driver-x86@vger.kernel.org
11859 S:      Maintained
11860 F:      drivers/platform/x86/toshiba_bluetooth.c
11861
11862 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11863 M:      Azael Avalos <coproscefalo@gmail.com>
11864 L:      platform-driver-x86@vger.kernel.org
11865 S:      Maintained
11866 F:      drivers/platform/x86/toshiba_haps.c
11867
11868 TOSHIBA WMI HOTKEYS DRIVER
11869 M:      Azael Avalos <coproscefalo@gmail.com>
11870 L:      platform-driver-x86@vger.kernel.org
11871 S:      Maintained
11872 F:      drivers/platform/x86/toshiba-wmi.c
11873
11874 TOSHIBA SMM DRIVER
11875 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11876 W:      http://www.buzzard.org.uk/toshiba/
11877 S:      Maintained
11878 F:      drivers/char/toshiba.c
11879 F:      include/linux/toshiba.h
11880 F:      include/uapi/linux/toshiba.h
11881
11882 TOSHIBA TC358743 DRIVER
11883 M:      Mats Randgaard <matrandg@cisco.com>
11884 L:      linux-media@vger.kernel.org
11885 S:      Maintained
11886 F:      drivers/media/i2c/tc358743*
11887 F:      include/media/i2c/tc358743.h
11888
11889 TMIO/SDHI MMC DRIVER
11890 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
11891 L:      linux-mmc@vger.kernel.org
11892 S:      Supported
11893 F:      drivers/mmc/host/tmio_mmc*
11894 F:      drivers/mmc/host/sh_mobile_sdhi.c
11895 F:      include/linux/mfd/tmio.h
11896
11897 TMP401 HARDWARE MONITOR DRIVER
11898 M:      Guenter Roeck <linux@roeck-us.net>
11899 L:      linux-hwmon@vger.kernel.org
11900 S:      Maintained
11901 F:      Documentation/hwmon/tmp401
11902 F:      drivers/hwmon/tmp401.c
11903
11904 TMPFS (SHMEM FILESYSTEM)
11905 M:      Hugh Dickins <hughd@google.com>
11906 L:      linux-mm@kvack.org
11907 S:      Maintained
11908 F:      include/linux/shmem_fs.h
11909 F:      mm/shmem.c
11910
11911 TM6000 VIDEO4LINUX DRIVER
11912 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
11913 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11914 L:      linux-media@vger.kernel.org
11915 W:      https://linuxtv.org
11916 T:      git git://linuxtv.org/media_tree.git
11917 S:      Odd fixes
11918 F:      drivers/media/usb/tm6000/
11919
11920 TW68 VIDEO4LINUX DRIVER
11921 M:      Hans Verkuil <hverkuil@xs4all.nl>
11922 L:      linux-media@vger.kernel.org
11923 T:      git git://linuxtv.org/media_tree.git
11924 W:      https://linuxtv.org
11925 S:      Odd Fixes
11926 F:      drivers/media/pci/tw68/
11927
11928 TW686X VIDEO4LINUX DRIVER
11929 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
11930 L:      linux-media@vger.kernel.org
11931 T:      git git://linuxtv.org/media_tree.git
11932 W:      http://linuxtv.org
11933 S:      Maintained
11934 F:      drivers/media/pci/tw686x/
11935
11936 TPM DEVICE DRIVER
11937 M:      Peter Huewe <peterhuewe@gmx.de>
11938 M:      Marcel Selhorst <tpmdd@selhorst.net>
11939 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11940 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11941 W:      http://tpmdd.sourceforge.net
11942 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11943 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11944 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11945 S:      Maintained
11946 F:      drivers/char/tpm/
11947
11948 TPM IBM_VTPM DEVICE DRIVER
11949 M:      Ashley Lai <ashleydlai@gmail.com>
11950 W:      http://tpmdd.sourceforge.net
11951 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11952 S:      Maintained
11953 F:      drivers/char/tpm/tpm_ibmvtpm*
11954
11955 TRACING
11956 M:      Steven Rostedt <rostedt@goodmis.org>
11957 M:      Ingo Molnar <mingo@redhat.com>
11958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11959 S:      Maintained
11960 F:      Documentation/trace/ftrace.txt
11961 F:      arch/*/*/*/ftrace.h
11962 F:      arch/*/kernel/ftrace.c
11963 F:      include/*/ftrace.h
11964 F:      include/linux/trace*.h
11965 F:      include/trace/
11966 F:      kernel/trace/
11967 F:      tools/testing/selftests/ftrace/
11968
11969 TRACING MMIO ACCESSES (MMIOTRACE)
11970 M:      Steven Rostedt <rostedt@goodmis.org>
11971 M:      Ingo Molnar <mingo@kernel.org>
11972 R:      Karol Herbst <karolherbst@gmail.com>
11973 R:      Pekka Paalanen <ppaalanen@gmail.com>
11974 S:      Maintained
11975 L:      linux-kernel@vger.kernel.org
11976 L:      nouveau@lists.freedesktop.org
11977 F:      kernel/trace/trace_mmiotrace.c
11978 F:      include/linux/mmiotrace.h
11979 F:      arch/x86/mm/kmmio.c
11980 F:      arch/x86/mm/mmio-mod.c
11981 F:      arch/x86/mm/testmmiotrace.c
11982
11983 TRIVIAL PATCHES
11984 M:      Jiri Kosina <trivial@kernel.org>
11985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11986 S:      Maintained
11987 K:      ^Subject:.*(?i)trivial
11988
11989 TTY LAYER
11990 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11991 M:      Jiri Slaby <jslaby@suse.com>
11992 S:      Supported
11993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11994 F:      Documentation/serial/
11995 F:      drivers/tty/
11996 F:      drivers/tty/serial/serial_core.c
11997 F:      include/linux/serial_core.h
11998 F:      include/linux/serial.h
11999 F:      include/linux/tty.h
12000 F:      include/uapi/linux/serial_core.h
12001 F:      include/uapi/linux/serial.h
12002 F:      include/uapi/linux/tty.h
12003
12004 TUA9001 MEDIA DRIVER
12005 M:      Antti Palosaari <crope@iki.fi>
12006 L:      linux-media@vger.kernel.org
12007 W:      https://linuxtv.org
12008 W:      http://palosaari.fi/linux/
12009 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12010 T:      git git://linuxtv.org/anttip/media_tree.git
12011 S:      Maintained
12012 F:      drivers/media/tuners/tua9001*
12013
12014 TULIP NETWORK DRIVERS
12015 L:      netdev@vger.kernel.org
12016 L:      linux-parisc@vger.kernel.org
12017 S:      Orphan
12018 F:      drivers/net/ethernet/dec/tulip/
12019
12020 TUN/TAP driver
12021 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
12022 W:      http://vtun.sourceforge.net/tun
12023 S:      Maintained
12024 F:      Documentation/networking/tuntap.txt
12025 F:      arch/um/os-Linux/drivers/
12026
12027 TURBOCHANNEL SUBSYSTEM
12028 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12029 M:      Ralf Baechle <ralf@linux-mips.org>
12030 L:      linux-mips@linux-mips.org
12031 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
12032 S:      Maintained
12033 F:      drivers/tc/
12034 F:      include/linux/tc.h
12035
12036 U14-34F SCSI DRIVER
12037 M:      Dario Ballabio <ballabio_dario@emc.com>
12038 L:      linux-scsi@vger.kernel.org
12039 S:      Maintained
12040 F:      drivers/scsi/u14-34f.c
12041
12042 UBI FILE SYSTEM (UBIFS)
12043 M:      Richard Weinberger <richard@nod.at>
12044 M:      Artem Bityutskiy <dedekind1@gmail.com>
12045 M:      Adrian Hunter <adrian.hunter@intel.com>
12046 L:      linux-mtd@lists.infradead.org
12047 T:      git git://git.infradead.org/ubifs-2.6.git
12048 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
12049 S:      Supported
12050 F:      Documentation/filesystems/ubifs.txt
12051 F:      fs/ubifs/
12052
12053 UCLINUX (M68KNOMMU AND COLDFIRE)
12054 M:      Greg Ungerer <gerg@linux-m68k.org>
12055 W:      http://www.linux-m68k.org/
12056 W:      http://www.uclinux.org/
12057 L:      linux-m68k@lists.linux-m68k.org
12058 L:      uclinux-dev@uclinux.org  (subscribers-only)
12059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
12060 S:      Maintained
12061 F:      arch/m68k/coldfire/
12062 F:      arch/m68k/68*/
12063 F:      arch/m68k/*/*_no.*
12064 F:      arch/m68k/include/asm/*_no.*
12065
12066 UDF FILESYSTEM
12067 M:      Jan Kara <jack@suse.com>
12068 S:      Maintained
12069 F:      Documentation/filesystems/udf.txt
12070 F:      fs/udf/
12071
12072 UFS FILESYSTEM
12073 M:      Evgeniy Dushistov <dushistov@mail.ru>
12074 S:      Maintained
12075 F:      Documentation/filesystems/ufs.txt
12076 F:      fs/ufs/
12077
12078 UHID USERSPACE HID IO DRIVER:
12079 M:      David Herrmann <dh.herrmann@googlemail.com>
12080 L:      linux-input@vger.kernel.org
12081 S:      Maintained
12082 F:      drivers/hid/uhid.c
12083 F:      include/uapi/linux/uhid.h
12084
12085 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
12086 L:      linux-usb@vger.kernel.org
12087 S:      Orphan
12088 F:      drivers/uwb/
12089 F:      include/linux/uwb.h
12090 F:      include/linux/uwb/
12091
12092 UNICORE32 ARCHITECTURE:
12093 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
12094 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
12095 S:      Maintained
12096 T:      git git://github.com/gxt/linux.git
12097 F:      arch/unicore32/
12098
12099 UNIFDEF
12100 M:      Tony Finch <dot@dotat.at>
12101 W:      http://dotat.at/prog/unifdef
12102 S:      Maintained
12103 F:      scripts/unifdef.c
12104
12105 UNIFORM CDROM DRIVER
12106 M:      Jens Axboe <axboe@kernel.dk>
12107 W:      http://www.kernel.dk
12108 S:      Maintained
12109 F:      Documentation/cdrom/
12110 F:      drivers/cdrom/cdrom.c
12111 F:      include/linux/cdrom.h
12112 F:      include/uapi/linux/cdrom.h
12113
12114 UNISYS S-PAR DRIVERS
12115 M:      David Kershner <david.kershner@unisys.com>
12116 L:      sparmaintainer@unisys.com (Unisys internal)
12117 S:      Supported
12118 F:      drivers/staging/unisys/
12119
12120 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
12121 M:      Vinayak Holikatti <vinholikatti@gmail.com>
12122 L:      linux-scsi@vger.kernel.org
12123 S:      Supported
12124 F:      Documentation/scsi/ufs.txt
12125 F:      drivers/scsi/ufs/
12126
12127 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
12128 M:      Joao Pinto <Joao.Pinto@synopsys.com>
12129 L:      linux-scsi@vger.kernel.org
12130 S:      Supported
12131 F:      drivers/scsi/ufs/*dwc*
12132
12133 UNSORTED BLOCK IMAGES (UBI)
12134 M:      Artem Bityutskiy <dedekind1@gmail.com>
12135 M:      Richard Weinberger <richard@nod.at>
12136 W:      http://www.linux-mtd.infradead.org/
12137 L:      linux-mtd@lists.infradead.org
12138 T:      git git://git.infradead.org/ubifs-2.6.git
12139 S:      Supported
12140 F:      drivers/mtd/ubi/
12141 F:      include/linux/mtd/ubi.h
12142 F:      include/uapi/mtd/ubi-user.h
12143
12144 USB ACM DRIVER
12145 M:      Oliver Neukum <oneukum@suse.com>
12146 L:      linux-usb@vger.kernel.org
12147 S:      Maintained
12148 F:      Documentation/usb/acm.txt
12149 F:      drivers/usb/class/cdc-acm.*
12150
12151 USB AR5523 WIRELESS DRIVER
12152 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
12153 L:      linux-wireless@vger.kernel.org
12154 S:      Maintained
12155 F:      drivers/net/wireless/ath/ar5523/
12156
12157 USB ATTACHED SCSI
12158 M:      Oliver Neukum <oneukum@suse.com>
12159 L:      linux-usb@vger.kernel.org
12160 L:      linux-scsi@vger.kernel.org
12161 S:      Maintained
12162 F:      drivers/usb/storage/uas.c
12163
12164 USB CDC ETHERNET DRIVER
12165 M:      Oliver Neukum <oliver@neukum.org>
12166 L:      linux-usb@vger.kernel.org
12167 S:      Maintained
12168 F:      drivers/net/usb/cdc_*.c
12169 F:      include/uapi/linux/usb/cdc.h
12170
12171 USB CHAOSKEY DRIVER
12172 M:      Keith Packard <keithp@keithp.com>
12173 L:      linux-usb@vger.kernel.org
12174 S:      Maintained
12175 F:      drivers/usb/misc/chaoskey.c
12176
12177 USB CYPRESS C67X00 DRIVER
12178 M:      Peter Korsgaard <jacmet@sunsite.dk>
12179 L:      linux-usb@vger.kernel.org
12180 S:      Maintained
12181 F:      drivers/usb/c67x00/
12182
12183 USB DAVICOM DM9601 DRIVER
12184 M:      Peter Korsgaard <jacmet@sunsite.dk>
12185 L:      netdev@vger.kernel.org
12186 W:      http://www.linux-usb.org/usbnet
12187 S:      Maintained
12188 F:      drivers/net/usb/dm9601.c
12189
12190 USB DIAMOND RIO500 DRIVER
12191 M:      Cesar Miquel <miquel@df.uba.ar>
12192 L:      rio500-users@lists.sourceforge.net
12193 W:      http://rio500.sourceforge.net
12194 S:      Maintained
12195 F:      drivers/usb/misc/rio500*
12196
12197 USB EHCI DRIVER
12198 M:      Alan Stern <stern@rowland.harvard.edu>
12199 L:      linux-usb@vger.kernel.org
12200 S:      Maintained
12201 F:      Documentation/usb/ehci.txt
12202 F:      drivers/usb/host/ehci*
12203
12204 USB GADGET/PERIPHERAL SUBSYSTEM
12205 M:      Felipe Balbi <balbi@kernel.org>
12206 L:      linux-usb@vger.kernel.org
12207 W:      http://www.linux-usb.org/gadget
12208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
12209 S:      Maintained
12210 F:      drivers/usb/gadget/
12211 F:      include/linux/usb/gadget*
12212
12213 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
12214 M:      Jiri Kosina <jikos@kernel.org>
12215 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
12216 L:      linux-usb@vger.kernel.org
12217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
12218 S:      Maintained
12219 F:      Documentation/hid/hiddev.txt
12220 F:      drivers/hid/usbhid/
12221
12222 USB ISP116X DRIVER
12223 M:      Olav Kongas <ok@artecdesign.ee>
12224 L:      linux-usb@vger.kernel.org
12225 S:      Maintained
12226 F:      drivers/usb/host/isp116x*
12227 F:      include/linux/usb/isp116x.h
12228
12229 USB LAN78XX ETHERNET DRIVER
12230 M:      Woojung Huh <woojung.huh@microchip.com>
12231 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
12232 L:      netdev@vger.kernel.org
12233 S:      Maintained
12234 F:      drivers/net/usb/lan78xx.*
12235
12236 USB MASS STORAGE DRIVER
12237 M:      Alan Stern <stern@rowland.harvard.edu>
12238 L:      linux-usb@vger.kernel.org
12239 L:      usb-storage@lists.one-eyed-alien.net
12240 S:      Maintained
12241 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
12242 F:      drivers/usb/storage/
12243
12244 USB MIDI DRIVER
12245 M:      Clemens Ladisch <clemens@ladisch.de>
12246 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12247 T:      git git://git.alsa-project.org/alsa-kernel.git
12248 S:      Maintained
12249 F:      sound/usb/midi.*
12250
12251 USB NETWORKING DRIVERS
12252 L:      linux-usb@vger.kernel.org
12253 S:      Odd Fixes
12254 F:      drivers/net/usb/
12255
12256 USB OHCI DRIVER
12257 M:      Alan Stern <stern@rowland.harvard.edu>
12258 L:      linux-usb@vger.kernel.org
12259 S:      Maintained
12260 F:      Documentation/usb/ohci.txt
12261 F:      drivers/usb/host/ohci*
12262
12263 USB OTG FSM (Finite State Machine)
12264 M:      Peter Chen <Peter.Chen@nxp.com>
12265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
12266 L:      linux-usb@vger.kernel.org
12267 S:      Maintained
12268 F:      drivers/usb/common/usb-otg-fsm.c
12269
12270 USB OVER IP DRIVER
12271 M:      Valentina Manea <valentina.manea.m@gmail.com>
12272 M:      Shuah Khan <shuahkh@osg.samsung.com>
12273 M:      Shuah Khan <shuah@kernel.org>
12274 L:      linux-usb@vger.kernel.org
12275 S:      Maintained
12276 F:      Documentation/usb/usbip_protocol.txt
12277 F:      drivers/usb/usbip/
12278 F:      tools/usb/usbip/
12279
12280 USB PEGASUS DRIVER
12281 M:      Petko Manolov <petkan@nucleusys.com>
12282 L:      linux-usb@vger.kernel.org
12283 L:      netdev@vger.kernel.org
12284 T:      git git://github.com/petkan/pegasus.git
12285 W:      https://github.com/petkan/pegasus
12286 S:      Maintained
12287 F:      drivers/net/usb/pegasus.*
12288
12289 USB PHY LAYER
12290 M:      Felipe Balbi <balbi@kernel.org>
12291 L:      linux-usb@vger.kernel.org
12292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
12293 S:      Maintained
12294 F:      drivers/usb/phy/
12295
12296 USB PRINTER DRIVER (usblp)
12297 M:      Pete Zaitcev <zaitcev@redhat.com>
12298 L:      linux-usb@vger.kernel.org
12299 S:      Supported
12300 F:      drivers/usb/class/usblp.c
12301
12302 USB QMI WWAN NETWORK DRIVER
12303 M:      Bjørn Mork <bjorn@mork.no>
12304 L:      netdev@vger.kernel.org
12305 S:      Maintained
12306 F:      Documentation/ABI/testing/sysfs-class-net-qmi
12307 F:      drivers/net/usb/qmi_wwan.c
12308
12309 USB RTL8150 DRIVER
12310 M:      Petko Manolov <petkan@nucleusys.com>
12311 L:      linux-usb@vger.kernel.org
12312 L:      netdev@vger.kernel.org
12313 T:      git git://github.com/petkan/rtl8150.git
12314 W:      https://github.com/petkan/rtl8150
12315 S:      Maintained
12316 F:      drivers/net/usb/rtl8150.c
12317
12318 USB SERIAL SUBSYSTEM
12319 M:      Johan Hovold <johan@kernel.org>
12320 L:      linux-usb@vger.kernel.org
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
12322 S:      Maintained
12323 F:      Documentation/usb/usb-serial.txt
12324 F:      drivers/usb/serial/
12325 F:      include/linux/usb/serial.h
12326
12327 USB SMSC75XX ETHERNET DRIVER
12328 M:      Steve Glendinning <steve.glendinning@shawell.net>
12329 L:      netdev@vger.kernel.org
12330 S:      Maintained
12331 F:      drivers/net/usb/smsc75xx.*
12332
12333 USB SMSC95XX ETHERNET DRIVER
12334 M:      Steve Glendinning <steve.glendinning@shawell.net>
12335 L:      netdev@vger.kernel.org
12336 S:      Maintained
12337 F:      drivers/net/usb/smsc95xx.*
12338
12339 USB SUBSYSTEM
12340 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12341 L:      linux-usb@vger.kernel.org
12342 W:      http://www.linux-usb.org
12343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
12344 S:      Supported
12345 F:      Documentation/devicetree/bindings/usb/
12346 F:      Documentation/usb/
12347 F:      drivers/usb/
12348 F:      include/linux/usb.h
12349 F:      include/linux/usb/
12350
12351 USB UHCI DRIVER
12352 M:      Alan Stern <stern@rowland.harvard.edu>
12353 L:      linux-usb@vger.kernel.org
12354 S:      Maintained
12355 F:      drivers/usb/host/uhci*
12356
12357 USB "USBNET" DRIVER FRAMEWORK
12358 M:      Oliver Neukum <oneukum@suse.com>
12359 L:      netdev@vger.kernel.org
12360 W:      http://www.linux-usb.org/usbnet
12361 S:      Maintained
12362 F:      drivers/net/usb/usbnet.c
12363 F:      include/linux/usb/usbnet.h
12364
12365 USB VIDEO CLASS
12366 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12367 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
12368 L:      linux-media@vger.kernel.org
12369 T:      git git://linuxtv.org/media_tree.git
12370 W:      http://www.ideasonboard.org/uvc/
12371 S:      Maintained
12372 F:      drivers/media/usb/uvc/
12373 F:      include/uapi/linux/uvcvideo.h
12374
12375 USB VISION DRIVER
12376 M:      Hans Verkuil <hverkuil@xs4all.nl>
12377 L:      linux-media@vger.kernel.org
12378 T:      git git://linuxtv.org/media_tree.git
12379 W:      https://linuxtv.org
12380 S:      Odd Fixes
12381 F:      drivers/media/usb/usbvision/
12382
12383 USB WEBCAM GADGET
12384 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12385 L:      linux-usb@vger.kernel.org
12386 S:      Maintained
12387 F:      drivers/usb/gadget/function/*uvc*
12388 F:      drivers/usb/gadget/legacy/webcam.c
12389
12390 USB WIRELESS RNDIS DRIVER (rndis_wlan)
12391 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
12392 L:      linux-wireless@vger.kernel.org
12393 S:      Maintained
12394 F:      drivers/net/wireless/rndis_wlan.c
12395
12396 USB XHCI DRIVER
12397 M:      Mathias Nyman <mathias.nyman@intel.com>
12398 L:      linux-usb@vger.kernel.org
12399 S:      Supported
12400 F:      drivers/usb/host/xhci*
12401 F:      drivers/usb/host/pci-quirks*
12402
12403 USB ZD1201 DRIVER
12404 L:      linux-wireless@vger.kernel.org
12405 W:      http://linux-lc100020.sourceforge.net
12406 S:      Orphan
12407 F:      drivers/net/wireless/zydas/zd1201.*
12408
12409 USB ZR364XX DRIVER
12410 M:      Antoine Jacquet <royale@zerezo.com>
12411 L:      linux-usb@vger.kernel.org
12412 L:      linux-media@vger.kernel.org
12413 T:      git git://linuxtv.org/media_tree.git
12414 W:      http://royale.zerezo.com/zr364xx/
12415 S:      Maintained
12416 F:      Documentation/video4linux/zr364xx.txt
12417 F:      drivers/media/usb/zr364xx/
12418
12419 ULPI BUS
12420 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
12421 L:      linux-usb@vger.kernel.org
12422 S:      Maintained
12423 F:      drivers/usb/common/ulpi.c
12424 F:      include/linux/ulpi/
12425
12426 USER-MODE LINUX (UML)
12427 M:      Jeff Dike <jdike@addtoit.com>
12428 M:      Richard Weinberger <richard@nod.at>
12429 L:      user-mode-linux-devel@lists.sourceforge.net
12430 L:      user-mode-linux-user@lists.sourceforge.net
12431 W:      http://user-mode-linux.sourceforge.net
12432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
12433 S:      Maintained
12434 F:      Documentation/virtual/uml/
12435 F:      arch/um/
12436 F:      arch/x86/um/
12437 F:      fs/hostfs/
12438 F:      fs/hppfs/
12439
12440 USERSPACE I/O (UIO)
12441 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12442 S:      Maintained
12443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
12444 F:      Documentation/DocBook/uio-howto.tmpl
12445 F:      drivers/uio/
12446 F:      include/linux/uio*.h
12447
12448 UTIL-LINUX PACKAGE
12449 M:      Karel Zak <kzak@redhat.com>
12450 L:      util-linux@vger.kernel.org
12451 W:      http://en.wikipedia.org/wiki/Util-linux
12452 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
12453 S:      Maintained
12454
12455 UVESAFB DRIVER
12456 M:      Michal Januszewski <spock@gentoo.org>
12457 L:      linux-fbdev@vger.kernel.org
12458 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
12459 S:      Maintained
12460 F:      Documentation/fb/uvesafb.txt
12461 F:      drivers/video/fbdev/uvesafb.*
12462
12463 VF610 NAND DRIVER
12464 M:      Stefan Agner <stefan@agner.ch>
12465 L:      linux-mtd@lists.infradead.org
12466 S:      Supported
12467 F:      drivers/mtd/nand/vf610_nfc.c
12468
12469 VFAT/FAT/MSDOS FILESYSTEM
12470 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
12471 S:      Maintained
12472 F:      Documentation/filesystems/vfat.txt
12473 F:      fs/fat/
12474
12475 VFIO DRIVER
12476 M:      Alex Williamson <alex.williamson@redhat.com>
12477 L:      kvm@vger.kernel.org
12478 T:      git git://github.com/awilliam/linux-vfio.git
12479 S:      Maintained
12480 F:      Documentation/vfio.txt
12481 F:      drivers/vfio/
12482 F:      include/linux/vfio.h
12483 F:      include/uapi/linux/vfio.h
12484
12485 VFIO PLATFORM DRIVER
12486 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
12487 L:      kvm@vger.kernel.org
12488 S:      Maintained
12489 F:      drivers/vfio/platform/
12490
12491 VIDEOBUF2 FRAMEWORK
12492 M:      Pawel Osciak <pawel@osciak.com>
12493 M:      Marek Szyprowski <m.szyprowski@samsung.com>
12494 M:      Kyungmin Park <kyungmin.park@samsung.com>
12495 L:      linux-media@vger.kernel.org
12496 S:      Maintained
12497 F:      drivers/media/v4l2-core/videobuf2-*
12498 F:      include/media/videobuf2-*
12499
12500 VIRTIO AND VHOST VSOCK DRIVER
12501 M:      Stefan Hajnoczi <stefanha@redhat.com>
12502 L:      kvm@vger.kernel.org
12503 L:      virtualization@lists.linux-foundation.org
12504 L:      netdev@vger.kernel.org
12505 S:      Maintained
12506 F:      include/linux/virtio_vsock.h
12507 F:      include/uapi/linux/virtio_vsock.h
12508 F:      net/vmw_vsock/virtio_transport_common.c
12509 F:      net/vmw_vsock/virtio_transport.c
12510 F:      drivers/vhost/vsock.c
12511 F:      drivers/vhost/vsock.h
12512
12513 VIRTUAL SERIO DEVICE DRIVER
12514 M:      Stephen Chandler Paul <thatslyude@gmail.com>
12515 S:      Maintained
12516 F:      drivers/input/serio/userio.c
12517 F:      include/uapi/linux/userio.h
12518
12519 VIRTIO CONSOLE DRIVER
12520 M:      Amit Shah <amit.shah@redhat.com>
12521 L:      virtualization@lists.linux-foundation.org
12522 S:      Maintained
12523 F:      drivers/char/virtio_console.c
12524 F:      include/linux/virtio_console.h
12525 F:      include/uapi/linux/virtio_console.h
12526
12527 VIRTIO CORE, NET AND BLOCK DRIVERS
12528 M:      "Michael S. Tsirkin" <mst@redhat.com>
12529 L:      virtualization@lists.linux-foundation.org
12530 S:      Maintained
12531 F:      Documentation/devicetree/bindings/virtio/
12532 F:      drivers/virtio/
12533 F:      tools/virtio/
12534 F:      drivers/net/virtio_net.c
12535 F:      drivers/block/virtio_blk.c
12536 F:      include/linux/virtio_*.h
12537 F:      include/uapi/linux/virtio_*.h
12538
12539 VIRTIO DRIVERS FOR S390
12540 M:      Christian Borntraeger <borntraeger@de.ibm.com>
12541 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
12542 L:      linux-s390@vger.kernel.org
12543 L:      virtualization@lists.linux-foundation.org
12544 L:      kvm@vger.kernel.org
12545 S:      Supported
12546 F:      drivers/s390/virtio/
12547
12548 VIRTIO GPU DRIVER
12549 M:      David Airlie <airlied@linux.ie>
12550 M:      Gerd Hoffmann <kraxel@redhat.com>
12551 L:      dri-devel@lists.freedesktop.org
12552 L:      virtualization@lists.linux-foundation.org
12553 S:      Maintained
12554 F:      drivers/gpu/drm/virtio/
12555 F:      include/uapi/linux/virtio_gpu.h
12556
12557 VIRTIO HOST (VHOST)
12558 M:      "Michael S. Tsirkin" <mst@redhat.com>
12559 L:      kvm@vger.kernel.org
12560 L:      virtualization@lists.linux-foundation.org
12561 L:      netdev@vger.kernel.org
12562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12563 S:      Maintained
12564 F:      drivers/vhost/
12565 F:      include/uapi/linux/vhost.h
12566
12567 VIRTIO INPUT DRIVER
12568 M:      Gerd Hoffmann <kraxel@redhat.com>
12569 S:      Maintained
12570 F:      drivers/virtio/virtio_input.c
12571 F:      include/uapi/linux/virtio_input.h
12572
12573 VIA RHINE NETWORK DRIVER
12574 S:      Orphan
12575 F:      drivers/net/ethernet/via/via-rhine.c
12576
12577 VIA SD/MMC CARD CONTROLLER DRIVER
12578 M:      Bruce Chang <brucechang@via.com.tw>
12579 M:      Harald Welte <HaraldWelte@viatech.com>
12580 S:      Maintained
12581 F:      drivers/mmc/host/via-sdmmc.c
12582
12583 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12584 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12585 L:      linux-fbdev@vger.kernel.org
12586 S:      Maintained
12587 F:      include/linux/via-core.h
12588 F:      include/linux/via-gpio.h
12589 F:      include/linux/via_i2c.h
12590 F:      drivers/video/fbdev/via/
12591
12592 VIA VELOCITY NETWORK DRIVER
12593 M:      Francois Romieu <romieu@fr.zoreil.com>
12594 L:      netdev@vger.kernel.org
12595 S:      Maintained
12596 F:      drivers/net/ethernet/via/via-velocity.*
12597
12598 VIRT LIB
12599 M:      Alex Williamson <alex.williamson@redhat.com>
12600 M:      Paolo Bonzini <pbonzini@redhat.com>
12601 L:      kvm@vger.kernel.org
12602 S:      Supported
12603 F:      virt/lib/
12604
12605 VIVID VIRTUAL VIDEO DRIVER
12606 M:      Hans Verkuil <hverkuil@xs4all.nl>
12607 L:      linux-media@vger.kernel.org
12608 T:      git git://linuxtv.org/media_tree.git
12609 W:      https://linuxtv.org
12610 S:      Maintained
12611 F:      drivers/media/platform/vivid/*
12612
12613 VLAN (802.1Q)
12614 M:      Patrick McHardy <kaber@trash.net>
12615 L:      netdev@vger.kernel.org
12616 S:      Maintained
12617 F:      drivers/net/macvlan.c
12618 F:      include/linux/if_*vlan.h
12619 F:      net/8021q/
12620
12621 VLYNQ BUS
12622 M:      Florian Fainelli <f.fainelli@gmail.com>
12623 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12624 S:      Maintained
12625 F:      drivers/vlynq/vlynq.c
12626 F:      include/linux/vlynq.h
12627
12628 VME SUBSYSTEM
12629 M:      Martyn Welch <martyn@welchs.me.uk>
12630 M:      Manohar Vanga <manohar.vanga@gmail.com>
12631 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12632 L:      devel@driverdev.osuosl.org
12633 S:      Maintained
12634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12635 F:      Documentation/vme_api.txt
12636 F:      drivers/staging/vme/
12637 F:      drivers/vme/
12638 F:      include/linux/vme*
12639
12640 VMWARE HYPERVISOR INTERFACE
12641 M:      Alok Kataria <akataria@vmware.com>
12642 L:      virtualization@lists.linux-foundation.org
12643 S:      Supported
12644 F:      arch/x86/kernel/cpu/vmware.c
12645
12646 VMWARE BALLOON DRIVER
12647 M:      Xavier Deguillard <xdeguillard@vmware.com>
12648 M:      Philip Moltmann <moltmann@vmware.com>
12649 M:      "VMware, Inc." <pv-drivers@vmware.com>
12650 L:      linux-kernel@vger.kernel.org
12651 S:      Maintained
12652 F:      drivers/misc/vmw_balloon.c
12653
12654 VMWARE VMMOUSE SUBDRIVER
12655 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12656 M:      "VMware, Inc." <pv-drivers@vmware.com>
12657 L:      linux-input@vger.kernel.org
12658 S:      Maintained
12659 F:      drivers/input/mouse/vmmouse.c
12660 F:      drivers/input/mouse/vmmouse.h
12661
12662 VMWARE VMXNET3 ETHERNET DRIVER
12663 M:      Shrikrishna Khare <skhare@vmware.com>
12664 M:      "VMware, Inc." <pv-drivers@vmware.com>
12665 L:      netdev@vger.kernel.org
12666 S:      Maintained
12667 F:      drivers/net/vmxnet3/
12668
12669 VMware PVSCSI driver
12670 M:      Jim Gill <jgill@vmware.com>
12671 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12672 L:      linux-scsi@vger.kernel.org
12673 S:      Maintained
12674 F:      drivers/scsi/vmw_pvscsi.c
12675 F:      drivers/scsi/vmw_pvscsi.h
12676
12677 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12678 M:      Liam Girdwood <lgirdwood@gmail.com>
12679 M:      Mark Brown <broonie@kernel.org>
12680 L:      linux-kernel@vger.kernel.org
12681 W:      http://www.slimlogic.co.uk/?p=48
12682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12683 S:      Supported
12684 F:      Documentation/devicetree/bindings/regulator/
12685 F:      drivers/regulator/
12686 F:      include/dt-bindings/regulator/
12687 F:      include/linux/regulator/
12688
12689 VRF
12690 M:      David Ahern <dsa@cumulusnetworks.com>
12691 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
12692 L:      netdev@vger.kernel.org
12693 S:      Maintained
12694 F:      drivers/net/vrf.c
12695 F:      Documentation/networking/vrf.txt
12696
12697 VT1211 HARDWARE MONITOR DRIVER
12698 M:      Juerg Haefliger <juergh@gmail.com>
12699 L:      linux-hwmon@vger.kernel.org
12700 S:      Maintained
12701 F:      Documentation/hwmon/vt1211
12702 F:      drivers/hwmon/vt1211.c
12703
12704 VT8231 HARDWARE MONITOR DRIVER
12705 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
12706 L:      linux-hwmon@vger.kernel.org
12707 S:      Maintained
12708 F:      drivers/hwmon/vt8231.c
12709
12710 VUB300 USB to SDIO/SD/MMC bridge chip
12711 M:      Tony Olech <tony.olech@elandigitalsystems.com>
12712 L:      linux-mmc@vger.kernel.org
12713 L:      linux-usb@vger.kernel.org
12714 S:      Supported
12715 F:      drivers/mmc/host/vub300.c
12716
12717 W1 DALLAS'S 1-WIRE BUS
12718 M:      Evgeniy Polyakov <zbr@ioremap.net>
12719 S:      Maintained
12720 F:      Documentation/w1/
12721 F:      drivers/w1/
12722
12723 W83791D HARDWARE MONITORING DRIVER
12724 M:      Marc Hulsman <m.hulsman@tudelft.nl>
12725 L:      linux-hwmon@vger.kernel.org
12726 S:      Maintained
12727 F:      Documentation/hwmon/w83791d
12728 F:      drivers/hwmon/w83791d.c
12729
12730 W83793 HARDWARE MONITORING DRIVER
12731 M:      Rudolf Marek <r.marek@assembler.cz>
12732 L:      linux-hwmon@vger.kernel.org
12733 S:      Maintained
12734 F:      Documentation/hwmon/w83793
12735 F:      drivers/hwmon/w83793.c
12736
12737 W83795 HARDWARE MONITORING DRIVER
12738 M:      Jean Delvare <jdelvare@suse.com>
12739 L:      linux-hwmon@vger.kernel.org
12740 S:      Maintained
12741 F:      drivers/hwmon/w83795.c
12742
12743 W83L51xD SD/MMC CARD INTERFACE DRIVER
12744 M:      Pierre Ossman <pierre@ossman.eu>
12745 S:      Maintained
12746 F:      drivers/mmc/host/wbsd.*
12747
12748 WACOM PROTOCOL 4 SERIAL TABLETS
12749 M:      Julian Squires <julian@cipht.net>
12750 M:      Hans de Goede <hdegoede@redhat.com>
12751 L:      linux-input@vger.kernel.org
12752 S:      Maintained
12753 F:      drivers/input/tablet/wacom_serial4.c
12754
12755 WATCHDOG DEVICE DRIVERS
12756 M:      Wim Van Sebroeck <wim@iguana.be>
12757 R:      Guenter Roeck <linux@roeck-us.net>
12758 L:      linux-watchdog@vger.kernel.org
12759 W:      http://www.linux-watchdog.org/
12760 T:      git git://www.linux-watchdog.org/linux-watchdog.git
12761 S:      Maintained
12762 F:      Documentation/devicetree/bindings/watchdog/
12763 F:      Documentation/watchdog/
12764 F:      drivers/watchdog/
12765 F:      include/linux/watchdog.h
12766 F:      include/uapi/linux/watchdog.h
12767
12768 WD7000 SCSI DRIVER
12769 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
12770 L:      linux-scsi@vger.kernel.org
12771 S:      Maintained
12772 F:      drivers/scsi/wd7000.c
12773
12774 WIIMOTE HID DRIVER
12775 M:      David Herrmann <dh.herrmann@googlemail.com>
12776 L:      linux-input@vger.kernel.org
12777 S:      Maintained
12778 F:      drivers/hid/hid-wiimote*
12779
12780 WINBOND CIR DRIVER
12781 M:      David Härdeman <david@hardeman.nu>
12782 S:      Maintained
12783 F:      drivers/media/rc/winbond-cir.c
12784
12785 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12786 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12787 L:      linux-watchdog@vger.kernel.org
12788 S:      Maintained
12789 F:      drivers/watchdog/ebc-c384_wdt.c
12790
12791 WINSYSTEMS WS16C48 GPIO DRIVER
12792 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12793 L:      linux-gpio@vger.kernel.org
12794 S:      Maintained
12795 F:      drivers/gpio/gpio-ws16c48.c
12796
12797 WIMAX STACK
12798 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
12799 M:      linux-wimax@intel.com
12800 L:      wimax@linuxwimax.org (subscribers-only)
12801 S:      Supported
12802 W:      http://linuxwimax.org
12803 F:      Documentation/wimax/README.wimax
12804 F:      include/linux/wimax/debug.h
12805 F:      include/net/wimax.h
12806 F:      include/uapi/linux/wimax.h
12807 F:      net/wimax/
12808
12809 WISTRON LAPTOP BUTTON DRIVER
12810 M:      Miloslav Trmac <mitr@volny.cz>
12811 S:      Maintained
12812 F:      drivers/input/misc/wistron_btns.c
12813
12814 WL3501 WIRELESS PCMCIA CARD DRIVER
12815 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
12816 L:      linux-wireless@vger.kernel.org
12817 W:      http://oops.ghostprotocols.net:81/blog
12818 S:      Maintained
12819 F:      drivers/net/wireless/wl3501*
12820
12821 WOLFSON MICROELECTRONICS DRIVERS
12822 L:      patches@opensource.wolfsonmicro.com
12823 T:      git https://github.com/CirrusLogic/linux-drivers.git
12824 W:      https://github.com/CirrusLogic/linux-drivers/wiki
12825 S:      Supported
12826 F:      Documentation/hwmon/wm83??
12827 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12828 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12829 F:      Documentation/devicetree/bindings/mfd/arizona.txt
12830 F:      arch/arm/mach-s3c64xx/mach-crag6410*
12831 F:      drivers/clk/clk-wm83*.c
12832 F:      drivers/extcon/extcon-arizona.c
12833 F:      drivers/leds/leds-wm83*.c
12834 F:      drivers/gpio/gpio-*wm*.c
12835 F:      drivers/gpio/gpio-arizona.c
12836 F:      drivers/hwmon/wm83??-hwmon.c
12837 F:      drivers/input/misc/wm831x-on.c
12838 F:      drivers/input/touchscreen/wm831x-ts.c
12839 F:      drivers/input/touchscreen/wm97*.c
12840 F:      drivers/mfd/arizona*
12841 F:      drivers/mfd/wm*.c
12842 F:      drivers/mfd/cs47l24*
12843 F:      drivers/power/wm83*.c
12844 F:      drivers/rtc/rtc-wm83*.c
12845 F:      drivers/regulator/wm8*.c
12846 F:      drivers/video/backlight/wm83*_bl.c
12847 F:      drivers/watchdog/wm83*_wdt.c
12848 F:      include/linux/mfd/arizona/
12849 F:      include/linux/mfd/wm831x/
12850 F:      include/linux/mfd/wm8350/
12851 F:      include/linux/mfd/wm8400*
12852 F:      include/linux/wm97xx.h
12853 F:      include/sound/wm????.h
12854 F:      sound/soc/codecs/arizona.?
12855 F:      sound/soc/codecs/wm*
12856 F:      sound/soc/codecs/cs47l24*
12857
12858 WORKQUEUE
12859 M:      Tejun Heo <tj@kernel.org>
12860 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12862 S:      Maintained
12863 F:      include/linux/workqueue.h
12864 F:      kernel/workqueue.c
12865 F:      Documentation/workqueue.txt
12866
12867 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
12868 M:      Chen-Yu Tsai <wens@csie.org>
12869 L:      linux-kernel@vger.kernel.org
12870 S:      Maintained
12871 N:      axp[128]
12872
12873 X.25 NETWORK LAYER
12874 M:      Andrew Hendry <andrew.hendry@gmail.com>
12875 L:      linux-x25@vger.kernel.org
12876 S:      Odd Fixes
12877 F:      Documentation/networking/x25*
12878 F:      include/net/x25*
12879 F:      net/x25/
12880
12881 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12882 M:      Thomas Gleixner <tglx@linutronix.de>
12883 M:      Ingo Molnar <mingo@redhat.com>
12884 M:      "H. Peter Anvin" <hpa@zytor.com>
12885 M:      x86@kernel.org
12886 L:      linux-kernel@vger.kernel.org
12887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12888 S:      Maintained
12889 F:      Documentation/x86/
12890 F:      arch/x86/
12891
12892 X86 PLATFORM DRIVERS
12893 M:      Darren Hart <dvhart@infradead.org>
12894 L:      platform-driver-x86@vger.kernel.org
12895 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12896 S:      Maintained
12897 F:      drivers/platform/x86/
12898 F:      drivers/platform/olpc/
12899
12900 X86 MCE INFRASTRUCTURE
12901 M:      Tony Luck <tony.luck@intel.com>
12902 M:      Borislav Petkov <bp@alien8.de>
12903 L:      linux-edac@vger.kernel.org
12904 S:      Maintained
12905 F:      arch/x86/kernel/cpu/mcheck/*
12906
12907 X86 MICROCODE UPDATE SUPPORT
12908 M:      Borislav Petkov <bp@alien8.de>
12909 S:      Maintained
12910 F:      arch/x86/kernel/cpu/microcode/*
12911
12912 X86 VDSO
12913 M:      Andy Lutomirski <luto@amacapital.net>
12914 L:      linux-kernel@vger.kernel.org
12915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12916 S:      Maintained
12917 F:      arch/x86/entry/vdso/
12918
12919 XC2028/3028 TUNER DRIVER
12920 M:      Mauro Carvalho Chehab <mchehab@s-opensource.com>
12921 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12922 L:      linux-media@vger.kernel.org
12923 W:      https://linuxtv.org
12924 T:      git git://linuxtv.org/media_tree.git
12925 S:      Maintained
12926 F:      drivers/media/tuners/tuner-xc2028.*
12927
12928 XEN HYPERVISOR INTERFACE
12929 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12930 M:      David Vrabel <david.vrabel@citrix.com>
12931 M:      Juergen Gross <jgross@suse.com>
12932 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12934 S:      Supported
12935 F:      arch/x86/xen/
12936 F:      drivers/*/xen-*front.c
12937 F:      drivers/xen/
12938 F:      arch/x86/include/asm/xen/
12939 F:      include/xen/
12940 F:      include/uapi/xen/
12941
12942 XEN HYPERVISOR ARM
12943 M:      Stefano Stabellini <sstabellini@kernel.org>
12944 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12945 S:      Maintained
12946 F:      arch/arm/xen/
12947 F:      arch/arm/include/asm/xen/
12948
12949 XEN HYPERVISOR ARM64
12950 M:      Stefano Stabellini <sstabellini@kernel.org>
12951 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12952 S:      Maintained
12953 F:      arch/arm64/xen/
12954 F:      arch/arm64/include/asm/xen/
12955
12956 XEN NETWORK BACKEND DRIVER
12957 M:      Wei Liu <wei.liu2@citrix.com>
12958 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12959 L:      netdev@vger.kernel.org
12960 S:      Supported
12961 F:      drivers/net/xen-netback/*
12962
12963 XEN PCI SUBSYSTEM
12964 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12965 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12966 S:      Supported
12967 F:      arch/x86/pci/*xen*
12968 F:      drivers/pci/*xen*
12969
12970 XEN BLOCK SUBSYSTEM
12971 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12972 M:      Roger Pau Monné <roger.pau@citrix.com>
12973 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12974 S:      Supported
12975 F:      drivers/block/xen-blkback/*
12976 F:      drivers/block/xen*
12977
12978 XEN PVSCSI DRIVERS
12979 M:      Juergen Gross <jgross@suse.com>
12980 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12981 L:      linux-scsi@vger.kernel.org
12982 S:      Supported
12983 F:      drivers/scsi/xen-scsifront.c
12984 F:      drivers/xen/xen-scsiback.c
12985 F:      include/xen/interface/io/vscsiif.h
12986
12987 XEN SWIOTLB SUBSYSTEM
12988 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12989 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12990 S:      Supported
12991 F:      arch/x86/xen/*swiotlb*
12992 F:      drivers/xen/*swiotlb*
12993
12994 XFS FILESYSTEM
12995 P:      Silicon Graphics Inc
12996 M:      Dave Chinner <david@fromorbit.com>
12997 M:      xfs@oss.sgi.com
12998 L:      xfs@oss.sgi.com
12999 W:      http://oss.sgi.com/projects/xfs
13000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
13001 S:      Supported
13002 F:      Documentation/filesystems/xfs.txt
13003 F:      fs/xfs/
13004
13005 XILINX AXI ETHERNET DRIVER
13006 M:      Anirudha Sarangi <anirudh@xilinx.com>
13007 M:      John Linn <John.Linn@xilinx.com>
13008 S:      Maintained
13009 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
13010
13011 XILINX UARTLITE SERIAL DRIVER
13012 M:      Peter Korsgaard <jacmet@sunsite.dk>
13013 L:      linux-serial@vger.kernel.org
13014 S:      Maintained
13015 F:      drivers/tty/serial/uartlite.c
13016
13017 XILINX VIDEO IP CORES
13018 M:      Hyun Kwon <hyun.kwon@xilinx.com>
13019 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13020 L:      linux-media@vger.kernel.org
13021 T:      git git://linuxtv.org/media_tree.git
13022 S:      Supported
13023 F:      Documentation/devicetree/bindings/media/xilinx/
13024 F:      drivers/media/platform/xilinx/
13025 F:      include/uapi/linux/xilinx-v4l2-controls.h
13026
13027 XILLYBUS DRIVER
13028 M:      Eli Billauer <eli.billauer@gmail.com>
13029 L:      linux-kernel@vger.kernel.org
13030 S:      Supported
13031 F:      drivers/char/xillybus/
13032
13033 XTENSA XTFPGA PLATFORM SUPPORT
13034 M:      Max Filippov <jcmvbkbc@gmail.com>
13035 L:      linux-xtensa@linux-xtensa.org
13036 S:      Maintained
13037 F:      drivers/spi/spi-xtensa-xtfpga.c
13038 F:      sound/soc/xtensa/xtfpga-i2s.c
13039
13040 YAM DRIVER FOR AX.25
13041 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
13042 L:      linux-hams@vger.kernel.org
13043 S:      Maintained
13044 F:      drivers/net/hamradio/yam*
13045 F:      include/linux/yam.h
13046
13047 YEALINK PHONE DRIVER
13048 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
13049 L:      usbb2k-api-dev@nongnu.org
13050 S:      Maintained
13051 F:      Documentation/input/yealink.txt
13052 F:      drivers/input/misc/yealink.*
13053
13054 Z8530 DRIVER FOR AX.25
13055 M:      Joerg Reuter <jreuter@yaina.de>
13056 W:      http://yaina.de/jreuter/
13057 W:      http://www.qsl.net/dl1bke/
13058 L:      linux-hams@vger.kernel.org
13059 S:      Maintained
13060 F:      Documentation/networking/z8530drv.txt
13061 F:      drivers/net/hamradio/*scc.c
13062 F:      drivers/net/hamradio/z8530.h
13063
13064 ZBUD COMPRESSED PAGE ALLOCATOR
13065 M:      Seth Jennings <sjenning@redhat.com>
13066 L:      linux-mm@kvack.org
13067 S:      Maintained
13068 F:      mm/zbud.c
13069 F:      include/linux/zbud.h
13070
13071 ZD1211RW WIRELESS DRIVER
13072 M:      Daniel Drake <dsd@gentoo.org>
13073 M:      Ulrich Kunitz <kune@deine-taler.de>
13074 W:      http://zd1211.ath.cx/wiki/DriverRewrite
13075 L:      linux-wireless@vger.kernel.org
13076 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
13077 S:      Maintained
13078 F:      drivers/net/wireless/zydas/zd1211rw/
13079
13080 ZPOOL COMPRESSED PAGE STORAGE API
13081 M:      Dan Streetman <ddstreet@ieee.org>
13082 L:      linux-mm@kvack.org
13083 S:      Maintained
13084 F:      mm/zpool.c
13085 F:      include/linux/zpool.h
13086
13087 ZR36067 VIDEO FOR LINUX DRIVER
13088 L:      mjpeg-users@lists.sourceforge.net
13089 L:      linux-media@vger.kernel.org
13090 W:      http://mjpeg.sourceforge.net/driver-zoran/
13091 T:      hg https://linuxtv.org/hg/v4l-dvb
13092 S:      Odd Fixes
13093 F:      drivers/media/pci/zoran/
13094
13095 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
13096 M:      Minchan Kim <minchan@kernel.org>
13097 M:      Nitin Gupta <ngupta@vflare.org>
13098 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
13099 L:      linux-kernel@vger.kernel.org
13100 S:      Maintained
13101 F:      drivers/block/zram/
13102 F:      Documentation/blockdev/zram.txt
13103
13104 ZS DECSTATION Z85C30 SERIAL DRIVER
13105 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
13106 S:      Maintained
13107 F:      drivers/tty/serial/zs.*
13108
13109 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
13110 M:      Minchan Kim <minchan@kernel.org>
13111 M:      Nitin Gupta <ngupta@vflare.org>
13112 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
13113 L:      linux-mm@kvack.org
13114 S:      Maintained
13115 F:      mm/zsmalloc.c
13116 F:      include/linux/zsmalloc.h
13117 F:      Documentation/vm/zsmalloc.txt
13118
13119 ZSWAP COMPRESSED SWAP CACHING
13120 M:      Seth Jennings <sjenning@redhat.com>
13121 L:      linux-mm@kvack.org
13122 S:      Maintained
13123 F:      mm/zswap.c
13124
13125 THE REST
13126 M:      Linus Torvalds <torvalds@linux-foundation.org>
13127 L:      linux-kernel@vger.kernel.org
13128 Q:      http://patchwork.kernel.org/project/LKML/list/
13129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
13130 S:      Buried alive in reporters
13131 F:      *
13132 F:      */