MAINTAINERS: add co-maintainer for scripts/gdb
[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@adaptec.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:      drivers/pci/*acpi*
292 F:      drivers/pci/*/*acpi*
293 F:      drivers/pci/*/*/*acpi*
294 F:      tools/power/acpi/
295
296 ACPI COMPONENT ARCHITECTURE (ACPICA)
297 M:      Robert Moore <robert.moore@intel.com>
298 M:      Lv Zheng <lv.zheng@intel.com>
299 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
300 L:      linux-acpi@vger.kernel.org
301 L:      devel@acpica.org
302 W:      https://acpica.org/
303 W:      https://github.com/acpica/acpica/
304 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
306 S:      Supported
307 F:      drivers/acpi/acpica/
308 F:      include/acpi/
309 F:      tools/power/acpi/
310
311 ACPI FAN DRIVER
312 M:      Zhang Rui <rui.zhang@intel.com>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 S:      Supported
316 F:      drivers/acpi/fan.c
317
318 ACPI THERMAL DRIVER
319 M:      Zhang Rui <rui.zhang@intel.com>
320 L:      linux-acpi@vger.kernel.org
321 W:      https://01.org/linux-acpi
322 S:      Supported
323 F:      drivers/acpi/*thermal*
324
325 ACPI VIDEO DRIVER
326 M:      Zhang Rui <rui.zhang@intel.com>
327 L:      linux-acpi@vger.kernel.org
328 W:      https://01.org/linux-acpi
329 S:      Supported
330 F:      drivers/acpi/acpi_video.c
331
332 ACPI WMI DRIVER
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Orphan
335 F:      drivers/platform/x86/wmi.c
336
337 AD1889 ALSA SOUND DRIVER
338 M:      Thibaut Varene <T-Bone@parisc-linux.org>
339 W:      http://wiki.parisc-linux.org/AD1889
340 L:      linux-parisc@vger.kernel.org
341 S:      Maintained
342 F:      sound/pci/ad1889.*
343
344 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
345 M:      Michael Hennerich <michael.hennerich@analog.com>
346 W:      http://wiki.analog.com/AD5254
347 W:      http://ez.analog.com/community/linux-device-drivers
348 S:      Supported
349 F:      drivers/misc/ad525x_dpot.c
350
351 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
352 M:      Michael Hennerich <michael.hennerich@analog.com>
353 W:      http://wiki.analog.com/AD5398
354 W:      http://ez.analog.com/community/linux-device-drivers
355 S:      Supported
356 F:      drivers/regulator/ad5398.c
357
358 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
359 M:      Michael Hennerich <michael.hennerich@analog.com>
360 W:      http://wiki.analog.com/AD7142
361 W:      http://ez.analog.com/community/linux-device-drivers
362 S:      Supported
363 F:      drivers/input/misc/ad714x.c
364
365 AD7877 TOUCHSCREEN DRIVER
366 M:      Michael Hennerich <michael.hennerich@analog.com>
367 W:      http://wiki.analog.com/AD7877
368 W:      http://ez.analog.com/community/linux-device-drivers
369 S:      Supported
370 F:      drivers/input/touchscreen/ad7877.c
371
372 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
373 M:      Michael Hennerich <michael.hennerich@analog.com>
374 W:      http://wiki.analog.com/AD7879
375 W:      http://ez.analog.com/community/linux-device-drivers
376 S:      Supported
377 F:      drivers/input/touchscreen/ad7879.c
378
379 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
380 M:      Jiri Kosina <jikos@kernel.org>
381 S:      Maintained
382
383 ADF7242 IEEE 802.15.4 RADIO DRIVER
384 M:      Michael Hennerich <michael.hennerich@analog.com>
385 W:      https://wiki.analog.com/ADF7242
386 W:      http://ez.analog.com/community/linux-device-drivers
387 L:      linux-wpan@vger.kernel.org
388 S:      Supported
389 F:      drivers/net/ieee802154/adf7242.c
390 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
391
392 ADM1025 HARDWARE MONITOR DRIVER
393 M:      Jean Delvare <jdelvare@suse.com>
394 L:      linux-hwmon@vger.kernel.org
395 S:      Maintained
396 F:      Documentation/hwmon/adm1025
397 F:      drivers/hwmon/adm1025.c
398
399 ADM1029 HARDWARE MONITOR DRIVER
400 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
401 L:      linux-hwmon@vger.kernel.org
402 S:      Maintained
403 F:      drivers/hwmon/adm1029.c
404
405 ADM8211 WIRELESS DRIVER
406 L:      linux-wireless@vger.kernel.org
407 W:      http://wireless.kernel.org/
408 S:      Orphan
409 F:      drivers/net/wireless/admtek/adm8211.*
410
411 ADP1653 FLASH CONTROLLER DRIVER
412 M:      Sakari Ailus <sakari.ailus@iki.fi>
413 L:      linux-media@vger.kernel.org
414 S:      Maintained
415 F:      drivers/media/i2c/adp1653.c
416 F:      include/media/i2c/adp1653.h
417
418 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/ADP5520
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/mfd/adp5520.c
424 F:      drivers/video/backlight/adp5520_bl.c
425 F:      drivers/leds/leds-adp5520.c
426 F:      drivers/gpio/gpio-adp5520.c
427 F:      drivers/input/keyboard/adp5520-keys.c
428
429 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
430 M:      Michael Hennerich <michael.hennerich@analog.com>
431 W:      http://wiki.analog.com/ADP5588
432 W:      http://ez.analog.com/community/linux-device-drivers
433 S:      Supported
434 F:      drivers/input/keyboard/adp5588-keys.c
435 F:      drivers/gpio/gpio-adp5588.c
436
437 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
438 M:      Michael Hennerich <michael.hennerich@analog.com>
439 W:      http://wiki.analog.com/ADP8860
440 W:      http://ez.analog.com/community/linux-device-drivers
441 S:      Supported
442 F:      drivers/video/backlight/adp8860_bl.c
443
444 ADS1015 HARDWARE MONITOR DRIVER
445 M:      Dirk Eibach <eibach@gdsys.de>
446 L:      linux-hwmon@vger.kernel.org
447 S:      Maintained
448 F:      Documentation/hwmon/ads1015
449 F:      drivers/hwmon/ads1015.c
450 F:      include/linux/i2c/ads1015.h
451
452 ADT746X FAN DRIVER
453 M:      Colin Leroy <colin@colino.net>
454 S:      Maintained
455 F:      drivers/macintosh/therm_adt746x.c
456
457 ADT7475 HARDWARE MONITOR DRIVER
458 M:      Jean Delvare <jdelvare@suse.com>
459 L:      linux-hwmon@vger.kernel.org
460 S:      Maintained
461 F:      Documentation/hwmon/adt7475
462 F:      drivers/hwmon/adt7475.c
463
464 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
465 M:      Michael Hennerich <michael.hennerich@analog.com>
466 W:      http://wiki.analog.com/ADXL345
467 W:      http://ez.analog.com/community/linux-device-drivers
468 S:      Supported
469 F:      drivers/input/misc/adxl34x.c
470
471 ADVANSYS SCSI DRIVER
472 M:      Matthew Wilcox <matthew@wil.cx>
473 M:      Hannes Reinecke <hare@suse.com>
474 L:      linux-scsi@vger.kernel.org
475 S:      Maintained
476 F:      Documentation/scsi/advansys.txt
477 F:      drivers/scsi/advansys.c
478
479 AEDSP16 DRIVER
480 M:      Riccardo Facchetti <fizban@tin.it>
481 S:      Maintained
482 F:      sound/oss/aedsp16.c
483
484 AF9013 MEDIA DRIVER
485 M:      Antti Palosaari <crope@iki.fi>
486 L:      linux-media@vger.kernel.org
487 W:      https://linuxtv.org
488 W:      http://palosaari.fi/linux/
489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
490 T:      git git://linuxtv.org/anttip/media_tree.git
491 S:      Maintained
492 F:      drivers/media/dvb-frontends/af9013*
493
494 AF9033 MEDIA DRIVER
495 M:      Antti Palosaari <crope@iki.fi>
496 L:      linux-media@vger.kernel.org
497 W:      https://linuxtv.org
498 W:      http://palosaari.fi/linux/
499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
500 T:      git git://linuxtv.org/anttip/media_tree.git
501 S:      Maintained
502 F:      drivers/media/dvb-frontends/af9033*
503
504 AFFS FILE SYSTEM
505 L:      linux-fsdevel@vger.kernel.org
506 S:      Orphan
507 F:      Documentation/filesystems/affs.txt
508 F:      fs/affs/
509
510 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
511 M:      David Howells <dhowells@redhat.com>
512 L:      linux-afs@lists.infradead.org
513 S:      Supported
514 F:      fs/afs/
515 F:      include/net/af_rxrpc.h
516 F:      net/rxrpc/af_rxrpc.c
517
518 AGPGART DRIVER
519 M:      David Airlie <airlied@linux.ie>
520 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
521 S:      Maintained
522 F:      drivers/char/agp/
523 F:      include/linux/agp*
524 F:      include/uapi/linux/agp*
525
526 AHA152X SCSI DRIVER
527 M:      "Juergen E. Fischer" <fischer@norbit.de>
528 L:      linux-scsi@vger.kernel.org
529 S:      Maintained
530 F:      drivers/scsi/aha152x*
531 F:      drivers/scsi/pcmcia/aha152x*
532
533 AIC7XXX / AIC79XX SCSI DRIVER
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      drivers/scsi/aic7xxx/
538
539 AIMSLAB FM RADIO RECEIVER DRIVER
540 M:      Hans Verkuil <hverkuil@xs4all.nl>
541 L:      linux-media@vger.kernel.org
542 T:      git git://linuxtv.org/media_tree.git
543 W:      https://linuxtv.org
544 S:      Maintained
545 F:      drivers/media/radio/radio-aimslab*
546
547 AIO
548 M:      Benjamin LaHaise <bcrl@kvack.org>
549 L:      linux-aio@kvack.org
550 S:      Supported
551 F:      fs/aio.c
552 F:      include/linux/*aio*.h
553
554 AIRSPY MEDIA DRIVER
555 M:      Antti Palosaari <crope@iki.fi>
556 L:      linux-media@vger.kernel.org
557 W:      https://linuxtv.org
558 W:      http://palosaari.fi/linux/
559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
560 T:      git git://linuxtv.org/anttip/media_tree.git
561 S:      Maintained
562 F:      drivers/media/usb/airspy/
563
564 ALCATEL SPEEDTOUCH USB DRIVER
565 M:      Duncan Sands <duncan.sands@free.fr>
566 L:      linux-usb@vger.kernel.org
567 W:      http://www.linux-usb.org/SpeedTouch/
568 S:      Maintained
569 F:      drivers/usb/atm/speedtch.c
570 F:      drivers/usb/atm/usbatm.c
571
572 ALCHEMY AU1XX0 MMC DRIVER
573 M:      Manuel Lauss <manuel.lauss@gmail.com>
574 S:      Maintained
575 F:      drivers/mmc/host/au1xmmc.c
576
577 ALI1563 I2C DRIVER
578 M:      Rudolf Marek <r.marek@assembler.cz>
579 L:      linux-i2c@vger.kernel.org
580 S:      Maintained
581 F:      Documentation/i2c/busses/i2c-ali1563
582 F:      drivers/i2c/busses/i2c-ali1563.c
583
584 ALLWINNER SECURITY SYSTEM
585 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
586 L:      linux-crypto@vger.kernel.org
587 S:      Maintained
588 F:      drivers/crypto/sunxi-ss/
589
590 ALPHA PORT
591 M:      Richard Henderson <rth@twiddle.net>
592 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
593 M:      Matt Turner <mattst88@gmail.com>
594 S:      Odd Fixes
595 L:      linux-alpha@vger.kernel.org
596 F:      arch/alpha/
597
598 ALTERA MAILBOX DRIVER
599 M:      Ley Foon Tan <lftan@altera.com>
600 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
601 S:      Maintained
602 F:      drivers/mailbox/mailbox-altera.c
603
604 ALTERA PIO DRIVER
605 M:      Tien Hock Loh <thloh@altera.com>
606 L:      linux-gpio@vger.kernel.org
607 S:      Maintained
608 F:      drivers/gpio/gpio-altera.c
609
610 ALTERA TRIPLE SPEED ETHERNET DRIVER
611 M:      Vince Bridgers <vbridger@opensource.altera.com>
612 L:      netdev@vger.kernel.org
613 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
614 S:      Maintained
615 F:      drivers/net/ethernet/altera/
616
617 ALTERA UART/JTAG UART SERIAL DRIVERS
618 M:      Tobias Klauser <tklauser@distanz.ch>
619 L:      linux-serial@vger.kernel.org
620 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
621 S:      Maintained
622 F:      drivers/tty/serial/altera_uart.c
623 F:      drivers/tty/serial/altera_jtaguart.c
624 F:      include/linux/altera_uart.h
625 F:      include/linux/altera_jtaguart.h
626
627 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
628 M:      Tom Lendacky <thomas.lendacky@amd.com>
629 M:      Gary Hook <gary.hook@amd.com>
630 L:      linux-crypto@vger.kernel.org
631 S:      Supported
632 F:      drivers/crypto/ccp/
633 F:      include/linux/ccp.h
634
635 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
636 M:      Huang Rui <ray.huang@amd.com>
637 L:      linux-hwmon@vger.kernel.org
638 S:      Supported
639 F:      Documentation/hwmon/fam15h_power
640 F:      drivers/hwmon/fam15h_power.c
641
642 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 S:      Orphan
645 F:      drivers/usb/gadget/udc/amd5536udc.*
646
647 AMD GEODE PROCESSOR/CHIPSET SUPPORT
648 P:      Andres Salomon <dilinger@queued.net>
649 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
650 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
651 S:      Supported
652 F:      drivers/char/hw_random/geode-rng.c
653 F:      drivers/crypto/geode*
654 F:      drivers/video/fbdev/geode/
655 F:      arch/x86/include/asm/geode.h
656
657 AMD IOMMU (AMD-VI)
658 M:      Joerg Roedel <joro@8bytes.org>
659 L:      iommu@lists.linux-foundation.org
660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
661 S:      Maintained
662 F:      drivers/iommu/amd_iommu*.[ch]
663 F:      include/linux/amd-iommu.h
664
665 AMD KFD
666 M:      Oded Gabbay <oded.gabbay@gmail.com>
667 L:      dri-devel@lists.freedesktop.org
668 T:      git git://people.freedesktop.org/~gabbayo/linux.git
669 S:      Supported
670 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
671 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
672 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
673 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
674 F:      drivers/gpu/drm/amd/amdkfd/
675 F:      drivers/gpu/drm/amd/include/cik_structs.h
676 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
677 F:      drivers/gpu/drm/amd/include/vi_structs.h
678 F:      drivers/gpu/drm/radeon/radeon_kfd.c
679 F:      drivers/gpu/drm/radeon/radeon_kfd.h
680 F:      include/uapi/linux/kfd_ioctl.h
681
682 AMD SEATTLE DEVICE TREE SUPPORT
683 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
684 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
685 M:      Tom Lendacky <thomas.lendacky@amd.com>
686 S:      Supported
687 F:      arch/arm64/boot/dts/amd/
688
689 AMD XGBE DRIVER
690 M:      Tom Lendacky <thomas.lendacky@amd.com>
691 L:      netdev@vger.kernel.org
692 S:      Supported
693 F:      drivers/net/ethernet/amd/xgbe/
694 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
695
696 AMS (Apple Motion Sensor) DRIVER
697 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
698 S:      Supported
699 F:      drivers/macintosh/ams/
700
701 ANALOG DEVICES INC AD9389B DRIVER
702 M:      Hans Verkuil <hans.verkuil@cisco.com>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 F:      drivers/media/i2c/ad9389b*
706
707 ANALOG DEVICES INC ADV7180 DRIVER
708 M:      Lars-Peter Clausen <lars@metafoo.de>
709 L:      linux-media@vger.kernel.org
710 W:      http://ez.analog.com/community/linux-device-drivers
711 S:      Supported
712 F:      drivers/media/i2c/adv7180.c
713
714 ANALOG DEVICES INC ADV7511 DRIVER
715 M:      Hans Verkuil <hans.verkuil@cisco.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/media/i2c/adv7511*
719
720 ANALOG DEVICES INC ADV7604 DRIVER
721 M:      Hans Verkuil <hans.verkuil@cisco.com>
722 L:      linux-media@vger.kernel.org
723 S:      Maintained
724 F:      drivers/media/i2c/adv7604*
725
726 ANALOG DEVICES INC ADV7842 DRIVER
727 M:      Hans Verkuil <hans.verkuil@cisco.com>
728 L:      linux-media@vger.kernel.org
729 S:      Maintained
730 F:      drivers/media/i2c/adv7842*
731
732 ANALOG DEVICES INC ASOC CODEC DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      sound/soc/codecs/adau*
739 F:      sound/soc/codecs/adav*
740 F:      sound/soc/codecs/ad1*
741 F:      sound/soc/codecs/ad7*
742 F:      sound/soc/codecs/ssm*
743 F:      sound/soc/codecs/sigmadsp.*
744
745 ANALOG DEVICES INC ASOC DRIVERS
746 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
748 W:      http://blackfin.uclinux.org/
749 S:      Supported
750 F:      sound/soc/blackfin/*
751
752 ANALOG DEVICES INC IIO DRIVERS
753 M:      Lars-Peter Clausen <lars@metafoo.de>
754 M:      Michael Hennerich <Michael.Hennerich@analog.com>
755 W:      http://wiki.analog.com/
756 W:      http://ez.analog.com/community/linux-device-drivers
757 S:      Supported
758 F:      drivers/iio/*/ad*
759 X:      drivers/iio/*/adjd*
760 F:      drivers/staging/iio/*/ad*
761 F:      staging/iio/trigger/iio-trig-bfin-timer.c
762
763 ANALOG DEVICES INC DMA DRIVERS
764 M:      Lars-Peter Clausen <lars@metafoo.de>
765 W:      http://ez.analog.com/community/linux-device-drivers
766 S:      Supported
767 F:      drivers/dma/dma-axi-dmac.c
768
769 ANDROID DRIVERS
770 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
771 M:      Arve Hjønnevåg <arve@android.com>
772 M:      Riley Andrews <riandrews@android.com>
773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
774 L:      devel@driverdev.osuosl.org
775 S:      Supported
776 F:      drivers/android/
777 F:      drivers/staging/android/
778
779 ANDROID ION DRIVER
780 M:      Laura Abbott <labbott@redhat.com>
781 M:      Sumit Semwal <sumit.semwal@linaro.org>
782 L:      devel@driverdev.osuosl.org
783 S:      Supported
784 F:      drivers/staging/android/ion
785 F:      drivers/staging/android/uapi/ion.h
786 F:      drivers/staging/android/uapi/ion_test.h
787
788 AOA (Apple Onboard Audio) ALSA DRIVER
789 M:      Johannes Berg <johannes@sipsolutions.net>
790 L:      linuxppc-dev@lists.ozlabs.org
791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
792 S:      Maintained
793 F:      sound/aoa/
794
795 APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
796 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
797 L:      linux-iio@vger.kernel.org
798 S:      Maintained
799 F:      drivers/iio/dac/stx104.c
800
801 APM DRIVER
802 M:      Jiri Kosina <jikos@kernel.org>
803 S:      Odd fixes
804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
805 F:      arch/x86/kernel/apm_32.c
806 F:      include/linux/apm_bios.h
807 F:      include/uapi/linux/apm_bios.h
808 F:      drivers/char/apm-emulation.c
809
810 APPLE BCM5974 MULTITOUCH DRIVER
811 M:      Henrik Rydberg <rydberg@bitmath.org>
812 L:      linux-input@vger.kernel.org
813 S:      Odd fixes
814 F:      drivers/input/mouse/bcm5974.c
815
816 APPLE SMC DRIVER
817 M:      Henrik Rydberg <rydberg@bitmath.org>
818 L:      linux-hwmon@vger.kernel.org
819 S:      Odd fixes
820 F:      drivers/hwmon/applesmc.c
821
822 APPLETALK NETWORK LAYER
823 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
824 S:      Maintained
825 F:      drivers/net/appletalk/
826 F:      net/appletalk/
827
828 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
829 M:      Duc Dang <dhdang@apm.com>
830 S:      Supported
831 F:      arch/arm64/boot/dts/apm/
832
833 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
834 M:      Iyappan Subramanian <isubramanian@apm.com>
835 M:      Keyur Chudgar <kchudgar@apm.com>
836 S:      Supported
837 F:      drivers/net/ethernet/apm/xgene/
838 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
839
840 APTINA CAMERA SENSOR PLL
841 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
842 L:      linux-media@vger.kernel.org
843 S:      Maintained
844 F:      drivers/media/i2c/aptina-pll.*
845
846 ARC FRAMEBUFFER DRIVER
847 M:      Jaya Kumar <jayalk@intworks.biz>
848 S:      Maintained
849 F:      drivers/video/fbdev/arcfb.c
850 F:      drivers/video/fbdev/core/fb_defio.c
851
852 ARCNET NETWORK LAYER
853 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
854 L:      netdev@vger.kernel.org
855 S:      Maintained
856 F:      drivers/net/arcnet/
857 F:      include/uapi/linux/if_arcnet.h
858
859 ARM HDLCD DRM DRIVER
860 M:      Liviu Dudau <liviu.dudau@arm.com>
861 S:      Supported
862 F:      drivers/gpu/drm/arm/
863 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
864
865 ARM MFM AND FLOPPY DRIVERS
866 M:      Ian Molton <spyro@f2s.com>
867 S:      Maintained
868 F:      arch/arm/lib/floppydma.S
869 F:      arch/arm/include/asm/floppy.h
870
871 ARM PMU PROFILING AND DEBUGGING
872 M:      Will Deacon <will.deacon@arm.com>
873 R:      Mark Rutland <mark.rutland@arm.com>
874 S:      Maintained
875 F:      arch/arm*/kernel/perf_*
876 F:      arch/arm/oprofile/common.c
877 F:      arch/arm*/kernel/hw_breakpoint.c
878 F:      arch/arm*/include/asm/hw_breakpoint.h
879 F:      arch/arm*/include/asm/perf_event.h
880 F:      drivers/perf/arm_pmu.c
881 F:      include/linux/perf/arm_pmu.h
882
883 ARM PORT
884 M:      Russell King <linux@armlinux.org.uk>
885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
886 W:      http://www.armlinux.org.uk/
887 S:      Maintained
888 F:      arch/arm/
889
890 ARM SUB-ARCHITECTURES
891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
892 S:      Maintained
893 F:      arch/arm/mach-*/
894 F:      arch/arm/plat-*/
895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
896
897 ARM PRIMECELL AACI PL041 DRIVER
898 M:      Russell King <linux@armlinux.org.uk>
899 S:      Maintained
900 F:      sound/arm/aaci.*
901
902 ARM PRIMECELL CLCD PL110 DRIVER
903 M:      Russell King <linux@armlinux.org.uk>
904 S:      Maintained
905 F:      drivers/video/fbdev/amba-clcd.*
906
907 ARM PRIMECELL KMI PL050 DRIVER
908 M:      Russell King <linux@armlinux.org.uk>
909 S:      Maintained
910 F:      drivers/input/serio/ambakmi.*
911 F:      include/linux/amba/kmi.h
912
913 ARM PRIMECELL MMCI PL180/1 DRIVER
914 M:      Russell King <linux@armlinux.org.uk>
915 S:      Maintained
916 F:      drivers/mmc/host/mmci.*
917 F:      include/linux/amba/mmci.h
918
919 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
920 M:      Russell King <linux@armlinux.org.uk>
921 S:      Maintained
922 F:      drivers/tty/serial/amba-pl01*.c
923 F:      include/linux/amba/serial.h
924
925 ARM PRIMECELL BUS SUPPORT
926 M:      Russell King <linux@armlinux.org.uk>
927 S:      Maintained
928 F:      drivers/amba/
929 F:      include/linux/amba/bus.h
930
931 ARM/ADS SPHERE MACHINE SUPPORT
932 M:      Lennert Buytenhek <kernel@wantstofly.org>
933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
934 S:      Maintained
935
936 ARM/AFEB9260 MACHINE SUPPORT
937 M:      Sergey Lapin <slapin@ossfans.org>
938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
939 S:      Maintained
940
941 ARM/AJECO 1ARM MACHINE SUPPORT
942 M:      Lennert Buytenhek <kernel@wantstofly.org>
943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
944 S:      Maintained
945
946 ARM/Allwinner sunXi SoC support
947 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
948 M:      Chen-Yu Tsai <wens@csie.org>
949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
950 S:      Maintained
951 N:      sun[x456789]i
952
953 ARM/Allwinner SoC Clock Support
954 M:      Emilio López <emilio@elopez.com.ar>
955 S:      Maintained
956 F:      drivers/clk/sunxi/
957
958 ARM/Amlogic Meson SoC support
959 M:      Carlo Caione <carlo@caione.org>
960 M:      Kevin Hilman <khilman@baylibre.com>
961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
962 L:      linux-amlogic@lists.infradead.org
963 W:      http://linux-meson.com/
964 S:      Maintained
965 F:      arch/arm/mach-meson/
966 F:      arch/arm/boot/dts/meson*
967 F:      arch/arm64/boot/dts/amlogic/
968 F:      drivers/pinctrl/meson/
969 N:      meson
970
971 ARM/Annapurna Labs ALPINE ARCHITECTURE
972 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
973 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
974 S:      Maintained
975 F:      arch/arm/mach-alpine/
976 F:      arch/arm/boot/dts/alpine*
977 F:      arch/arm64/boot/dts/al/
978 F:      drivers/*/*alpine*
979
980 ARM/ARTPEC MACHINE SUPPORT
981 M:      Jesper Nilsson <jesper.nilsson@axis.com>
982 M:      Lars Persson <lars.persson@axis.com>
983 M:      Niklas Cassel <niklas.cassel@axis.com>
984 S:      Maintained
985 L:      linux-arm-kernel@axis.com
986 F:      arch/arm/mach-artpec
987 F:      arch/arm/boot/dts/artpec6*
988 F:      drivers/clk/axis
989
990 ARM/ASPEED MACHINE SUPPORT
991 M:      Joel Stanley <joel@jms.id.au>
992 S:      Maintained
993 F:      arch/arm/mach-aspeed/
994 F:      arch/arm/boot/dts/aspeed-*
995 F:      drivers/*/*aspeed*
996
997 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
998 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
999 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
1000 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
1001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1002 W:      http://www.linux4sam.org
1003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1004 S:      Supported
1005 F:      arch/arm/mach-at91/
1006 F:      include/soc/at91/
1007 F:      arch/arm/boot/dts/at91*.dts
1008 F:      arch/arm/boot/dts/at91*.dtsi
1009 F:      arch/arm/boot/dts/sama*.dts
1010 F:      arch/arm/boot/dts/sama*.dtsi
1011 F:      arch/arm/include/debug/at91.S
1012
1013 ARM/ATMEL AT91 Clock Support
1014 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1015 S:      Maintained
1016 F:      drivers/clk/at91
1017
1018 ARM/CALXEDA HIGHBANK ARCHITECTURE
1019 M:      Rob Herring <robh@kernel.org>
1020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1021 S:      Maintained
1022 F:      arch/arm/mach-highbank/
1023 F:      arch/arm/boot/dts/highbank.dts
1024 F:      arch/arm/boot/dts/ecx-*.dts*
1025
1026 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1027 M:      Krzysztof Halasa <khalasa@piap.pl>
1028 S:      Maintained
1029 F:      arch/arm/mach-cns3xxx/
1030
1031 ARM/CAVIUM THUNDER NETWORK DRIVER
1032 M:      Sunil Goutham <sgoutham@cavium.com>
1033 M:      Robert Richter <rric@kernel.org>
1034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1035 S:      Supported
1036 F:      drivers/net/ethernet/cavium/thunder/
1037
1038 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1039 M:      Alexander Shiyan <shc_work@mail.ru>
1040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1041 S:      Odd Fixes
1042 N:      clps711x
1043
1044 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1045 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1046 M:      Ryan Mallon <rmallon@gmail.com>
1047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1048 S:      Maintained
1049 F:      arch/arm/mach-ep93xx/
1050 F:      arch/arm/mach-ep93xx/include/mach/
1051
1052 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1053 M:      Lennert Buytenhek <kernel@wantstofly.org>
1054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1055 S:      Maintained
1056
1057 ARM/CLKDEV SUPPORT
1058 M:      Russell King <linux@armlinux.org.uk>
1059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1060 S:      Maintained
1061 F:      arch/arm/include/asm/clkdev.h
1062 F:      drivers/clk/clkdev.c
1063
1064 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1065 M:      Mike Rapoport <mike@compulab.co.il>
1066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1067 S:      Maintained
1068
1069 ARM/CONTEC MICRO9 MACHINE SUPPORT
1070 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1071 S:      Maintained
1072 F:      arch/arm/mach-ep93xx/micro9.c
1073
1074 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1075 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 S:      Maintained
1078 F:      drivers/hwtracing/coresight/*
1079 F:      Documentation/trace/coresight.txt
1080 F:      Documentation/devicetree/bindings/arm/coresight.txt
1081 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1082
1083 ARM/CORGI MACHINE SUPPORT
1084 M:      Richard Purdie <rpurdie@rpsys.net>
1085 S:      Maintained
1086
1087 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1088 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1090 T:      git git://github.com/ulli-kroll/linux.git
1091 S:      Maintained
1092 F:      arch/arm/mach-gemini/
1093 F:      drivers/rtc/rtc-gemini.c
1094
1095 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1096 M:      Barry Song <baohua@kernel.org>
1097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1099 S:      Maintained
1100 F:      arch/arm/boot/dts/prima2*
1101 F:      arch/arm/mach-prima2/
1102 F:      drivers/clk/sirf/
1103 F:      drivers/clocksource/timer-prima2.c
1104 F:      drivers/clocksource/timer-atlas7.c
1105 N:      [^a-z]sirf
1106
1107 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1108 M:      Baruch Siach <baruch@tkos.co.il>
1109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1110 S:      Maintained
1111 F:      arch/arm/boot/dts/cx92755*
1112 N:      digicolor
1113
1114 ARM/EBSA110 MACHINE SUPPORT
1115 M:      Russell King <linux@armlinux.org.uk>
1116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1117 W:      http://www.armlinux.org.uk/
1118 S:      Maintained
1119 F:      arch/arm/mach-ebsa110/
1120 F:      drivers/net/ethernet/amd/am79c961a.*
1121
1122 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1123 M:      Uwe Kleine-König <kernel@pengutronix.de>
1124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1125 S:      Maintained
1126 N:      efm32
1127
1128 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1129 M:      Daniel Ribeiro <drwyrm@gmail.com>
1130 M:      Stefan Schmidt <stefan@openezx.org>
1131 M:      Harald Welte <laforge@openezx.org>
1132 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1133 W:      http://www.openezx.org/
1134 S:      Maintained
1135 T:      topgit git://git.openezx.org/openezx.git
1136 F:      arch/arm/mach-pxa/ezx.c
1137
1138 ARM/FARADAY FA526 PORT
1139 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1141 S:      Maintained
1142 T:      git git://git.berlios.de/gemini-board
1143 F:      arch/arm/mm/*-fa*
1144
1145 ARM/FOOTBRIDGE ARCHITECTURE
1146 M:      Russell King <linux@armlinux.org.uk>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 W:      http://www.armlinux.org.uk/
1149 S:      Maintained
1150 F:      arch/arm/include/asm/hardware/dec21285.h
1151 F:      arch/arm/mach-footbridge/
1152
1153 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1154 M:      Shawn Guo <shawnguo@kernel.org>
1155 M:      Sascha Hauer <kernel@pengutronix.de>
1156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1157 S:      Maintained
1158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1159 F:      arch/arm/mach-imx/
1160 F:      arch/arm/mach-mxs/
1161 F:      arch/arm/boot/dts/imx*
1162 F:      arch/arm/configs/imx*_defconfig
1163 F:      drivers/clk/imx/
1164 F:      include/soc/imx/
1165
1166 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1167 M:      Shawn Guo <shawnguo@kernel.org>
1168 M:      Sascha Hauer <kernel@pengutronix.de>
1169 R:      Stefan Agner <stefan@agner.ch>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1173 F:      arch/arm/mach-imx/*vf610*
1174 F:      arch/arm/boot/dts/vf*
1175
1176 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1177 M:      Lennert Buytenhek <kernel@wantstofly.org>
1178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1179 S:      Maintained
1180
1181 ARM/GUMSTIX MACHINE SUPPORT
1182 M:      Steve Sakoman <sakoman@gmail.com>
1183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1184 S:      Maintained
1185
1186 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1187 M:      Philipp Zabel <philipp.zabel@gmail.com>
1188 M:      Paul Parsons <lost.distance@yahoo.com>
1189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1190 S:      Maintained
1191 F:      arch/arm/mach-pxa/hx4700.c
1192 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1193 F:      sound/soc/pxa/hx4700.c
1194
1195 ARM/HISILICON SOC SUPPORT
1196 M:      Wei Xu <xuwei5@hisilicon.com>
1197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1198 W:      http://www.hisilicon.com
1199 S:      Supported
1200 T:      git git://github.com/hisilicon/linux-hisi.git
1201 F:      arch/arm/mach-hisi/
1202 F:      arch/arm/boot/dts/hi3*
1203 F:      arch/arm/boot/dts/hip*
1204 F:      arch/arm/boot/dts/hisi*
1205 F:      arch/arm64/boot/dts/hisilicon/
1206
1207 ARM/HP JORNADA 7XX MACHINE SUPPORT
1208 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1209 W:      www.jlime.com
1210 S:      Maintained
1211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1212 F:      arch/arm/mach-sa1100/jornada720.c
1213 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1214
1215 ARM/IGEP MACHINE SUPPORT
1216 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1217 M:      Javier Martinez Canillas <javier@dowhile0.org>
1218 L:      linux-omap@vger.kernel.org
1219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1220 S:      Maintained
1221 F:      arch/arm/boot/dts/omap3-igep*
1222
1223 ARM/INCOME PXA270 SUPPORT
1224 M:      Marek Vasut <marek.vasut@gmail.com>
1225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1226 S:      Maintained
1227 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1228
1229 ARM/INTEL IOP32X ARM ARCHITECTURE
1230 M:      Lennert Buytenhek <kernel@wantstofly.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233
1234 ARM/INTEL IOP33X ARM ARCHITECTURE
1235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1236 S:      Orphan
1237
1238 ARM/INTEL IOP13XX ARM ARCHITECTURE
1239 M:      Lennert Buytenhek <kernel@wantstofly.org>
1240 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1241 S:      Maintained
1242
1243 ARM/INTEL IQ81342EX MACHINE SUPPORT
1244 M:      Lennert Buytenhek <kernel@wantstofly.org>
1245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1246 S:      Maintained
1247
1248 ARM/INTEL IXDP2850 MACHINE SUPPORT
1249 M:      Lennert Buytenhek <kernel@wantstofly.org>
1250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1251 S:      Maintained
1252
1253 ARM/INTEL IXP4XX ARM ARCHITECTURE
1254 M:      Imre Kaloz <kaloz@openwrt.org>
1255 M:      Krzysztof Halasa <khalasa@piap.pl>
1256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 S:      Maintained
1258 F:      arch/arm/mach-ixp4xx/
1259
1260 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1261 M:      Jonathan Cameron <jic23@cam.ac.uk>
1262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1263 S:      Maintained
1264 F:      arch/arm/mach-pxa/stargate2.c
1265 F:      drivers/pcmcia/pxa2xx_stargate2.c
1266
1267 ARM/INTEL XSC3 (MANZANO) ARM CORE
1268 M:      Lennert Buytenhek <kernel@wantstofly.org>
1269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1270 S:      Maintained
1271
1272 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1273 M:      Lennert Buytenhek <kernel@wantstofly.org>
1274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1275 S:      Maintained
1276
1277 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1278 M:      Santosh Shilimkar <ssantosh@kernel.org>
1279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1280 S:      Maintained
1281 F:      arch/arm/mach-keystone/
1282 F:      arch/arm/boot/dts/keystone-*
1283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1284
1285 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1286 M:      Santosh Shilimkar <ssantosh@kernel.org>
1287 L:      linux-kernel@vger.kernel.org
1288 S:      Maintained
1289 F:      drivers/clk/keystone/
1290
1291 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1292 M:      Santosh Shilimkar <ssantosh@kernel.org>
1293 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1294 L:      linux-kernel@vger.kernel.org
1295 S:      Maintained
1296 F:      drivers/clocksource/timer-keystone.c
1297
1298 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1299 M:      Santosh Shilimkar <ssantosh@kernel.org>
1300 L:      linux-kernel@vger.kernel.org
1301 S:      Maintained
1302 F:      drivers/power/reset/keystone-reset.c
1303
1304 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1305 M:      Santosh Shilimkar <ssantosh@kernel.org>
1306 L:      linux-kernel@vger.kernel.org
1307 S:      Maintained
1308 F:      drivers/memory/*emif*
1309
1310 ARM/LG1K ARCHITECTURE
1311 M:      Chanho Min <chanho.min@lge.com>
1312 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1313 S:      Maintained
1314 F:      arch/arm64/boot/dts/lg/
1315
1316 ARM/LOGICPD PXA270 MACHINE SUPPORT
1317 M:      Lennert Buytenhek <kernel@wantstofly.org>
1318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1319 S:      Maintained
1320
1321 ARM/LPC18XX ARCHITECTURE
1322 M:      Joachim Eastwood <manabian@gmail.com>
1323 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      arch/arm/boot/dts/lpc43*
1326 F:      drivers/clk/nxp/clk-lpc18xx*
1327 F:      drivers/clocksource/time-lpc32xx.c
1328 F:      drivers/i2c/busses/i2c-lpc2k.c
1329 F:      drivers/memory/pl172.c
1330 F:      drivers/mtd/spi-nor/nxp-spifi.c
1331 F:      drivers/rtc/rtc-lpc24xx.c
1332 N:      lpc18xx
1333
1334 ARM/LPC32XX SOC SUPPORT
1335 M:      Vladimir Zapolskiy <vz@mleia.com>
1336 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1338 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1339 S:      Maintained
1340 F:      arch/arm/boot/dts/lpc32*
1341 F:      arch/arm/mach-lpc32xx/
1342 F:      drivers/i2c/busses/i2c-pnx.c
1343 F:      drivers/net/ethernet/nxp/lpc_eth.c
1344 F:      drivers/usb/host/ohci-nxp.c
1345 F:      drivers/watchdog/pnx4008_wdt.c
1346 N:      lpc32xx
1347
1348 ARM/MAGICIAN MACHINE SUPPORT
1349 M:      Philipp Zabel <philipp.zabel@gmail.com>
1350 S:      Maintained
1351
1352 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1353 M:      Jason Cooper <jason@lakedaemon.net>
1354 M:      Andrew Lunn <andrew@lunn.ch>
1355 M:      Gregory Clement <gregory.clement@free-electrons.com>
1356 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1358 S:      Maintained
1359 F:      arch/arm/mach-mvebu/
1360 F:      drivers/rtc/rtc-armada38x.c
1361 F:      arch/arm/boot/dts/armada*
1362 F:      arch/arm/boot/dts/kirkwood*
1363 F:      arch/arm64/boot/dts/marvell/armada*
1364 F:      drivers/cpufreq/mvebu-cpufreq.c
1365 F:      arch/arm/configs/mvebu_*_defconfig
1366
1367 ARM/Marvell Berlin SoC support
1368 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1370 S:      Maintained
1371 F:      arch/arm/mach-berlin/
1372 F:      arch/arm/boot/dts/berlin*
1373 F:      arch/arm64/boot/dts/marvell/berlin*
1374
1375
1376 ARM/Marvell Dove/MV78xx0/Orion SOC support
1377 M:      Jason Cooper <jason@lakedaemon.net>
1378 M:      Andrew Lunn <andrew@lunn.ch>
1379 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1380 M:      Gregory Clement <gregory.clement@free-electrons.com>
1381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1382 S:      Maintained
1383 F:      arch/arm/mach-dove/
1384 F:      arch/arm/mach-mv78xx0/
1385 F:      arch/arm/mach-orion5x/
1386 F:      arch/arm/plat-orion/
1387 F:      arch/arm/boot/dts/dove*
1388 F:      arch/arm/boot/dts/orion5x*
1389
1390
1391 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1392 M:      Alexander Clouter <alex@digriz.org.uk>
1393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1394 W:      http://www.digriz.org.uk/ts78xx/kernel
1395 S:      Maintained
1396 F:      arch/arm/mach-orion5x/ts78xx-*
1397
1398 ARM/OXNAS platform support
1399 M:      Neil Armstrong <narmstrong@baylibre.com>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 S:      Maintained
1402 F:      arch/arm/mach-oxnas/
1403 F:      arch/arm/boot/dts/oxnas*
1404 F:      arch/arm/boot/dts/wd-mbwe.dts
1405 N:      oxnas
1406
1407 ARM/Mediatek RTC DRIVER
1408 M:      Eddie Huang <eddie.huang@mediatek.com>
1409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1410 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1411 S:      Maintained
1412 F:      drivers/rtc/rtc-mt6397.c
1413
1414 ARM/Mediatek SoC support
1415 M:      Matthias Brugger <matthias.bgg@gmail.com>
1416 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1417 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1418 S:      Maintained
1419 F:      arch/arm/boot/dts/mt6*
1420 F:      arch/arm/boot/dts/mt8*
1421 F:      arch/arm/mach-mediatek/
1422 N:      mtk
1423 K:      mediatek
1424
1425 ARM/Mediatek USB3 PHY DRIVER
1426 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1428 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      drivers/phy/phy-mt65xx-usb3.c
1431
1432 ARM/MICREL KS8695 ARCHITECTURE
1433 M:      Greg Ungerer <gerg@uclinux.org>
1434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1435 F:      arch/arm/mach-ks8695/
1436 S:      Odd Fixes
1437
1438 ARM/MIOA701 MACHINE SUPPORT
1439 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1441 F:      arch/arm/mach-pxa/mioa701.c
1442 S:      Maintained
1443
1444 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1445 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1446 S:      Maintained
1447
1448 ARM/NOMADIK ARCHITECTURE
1449 M:      Alessandro Rubini <rubini@unipv.it>
1450 M:      Linus Walleij <linus.walleij@linaro.org>
1451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1452 S:      Maintained
1453 F:      arch/arm/mach-nomadik/
1454 F:      drivers/pinctrl/nomadik/
1455 F:      drivers/i2c/busses/i2c-nomadik.c
1456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1457
1458 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1459 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1460 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1461 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1462 S:      Supported
1463
1464 ARM/TOSA MACHINE SUPPORT
1465 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1466 M:      Dirk Opfer <dirk@opfer-online.de>
1467 S:      Maintained
1468
1469 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1470 M:      Marek Vasut <marek.vasut@gmail.com>
1471 L:      linux-arm-kernel@lists.infradead.org
1472 W:      http://hackndev.com
1473 S:      Maintained
1474 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1475 F:      arch/arm/mach-pxa/palmtx.c
1476 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1477 F:      arch/arm/mach-pxa/palmt5.c
1478 F:      arch/arm/mach-pxa/include/mach/palmld.h
1479 F:      arch/arm/mach-pxa/palmld.c
1480 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1481 F:      arch/arm/mach-pxa/palmte2.c
1482 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1483 F:      arch/arm/mach-pxa/palmtc.c
1484
1485 ARM/PALM TREO SUPPORT
1486 M:      Tomas Cech <sleep_walker@suse.com>
1487 L:      linux-arm-kernel@lists.infradead.org
1488 W:      http://hackndev.com
1489 S:      Maintained
1490 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1491 F:      arch/arm/mach-pxa/palmtreo.c
1492
1493 ARM/PALMZ72 SUPPORT
1494 M:      Sergey Lapin <slapin@ossfans.org>
1495 L:      linux-arm-kernel@lists.infradead.org
1496 W:      http://hackndev.com
1497 S:      Maintained
1498 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1499 F:      arch/arm/mach-pxa/palmz72.c
1500
1501 ARM/PLEB SUPPORT
1502 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1503 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1504 S:      Maintained
1505
1506 ARM/PT DIGITAL BOARD PORT
1507 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1509 W:      http://www.armlinux.org.uk/
1510 S:      Maintained
1511
1512 ARM/QUALCOMM SUPPORT
1513 M:      Andy Gross <andy.gross@linaro.org>
1514 M:      David Brown <david.brown@linaro.org>
1515 L:      linux-arm-msm@vger.kernel.org
1516 L:      linux-soc@vger.kernel.org
1517 S:      Maintained
1518 F:      arch/arm/boot/dts/qcom-*.dts
1519 F:      arch/arm/boot/dts/qcom-*.dtsi
1520 F:      arch/arm/mach-qcom/
1521 F:      arch/arm64/boot/dts/qcom/*
1522 F:      drivers/i2c/busses/i2c-qup.c
1523 F:      drivers/clk/qcom/
1524 F:      drivers/soc/qcom/
1525 F:      drivers/spi/spi-qup.c
1526 F:      drivers/tty/serial/msm_serial.h
1527 F:      drivers/tty/serial/msm_serial.c
1528 F:      drivers/*/pm8???-*
1529 F:      drivers/mfd/ssbi.c
1530 F:      drivers/firmware/qcom_scm.c
1531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1532
1533 ARM/RADISYS ENP2611 MACHINE SUPPORT
1534 M:      Lennert Buytenhek <kernel@wantstofly.org>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537
1538 ARM/RENESAS ARM64 ARCHITECTURE
1539 M:      Simon Horman <horms@verge.net.au>
1540 M:      Magnus Damm <magnus.damm@gmail.com>
1541 L:      linux-renesas-soc@vger.kernel.org
1542 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1544 S:      Supported
1545 F:      arch/arm64/boot/dts/renesas/
1546 F:      drivers/soc/renesas/
1547 F:      include/linux/soc/renesas/
1548
1549 ARM/RISCPC ARCHITECTURE
1550 M:      Russell King <linux@armlinux.org.uk>
1551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1552 W:      http://www.armlinux.org.uk/
1553 S:      Maintained
1554 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1555 F:      arch/arm/include/asm/hardware/ioc.h
1556 F:      arch/arm/include/asm/hardware/iomd.h
1557 F:      arch/arm/include/asm/hardware/memc.h
1558 F:      arch/arm/mach-rpc/
1559 F:      drivers/net/ethernet/8390/etherh.c
1560 F:      drivers/net/ethernet/i825xx/ether1*
1561 F:      drivers/net/ethernet/seeq/ether3*
1562 F:      drivers/scsi/arm/
1563
1564 ARM/Rockchip SoC support
1565 M:      Heiko Stuebner <heiko@sntech.de>
1566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1567 L:      linux-rockchip@lists.infradead.org
1568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1569 S:      Maintained
1570 F:      arch/arm/boot/dts/rk3*
1571 F:      arch/arm/mach-rockchip/
1572 F:      drivers/clk/rockchip/
1573 F:      drivers/i2c/busses/i2c-rk3x.c
1574 F:      drivers/*/*rockchip*
1575 F:      drivers/*/*/*rockchip*
1576 F:      sound/soc/rockchip/
1577 N:      rockchip
1578
1579 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1580 M:      Kukjin Kim <kgene@kernel.org>
1581 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1583 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      arch/arm/boot/dts/s3c*
1586 F:      arch/arm/boot/dts/s5p*
1587 F:      arch/arm/boot/dts/samsung*
1588 F:      arch/arm/boot/dts/exynos*
1589 F:      arch/arm64/boot/dts/exynos/
1590 F:      arch/arm/plat-samsung/
1591 F:      arch/arm/mach-s3c24*/
1592 F:      arch/arm/mach-s3c64xx/
1593 F:      arch/arm/mach-s5p*/
1594 F:      arch/arm/mach-exynos*/
1595 F:      drivers/*/*s3c2410*
1596 F:      drivers/*/*/*s3c2410*
1597 F:      drivers/memory/samsung/*
1598 F:      drivers/soc/samsung/*
1599 F:      drivers/spi/spi-s3c*
1600 F:      sound/soc/samsung/*
1601 F:      Documentation/arm/Samsung/
1602 F:      Documentation/devicetree/bindings/arm/samsung/
1603 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1604 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1605 N:      exynos
1606
1607 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1608 M:      Kyungmin Park <kyungmin.park@samsung.com>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Maintained
1611 F:      arch/arm/mach-s5pv210/
1612
1613 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1614 M:      Kyungmin Park <kyungmin.park@samsung.com>
1615 M:      Kamil Debski <k.debski@samsung.com>
1616 L:      linux-arm-kernel@lists.infradead.org
1617 L:      linux-media@vger.kernel.org
1618 S:      Maintained
1619 F:      drivers/media/platform/s5p-g2d/
1620
1621 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1622 M:      Kyungmin Park <kyungmin.park@samsung.com>
1623 M:      Kamil Debski <k.debski@samsung.com>
1624 M:      Jeongtae Park <jtp.park@samsung.com>
1625 L:      linux-arm-kernel@lists.infradead.org
1626 L:      linux-media@vger.kernel.org
1627 S:      Maintained
1628 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1629 F:      drivers/media/platform/s5p-mfc/
1630
1631 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1632 M:      Kyungmin Park <kyungmin.park@samsung.com>
1633 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1634 L:      linux-arm-kernel@lists.infradead.org
1635 L:      linux-media@vger.kernel.org
1636 S:      Maintained
1637 F:      drivers/media/platform/s5p-tv/
1638
1639 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1640 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1641 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1642 L:      linux-arm-kernel@lists.infradead.org
1643 L:      linux-media@vger.kernel.org
1644 S:      Maintained
1645 F:      drivers/media/platform/s5p-jpeg/
1646
1647 ARM/SHMOBILE ARM ARCHITECTURE
1648 M:      Simon Horman <horms@verge.net.au>
1649 M:      Magnus Damm <magnus.damm@gmail.com>
1650 L:      linux-renesas-soc@vger.kernel.org
1651 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1653 S:      Supported
1654 F:      arch/arm/boot/dts/emev2*
1655 F:      arch/arm/boot/dts/r7s*
1656 F:      arch/arm/boot/dts/r8a*
1657 F:      arch/arm/boot/dts/sh*
1658 F:      arch/arm/configs/shmobile_defconfig
1659 F:      arch/arm/include/debug/renesas-scif.S
1660 F:      arch/arm/mach-shmobile/
1661 F:      drivers/sh/
1662 F:      drivers/soc/renesas/
1663 F:      include/linux/soc/renesas/
1664
1665 ARM/SOCFPGA ARCHITECTURE
1666 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1667 S:      Maintained
1668 F:      arch/arm/mach-socfpga/
1669 F:      arch/arm/boot/dts/socfpga*
1670 F:      arch/arm/configs/socfpga_defconfig
1671 F:      arch/arm64/boot/dts/altera/
1672 W:      http://www.rocketboards.org
1673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1674
1675 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1676 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1677 S:      Maintained
1678 F:      drivers/clk/socfpga/
1679
1680 ARM/SOCFPGA EDAC SUPPORT
1681 M:      Thor Thayer <tthayer@opensource.altera.com>
1682 S:      Maintained
1683 F:      drivers/edac/altera_edac.
1684
1685 ARM/STI ARCHITECTURE
1686 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1687 M:      Maxime Coquelin <maxime.coquelin@st.com>
1688 M:      Patrice Chotard <patrice.chotard@st.com>
1689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1690 L:      kernel@stlinux.com
1691 W:      http://www.stlinux.com
1692 S:      Maintained
1693 F:      arch/arm/mach-sti/
1694 F:      arch/arm/boot/dts/sti*
1695 F:      drivers/char/hw_random/st-rng.c
1696 F:      drivers/clocksource/arm_global_timer.c
1697 F:      drivers/clocksource/clksrc_st_lpc.c
1698 F:      drivers/cpufreq/sti-cpufreq.c
1699 F:      drivers/i2c/busses/i2c-st.c
1700 F:      drivers/media/rc/st_rc.c
1701 F:      drivers/media/platform/sti/c8sectpfe/
1702 F:      drivers/mmc/host/sdhci-st.c
1703 F:      drivers/phy/phy-miphy28lp.c
1704 F:      drivers/phy/phy-miphy365x.c
1705 F:      drivers/phy/phy-stih407-usb.c
1706 F:      drivers/phy/phy-stih41x-usb.c
1707 F:      drivers/pinctrl/pinctrl-st.c
1708 F:      drivers/remoteproc/st_remoteproc.c
1709 F:      drivers/reset/sti/
1710 F:      drivers/rtc/rtc-st-lpc.c
1711 F:      drivers/tty/serial/st-asc.c
1712 F:      drivers/usb/dwc3/dwc3-st.c
1713 F:      drivers/usb/host/ehci-st.c
1714 F:      drivers/usb/host/ohci-st.c
1715 F:      drivers/watchdog/st_lpc_wdt.c
1716 F:      drivers/ata/ahci_st.c
1717
1718 ARM/STM32 ARCHITECTURE
1719 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Maintained
1722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1723 N:      stm32
1724 F:      drivers/clocksource/armv7m_systick.c
1725
1726 ARM/TANGO ARCHITECTURE
1727 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1728 L:      linux-arm-kernel@lists.infradead.org
1729 S:      Maintained
1730 F:      arch/arm/mach-tango/
1731 F:      arch/arm/boot/dts/tango*
1732
1733 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1734 M:      Lennert Buytenhek <kernel@wantstofly.org>
1735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1736 S:      Maintained
1737
1738 ARM/TETON BGA MACHINE SUPPORT
1739 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742
1743 ARM/THECUS N2100 MACHINE SUPPORT
1744 M:      Lennert Buytenhek <kernel@wantstofly.org>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747
1748 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1749 M:      Wan ZongShun <mcuos.com@gmail.com>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 W:      http://www.mcuos.com
1752 S:      Maintained
1753 F:      arch/arm/mach-w90x900/
1754 F:      drivers/input/keyboard/w90p910_keypad.c
1755 F:      drivers/input/touchscreen/w90p910_ts.c
1756 F:      drivers/watchdog/nuc900_wdt.c
1757 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1758 F:      drivers/mtd/nand/nuc900_nand.c
1759 F:      drivers/rtc/rtc-nuc900.c
1760 F:      drivers/spi/spi-nuc900.c
1761 F:      drivers/usb/host/ehci-w90x900.c
1762 F:      drivers/video/fbdev/nuc900fb.c
1763
1764 ARM/U300 MACHINE SUPPORT
1765 M:      Linus Walleij <linus.walleij@linaro.org>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 S:      Supported
1768 F:      arch/arm/mach-u300/
1769 F:      drivers/clocksource/timer-u300.c
1770 F:      drivers/i2c/busses/i2c-stu300.c
1771 F:      drivers/rtc/rtc-coh901331.c
1772 F:      drivers/watchdog/coh901327_wdt.c
1773 F:      drivers/dma/coh901318*
1774 F:      drivers/mfd/ab3100*
1775 F:      drivers/rtc/rtc-ab3100.c
1776 F:      drivers/rtc/rtc-coh901331.c
1777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1778
1779 ARM/UNIPHIER ARCHITECTURE
1780 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1782 S:      Maintained
1783 F:      arch/arm/boot/dts/uniphier*
1784 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1785 F:      arch/arm/mach-uniphier/
1786 F:      arch/arm/mm/cache-uniphier.c
1787 F:      arch/arm64/boot/dts/socionext/
1788 F:      drivers/bus/uniphier-system-bus.c
1789 F:      drivers/i2c/busses/i2c-uniphier*
1790 F:      drivers/pinctrl/uniphier/
1791 F:      drivers/tty/serial/8250/8250_uniphier.c
1792 N:      uniphier
1793
1794 ARM/Ux500 ARM ARCHITECTURE
1795 M:      Linus Walleij <linus.walleij@linaro.org>
1796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1797 S:      Maintained
1798 F:      arch/arm/mach-ux500/
1799 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1800 F:      drivers/dma/ste_dma40*
1801 F:      drivers/hwspinlock/u8500_hsem.c
1802 F:      drivers/mfd/abx500*
1803 F:      drivers/mfd/ab8500*
1804 F:      drivers/mfd/dbx500*
1805 F:      drivers/mfd/db8500*
1806 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1807 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1808 F:      drivers/rtc/rtc-ab8500.c
1809 F:      drivers/rtc/rtc-pl031.c
1810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1811
1812 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1813 M:      Ulf Hansson <ulf.hansson@linaro.org>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 T:      git git://git.linaro.org/people/ulfh/clk.git
1816 S:      Maintained
1817 F:      drivers/clk/ux500/
1818 F:      include/linux/platform_data/clk-ux500.h
1819
1820 ARM/VERSATILE EXPRESS PLATFORM
1821 M:      Liviu Dudau <liviu.dudau@arm.com>
1822 M:      Sudeep Holla <sudeep.holla@arm.com>
1823 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1825 S:      Maintained
1826 F:      arch/arm/boot/dts/vexpress*
1827 F:      arch/arm64/boot/dts/arm/
1828 F:      arch/arm/mach-vexpress/
1829 F:      */*/vexpress*
1830 F:      */*/*/vexpress*
1831 F:      drivers/clk/versatile/clk-vexpress-osc.c
1832 F:      drivers/clocksource/versatile.c
1833 N:      mps2
1834
1835 ARM/VFP SUPPORT
1836 M:      Russell King <linux@armlinux.org.uk>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 W:      http://www.armlinux.org.uk/
1839 S:      Maintained
1840 F:      arch/arm/vfp/
1841
1842 ARM/VOIPAC PXA270 SUPPORT
1843 M:      Marek Vasut <marek.vasut@gmail.com>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 F:      arch/arm/mach-pxa/vpac270.c
1847 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1848
1849 ARM/VT8500 ARM ARCHITECTURE
1850 M:      Tony Prisk <linux@prisktech.co.nz>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 F:      arch/arm/mach-vt8500/
1854 F:      drivers/clocksource/vt8500_timer.c
1855 F:      drivers/i2c/busses/i2c-wmt.c
1856 F:      drivers/mmc/host/wmt-sdmmc.c
1857 F:      drivers/pwm/pwm-vt8500.c
1858 F:      drivers/rtc/rtc-vt8500.c
1859 F:      drivers/tty/serial/vt8500_serial.c
1860 F:      drivers/usb/host/ehci-platform.c
1861 F:      drivers/usb/host/uhci-platform.c
1862 F:      drivers/video/fbdev/vt8500lcdfb.*
1863 F:      drivers/video/fbdev/wm8505fb*
1864 F:      drivers/video/fbdev/wmt_ge_rops.*
1865
1866 ARM/ZIPIT Z2 SUPPORT
1867 M:      Marek Vasut <marek.vasut@gmail.com>
1868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1869 S:      Maintained
1870 F:      arch/arm/mach-pxa/z2.c
1871 F:      arch/arm/mach-pxa/include/mach/z2.h
1872
1873 ARM/ZTE ARCHITECTURE
1874 M:      Jun Nie <jun.nie@linaro.org>
1875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      arch/arm/mach-zx/
1878 F:      drivers/clk/zte/
1879 F:      Documentation/devicetree/bindings/arm/zte.txt
1880 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1881
1882 ARM/ZYNQ ARCHITECTURE
1883 M:      Michal Simek <michal.simek@xilinx.com>
1884 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1886 W:      http://wiki.xilinx.com
1887 T:      git https://github.com/Xilinx/linux-xlnx.git
1888 S:      Supported
1889 F:      arch/arm/mach-zynq/
1890 F:      drivers/cpuidle/cpuidle-zynq.c
1891 F:      drivers/block/xsysace.c
1892 N:      zynq
1893 N:      xilinx
1894 F:      drivers/clocksource/cadence_ttc_timer.c
1895 F:      drivers/i2c/busses/i2c-cadence.c
1896 F:      drivers/mmc/host/sdhci-of-arasan.c
1897 F:      drivers/edac/synopsys_edac.c
1898
1899 ARM SMMU DRIVERS
1900 M:      Will Deacon <will.deacon@arm.com>
1901 R:      Robin Murphy <robin.murphy@arm.com>
1902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1903 S:      Maintained
1904 F:      drivers/iommu/arm-smmu.c
1905 F:      drivers/iommu/arm-smmu-v3.c
1906 F:      drivers/iommu/io-pgtable-arm.c
1907 F:      drivers/iommu/io-pgtable-arm-v7s.c
1908
1909 ARM64 PORT (AARCH64 ARCHITECTURE)
1910 M:      Catalin Marinas <catalin.marinas@arm.com>
1911 M:      Will Deacon <will.deacon@arm.com>
1912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1914 S:      Maintained
1915 F:      arch/arm64/
1916 F:      Documentation/arm64/
1917
1918 AS3645A LED FLASH CONTROLLER DRIVER
1919 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1920 L:      linux-media@vger.kernel.org
1921 T:      git git://linuxtv.org/media_tree.git
1922 S:      Maintained
1923 F:      drivers/media/i2c/as3645a.c
1924 F:      include/media/i2c/as3645a.h
1925
1926 ASC7621 HARDWARE MONITOR DRIVER
1927 M:      George Joseph <george.joseph@fairview5.com>
1928 L:      linux-hwmon@vger.kernel.org
1929 S:      Maintained
1930 F:      Documentation/hwmon/asc7621
1931 F:      drivers/hwmon/asc7621.c
1932
1933 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1934 M:      Corentin Chary <corentin.chary@gmail.com>
1935 L:      acpi4asus-user@lists.sourceforge.net
1936 L:      platform-driver-x86@vger.kernel.org
1937 W:      http://acpi4asus.sf.net
1938 S:      Maintained
1939 F:      drivers/platform/x86/asus*.c
1940 F:      drivers/platform/x86/eeepc*.c
1941
1942 ASUS WIRELESS RADIO CONTROL DRIVER
1943 M:      João Paulo Rechi Vita <jprvita@gmail.com>
1944 L:      platform-driver-x86@vger.kernel.org
1945 S:      Maintained
1946 F:      drivers/platform/x86/asus-wireless.c
1947
1948 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1949 R:      Dan Williams <dan.j.williams@intel.com>
1950 W:      http://sourceforge.net/projects/xscaleiop
1951 S:      Odd fixes
1952 F:      Documentation/crypto/async-tx-api.txt
1953 F:      crypto/async_tx/
1954 F:      drivers/dma/
1955 F:      include/linux/dmaengine.h
1956 F:      include/linux/async_tx.h
1957
1958 AT24 EEPROM DRIVER
1959 M:      Wolfram Sang <wsa@the-dreams.de>
1960 L:      linux-i2c@vger.kernel.org
1961 S:      Maintained
1962 F:      drivers/misc/eeprom/at24.c
1963 F:      include/linux/platform_data/at24.h
1964
1965 ATA OVER ETHERNET (AOE) DRIVER
1966 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1967 W:      http://www.openaoe.org/
1968 S:      Supported
1969 F:      Documentation/aoe/
1970 F:      drivers/block/aoe/
1971
1972 ATHEROS 71XX/9XXX GPIO DRIVER
1973 M:      Alban Bedel <albeu@free.fr>
1974 W:      https://github.com/AlbanBedel/linux
1975 T:      git git://github.com/AlbanBedel/linux
1976 S:      Maintained
1977 F:      drivers/gpio/gpio-ath79.c
1978 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1979
1980 ATHEROS ATH GENERIC UTILITIES
1981 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1982 L:      linux-wireless@vger.kernel.org
1983 S:      Supported
1984 F:      drivers/net/wireless/ath/*
1985
1986 ATHEROS ATH5K WIRELESS DRIVER
1987 M:      Jiri Slaby <jirislaby@gmail.com>
1988 M:      Nick Kossifidis <mickflemm@gmail.com>
1989 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1990 L:      linux-wireless@vger.kernel.org
1991 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1992 S:      Maintained
1993 F:      drivers/net/wireless/ath/ath5k/
1994
1995 ATHEROS ATH6KL WIRELESS DRIVER
1996 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1997 L:      linux-wireless@vger.kernel.org
1998 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2000 S:      Supported
2001 F:      drivers/net/wireless/ath/ath6kl/
2002
2003 WILOCITY WIL6210 WIRELESS DRIVER
2004 M:      Maya Erez <qca_merez@qca.qualcomm.com>
2005 L:      linux-wireless@vger.kernel.org
2006 L:      wil6210@qca.qualcomm.com
2007 S:      Supported
2008 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2009 F:      drivers/net/wireless/ath/wil6210/
2010 F:      include/uapi/linux/wil6210_uapi.h
2011
2012 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2013 M:      Christian Lamparter <chunkeey@googlemail.com>
2014 L:      linux-wireless@vger.kernel.org
2015 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2016 S:      Maintained
2017 F:      drivers/net/wireless/ath/carl9170/
2018
2019 ATK0110 HWMON DRIVER
2020 M:      Luca Tettamanti <kronos.it@gmail.com>
2021 L:      linux-hwmon@vger.kernel.org
2022 S:      Maintained
2023 F:      drivers/hwmon/asus_atk0110.c
2024
2025 ATI_REMOTE2 DRIVER
2026 M:      Ville Syrjala <syrjala@sci.fi>
2027 S:      Maintained
2028 F:      drivers/input/misc/ati_remote2.c
2029
2030 ATLX ETHERNET DRIVERS
2031 M:      Jay Cliburn <jcliburn@gmail.com>
2032 M:      Chris Snook <chris.snook@gmail.com>
2033 L:      netdev@vger.kernel.org
2034 W:      http://sourceforge.net/projects/atl1
2035 W:      http://atl1.sourceforge.net
2036 S:      Maintained
2037 F:      drivers/net/ethernet/atheros/
2038
2039 ATM
2040 M:      Chas Williams <3chas3@gmail.com>
2041 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2042 L:      netdev@vger.kernel.org
2043 W:      http://linux-atm.sourceforge.net
2044 S:      Maintained
2045 F:      drivers/atm/
2046 F:      include/linux/atm*
2047 F:      include/uapi/linux/atm*
2048
2049 ATMEL AT91 / AT32 MCI DRIVER
2050 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2051 S:      Maintained
2052 F:      drivers/mmc/host/atmel-mci.c
2053
2054 ATMEL AT91 / AT32 SERIAL DRIVER
2055 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2056 S:      Supported
2057 F:      drivers/tty/serial/atmel_serial.c
2058
2059 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2060 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2061 S:      Supported
2062 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2063
2064 ATMEL SAMA5D2 ADC DRIVER
2065 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2066 L:      linux-iio@vger.kernel.org
2067 S:      Supported
2068 F:      drivers/iio/adc/at91-sama5d2_adc.c
2069
2070 ATMEL Audio ALSA driver
2071 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2072 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2073 S:      Supported
2074 F:      sound/soc/atmel
2075
2076 ATMEL DMA DRIVER
2077 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 S:      Supported
2080 F:      drivers/dma/at_hdmac.c
2081 F:      drivers/dma/at_hdmac_regs.h
2082 F:      include/linux/platform_data/dma-atmel.h
2083
2084 ATMEL XDMA DRIVER
2085 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2086 L:      linux-arm-kernel@lists.infradead.org
2087 L:      dmaengine@vger.kernel.org
2088 S:      Supported
2089 F:      drivers/dma/at_xdmac.c
2090
2091 ATMEL I2C DRIVER
2092 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2093 L:      linux-i2c@vger.kernel.org
2094 S:      Supported
2095 F:      drivers/i2c/busses/i2c-at91.c
2096
2097 ATMEL ISI DRIVER
2098 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2099 L:      linux-media@vger.kernel.org
2100 S:      Supported
2101 F:      drivers/media/platform/soc_camera/atmel-isi.c
2102 F:      include/media/atmel-isi.h
2103
2104 ATMEL LCDFB DRIVER
2105 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2106 L:      linux-fbdev@vger.kernel.org
2107 S:      Maintained
2108 F:      drivers/video/fbdev/atmel_lcdfb.c
2109 F:      include/video/atmel_lcdc.h
2110
2111 ATMEL MACB ETHERNET DRIVER
2112 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2113 S:      Supported
2114 F:      drivers/net/ethernet/cadence/
2115
2116 ATMEL NAND DRIVER
2117 M:      Wenyou Yang <wenyou.yang@atmel.com>
2118 M:      Josh Wu <rainyfeeling@outlook.com>
2119 L:      linux-mtd@lists.infradead.org
2120 S:      Supported
2121 F:      drivers/mtd/nand/atmel_nand*
2122
2123 ATMEL SDMMC DRIVER
2124 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2125 L:      linux-mmc@vger.kernel.org
2126 S:      Supported
2127 F:      drivers/mmc/host/sdhci-of-at91.c
2128
2129 ATMEL SPI DRIVER
2130 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2131 S:      Supported
2132 F:      drivers/spi/spi-atmel.*
2133
2134 ATMEL SSC DRIVER
2135 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2136 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2137 S:      Supported
2138 F:      drivers/misc/atmel-ssc.c
2139 F:      include/linux/atmel-ssc.h
2140
2141 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2142 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Supported
2145 F:      drivers/misc/atmel_tclib.c
2146 F:      drivers/clocksource/tcb_clksrc.c
2147
2148 ATMEL USBA UDC DRIVER
2149 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2151 S:      Supported
2152 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2153
2154 ATMEL WIRELESS DRIVER
2155 M:      Simon Kelley <simon@thekelleys.org.uk>
2156 L:      linux-wireless@vger.kernel.org
2157 W:      http://www.thekelleys.org.uk/atmel
2158 W:      http://atmelwlandriver.sourceforge.net/
2159 S:      Maintained
2160 F:      drivers/net/wireless/atmel/atmel*
2161
2162 ATMEL MAXTOUCH DRIVER
2163 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2164 T:      git git://github.com/atmel-maxtouch/linux.git
2165 S:      Supported
2166 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2167 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2168 F:      include/linux/platform_data/atmel_mxt_ts.h
2169
2170 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2171 M:      Bradley Grove <linuxdrivers@attotech.com>
2172 L:      linux-scsi@vger.kernel.org
2173 W:      http://www.attotech.com
2174 S:      Supported
2175 F:      drivers/scsi/esas2r
2176
2177 ATUSB IEEE 802.15.4 RADIO DRIVER
2178 M:      Stefan Schmidt <stefan@osg.samsung.com>
2179 L:      linux-wpan@vger.kernel.org
2180 S:      Maintained
2181 F:      drivers/net/ieee802154/atusb.c
2182 F:      drivers/net/ieee802154/atusb.h
2183 F:      drivers/net/ieee802154/at86rf230.h
2184
2185 AUDIT SUBSYSTEM
2186 M:      Paul Moore <paul@paul-moore.com>
2187 M:      Eric Paris <eparis@redhat.com>
2188 L:      linux-audit@redhat.com (moderated for non-subscribers)
2189 W:      http://people.redhat.com/sgrubb/audit/
2190 T:      git git://git.infradead.org/users/pcmoore/audit
2191 S:      Maintained
2192 F:      include/linux/audit.h
2193 F:      include/uapi/linux/audit.h
2194 F:      kernel/audit*
2195
2196 AUXILIARY DISPLAY DRIVERS
2197 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2198 W:      http://miguelojeda.es/auxdisplay.htm
2199 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2200 S:      Maintained
2201 F:      drivers/auxdisplay/
2202 F:      include/linux/cfag12864b.h
2203
2204 AVR32 ARCHITECTURE
2205 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2206 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2207 W:      http://www.atmel.com/products/AVR32/
2208 W:      http://mirror.egtvedt.no/avr32linux.org/
2209 W:      http://avrfreaks.net/
2210 S:      Maintained
2211 F:      arch/avr32/
2212
2213 AVR32/AT32AP MACHINE SUPPORT
2214 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2215 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2216 S:      Maintained
2217 F:      arch/avr32/mach-at32ap/
2218
2219 AX.25 NETWORK LAYER
2220 M:      Ralf Baechle <ralf@linux-mips.org>
2221 L:      linux-hams@vger.kernel.org
2222 W:      http://www.linux-ax25.org/
2223 S:      Maintained
2224 F:      include/uapi/linux/ax25.h
2225 F:      include/net/ax25.h
2226 F:      net/ax25/
2227
2228 AZ6007 DVB DRIVER
2229 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2230 L:      linux-media@vger.kernel.org
2231 W:      https://linuxtv.org
2232 T:      git git://linuxtv.org/media_tree.git
2233 S:      Maintained
2234 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2235
2236 AZTECH FM RADIO RECEIVER DRIVER
2237 M:      Hans Verkuil <hverkuil@xs4all.nl>
2238 L:      linux-media@vger.kernel.org
2239 T:      git git://linuxtv.org/media_tree.git
2240 W:      https://linuxtv.org
2241 S:      Maintained
2242 F:      drivers/media/radio/radio-aztech*
2243
2244 B43 WIRELESS DRIVER
2245 L:      linux-wireless@vger.kernel.org
2246 L:      b43-dev@lists.infradead.org
2247 W:      http://wireless.kernel.org/en/users/Drivers/b43
2248 S:      Odd Fixes
2249 F:      drivers/net/wireless/broadcom/b43/
2250
2251 B43LEGACY WIRELESS DRIVER
2252 M:      Larry Finger <Larry.Finger@lwfinger.net>
2253 L:      linux-wireless@vger.kernel.org
2254 L:      b43-dev@lists.infradead.org
2255 W:      http://wireless.kernel.org/en/users/Drivers/b43
2256 S:      Maintained
2257 F:      drivers/net/wireless/broadcom/b43legacy/
2258
2259 BACKLIGHT CLASS/SUBSYSTEM
2260 M:      Jingoo Han <jingoohan1@gmail.com>
2261 M:      Lee Jones <lee.jones@linaro.org>
2262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2263 S:      Maintained
2264 F:      drivers/video/backlight/
2265 F:      include/linux/backlight.h
2266
2267 BATMAN ADVANCED
2268 M:      Marek Lindner <mareklindner@neomailbox.ch>
2269 M:      Simon Wunderlich <sw@simonwunderlich.de>
2270 M:      Antonio Quartulli <a@unstable.cc>
2271 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2272 W:      https://www.open-mesh.org/
2273 Q:      https://patchwork.open-mesh.org/project/batman/list/
2274 S:      Maintained
2275 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2276 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2277 F:      Documentation/networking/batman-adv.txt
2278 F:      net/batman-adv/
2279
2280 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2281 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2282 L:      linux-hams@vger.kernel.org
2283 W:      http://www.baycom.org/~tom/ham/ham.html
2284 S:      Maintained
2285 F:      drivers/net/hamradio/baycom*
2286
2287 BCACHE (BLOCK LAYER CACHE)
2288 M:      Kent Overstreet <kent.overstreet@gmail.com>
2289 L:      linux-bcache@vger.kernel.org
2290 W:      http://bcache.evilpiepirate.org
2291 S:      Maintained
2292 F:      drivers/md/bcache/
2293
2294 BDISP ST MEDIA DRIVER
2295 M:      Fabien Dessenne <fabien.dessenne@st.com>
2296 L:      linux-media@vger.kernel.org
2297 T:      git git://linuxtv.org/media_tree.git
2298 W:      https://linuxtv.org
2299 S:      Supported
2300 F:      drivers/media/platform/sti/bdisp
2301
2302 BEFS FILE SYSTEM
2303 S:      Orphan
2304 F:      Documentation/filesystems/befs.txt
2305 F:      fs/befs/
2306
2307 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2308 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2309 L:      netdev@vger.kernel.org
2310 S:      Maintained
2311 F:      drivers/net/ethernet/ec_bhf.c
2312
2313 BFS FILE SYSTEM
2314 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2315 S:      Maintained
2316 F:      Documentation/filesystems/bfs.txt
2317 F:      fs/bfs/
2318 F:      include/uapi/linux/bfs_fs.h
2319
2320 BLACKFIN ARCHITECTURE
2321 M:      Steven Miao <realmz6@gmail.com>
2322 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2323 T:      git git://git.code.sf.net/p/adi-linux/code
2324 W:      http://blackfin.uclinux.org
2325 S:      Supported
2326 F:      arch/blackfin/
2327
2328 BLACKFIN EMAC DRIVER
2329 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2330 W:      http://blackfin.uclinux.org
2331 S:      Supported
2332 F:      drivers/net/ethernet/adi/
2333
2334 BLACKFIN RTC DRIVER
2335 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2336 W:      http://blackfin.uclinux.org
2337 S:      Supported
2338 F:      drivers/rtc/rtc-bfin.c
2339
2340 BLACKFIN SDH DRIVER
2341 M:      Sonic Zhang <sonic.zhang@analog.com>
2342 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2343 W:      http://blackfin.uclinux.org
2344 S:      Supported
2345 F:      drivers/mmc/host/bfin_sdh.c
2346
2347 BLACKFIN SERIAL DRIVER
2348 M:      Sonic Zhang <sonic.zhang@analog.com>
2349 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2350 W:      http://blackfin.uclinux.org
2351 S:      Supported
2352 F:      drivers/tty/serial/bfin_uart.c
2353
2354 BLACKFIN WATCHDOG DRIVER
2355 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2356 W:      http://blackfin.uclinux.org
2357 S:      Supported
2358 F:      drivers/watchdog/bfin_wdt.c
2359
2360 BLACKFIN I2C TWI DRIVER
2361 M:      Sonic Zhang <sonic.zhang@analog.com>
2362 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2363 W:      http://blackfin.uclinux.org/
2364 S:      Supported
2365 F:      drivers/i2c/busses/i2c-bfin-twi.c
2366
2367 BLACKFIN MEDIA DRIVER
2368 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2369 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2370 W:      http://blackfin.uclinux.org/
2371 S:      Supported
2372 F:      drivers/media/platform/blackfin/
2373 F:      drivers/media/i2c/adv7183*
2374 F:      drivers/media/i2c/vs6624*
2375
2376 BLINKM RGB LED DRIVER
2377 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2378 S:      Maintained
2379 F:      drivers/leds/leds-blinkm.c
2380
2381 BLOCK LAYER
2382 M:      Jens Axboe <axboe@kernel.dk>
2383 L:      linux-block@vger.kernel.org
2384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2385 S:      Maintained
2386 F:      block/
2387 F:      kernel/trace/blktrace.c
2388
2389 BLOCK2MTD DRIVER
2390 M:      Joern Engel <joern@lazybastard.org>
2391 L:      linux-mtd@lists.infradead.org
2392 S:      Maintained
2393 F:      drivers/mtd/devices/block2mtd.c
2394
2395 BLUETOOTH DRIVERS
2396 M:      Marcel Holtmann <marcel@holtmann.org>
2397 M:      Gustavo Padovan <gustavo@padovan.org>
2398 M:      Johan Hedberg <johan.hedberg@gmail.com>
2399 L:      linux-bluetooth@vger.kernel.org
2400 W:      http://www.bluez.org/
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2403 S:      Maintained
2404 F:      drivers/bluetooth/
2405
2406 BLUETOOTH SUBSYSTEM
2407 M:      Marcel Holtmann <marcel@holtmann.org>
2408 M:      Gustavo Padovan <gustavo@padovan.org>
2409 M:      Johan Hedberg <johan.hedberg@gmail.com>
2410 L:      linux-bluetooth@vger.kernel.org
2411 W:      http://www.bluez.org/
2412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2414 S:      Maintained
2415 F:      net/bluetooth/
2416 F:      include/net/bluetooth/
2417
2418 BONDING DRIVER
2419 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2420 M:      Veaceslav Falico <vfalico@gmail.com>
2421 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2422 L:      netdev@vger.kernel.org
2423 W:      http://sourceforge.net/projects/bonding/
2424 S:      Supported
2425 F:      drivers/net/bonding/
2426 F:      include/uapi/linux/if_bonding.h
2427
2428 BPF (Safe dynamic programs and tools)
2429 M:      Alexei Starovoitov <ast@kernel.org>
2430 L:      netdev@vger.kernel.org
2431 L:      linux-kernel@vger.kernel.org
2432 S:      Supported
2433 F:      kernel/bpf/
2434
2435 BROADCOM B44 10/100 ETHERNET DRIVER
2436 M:      Gary Zambrano <zambrano@broadcom.com>
2437 L:      netdev@vger.kernel.org
2438 S:      Supported
2439 F:      drivers/net/ethernet/broadcom/b44.*
2440
2441 BROADCOM GENET ETHERNET DRIVER
2442 M:      Florian Fainelli <f.fainelli@gmail.com>
2443 L:      netdev@vger.kernel.org
2444 S:      Supported
2445 F:      drivers/net/ethernet/broadcom/genet/
2446
2447 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2448 M:      Sony Chacko <sony.chacko@qlogic.com>
2449 M:      Dept-HSGLinuxNICDev@qlogic.com
2450 L:      netdev@vger.kernel.org
2451 S:      Supported
2452 F:      drivers/net/ethernet/broadcom/bnx2.*
2453 F:      drivers/net/ethernet/broadcom/bnx2_*
2454
2455 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2456 M:      Ariel Elior <ariel.elior@qlogic.com>
2457 L:      netdev@vger.kernel.org
2458 S:      Supported
2459 F:      drivers/net/ethernet/broadcom/bnx2x/
2460
2461 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2462 M:      Florian Fainelli <f.fainelli@gmail.com>
2463 M:      Ray Jui <rjui@broadcom.com>
2464 M:      Scott Branden <sbranden@broadcom.com>
2465 L:      bcm-kernel-feedback-list@broadcom.com
2466 T:      git git://github.com/broadcom/mach-bcm
2467 S:      Maintained
2468 F:      arch/arm/mach-bcm/
2469 F:      arch/arm/boot/dts/bcm113*
2470 F:      arch/arm/boot/dts/bcm216*
2471 F:      arch/arm/boot/dts/bcm281*
2472 F:      arch/arm64/boot/dts/broadcom/
2473 F:      arch/arm/configs/bcm_defconfig
2474 F:      drivers/mmc/host/sdhci-bcm-kona.c
2475 F:      drivers/clocksource/bcm_kona_timer.c
2476
2477 BROADCOM BCM2835 ARM ARCHITECTURE
2478 M:      Stephen Warren <swarren@wwwdotorg.org>
2479 M:      Lee Jones <lee@kernel.org>
2480 M:      Eric Anholt <eric@anholt.net>
2481 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2484 S:      Maintained
2485 N:      bcm2835
2486
2487 BROADCOM BCM47XX MIPS ARCHITECTURE
2488 M:      Hauke Mehrtens <hauke@hauke-m.de>
2489 M:      Rafał Miłecki <zajec5@gmail.com>
2490 L:      linux-mips@linux-mips.org
2491 S:      Maintained
2492 F:      arch/mips/bcm47xx/*
2493 F:      arch/mips/include/asm/mach-bcm47xx/*
2494
2495 BROADCOM BCM5301X ARM ARCHITECTURE
2496 M:      Hauke Mehrtens <hauke@hauke-m.de>
2497 L:      linux-arm-kernel@lists.infradead.org
2498 S:      Maintained
2499 F:      arch/arm/mach-bcm/bcm_5301x.c
2500 F:      arch/arm/boot/dts/bcm5301x.dtsi
2501 F:      arch/arm/boot/dts/bcm470*
2502
2503 BROADCOM BCM63XX ARM ARCHITECTURE
2504 M:      Florian Fainelli <f.fainelli@gmail.com>
2505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2506 L:      bcm-kernel-feedback-list@broadcom.com
2507 T:      git git://github.com/broadcom/stblinux.git
2508 S:      Maintained
2509 F:      arch/arm/mach-bcm/bcm63xx.c
2510 F:      arch/arm/include/debug/bcm63xx.S
2511
2512 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2513 M:      Kevin Cernekee <cernekee@gmail.com>
2514 L:      linux-usb@vger.kernel.org
2515 S:      Maintained
2516 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2517
2518 BROADCOM BCM7XXX ARM ARCHITECTURE
2519 M:      Brian Norris <computersforpeace@gmail.com>
2520 M:      Gregory Fong <gregory.0xf0@gmail.com>
2521 M:      Florian Fainelli <f.fainelli@gmail.com>
2522 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2523 L:      bcm-kernel-feedback-list@broadcom.com
2524 T:      git git://github.com/broadcom/stblinux.git
2525 S:      Maintained
2526 F:      arch/arm/mach-bcm/*brcmstb*
2527 F:      arch/arm/boot/dts/bcm7*.dts*
2528 F:      drivers/bus/brcmstb_gisb.c
2529 N:      brcmstb
2530
2531 BROADCOM BMIPS MIPS ARCHITECTURE
2532 M:      Kevin Cernekee <cernekee@gmail.com>
2533 M:      Florian Fainelli <f.fainelli@gmail.com>
2534 L:      linux-mips@linux-mips.org
2535 T:      git git://github.com/broadcom/stblinux.git
2536 S:      Maintained
2537 F:      arch/mips/bmips/*
2538 F:      arch/mips/include/asm/mach-bmips/*
2539 F:      arch/mips/kernel/*bmips*
2540 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2541 F:      drivers/irqchip/irq-bcm63*
2542 F:      drivers/irqchip/irq-bcm7*
2543 F:      drivers/irqchip/irq-brcmstb*
2544 F:      include/linux/bcm963xx_nvram.h
2545 F:      include/linux/bcm963xx_tag.h
2546
2547 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2548 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2549 M:      Prashant Sreedharan <prashant@broadcom.com>
2550 M:      Michael Chan <mchan@broadcom.com>
2551 L:      netdev@vger.kernel.org
2552 S:      Supported
2553 F:      drivers/net/ethernet/broadcom/tg3.*
2554
2555 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2556 M:      Brett Rudley <brudley@broadcom.com>
2557 M:      Arend van Spriel <arend@broadcom.com>
2558 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2559 M:      Hante Meuleman <meuleman@broadcom.com>
2560 L:      linux-wireless@vger.kernel.org
2561 L:      brcm80211-dev-list@broadcom.com
2562 S:      Supported
2563 F:      drivers/net/wireless/broadcom/brcm80211/
2564
2565 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2566 M:      QLogic-Storage-Upstream@qlogic.com
2567 L:      linux-scsi@vger.kernel.org
2568 S:      Supported
2569 F:      drivers/scsi/bnx2fc/
2570
2571 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2572 M:      QLogic-Storage-Upstream@qlogic.com
2573 L:      linux-scsi@vger.kernel.org
2574 S:      Supported
2575 F:      drivers/scsi/bnx2i/
2576
2577 BROADCOM IPROC ARM ARCHITECTURE
2578 M:      Ray Jui <rjui@broadcom.com>
2579 M:      Scott Branden <sbranden@broadcom.com>
2580 M:      Jon Mason <jonmason@broadcom.com>
2581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2582 L:      bcm-kernel-feedback-list@broadcom.com
2583 T:      git git://github.com/broadcom/cygnus-linux.git
2584 S:      Maintained
2585 N:      iproc
2586 N:      cygnus
2587 N:      nsp
2588 N:      bcm9113*
2589 N:      bcm9583*
2590 N:      bcm9585*
2591 N:      bcm9586*
2592 N:      bcm988312
2593 N:      bcm113*
2594 N:      bcm583*
2595 N:      bcm585*
2596 N:      bcm586*
2597 N:      bcm88312
2598
2599 BROADCOM BRCMSTB GPIO DRIVER
2600 M:      Gregory Fong <gregory.0xf0@gmail.com>
2601 L:      bcm-kernel-feedback-list@broadcom.com
2602 S:      Supported
2603 F:      drivers/gpio/gpio-brcmstb.c
2604 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2605
2606 BROADCOM KONA GPIO DRIVER
2607 M:      Ray Jui <rjui@broadcom.com>
2608 L:      bcm-kernel-feedback-list@broadcom.com
2609 S:      Supported
2610 F:      drivers/gpio/gpio-bcm-kona.c
2611 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2612
2613 BROADCOM NVRAM DRIVER
2614 M:      Rafał Miłecki <zajec5@gmail.com>
2615 L:      linux-mips@linux-mips.org
2616 S:      Maintained
2617 F:      drivers/firmware/broadcom/*
2618
2619 BROADCOM STB NAND FLASH DRIVER
2620 M:      Brian Norris <computersforpeace@gmail.com>
2621 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2622 L:      linux-mtd@lists.infradead.org
2623 L:      bcm-kernel-feedback-list@broadcom.com
2624 S:      Maintained
2625 F:      drivers/mtd/nand/brcmnand/
2626
2627 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2628 M:      Rafał Miłecki <zajec5@gmail.com>
2629 L:      linux-wireless@vger.kernel.org
2630 S:      Maintained
2631 F:      drivers/bcma/
2632 F:      include/linux/bcma/
2633
2634 BROADCOM SYSTEMPORT ETHERNET DRIVER
2635 M:      Florian Fainelli <f.fainelli@gmail.com>
2636 L:      netdev@vger.kernel.org
2637 S:      Supported
2638 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2639
2640 BROADCOM VULCAN ARM64 SOC
2641 M:      Jayachandran C. <jchandra@broadcom.com>
2642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2643 L:      bcm-kernel-feedback-list@broadcom.com
2644 S:      Maintained
2645 F:      arch/arm64/boot/dts/broadcom/vulcan*
2646
2647 BROCADE BFA FC SCSI DRIVER
2648 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2649 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2650 L:      linux-scsi@vger.kernel.org
2651 S:      Supported
2652 F:      drivers/scsi/bfa/
2653
2654 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2655 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2656 L:      netdev@vger.kernel.org
2657 S:      Supported
2658 F:      drivers/net/ethernet/brocade/bna/
2659
2660 BSG (block layer generic sg v4 driver)
2661 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2662 L:      linux-scsi@vger.kernel.org
2663 S:      Supported
2664 F:      block/bsg.c
2665 F:      include/linux/bsg.h
2666 F:      include/uapi/linux/bsg.h
2667
2668 BT87X AUDIO DRIVER
2669 M:      Clemens Ladisch <clemens@ladisch.de>
2670 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2671 T:      git git://git.alsa-project.org/alsa-kernel.git
2672 S:      Maintained
2673 F:      Documentation/sound/alsa/Bt87x.txt
2674 F:      sound/pci/bt87x.c
2675
2676 BT8XXGPIO DRIVER
2677 M:      Michael Buesch <m@bues.ch>
2678 W:      http://bu3sch.de/btgpio.php
2679 S:      Maintained
2680 F:      drivers/gpio/gpio-bt8xx.c
2681
2682 BTRFS FILE SYSTEM
2683 M:      Chris Mason <clm@fb.com>
2684 M:      Josef Bacik <jbacik@fb.com>
2685 M:      David Sterba <dsterba@suse.com>
2686 L:      linux-btrfs@vger.kernel.org
2687 W:      http://btrfs.wiki.kernel.org/
2688 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2690 S:      Maintained
2691 F:      Documentation/filesystems/btrfs.txt
2692 F:      fs/btrfs/
2693
2694 BTTV VIDEO4LINUX DRIVER
2695 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2696 L:      linux-media@vger.kernel.org
2697 W:      https://linuxtv.org
2698 T:      git git://linuxtv.org/media_tree.git
2699 S:      Odd fixes
2700 F:      Documentation/video4linux/bttv/
2701 F:      drivers/media/pci/bt8xx/bttv*
2702
2703 BUSLOGIC SCSI DRIVER
2704 M:      Khalid Aziz <khalid@gonehiking.org>
2705 L:      linux-scsi@vger.kernel.org
2706 S:      Maintained
2707 F:      drivers/scsi/BusLogic.*
2708 F:      drivers/scsi/FlashPoint.*
2709
2710 C-MEDIA CMI8788 DRIVER
2711 M:      Clemens Ladisch <clemens@ladisch.de>
2712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2713 T:      git git://git.alsa-project.org/alsa-kernel.git
2714 S:      Maintained
2715 F:      sound/pci/oxygen/
2716
2717 C6X ARCHITECTURE
2718 M:      Mark Salter <msalter@redhat.com>
2719 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2720 L:      linux-c6x-dev@linux-c6x.org
2721 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2722 S:      Maintained
2723 F:      arch/c6x/
2724
2725 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2726 M:      David Howells <dhowells@redhat.com>
2727 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2728 S:      Supported
2729 F:      Documentation/filesystems/caching/cachefiles.txt
2730 F:      fs/cachefiles/
2731
2732 CADET FM/AM RADIO RECEIVER DRIVER
2733 M:      Hans Verkuil <hverkuil@xs4all.nl>
2734 L:      linux-media@vger.kernel.org
2735 T:      git git://linuxtv.org/media_tree.git
2736 W:      https://linuxtv.org
2737 S:      Maintained
2738 F:      drivers/media/radio/radio-cadet*
2739
2740 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2741 M:      Jonathan Corbet <corbet@lwn.net>
2742 L:      linux-media@vger.kernel.org
2743 T:      git git://linuxtv.org/media_tree.git
2744 S:      Maintained
2745 F:      Documentation/video4linux/cafe_ccic
2746 F:      drivers/media/platform/marvell-ccic/
2747
2748 CAIF NETWORK LAYER
2749 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2750 L:      netdev@vger.kernel.org
2751 S:      Supported
2752 F:      Documentation/networking/caif/
2753 F:      drivers/net/caif/
2754 F:      include/uapi/linux/caif/
2755 F:      include/net/caif/
2756 F:      net/caif/
2757
2758 CALGARY x86-64 IOMMU
2759 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2760 M:      "Jon D. Mason" <jdmason@kudzu.us>
2761 L:      discuss@x86-64.org
2762 S:      Maintained
2763 F:      arch/x86/kernel/pci-calgary_64.c
2764 F:      arch/x86/kernel/tce_64.c
2765 F:      arch/x86/include/asm/calgary.h
2766 F:      arch/x86/include/asm/tce.h
2767
2768 CAN NETWORK LAYER
2769 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2770 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2771 L:      linux-can@vger.kernel.org
2772 W:      https://github.com/linux-can
2773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2775 S:      Maintained
2776 F:      Documentation/networking/can.txt
2777 F:      net/can/
2778 F:      include/linux/can/core.h
2779 F:      include/uapi/linux/can.h
2780 F:      include/uapi/linux/can/bcm.h
2781 F:      include/uapi/linux/can/raw.h
2782 F:      include/uapi/linux/can/gw.h
2783
2784 CAN NETWORK DRIVERS
2785 M:      Wolfgang Grandegger <wg@grandegger.com>
2786 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2787 L:      linux-can@vger.kernel.org
2788 W:      https://github.com/linux-can
2789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2791 S:      Maintained
2792 F:      drivers/net/can/
2793 F:      include/linux/can/dev.h
2794 F:      include/linux/can/platform/
2795 F:      include/uapi/linux/can/error.h
2796 F:      include/uapi/linux/can/netlink.h
2797
2798 CAPABILITIES
2799 M:      Serge Hallyn <serge.hallyn@canonical.com>
2800 L:      linux-security-module@vger.kernel.org
2801 S:      Supported
2802 F:      include/linux/capability.h
2803 F:      include/uapi/linux/capability.h
2804 F:      security/commoncap.c
2805 F:      kernel/capability.c
2806
2807 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2808 M:      Kevin Tsai <ktsai@capellamicro.com>
2809 S:      Maintained
2810 F:      drivers/iio/light/cm*
2811 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2812
2813 CAVIUM LIQUIDIO NETWORK DRIVER
2814 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2815 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2816 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2817 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2818 L:     netdev@vger.kernel.org
2819 W:     http://www.cavium.com
2820 S:     Supported
2821 F:     drivers/net/ethernet/cavium/liquidio/
2822
2823 CC2520 IEEE-802.15.4 RADIO DRIVER
2824 M:      Varka Bhadram <varkabhadram@gmail.com>
2825 L:      linux-wpan@vger.kernel.org
2826 S:      Maintained
2827 F:      drivers/net/ieee802154/cc2520.c
2828 F:      include/linux/spi/cc2520.h
2829 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2830
2831 CELL BROADBAND ENGINE ARCHITECTURE
2832 M:      Arnd Bergmann <arnd@arndb.de>
2833 L:      linuxppc-dev@lists.ozlabs.org
2834 W:      http://www.ibm.com/developerworks/power/cell/
2835 S:      Supported
2836 F:      arch/powerpc/include/asm/cell*.h
2837 F:      arch/powerpc/include/asm/spu*.h
2838 F:      arch/powerpc/include/uapi/asm/spu*.h
2839 F:      arch/powerpc/oprofile/*cell*
2840 F:      arch/powerpc/platforms/cell/
2841
2842 CEPH COMMON CODE (LIBCEPH)
2843 M:      Ilya Dryomov <idryomov@gmail.com>
2844 M:      "Yan, Zheng" <zyan@redhat.com>
2845 M:      Sage Weil <sage@redhat.com>
2846 L:      ceph-devel@vger.kernel.org
2847 W:      http://ceph.com/
2848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2849 T:      git git://github.com/ceph/ceph-client.git
2850 S:      Supported
2851 F:      net/ceph/
2852 F:      include/linux/ceph/
2853 F:      include/linux/crush/
2854
2855 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2856 M:      "Yan, Zheng" <zyan@redhat.com>
2857 M:      Sage Weil <sage@redhat.com>
2858 M:      Ilya Dryomov <idryomov@gmail.com>
2859 L:      ceph-devel@vger.kernel.org
2860 W:      http://ceph.com/
2861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2862 T:      git git://github.com/ceph/ceph-client.git
2863 S:      Supported
2864 F:      Documentation/filesystems/ceph.txt
2865 F:      fs/ceph/
2866
2867 CERTIFICATE HANDLING:
2868 M:      David Howells <dhowells@redhat.com>
2869 M:      David Woodhouse <dwmw2@infradead.org>
2870 L:      keyrings@vger.kernel.org
2871 S:      Maintained
2872 F:      Documentation/module-signing.txt
2873 F:      certs/
2874 F:      scripts/sign-file.c
2875 F:      scripts/extract-cert.c
2876
2877 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2878 L:      linux-usb@vger.kernel.org
2879 S:      Orphan
2880 F:      Documentation/usb/WUSB-Design-overview.txt
2881 F:      Documentation/usb/wusb-cbaf
2882 F:      drivers/usb/host/hwa-hc.c
2883 F:      drivers/usb/host/whci/
2884 F:      drivers/usb/wusbcore/
2885 F:      include/linux/usb/wusb*
2886
2887 CFAG12864B LCD DRIVER
2888 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2889 W:      http://miguelojeda.es/auxdisplay.htm
2890 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2891 S:      Maintained
2892 F:      drivers/auxdisplay/cfag12864b.c
2893 F:      include/linux/cfag12864b.h
2894
2895 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2896 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2897 W:      http://miguelojeda.es/auxdisplay.htm
2898 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2899 S:      Maintained
2900 F:      drivers/auxdisplay/cfag12864bfb.c
2901 F:      include/linux/cfag12864b.h
2902
2903 CFG80211 and NL80211
2904 M:      Johannes Berg <johannes@sipsolutions.net>
2905 L:      linux-wireless@vger.kernel.org
2906 W:      http://wireless.kernel.org/
2907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2909 S:      Maintained
2910 F:      include/uapi/linux/nl80211.h
2911 F:      include/net/cfg80211.h
2912 F:      net/wireless/*
2913 X:      net/wireless/wext*
2914
2915 CHAR and MISC DRIVERS
2916 M:      Arnd Bergmann <arnd@arndb.de>
2917 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2919 S:      Supported
2920 F:      drivers/char/*
2921 F:      drivers/misc/*
2922 F:      include/linux/miscdevice.h
2923
2924 CHECKPATCH
2925 M:      Andy Whitcroft <apw@canonical.com>
2926 M:      Joe Perches <joe@perches.com>
2927 S:      Maintained
2928 F:      scripts/checkpatch.pl
2929
2930 CHINESE DOCUMENTATION
2931 M:      Harry Wei <harryxiyou@gmail.com>
2932 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2933 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2934 S:      Maintained
2935 F:      Documentation/zh_CN/
2936
2937 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2938 M:      Peter Chen <Peter.Chen@nxp.com>
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2940 L:      linux-usb@vger.kernel.org
2941 S:      Maintained
2942 F:      drivers/usb/chipidea/
2943
2944 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2945 M:      Hans de Goede <hdegoede@redhat.com>
2946 L:      linux-input@vger.kernel.org
2947 S:      Maintained
2948 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2949 F:      drivers/input/touchscreen/chipone_icn8318.c
2950
2951 CHROME HARDWARE PLATFORM SUPPORT
2952 M:      Olof Johansson <olof@lixom.net>
2953 S:      Maintained
2954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2955 F:      drivers/platform/chrome/
2956
2957 CISCO VIC ETHERNET NIC DRIVER
2958 M:      Christian Benvenuti <benve@cisco.com>
2959 M:      Sujith Sankar <ssujith@cisco.com>
2960 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2961 M:      Neel Patel <neepatel@cisco.com>
2962 S:      Supported
2963 F:      drivers/net/ethernet/cisco/enic/
2964
2965 CISCO VIC LOW LATENCY NIC DRIVER
2966 M:      Christian Benvenuti <benve@cisco.com>
2967 M:      Dave Goodell <dgoodell@cisco.com>
2968 S:      Supported
2969 F:      drivers/infiniband/hw/usnic/
2970
2971 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2972 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2973 L:      netdev@vger.kernel.org
2974 S:      Maintained
2975 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2976
2977 CIRRUS LOGIC AUDIO CODEC DRIVERS
2978 M:      Brian Austin <brian.austin@cirrus.com>
2979 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2981 S:      Maintained
2982 F:      sound/soc/codecs/cs*
2983
2984 CLEANCACHE API
2985 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2986 L:      linux-kernel@vger.kernel.org
2987 S:      Maintained
2988 F:      mm/cleancache.c
2989 F:      include/linux/cleancache.h
2990
2991 CLK API
2992 M:      Russell King <linux@armlinux.org.uk>
2993 L:      linux-clk@vger.kernel.org
2994 S:      Maintained
2995 F:      include/linux/clk.h
2996
2997 CLOCKSOURCE, CLOCKEVENT DRIVERS
2998 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2999 M:      Thomas Gleixner <tglx@linutronix.de>
3000 L:      linux-kernel@vger.kernel.org
3001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3002 S:      Supported
3003 F:      drivers/clocksource
3004
3005 CISCO FCOE HBA DRIVER
3006 M:      Hiral Patel <hiralpat@cisco.com>
3007 M:      Suma Ramars <sramars@cisco.com>
3008 M:      Brian Uchino <buchino@cisco.com>
3009 L:      linux-scsi@vger.kernel.org
3010 S:      Supported
3011 F:      drivers/scsi/fnic/
3012
3013 CISCO SCSI HBA DRIVER
3014 M:      Narsimhulu Musini <nmusini@cisco.com>
3015 M:      Sesidhar Baddela <sebaddel@cisco.com>
3016 L:      linux-scsi@vger.kernel.org
3017 S:      Supported
3018 F:      drivers/scsi/snic/
3019
3020 CMPC ACPI DRIVER
3021 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3022 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3023 L:      platform-driver-x86@vger.kernel.org
3024 S:      Supported
3025 F:      drivers/platform/x86/classmate-laptop.c
3026
3027 COBALT MEDIA DRIVER
3028 M:      Hans Verkuil <hans.verkuil@cisco.com>
3029 L:      linux-media@vger.kernel.org
3030 T:      git git://linuxtv.org/media_tree.git
3031 W:      https://linuxtv.org
3032 S:      Supported
3033 F:      drivers/media/pci/cobalt/
3034
3035 COCCINELLE/Semantic Patches (SmPL)
3036 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3037 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3038 M:      Nicolas Palix <nicolas.palix@imag.fr>
3039 M:      Michal Marek <mmarek@suse.com>
3040 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3042 W:      http://coccinelle.lip6.fr/
3043 S:      Supported
3044 F:      Documentation/coccinelle.txt
3045 F:      scripts/coccinelle/
3046 F:      scripts/coccicheck
3047
3048 CODA FILE SYSTEM
3049 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3050 M:      coda@cs.cmu.edu
3051 L:      codalist@coda.cs.cmu.edu
3052 W:      http://www.coda.cs.cmu.edu/
3053 S:      Maintained
3054 F:      Documentation/filesystems/coda.txt
3055 F:      fs/coda/
3056 F:      include/linux/coda*.h
3057 F:      include/uapi/linux/coda*.h
3058
3059 CODA V4L2 MEM2MEM DRIVER
3060 M:      Philipp Zabel <p.zabel@pengutronix.de>
3061 L:      linux-media@vger.kernel.org
3062 S:      Maintained
3063 F:      Documentation/devicetree/bindings/media/coda.txt
3064 F:      drivers/media/platform/coda/
3065
3066 COMMON CLK FRAMEWORK
3067 M:      Michael Turquette <mturquette@baylibre.com>
3068 M:      Stephen Boyd <sboyd@codeaurora.org>
3069 L:      linux-clk@vger.kernel.org
3070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3071 S:      Maintained
3072 F:      drivers/clk/
3073 X:      drivers/clk/clkdev.c
3074 F:      include/linux/clk-pr*
3075 F:      include/linux/clk/
3076
3077 COMMON INTERNET FILE SYSTEM (CIFS)
3078 M:      Steve French <sfrench@samba.org>
3079 L:      linux-cifs@vger.kernel.org
3080 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3081 W:      http://linux-cifs.samba.org/
3082 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3083 S:      Supported
3084 F:      Documentation/filesystems/cifs/
3085 F:      fs/cifs/
3086
3087 COMPACTPCI HOTPLUG CORE
3088 M:      Scott Murray <scott@spiteful.org>
3089 L:      linux-pci@vger.kernel.org
3090 S:      Maintained
3091 F:      drivers/pci/hotplug/cpci_hotplug*
3092
3093 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3094 M:      Scott Murray <scott@spiteful.org>
3095 L:      linux-pci@vger.kernel.org
3096 S:      Maintained
3097 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3098
3099 COMPACTPCI HOTPLUG GENERIC DRIVER
3100 M:      Scott Murray <scott@spiteful.org>
3101 L:      linux-pci@vger.kernel.org
3102 S:      Maintained
3103 F:      drivers/pci/hotplug/cpcihp_generic.c
3104
3105 COMPAL LAPTOP SUPPORT
3106 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3107 L:      platform-driver-x86@vger.kernel.org
3108 S:      Maintained
3109 F:      drivers/platform/x86/compal-laptop.c
3110
3111 CONEXANT ACCESSRUNNER USB DRIVER
3112 L:      accessrunner-general@lists.sourceforge.net
3113 W:      http://accessrunner.sourceforge.net/
3114 S:      Orphan
3115 F:      drivers/usb/atm/cxacru.c
3116
3117 CONFIGFS
3118 M:      Joel Becker <jlbec@evilplan.org>
3119 M:      Christoph Hellwig <hch@lst.de>
3120 T:      git git://git.infradead.org/users/hch/configfs.git
3121 S:      Supported
3122 F:      fs/configfs/
3123 F:      include/linux/configfs.h
3124
3125 CONNECTOR
3126 M:      Evgeniy Polyakov <zbr@ioremap.net>
3127 L:      netdev@vger.kernel.org
3128 S:      Maintained
3129 F:      drivers/connector/
3130
3131 CONTROL GROUP (CGROUP)
3132 M:      Tejun Heo <tj@kernel.org>
3133 M:      Li Zefan <lizefan@huawei.com>
3134 M:      Johannes Weiner <hannes@cmpxchg.org>
3135 L:      cgroups@vger.kernel.org
3136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3137 S:      Maintained
3138 F:      Documentation/cgroups/
3139 F:      include/linux/cgroup*
3140 F:      kernel/cgroup*
3141
3142 CONTROL GROUP - CPUSET
3143 M:      Li Zefan <lizefan@huawei.com>
3144 L:      cgroups@vger.kernel.org
3145 W:      http://www.bullopensource.org/cpuset/
3146 W:      http://oss.sgi.com/projects/cpusets/
3147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3148 S:      Maintained
3149 F:      Documentation/cgroups/cpusets.txt
3150 F:      include/linux/cpuset.h
3151 F:      kernel/cpuset.c
3152
3153 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3154 M:      Johannes Weiner <hannes@cmpxchg.org>
3155 M:      Michal Hocko <mhocko@kernel.org>
3156 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3157 L:      cgroups@vger.kernel.org
3158 L:      linux-mm@kvack.org
3159 S:      Maintained
3160 F:      mm/memcontrol.c
3161 F:      mm/swap_cgroup.c
3162
3163 CORETEMP HARDWARE MONITORING DRIVER
3164 M:      Fenghua Yu <fenghua.yu@intel.com>
3165 L:      linux-hwmon@vger.kernel.org
3166 S:      Maintained
3167 F:      Documentation/hwmon/coretemp
3168 F:      drivers/hwmon/coretemp.c
3169
3170 COSA/SRP SYNC SERIAL DRIVER
3171 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3172 W:      http://www.fi.muni.cz/~kas/cosa/
3173 S:      Maintained
3174 F:      drivers/net/wan/cosa*
3175
3176 CPMAC ETHERNET DRIVER
3177 M:      Florian Fainelli <florian@openwrt.org>
3178 L:      netdev@vger.kernel.org
3179 S:      Maintained
3180 F:      drivers/net/ethernet/ti/cpmac.c
3181
3182 CPU FREQUENCY DRIVERS
3183 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3184 M:      Viresh Kumar <viresh.kumar@linaro.org>
3185 L:      linux-pm@vger.kernel.org
3186 S:      Maintained
3187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3188 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3189 F:      drivers/cpufreq/
3190 F:      include/linux/cpufreq.h
3191
3192 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3193 M:      Viresh Kumar <viresh.kumar@linaro.org>
3194 M:      Sudeep Holla <sudeep.holla@arm.com>
3195 L:      linux-pm@vger.kernel.org
3196 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3197 S:      Maintained
3198 F:      drivers/cpufreq/arm_big_little.h
3199 F:      drivers/cpufreq/arm_big_little.c
3200 F:      drivers/cpufreq/arm_big_little_dt.c
3201
3202 CPUIDLE DRIVER - ARM BIG LITTLE
3203 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3204 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3205 L:      linux-pm@vger.kernel.org
3206 L:      linux-arm-kernel@lists.infradead.org
3207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3208 S:      Maintained
3209 F:      drivers/cpuidle/cpuidle-big_little.c
3210
3211 CPUIDLE DRIVER - ARM EXYNOS
3212 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3213 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3214 M:      Kukjin Kim <kgene@kernel.org>
3215 L:      linux-pm@vger.kernel.org
3216 L:      linux-samsung-soc@vger.kernel.org
3217 S:      Supported
3218 F:      drivers/cpuidle/cpuidle-exynos.c
3219 F:      arch/arm/mach-exynos/pm.c
3220
3221 CPUIDLE DRIVERS
3222 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3223 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3224 L:      linux-pm@vger.kernel.org
3225 S:      Maintained
3226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3227 F:      drivers/cpuidle/*
3228 F:      include/linux/cpuidle.h
3229
3230 CPUID/MSR DRIVER
3231 M:      "H. Peter Anvin" <hpa@zytor.com>
3232 S:      Maintained
3233 F:      arch/x86/kernel/cpuid.c
3234 F:      arch/x86/kernel/msr.c
3235
3236 CPU POWER MONITORING SUBSYSTEM
3237 M:      Thomas Renninger <trenn@suse.com>
3238 L:      linux-pm@vger.kernel.org
3239 S:      Maintained
3240 F:      tools/power/cpupower/
3241
3242 CRAMFS FILESYSTEM
3243 W:      http://sourceforge.net/projects/cramfs/
3244 S:      Orphan / Obsolete
3245 F:      Documentation/filesystems/cramfs.txt
3246 F:      fs/cramfs/
3247
3248 CRIS PORT
3249 M:      Mikael Starvik <starvik@axis.com>
3250 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3251 L:      linux-cris-kernel@axis.com
3252 W:      http://developer.axis.com
3253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3254 S:      Maintained
3255 F:      arch/cris/
3256 F:      drivers/tty/serial/crisv10.*
3257
3258 CRYPTO API
3259 M:      Herbert Xu <herbert@gondor.apana.org.au>
3260 M:      "David S. Miller" <davem@davemloft.net>
3261 L:      linux-crypto@vger.kernel.org
3262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3264 S:      Maintained
3265 F:      Documentation/crypto/
3266 F:      Documentation/DocBook/crypto-API.tmpl
3267 F:      arch/*/crypto/
3268 F:      crypto/
3269 F:      drivers/crypto/
3270 F:      include/crypto/
3271
3272 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3273 M:      Neil Horman <nhorman@tuxdriver.com>
3274 L:      linux-crypto@vger.kernel.org
3275 S:      Maintained
3276 F:      crypto/ansi_cprng.c
3277 F:      crypto/rng.c
3278
3279 CS3308 MEDIA DRIVER
3280 M:      Hans Verkuil <hverkuil@xs4all.nl>
3281 L:      linux-media@vger.kernel.org
3282 T:      git git://linuxtv.org/media_tree.git
3283 W:      http://linuxtv.org
3284 S:      Odd Fixes
3285 F:      drivers/media/i2c/cs3308.c
3286 F:      drivers/media/i2c/cs3308.h
3287
3288 CS5535 Audio ALSA driver
3289 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3290 S:      Maintained
3291 F:      sound/pci/cs5535audio/
3292
3293 CW1200 WLAN driver
3294 M:      Solomon Peachy <pizza@shaftnet.org>
3295 S:      Maintained
3296 F:      drivers/net/wireless/st/cw1200/
3297
3298 CX18 VIDEO4LINUX DRIVER
3299 M:      Andy Walls <awalls@md.metrocast.net>
3300 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3301 L:      linux-media@vger.kernel.org
3302 T:      git git://linuxtv.org/media_tree.git
3303 W:      https://linuxtv.org
3304 W:      http://www.ivtvdriver.org/index.php/Cx18
3305 S:      Maintained
3306 F:      Documentation/video4linux/cx18.txt
3307 F:      drivers/media/pci/cx18/
3308 F:      include/uapi/linux/ivtv*
3309
3310 CX2341X MPEG ENCODER HELPER MODULE
3311 M:      Hans Verkuil <hverkuil@xs4all.nl>
3312 L:      linux-media@vger.kernel.org
3313 T:      git git://linuxtv.org/media_tree.git
3314 W:      https://linuxtv.org
3315 S:      Maintained
3316 F:      drivers/media/common/cx2341x*
3317 F:      include/media/cx2341x*
3318
3319 CX24120 MEDIA DRIVER
3320 M:      Jemma Denson <jdenson@gmail.com>
3321 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3322 L:      linux-media@vger.kernel.org
3323 W:      https://linuxtv.org
3324 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3325 S:      Maintained
3326 F:      drivers/media/dvb-frontends/cx24120*
3327
3328 CX88 VIDEO4LINUX DRIVER
3329 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3330 L:      linux-media@vger.kernel.org
3331 W:      https://linuxtv.org
3332 T:      git git://linuxtv.org/media_tree.git
3333 S:      Odd fixes
3334 F:      Documentation/video4linux/cx88/
3335 F:      drivers/media/pci/cx88/
3336
3337 CXD2820R MEDIA DRIVER
3338 M:      Antti Palosaari <crope@iki.fi>
3339 L:      linux-media@vger.kernel.org
3340 W:      https://linuxtv.org
3341 W:      http://palosaari.fi/linux/
3342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3343 T:      git git://linuxtv.org/anttip/media_tree.git
3344 S:      Maintained
3345 F:      drivers/media/dvb-frontends/cxd2820r*
3346
3347 CXGB3 ETHERNET DRIVER (CXGB3)
3348 M:      Santosh Raspatur <santosh@chelsio.com>
3349 L:      netdev@vger.kernel.org
3350 W:      http://www.chelsio.com
3351 S:      Supported
3352 F:      drivers/net/ethernet/chelsio/cxgb3/
3353
3354 CXGB3 ISCSI DRIVER (CXGB3I)
3355 M:      Karen Xie <kxie@chelsio.com>
3356 L:      linux-scsi@vger.kernel.org
3357 W:      http://www.chelsio.com
3358 S:      Supported
3359 F:      drivers/scsi/cxgbi/cxgb3i
3360
3361 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3362 M:      Steve Wise <swise@chelsio.com>
3363 L:      linux-rdma@vger.kernel.org
3364 W:      http://www.openfabrics.org
3365 S:      Supported
3366 F:      drivers/infiniband/hw/cxgb3/
3367
3368 CXGB4 ETHERNET DRIVER (CXGB4)
3369 M:      Hariprasad S <hariprasad@chelsio.com>
3370 L:      netdev@vger.kernel.org
3371 W:      http://www.chelsio.com
3372 S:      Supported
3373 F:      drivers/net/ethernet/chelsio/cxgb4/
3374
3375 CXGB4 ISCSI DRIVER (CXGB4I)
3376 M:      Karen Xie <kxie@chelsio.com>
3377 L:      linux-scsi@vger.kernel.org
3378 W:      http://www.chelsio.com
3379 S:      Supported
3380 F:      drivers/scsi/cxgbi/cxgb4i
3381
3382 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3383 M:      Steve Wise <swise@chelsio.com>
3384 L:      linux-rdma@vger.kernel.org
3385 W:      http://www.openfabrics.org
3386 S:      Supported
3387 F:      drivers/infiniband/hw/cxgb4/
3388
3389 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3390 M:      Casey Leedom <leedom@chelsio.com>
3391 L:      netdev@vger.kernel.org
3392 W:      http://www.chelsio.com
3393 S:      Supported
3394 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3395
3396 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3397 M:      Ian Munsie <imunsie@au1.ibm.com>
3398 M:      Michael Neuling <mikey@neuling.org>
3399 L:      linuxppc-dev@lists.ozlabs.org
3400 S:      Supported
3401 F:      drivers/misc/cxl/
3402 F:      include/misc/cxl*
3403 F:      include/uapi/misc/cxl.h
3404 F:      Documentation/powerpc/cxl.txt
3405 F:      Documentation/powerpc/cxl.txt
3406 F:      Documentation/ABI/testing/sysfs-class-cxl
3407
3408 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3409 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3410 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3411 L:      linux-scsi@vger.kernel.org
3412 S:      Supported
3413 F:      drivers/scsi/cxlflash/
3414 F:      include/uapi/scsi/cxlflash_ioctls.h
3415 F:      Documentation/powerpc/cxlflash.txt
3416
3417 STMMAC ETHERNET DRIVER
3418 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3419 M:      Alexandre Torgue <alexandre.torgue@st.com>
3420 L:      netdev@vger.kernel.org
3421 W:      http://www.stlinux.com
3422 S:      Supported
3423 F:      drivers/net/ethernet/stmicro/stmmac/
3424
3425 CYBERPRO FB DRIVER
3426 M:      Russell King <linux@armlinux.org.uk>
3427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3428 W:      http://www.armlinux.org.uk/
3429 S:      Maintained
3430 F:      drivers/video/fbdev/cyber2000fb.*
3431
3432 CYCLADES ASYNC MUX DRIVER
3433 W:      http://www.cyclades.com/
3434 S:      Orphan
3435 F:      drivers/tty/cyclades.c
3436 F:      include/linux/cyclades.h
3437 F:      include/uapi/linux/cyclades.h
3438
3439 CYCLADES PC300 DRIVER
3440 W:      http://www.cyclades.com/
3441 S:      Orphan
3442 F:      drivers/net/wan/pc300*
3443
3444 CYPRESS_FIRMWARE MEDIA DRIVER
3445 M:      Antti Palosaari <crope@iki.fi>
3446 L:      linux-media@vger.kernel.org
3447 W:      https://linuxtv.org
3448 W:      http://palosaari.fi/linux/
3449 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3450 T:      git git://linuxtv.org/anttip/media_tree.git
3451 S:      Maintained
3452 F:      drivers/media/common/cypress_firmware*
3453
3454 CYTTSP TOUCHSCREEN DRIVER
3455 M:      Ferruh Yigit <fery@cypress.com>
3456 L:      linux-input@vger.kernel.org
3457 S:      Supported
3458 F:      drivers/input/touchscreen/cyttsp*
3459 F:      include/linux/input/cyttsp.h
3460
3461 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3462 M:      Joshua Kinard <kumba@gentoo.org>
3463 S:      Maintained
3464 F:      drivers/rtc/rtc-ds1685.c
3465 F:      include/linux/rtc/ds1685.h
3466
3467 DAMA SLAVE for AX.25
3468 M:      Joerg Reuter <jreuter@yaina.de>
3469 W:      http://yaina.de/jreuter/
3470 W:      http://www.qsl.net/dl1bke/
3471 L:      linux-hams@vger.kernel.org
3472 S:      Maintained
3473 F:      net/ax25/af_ax25.c
3474 F:      net/ax25/ax25_dev.c
3475 F:      net/ax25/ax25_ds_*
3476 F:      net/ax25/ax25_in.c
3477 F:      net/ax25/ax25_out.c
3478 F:      net/ax25/ax25_timer.c
3479 F:      net/ax25/sysctl_net_ax25.c
3480
3481 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3482 L:      netdev@vger.kernel.org
3483 S:      Orphan
3484 F:      Documentation/networking/dmfe.txt
3485 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3486
3487 DC390/AM53C974 SCSI driver
3488 M:      Hannes Reinecke <hare@suse.com>
3489 L:      linux-scsi@vger.kernel.org
3490 S:      Maintained
3491 F:      drivers/scsi/am53c974.c
3492
3493 DC395x SCSI driver
3494 M:      Oliver Neukum <oliver@neukum.org>
3495 M:      Ali Akcaagac <aliakc@web.de>
3496 M:      Jamie Lenehan <lenehan@twibble.org>
3497 L:      dc395x@twibble.org
3498 W:      http://twibble.org/dist/dc395x/
3499 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3500 S:      Maintained
3501 F:      Documentation/scsi/dc395x.txt
3502 F:      drivers/scsi/dc395x.*
3503
3504 DCCP PROTOCOL
3505 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3506 L:      dccp@vger.kernel.org
3507 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3508 S:      Maintained
3509 F:      include/linux/dccp.h
3510 F:      include/uapi/linux/dccp.h
3511 F:      include/linux/tfrc.h
3512 F:      net/dccp/
3513
3514 DECnet NETWORK LAYER
3515 W:      http://linux-decnet.sourceforge.net
3516 L:      linux-decnet-user@lists.sourceforge.net
3517 S:      Orphan
3518 F:      Documentation/networking/decnet.txt
3519 F:      net/decnet/
3520
3521 DECSTATION PLATFORM SUPPORT
3522 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3523 L:      linux-mips@linux-mips.org
3524 W:      http://www.linux-mips.org/wiki/DECstation
3525 S:      Maintained
3526 F:      arch/mips/dec/
3527 F:      arch/mips/include/asm/dec/
3528 F:      arch/mips/include/asm/mach-dec/
3529
3530 DEFXX FDDI NETWORK DRIVER
3531 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3532 S:      Maintained
3533 F:      drivers/net/fddi/defxx.*
3534
3535 DELL LAPTOP DRIVER
3536 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3537 M:      Pali Rohár <pali.rohar@gmail.com>
3538 L:      platform-driver-x86@vger.kernel.org
3539 S:      Maintained
3540 F:      drivers/platform/x86/dell-laptop.c
3541
3542 DELL LAPTOP RBTN DRIVER
3543 M:      Pali Rohár <pali.rohar@gmail.com>
3544 S:      Maintained
3545 F:      drivers/platform/x86/dell-rbtn.*
3546
3547 DELL LAPTOP FREEFALL DRIVER
3548 M:      Pali Rohár <pali.rohar@gmail.com>
3549 S:      Maintained
3550 F:      drivers/platform/x86/dell-smo8800.c
3551
3552 DELL LAPTOP SMM DRIVER
3553 M:      Pali Rohár <pali.rohar@gmail.com>
3554 S:      Maintained
3555 F:      drivers/hwmon/dell-smm-hwmon.c
3556 F:      include/uapi/linux/i8k.h
3557
3558 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3559 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3560 S:      Maintained
3561 F:      Documentation/dcdbas.txt
3562 F:      drivers/firmware/dcdbas.*
3563
3564 DELL WMI EXTRAS DRIVER
3565 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3566 M:      Pali Rohár <pali.rohar@gmail.com>
3567 S:      Maintained
3568 F:      drivers/platform/x86/dell-wmi.c
3569
3570 DESIGNWARE USB2 DRD IP DRIVER
3571 M:      John Youn <johnyoun@synopsys.com>
3572 L:      linux-usb@vger.kernel.org
3573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3574 S:      Maintained
3575 F:      drivers/usb/dwc2/
3576
3577 DESIGNWARE USB3 DRD IP DRIVER
3578 M:      Felipe Balbi <balbi@kernel.org>
3579 L:      linux-usb@vger.kernel.org
3580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3581 S:      Maintained
3582 F:      drivers/usb/dwc3/
3583
3584 DEVICE COREDUMP (DEV_COREDUMP)
3585 M:      Johannes Berg <johannes@sipsolutions.net>
3586 L:      linux-kernel@vger.kernel.org
3587 S:      Maintained
3588 F:      drivers/base/devcoredump.c
3589 F:      include/linux/devcoredump.h
3590
3591 DEVICE FREQUENCY (DEVFREQ)
3592 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3593 M:      Kyungmin Park <kyungmin.park@samsung.com>
3594 L:      linux-pm@vger.kernel.org
3595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3596 S:      Maintained
3597 F:      drivers/devfreq/
3598 F:      include/linux/devfreq.h
3599 F:      Documentation/devicetree/bindings/devfreq/
3600
3601 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3602 M:      Chanwoo Choi <cw00.choi@samsung.com>
3603 L:      linux-pm@vger.kernel.org
3604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3605 S:      Supported
3606 F:      drivers/devfreq/event/
3607 F:      drivers/devfreq/devfreq-event.c
3608 F:      include/linux/devfreq-event.h
3609 F:      Documentation/devicetree/bindings/devfreq/event/
3610
3611 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3612 M:      Chanwoo Choi <cw00.choi@samsung.com>
3613 L:      linux-pm@vger.kernel.org
3614 L:      linux-samsung-soc@vger.kernel.org
3615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3616 S:      Maintained
3617 F:      drivers/devfreq/exynos-bus.c
3618 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3619
3620 DEVICE NUMBER REGISTRY
3621 M:      Torben Mathiasen <device@lanana.org>
3622 W:      http://lanana.org/docs/device-list/index.html
3623 S:      Maintained
3624
3625 DEVICE-MAPPER  (LVM)
3626 M:      Alasdair Kergon <agk@redhat.com>
3627 M:      Mike Snitzer <snitzer@redhat.com>
3628 M:      dm-devel@redhat.com
3629 L:      dm-devel@redhat.com
3630 W:      http://sources.redhat.com/dm
3631 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3633 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3634 S:      Maintained
3635 F:      Documentation/device-mapper/
3636 F:      drivers/md/dm*
3637 F:      drivers/md/persistent-data/
3638 F:      include/linux/device-mapper.h
3639 F:      include/linux/dm-*.h
3640 F:      include/uapi/linux/dm-*.h
3641
3642 DEVLINK
3643 M:      Jiri Pirko <jiri@mellanox.com>
3644 L:      netdev@vger.kernel.org
3645 S:      Supported
3646 F:      net/core/devlink.c
3647 F:      include/net/devlink.h
3648 F:      include/uapi/linux/devlink.h
3649
3650 DIALOG SEMICONDUCTOR DRIVERS
3651 M:      Support Opensource <support.opensource@diasemi.com>
3652 W:      http://www.dialog-semiconductor.com/products
3653 S:      Supported
3654 F:      Documentation/hwmon/da90??
3655 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3656 F:      drivers/gpio/gpio-da90??.c
3657 F:      drivers/hwmon/da90??-hwmon.c
3658 F:      drivers/iio/adc/da91??-*.c
3659 F:      drivers/input/misc/da90??_onkey.c
3660 F:      drivers/input/touchscreen/da9052_tsi.c
3661 F:      drivers/leds/leds-da90??.c
3662 F:      drivers/mfd/da903x.c
3663 F:      drivers/mfd/da90??-*.c
3664 F:      drivers/mfd/da91??-*.c
3665 F:      drivers/power/da9052-battery.c
3666 F:      drivers/power/da91??-*.c
3667 F:      drivers/regulator/da903x.c
3668 F:      drivers/regulator/da9???-regulator.[ch]
3669 F:      drivers/rtc/rtc-da90??.c
3670 F:      drivers/video/backlight/da90??_bl.c
3671 F:      drivers/watchdog/da90??_wdt.c
3672 F:      include/linux/mfd/da903x.h
3673 F:      include/linux/mfd/da9052/
3674 F:      include/linux/mfd/da9055/
3675 F:      include/linux/mfd/da9063/
3676 F:      include/linux/mfd/da9150/
3677 F:      include/sound/da[79]*.h
3678 F:      sound/soc/codecs/da[79]*.[ch]
3679
3680 DIGI NEO AND CLASSIC PCI PRODUCTS
3681 M:      Lidza Louina <lidza.louina@gmail.com>
3682 M:      Mark Hounschell <markh@compro.net>
3683 L:      driverdev-devel@linuxdriverproject.org
3684 S:      Maintained
3685 F:      drivers/staging/dgnc/
3686
3687 DIOLAN U2C-12 I2C DRIVER
3688 M:      Guenter Roeck <linux@roeck-us.net>
3689 L:      linux-i2c@vger.kernel.org
3690 S:      Maintained
3691 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3692
3693 DIRECT ACCESS (DAX)
3694 M:      Matthew Wilcox <willy@linux.intel.com>
3695 L:      linux-fsdevel@vger.kernel.org
3696 S:      Supported
3697 F:      fs/dax.c
3698
3699 DIRECTORY NOTIFICATION (DNOTIFY)
3700 M:      Eric Paris <eparis@parisplace.org>
3701 S:      Maintained
3702 F:      Documentation/filesystems/dnotify.txt
3703 F:      fs/notify/dnotify/
3704 F:      include/linux/dnotify.h
3705
3706 DISK GEOMETRY AND PARTITION HANDLING
3707 M:      Andries Brouwer <aeb@cwi.nl>
3708 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3709 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3710 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3711 S:      Maintained
3712
3713 DISKQUOTA
3714 M:      Jan Kara <jack@suse.com>
3715 S:      Maintained
3716 F:      Documentation/filesystems/quota.txt
3717 F:      fs/quota/
3718 F:      include/linux/quota*.h
3719 F:      include/uapi/linux/quota*.h
3720
3721 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3722 M:      Bernie Thompson <bernie@plugable.com>
3723 L:      linux-fbdev@vger.kernel.org
3724 S:      Maintained
3725 W:      http://plugable.com/category/projects/udlfb/
3726 F:      drivers/video/fbdev/udlfb.c
3727 F:      include/video/udlfb.h
3728 F:      Documentation/fb/udlfb.txt
3729
3730 DISTRIBUTED LOCK MANAGER (DLM)
3731 M:      Christine Caulfield <ccaulfie@redhat.com>
3732 M:      David Teigland <teigland@redhat.com>
3733 L:      cluster-devel@redhat.com
3734 W:      http://sources.redhat.com/cluster/
3735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3736 S:      Supported
3737 F:      fs/dlm/
3738
3739 DMA BUFFER SHARING FRAMEWORK
3740 M:      Sumit Semwal <sumit.semwal@linaro.org>
3741 S:      Maintained
3742 L:      linux-media@vger.kernel.org
3743 L:      dri-devel@lists.freedesktop.org
3744 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3745 F:      drivers/dma-buf/
3746 F:      include/linux/dma-buf*
3747 F:      include/linux/reservation.h
3748 F:      include/linux/*fence.h
3749 F:      Documentation/dma-buf-sharing.txt
3750 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3751
3752 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3753 M:      Vinod Koul <vinod.koul@intel.com>
3754 L:      dmaengine@vger.kernel.org
3755 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3756 S:      Maintained
3757 F:      drivers/dma/
3758 F:      include/linux/dmaengine.h
3759 F:      Documentation/dmaengine/
3760 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3761
3762 DME1737 HARDWARE MONITOR DRIVER
3763 M:      Juerg Haefliger <juergh@gmail.com>
3764 L:      linux-hwmon@vger.kernel.org
3765 S:      Maintained
3766 F:      Documentation/hwmon/dme1737
3767 F:      drivers/hwmon/dme1737.c
3768
3769 DMI/SMBIOS SUPPORT
3770 M:      Jean Delvare <jdelvare@suse.com>
3771 S:      Maintained
3772 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3773 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3774 F:      drivers/firmware/dmi-id.c
3775 F:      drivers/firmware/dmi_scan.c
3776 F:      include/linux/dmi.h
3777
3778 DOCUMENTATION
3779 M:      Jonathan Corbet <corbet@lwn.net>
3780 L:      linux-doc@vger.kernel.org
3781 S:      Maintained
3782 F:      Documentation/
3783 F:      scripts/docproc.c
3784 F:      scripts/kernel-doc*
3785 X:      Documentation/ABI/
3786 X:      Documentation/devicetree/
3787 X:      Documentation/acpi
3788 X:      Documentation/power
3789 X:      Documentation/spi
3790 X:      Documentation/DocBook/media
3791 T:      git git://git.lwn.net/linux.git docs-next
3792
3793 DOUBLETALK DRIVER
3794 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3795 L:      blinux-list@redhat.com
3796 S:      Maintained
3797 F:      drivers/char/dtlk.c
3798 F:      include/linux/dtlk.h
3799
3800 DPT_I2O SCSI RAID DRIVER
3801 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3802 L:      linux-scsi@vger.kernel.org
3803 W:      http://www.adaptec.com/
3804 S:      Maintained
3805 F:      drivers/scsi/dpt*
3806 F:      drivers/scsi/dpt/
3807
3808 DRBD DRIVER
3809 M:      Philipp Reisner <philipp.reisner@linbit.com>
3810 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3811 L:      drbd-dev@lists.linbit.com
3812 W:      http://www.drbd.org
3813 T:      git git://git.linbit.com/linux-drbd.git
3814 T:      git git://git.linbit.com/drbd-8.4.git
3815 S:      Supported
3816 F:      drivers/block/drbd/
3817 F:      lib/lru_cache.c
3818 F:      Documentation/blockdev/drbd/
3819
3820 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3821 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3823 S:      Supported
3824 F:      Documentation/kobject.txt
3825 F:      drivers/base/
3826 F:      fs/debugfs/
3827 F:      fs/kernfs/
3828 F:      fs/sysfs/
3829 F:      include/linux/debugfs.h
3830 F:      include/linux/kobj*
3831 F:      lib/kobj*
3832
3833 DRM DRIVERS
3834 M:      David Airlie <airlied@linux.ie>
3835 L:      dri-devel@lists.freedesktop.org
3836 T:      git git://people.freedesktop.org/~airlied/linux
3837 S:      Maintained
3838 F:      drivers/gpu/drm/
3839 F:      drivers/gpu/vga/
3840 F:      include/drm/
3841 F:      include/uapi/drm/
3842
3843 RADEON and AMDGPU DRM DRIVERS
3844 M:      Alex Deucher <alexander.deucher@amd.com>
3845 M:      Christian König <christian.koenig@amd.com>
3846 L:      dri-devel@lists.freedesktop.org
3847 T:      git git://people.freedesktop.org/~agd5f/linux
3848 S:      Supported
3849 F:      drivers/gpu/drm/radeon/
3850 F:      include/uapi/drm/radeon*
3851 F:      drivers/gpu/drm/amd/
3852 F:      include/uapi/drm/amdgpu*
3853
3854 DRM PANEL DRIVERS
3855 M:      Thierry Reding <thierry.reding@gmail.com>
3856 L:      dri-devel@lists.freedesktop.org
3857 T:      git git://anongit.freedesktop.org/tegra/linux.git
3858 S:      Maintained
3859 F:      drivers/gpu/drm/drm_panel.c
3860 F:      drivers/gpu/drm/panel/
3861 F:      include/drm/drm_panel.h
3862 F:      Documentation/devicetree/bindings/display/panel/
3863
3864 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3865 M:      Daniel Vetter <daniel.vetter@intel.com>
3866 M:      Jani Nikula <jani.nikula@linux.intel.com>
3867 L:      intel-gfx@lists.freedesktop.org
3868 L:      dri-devel@lists.freedesktop.org
3869 W:      https://01.org/linuxgraphics/
3870 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3871 T:      git git://anongit.freedesktop.org/drm-intel
3872 S:      Supported
3873 F:      drivers/gpu/drm/i915/
3874 F:      include/drm/i915*
3875 F:      include/uapi/drm/i915*
3876
3877 DRM DRIVERS FOR ATMEL HLCDC
3878 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3879 L:      dri-devel@lists.freedesktop.org
3880 S:      Supported
3881 F:      drivers/gpu/drm/atmel-hlcdc/
3882 F:      Documentation/devicetree/bindings/drm/atmel/
3883
3884 DRM DRIVERS FOR EXYNOS
3885 M:      Inki Dae <inki.dae@samsung.com>
3886 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3887 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3888 M:      Kyungmin Park <kyungmin.park@samsung.com>
3889 L:      dri-devel@lists.freedesktop.org
3890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3891 S:      Supported
3892 F:      drivers/gpu/drm/exynos/
3893 F:      include/drm/exynos*
3894 F:      include/uapi/drm/exynos*
3895
3896 DRM DRIVERS FOR FREESCALE DCU
3897 M:      Stefan Agner <stefan@agner.ch>
3898 M:      Alison Wang <alison.wang@freescale.com>
3899 L:      dri-devel@lists.freedesktop.org
3900 S:      Supported
3901 F:      drivers/gpu/drm/fsl-dcu/
3902 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3903 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3904
3905 DRM DRIVERS FOR FREESCALE IMX
3906 M:      Philipp Zabel <p.zabel@pengutronix.de>
3907 L:      dri-devel@lists.freedesktop.org
3908 S:      Maintained
3909 F:      drivers/gpu/drm/imx/
3910 F:      drivers/gpu/ipu-v3/
3911 F:      Documentation/devicetree/bindings/display/imx/
3912
3913 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3914 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3915 L:      dri-devel@lists.freedesktop.org
3916 T:      git git://github.com/patjak/drm-gma500
3917 S:      Maintained
3918 F:      drivers/gpu/drm/gma500
3919 F:      include/drm/gma500*
3920
3921 DRM DRIVERS FOR NVIDIA TEGRA
3922 M:      Thierry Reding <thierry.reding@gmail.com>
3923 M:      Terje Bergström <tbergstrom@nvidia.com>
3924 L:      dri-devel@lists.freedesktop.org
3925 L:      linux-tegra@vger.kernel.org
3926 T:      git git://anongit.freedesktop.org/tegra/linux.git
3927 S:      Supported
3928 F:      drivers/gpu/drm/tegra/
3929 F:      drivers/gpu/host1x/
3930 F:      include/linux/host1x.h
3931 F:      include/uapi/drm/tegra_drm.h
3932 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3933
3934 DRM DRIVERS FOR RENESAS
3935 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3936 L:      dri-devel@lists.freedesktop.org
3937 L:      linux-renesas-soc@vger.kernel.org
3938 T:      git git://people.freedesktop.org/~airlied/linux
3939 S:      Supported
3940 F:      drivers/gpu/drm/rcar-du/
3941 F:      drivers/gpu/drm/shmobile/
3942 F:      include/linux/platform_data/shmob_drm.h
3943
3944 DRM DRIVERS FOR ROCKCHIP
3945 M:      Mark Yao <mark.yao@rock-chips.com>
3946 L:      dri-devel@lists.freedesktop.org
3947 S:      Maintained
3948 F:      drivers/gpu/drm/rockchip/
3949 F:      Documentation/devicetree/bindings/display/rockchip*
3950
3951 DRM DRIVERS FOR STI
3952 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3953 M:      Vincent Abriou <vincent.abriou@st.com>
3954 L:      dri-devel@lists.freedesktop.org
3955 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3956 S:      Maintained
3957 F:      drivers/gpu/drm/sti
3958 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3959
3960 DRM DRIVERS FOR VIVANTE GPU IP
3961 M:      Lucas Stach <l.stach@pengutronix.de>
3962 R:      Russell King <linux+etnaviv@armlinux.org.uk>
3963 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3964 L:      dri-devel@lists.freedesktop.org
3965 S:      Maintained
3966 F:      drivers/gpu/drm/etnaviv
3967 F:      Documentation/devicetree/bindings/display/etnaviv
3968
3969 DSBR100 USB FM RADIO DRIVER
3970 M:      Alexey Klimov <klimov.linux@gmail.com>
3971 L:      linux-media@vger.kernel.org
3972 T:      git git://linuxtv.org/media_tree.git
3973 S:      Maintained
3974 F:      drivers/media/radio/dsbr100.c
3975
3976 DSCC4 DRIVER
3977 M:      Francois Romieu <romieu@fr.zoreil.com>
3978 L:      netdev@vger.kernel.org
3979 S:      Maintained
3980 F:      drivers/net/wan/dscc4.c
3981
3982 DT3155 MEDIA DRIVER
3983 M:      Hans Verkuil <hverkuil@xs4all.nl>
3984 L:      linux-media@vger.kernel.org
3985 T:      git git://linuxtv.org/media_tree.git
3986 W:      https://linuxtv.org
3987 S:      Odd Fixes
3988 F:      drivers/media/pci/dt3155/
3989
3990 DVB_USB_AF9015 MEDIA DRIVER
3991 M:      Antti Palosaari <crope@iki.fi>
3992 L:      linux-media@vger.kernel.org
3993 W:      https://linuxtv.org
3994 W:      http://palosaari.fi/linux/
3995 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3996 T:      git git://linuxtv.org/anttip/media_tree.git
3997 S:      Maintained
3998 F:      drivers/media/usb/dvb-usb-v2/af9015*
3999
4000 DVB_USB_AF9035 MEDIA DRIVER
4001 M:      Antti Palosaari <crope@iki.fi>
4002 L:      linux-media@vger.kernel.org
4003 W:      https://linuxtv.org
4004 W:      http://palosaari.fi/linux/
4005 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4006 T:      git git://linuxtv.org/anttip/media_tree.git
4007 S:      Maintained
4008 F:      drivers/media/usb/dvb-usb-v2/af9035*
4009
4010 DVB_USB_ANYSEE MEDIA DRIVER
4011 M:      Antti Palosaari <crope@iki.fi>
4012 L:      linux-media@vger.kernel.org
4013 W:      https://linuxtv.org
4014 W:      http://palosaari.fi/linux/
4015 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4016 T:      git git://linuxtv.org/anttip/media_tree.git
4017 S:      Maintained
4018 F:      drivers/media/usb/dvb-usb-v2/anysee*
4019
4020 DVB_USB_AU6610 MEDIA DRIVER
4021 M:      Antti Palosaari <crope@iki.fi>
4022 L:      linux-media@vger.kernel.org
4023 W:      https://linuxtv.org
4024 W:      http://palosaari.fi/linux/
4025 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4026 T:      git git://linuxtv.org/anttip/media_tree.git
4027 S:      Maintained
4028 F:      drivers/media/usb/dvb-usb-v2/au6610*
4029
4030 DVB_USB_CE6230 MEDIA DRIVER
4031 M:      Antti Palosaari <crope@iki.fi>
4032 L:      linux-media@vger.kernel.org
4033 W:      https://linuxtv.org
4034 W:      http://palosaari.fi/linux/
4035 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4036 T:      git git://linuxtv.org/anttip/media_tree.git
4037 S:      Maintained
4038 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4039
4040 DVB_USB_CXUSB MEDIA DRIVER
4041 M:      Michael Krufky <mkrufky@linuxtv.org>
4042 L:      linux-media@vger.kernel.org
4043 W:      https://linuxtv.org
4044 W:      http://github.com/mkrufky
4045 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4046 T:      git git://linuxtv.org/media_tree.git
4047 S:      Maintained
4048 F:      drivers/media/usb/dvb-usb/cxusb*
4049
4050 DVB_USB_EC168 MEDIA DRIVER
4051 M:      Antti Palosaari <crope@iki.fi>
4052 L:      linux-media@vger.kernel.org
4053 W:      https://linuxtv.org
4054 W:      http://palosaari.fi/linux/
4055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4056 T:      git git://linuxtv.org/anttip/media_tree.git
4057 S:      Maintained
4058 F:      drivers/media/usb/dvb-usb-v2/ec168*
4059
4060 DVB_USB_GL861 MEDIA DRIVER
4061 M:      Antti Palosaari <crope@iki.fi>
4062 L:      linux-media@vger.kernel.org
4063 W:      https://linuxtv.org
4064 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4065 T:      git git://linuxtv.org/anttip/media_tree.git
4066 S:      Maintained
4067 F:      drivers/media/usb/dvb-usb-v2/gl861*
4068
4069 DVB_USB_MXL111SF MEDIA DRIVER
4070 M:      Michael Krufky <mkrufky@linuxtv.org>
4071 L:      linux-media@vger.kernel.org
4072 W:      https://linuxtv.org
4073 W:      http://github.com/mkrufky
4074 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4075 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4076 S:      Maintained
4077 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4078
4079 DVB_USB_RTL28XXU MEDIA DRIVER
4080 M:      Antti Palosaari <crope@iki.fi>
4081 L:      linux-media@vger.kernel.org
4082 W:      https://linuxtv.org
4083 W:      http://palosaari.fi/linux/
4084 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4085 T:      git git://linuxtv.org/anttip/media_tree.git
4086 S:      Maintained
4087 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4088
4089 DVB_USB_V2 MEDIA DRIVER
4090 M:      Antti Palosaari <crope@iki.fi>
4091 L:      linux-media@vger.kernel.org
4092 W:      https://linuxtv.org
4093 W:      http://palosaari.fi/linux/
4094 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4095 T:      git git://linuxtv.org/anttip/media_tree.git
4096 S:      Maintained
4097 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4098 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4099
4100 DYNAMIC DEBUG
4101 M:      Jason Baron <jbaron@akamai.com>
4102 S:      Maintained
4103 F:      lib/dynamic_debug.c
4104 F:      include/linux/dynamic_debug.h
4105
4106 DZ DECSTATION DZ11 SERIAL DRIVER
4107 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4108 S:      Maintained
4109 F:      drivers/tty/serial/dz.*
4110
4111 E3X0 POWER BUTTON DRIVER
4112 M:      Moritz Fischer <moritz.fischer@ettus.com>
4113 L:      usrp-users@lists.ettus.com
4114 W:      http://www.ettus.com
4115 S:      Supported
4116 F:      drivers/input/misc/e3x0-button.c
4117 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4118
4119 E4000 MEDIA DRIVER
4120 M:      Antti Palosaari <crope@iki.fi>
4121 L:      linux-media@vger.kernel.org
4122 W:      https://linuxtv.org
4123 W:      http://palosaari.fi/linux/
4124 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4125 T:      git git://linuxtv.org/anttip/media_tree.git
4126 S:      Maintained
4127 F:      drivers/media/tuners/e4000*
4128
4129 EATA ISA/EISA/PCI SCSI DRIVER
4130 M:      Dario Ballabio <ballabio_dario@emc.com>
4131 L:      linux-scsi@vger.kernel.org
4132 S:      Maintained
4133 F:      drivers/scsi/eata.c
4134
4135 EC100 MEDIA DRIVER
4136 M:      Antti Palosaari <crope@iki.fi>
4137 L:      linux-media@vger.kernel.org
4138 W:      https://linuxtv.org
4139 W:      http://palosaari.fi/linux/
4140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4141 T:      git git://linuxtv.org/anttip/media_tree.git
4142 S:      Maintained
4143 F:      drivers/media/dvb-frontends/ec100*
4144
4145 ECRYPT FILE SYSTEM
4146 M:      Tyler Hicks <tyhicks@canonical.com>
4147 L:      ecryptfs@vger.kernel.org
4148 W:      http://ecryptfs.org
4149 W:      https://launchpad.net/ecryptfs
4150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4151 S:      Supported
4152 F:      Documentation/filesystems/ecryptfs.txt
4153 F:      fs/ecryptfs/
4154
4155 EDAC-CORE
4156 M:      Doug Thompson <dougthompson@xmission.com>
4157 M:      Borislav Petkov <bp@alien8.de>
4158 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4159 L:      linux-edac@vger.kernel.org
4160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4162 S:      Supported
4163 F:      Documentation/edac.txt
4164 F:      drivers/edac/
4165 F:      include/linux/edac.h
4166
4167 EDAC-AMD64
4168 M:      Doug Thompson <dougthompson@xmission.com>
4169 M:      Borislav Petkov <bp@alien8.de>
4170 L:      linux-edac@vger.kernel.org
4171 S:      Maintained
4172 F:      drivers/edac/amd64_edac*
4173
4174 EDAC-CALXEDA
4175 M:      Doug Thompson <dougthompson@xmission.com>
4176 M:      Robert Richter <rric@kernel.org>
4177 L:      linux-edac@vger.kernel.org
4178 S:      Maintained
4179 F:      drivers/edac/highbank*
4180
4181 EDAC-CAVIUM
4182 M:      Ralf Baechle <ralf@linux-mips.org>
4183 M:      David Daney <david.daney@cavium.com>
4184 L:      linux-edac@vger.kernel.org
4185 L:      linux-mips@linux-mips.org
4186 S:      Supported
4187 F:      drivers/edac/octeon_edac*
4188
4189 EDAC-E752X
4190 M:      Mark Gross <mark.gross@intel.com>
4191 M:      Doug Thompson <dougthompson@xmission.com>
4192 L:      linux-edac@vger.kernel.org
4193 S:      Maintained
4194 F:      drivers/edac/e752x_edac.c
4195
4196 EDAC-E7XXX
4197 M:      Doug Thompson <dougthompson@xmission.com>
4198 L:      linux-edac@vger.kernel.org
4199 S:      Maintained
4200 F:      drivers/edac/e7xxx_edac.c
4201
4202 EDAC-GHES
4203 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4204 L:      linux-edac@vger.kernel.org
4205 S:      Maintained
4206 F:      drivers/edac/ghes_edac.c
4207
4208 EDAC-I82443BXGX
4209 M:      Tim Small <tim@buttersideup.com>
4210 L:      linux-edac@vger.kernel.org
4211 S:      Maintained
4212 F:      drivers/edac/i82443bxgx_edac.c
4213
4214 EDAC-I3000
4215 M:      Jason Uhlenkott <juhlenko@akamai.com>
4216 L:      linux-edac@vger.kernel.org
4217 S:      Maintained
4218 F:      drivers/edac/i3000_edac.c
4219
4220 EDAC-I5000
4221 M:      Doug Thompson <dougthompson@xmission.com>
4222 L:      linux-edac@vger.kernel.org
4223 S:      Maintained
4224 F:      drivers/edac/i5000_edac.c
4225
4226 EDAC-I5400
4227 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4228 L:      linux-edac@vger.kernel.org
4229 S:      Maintained
4230 F:      drivers/edac/i5400_edac.c
4231
4232 EDAC-I7300
4233 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4234 L:      linux-edac@vger.kernel.org
4235 S:      Maintained
4236 F:      drivers/edac/i7300_edac.c
4237
4238 EDAC-I7CORE
4239 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4240 L:      linux-edac@vger.kernel.org
4241 S:      Maintained
4242 F:      drivers/edac/i7core_edac.c
4243
4244 EDAC-I82975X
4245 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4246 M:      "Arvind R." <arvino55@gmail.com>
4247 L:      linux-edac@vger.kernel.org
4248 S:      Maintained
4249 F:      drivers/edac/i82975x_edac.c
4250
4251 EDAC-IE31200
4252 M:      Jason Baron <jbaron@akamai.com>
4253 L:      linux-edac@vger.kernel.org
4254 S:      Maintained
4255 F:      drivers/edac/ie31200_edac.c
4256
4257 EDAC-MPC85XX
4258 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4259 L:      linux-edac@vger.kernel.org
4260 S:      Maintained
4261 F:      drivers/edac/mpc85xx_edac.[ch]
4262
4263 EDAC-PASEMI
4264 M:      Egor Martovetsky <egor@pasemi.com>
4265 L:      linux-edac@vger.kernel.org
4266 S:      Maintained
4267 F:      drivers/edac/pasemi_edac.c
4268
4269 EDAC-R82600
4270 M:      Tim Small <tim@buttersideup.com>
4271 L:      linux-edac@vger.kernel.org
4272 S:      Maintained
4273 F:      drivers/edac/r82600_edac.c
4274
4275 EDAC-SBRIDGE
4276 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4277 L:      linux-edac@vger.kernel.org
4278 S:      Maintained
4279 F:      drivers/edac/sb_edac.c
4280
4281 EDAC-XGENE
4282 APPLIED MICRO (APM) X-GENE SOC EDAC
4283 M:     Loc Ho <lho@apm.com>
4284 S:     Supported
4285 F:     drivers/edac/xgene_edac.c
4286 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4287
4288 EDIROL UA-101/UA-1000 DRIVER
4289 M:      Clemens Ladisch <clemens@ladisch.de>
4290 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4291 T:      git git://git.alsa-project.org/alsa-kernel.git
4292 S:      Maintained
4293 F:      sound/usb/misc/ua101.c
4294
4295 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4296 M:      Matt Fleming <matt@codeblueprint.co.uk>
4297 L:      linux-efi@vger.kernel.org
4298 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4299 S:      Maintained
4300 F:      Documentation/efi-stub.txt
4301 F:      arch/ia64/kernel/efi.c
4302 F:      arch/x86/boot/compressed/eboot.[ch]
4303 F:      arch/x86/include/asm/efi.h
4304 F:      arch/x86/platform/efi/
4305 F:      drivers/firmware/efi/
4306 F:      include/linux/efi*.h
4307
4308 EFI VARIABLE FILESYSTEM
4309 M:      Matthew Garrett <matthew.garrett@nebula.com>
4310 M:      Jeremy Kerr <jk@ozlabs.org>
4311 M:      Matt Fleming <matt@codeblueprint.co.uk>
4312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4313 L:      linux-efi@vger.kernel.org
4314 S:      Maintained
4315 F:      fs/efivarfs/
4316
4317 EFIFB FRAMEBUFFER DRIVER
4318 L:      linux-fbdev@vger.kernel.org
4319 M:      Peter Jones <pjones@redhat.com>
4320 S:      Maintained
4321 F:      drivers/video/fbdev/efifb.c
4322
4323 EFS FILESYSTEM
4324 W:      http://aeschi.ch.eu.org/efs/
4325 S:      Orphan
4326 F:      fs/efs/
4327
4328 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4329 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4330 L:      netdev@vger.kernel.org
4331 S:      Maintained
4332 F:      drivers/net/ethernet/ibm/ehea/
4333
4334 EM28XX VIDEO4LINUX DRIVER
4335 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4336 L:      linux-media@vger.kernel.org
4337 W:      https://linuxtv.org
4338 T:      git git://linuxtv.org/media_tree.git
4339 S:      Maintained
4340 F:      drivers/media/usb/em28xx/
4341
4342 EMBEDDED LINUX
4343 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4344 M:      Matt Mackall <mpm@selenic.com>
4345 M:      David Woodhouse <dwmw2@infradead.org>
4346 L:      linux-embedded@vger.kernel.org
4347 S:      Maintained
4348
4349 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4350 M:      James Smart <james.smart@avagotech.com>
4351 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4352 L:      linux-scsi@vger.kernel.org
4353 W:      http://www.avagotech.com
4354 S:      Supported
4355 F:      drivers/scsi/lpfc/
4356
4357 ENE CB710 FLASH CARD READER DRIVER
4358 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4359 S:      Maintained
4360 F:      drivers/misc/cb710/
4361 F:      drivers/mmc/host/cb710-mmc.*
4362 F:      include/linux/cb710.h
4363
4364 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4365 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4366 S:      Maintained
4367 F:      drivers/media/rc/ene_ir.*
4368
4369 EPSON S1D13XXX FRAMEBUFFER DRIVER
4370 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4371 S:      Maintained
4372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4373 F:      drivers/video/fbdev/s1d13xxxfb.c
4374 F:      include/video/s1d13xxxfb.h
4375
4376 ET131X NETWORK DRIVER
4377 M:      Mark Einon <mark.einon@gmail.com>
4378 S:      Odd Fixes
4379 F:      drivers/net/ethernet/agere/
4380
4381 ETHERNET BRIDGE
4382 M:      Stephen Hemminger <stephen@networkplumber.org>
4383 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4384 L:      netdev@vger.kernel.org
4385 W:      http://www.linuxfoundation.org/en/Net:Bridge
4386 S:      Maintained
4387 F:      include/linux/netfilter_bridge/
4388 F:      net/bridge/
4389
4390 ETHERNET PHY LIBRARY
4391 M:      Florian Fainelli <f.fainelli@gmail.com>
4392 L:      netdev@vger.kernel.org
4393 S:      Maintained
4394 F:      include/linux/phy.h
4395 F:      include/linux/phy_fixed.h
4396 F:      drivers/net/phy/
4397 F:      Documentation/networking/phy.txt
4398 F:      drivers/of/of_mdio.c
4399 F:      drivers/of/of_net.c
4400
4401 EXT2 FILE SYSTEM
4402 M:      Jan Kara <jack@suse.com>
4403 L:      linux-ext4@vger.kernel.org
4404 S:      Maintained
4405 F:      Documentation/filesystems/ext2.txt
4406 F:      fs/ext2/
4407 F:      include/linux/ext2*
4408
4409 EXT4 FILE SYSTEM
4410 M:      "Theodore Ts'o" <tytso@mit.edu>
4411 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4412 L:      linux-ext4@vger.kernel.org
4413 W:      http://ext4.wiki.kernel.org
4414 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4416 S:      Maintained
4417 F:      Documentation/filesystems/ext4.txt
4418 F:      fs/ext4/
4419
4420 Extended Verification Module (EVM)
4421 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4422 L:      linux-ima-devel@lists.sourceforge.net
4423 L:      linux-security-module@vger.kernel.org
4424 S:      Supported
4425 F:      security/integrity/evm/
4426
4427 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4428 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4429 M:      Chanwoo Choi <cw00.choi@samsung.com>
4430 L:      linux-kernel@vger.kernel.org
4431 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4432 S:      Maintained
4433 F:      drivers/extcon/
4434 F:      include/linux/extcon/
4435 F:      include/linux/extcon.h
4436 F:      Documentation/extcon/
4437 F:      Documentation/devicetree/bindings/extcon/
4438
4439 EXYNOS DP DRIVER
4440 M:      Jingoo Han <jingoohan1@gmail.com>
4441 L:      dri-devel@lists.freedesktop.org
4442 S:      Maintained
4443 F:      drivers/gpu/drm/exynos/exynos_dp*
4444
4445 EXYNOS SYSMMU (IOMMU) driver
4446 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4447 L:      iommu@lists.linux-foundation.org
4448 S:      Maintained
4449 F:      drivers/iommu/exynos-iommu.c
4450
4451 EXYNOS MIPI DISPLAY DRIVERS
4452 M:      Inki Dae <inki.dae@samsung.com>
4453 M:      Donghwa Lee <dh09.lee@samsung.com>
4454 M:      Kyungmin Park <kyungmin.park@samsung.com>
4455 L:      linux-fbdev@vger.kernel.org
4456 S:      Maintained
4457 F:      drivers/video/fbdev/exynos/exynos_mipi*
4458 F:      include/video/exynos_mipi*
4459
4460 EZchip NPS platform support
4461 M:      Noam Camus <noamc@ezchip.com>
4462 S:      Supported
4463 F:      arch/arc/plat-eznps
4464 F:      arch/arc/boot/dts/eznps.dts
4465
4466 F71805F HARDWARE MONITORING DRIVER
4467 M:      Jean Delvare <jdelvare@suse.com>
4468 L:      linux-hwmon@vger.kernel.org
4469 S:      Maintained
4470 F:      Documentation/hwmon/f71805f
4471 F:      drivers/hwmon/f71805f.c
4472
4473 FC0011 TUNER DRIVER
4474 M:      Michael Buesch <m@bues.ch>
4475 L:      linux-media@vger.kernel.org
4476 S:      Maintained
4477 F:      drivers/media/tuners/fc0011.h
4478 F:      drivers/media/tuners/fc0011.c
4479
4480 FC2580 MEDIA DRIVER
4481 M:      Antti Palosaari <crope@iki.fi>
4482 L:      linux-media@vger.kernel.org
4483 W:      https://linuxtv.org
4484 W:      http://palosaari.fi/linux/
4485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4486 T:      git git://linuxtv.org/anttip/media_tree.git
4487 S:      Maintained
4488 F:      drivers/media/tuners/fc2580*
4489
4490 FANOTIFY
4491 M:      Eric Paris <eparis@redhat.com>
4492 S:      Maintained
4493 F:      fs/notify/fanotify/
4494 F:      include/linux/fanotify.h
4495 F:      include/uapi/linux/fanotify.h
4496
4497 FARSYNC SYNCHRONOUS DRIVER
4498 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4499 W:      http://www.farsite.co.uk/
4500 S:      Supported
4501 F:      drivers/net/wan/farsync.*
4502
4503 FAULT INJECTION SUPPORT
4504 M:      Akinobu Mita <akinobu.mita@gmail.com>
4505 S:      Supported
4506 F:      Documentation/fault-injection/
4507 F:      lib/fault-inject.c
4508
4509 FBTFT Framebuffer drivers
4510 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4511 M:      Noralf Trønnes <noralf@tronnes.org>
4512 S:      Maintained
4513 F:      drivers/staging/fbtft/
4514
4515 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4516 M:      Vasu Dev <vasu.dev@intel.com>
4517 L:      fcoe-devel@open-fcoe.org
4518 W:      www.Open-FCoE.org
4519 S:      Supported
4520 F:      drivers/scsi/libfc/
4521 F:      drivers/scsi/fcoe/
4522 F:      include/scsi/fc/
4523 F:      include/scsi/libfc.h
4524 F:      include/scsi/libfcoe.h
4525 F:      include/uapi/scsi/fc/
4526
4527 FILE LOCKING (flock() and fcntl()/lockf())
4528 M:      Jeff Layton <jlayton@poochiereds.net>
4529 M:      "J. Bruce Fields" <bfields@fieldses.org>
4530 L:      linux-fsdevel@vger.kernel.org
4531 S:      Maintained
4532 F:      include/linux/fcntl.h
4533 F:      include/linux/fs.h
4534 F:      include/uapi/linux/fcntl.h
4535 F:      include/uapi/linux/fs.h
4536 F:      fs/fcntl.c
4537 F:      fs/locks.c
4538
4539 FILESYSTEMS (VFS and infrastructure)
4540 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4541 L:      linux-fsdevel@vger.kernel.org
4542 S:      Maintained
4543 F:      fs/*
4544
4545 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4546 M:      Riku Voipio <riku.voipio@iki.fi>
4547 L:      linux-hwmon@vger.kernel.org
4548 S:      Maintained
4549 F:      drivers/hwmon/f75375s.c
4550 F:      include/linux/f75375s.h
4551
4552 FIREWIRE AUDIO DRIVERS
4553 M:      Clemens Ladisch <clemens@ladisch.de>
4554 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4555 T:      git git://git.alsa-project.org/alsa-kernel.git
4556 S:      Maintained
4557 F:      sound/firewire/
4558
4559 FIREWIRE MEDIA DRIVERS (firedtv)
4560 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4561 L:      linux-media@vger.kernel.org
4562 L:      linux1394-devel@lists.sourceforge.net
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4564 S:      Maintained
4565 F:      drivers/media/firewire/
4566
4567 FIREWIRE SBP-2 TARGET
4568 M:      Chris Boot <bootc@bootc.net>
4569 L:      linux-scsi@vger.kernel.org
4570 L:      target-devel@vger.kernel.org
4571 L:      linux1394-devel@lists.sourceforge.net
4572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4573 S:      Maintained
4574 F:      drivers/target/sbp/
4575
4576 FIREWIRE SUBSYSTEM
4577 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4578 L:      linux1394-devel@lists.sourceforge.net
4579 W:      http://ieee1394.wiki.kernel.org/
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4581 S:      Maintained
4582 F:      drivers/firewire/
4583 F:      include/linux/firewire.h
4584 F:      include/uapi/linux/firewire*.h
4585 F:      tools/firewire/
4586
4587 FIRMWARE LOADER (request_firmware)
4588 M:      Ming Lei <ming.lei@canonical.com>
4589 L:      linux-kernel@vger.kernel.org
4590 S:      Maintained
4591 F:      Documentation/firmware_class/
4592 F:      drivers/base/firmware*.c
4593 F:      include/linux/firmware.h
4594
4595 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4596 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4597 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4598 S:      Maintained
4599 F:      drivers/block/rsxx/
4600
4601 FLOPPY DRIVER
4602 M:      Jiri Kosina <jikos@kernel.org>
4603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4604 S:      Odd fixes
4605 F:      drivers/block/floppy.c
4606
4607 FMC SUBSYSTEM
4608 M:      Alessandro Rubini <rubini@gnudd.com>
4609 W:      http://www.ohwr.org/projects/fmc-bus
4610 S:      Supported
4611 F:      drivers/fmc/
4612 F:      include/linux/fmc*.h
4613 F:      include/linux/ipmi-fru.h
4614 K:      fmc_d.*register
4615
4616 FPGA MANAGER FRAMEWORK
4617 M:      Alan Tull <atull@opensource.altera.com>
4618 R:      Moritz Fischer <moritz.fischer@ettus.com>
4619 S:      Maintained
4620 F:      drivers/fpga/
4621 F:      include/linux/fpga/fpga-mgr.h
4622 W:      http://www.rocketboards.org
4623
4624 FPU EMULATOR
4625 M:      Bill Metzenthen <billm@melbpc.org.au>
4626 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4627 S:      Maintained
4628 F:      arch/x86/math-emu/
4629
4630 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4631 L:      netdev@vger.kernel.org
4632 S:      Orphan
4633 F:      drivers/net/wan/dlci.c
4634 F:      drivers/net/wan/sdla.c
4635
4636 FRAMEBUFFER LAYER
4637 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4638 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4639 L:      linux-fbdev@vger.kernel.org
4640 W:      http://linux-fbdev.sourceforge.net/
4641 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4643 S:      Maintained
4644 F:      Documentation/fb/
4645 F:      drivers/video/
4646 F:      include/video/
4647 F:      include/linux/fb.h
4648 F:      include/uapi/video/
4649 F:      include/uapi/linux/fb.h
4650
4651 FREESCALE DIU FRAMEBUFFER DRIVER
4652 M:      Timur Tabi <timur@tabi.org>
4653 L:      linux-fbdev@vger.kernel.org
4654 S:      Maintained
4655 F:      drivers/video/fbdev/fsl-diu-fb.*
4656
4657 FREESCALE DMA DRIVER
4658 M:      Li Yang <leoli@freescale.com>
4659 M:      Zhang Wei <zw@zh-kernel.org>
4660 L:      linuxppc-dev@lists.ozlabs.org
4661 S:      Maintained
4662 F:      drivers/dma/fsldma.*
4663
4664 FREESCALE GPMI NAND DRIVER
4665 M:      Han Xu <han.xu@nxp.com>
4666 L:      linux-mtd@lists.infradead.org
4667 S:      Maintained
4668 F:      drivers/mtd/nand/gpmi-nand/*
4669
4670 FREESCALE I2C CPM DRIVER
4671 M:      Jochen Friedrich <jochen@scram.de>
4672 L:      linuxppc-dev@lists.ozlabs.org
4673 L:      linux-i2c@vger.kernel.org
4674 S:      Maintained
4675 F:      drivers/i2c/busses/i2c-cpm.c
4676
4677 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4678 M:      Sascha Hauer <kernel@pengutronix.de>
4679 L:      linux-fbdev@vger.kernel.org
4680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4681 S:      Maintained
4682 F:      include/linux/platform_data/video-imxfb.h
4683 F:      drivers/video/fbdev/imxfb.c
4684
4685 FREESCALE QUAD SPI DRIVER
4686 M:      Han Xu <han.xu@nxp.com>
4687 L:      linux-mtd@lists.infradead.org
4688 S:      Maintained
4689 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4690
4691 FREESCALE SOC FS_ENET DRIVER
4692 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4693 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4694 L:      linuxppc-dev@lists.ozlabs.org
4695 L:      netdev@vger.kernel.org
4696 S:      Maintained
4697 F:      drivers/net/ethernet/freescale/fs_enet/
4698 F:      include/linux/fs_enet_pd.h
4699
4700 FREESCALE IMX / MXC FEC DRIVER
4701 M:      Fugang Duan <fugang.duan@nxp.com>
4702 L:      netdev@vger.kernel.org
4703 S:      Maintained
4704 F:      drivers/net/ethernet/freescale/fec_main.c
4705 F:      drivers/net/ethernet/freescale/fec_ptp.c
4706 F:      drivers/net/ethernet/freescale/fec.h
4707 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4708
4709 FREESCALE QUICC ENGINE LIBRARY
4710 L:      linuxppc-dev@lists.ozlabs.org
4711 S:      Orphan
4712 F:      drivers/soc/fsl/qe/
4713 F:      include/soc/fsl/*qe*.h
4714 F:      include/soc/fsl/*ucc*.h
4715
4716 FREESCALE USB PERIPHERAL DRIVERS
4717 M:      Li Yang <leoli@freescale.com>
4718 L:      linux-usb@vger.kernel.org
4719 L:      linuxppc-dev@lists.ozlabs.org
4720 S:      Maintained
4721 F:      drivers/usb/gadget/udc/fsl*
4722
4723 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4724 M:      Li Yang <leoli@freescale.com>
4725 L:      netdev@vger.kernel.org
4726 L:      linuxppc-dev@lists.ozlabs.org
4727 S:      Maintained
4728 F:      drivers/net/ethernet/freescale/ucc_geth*
4729
4730 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4731 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4732 L:      netdev@vger.kernel.org
4733 S:      Maintained
4734 F:      drivers/net/ethernet/freescale/gianfar*
4735 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4736 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4737
4738 FREESCALE QUICC ENGINE UCC UART DRIVER
4739 M:      Timur Tabi <timur@tabi.org>
4740 L:      linuxppc-dev@lists.ozlabs.org
4741 S:      Maintained
4742 F:      drivers/tty/serial/ucc_uart.c
4743
4744 FREESCALE SOC SOUND DRIVERS
4745 M:      Timur Tabi <timur@tabi.org>
4746 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4747 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4748 R:      Fabio Estevam <fabio.estevam@nxp.com>
4749 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4750 L:      linuxppc-dev@lists.ozlabs.org
4751 S:      Maintained
4752 F:      sound/soc/fsl/fsl*
4753 F:      sound/soc/fsl/imx*
4754 F:      sound/soc/fsl/mpc8610_hpcd.c
4755
4756 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4757 M:      "J. German Rivera" <German.Rivera@freescale.com>
4758 M:      Stuart Yoder <stuart.yoder@nxp.com>
4759 L:      linux-kernel@vger.kernel.org
4760 S:      Maintained
4761 F:      drivers/staging/fsl-mc/
4762
4763 FREEVXFS FILESYSTEM
4764 M:      Christoph Hellwig <hch@infradead.org>
4765 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4766 S:      Maintained
4767 F:      fs/freevxfs/
4768
4769 FREEZER
4770 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4771 M:      Pavel Machek <pavel@ucw.cz>
4772 L:      linux-pm@vger.kernel.org
4773 S:      Supported
4774 F:      Documentation/power/freezing-of-tasks.txt
4775 F:      include/linux/freezer.h
4776 F:      kernel/freezer.c
4777
4778 FRONTSWAP API
4779 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4780 L:      linux-kernel@vger.kernel.org
4781 S:      Maintained
4782 F:      mm/frontswap.c
4783 F:      include/linux/frontswap.h
4784
4785 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4786 M:      David Howells <dhowells@redhat.com>
4787 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4788 S:      Supported
4789 F:      Documentation/filesystems/caching/
4790 F:      fs/fscache/
4791 F:      include/linux/fscache*.h
4792
4793 F2FS FILE SYSTEM
4794 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4795 M:      Changman Lee <cm224.lee@samsung.com>
4796 R:      Chao Yu <yuchao0@huawei.com>
4797 L:      linux-f2fs-devel@lists.sourceforge.net
4798 W:      http://en.wikipedia.org/wiki/F2FS
4799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4800 S:      Maintained
4801 F:      Documentation/filesystems/f2fs.txt
4802 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4803 F:      fs/f2fs/
4804 F:      include/linux/f2fs_fs.h
4805 F:      include/trace/events/f2fs.h
4806
4807 FUJITSU FR-V (FRV) PORT
4808 S:      Orphan
4809 F:      arch/frv/
4810
4811 FUJITSU LAPTOP EXTRAS
4812 M:      Jonathan Woithe <jwoithe@just42.net>
4813 L:      platform-driver-x86@vger.kernel.org
4814 S:      Maintained
4815 F:      drivers/platform/x86/fujitsu-laptop.c
4816
4817 FUJITSU M-5MO LS CAMERA ISP DRIVER
4818 M:      Kyungmin Park <kyungmin.park@samsung.com>
4819 M:      Heungjun Kim <riverful.kim@samsung.com>
4820 L:      linux-media@vger.kernel.org
4821 S:      Maintained
4822 F:      drivers/media/i2c/m5mols/
4823 F:      include/media/i2c/m5mols.h
4824
4825 FUJITSU TABLET EXTRAS
4826 M:      Robert Gerlach <khnz@gmx.de>
4827 L:      platform-driver-x86@vger.kernel.org
4828 S:      Maintained
4829 F:      drivers/platform/x86/fujitsu-tablet.c
4830
4831 FUSE: FILESYSTEM IN USERSPACE
4832 M:      Miklos Szeredi <miklos@szeredi.hu>
4833 L:      linux-fsdevel@vger.kernel.org
4834 W:      http://fuse.sourceforge.net/
4835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4836 S:      Maintained
4837 F:      fs/fuse/
4838 F:      include/uapi/linux/fuse.h
4839 F:      Documentation/filesystems/fuse.txt
4840
4841 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4842 M:      Rik Faith <faith@cs.unc.edu>
4843 L:      linux-scsi@vger.kernel.org
4844 S:      Odd Fixes (e.g., new signatures)
4845 F:      drivers/scsi/fdomain.*
4846
4847 GCOV BASED KERNEL PROFILING
4848 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4849 S:      Maintained
4850 F:      kernel/gcov/
4851 F:      Documentation/gcov.txt
4852
4853 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4854 M:      Achim Leubner <achim_leubner@adaptec.com>
4855 L:      linux-scsi@vger.kernel.org
4856 W:      http://www.icp-vortex.com/
4857 S:      Supported
4858 F:      drivers/scsi/gdt*
4859
4860 GDB KERNEL DEBUGGING HELPER SCRIPTS
4861 M:      Jan Kiszka <jan.kiszka@siemens.com>
4862 M:      Kieran Bingham <kieran@bingham.xyz>
4863 S:      Supported
4864 F:      scripts/gdb/
4865
4866 GEMTEK FM RADIO RECEIVER DRIVER
4867 M:      Hans Verkuil <hverkuil@xs4all.nl>
4868 L:      linux-media@vger.kernel.org
4869 T:      git git://linuxtv.org/media_tree.git
4870 W:      https://linuxtv.org
4871 S:      Maintained
4872 F:      drivers/media/radio/radio-gemtek*
4873
4874 GENERIC GPIO I2C DRIVER
4875 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4876 S:      Supported
4877 F:      drivers/i2c/busses/i2c-gpio.c
4878 F:      include/linux/i2c-gpio.h
4879
4880 GENERIC GPIO I2C MULTIPLEXER DRIVER
4881 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4882 L:      linux-i2c@vger.kernel.org
4883 S:      Supported
4884 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4885 F:      include/linux/i2c-mux-gpio.h
4886 F:      Documentation/i2c/muxes/i2c-mux-gpio
4887
4888 GENERIC HDLC (WAN) DRIVERS
4889 M:      Krzysztof Halasa <khc@pm.waw.pl>
4890 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4891 S:      Maintained
4892 F:      drivers/net/wan/c101.c
4893 F:      drivers/net/wan/hd6457*
4894 F:      drivers/net/wan/hdlc*
4895 F:      drivers/net/wan/n2.c
4896 F:      drivers/net/wan/pc300too.c
4897 F:      drivers/net/wan/pci200syn.c
4898 F:      drivers/net/wan/wanxl*
4899
4900 GENERIC INCLUDE/ASM HEADER FILES
4901 M:      Arnd Bergmann <arnd@arndb.de>
4902 L:      linux-arch@vger.kernel.org
4903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4904 S:      Maintained
4905 F:      include/asm-generic/
4906 F:      include/uapi/asm-generic/
4907
4908 GENERIC PHY FRAMEWORK
4909 M:      Kishon Vijay Abraham I <kishon@ti.com>
4910 L:      linux-kernel@vger.kernel.org
4911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4912 S:      Supported
4913 F:      drivers/phy/
4914 F:      include/linux/phy/
4915
4916 GENERIC PM DOMAINS
4917 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4918 M:      Kevin Hilman <khilman@kernel.org>
4919 M:      Ulf Hansson <ulf.hansson@linaro.org>
4920 L:      linux-pm@vger.kernel.org
4921 S:      Supported
4922 F:      drivers/base/power/domain*.c
4923 F:      include/linux/pm_domain.h
4924
4925 GENERIC UIO DRIVER FOR PCI DEVICES
4926 M:      "Michael S. Tsirkin" <mst@redhat.com>
4927 L:      kvm@vger.kernel.org
4928 S:      Supported
4929 F:      drivers/uio/uio_pci_generic.c
4930
4931 GET_MAINTAINER SCRIPT
4932 M:      Joe Perches <joe@perches.com>
4933 S:      Maintained
4934 F:      scripts/get_maintainer.pl
4935
4936 GFS2 FILE SYSTEM
4937 M:      Steven Whitehouse <swhiteho@redhat.com>
4938 M:      Bob Peterson <rpeterso@redhat.com>
4939 L:      cluster-devel@redhat.com
4940 W:      http://sources.redhat.com/cluster/
4941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4942 S:      Supported
4943 F:      Documentation/filesystems/gfs2*.txt
4944 F:      fs/gfs2/
4945 F:      include/uapi/linux/gfs2_ondisk.h
4946
4947 GIGASET ISDN DRIVERS
4948 M:      Paul Bolle <pebolle@tiscali.nl>
4949 L:      gigaset307x-common@lists.sourceforge.net
4950 W:      http://gigaset307x.sourceforge.net/
4951 S:      Odd Fixes
4952 F:      Documentation/isdn/README.gigaset
4953 F:      drivers/isdn/gigaset/
4954 F:      include/uapi/linux/gigaset_dev.h
4955
4956 GO7007 MPEG CODEC
4957 M:      Hans Verkuil <hans.verkuil@cisco.com>
4958 L:      linux-media@vger.kernel.org
4959 S:      Maintained
4960 F:      drivers/media/usb/go7007/
4961
4962 GOODIX TOUCHSCREEN
4963 M:      Bastien Nocera <hadess@hadess.net>
4964 L:      linux-input@vger.kernel.org
4965 S:      Maintained
4966 F:      drivers/input/touchscreen/goodix.c
4967
4968 GPIO SUBSYSTEM
4969 M:      Linus Walleij <linus.walleij@linaro.org>
4970 M:      Alexandre Courbot <gnurou@gmail.com>
4971 L:      linux-gpio@vger.kernel.org
4972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4973 S:      Maintained
4974 F:      Documentation/devicetree/bindings/gpio/
4975 F:      Documentation/gpio/
4976 F:      Documentation/ABI/testing/gpio-cdev
4977 F:      Documentation/ABI/obsolete/sysfs-gpio
4978 F:      drivers/gpio/
4979 F:      include/linux/gpio/
4980 F:      include/linux/gpio.h
4981 F:      include/asm-generic/gpio.h
4982 F:      include/uapi/linux/gpio.h
4983 F:      tools/gpio/
4984
4985 GRE DEMULTIPLEXER DRIVER
4986 M:      Dmitry Kozlov <xeb@mail.ru>
4987 L:      netdev@vger.kernel.org
4988 S:      Maintained
4989 F:      net/ipv4/gre_demux.c
4990 F:      net/ipv4/gre_offload.c
4991 F:      include/net/gre.h
4992
4993 GRETH 10/100/1G Ethernet MAC device driver
4994 M:      Andreas Larsson <andreas@gaisler.com>
4995 L:      netdev@vger.kernel.org
4996 S:      Maintained
4997 F:      drivers/net/ethernet/aeroflex/
4998
4999 GSPCA FINEPIX SUBDRIVER
5000 M:      Frank Zago <frank@zago.net>
5001 L:      linux-media@vger.kernel.org
5002 T:      git git://linuxtv.org/media_tree.git
5003 S:      Maintained
5004 F:      drivers/media/usb/gspca/finepix.c
5005
5006 GSPCA GL860 SUBDRIVER
5007 M:      Olivier Lorin <o.lorin@laposte.net>
5008 L:      linux-media@vger.kernel.org
5009 T:      git git://linuxtv.org/media_tree.git
5010 S:      Maintained
5011 F:      drivers/media/usb/gspca/gl860/
5012
5013 GSPCA M5602 SUBDRIVER
5014 M:      Erik Andren <erik.andren@gmail.com>
5015 L:      linux-media@vger.kernel.org
5016 T:      git git://linuxtv.org/media_tree.git
5017 S:      Maintained
5018 F:      drivers/media/usb/gspca/m5602/
5019
5020 GSPCA PAC207 SONIXB SUBDRIVER
5021 M:      Hans de Goede <hdegoede@redhat.com>
5022 L:      linux-media@vger.kernel.org
5023 T:      git git://linuxtv.org/media_tree.git
5024 S:      Maintained
5025 F:      drivers/media/usb/gspca/pac207.c
5026
5027 GSPCA SN9C20X SUBDRIVER
5028 M:      Brian Johnson <brijohn@gmail.com>
5029 L:      linux-media@vger.kernel.org
5030 T:      git git://linuxtv.org/media_tree.git
5031 S:      Maintained
5032 F:      drivers/media/usb/gspca/sn9c20x.c
5033
5034 GSPCA T613 SUBDRIVER
5035 M:      Leandro Costantino <lcostantino@gmail.com>
5036 L:      linux-media@vger.kernel.org
5037 T:      git git://linuxtv.org/media_tree.git
5038 S:      Maintained
5039 F:      drivers/media/usb/gspca/t613.c
5040
5041 GSPCA USB WEBCAM DRIVER
5042 M:      Hans de Goede <hdegoede@redhat.com>
5043 L:      linux-media@vger.kernel.org
5044 T:      git git://linuxtv.org/media_tree.git
5045 S:      Maintained
5046 F:      drivers/media/usb/gspca/
5047
5048 GUID PARTITION TABLE (GPT)
5049 M:      Davidlohr Bueso <dave@stgolabs.net>
5050 L:      linux-efi@vger.kernel.org
5051 S:      Maintained
5052 F:      block/partitions/efi.*
5053
5054 STK1160 USB VIDEO CAPTURE DRIVER
5055 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5056 L:      linux-media@vger.kernel.org
5057 T:      git git://linuxtv.org/media_tree.git
5058 S:      Maintained
5059 F:      drivers/media/usb/stk1160/
5060
5061 H8/300 ARCHITECTURE
5062 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5063 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5064 W:      http://uclinux-h8.sourceforge.jp
5065 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5066 S:      Maintained
5067 F:      arch/h8300/
5068 F:      drivers/clocksource/h8300_*.c
5069 F:      drivers/clk/h8300/
5070 F:      drivers/irqchip/irq-renesas-h8*.c
5071
5072 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5073 M:      Frank Seidel <frank@f-seidel.de>
5074 L:      platform-driver-x86@vger.kernel.org
5075 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5076 S:      Maintained
5077 F:      drivers/platform/x86/hdaps.c
5078
5079 HDPVR USB VIDEO ENCODER DRIVER
5080 M:      Hans Verkuil <hverkuil@xs4all.nl>
5081 L:      linux-media@vger.kernel.org
5082 T:      git git://linuxtv.org/media_tree.git
5083 W:      https://linuxtv.org
5084 S:      Odd Fixes
5085 F:      drivers/media/usb/hdpvr/
5086
5087 HWPOISON MEMORY FAILURE HANDLING
5088 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5089 L:      linux-mm@kvack.org
5090 S:      Maintained
5091 F:      mm/memory-failure.c
5092 F:      mm/hwpoison-inject.c
5093
5094 HYPERVISOR VIRTUAL CONSOLE DRIVER
5095 L:      linuxppc-dev@lists.ozlabs.org
5096 S:      Odd Fixes
5097 F:      drivers/tty/hvc/
5098
5099 HACKRF MEDIA DRIVER
5100 M:      Antti Palosaari <crope@iki.fi>
5101 L:      linux-media@vger.kernel.org
5102 W:      https://linuxtv.org
5103 W:      http://palosaari.fi/linux/
5104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5105 T:      git git://linuxtv.org/anttip/media_tree.git
5106 S:      Maintained
5107 F:      drivers/media/usb/hackrf/
5108
5109 HARDWARE MONITORING
5110 M:      Jean Delvare <jdelvare@suse.com>
5111 M:      Guenter Roeck <linux@roeck-us.net>
5112 L:      linux-hwmon@vger.kernel.org
5113 W:      http://hwmon.wiki.kernel.org/
5114 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5116 S:      Maintained
5117 F:      Documentation/hwmon/
5118 F:      drivers/hwmon/
5119 F:      include/linux/hwmon*.h
5120
5121 HARDWARE RANDOM NUMBER GENERATOR CORE
5122 M:      Matt Mackall <mpm@selenic.com>
5123 M:      Herbert Xu <herbert@gondor.apana.org.au>
5124 L:      linux-crypto@vger.kernel.org
5125 S:      Odd fixes
5126 F:      Documentation/hw_random.txt
5127 F:      drivers/char/hw_random/
5128 F:      include/linux/hw_random.h
5129
5130 HARDWARE SPINLOCK CORE
5131 M:      Ohad Ben-Cohen <ohad@wizery.com>
5132 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5133 L:      linux-remoteproc@vger.kernel.org
5134 S:      Maintained
5135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5136 F:      Documentation/hwspinlock.txt
5137 F:      drivers/hwspinlock/hwspinlock_*
5138 F:      include/linux/hwspinlock.h
5139
5140 HARMONY SOUND DRIVER
5141 L:      linux-parisc@vger.kernel.org
5142 S:      Maintained
5143 F:      sound/parisc/harmony.*
5144
5145 HD29L2 MEDIA DRIVER
5146 M:      Antti Palosaari <crope@iki.fi>
5147 L:      linux-media@vger.kernel.org
5148 W:      https://linuxtv.org
5149 W:      http://palosaari.fi/linux/
5150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5151 T:      git git://linuxtv.org/anttip/media_tree.git
5152 S:      Maintained
5153 F:      drivers/media/dvb-frontends/hd29l2*
5154
5155 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5156 M:      Don Brace <don.brace@microsemi.com>
5157 L:      iss_storagedev@hp.com
5158 L:      esc.storagedev@microsemi.com
5159 L:      linux-scsi@vger.kernel.org
5160 S:      Supported
5161 F:      Documentation/scsi/hpsa.txt
5162 F:      drivers/scsi/hpsa*.[ch]
5163 F:      include/linux/cciss*.h
5164 F:      include/uapi/linux/cciss*.h
5165
5166 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5167 M:      Don Brace <don.brace@microsemi.com>
5168 L:      iss_storagedev@hp.com
5169 L:      esc.storagedev@microsemi.com
5170 L:      linux-scsi@vger.kernel.org
5171 S:      Supported
5172 F:      Documentation/blockdev/cciss.txt
5173 F:      drivers/block/cciss*
5174 F:      include/linux/cciss_ioctl.h
5175 F:      include/uapi/linux/cciss_ioctl.h
5176
5177 HFS FILESYSTEM
5178 L:      linux-fsdevel@vger.kernel.org
5179 S:      Orphan
5180 F:      Documentation/filesystems/hfs.txt
5181 F:      fs/hfs/
5182
5183 HFSPLUS FILESYSTEM
5184 L:      linux-fsdevel@vger.kernel.org
5185 S:      Orphan
5186 F:      Documentation/filesystems/hfsplus.txt
5187 F:      fs/hfsplus/
5188
5189 HGA FRAMEBUFFER DRIVER
5190 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5191 L:      linux-nvidia@lists.surfsouth.com
5192 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5193 S:      Maintained
5194 F:      drivers/video/fbdev/hgafb.c
5195
5196 HIBERNATION (aka Software Suspend, aka swsusp)
5197 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5198 M:      Pavel Machek <pavel@ucw.cz>
5199 L:      linux-pm@vger.kernel.org
5200 S:      Supported
5201 F:      arch/x86/power/
5202 F:      drivers/base/power/
5203 F:      kernel/power/
5204 F:      include/linux/suspend.h
5205 F:      include/linux/freezer.h
5206 F:      include/linux/pm.h
5207 F:      arch/*/include/asm/suspend*.h
5208
5209 HID CORE LAYER
5210 M:      Jiri Kosina <jikos@kernel.org>
5211 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5212 L:      linux-input@vger.kernel.org
5213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5214 S:      Maintained
5215 F:      drivers/hid/
5216 F:      include/linux/hid*
5217 F:      include/uapi/linux/hid*
5218
5219 HID SENSOR HUB DRIVERS
5220 M:      Jiri Kosina <jikos@kernel.org>
5221 M:      Jonathan Cameron <jic23@kernel.org>
5222 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5223 L:      linux-input@vger.kernel.org
5224 L:      linux-iio@vger.kernel.org
5225 S:      Maintained
5226 F:      Documentation/hid/hid-sensor*
5227 F:      drivers/hid/hid-sensor-*
5228 F:      drivers/iio/*/hid-*
5229 F:      include/linux/hid-sensor-*
5230
5231 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5232 M:      Thomas Gleixner <tglx@linutronix.de>
5233 L:      linux-kernel@vger.kernel.org
5234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5235 S:      Maintained
5236 F:      Documentation/timers/
5237 F:      kernel/time/hrtimer.c
5238 F:      kernel/time/clockevents.c
5239 F:      kernel/time/tick*.*
5240 F:      kernel/time/timer_*.c
5241 F:      include/linux/clockchips.h
5242 F:      include/linux/hrtimer.h
5243
5244 HIGH-SPEED SCC DRIVER FOR AX.25
5245 L:      linux-hams@vger.kernel.org
5246 S:      Orphan
5247 F:      drivers/net/hamradio/dmascc.c
5248 F:      drivers/net/hamradio/scc.c
5249
5250 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5251 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5252 W:      http://www.highpoint-tech.com
5253 S:      Supported
5254 F:      Documentation/scsi/hptiop.txt
5255 F:      drivers/scsi/hptiop.c
5256
5257 HIPPI
5258 M:      Jes Sorensen <jes@trained-monkey.org>
5259 L:      linux-hippi@sunsite.dk
5260 S:      Maintained
5261 F:      include/linux/hippidevice.h
5262 F:      include/uapi/linux/if_hippi.h
5263 F:      net/802/hippi.c
5264 F:      drivers/net/hippi/
5265
5266 HISILICON SAS Controller
5267 M:      John Garry <john.garry@huawei.com>
5268 W:      http://www.hisilicon.com
5269 S:      Supported
5270 F:      drivers/scsi/hisi_sas/
5271 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5272
5273 HOST AP DRIVER
5274 M:      Jouni Malinen <j@w1.fi>
5275 L:      hostap@shmoo.com (subscribers-only)
5276 L:      linux-wireless@vger.kernel.org
5277 W:      http://hostap.epitest.fi/
5278 S:      Maintained
5279 F:      drivers/net/wireless/intersil/hostap/
5280
5281 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5282 L:      platform-driver-x86@vger.kernel.org
5283 S:      Orphan
5284 F:      drivers/platform/x86/tc1100-wmi.c
5285
5286 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5287 M:      Jaroslav Kysela <perex@perex.cz>
5288 S:      Maintained
5289 F:      drivers/net/ethernet/hp/hp100.*
5290
5291 HPET:   High Precision Event Timers driver
5292 M:      Clemens Ladisch <clemens@ladisch.de>
5293 S:      Maintained
5294 F:      Documentation/timers/hpet.txt
5295 F:      drivers/char/hpet.c
5296 F:      include/linux/hpet.h
5297 F:      include/uapi/linux/hpet.h
5298
5299 HPET:   x86
5300 S:      Orphan
5301 F:      arch/x86/kernel/hpet.c
5302 F:      arch/x86/include/asm/hpet.h
5303
5304 HPFS FILESYSTEM
5305 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5306 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5307 S:      Maintained
5308 F:      fs/hpfs/
5309
5310 HSI SUBSYSTEM
5311 M:      Sebastian Reichel <sre@kernel.org>
5312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5313 S:      Maintained
5314 F:      Documentation/ABI/testing/sysfs-bus-hsi
5315 F:      Documentation/hsi.txt
5316 F:      drivers/hsi/
5317 F:      include/linux/hsi/
5318 F:      include/uapi/linux/hsi/
5319
5320 HSO 3G MODEM DRIVER
5321 M:      Jan Dumon <j.dumon@option.com>
5322 W:      http://www.pharscape.org
5323 S:      Maintained
5324 F:      drivers/net/usb/hso.c
5325
5326 HSR NETWORK PROTOCOL
5327 M:      Arvid Brodin <arvid.brodin@alten.se>
5328 L:      netdev@vger.kernel.org
5329 S:      Maintained
5330 F:      net/hsr/
5331
5332 HTCPEN TOUCHSCREEN DRIVER
5333 M:      Pau Oliva Fora <pof@eslack.org>
5334 L:      linux-input@vger.kernel.org
5335 S:      Maintained
5336 F:      drivers/input/touchscreen/htcpen.c
5337
5338 HUGETLB FILESYSTEM
5339 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5340 S:      Maintained
5341 F:      fs/hugetlbfs/
5342
5343 Hyper-V CORE AND DRIVERS
5344 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5345 M:      Haiyang Zhang <haiyangz@microsoft.com>
5346 L:      devel@linuxdriverproject.org
5347 S:      Maintained
5348 F:      arch/x86/include/asm/mshyperv.h
5349 F:      arch/x86/include/uapi/asm/hyperv.h
5350 F:      arch/x86/kernel/cpu/mshyperv.c
5351 F:      drivers/hid/hid-hyperv.c
5352 F:      drivers/hv/
5353 F:      drivers/input/serio/hyperv-keyboard.c
5354 F:      drivers/pci/host/pci-hyperv.c
5355 F:      drivers/net/hyperv/
5356 F:      drivers/scsi/storvsc_drv.c
5357 F:      drivers/video/fbdev/hyperv_fb.c
5358 F:      include/linux/hyperv.h
5359 F:      tools/hv/
5360 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5361
5362 I2C MUXES
5363 M:      Peter Rosin <peda@axentia.se>
5364 L:      linux-i2c@vger.kernel.org
5365 S:      Maintained
5366 F:      Documentation/i2c/i2c-topology
5367 F:      Documentation/i2c/muxes/
5368 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5369 F:      drivers/i2c/i2c-mux.c
5370 F:      drivers/i2c/muxes/
5371 F:      include/linux/i2c-mux.h
5372
5373 I2C OVER PARALLEL PORT
5374 M:      Jean Delvare <jdelvare@suse.com>
5375 L:      linux-i2c@vger.kernel.org
5376 S:      Maintained
5377 F:      Documentation/i2c/busses/i2c-parport
5378 F:      Documentation/i2c/busses/i2c-parport-light
5379 F:      drivers/i2c/busses/i2c-parport.c
5380 F:      drivers/i2c/busses/i2c-parport-light.c
5381
5382 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5383 M:      Jean Delvare <jdelvare@suse.com>
5384 L:      linux-i2c@vger.kernel.org
5385 S:      Maintained
5386 F:      Documentation/i2c/busses/i2c-ali1535
5387 F:      Documentation/i2c/busses/i2c-ali1563
5388 F:      Documentation/i2c/busses/i2c-ali15x3
5389 F:      Documentation/i2c/busses/i2c-amd756
5390 F:      Documentation/i2c/busses/i2c-amd8111
5391 F:      Documentation/i2c/busses/i2c-i801
5392 F:      Documentation/i2c/busses/i2c-nforce2
5393 F:      Documentation/i2c/busses/i2c-piix4
5394 F:      Documentation/i2c/busses/i2c-sis5595
5395 F:      Documentation/i2c/busses/i2c-sis630
5396 F:      Documentation/i2c/busses/i2c-sis96x
5397 F:      Documentation/i2c/busses/i2c-via
5398 F:      Documentation/i2c/busses/i2c-viapro
5399 F:      drivers/i2c/busses/i2c-ali1535.c
5400 F:      drivers/i2c/busses/i2c-ali1563.c
5401 F:      drivers/i2c/busses/i2c-ali15x3.c
5402 F:      drivers/i2c/busses/i2c-amd756.c
5403 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5404 F:      drivers/i2c/busses/i2c-amd8111.c
5405 F:      drivers/i2c/busses/i2c-i801.c
5406 F:      drivers/i2c/busses/i2c-isch.c
5407 F:      drivers/i2c/busses/i2c-nforce2.c
5408 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5409 F:      drivers/i2c/busses/i2c-piix4.c
5410 F:      drivers/i2c/busses/i2c-sis5595.c
5411 F:      drivers/i2c/busses/i2c-sis630.c
5412 F:      drivers/i2c/busses/i2c-sis96x.c
5413 F:      drivers/i2c/busses/i2c-via.c
5414 F:      drivers/i2c/busses/i2c-viapro.c
5415
5416 I2C/SMBUS ISMT DRIVER
5417 M:      Seth Heasley <seth.heasley@intel.com>
5418 M:      Neil Horman <nhorman@tuxdriver.com>
5419 L:      linux-i2c@vger.kernel.org
5420 F:      drivers/i2c/busses/i2c-ismt.c
5421 F:      Documentation/i2c/busses/i2c-ismt
5422
5423 I2C/SMBUS STUB DRIVER
5424 M:      Jean Delvare <jdelvare@suse.com>
5425 L:      linux-i2c@vger.kernel.org
5426 S:      Maintained
5427 F:      drivers/i2c/i2c-stub.c
5428
5429 I2C SUBSYSTEM
5430 M:      Wolfram Sang <wsa@the-dreams.de>
5431 L:      linux-i2c@vger.kernel.org
5432 W:      https://i2c.wiki.kernel.org/
5433 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5435 S:      Maintained
5436 F:      Documentation/devicetree/bindings/i2c/
5437 F:      Documentation/i2c/
5438 F:      drivers/i2c/
5439 F:      drivers/i2c/*/
5440 F:      include/linux/i2c.h
5441 F:      include/linux/i2c-*.h
5442 F:      include/uapi/linux/i2c.h
5443 F:      include/uapi/linux/i2c-*.h
5444
5445 I2C ACPI SUPPORT
5446 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5447 L:      linux-i2c@vger.kernel.org
5448 L:      linux-acpi@vger.kernel.org
5449 S:      Maintained
5450
5451 I2C-TAOS-EVM DRIVER
5452 M:      Jean Delvare <jdelvare@suse.com>
5453 L:      linux-i2c@vger.kernel.org
5454 S:      Maintained
5455 F:      Documentation/i2c/busses/i2c-taos-evm
5456 F:      drivers/i2c/busses/i2c-taos-evm.c
5457
5458 I2C-TINY-USB DRIVER
5459 M:      Till Harbaum <till@harbaum.org>
5460 L:      linux-i2c@vger.kernel.org
5461 W:      http://www.harbaum.org/till/i2c_tiny_usb
5462 S:      Maintained
5463 F:      drivers/i2c/busses/i2c-tiny-usb.c
5464
5465 i386 BOOT CODE
5466 M:      "H. Peter Anvin" <hpa@zytor.com>
5467 S:      Maintained
5468 F:      arch/x86/boot/
5469
5470 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5471 M:      "H. Peter Anvin" <hpa@zytor.com>
5472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5473 S:      Maintained
5474
5475 IA64 (Itanium) PLATFORM
5476 M:      Tony Luck <tony.luck@intel.com>
5477 M:      Fenghua Yu <fenghua.yu@intel.com>
5478 L:      linux-ia64@vger.kernel.org
5479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5480 S:      Maintained
5481 F:      arch/ia64/
5482
5483 IBM Power VMX Cryptographic instructions
5484 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5485 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5486 L:      linux-crypto@vger.kernel.org
5487 S:      Supported
5488 F:      drivers/crypto/vmx/Makefile
5489 F:      drivers/crypto/vmx/Kconfig
5490 F:      drivers/crypto/vmx/vmx.c
5491 F:      drivers/crypto/vmx/aes*
5492 F:      drivers/crypto/vmx/ghash*
5493 F:      drivers/crypto/vmx/ppc-xlate.pl
5494
5495 IBM Power in-Nest Crypto Acceleration
5496 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5497 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5498 L:      linux-crypto@vger.kernel.org
5499 S:      Supported
5500 F:      drivers/crypto/nx/Makefile
5501 F:      drivers/crypto/nx/Kconfig
5502 F:      drivers/crypto/nx/nx-aes*
5503 F:      drivers/crypto/nx/nx-sha*
5504 F:      drivers/crypto/nx/nx.*
5505 F:      drivers/crypto/nx/nx_csbcpb.h
5506 F:      drivers/crypto/nx/nx_debugfs.h
5507
5508 IBM Power 842 compression accelerator
5509 M:      Dan Streetman <ddstreet@ieee.org>
5510 S:      Supported
5511 F:      drivers/crypto/nx/Makefile
5512 F:      drivers/crypto/nx/Kconfig
5513 F:      drivers/crypto/nx/nx-842*
5514 F:      include/linux/sw842.h
5515 F:      crypto/842.c
5516 F:      lib/842/
5517
5518 IBM Power Linux RAID adapter
5519 M:      Brian King <brking@us.ibm.com>
5520 S:      Supported
5521 F:      drivers/scsi/ipr.*
5522
5523 IBM Power Virtual Ethernet Device Driver
5524 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5525 L:      netdev@vger.kernel.org
5526 S:      Supported
5527 F:      drivers/net/ethernet/ibm/ibmveth.*
5528
5529 IBM Power SRIOV Virtual NIC Device Driver
5530 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5531 M:      John Allen <jallen@linux.vnet.ibm.com>
5532 L:      netdev@vger.kernel.org
5533 S:      Supported
5534 F:      drivers/net/ethernet/ibm/ibmvnic.*
5535
5536 IBM Power Virtual SCSI Device Drivers
5537 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5538 L:      linux-scsi@vger.kernel.org
5539 S:      Supported
5540 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5541 F:      drivers/scsi/ibmvscsi/viosrp.h
5542
5543 IBM Power Virtual FC Device Drivers
5544 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5545 L:      linux-scsi@vger.kernel.org
5546 S:      Supported
5547 F:      drivers/scsi/ibmvscsi/ibmvfc*
5548
5549 IBM ServeRAID RAID DRIVER
5550 S:      Orphan
5551 F:      drivers/scsi/ips.*
5552
5553 ICH LPC AND GPIO DRIVER
5554 M:      Peter Tyser <ptyser@xes-inc.com>
5555 S:      Maintained
5556 F:      drivers/mfd/lpc_ich.c
5557 F:      drivers/gpio/gpio-ich.c
5558
5559 IDE SUBSYSTEM
5560 M:      "David S. Miller" <davem@davemloft.net>
5561 L:      linux-ide@vger.kernel.org
5562 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5564 S:      Maintained
5565 F:      Documentation/ide/
5566 F:      drivers/ide/
5567 F:      include/linux/ide.h
5568
5569 IDEAPAD LAPTOP EXTRAS DRIVER
5570 M:      Ike Panhc <ike.pan@canonical.com>
5571 L:      platform-driver-x86@vger.kernel.org
5572 W:      http://launchpad.net/ideapad-laptop
5573 S:      Maintained
5574 F:      drivers/platform/x86/ideapad-laptop.c
5575
5576 IDEAPAD LAPTOP SLIDEBAR DRIVER
5577 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5578 L:      linux-input@vger.kernel.org
5579 W:      https://github.com/o2genum/ideapad-slidebar
5580 S:      Maintained
5581 F:      drivers/input/misc/ideapad_slidebar.c
5582
5583 IDE/ATAPI DRIVERS
5584 M:      Borislav Petkov <bp@alien8.de>
5585 L:      linux-ide@vger.kernel.org
5586 S:      Maintained
5587 F:      Documentation/cdrom/ide-cd
5588 F:      drivers/ide/ide-cd*
5589
5590 IDLE-I7300
5591 M:      Andy Henroid <andrew.d.henroid@intel.com>
5592 L:      linux-pm@vger.kernel.org
5593 S:      Supported
5594 F:      drivers/idle/i7300_idle.c
5595
5596 IEEE 802.15.4 SUBSYSTEM
5597 M:      Alexander Aring <aar@pengutronix.de>
5598 L:      linux-wpan@vger.kernel.org
5599 W:      http://wpan.cakelab.org/
5600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5602 S:      Maintained
5603 F:      net/ieee802154/
5604 F:      net/mac802154/
5605 F:      drivers/net/ieee802154/
5606 F:      include/linux/nl802154.h
5607 F:      include/linux/ieee802154.h
5608 F:      include/net/nl802154.h
5609 F:      include/net/mac802154.h
5610 F:      include/net/af_ieee802154.h
5611 F:      include/net/cfg802154.h
5612 F:      include/net/ieee802154_netdev.h
5613 F:      Documentation/networking/ieee802154.txt
5614
5615 IGORPLUG-USB IR RECEIVER
5616 M:      Sean Young <sean@mess.org>
5617 L:      linux-media@vger.kernel.org
5618 S:      Maintained
5619 F:      drivers/media/rc/igorplugusb.c
5620
5621 IGUANAWORKS USB IR TRANSCEIVER
5622 M:      Sean Young <sean@mess.org>
5623 L:      linux-media@vger.kernel.org
5624 S:      Maintained
5625 F:      drivers/media/rc/iguanair.c
5626
5627 IIO SUBSYSTEM AND DRIVERS
5628 M:      Jonathan Cameron <jic23@kernel.org>
5629 R:      Hartmut Knaack <knaack.h@gmx.de>
5630 R:      Lars-Peter Clausen <lars@metafoo.de>
5631 R:      Peter Meerwald-Stadler <pmeerw@pmeerw.net>
5632 L:      linux-iio@vger.kernel.org
5633 S:      Maintained
5634 F:      drivers/iio/
5635 F:      drivers/staging/iio/
5636 F:      include/linux/iio/
5637 F:      tools/iio/
5638
5639 IKANOS/ADI EAGLE ADSL USB DRIVER
5640 M:      Matthieu Castet <castet.matthieu@free.fr>
5641 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5642 S:      Maintained
5643 F:      drivers/usb/atm/ueagle-atm.c
5644
5645 INA209 HARDWARE MONITOR DRIVER
5646 M:      Guenter Roeck <linux@roeck-us.net>
5647 L:      linux-hwmon@vger.kernel.org
5648 S:      Maintained
5649 F:      Documentation/hwmon/ina209
5650 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5651 F:      drivers/hwmon/ina209.c
5652
5653 INA2XX HARDWARE MONITOR DRIVER
5654 M:      Guenter Roeck <linux@roeck-us.net>
5655 L:      linux-hwmon@vger.kernel.org
5656 S:      Maintained
5657 F:      Documentation/hwmon/ina2xx
5658 F:      drivers/hwmon/ina2xx.c
5659 F:      include/linux/platform_data/ina2xx.h
5660
5661 INDUSTRY PACK SUBSYSTEM (IPACK)
5662 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5663 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5664 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5665 L:      industrypack-devel@lists.sourceforge.net
5666 W:      http://industrypack.sourceforge.net
5667 S:      Maintained
5668 F:      drivers/ipack/
5669
5670 INGENIC JZ4780 DMA Driver
5671 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5672 S:      Maintained
5673 F:      drivers/dma/dma-jz4780.c
5674
5675 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5676 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5677 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5678 L:      linux-ima-devel@lists.sourceforge.net
5679 L:      linux-ima-user@lists.sourceforge.net
5680 L:      linux-security-module@vger.kernel.org
5681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5682 S:      Supported
5683 F:      security/integrity/ima/
5684
5685 IMGTEC IR DECODER DRIVER
5686 M:      James Hogan <james.hogan@imgtec.com>
5687 S:      Maintained
5688 F:      drivers/media/rc/img-ir/
5689
5690 IMS TWINTURBO FRAMEBUFFER DRIVER
5691 L:      linux-fbdev@vger.kernel.org
5692 S:      Orphan
5693 F:      drivers/video/fbdev/imsttfb.c
5694
5695 INFINIBAND SUBSYSTEM
5696 M:      Doug Ledford <dledford@redhat.com>
5697 M:      Sean Hefty <sean.hefty@intel.com>
5698 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5699 L:      linux-rdma@vger.kernel.org
5700 W:      http://www.openfabrics.org/
5701 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5703 S:      Supported
5704 F:      Documentation/infiniband/
5705 F:      drivers/infiniband/
5706 F:      drivers/staging/rdma/
5707 F:      include/uapi/linux/if_infiniband.h
5708 F:      include/uapi/rdma/
5709 F:      include/rdma/
5710
5711 INOTIFY
5712 M:      John McCutchan <john@johnmccutchan.com>
5713 M:      Robert Love <rlove@rlove.org>
5714 M:      Eric Paris <eparis@parisplace.org>
5715 S:      Maintained
5716 F:      Documentation/filesystems/inotify.txt
5717 F:      fs/notify/inotify/
5718 F:      include/linux/inotify.h
5719 F:      include/uapi/linux/inotify.h
5720
5721 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5722 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5723 L:      linux-input@vger.kernel.org
5724 Q:      http://patchwork.kernel.org/project/linux-input/list/
5725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5726 S:      Maintained
5727 F:      drivers/input/
5728 F:      include/linux/input.h
5729 F:      include/uapi/linux/input.h
5730 F:      include/linux/input/
5731 F:      Documentation/devicetree/bindings/input/
5732
5733 INPUT MULTITOUCH (MT) PROTOCOL
5734 M:      Henrik Rydberg <rydberg@bitmath.org>
5735 L:      linux-input@vger.kernel.org
5736 S:      Odd fixes
5737 F:      Documentation/input/multi-touch-protocol.txt
5738 F:      drivers/input/input-mt.c
5739 K:      \b(ABS|SYN)_MT_
5740
5741 INTEL ASoC BDW/HSW DRIVERS
5742 M:      Jie Yang <yang.jie@linux.intel.com>
5743 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5744 S:      Supported
5745 F:      sound/soc/intel/common/sst-dsp*
5746 F:      sound/soc/intel/common/sst-firmware.c
5747 F:      sound/soc/intel/boards/broadwell.c
5748 F:      sound/soc/intel/haswell/
5749
5750 INTEL C600 SERIES SAS CONTROLLER DRIVER
5751 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5752 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5753 L:      linux-scsi@vger.kernel.org
5754 T:      git git://git.code.sf.net/p/intel-sas/isci
5755 S:      Supported
5756 F:      drivers/scsi/isci/
5757
5758 INTEL HID EVENT DRIVER
5759 M:      Alex Hung <alex.hung@canonical.com>
5760 L:      platform-driver-x86@vger.kernel.org
5761 S:      Maintained
5762 F:      drivers/platform/x86/intel-hid.c
5763
5764 INTEL IDLE DRIVER
5765 M:      Len Brown <lenb@kernel.org>
5766 L:      linux-pm@vger.kernel.org
5767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5768 S:      Supported
5769 F:      drivers/idle/intel_idle.c
5770
5771 INTEL PSTATE DRIVER
5772 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5773 M:      Len Brown <lenb@kernel.org>
5774 L:      linux-pm@vger.kernel.org
5775 S:      Supported
5776 F:      drivers/cpufreq/intel_pstate.c
5777
5778 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5779 M:      Maik Broemme <mbroemme@plusserver.de>
5780 L:      linux-fbdev@vger.kernel.org
5781 S:      Maintained
5782 F:      Documentation/fb/intelfb.txt
5783 F:      drivers/video/fbdev/intelfb/
5784
5785 INTEL 810/815 FRAMEBUFFER DRIVER
5786 M:      Antonino Daplas <adaplas@gmail.com>
5787 L:      linux-fbdev@vger.kernel.org
5788 S:      Maintained
5789 F:      drivers/video/fbdev/i810/
5790
5791 INTEL MENLOW THERMAL DRIVER
5792 M:      Sujith Thomas <sujith.thomas@intel.com>
5793 L:      platform-driver-x86@vger.kernel.org
5794 W:      https://01.org/linux-acpi
5795 S:      Supported
5796 F:      drivers/platform/x86/intel_menlow.c
5797
5798 INTEL I/OAT DMA DRIVER
5799 M:      Dave Jiang <dave.jiang@intel.com>
5800 R:      Dan Williams <dan.j.williams@intel.com>
5801 L:      dmaengine@vger.kernel.org
5802 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5803 S:      Supported
5804 F:      drivers/dma/ioat*
5805
5806 INTEL IOMMU (VT-d)
5807 M:      David Woodhouse <dwmw2@infradead.org>
5808 L:      iommu@lists.linux-foundation.org
5809 T:      git git://git.infradead.org/iommu-2.6.git
5810 S:      Supported
5811 F:      drivers/iommu/intel-iommu.c
5812 F:      include/linux/intel-iommu.h
5813
5814 INTEL IOP-ADMA DMA DRIVER
5815 R:      Dan Williams <dan.j.williams@intel.com>
5816 S:      Odd fixes
5817 F:      drivers/dma/iop-adma.c
5818
5819 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5820 M:      Krzysztof Halasa <khalasa@piap.pl>
5821 S:      Maintained
5822 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5823 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5824 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5825 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5826 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5827 F:      drivers/net/wan/ixp4xx_hss.c
5828
5829 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5830 M:      Deepak Saxena <dsaxena@plexity.net>
5831 S:      Maintained
5832 F:      drivers/char/hw_random/ixp4xx-rng.c
5833
5834 INTEL ETHERNET DRIVERS
5835 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5836 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
5837 W:      http://www.intel.com/support/feedback.htm
5838 W:      http://e1000.sourceforge.net/
5839 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5842 S:      Supported
5843 F:      Documentation/networking/e100.txt
5844 F:      Documentation/networking/e1000.txt
5845 F:      Documentation/networking/e1000e.txt
5846 F:      Documentation/networking/igb.txt
5847 F:      Documentation/networking/igbvf.txt
5848 F:      Documentation/networking/ixgb.txt
5849 F:      Documentation/networking/ixgbe.txt
5850 F:      Documentation/networking/ixgbevf.txt
5851 F:      Documentation/networking/i40e.txt
5852 F:      Documentation/networking/i40evf.txt
5853 F:      drivers/net/ethernet/intel/
5854 F:      drivers/net/ethernet/intel/*/
5855
5856 INTEL RDMA RNIC DRIVER
5857 M:     Faisal Latif <faisal.latif@intel.com>
5858 R:     Chien Tin Tung <chien.tin.tung@intel.com>
5859 R:     Mustafa Ismail <mustafa.ismail@intel.com>
5860 R:     Shiraz Saleem <shiraz.saleem@intel.com>
5861 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5862 L:     linux-rdma@vger.kernel.org
5863 S:     Supported
5864 F:     drivers/infiniband/hw/i40iw/
5865
5866 INTEL-MID GPIO DRIVER
5867 M:      David Cohen <david.a.cohen@linux.intel.com>
5868 L:      linux-gpio@vger.kernel.org
5869 S:      Maintained
5870 F:      drivers/gpio/gpio-intel-mid.c
5871
5872 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5873 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5874 L:      linux-wireless@vger.kernel.org
5875 S:      Maintained
5876 F:      Documentation/networking/README.ipw2100
5877 F:      Documentation/networking/README.ipw2200
5878 F:      drivers/net/wireless/intel/ipw2x00/
5879
5880 INTEL(R) TRACE HUB
5881 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5882 S:      Supported
5883 F:      Documentation/trace/intel_th.txt
5884 F:      drivers/hwtracing/intel_th/
5885
5886 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5887 M:      Ning Sun <ning.sun@intel.com>
5888 L:      tboot-devel@lists.sourceforge.net
5889 W:      http://tboot.sourceforge.net
5890 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5891 S:      Supported
5892 F:      Documentation/intel_txt.txt
5893 F:      include/linux/tboot.h
5894 F:      arch/x86/kernel/tboot.c
5895
5896 INTEL WIRELESS WIMAX CONNECTION 2400
5897 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5898 M:      linux-wimax@intel.com
5899 L:      wimax@linuxwimax.org (subscribers-only)
5900 S:      Supported
5901 W:      http://linuxwimax.org
5902 F:      Documentation/wimax/README.i2400m
5903 F:      drivers/net/wimax/i2400m/
5904 F:      include/uapi/linux/wimax/i2400m.h
5905
5906 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5907 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5908 L:      linux-wireless@vger.kernel.org
5909 S:      Supported
5910 F:      drivers/net/wireless/intel/iwlegacy/
5911
5912 INTEL WIRELESS WIFI LINK (iwlwifi)
5913 M:      Johannes Berg <johannes.berg@intel.com>
5914 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5915 M:      Luca Coelho <luciano.coelho@intel.com>
5916 M:      Intel Linux Wireless <linuxwifi@intel.com>
5917 L:      linux-wireless@vger.kernel.org
5918 W:      http://intellinuxwireless.org
5919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5920 S:      Supported
5921 F:      drivers/net/wireless/intel/iwlwifi/
5922
5923 INTEL MANAGEMENT ENGINE (mei)
5924 M:      Tomas Winkler <tomas.winkler@intel.com>
5925 L:      linux-kernel@vger.kernel.org
5926 S:      Supported
5927 F:      include/uapi/linux/mei.h
5928 F:      include/linux/mei_cl_bus.h
5929 F:      drivers/misc/mei/*
5930 F:      drivers/watchdog/mei_wdt.c
5931 F:      Documentation/misc-devices/mei/*
5932
5933 INTEL MIC DRIVERS (mic)
5934 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5935 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5936 S:      Supported
5937 W:      https://github.com/sudeepdutt/mic
5938 W:      http://software.intel.com/en-us/mic-developer
5939 F:      include/linux/mic_bus.h
5940 F:      include/linux/scif.h
5941 F:      include/uapi/linux/mic_common.h
5942 F:      include/uapi/linux/mic_ioctl.h
5943 F:      include/uapi/linux/scif_ioctl.h
5944 F:      drivers/misc/mic/
5945 F:      drivers/dma/mic_x100_dma.c
5946 F:      drivers/dma/mic_x100_dma.h
5947 F:      Documentation/mic/
5948
5949 INTEL PMC/P-Unit IPC DRIVER
5950 M:      Zha Qipeng<qipeng.zha@intel.com>
5951 L:      platform-driver-x86@vger.kernel.org
5952 S:      Maintained
5953 F:      drivers/platform/x86/intel_pmc_ipc.c
5954 F:      drivers/platform/x86/intel_punit_ipc.c
5955 F:      arch/x86/include/asm/intel_pmc_ipc.h
5956 F:      arch/x86/include/asm/intel_punit_ipc.h
5957
5958 INTEL TELEMETRY DRIVER
5959 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5960 L:      platform-driver-x86@vger.kernel.org
5961 S:      Maintained
5962 F:      arch/x86/include/asm/intel_telemetry.h
5963 F:      drivers/platform/x86/intel_telemetry*
5964
5965 IOC3 ETHERNET DRIVER
5966 M:      Ralf Baechle <ralf@linux-mips.org>
5967 L:      linux-mips@linux-mips.org
5968 S:      Maintained
5969 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5970
5971 IOC3 SERIAL DRIVER
5972 M:      Pat Gefre <pfg@sgi.com>
5973 L:      linux-serial@vger.kernel.org
5974 S:      Maintained
5975 F:      drivers/tty/serial/ioc3_serial.c
5976
5977 IOMMU DRIVERS
5978 M:      Joerg Roedel <joro@8bytes.org>
5979 L:      iommu@lists.linux-foundation.org
5980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5981 S:      Maintained
5982 F:      drivers/iommu/
5983
5984 IP MASQUERADING
5985 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5986 S:      Maintained
5987 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5988
5989 IPMI SUBSYSTEM
5990 M:      Corey Minyard <minyard@acm.org>
5991 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5992 W:      http://openipmi.sourceforge.net/
5993 S:      Supported
5994 F:      Documentation/IPMI.txt
5995 F:      drivers/char/ipmi/
5996 F:      include/linux/ipmi*
5997 F:      include/uapi/linux/ipmi*
5998
5999 QCOM AUDIO (ASoC) DRIVERS
6000 M:      Patrick Lai <plai@codeaurora.org>
6001 M:      Banajit Goswami <bgoswami@codeaurora.org>
6002 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6003 S:      Supported
6004 F:      sound/soc/qcom/
6005
6006 IPS SCSI RAID DRIVER
6007 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6008 L:      linux-scsi@vger.kernel.org
6009 W:      http://www.adaptec.com/
6010 S:      Maintained
6011 F:      drivers/scsi/ips*
6012
6013 IPVS
6014 M:      Wensong Zhang <wensong@linux-vs.org>
6015 M:      Simon Horman <horms@verge.net.au>
6016 M:      Julian Anastasov <ja@ssi.bg>
6017 L:      netdev@vger.kernel.org
6018 L:      lvs-devel@vger.kernel.org
6019 S:      Maintained
6020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6022 F:      Documentation/networking/ipvs-sysctl.txt
6023 F:      include/net/ip_vs.h
6024 F:      include/uapi/linux/ip_vs.h
6025 F:      net/netfilter/ipvs/
6026
6027 IPWIRELESS DRIVER
6028 M:      Jiri Kosina <jikos@kernel.org>
6029 M:      David Sterba <dsterba@suse.com>
6030 S:      Odd Fixes
6031 F:      drivers/tty/ipwireless/
6032
6033 IPX NETWORK LAYER
6034 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6035 L:      netdev@vger.kernel.org
6036 S:      Maintained
6037 F:      include/net/ipx.h
6038 F:      include/uapi/linux/ipx.h
6039 F:      net/ipx/
6040
6041 IRDA SUBSYSTEM
6042 M:      Samuel Ortiz <samuel@sortiz.org>
6043 L:      irda-users@lists.sourceforge.net (subscribers-only)
6044 L:      netdev@vger.kernel.org
6045 W:      http://irda.sourceforge.net/
6046 S:      Maintained
6047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6048 F:      Documentation/networking/irda.txt
6049 F:      drivers/net/irda/
6050 F:      include/net/irda/
6051 F:      net/irda/
6052
6053 IRQ SUBSYSTEM
6054 M:      Thomas Gleixner <tglx@linutronix.de>
6055 L:      linux-kernel@vger.kernel.org
6056 S:      Maintained
6057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6058 F:      kernel/irq/
6059
6060 IRQCHIP DRIVERS
6061 M:      Thomas Gleixner <tglx@linutronix.de>
6062 M:      Jason Cooper <jason@lakedaemon.net>
6063 M:      Marc Zyngier <marc.zyngier@arm.com>
6064 L:      linux-kernel@vger.kernel.org
6065 S:      Maintained
6066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6067 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6068 F:      Documentation/devicetree/bindings/interrupt-controller/
6069 F:      drivers/irqchip/
6070
6071 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6072 M:      Jiang Liu <jiang.liu@linux.intel.com>
6073 M:      Marc Zyngier <marc.zyngier@arm.com>
6074 S:      Maintained
6075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6076 F:      Documentation/IRQ-domain.txt
6077 F:      include/linux/irqdomain.h
6078 F:      kernel/irq/irqdomain.c
6079 F:      kernel/irq/msi.c
6080
6081 ISA
6082 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6083 S:      Maintained
6084 F:      Documentation/isa.txt
6085 F:      drivers/base/isa.c
6086 F:      include/linux/isa.h
6087
6088 ISAPNP
6089 M:      Jaroslav Kysela <perex@perex.cz>
6090 S:      Maintained
6091 F:      Documentation/isapnp.txt
6092 F:      drivers/pnp/isapnp/
6093 F:      include/linux/isapnp.h
6094
6095 ISA RADIO MODULE
6096 M:      Hans Verkuil <hverkuil@xs4all.nl>
6097 L:      linux-media@vger.kernel.org
6098 T:      git git://linuxtv.org/media_tree.git
6099 W:      https://linuxtv.org
6100 S:      Maintained
6101 F:      drivers/media/radio/radio-isa*
6102
6103 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6104 M:      Peter Jones <pjones@redhat.com>
6105 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6106 S:      Maintained
6107 F:      drivers/firmware/iscsi_ibft*
6108
6109 ISCSI
6110 M:      Mike Christie <michaelc@cs.wisc.edu>
6111 L:      open-iscsi@googlegroups.com
6112 W:      www.open-iscsi.org
6113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6114 S:      Maintained
6115 F:      drivers/scsi/*iscsi*
6116 F:      include/scsi/*iscsi*
6117
6118 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6119 M:      Or Gerlitz <ogerlitz@mellanox.com>
6120 M:      Sagi Grimberg <sagi@grimberg.me>
6121 M:      Roi Dayan <roid@mellanox.com>
6122 L:      linux-rdma@vger.kernel.org
6123 S:      Supported
6124 W:      http://www.openfabrics.org
6125 W:      www.open-iscsi.org
6126 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6127 F:      drivers/infiniband/ulp/iser/
6128
6129 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6130 M:      Sagi Grimberg <sagi@grimberg.me>
6131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6132 L:      linux-rdma@vger.kernel.org
6133 L:      target-devel@vger.kernel.org
6134 S:      Supported
6135 W:      http://www.linux-iscsi.org
6136 F:      drivers/infiniband/ulp/isert
6137
6138 ISDN SUBSYSTEM
6139 M:      Karsten Keil <isdn@linux-pingi.de>
6140 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6141 L:      netdev@vger.kernel.org
6142 W:      http://www.isdn4linux.de
6143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6144 S:      Maintained
6145 F:      Documentation/isdn/
6146 F:      drivers/isdn/
6147 F:      include/linux/isdn.h
6148 F:      include/linux/isdn/
6149 F:      include/uapi/linux/isdn.h
6150 F:      include/uapi/linux/isdn/
6151
6152 ISDN SUBSYSTEM (Eicon active card driver)
6153 M:      Armin Schindler <mac@melware.de>
6154 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6155 W:      http://www.melware.de
6156 S:      Maintained
6157 F:      drivers/isdn/hardware/eicon/
6158
6159 IT87 HARDWARE MONITORING DRIVER
6160 M:      Jean Delvare <jdelvare@suse.com>
6161 L:      linux-hwmon@vger.kernel.org
6162 S:      Maintained
6163 F:      Documentation/hwmon/it87
6164 F:      drivers/hwmon/it87.c
6165
6166 IT913X MEDIA DRIVER
6167 M:      Antti Palosaari <crope@iki.fi>
6168 L:      linux-media@vger.kernel.org
6169 W:      https://linuxtv.org
6170 W:      http://palosaari.fi/linux/
6171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6172 T:      git git://linuxtv.org/anttip/media_tree.git
6173 S:      Maintained
6174 F:      drivers/media/tuners/it913x*
6175
6176 IVTV VIDEO4LINUX DRIVER
6177 M:      Andy Walls <awalls@md.metrocast.net>
6178 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6179 L:      linux-media@vger.kernel.org
6180 T:      git git://linuxtv.org/media_tree.git
6181 W:      http://www.ivtvdriver.org
6182 S:      Maintained
6183 F:      Documentation/video4linux/*.ivtv
6184 F:      drivers/media/pci/ivtv/
6185 F:      include/uapi/linux/ivtv*
6186
6187 IX2505V MEDIA DRIVER
6188 M:      Malcolm Priestley <tvboxspy@gmail.com>
6189 L:      linux-media@vger.kernel.org
6190 W:      https://linuxtv.org
6191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6192 S:      Maintained
6193 F:      drivers/media/dvb-frontends/ix2505v*
6194
6195 JC42.4 TEMPERATURE SENSOR DRIVER
6196 M:      Guenter Roeck <linux@roeck-us.net>
6197 L:      linux-hwmon@vger.kernel.org
6198 S:      Maintained
6199 F:      drivers/hwmon/jc42.c
6200 F:      Documentation/hwmon/jc42
6201
6202 JFS FILESYSTEM
6203 M:      Dave Kleikamp <shaggy@kernel.org>
6204 L:      jfs-discussion@lists.sourceforge.net
6205 W:      http://jfs.sourceforge.net/
6206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6207 S:      Maintained
6208 F:      Documentation/filesystems/jfs.txt
6209 F:      fs/jfs/
6210
6211 JME NETWORK DRIVER
6212 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6213 L:      netdev@vger.kernel.org
6214 S:      Maintained
6215 F:      drivers/net/ethernet/jme.*
6216
6217 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6218 M:      David Woodhouse <dwmw2@infradead.org>
6219 L:      linux-mtd@lists.infradead.org
6220 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6221 S:      Maintained
6222 F:      fs/jffs2/
6223 F:      include/uapi/linux/jffs2.h
6224
6225 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6226 M:      "Theodore Ts'o" <tytso@mit.edu>
6227 M:      Jan Kara <jack@suse.com>
6228 L:      linux-ext4@vger.kernel.org
6229 S:      Maintained
6230 F:      fs/jbd2/
6231 F:      include/linux/jbd2.h
6232
6233 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6234 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6235 L:      linux-media@vger.kernel.org
6236 S:      Maintained
6237 F:      drivers/media/platform/rcar_jpu.c
6238
6239 JSM Neo PCI based serial card
6240 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6241 L:      linux-serial@vger.kernel.org
6242 S:      Maintained
6243 F:      drivers/tty/serial/jsm/
6244
6245 K10TEMP HARDWARE MONITORING DRIVER
6246 M:      Clemens Ladisch <clemens@ladisch.de>
6247 L:      linux-hwmon@vger.kernel.org
6248 S:      Maintained
6249 F:      Documentation/hwmon/k10temp
6250 F:      drivers/hwmon/k10temp.c
6251
6252 K8TEMP HARDWARE MONITORING DRIVER
6253 M:      Rudolf Marek <r.marek@assembler.cz>
6254 L:      linux-hwmon@vger.kernel.org
6255 S:      Maintained
6256 F:      Documentation/hwmon/k8temp
6257 F:      drivers/hwmon/k8temp.c
6258
6259 KASAN
6260 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6261 R:      Alexander Potapenko <glider@google.com>
6262 R:      Dmitry Vyukov <dvyukov@google.com>
6263 L:      kasan-dev@googlegroups.com
6264 S:      Maintained
6265 F:      arch/*/include/asm/kasan.h
6266 F:      arch/*/mm/kasan_init*
6267 F:      Documentation/kasan.txt
6268 F:      include/linux/kasan*.h
6269 F:      lib/test_kasan.c
6270 F:      mm/kasan/
6271 F:      scripts/Makefile.kasan
6272
6273 KCONFIG
6274 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6275 L:      linux-kbuild@vger.kernel.org
6276 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6277 S:      Maintained
6278 F:      Documentation/kbuild/kconfig-language.txt
6279 F:      scripts/kconfig/
6280
6281 KDUMP
6282 M:      Vivek Goyal <vgoyal@redhat.com>
6283 M:      Haren Myneni <hbabu@us.ibm.com>
6284 L:      kexec@lists.infradead.org
6285 W:      http://lse.sourceforge.net/kdump/
6286 S:      Maintained
6287 F:      Documentation/kdump/
6288
6289 KEENE FM RADIO TRANSMITTER DRIVER
6290 M:      Hans Verkuil <hverkuil@xs4all.nl>
6291 L:      linux-media@vger.kernel.org
6292 T:      git git://linuxtv.org/media_tree.git
6293 W:      https://linuxtv.org
6294 S:      Maintained
6295 F:      drivers/media/radio/radio-keene*
6296
6297 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6298 M:      Ian Kent <raven@themaw.net>
6299 L:      autofs@vger.kernel.org
6300 S:      Maintained
6301 F:      fs/autofs4/
6302
6303 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6304 M:      Michal Marek <mmarek@suse.com>
6305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6307 L:      linux-kbuild@vger.kernel.org
6308 S:      Maintained
6309 F:      Documentation/kbuild/
6310 F:      Makefile
6311 F:      scripts/Makefile.*
6312 F:      scripts/basic/
6313 F:      scripts/mk*
6314 F:      scripts/package/
6315
6316 KERNEL JANITORS
6317 L:      kernel-janitors@vger.kernel.org
6318 W:      http://kernelnewbies.org/KernelJanitors
6319 S:      Odd Fixes
6320
6321 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6322 M:      "J. Bruce Fields" <bfields@fieldses.org>
6323 M:      Jeff Layton <jlayton@poochiereds.net>
6324 L:      linux-nfs@vger.kernel.org
6325 W:      http://nfs.sourceforge.net/
6326 T:      git git://linux-nfs.org/~bfields/linux.git
6327 S:      Supported
6328 F:      fs/nfsd/
6329 F:      include/uapi/linux/nfsd/
6330 F:      fs/lockd/
6331 F:      fs/nfs_common/
6332 F:      net/sunrpc/
6333 F:      include/linux/lockd/
6334 F:      include/linux/sunrpc/
6335 F:      include/uapi/linux/sunrpc/
6336
6337 KERNEL SELFTEST FRAMEWORK
6338 M:      Shuah Khan <shuahkh@osg.samsung.com>
6339 L:      linux-kselftest@vger.kernel.org
6340 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6341 S:      Maintained
6342 F:      tools/testing/selftests
6343
6344 KERNEL VIRTUAL MACHINE (KVM)
6345 M:      Paolo Bonzini <pbonzini@redhat.com>
6346 M:      Radim Krčmář <rkrcmar@redhat.com>
6347 L:      kvm@vger.kernel.org
6348 W:      http://www.linux-kvm.org
6349 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6350 S:      Supported
6351 F:      Documentation/*/kvm*.txt
6352 F:      Documentation/virtual/kvm/
6353 F:      arch/*/kvm/
6354 F:      arch/x86/kernel/kvm.c
6355 F:      arch/x86/kernel/kvmclock.c
6356 F:      arch/*/include/asm/kvm*
6357 F:      include/linux/kvm*
6358 F:      include/uapi/linux/kvm*
6359 F:      virt/kvm/
6360
6361 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6362 M:      Joerg Roedel <joro@8bytes.org>
6363 L:      kvm@vger.kernel.org
6364 W:      http://www.linux-kvm.org/
6365 S:      Maintained
6366 F:      arch/x86/include/asm/svm.h
6367 F:      arch/x86/kvm/svm.c
6368
6369 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6370 M:      Alexander Graf <agraf@suse.com>
6371 L:      kvm-ppc@vger.kernel.org
6372 W:      http://www.linux-kvm.org/
6373 T:      git git://github.com/agraf/linux-2.6.git
6374 S:      Supported
6375 F:      arch/powerpc/include/asm/kvm*
6376 F:      arch/powerpc/kvm/
6377
6378 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6379 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6380 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6381 L:      linux-s390@vger.kernel.org
6382 W:      http://www.ibm.com/developerworks/linux/linux390/
6383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6384 S:      Supported
6385 F:      Documentation/s390/kvm.txt
6386 F:      arch/s390/include/asm/kvm*
6387 F:      arch/s390/kvm/
6388
6389 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6390 M:      Christoffer Dall <christoffer.dall@linaro.org>
6391 M:      Marc Zyngier <marc.zyngier@arm.com>
6392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6393 L:      kvmarm@lists.cs.columbia.edu
6394 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6396 S:      Supported
6397 F:      arch/arm/include/uapi/asm/kvm*
6398 F:      arch/arm/include/asm/kvm*
6399 F:      arch/arm/kvm/
6400 F:      virt/kvm/arm/
6401 F:      include/kvm/arm_*
6402
6403 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6404 M:      Christoffer Dall <christoffer.dall@linaro.org>
6405 M:      Marc Zyngier <marc.zyngier@arm.com>
6406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6407 L:      kvmarm@lists.cs.columbia.edu
6408 S:      Maintained
6409 F:      arch/arm64/include/uapi/asm/kvm*
6410 F:      arch/arm64/include/asm/kvm*
6411 F:      arch/arm64/kvm/
6412
6413 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6414 M:      James Hogan <james.hogan@imgtec.com>
6415 L:      linux-mips@linux-mips.org
6416 S:      Supported
6417 F:      arch/mips/include/uapi/asm/kvm*
6418 F:      arch/mips/include/asm/kvm*
6419 F:      arch/mips/kvm/
6420
6421 KEXEC
6422 M:      Eric Biederman <ebiederm@xmission.com>
6423 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6424 L:      kexec@lists.infradead.org
6425 S:      Maintained
6426 F:      include/linux/kexec.h
6427 F:      include/uapi/linux/kexec.h
6428 F:      kernel/kexec.c
6429
6430 KEYS/KEYRINGS:
6431 M:      David Howells <dhowells@redhat.com>
6432 L:      keyrings@vger.kernel.org
6433 S:      Maintained
6434 F:      Documentation/security/keys.txt
6435 F:      include/linux/key.h
6436 F:      include/linux/key-type.h
6437 F:      include/keys/
6438 F:      security/keys/
6439
6440 KEYS-TRUSTED
6441 M:      David Safford <safford@us.ibm.com>
6442 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6443 L:      linux-security-module@vger.kernel.org
6444 L:      keyrings@vger.kernel.org
6445 S:      Supported
6446 F:      Documentation/security/keys-trusted-encrypted.txt
6447 F:      include/keys/trusted-type.h
6448 F:      security/keys/trusted.c
6449 F:      security/keys/trusted.h
6450
6451 KEYS-ENCRYPTED
6452 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6453 M:      David Safford <safford@us.ibm.com>
6454 L:      linux-security-module@vger.kernel.org
6455 L:      keyrings@vger.kernel.org
6456 S:      Supported
6457 F:      Documentation/security/keys-trusted-encrypted.txt
6458 F:      include/keys/encrypted-type.h
6459 F:      security/keys/encrypted-keys/
6460
6461 KGDB / KDB /debug_core
6462 M:      Jason Wessel <jason.wessel@windriver.com>
6463 W:      http://kgdb.wiki.kernel.org/
6464 L:      kgdb-bugreport@lists.sourceforge.net
6465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6466 S:      Maintained
6467 F:      Documentation/DocBook/kgdb.tmpl
6468 F:      drivers/misc/kgdbts.c
6469 F:      drivers/tty/serial/kgdboc.c
6470 F:      include/linux/kdb.h
6471 F:      include/linux/kgdb.h
6472 F:      kernel/debug/
6473
6474 KMEMCHECK
6475 M:      Vegard Nossum <vegardno@ifi.uio.no>
6476 M:      Pekka Enberg <penberg@kernel.org>
6477 S:      Maintained
6478 F:      Documentation/kmemcheck.txt
6479 F:      arch/x86/include/asm/kmemcheck.h
6480 F:      arch/x86/mm/kmemcheck/
6481 F:      include/linux/kmemcheck.h
6482 F:      mm/kmemcheck.c
6483
6484 KMEMLEAK
6485 M:      Catalin Marinas <catalin.marinas@arm.com>
6486 S:      Maintained
6487 F:      Documentation/kmemleak.txt
6488 F:      include/linux/kmemleak.h
6489 F:      mm/kmemleak.c
6490 F:      mm/kmemleak-test.c
6491
6492 KPROBES
6493 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6494 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6495 M:      "David S. Miller" <davem@davemloft.net>
6496 M:      Masami Hiramatsu <mhiramat@kernel.org>
6497 S:      Maintained
6498 F:      Documentation/kprobes.txt
6499 F:      include/linux/kprobes.h
6500 F:      kernel/kprobes.c
6501
6502 KS0108 LCD CONTROLLER DRIVER
6503 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6504 W:      http://miguelojeda.es/auxdisplay.htm
6505 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6506 S:      Maintained
6507 F:      Documentation/auxdisplay/ks0108
6508 F:      drivers/auxdisplay/ks0108.c
6509 F:      include/linux/ks0108.h
6510
6511 L3MDEV
6512 M:      David Ahern <dsa@cumulusnetworks.com>
6513 L:      netdev@vger.kernel.org
6514 S:      Maintained
6515 F:      net/l3mdev
6516 F:      include/net/l3mdev.h
6517
6518 LANTIQ MIPS ARCHITECTURE
6519 M:      John Crispin <john@phrozen.org>
6520 L:      linux-mips@linux-mips.org
6521 S:      Maintained
6522 F:      arch/mips/lantiq
6523
6524 LAPB module
6525 L:      linux-x25@vger.kernel.org
6526 S:      Orphan
6527 F:      Documentation/networking/lapb-module.txt
6528 F:      include/*/lapb.h
6529 F:      net/lapb/
6530
6531 LASI 53c700 driver for PARISC
6532 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6533 L:      linux-scsi@vger.kernel.org
6534 S:      Maintained
6535 F:      Documentation/scsi/53c700.txt
6536 F:      drivers/scsi/53c700*
6537
6538 LED SUBSYSTEM
6539 M:      Richard Purdie <rpurdie@rpsys.net>
6540 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6541 L:      linux-leds@vger.kernel.org
6542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6543 S:      Maintained
6544 F:      drivers/leds/
6545 F:      include/linux/leds.h
6546
6547 LEGACY EEPROM DRIVER
6548 M:      Jean Delvare <jdelvare@suse.com>
6549 S:      Maintained
6550 F:      Documentation/misc-devices/eeprom
6551 F:      drivers/misc/eeprom/eeprom.c
6552
6553 LEGO USB Tower driver
6554 M:      Juergen Stuber <starblue@users.sourceforge.net>
6555 L:      legousb-devel@lists.sourceforge.net
6556 W:      http://legousb.sourceforge.net/
6557 S:      Maintained
6558 F:      drivers/usb/misc/legousbtower.c
6559
6560 LG2160 MEDIA DRIVER
6561 M:      Michael Krufky <mkrufky@linuxtv.org>
6562 L:      linux-media@vger.kernel.org
6563 W:      https://linuxtv.org
6564 W:      http://github.com/mkrufky
6565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6566 T:      git git://linuxtv.org/mkrufky/tuners.git
6567 S:      Maintained
6568 F:      drivers/media/dvb-frontends/lg2160.*
6569
6570 LGDT3305 MEDIA DRIVER
6571 M:      Michael Krufky <mkrufky@linuxtv.org>
6572 L:      linux-media@vger.kernel.org
6573 W:      https://linuxtv.org
6574 W:      http://github.com/mkrufky
6575 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6576 T:      git git://linuxtv.org/mkrufky/tuners.git
6577 S:      Maintained
6578 F:      drivers/media/dvb-frontends/lgdt3305.*
6579
6580 LGUEST
6581 M:      Rusty Russell <rusty@rustcorp.com.au>
6582 L:      lguest@lists.ozlabs.org
6583 W:      http://lguest.ozlabs.org/
6584 S:      Odd Fixes
6585 F:      arch/x86/include/asm/lguest*.h
6586 F:      arch/x86/lguest/
6587 F:      drivers/lguest/
6588 F:      include/linux/lguest*.h
6589 F:      tools/lguest/
6590
6591 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6592 M:      Tejun Heo <tj@kernel.org>
6593 L:      linux-ide@vger.kernel.org
6594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6595 S:      Maintained
6596 F:      drivers/ata/
6597 F:      include/linux/ata.h
6598 F:      include/linux/libata.h
6599
6600 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6601 M:      Viresh Kumar <vireshk@kernel.org>
6602 L:      linux-ide@vger.kernel.org
6603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6604 S:      Maintained
6605 F:      include/linux/pata_arasan_cf_data.h
6606 F:      drivers/ata/pata_arasan_cf.c
6607
6608 LIBATA PATA DRIVERS
6609 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6610 M:      Tejun Heo <tj@kernel.org>
6611 L:      linux-ide@vger.kernel.org
6612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6613 S:      Maintained
6614 F:      drivers/ata/pata_*.c
6615 F:      drivers/ata/ata_generic.c
6616
6617 LIBATA SATA AHCI PLATFORM devices support
6618 M:      Hans de Goede <hdegoede@redhat.com>
6619 M:      Tejun Heo <tj@kernel.org>
6620 L:      linux-ide@vger.kernel.org
6621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6622 S:      Maintained
6623 F:      drivers/ata/ahci_platform.c
6624 F:      drivers/ata/libahci_platform.c
6625 F:      include/linux/ahci_platform.h
6626
6627 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6628 M:      Mikael Pettersson <mikpelinux@gmail.com>
6629 L:      linux-ide@vger.kernel.org
6630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6631 S:      Maintained
6632 F:      drivers/ata/sata_promise.*
6633
6634 LIBLOCKDEP
6635 M:      Sasha Levin <sasha.levin@oracle.com>
6636 S:      Maintained
6637 F:      tools/lib/lockdep/
6638
6639 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6640 M:      Dan Williams <dan.j.williams@intel.com>
6641 L:      linux-nvdimm@lists.01.org
6642 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6644 S:      Supported
6645 F:      drivers/nvdimm/*
6646 F:      include/linux/nd.h
6647 F:      include/linux/libnvdimm.h
6648 F:      include/uapi/linux/ndctl.h
6649
6650 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6651 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6652 L:      linux-nvdimm@lists.01.org
6653 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6654 S:      Supported
6655 F:      drivers/nvdimm/blk.c
6656 F:      drivers/nvdimm/region_devs.c
6657 F:      drivers/acpi/nfit*
6658
6659 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6660 M:      Vishal Verma <vishal.l.verma@intel.com>
6661 L:      linux-nvdimm@lists.01.org
6662 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6663 S:      Supported
6664 F:      drivers/nvdimm/btt*
6665
6666 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6667 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6668 L:      linux-nvdimm@lists.01.org
6669 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6670 S:      Supported
6671 F:      drivers/nvdimm/pmem.c
6672 F:      include/linux/pmem.h
6673 F:      arch/*/include/asm/pmem.h
6674
6675 LIGHTNVM PLATFORM SUPPORT
6676 M:      Matias Bjorling <mb@lightnvm.io>
6677 W:      http://github/OpenChannelSSD
6678 L:      linux-block@vger.kernel.org
6679 S:      Maintained
6680 F:      drivers/lightnvm/
6681 F:      include/linux/lightnvm.h
6682 F:      include/uapi/linux/lightnvm.h
6683
6684 LINUX FOR IBM pSERIES (RS/6000)
6685 M:      Paul Mackerras <paulus@au.ibm.com>
6686 W:      http://www.ibm.com/linux/ltc/projects/ppc
6687 S:      Supported
6688 F:      arch/powerpc/boot/rs6000.h
6689
6690 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6691 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6692 M:      Paul Mackerras <paulus@samba.org>
6693 M:      Michael Ellerman <mpe@ellerman.id.au>
6694 W:      http://www.penguinppc.org/
6695 L:      linuxppc-dev@lists.ozlabs.org
6696 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6698 S:      Supported
6699 F:      Documentation/powerpc/
6700 F:      arch/powerpc/
6701 F:      drivers/char/tpm/tpm_ibmvtpm*
6702 F:      drivers/crypto/nx/
6703 F:      drivers/crypto/vmx/
6704 F:      drivers/net/ethernet/ibm/ibmveth.*
6705 F:      drivers/net/ethernet/ibm/ibmvnic.*
6706 F:      drivers/pci/hotplug/rpa*
6707 F:      drivers/scsi/ibmvscsi/
6708 N:      opal
6709 N:      /pmac
6710 N:      powermac
6711 N:      powernv
6712 N:      [^a-z0-9]ps3
6713 N:      pseries
6714
6715 LINUX FOR POWER MACINTOSH
6716 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6717 W:      http://www.penguinppc.org/
6718 L:      linuxppc-dev@lists.ozlabs.org
6719 S:      Maintained
6720 F:      arch/powerpc/platforms/powermac/
6721 F:      drivers/macintosh/
6722
6723 LINUX FOR POWERPC EMBEDDED MPC5XXX
6724 M:      Anatolij Gustschin <agust@denx.de>
6725 L:      linuxppc-dev@lists.ozlabs.org
6726 T:      git git://git.denx.de/linux-denx-agust.git
6727 S:      Maintained
6728 F:      arch/powerpc/platforms/512x/
6729 F:      arch/powerpc/platforms/52xx/
6730
6731 LINUX FOR POWERPC EMBEDDED PPC4XX
6732 M:      Alistair Popple <alistair@popple.id.au>
6733 M:      Matt Porter <mporter@kernel.crashing.org>
6734 W:      http://www.penguinppc.org/
6735 L:      linuxppc-dev@lists.ozlabs.org
6736 S:      Maintained
6737 F:      arch/powerpc/platforms/40x/
6738 F:      arch/powerpc/platforms/44x/
6739
6740 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6741 L:      linuxppc-dev@lists.ozlabs.org
6742 S:      Orphan
6743 F:      arch/powerpc/*/*virtex*
6744 F:      arch/powerpc/*/*/*virtex*
6745
6746 LINUX FOR POWERPC EMBEDDED PPC8XX
6747 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6748 W:      http://www.penguinppc.org/
6749 L:      linuxppc-dev@lists.ozlabs.org
6750 S:      Maintained
6751 F:      arch/powerpc/platforms/8xx/
6752
6753 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6754 M:      Scott Wood <oss@buserror.net>
6755 M:      Kumar Gala <galak@kernel.crashing.org>
6756 W:      http://www.penguinppc.org/
6757 L:      linuxppc-dev@lists.ozlabs.org
6758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6759 S:      Maintained
6760 F:      arch/powerpc/platforms/83xx/
6761 F:      arch/powerpc/platforms/85xx/
6762
6763 LINUX FOR POWERPC PA SEMI PWRFICIENT
6764 M:      Olof Johansson <olof@lixom.net>
6765 L:      linuxppc-dev@lists.ozlabs.org
6766 S:      Maintained
6767 F:      arch/powerpc/platforms/pasemi/
6768 F:      drivers/*/*pasemi*
6769 F:      drivers/*/*/*pasemi*
6770
6771 LINUX SECURITY MODULE (LSM) FRAMEWORK
6772 M:      Chris Wright <chrisw@sous-sol.org>
6773 L:      linux-security-module@vger.kernel.org
6774 S:      Supported
6775
6776 LIS3LV02D ACCELEROMETER DRIVER
6777 M:      Eric Piel <eric.piel@tremplin-utc.net>
6778 S:      Maintained
6779 F:      Documentation/misc-devices/lis3lv02d
6780 F:      drivers/misc/lis3lv02d/
6781 F:      drivers/platform/x86/hp_accel.c
6782
6783 LIVE PATCHING
6784 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6785 M:      Jessica Yu <jeyu@redhat.com>
6786 M:      Jiri Kosina <jikos@kernel.org>
6787 M:      Miroslav Benes <mbenes@suse.cz>
6788 R:      Petr Mladek <pmladek@suse.com>
6789 S:      Maintained
6790 F:      kernel/livepatch/
6791 F:      include/linux/livepatch.h
6792 F:      arch/x86/include/asm/livepatch.h
6793 F:      arch/x86/kernel/livepatch.c
6794 F:      Documentation/livepatch/
6795 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6796 F:      samples/livepatch/
6797 L:      live-patching@vger.kernel.org
6798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6799
6800 LINUX KERNEL DUMP TEST MODULE (LKDTM)
6801 M:      Kees Cook <keescook@chromium.org>
6802 S:      Maintained
6803 F:      drivers/misc/lkdtm.c
6804
6805 LLC (802.2)
6806 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6807 S:      Maintained
6808 F:      include/linux/llc.h
6809 F:      include/uapi/linux/llc.h
6810 F:      include/net/llc*
6811 F:      net/llc/
6812
6813 LM73 HARDWARE MONITOR DRIVER
6814 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6815 L:      linux-hwmon@vger.kernel.org
6816 S:      Maintained
6817 F:      drivers/hwmon/lm73.c
6818
6819 LM78 HARDWARE MONITOR DRIVER
6820 M:      Jean Delvare <jdelvare@suse.com>
6821 L:      linux-hwmon@vger.kernel.org
6822 S:      Maintained
6823 F:      Documentation/hwmon/lm78
6824 F:      drivers/hwmon/lm78.c
6825
6826 LM83 HARDWARE MONITOR DRIVER
6827 M:      Jean Delvare <jdelvare@suse.com>
6828 L:      linux-hwmon@vger.kernel.org
6829 S:      Maintained
6830 F:      Documentation/hwmon/lm83
6831 F:      drivers/hwmon/lm83.c
6832
6833 LM90 HARDWARE MONITOR DRIVER
6834 M:      Jean Delvare <jdelvare@suse.com>
6835 L:      linux-hwmon@vger.kernel.org
6836 S:      Maintained
6837 F:      Documentation/hwmon/lm90
6838 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6839 F:      drivers/hwmon/lm90.c
6840
6841 LM95234 HARDWARE MONITOR DRIVER
6842 M:      Guenter Roeck <linux@roeck-us.net>
6843 L:      linux-hwmon@vger.kernel.org
6844 S:      Maintained
6845 F:      Documentation/hwmon/lm95234
6846 F:      drivers/hwmon/lm95234.c
6847
6848 LME2510 MEDIA DRIVER
6849 M:      Malcolm Priestley <tvboxspy@gmail.com>
6850 L:      linux-media@vger.kernel.org
6851 W:      https://linuxtv.org
6852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6853 S:      Maintained
6854 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6855
6856 LOCKDEP AND LOCKSTAT
6857 M:      Peter Zijlstra <peterz@infradead.org>
6858 M:      Ingo Molnar <mingo@redhat.com>
6859 L:      linux-kernel@vger.kernel.org
6860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6861 S:      Maintained
6862 F:      Documentation/locking/lockdep*.txt
6863 F:      Documentation/locking/lockstat.txt
6864 F:      include/linux/lockdep.h
6865 F:      kernel/locking/
6866
6867 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6868 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6869 L:      linux-ntfs-dev@lists.sourceforge.net
6870 W:      http://www.linux-ntfs.org/content/view/19/37/
6871 S:      Maintained
6872 F:      Documentation/ldm.txt
6873 F:      block/partitions/ldm.*
6874
6875 LogFS
6876 M:      Joern Engel <joern@logfs.org>
6877 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6878 L:      logfs@logfs.org
6879 W:      logfs.org
6880 S:      Maintained
6881 F:      fs/logfs/
6882
6883 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6884 M:      Sathya Prakash <sathya.prakash@broadcom.com>
6885 M:      Chaitra P B <chaitra.basappa@broadcom.com>
6886 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6887 L:      MPT-FusionLinux.pdl@broadcom.com
6888 L:      linux-scsi@vger.kernel.org
6889 W:      http://www.avagotech.com/support/
6890 S:      Supported
6891 F:      drivers/message/fusion/
6892 F:      drivers/scsi/mpt2sas/
6893 F:      drivers/scsi/mpt3sas/
6894
6895 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6896 M:      Matthew Wilcox <matthew@wil.cx>
6897 L:      linux-scsi@vger.kernel.org
6898 S:      Maintained
6899 F:      drivers/scsi/sym53c8xx_2/
6900
6901 LTC4261 HARDWARE MONITOR DRIVER
6902 M:      Guenter Roeck <linux@roeck-us.net>
6903 L:      linux-hwmon@vger.kernel.org
6904 S:      Maintained
6905 F:      Documentation/hwmon/ltc4261
6906 F:      drivers/hwmon/ltc4261.c
6907
6908 LTP (Linux Test Project)
6909 M:      Mike Frysinger <vapier@gentoo.org>
6910 M:      Cyril Hrubis <chrubis@suse.cz>
6911 M:      Wanlong Gao <wanlong.gao@gmail.com>
6912 M:      Jan Stancek <jstancek@redhat.com>
6913 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6914 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6915 L:      ltp@lists.linux.it (subscribers-only)
6916 W:      http://linux-test-project.github.io/
6917 T:      git git://github.com/linux-test-project/ltp.git
6918 S:      Maintained
6919
6920 M32R ARCHITECTURE
6921 W:      http://www.linux-m32r.org/
6922 S:      Orphan
6923 F:      arch/m32r/
6924
6925 M68K ARCHITECTURE
6926 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6927 L:      linux-m68k@lists.linux-m68k.org
6928 W:      http://www.linux-m68k.org/
6929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6930 S:      Maintained
6931 F:      arch/m68k/
6932 F:      drivers/zorro/
6933
6934 M68K ON APPLE MACINTOSH
6935 M:      Joshua Thompson <funaho@jurai.org>
6936 W:      http://www.mac.linux-m68k.org/
6937 L:      linux-m68k@lists.linux-m68k.org
6938 S:      Maintained
6939 F:      arch/m68k/mac/
6940
6941 M68K ON HP9000/300
6942 M:      Philip Blundell <philb@gnu.org>
6943 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6944 S:      Maintained
6945 F:      arch/m68k/hp300/
6946
6947 M88DS3103 MEDIA DRIVER
6948 M:      Antti Palosaari <crope@iki.fi>
6949 L:      linux-media@vger.kernel.org
6950 W:      https://linuxtv.org
6951 W:      http://palosaari.fi/linux/
6952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6953 T:      git git://linuxtv.org/anttip/media_tree.git
6954 S:      Maintained
6955 F:      drivers/media/dvb-frontends/m88ds3103*
6956
6957 M88RS2000 MEDIA DRIVER
6958 M:      Malcolm Priestley <tvboxspy@gmail.com>
6959 L:      linux-media@vger.kernel.org
6960 W:      https://linuxtv.org
6961 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6962 S:      Maintained
6963 F:      drivers/media/dvb-frontends/m88rs2000*
6964
6965 MA901 MASTERKIT USB FM RADIO DRIVER
6966 M:      Alexey Klimov <klimov.linux@gmail.com>
6967 L:      linux-media@vger.kernel.org
6968 T:      git git://linuxtv.org/media_tree.git
6969 S:      Maintained
6970 F:      drivers/media/radio/radio-ma901.c
6971
6972 MAC80211
6973 M:      Johannes Berg <johannes@sipsolutions.net>
6974 L:      linux-wireless@vger.kernel.org
6975 W:      http://wireless.kernel.org/
6976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6978 S:      Maintained
6979 F:      Documentation/networking/mac80211-injection.txt
6980 F:      include/net/mac80211.h
6981 F:      net/mac80211/
6982 F:      drivers/net/wireless/mac80211_hwsim.[ch]
6983
6984 MACVLAN DRIVER
6985 M:      Patrick McHardy <kaber@trash.net>
6986 L:      netdev@vger.kernel.org
6987 S:      Maintained
6988 F:      drivers/net/macvlan.c
6989 F:      include/linux/if_macvlan.h
6990
6991 MAILBOX API
6992 M:      Jassi Brar <jassisinghbrar@gmail.com>
6993 L:      linux-kernel@vger.kernel.org
6994 S:      Maintained
6995 F:      drivers/mailbox/
6996 F:      include/linux/mailbox_client.h
6997 F:      include/linux/mailbox_controller.h
6998
6999 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7000 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7001 W:      http://www.kernel.org/doc/man-pages
7002 L:      linux-man@vger.kernel.org
7003 S:      Maintained
7004
7005 MARVELL ARMADA DRM SUPPORT
7006 M:      Russell King <rmk+kernel@armlinux.org.uk>
7007 S:      Maintained
7008 F:      drivers/gpu/drm/armada/
7009
7010 MARVELL 88E6352 DSA support
7011 M:      Guenter Roeck <linux@roeck-us.net>
7012 S:      Maintained
7013 F:      drivers/net/dsa/mv88e6352.c
7014
7015 MARVELL CRYPTO DRIVER
7016 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7017 M:      Arnaud Ebalard <arno@natisbad.org>
7018 F:      drivers/crypto/marvell/
7019 S:      Maintained
7020 L:      linux-crypto@vger.kernel.org
7021
7022 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7023 M:      Mirko Lindner <mlindner@marvell.com>
7024 M:      Stephen Hemminger <stephen@networkplumber.org>
7025 L:      netdev@vger.kernel.org
7026 S:      Maintained
7027 F:      drivers/net/ethernet/marvell/sk*
7028
7029 MARVELL LIBERTAS WIRELESS DRIVER
7030 L:      libertas-dev@lists.infradead.org
7031 S:      Orphan
7032 F:      drivers/net/wireless/marvell/libertas/
7033
7034 MARVELL MV643XX ETHERNET DRIVER
7035 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7036 L:      netdev@vger.kernel.org
7037 S:      Maintained
7038 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7039 F:      include/linux/mv643xx.h
7040
7041 MARVELL MVNETA ETHERNET DRIVER
7042 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7043 L:      netdev@vger.kernel.org
7044 S:      Maintained
7045 F:      drivers/net/ethernet/marvell/mvneta.*
7046
7047 MARVELL MWIFIEX WIRELESS DRIVER
7048 M:      Amitkumar Karwar <akarwar@marvell.com>
7049 M:      Nishant Sarmukadam <nishants@marvell.com>
7050 L:      linux-wireless@vger.kernel.org
7051 S:      Maintained
7052 F:      drivers/net/wireless/marvell/mwifiex/
7053
7054 MARVELL MWL8K WIRELESS DRIVER
7055 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7056 L:      linux-wireless@vger.kernel.org
7057 S:      Odd Fixes
7058 F:      drivers/net/wireless/marvell/mwl8k.c
7059
7060 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7061 M:      Nicolas Pitre <nico@fluxnic.net>
7062 S:      Odd Fixes
7063 F:      drivers/mmc/host/mvsdio.*
7064
7065 MATROX FRAMEBUFFER DRIVER
7066 L:      linux-fbdev@vger.kernel.org
7067 S:      Orphan
7068 F:      drivers/video/fbdev/matrox/matroxfb_*
7069 F:      include/uapi/linux/matroxfb.h
7070
7071 MAX16065 HARDWARE MONITOR DRIVER
7072 M:      Guenter Roeck <linux@roeck-us.net>
7073 L:      linux-hwmon@vger.kernel.org
7074 S:      Maintained
7075 F:      Documentation/hwmon/max16065
7076 F:      drivers/hwmon/max16065.c
7077
7078 MAX20751 HARDWARE MONITOR DRIVER
7079 M:      Guenter Roeck <linux@roeck-us.net>
7080 L:      linux-hwmon@vger.kernel.org
7081 S:      Maintained
7082 F:      Documentation/hwmon/max20751
7083 F:      drivers/hwmon/max20751.c
7084
7085 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7086 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7087 L:      linux-hwmon@vger.kernel.org
7088 S:      Maintained
7089 F:      Documentation/hwmon/max6650
7090 F:      drivers/hwmon/max6650.c
7091
7092 MAX6697 HARDWARE MONITOR DRIVER
7093 M:      Guenter Roeck <linux@roeck-us.net>
7094 L:      linux-hwmon@vger.kernel.org
7095 S:      Maintained
7096 F:      Documentation/hwmon/max6697
7097 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7098 F:      drivers/hwmon/max6697.c
7099 F:      include/linux/platform_data/max6697.h
7100
7101 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7102 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7103 L:      linux-pm@vger.kernel.org
7104 S:      Supported
7105 F:      drivers/power/max14577_charger.c
7106 F:      drivers/power/max77693_charger.c
7107
7108 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7109 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7110 L:      linux-kernel@vger.kernel.org
7111 S:      Supported
7112 F:      drivers/*/*max77802*.c
7113 F:      Documentation/devicetree/bindings/*/*max77802.txt
7114 F:      include/dt-bindings/*/*max77802.h
7115
7116 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7117 M:      Chanwoo Choi <cw00.choi@samsung.com>
7118 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7119 L:      linux-kernel@vger.kernel.org
7120 S:      Supported
7121 F:      drivers/*/max14577*.c
7122 F:      drivers/*/max77686*.c
7123 F:      drivers/*/max77693*.c
7124 F:      drivers/extcon/extcon-max14577.c
7125 F:      drivers/extcon/extcon-max77693.c
7126 F:      drivers/rtc/rtc-max77686.c
7127 F:      drivers/clk/clk-max77686.c
7128 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7129 F:      Documentation/devicetree/bindings/*/max77686.txt
7130 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7131 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7132 F:      include/linux/mfd/max14577*.h
7133 F:      include/linux/mfd/max77686*.h
7134 F:      include/linux/mfd/max77693*.h
7135
7136 MAXIRADIO FM RADIO RECEIVER DRIVER
7137 M:      Hans Verkuil <hverkuil@xs4all.nl>
7138 L:      linux-media@vger.kernel.org
7139 T:      git git://linuxtv.org/media_tree.git
7140 W:      https://linuxtv.org
7141 S:      Maintained
7142 F:      drivers/media/radio/radio-maxiradio*
7143
7144 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7145 M:      Peter Rosin <peda@axentia.se>
7146 L:      linux-iio@vger.kernel.org
7147 S:      Maintained
7148 F:      drivers/iio/potentiometer/mcp4531.c
7149
7150 MEDIA DRIVERS FOR RENESAS - VSP1
7151 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7152 L:      linux-media@vger.kernel.org
7153 L:      linux-renesas-soc@vger.kernel.org
7154 T:      git git://linuxtv.org/media_tree.git
7155 S:      Supported
7156 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7157 F:      drivers/media/platform/vsp1/
7158
7159 MEDIA DRIVERS FOR ASCOT2E
7160 M:      Sergey Kozlov <serjk@netup.ru>
7161 L:      linux-media@vger.kernel.org
7162 W:      https://linuxtv.org
7163 W:      http://netup.tv/
7164 T:      git git://linuxtv.org/media_tree.git
7165 S:      Supported
7166 F:      drivers/media/dvb-frontends/ascot2e*
7167
7168 MEDIA DRIVERS FOR CXD2841ER
7169 M:      Sergey Kozlov <serjk@netup.ru>
7170 L:      linux-media@vger.kernel.org
7171 W:      https://linuxtv.org
7172 W:      http://netup.tv/
7173 T:      git git://linuxtv.org/media_tree.git
7174 S:      Supported
7175 F:      drivers/media/dvb-frontends/cxd2841er*
7176
7177 MEDIA DRIVERS FOR HORUS3A
7178 M:      Sergey Kozlov <serjk@netup.ru>
7179 L:      linux-media@vger.kernel.org
7180 W:      https://linuxtv.org
7181 W:      http://netup.tv/
7182 T:      git git://linuxtv.org/media_tree.git
7183 S:      Supported
7184 F:      drivers/media/dvb-frontends/horus3a*
7185
7186 MEDIA DRIVERS FOR LNBH25
7187 M:      Sergey Kozlov <serjk@netup.ru>
7188 L:      linux-media@vger.kernel.org
7189 W:      https://linuxtv.org
7190 W:      http://netup.tv/
7191 T:      git git://linuxtv.org/media_tree.git
7192 S:      Supported
7193 F:      drivers/media/dvb-frontends/lnbh25*
7194
7195 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7196 M:      Sergey Kozlov <serjk@netup.ru>
7197 L:      linux-media@vger.kernel.org
7198 W:      https://linuxtv.org
7199 W:      http://netup.tv/
7200 T:      git git://linuxtv.org/media_tree.git
7201 S:      Supported
7202 F:      drivers/media/pci/netup_unidvb/*
7203
7204 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7205 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7206 P:      LinuxTV.org Project
7207 L:      linux-media@vger.kernel.org
7208 W:      https://linuxtv.org
7209 Q:      http://patchwork.kernel.org/project/linux-media/list/
7210 T:      git git://linuxtv.org/media_tree.git
7211 S:      Maintained
7212 F:      Documentation/dvb/
7213 F:      Documentation/video4linux/
7214 F:      Documentation/DocBook/media/
7215 F:      drivers/media/
7216 F:      drivers/staging/media/
7217 F:      include/linux/platform_data/media/
7218 F:      include/media/
7219 F:      include/uapi/linux/dvb/
7220 F:      include/uapi/linux/videodev2.h
7221 F:      include/uapi/linux/media.h
7222 F:      include/uapi/linux/v4l2-*
7223 F:      include/uapi/linux/meye.h
7224 F:      include/uapi/linux/ivtv*
7225 F:      include/uapi/linux/uvcvideo.h
7226
7227 MEDIATEK ETHERNET DRIVER
7228 M:      Felix Fietkau <nbd@openwrt.org>
7229 M:      John Crispin <blogic@openwrt.org>
7230 L:      netdev@vger.kernel.org
7231 S:      Maintained
7232 F:      drivers/net/ethernet/mediatek/
7233
7234 MEDIATEK MT7601U WIRELESS LAN DRIVER
7235 M:      Jakub Kicinski <kubakici@wp.pl>
7236 L:      linux-wireless@vger.kernel.org
7237 S:      Maintained
7238 F:      drivers/net/wireless/mediatek/mt7601u/
7239
7240 MEGARAID SCSI/SAS DRIVERS
7241 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7242 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7243 M:      Uday Lingala <uday.lingala@avagotech.com>
7244 L:      megaraidlinux.pdl@avagotech.com
7245 L:      linux-scsi@vger.kernel.org
7246 W:      http://www.lsi.com
7247 S:      Maintained
7248 F:      Documentation/scsi/megaraid.txt
7249 F:      drivers/scsi/megaraid.*
7250 F:      drivers/scsi/megaraid/
7251
7252 MELLANOX ETHERNET DRIVER (mlx4_en)
7253 M:      Eugenia Emantayev <eugenia@mellanox.com>
7254 L:      netdev@vger.kernel.org
7255 S:      Supported
7256 W:      http://www.mellanox.com
7257 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7258 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7259
7260 MELLANOX ETHERNET DRIVER (mlx5e)
7261 M:      Saeed Mahameed <saeedm@mellanox.com>
7262 L:      netdev@vger.kernel.org
7263 S:      Supported
7264 W:      http://www.mellanox.com
7265 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7266 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7267
7268 MELLANOX ETHERNET SWITCH DRIVERS
7269 M:      Jiri Pirko <jiri@mellanox.com>
7270 M:      Ido Schimmel <idosch@mellanox.com>
7271 L:      netdev@vger.kernel.org
7272 S:      Supported
7273 W:      http://www.mellanox.com
7274 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7275 F:      drivers/net/ethernet/mellanox/mlxsw/
7276
7277 MEMBARRIER SUPPORT
7278 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7279 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7280 L:      linux-kernel@vger.kernel.org
7281 S:      Supported
7282 F:      kernel/membarrier.c
7283 F:      include/uapi/linux/membarrier.h
7284
7285 MEMORY MANAGEMENT
7286 L:      linux-mm@kvack.org
7287 W:      http://www.linux-mm.org
7288 S:      Maintained
7289 F:      include/linux/mm.h
7290 F:      include/linux/gfp.h
7291 F:      include/linux/mmzone.h
7292 F:      include/linux/memory_hotplug.h
7293 F:      include/linux/vmalloc.h
7294 F:      mm/
7295
7296 MEMORY TECHNOLOGY DEVICES (MTD)
7297 M:      David Woodhouse <dwmw2@infradead.org>
7298 M:      Brian Norris <computersforpeace@gmail.com>
7299 L:      linux-mtd@lists.infradead.org
7300 W:      http://www.linux-mtd.infradead.org/
7301 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7302 T:      git git://git.infradead.org/linux-mtd.git
7303 T:      git git://git.infradead.org/l2-mtd.git
7304 S:      Maintained
7305 F:      drivers/mtd/
7306 F:      include/linux/mtd/
7307 F:      include/uapi/mtd/
7308
7309 MEN A21 WATCHDOG DRIVER
7310 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7311 L:      linux-watchdog@vger.kernel.org
7312 S:      Maintained
7313 F:      drivers/watchdog/mena21_wdt.c
7314
7315 MEN CHAMELEON BUS (mcb)
7316 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7317 S:      Maintained
7318 F:      drivers/mcb/
7319 F:      include/linux/mcb.h
7320 F:      Documentation/men-chameleon-bus.txt
7321
7322 MEN F21BMC (Board Management Controller)
7323 M:      Andreas Werner <andreas.werner@men.de>
7324 S:      Supported
7325 F:      drivers/mfd/menf21bmc.c
7326 F:      drivers/watchdog/menf21bmc_wdt.c
7327 F:      drivers/leds/leds-menf21bmc.c
7328 F:      drivers/hwmon/menf21bmc_hwmon.c
7329 F:      Documentation/hwmon/menf21bmc
7330
7331 METAG ARCHITECTURE
7332 M:      James Hogan <james.hogan@imgtec.com>
7333 L:      linux-metag@vger.kernel.org
7334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7335 S:      Odd Fixes
7336 F:      arch/metag/
7337 F:      Documentation/metag/
7338 F:      Documentation/devicetree/bindings/metag/
7339 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7340 F:      drivers/clocksource/metag_generic.c
7341 F:      drivers/irqchip/irq-metag.c
7342 F:      drivers/irqchip/irq-metag-ext.c
7343 F:      drivers/tty/metag_da.c
7344
7345 MICROBLAZE ARCHITECTURE
7346 M:      Michal Simek <monstr@monstr.eu>
7347 W:      http://www.monstr.eu/fdt/
7348 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7349 S:      Supported
7350 F:      arch/microblaze/
7351
7352 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7353 M:      Chen Yu <yu.c.chen@intel.com>
7354 L:      platform-driver-x86@vger.kernel.org
7355 S:      Supported
7356 F:      drivers/platform/x86/surfacepro3_button.c
7357
7358 MICROTEK X6 SCANNER
7359 M:      Oliver Neukum <oliver@neukum.org>
7360 S:      Maintained
7361 F:      drivers/usb/image/microtek.*
7362
7363 MIPS
7364 M:      Ralf Baechle <ralf@linux-mips.org>
7365 L:      linux-mips@linux-mips.org
7366 W:      http://www.linux-mips.org/
7367 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7368 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7369 S:      Supported
7370 F:      Documentation/mips/
7371 F:      arch/mips/
7372
7373 MIPS/LOONGSON1 ARCHITECTURE
7374 M:      Keguang Zhang <keguang.zhang@gmail.com>
7375 L:      linux-mips@linux-mips.org
7376 S:      Maintained
7377 F:      arch/mips/loongson32/
7378 F:      arch/mips/include/asm/mach-loongson32/
7379 F:      drivers/*/*loongson1*
7380 F:      drivers/*/*/*loongson1*
7381
7382 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7383 M:      Hans Verkuil <hverkuil@xs4all.nl>
7384 L:      linux-media@vger.kernel.org
7385 T:      git git://linuxtv.org/media_tree.git
7386 W:      https://linuxtv.org
7387 S:      Odd Fixes
7388 F:      drivers/media/radio/radio-miropcm20*
7389
7390 MELLANOX MLX4 core VPI driver
7391 M:      Yishai Hadas <yishaih@mellanox.com>
7392 L:      netdev@vger.kernel.org
7393 L:      linux-rdma@vger.kernel.org
7394 W:      http://www.mellanox.com
7395 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7396 S:      Supported
7397 F:      drivers/net/ethernet/mellanox/mlx4/
7398 F:      include/linux/mlx4/
7399
7400 MELLANOX MLX4 IB driver
7401 M:      Yishai Hadas <yishaih@mellanox.com>
7402 L:      linux-rdma@vger.kernel.org
7403 W:      http://www.mellanox.com
7404 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7405 S:      Supported
7406 F:      drivers/infiniband/hw/mlx4/
7407 F:      include/linux/mlx4/
7408
7409 MELLANOX MLX5 core VPI driver
7410 M:      Matan Barak <matanb@mellanox.com>
7411 M:      Leon Romanovsky <leonro@mellanox.com>
7412 L:      netdev@vger.kernel.org
7413 L:      linux-rdma@vger.kernel.org
7414 W:      http://www.mellanox.com
7415 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7416 S:      Supported
7417 F:      drivers/net/ethernet/mellanox/mlx5/core/
7418 F:      include/linux/mlx5/
7419
7420 MELLANOX MLX5 IB driver
7421 M:      Matan Barak <matanb@mellanox.com>
7422 M:      Leon Romanovsky <leonro@mellanox.com>
7423 L:      linux-rdma@vger.kernel.org
7424 W:      http://www.mellanox.com
7425 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7426 S:      Supported
7427 F:      drivers/infiniband/hw/mlx5/
7428 F:      include/linux/mlx5/
7429
7430 MELEXIS MLX90614 DRIVER
7431 M:      Crt Mori <cmo@melexis.com>
7432 L:      linux-iio@vger.kernel.org
7433 W:      http://www.melexis.com
7434 S:      Supported
7435 F:      drivers/iio/temperature/mlx90614.c
7436
7437 MN88472 MEDIA DRIVER
7438 M:      Antti Palosaari <crope@iki.fi>
7439 L:      linux-media@vger.kernel.org
7440 W:      https://linuxtv.org
7441 W:      http://palosaari.fi/linux/
7442 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7443 T:      git git://linuxtv.org/anttip/media_tree.git
7444 S:      Maintained
7445 F:      drivers/staging/media/mn88472/
7446 F:      drivers/media/dvb-frontends/mn88472.h
7447
7448 MN88473 MEDIA DRIVER
7449 M:      Antti Palosaari <crope@iki.fi>
7450 L:      linux-media@vger.kernel.org
7451 W:      https://linuxtv.org
7452 W:      http://palosaari.fi/linux/
7453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7454 S:      Maintained
7455 F:      drivers/media/dvb-frontends/mn88473*
7456
7457 MODULE SUPPORT
7458 M:      Rusty Russell <rusty@rustcorp.com.au>
7459 S:      Maintained
7460 F:      include/linux/module.h
7461 F:      kernel/module.c
7462
7463 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7464 W:      http://popies.net/meye/
7465 S:      Orphan
7466 F:      Documentation/video4linux/meye.txt
7467 F:      drivers/media/pci/meye/
7468 F:      include/uapi/linux/meye.h
7469
7470 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7471 M:      Jiri Slaby <jirislaby@gmail.com>
7472 S:      Maintained
7473 F:      Documentation/serial/moxa-smartio
7474 F:      drivers/tty/mxser.*
7475
7476 MR800 AVERMEDIA USB FM RADIO DRIVER
7477 M:      Alexey Klimov <klimov.linux@gmail.com>
7478 L:      linux-media@vger.kernel.org
7479 T:      git git://linuxtv.org/media_tree.git
7480 S:      Maintained
7481 F:      drivers/media/radio/radio-mr800.c
7482
7483 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7484 M:      Alan Ott <alan@signal11.us>
7485 L:      linux-wpan@vger.kernel.org
7486 S:      Maintained
7487 F:      drivers/net/ieee802154/mrf24j40.c
7488 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7489
7490 MSI LAPTOP SUPPORT
7491 M:      "Lee, Chun-Yi" <jlee@suse.com>
7492 L:      platform-driver-x86@vger.kernel.org
7493 S:      Maintained
7494 F:      drivers/platform/x86/msi-laptop.c
7495
7496 MSI WMI SUPPORT
7497 L:      platform-driver-x86@vger.kernel.org
7498 S:      Orphan
7499 F:      drivers/platform/x86/msi-wmi.c
7500
7501 MSI001 MEDIA DRIVER
7502 M:      Antti Palosaari <crope@iki.fi>
7503 L:      linux-media@vger.kernel.org
7504 W:      https://linuxtv.org
7505 W:      http://palosaari.fi/linux/
7506 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7507 T:      git git://linuxtv.org/anttip/media_tree.git
7508 S:      Maintained
7509 F:      drivers/media/tuners/msi001*
7510
7511 MSI2500 MEDIA DRIVER
7512 M:      Antti Palosaari <crope@iki.fi>
7513 L:      linux-media@vger.kernel.org
7514 W:      https://linuxtv.org
7515 W:      http://palosaari.fi/linux/
7516 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7517 T:      git git://linuxtv.org/anttip/media_tree.git
7518 S:      Maintained
7519 F:      drivers/media/usb/msi2500/
7520
7521 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7522 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7523 L:      linux-mtd@lists.infradead.org
7524 S:      Maintained
7525 F:      drivers/mtd/devices/docg3*
7526
7527 MT9M032 APTINA SENSOR DRIVER
7528 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7529 L:      linux-media@vger.kernel.org
7530 T:      git git://linuxtv.org/media_tree.git
7531 S:      Maintained
7532 F:      drivers/media/i2c/mt9m032.c
7533 F:      include/media/i2c/mt9m032.h
7534
7535 MT9P031 APTINA CAMERA SENSOR
7536 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7537 L:      linux-media@vger.kernel.org
7538 T:      git git://linuxtv.org/media_tree.git
7539 S:      Maintained
7540 F:      drivers/media/i2c/mt9p031.c
7541 F:      include/media/i2c/mt9p031.h
7542
7543 MT9T001 APTINA CAMERA SENSOR
7544 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7545 L:      linux-media@vger.kernel.org
7546 T:      git git://linuxtv.org/media_tree.git
7547 S:      Maintained
7548 F:      drivers/media/i2c/mt9t001.c
7549 F:      include/media/i2c/mt9t001.h
7550
7551 MT9V032 APTINA CAMERA SENSOR
7552 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7553 L:      linux-media@vger.kernel.org
7554 T:      git git://linuxtv.org/media_tree.git
7555 S:      Maintained
7556 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7557 F:      drivers/media/i2c/mt9v032.c
7558 F:      include/media/i2c/mt9v032.h
7559
7560 MULTIFUNCTION DEVICES (MFD)
7561 M:      Lee Jones <lee.jones@linaro.org>
7562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7563 S:      Supported
7564 F:      drivers/mfd/
7565 F:      include/linux/mfd/
7566
7567 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7568 M:      Ulf Hansson <ulf.hansson@linaro.org>
7569 L:      linux-mmc@vger.kernel.org
7570 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7571 S:      Maintained
7572 F:      drivers/mmc/
7573 F:      include/linux/mmc/
7574 F:      include/uapi/linux/mmc/
7575
7576 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7577 S:      Orphan
7578 F:      drivers/mmc/host/mmc_spi.c
7579 F:      include/linux/spi/mmc_spi.h
7580
7581 MULTISOUND SOUND DRIVER
7582 M:      Andrew Veliath <andrewtv@usa.net>
7583 S:      Maintained
7584 F:      Documentation/sound/oss/MultiSound
7585 F:      sound/oss/msnd*
7586
7587 MULTITECH MULTIPORT CARD (ISICOM)
7588 S:      Orphan
7589 F:      drivers/tty/isicom.c
7590 F:      include/linux/isicom.h
7591
7592 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7593 M:      Bin Liu <b-liu@ti.com>
7594 L:      linux-usb@vger.kernel.org
7595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7596 S:      Maintained
7597 F:      drivers/usb/musb/
7598
7599 MXL5007T MEDIA DRIVER
7600 M:      Michael Krufky <mkrufky@linuxtv.org>
7601 L:      linux-media@vger.kernel.org
7602 W:      https://linuxtv.org
7603 W:      http://github.com/mkrufky
7604 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7605 T:      git git://linuxtv.org/mkrufky/tuners.git
7606 S:      Maintained
7607 F:      drivers/media/tuners/mxl5007t.*
7608
7609 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7610 M:      Hyong-Youb Kim <hykim@myri.com>
7611 L:      netdev@vger.kernel.org
7612 W:      https://www.myricom.com/support/downloads/myri10ge.html
7613 S:      Supported
7614 F:      drivers/net/ethernet/myricom/myri10ge/
7615
7616 NAND FLASH SUBSYSTEM
7617 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7618 R:      Richard Weinberger <richard@nod.at>
7619 L:      linux-mtd@lists.infradead.org
7620 W:      http://www.linux-mtd.infradead.org/
7621 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7622 T:      git git://github.com/linux-nand/linux.git
7623 S:      Maintained
7624 F:      drivers/mtd/nand/
7625 F:      include/linux/mtd/nand*.h
7626
7627 NATSEMI ETHERNET DRIVER (DP8381x)
7628 S:      Orphan
7629 F:      drivers/net/ethernet/natsemi/natsemi.c
7630
7631 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7632 M:      Daniel Mack <zonque@gmail.com>
7633 S:      Maintained
7634 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7635 W:      http://www.native-instruments.com
7636 F:      sound/usb/caiaq/
7637
7638 NCP FILESYSTEM
7639 M:      Petr Vandrovec <petr@vandrovec.name>
7640 S:      Odd Fixes
7641 F:      fs/ncpfs/
7642
7643 NCR 5380 SCSI DRIVERS
7644 M:      Finn Thain <fthain@telegraphics.com.au>
7645 M:      Michael Schmitz <schmitzmic@gmail.com>
7646 L:      linux-scsi@vger.kernel.org
7647 S:      Maintained
7648 F:      Documentation/scsi/g_NCR5380.txt
7649 F:      Documentation/scsi/dtc3x80.txt
7650 F:      drivers/scsi/NCR5380.*
7651 F:      drivers/scsi/arm/cumana_1.c
7652 F:      drivers/scsi/arm/oak.c
7653 F:      drivers/scsi/atari_scsi.*
7654 F:      drivers/scsi/dmx3191d.c
7655 F:      drivers/scsi/dtc.*
7656 F:      drivers/scsi/g_NCR5380.*
7657 F:      drivers/scsi/g_NCR5380_mmio.c
7658 F:      drivers/scsi/mac_scsi.*
7659 F:      drivers/scsi/pas16.*
7660 F:      drivers/scsi/sun3_scsi.*
7661 F:      drivers/scsi/sun3_scsi_vme.c
7662 F:      drivers/scsi/t128.*
7663
7664 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7665 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7666 L:      linux-scsi@vger.kernel.org
7667 S:      Maintained
7668 F:      drivers/scsi/NCR_D700.*
7669
7670 NCT6775 HARDWARE MONITOR DRIVER
7671 M:      Guenter Roeck <linux@roeck-us.net>
7672 L:      linux-hwmon@vger.kernel.org
7673 S:      Maintained
7674 F:      Documentation/hwmon/nct6775
7675 F:      drivers/hwmon/nct6775.c
7676
7677 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7678 M:      Faisal Latif <faisal.latif@intel.com>
7679 L:      linux-rdma@vger.kernel.org
7680 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7681 S:      Supported
7682 F:      drivers/infiniband/hw/nes/
7683
7684 NETEM NETWORK EMULATOR
7685 M:      Stephen Hemminger <stephen@networkplumber.org>
7686 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
7687 S:      Maintained
7688 F:      net/sched/sch_netem.c
7689
7690 NETERION 10GbE DRIVERS (s2io/vxge)
7691 M:      Jon Mason <jdmason@kudzu.us>
7692 L:      netdev@vger.kernel.org
7693 S:      Supported
7694 F:      Documentation/networking/s2io.txt
7695 F:      Documentation/networking/vxge.txt
7696 F:      drivers/net/ethernet/neterion/
7697
7698 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7699 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7700 M:      Patrick McHardy <kaber@trash.net>
7701 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7702 L:      netfilter-devel@vger.kernel.org
7703 L:      coreteam@netfilter.org
7704 W:      http://www.netfilter.org/
7705 W:      http://www.iptables.org/
7706 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7709 S:      Supported
7710 F:      include/linux/netfilter*
7711 F:      include/linux/netfilter/
7712 F:      include/net/netfilter/
7713 F:      include/uapi/linux/netfilter*
7714 F:      include/uapi/linux/netfilter/
7715 F:      net/*/netfilter.c
7716 F:      net/*/netfilter/
7717 F:      net/netfilter/
7718 F:      net/bridge/br_netfilter*.c
7719
7720 NETLABEL
7721 M:      Paul Moore <paul@paul-moore.com>
7722 W:      http://netlabel.sf.net
7723 L:      netdev@vger.kernel.org
7724 S:      Maintained
7725 F:      Documentation/netlabel/
7726 F:      include/net/netlabel.h
7727 F:      net/netlabel/
7728
7729 NETROM NETWORK LAYER
7730 M:      Ralf Baechle <ralf@linux-mips.org>
7731 L:      linux-hams@vger.kernel.org
7732 W:      http://www.linux-ax25.org/
7733 S:      Maintained
7734 F:      include/net/netrom.h
7735 F:      include/uapi/linux/netrom.h
7736 F:      net/netrom/
7737
7738 NETRONOME ETHERNET DRIVERS
7739 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7740 L:      oss-drivers@netronome.com
7741 S:      Maintained
7742 F:      drivers/net/ethernet/netronome/
7743
7744 NETWORK BLOCK DEVICE (NBD)
7745 M:      Markus Pargmann <mpa@pengutronix.de>
7746 S:      Maintained
7747 L:      nbd-general@lists.sourceforge.net
7748 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7749 F:      Documentation/blockdev/nbd.txt
7750 F:      drivers/block/nbd.c
7751 F:      include/uapi/linux/nbd.h
7752
7753 NETWORK DROP MONITOR
7754 M:      Neil Horman <nhorman@tuxdriver.com>
7755 L:      netdev@vger.kernel.org
7756 S:      Maintained
7757 W:      https://fedorahosted.org/dropwatch/
7758 F:      net/core/drop_monitor.c
7759
7760 NETWORKING [GENERAL]
7761 M:      "David S. Miller" <davem@davemloft.net>
7762 L:      netdev@vger.kernel.org
7763 W:      http://www.linuxfoundation.org/en/Net
7764 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7767 S:      Maintained
7768 F:      net/
7769 F:      include/net/
7770 F:      include/linux/in.h
7771 F:      include/linux/net.h
7772 F:      include/linux/netdevice.h
7773 F:      include/uapi/linux/in.h
7774 F:      include/uapi/linux/net.h
7775 F:      include/uapi/linux/netdevice.h
7776 F:      include/uapi/linux/net_namespace.h
7777 F:      tools/net/
7778 F:      tools/testing/selftests/net/
7779 F:      lib/random32.c
7780 F:      lib/test_bpf.c
7781
7782 NETWORKING [IPv4/IPv6]
7783 M:      "David S. Miller" <davem@davemloft.net>
7784 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7785 M:      James Morris <jmorris@namei.org>
7786 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7787 M:      Patrick McHardy <kaber@trash.net>
7788 L:      netdev@vger.kernel.org
7789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7790 S:      Maintained
7791 F:      net/ipv4/
7792 F:      net/ipv6/
7793 F:      include/net/ip*
7794 F:      arch/x86/net/*
7795
7796 NETWORKING [IPSEC]
7797 M:      Steffen Klassert <steffen.klassert@secunet.com>
7798 M:      Herbert Xu <herbert@gondor.apana.org.au>
7799 M:      "David S. Miller" <davem@davemloft.net>
7800 L:      netdev@vger.kernel.org
7801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7803 S:      Maintained
7804 F:      net/core/flow.c
7805 F:      net/xfrm/
7806 F:      net/key/
7807 F:      net/ipv4/xfrm*
7808 F:      net/ipv4/esp4.c
7809 F:      net/ipv4/ah4.c
7810 F:      net/ipv4/ipcomp.c
7811 F:      net/ipv4/ip_vti.c
7812 F:      net/ipv6/xfrm*
7813 F:      net/ipv6/esp6.c
7814 F:      net/ipv6/ah6.c
7815 F:      net/ipv6/ipcomp6.c
7816 F:      net/ipv6/ip6_vti.c
7817 F:      include/uapi/linux/xfrm.h
7818 F:      include/net/xfrm.h
7819
7820 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7821 M:      Paul Moore <paul@paul-moore.com>
7822 L:      netdev@vger.kernel.org
7823 S:      Maintained
7824
7825 NETWORKING [WIRELESS]
7826 L:      linux-wireless@vger.kernel.org
7827 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7828
7829 NETWORKING DRIVERS
7830 L:      netdev@vger.kernel.org
7831 W:      http://www.linuxfoundation.org/en/Net
7832 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7835 S:      Odd Fixes
7836 F:      drivers/net/
7837 F:      include/linux/if_*
7838 F:      include/linux/netdevice.h
7839 F:      include/linux/etherdevice.h
7840 F:      include/linux/fcdevice.h
7841 F:      include/linux/fddidevice.h
7842 F:      include/linux/hippidevice.h
7843 F:      include/linux/inetdevice.h
7844 F:      include/uapi/linux/if_*
7845 F:      include/uapi/linux/netdevice.h
7846
7847 NETWORKING DRIVERS (WIRELESS)
7848 M:      Kalle Valo <kvalo@codeaurora.org>
7849 L:      linux-wireless@vger.kernel.org
7850 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7853 S:      Maintained
7854 F:      drivers/net/wireless/
7855
7856 NETXEN (1/10) GbE SUPPORT
7857 M:      Manish Chopra <manish.chopra@qlogic.com>
7858 M:      Sony Chacko <sony.chacko@qlogic.com>
7859 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7860 L:      netdev@vger.kernel.org
7861 W:      http://www.qlogic.com
7862 S:      Supported
7863 F:      drivers/net/ethernet/qlogic/netxen/
7864
7865 NFC SUBSYSTEM
7866 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7867 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7868 M:      Samuel Ortiz <sameo@linux.intel.com>
7869 L:      linux-wireless@vger.kernel.org
7870 L:      linux-nfc@lists.01.org (subscribers-only)
7871 S:      Supported
7872 F:      net/nfc/
7873 F:      include/net/nfc/
7874 F:      include/uapi/linux/nfc.h
7875 F:      drivers/nfc/
7876 F:      include/linux/platform_data/nfcmrvl.h
7877 F:      include/linux/platform_data/nxp-nci.h
7878 F:      include/linux/platform_data/pn544.h
7879 F:      include/linux/platform_data/st21nfca.h
7880 F:      include/linux/platform_data/st-nci.h
7881 F:      Documentation/devicetree/bindings/net/nfc/
7882
7883 NFS, SUNRPC, AND LOCKD CLIENTS
7884 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7885 M:      Anna Schumaker <anna.schumaker@netapp.com>
7886 L:      linux-nfs@vger.kernel.org
7887 W:      http://client.linux-nfs.org
7888 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7889 S:      Maintained
7890 F:      fs/lockd/
7891 F:      fs/nfs/
7892 F:      fs/nfs_common/
7893 F:      net/sunrpc/
7894 F:      include/linux/lockd/
7895 F:      include/linux/nfs*
7896 F:      include/linux/sunrpc/
7897 F:      include/uapi/linux/nfs*
7898 F:      include/uapi/linux/sunrpc/
7899
7900 NILFS2 FILESYSTEM
7901 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7902 L:      linux-nilfs@vger.kernel.org
7903 W:      http://nilfs.sourceforge.net/
7904 W:      http://nilfs.osdn.jp/
7905 T:      git git://github.com/konis/nilfs2.git
7906 S:      Supported
7907 F:      Documentation/filesystems/nilfs2.txt
7908 F:      fs/nilfs2/
7909 F:      include/linux/nilfs2_fs.h
7910 F:      include/trace/events/nilfs2.h
7911
7912 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7913 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7914 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7915 S:      Maintained
7916 F:      Documentation/scsi/NinjaSCSI.txt
7917 F:      drivers/scsi/pcmcia/nsp_*
7918
7919 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7920 M:      GOTO Masanori <gotom@debian.or.jp>
7921 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7922 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7923 S:      Maintained
7924 F:      Documentation/scsi/NinjaSCSI.txt
7925 F:      drivers/scsi/nsp32*
7926
7927 NIOS2 ARCHITECTURE
7928 M:      Ley Foon Tan <lftan@altera.com>
7929 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7931 S:      Maintained
7932 F:      arch/nios2/
7933
7934 NOKIA N900 POWER SUPPLY DRIVERS
7935 R:      Pali Rohár <pali.rohar@gmail.com>
7936 F:      include/linux/power/bq2415x_charger.h
7937 F:      include/linux/power/bq27xxx_battery.h
7938 F:      include/linux/power/isp1704_charger.h
7939 F:      drivers/power/bq2415x_charger.c
7940 F:      drivers/power/bq27xxx_battery.c
7941 F:      drivers/power/bq27xxx_battery_i2c.c
7942 F:      drivers/power/isp1704_charger.c
7943 F:      drivers/power/rx51_battery.c
7944
7945 NTB DRIVER CORE
7946 M:      Jon Mason <jdmason@kudzu.us>
7947 M:      Dave Jiang <dave.jiang@intel.com>
7948 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7949 L:      linux-ntb@googlegroups.com
7950 S:      Supported
7951 W:      https://github.com/jonmason/ntb/wiki
7952 T:      git git://github.com/jonmason/ntb.git
7953 F:      drivers/ntb/
7954 F:      drivers/net/ntb_netdev.c
7955 F:      include/linux/ntb.h
7956 F:      include/linux/ntb_transport.h
7957
7958 NTB INTEL DRIVER
7959 M:      Jon Mason <jdmason@kudzu.us>
7960 M:      Dave Jiang <dave.jiang@intel.com>
7961 L:      linux-ntb@googlegroups.com
7962 S:      Supported
7963 W:      https://github.com/jonmason/ntb/wiki
7964 T:      git git://github.com/jonmason/ntb.git
7965 F:      drivers/ntb/hw/intel/
7966
7967 NTB AMD DRIVER
7968 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7969 L:      linux-ntb@googlegroups.com
7970 S:      Supported
7971 F:      drivers/ntb/hw/amd/
7972
7973 NTFS FILESYSTEM
7974 M:      Anton Altaparmakov <anton@tuxera.com>
7975 L:      linux-ntfs-dev@lists.sourceforge.net
7976 W:      http://www.tuxera.com/
7977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7978 S:      Supported
7979 F:      Documentation/filesystems/ntfs.txt
7980 F:      fs/ntfs/
7981
7982 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7983 M:      Antonino Daplas <adaplas@gmail.com>
7984 L:      linux-fbdev@vger.kernel.org
7985 S:      Maintained
7986 F:      drivers/video/fbdev/riva/
7987 F:      drivers/video/fbdev/nvidia/
7988
7989 NVM EXPRESS DRIVER
7990 M:      Keith Busch <keith.busch@intel.com>
7991 M:      Jens Axboe <axboe@fb.com>
7992 L:      linux-nvme@lists.infradead.org
7993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7994 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7995 S:      Supported
7996 F:      drivers/nvme/host/
7997 F:      include/linux/nvme.h
7998
7999 NVMEM FRAMEWORK
8000 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8001 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8002 S:      Maintained
8003 F:      drivers/nvmem/
8004 F:      Documentation/devicetree/bindings/nvmem/
8005 F:      include/linux/nvmem-consumer.h
8006 F:      include/linux/nvmem-provider.h
8007
8008 NXP-NCI NFC DRIVER
8009 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8010 R:      Charles Gorand <charles.gorand@effinnov.com>
8011 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8012 S:      Supported
8013 F:      drivers/nfc/nxp-nci
8014
8015 NXP TDA998X DRM DRIVER
8016 M:      Russell King <rmk+kernel@armlinux.org.uk>
8017 S:      Supported
8018 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8019 F:      include/drm/i2c/tda998x.h
8020
8021 NXP TFA9879 DRIVER
8022 M:      Peter Rosin <peda@axentia.se>
8023 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8024 S:      Maintained
8025 F:      sound/soc/codecs/tfa9879*
8026
8027 OBJTOOL
8028 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8029 S:      Supported
8030 F:      tools/objtool/
8031
8032 OMAP SUPPORT
8033 M:      Tony Lindgren <tony@atomide.com>
8034 L:      linux-omap@vger.kernel.org
8035 W:      http://www.muru.com/linux/omap/
8036 W:      http://linux.omap.com/
8037 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8039 S:      Maintained
8040 F:      arch/arm/*omap*/
8041 F:      arch/arm/configs/omap1_defconfig
8042 F:      arch/arm/configs/omap2plus_defconfig
8043 F:      drivers/i2c/busses/i2c-omap.c
8044 F:      drivers/irqchip/irq-omap-intc.c
8045 F:      drivers/mfd/*omap*.c
8046 F:      drivers/mfd/menelaus.c
8047 F:      drivers/mfd/palmas.c
8048 F:      drivers/mfd/tps65217.c
8049 F:      drivers/mfd/tps65218.c
8050 F:      drivers/mfd/tps65910.c
8051 F:      drivers/mfd/twl-core.[ch]
8052 F:      drivers/mfd/twl4030*.c
8053 F:      drivers/mfd/twl6030*.c
8054 F:      drivers/mfd/twl6040*.c
8055 F:      drivers/regulator/palmas-regulator*.c
8056 F:      drivers/regulator/pbias-regulator.c
8057 F:      drivers/regulator/tps65217-regulator.c
8058 F:      drivers/regulator/tps65218-regulator.c
8059 F:      drivers/regulator/tps65910-regulator.c
8060 F:      drivers/regulator/twl-regulator.c
8061 F:      include/linux/i2c-omap.h
8062
8063 OMAP DEVICE TREE SUPPORT
8064 M:      Benoît Cousson <bcousson@baylibre.com>
8065 M:      Tony Lindgren <tony@atomide.com>
8066 L:      linux-omap@vger.kernel.org
8067 L:      devicetree@vger.kernel.org
8068 S:      Maintained
8069 F:      arch/arm/boot/dts/*omap*
8070 F:      arch/arm/boot/dts/*am3*
8071 F:      arch/arm/boot/dts/*am4*
8072 F:      arch/arm/boot/dts/*am5*
8073 F:      arch/arm/boot/dts/*dra7*
8074
8075 OMAP CLOCK FRAMEWORK SUPPORT
8076 M:      Paul Walmsley <paul@pwsan.com>
8077 L:      linux-omap@vger.kernel.org
8078 S:      Maintained
8079 F:      arch/arm/*omap*/*clock*
8080
8081 OMAP POWER MANAGEMENT SUPPORT
8082 M:      Kevin Hilman <khilman@kernel.org>
8083 L:      linux-omap@vger.kernel.org
8084 S:      Maintained
8085 F:      arch/arm/*omap*/*pm*
8086 F:      drivers/cpufreq/omap-cpufreq.c
8087
8088 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8089 M:      Rajendra Nayak <rnayak@codeaurora.org>
8090 M:      Paul Walmsley <paul@pwsan.com>
8091 L:      linux-omap@vger.kernel.org
8092 S:      Maintained
8093 F:      arch/arm/mach-omap2/prm*
8094
8095 OMAP AUDIO SUPPORT
8096 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8097 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8098 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8099 L:      linux-omap@vger.kernel.org
8100 S:      Maintained
8101 F:      sound/soc/omap/
8102
8103 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8104 M:      Roger Quadros <rogerq@ti.com>
8105 M:      Tony Lindgren <tony@atomide.com>
8106 L:      linux-omap@vger.kernel.org
8107 S:      Maintained
8108 F:      drivers/memory/omap-gpmc.c
8109 F:      arch/arm/mach-omap2/*gpmc*
8110
8111 OMAP FRAMEBUFFER SUPPORT
8112 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8113 L:      linux-fbdev@vger.kernel.org
8114 L:      linux-omap@vger.kernel.org
8115 S:      Maintained
8116 F:      drivers/video/fbdev/omap/
8117
8118 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8119 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8120 L:      linux-omap@vger.kernel.org
8121 L:      linux-fbdev@vger.kernel.org
8122 S:      Maintained
8123 F:      drivers/video/fbdev/omap2/
8124 F:      Documentation/arm/OMAP/DSS
8125
8126 OMAP HARDWARE SPINLOCK SUPPORT
8127 M:      Ohad Ben-Cohen <ohad@wizery.com>
8128 L:      linux-omap@vger.kernel.org
8129 S:      Maintained
8130 F:      drivers/hwspinlock/omap_hwspinlock.c
8131
8132 OMAP MMC SUPPORT
8133 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8134 L:      linux-omap@vger.kernel.org
8135 S:      Maintained
8136 F:      drivers/mmc/host/omap.c
8137
8138 OMAP HS MMC SUPPORT
8139 L:      linux-mmc@vger.kernel.org
8140 L:      linux-omap@vger.kernel.org
8141 S:      Orphan
8142 F:      drivers/mmc/host/omap_hsmmc.c
8143
8144 OMAP RANDOM NUMBER GENERATOR SUPPORT
8145 M:      Deepak Saxena <dsaxena@plexity.net>
8146 S:      Maintained
8147 F:      drivers/char/hw_random/omap-rng.c
8148
8149 OMAP HWMOD SUPPORT
8150 M:      Benoît Cousson <bcousson@baylibre.com>
8151 M:      Paul Walmsley <paul@pwsan.com>
8152 L:      linux-omap@vger.kernel.org
8153 S:      Maintained
8154 F:      arch/arm/mach-omap2/omap_hwmod.*
8155
8156 OMAP HWMOD DATA
8157 M:      Paul Walmsley <paul@pwsan.com>
8158 L:      linux-omap@vger.kernel.org
8159 S:      Maintained
8160 F:      arch/arm/mach-omap2/omap_hwmod*data*
8161
8162 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8163 M:      Benoît Cousson <bcousson@baylibre.com>
8164 L:      linux-omap@vger.kernel.org
8165 S:      Maintained
8166 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8167
8168 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8169 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8170 L:      linux-media@vger.kernel.org
8171 S:      Maintained
8172 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8173 F:      drivers/media/platform/omap3isp/
8174 F:      drivers/staging/media/omap4iss/
8175
8176 OMAP USB SUPPORT
8177 L:      linux-usb@vger.kernel.org
8178 L:      linux-omap@vger.kernel.org
8179 S:      Orphan
8180 F:      drivers/usb/*/*omap*
8181 F:      arch/arm/*omap*/usb*
8182
8183 OMAP GPIO DRIVER
8184 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8185 M:      Santosh Shilimkar <ssantosh@kernel.org>
8186 M:      Kevin Hilman <khilman@kernel.org>
8187 L:      linux-omap@vger.kernel.org
8188 S:      Maintained
8189 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8190 F:      drivers/gpio/gpio-omap.c
8191
8192 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8193 M:      Mark Jackson <mpfj@newflow.co.uk>
8194 L:      linux-omap@vger.kernel.org
8195 S:      Maintained
8196 F:      arch/arm/boot/dts/am335x-nano.dts
8197
8198 OMFS FILESYSTEM
8199 M:      Bob Copeland <me@bobcopeland.com>
8200 L:      linux-karma-devel@lists.sourceforge.net
8201 S:      Maintained
8202 F:      Documentation/filesystems/omfs.txt
8203 F:      fs/omfs/
8204
8205 OMNIKEY CARDMAN 4000 DRIVER
8206 M:      Harald Welte <laforge@gnumonks.org>
8207 S:      Maintained
8208 F:      drivers/char/pcmcia/cm4000_cs.c
8209 F:      include/linux/cm4000_cs.h
8210 F:      include/uapi/linux/cm4000_cs.h
8211
8212 OMNIKEY CARDMAN 4040 DRIVER
8213 M:      Harald Welte <laforge@gnumonks.org>
8214 S:      Maintained
8215 F:      drivers/char/pcmcia/cm4040_cs.*
8216
8217 OMNIVISION OV7670 SENSOR DRIVER
8218 M:      Jonathan Corbet <corbet@lwn.net>
8219 L:      linux-media@vger.kernel.org
8220 T:      git git://linuxtv.org/media_tree.git
8221 S:      Maintained
8222 F:      drivers/media/i2c/ov7670.c
8223
8224 ONENAND FLASH DRIVER
8225 M:      Kyungmin Park <kyungmin.park@samsung.com>
8226 L:      linux-mtd@lists.infradead.org
8227 S:      Maintained
8228 F:      drivers/mtd/onenand/
8229 F:      include/linux/mtd/onenand*.h
8230
8231 ONSTREAM SCSI TAPE DRIVER
8232 M:      Willem Riede <osst@riede.org>
8233 L:      osst-users@lists.sourceforge.net
8234 L:      linux-scsi@vger.kernel.org
8235 S:      Maintained
8236 F:      Documentation/scsi/osst.txt
8237 F:      drivers/scsi/osst.*
8238 F:      drivers/scsi/osst_*.h
8239 F:      drivers/scsi/st.h
8240
8241 OPENCORES I2C BUS DRIVER
8242 M:      Peter Korsgaard <jacmet@sunsite.dk>
8243 L:      linux-i2c@vger.kernel.org
8244 S:      Maintained
8245 F:      Documentation/i2c/busses/i2c-ocores
8246 F:      drivers/i2c/busses/i2c-ocores.c
8247
8248 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8249 M:      Rob Herring <robh+dt@kernel.org>
8250 M:      Frank Rowand <frowand.list@gmail.com>
8251 M:      Grant Likely <grant.likely@linaro.org>
8252 L:      devicetree@vger.kernel.org
8253 W:      http://www.devicetree.org/
8254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8255 S:      Maintained
8256 F:      drivers/of/
8257 F:      include/linux/of*.h
8258 F:      scripts/dtc/
8259
8260 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8261 M:      Rob Herring <robh+dt@kernel.org>
8262 M:      Pawel Moll <pawel.moll@arm.com>
8263 M:      Mark Rutland <mark.rutland@arm.com>
8264 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8265 M:      Kumar Gala <galak@codeaurora.org>
8266 L:      devicetree@vger.kernel.org
8267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8268 S:      Maintained
8269 F:      Documentation/devicetree/
8270 F:      arch/*/boot/dts/
8271 F:      include/dt-bindings/
8272
8273 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8274 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8275 L:      devicetree@vger.kernel.org
8276 S:      Maintained
8277 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8278 F:      Documentation/devicetree/overlay-notes.txt
8279 F:      drivers/of/overlay.c
8280 F:      drivers/of/resolver.c
8281
8282 OPENRISC ARCHITECTURE
8283 M:      Jonas Bonn <jonas@southpole.se>
8284 W:      http://openrisc.net
8285 S:      Maintained
8286 T:      git git://openrisc.net/~jonas/linux
8287 F:      arch/openrisc/
8288
8289 OPENVSWITCH
8290 M:      Pravin Shelar <pshelar@nicira.com>
8291 L:      netdev@vger.kernel.org
8292 L:      dev@openvswitch.org
8293 W:      http://openvswitch.org
8294 S:      Maintained
8295 F:      net/openvswitch/
8296 F:      include/uapi/linux/openvswitch.h
8297
8298 OPERATING PERFORMANCE POINTS (OPP)
8299 M:      Viresh Kumar <vireshk@kernel.org>
8300 M:      Nishanth Menon <nm@ti.com>
8301 M:      Stephen Boyd <sboyd@codeaurora.org>
8302 L:      linux-pm@vger.kernel.org
8303 S:      Maintained
8304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8305 F:      drivers/base/power/opp/
8306 F:      include/linux/pm_opp.h
8307 F:      Documentation/power/opp.txt
8308 F:      Documentation/devicetree/bindings/opp/
8309
8310 OPL4 DRIVER
8311 M:      Clemens Ladisch <clemens@ladisch.de>
8312 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8313 T:      git git://git.alsa-project.org/alsa-kernel.git
8314 S:      Maintained
8315 F:      sound/drivers/opl4/
8316
8317 OPROFILE
8318 M:      Robert Richter <rric@kernel.org>
8319 L:      oprofile-list@lists.sf.net
8320 S:      Maintained
8321 F:      arch/*/include/asm/oprofile*.h
8322 F:      arch/*/oprofile/
8323 F:      drivers/oprofile/
8324 F:      include/linux/oprofile.h
8325
8326 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8327 M:      Mark Fasheh <mfasheh@suse.com>
8328 M:      Joel Becker <jlbec@evilplan.org>
8329 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8330 W:      http://ocfs2.wiki.kernel.org
8331 S:      Supported
8332 F:      Documentation/filesystems/ocfs2.txt
8333 F:      Documentation/filesystems/dlmfs.txt
8334 F:      fs/ocfs2/
8335
8336 ORINOCO DRIVER
8337 L:      linux-wireless@vger.kernel.org
8338 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8339 W:      http://www.nongnu.org/orinoco/
8340 S:      Orphan
8341 F:      drivers/net/wireless/intersil/orinoco/
8342
8343 OSD LIBRARY and FILESYSTEM
8344 M:      Boaz Harrosh <ooo@electrozaur.com>
8345 M:      Benny Halevy <bhalevy@primarydata.com>
8346 L:      osd-dev@open-osd.org
8347 W:      http://open-osd.org
8348 T:      git git://git.open-osd.org/open-osd.git
8349 S:      Maintained
8350 F:      drivers/scsi/osd/
8351 F:      include/scsi/osd_*
8352 F:      fs/exofs/
8353
8354 OVERLAY FILESYSTEM
8355 M:      Miklos Szeredi <miklos@szeredi.hu>
8356 L:      linux-unionfs@vger.kernel.org
8357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8358 S:      Supported
8359 F:      fs/overlayfs/
8360 F:      Documentation/filesystems/overlayfs.txt
8361
8362 ORANGEFS FILESYSTEM
8363 M:      Mike Marshall <hubcap@omnibond.com>
8364 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8366 S:      Supported
8367 F:      fs/orangefs/
8368 F:      Documentation/filesystems/orangefs.txt
8369
8370 P54 WIRELESS DRIVER
8371 M:      Christian Lamparter <chunkeey@googlemail.com>
8372 L:      linux-wireless@vger.kernel.org
8373 W:      http://wireless.kernel.org/en/users/Drivers/p54
8374 S:      Maintained
8375 F:      drivers/net/wireless/intersil/p54/
8376
8377 PA SEMI ETHERNET DRIVER
8378 M:      Olof Johansson <olof@lixom.net>
8379 L:      netdev@vger.kernel.org
8380 S:      Maintained
8381 F:      drivers/net/ethernet/pasemi/*
8382
8383 PA SEMI SMBUS DRIVER
8384 M:      Olof Johansson <olof@lixom.net>
8385 L:      linux-i2c@vger.kernel.org
8386 S:      Maintained
8387 F:      drivers/i2c/busses/i2c-pasemi.c
8388
8389 PADATA PARALLEL EXECUTION MECHANISM
8390 M:      Steffen Klassert <steffen.klassert@secunet.com>
8391 L:      linux-crypto@vger.kernel.org
8392 S:      Maintained
8393 F:      kernel/padata.c
8394 F:      include/linux/padata.h
8395 F:      Documentation/padata.txt
8396
8397 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8398 M:      Harald Welte <laforge@gnumonks.org>
8399 L:      platform-driver-x86@vger.kernel.org
8400 S:      Maintained
8401 F:      drivers/platform/x86/panasonic-laptop.c
8402
8403 PANASONIC MN10300/AM33/AM34 PORT
8404 M:      David Howells <dhowells@redhat.com>
8405 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8406 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8407 S:      Maintained
8408 F:      Documentation/mn10300/
8409 F:      arch/mn10300/
8410
8411 PARALLEL LCD/KEYPAD PANEL DRIVER
8412 M:      Willy Tarreau <willy@haproxy.com>
8413 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8414 S:      Odd Fixes
8415 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8416 F:      drivers/misc/panel.c
8417
8418 PARALLEL PORT SUBSYSTEM
8419 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8420 M:      Sudip Mukherjee <sudip@vectorindia.org>
8421 L:      linux-parport@lists.infradead.org (subscribers-only)
8422 S:      Maintained
8423 F:      drivers/parport/
8424 F:      include/linux/parport*.h
8425 F:      drivers/char/ppdev.c
8426 F:      include/uapi/linux/ppdev.h
8427 F:      Documentation/parport*.txt
8428
8429 PARAVIRT_OPS INTERFACE
8430 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8431 M:      Chris Wright <chrisw@sous-sol.org>
8432 M:      Alok Kataria <akataria@vmware.com>
8433 M:      Rusty Russell <rusty@rustcorp.com.au>
8434 L:      virtualization@lists.linux-foundation.org
8435 S:      Supported
8436 F:      Documentation/virtual/paravirt_ops.txt
8437 F:      arch/*/kernel/paravirt*
8438 F:      arch/*/include/asm/paravirt.h
8439
8440 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8441 M:      Tim Waugh <tim@cyberelk.net>
8442 L:      linux-parport@lists.infradead.org (subscribers-only)
8443 S:      Maintained
8444 F:      Documentation/blockdev/paride.txt
8445 F:      drivers/block/paride/
8446
8447 PARISC ARCHITECTURE
8448 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8449 M:      Helge Deller <deller@gmx.de>
8450 L:      linux-parisc@vger.kernel.org
8451 W:      http://www.parisc-linux.org/
8452 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8455 S:      Maintained
8456 F:      arch/parisc/
8457 F:      Documentation/parisc/
8458 F:      drivers/parisc/
8459 F:      drivers/char/agp/parisc-agp.c
8460 F:      drivers/input/serio/gscps2.c
8461 F:      drivers/parport/parport_gsc.*
8462 F:      drivers/tty/serial/8250/8250_gsc.c
8463 F:      drivers/video/fbdev/sti*
8464 F:      drivers/video/console/sti*
8465 F:      drivers/video/logo/logo_parisc*
8466
8467 PC87360 HARDWARE MONITORING DRIVER
8468 M:      Jim Cromie <jim.cromie@gmail.com>
8469 L:      linux-hwmon@vger.kernel.org
8470 S:      Maintained
8471 F:      Documentation/hwmon/pc87360
8472 F:      drivers/hwmon/pc87360.c
8473
8474 PC8736x GPIO DRIVER
8475 M:      Jim Cromie <jim.cromie@gmail.com>
8476 S:      Maintained
8477 F:      drivers/char/pc8736x_gpio.c
8478
8479 PC87427 HARDWARE MONITORING DRIVER
8480 M:      Jean Delvare <jdelvare@suse.com>
8481 L:      linux-hwmon@vger.kernel.org
8482 S:      Maintained
8483 F:      Documentation/hwmon/pc87427
8484 F:      drivers/hwmon/pc87427.c
8485
8486 PCA9532 LED DRIVER
8487 M:      Riku Voipio <riku.voipio@iki.fi>
8488 S:      Maintained
8489 F:      drivers/leds/leds-pca9532.c
8490 F:      include/linux/leds-pca9532.h
8491
8492 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8493 M:      Guenter Roeck <linux@roeck-us.net>
8494 L:      linux-i2c@vger.kernel.org
8495 S:      Maintained
8496 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8497
8498 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8499 M:      Khalid Aziz <khalid@gonehiking.org>
8500 S:      Maintained
8501 F:      drivers/firmware/pcdp.*
8502
8503 PCI ERROR RECOVERY
8504 M:      Linas Vepstas <linasvepstas@gmail.com>
8505 L:      linux-pci@vger.kernel.org
8506 S:      Supported
8507 F:      Documentation/PCI/pci-error-recovery.txt
8508
8509 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8510 M:      Russell Currey <ruscur@russell.cc>
8511 L:      linuxppc-dev@lists.ozlabs.org
8512 S:      Supported
8513 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8514 F:      arch/powerpc/kernel/eeh*.c
8515 F:      arch/powerpc/platforms/*/eeh*.c
8516 F:      arch/powerpc/include/*/eeh*.h
8517
8518 PCI SUBSYSTEM
8519 M:      Bjorn Helgaas <bhelgaas@google.com>
8520 L:      linux-pci@vger.kernel.org
8521 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8523 S:      Supported
8524 F:      Documentation/PCI/
8525 F:      drivers/pci/
8526 F:      include/linux/pci*
8527 F:      arch/x86/pci/
8528 F:      arch/x86/kernel/quirks.c
8529
8530 PCI DRIVER FOR ALTERA PCIE IP
8531 M:      Ley Foon Tan <lftan@altera.com>
8532 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8533 L:      linux-pci@vger.kernel.org
8534 S:      Supported
8535 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8536 F:      drivers/pci/host/pcie-altera.c
8537
8538 PCI DRIVER FOR ARM VERSATILE PLATFORM
8539 M:      Rob Herring <robh@kernel.org>
8540 L:      linux-pci@vger.kernel.org
8541 L:      linux-arm-kernel@lists.infradead.org
8542 S:      Maintained
8543 F:      Documentation/devicetree/bindings/pci/versatile.txt
8544 F:      drivers/pci/host/pci-versatile.c
8545
8546 PCI DRIVER FOR APPLIEDMICRO XGENE
8547 M:      Tanmay Inamdar <tinamdar@apm.com>
8548 L:      linux-pci@vger.kernel.org
8549 L:      linux-arm-kernel@lists.infradead.org
8550 S:      Maintained
8551 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8552 F:      drivers/pci/host/pci-xgene.c
8553
8554 PCI DRIVER FOR FREESCALE LAYERSCAPE
8555 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8556 M:      Mingkai Hu <mingkai.hu@freescale.com>
8557 M:      Roy Zang <tie-fei.zang@freescale.com>
8558 L:      linuxppc-dev@lists.ozlabs.org
8559 L:      linux-pci@vger.kernel.org
8560 L:      linux-arm-kernel@lists.infradead.org
8561 S:      Maintained
8562 F:      drivers/pci/host/*layerscape*
8563
8564 PCI DRIVER FOR IMX6
8565 M:      Richard Zhu <Richard.Zhu@freescale.com>
8566 M:      Lucas Stach <l.stach@pengutronix.de>
8567 L:      linux-pci@vger.kernel.org
8568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8569 S:      Maintained
8570 F:      drivers/pci/host/*imx6*
8571
8572 PCI DRIVER FOR TI KEYSTONE
8573 M:      Murali Karicheri <m-karicheri2@ti.com>
8574 L:      linux-pci@vger.kernel.org
8575 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8576 S:      Maintained
8577 F:      drivers/pci/host/*keystone*
8578
8579 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8580 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8581 M:      Jason Cooper <jason@lakedaemon.net>
8582 L:      linux-pci@vger.kernel.org
8583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8584 S:      Maintained
8585 F:      drivers/pci/host/*mvebu*
8586
8587 PCI DRIVER FOR NVIDIA TEGRA
8588 M:      Thierry Reding <thierry.reding@gmail.com>
8589 L:      linux-tegra@vger.kernel.org
8590 L:      linux-pci@vger.kernel.org
8591 S:      Supported
8592 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8593 F:      drivers/pci/host/pci-tegra.c
8594
8595 PCI DRIVER FOR TI DRA7XX
8596 M:      Kishon Vijay Abraham I <kishon@ti.com>
8597 L:      linux-omap@vger.kernel.org
8598 L:      linux-pci@vger.kernel.org
8599 S:      Supported
8600 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8601 F:      drivers/pci/host/pci-dra7xx.c
8602
8603 PCI DRIVER FOR RENESAS R-CAR
8604 M:      Simon Horman <horms@verge.net.au>
8605 L:      linux-pci@vger.kernel.org
8606 L:      linux-renesas-soc@vger.kernel.org
8607 S:      Maintained
8608 F:      drivers/pci/host/*rcar*
8609
8610 PCI DRIVER FOR SAMSUNG EXYNOS
8611 M:      Jingoo Han <jingoohan1@gmail.com>
8612 L:      linux-pci@vger.kernel.org
8613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8614 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8615 S:      Maintained
8616 F:      drivers/pci/host/pci-exynos.c
8617
8618 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8619 M:      Jingoo Han <jingoohan1@gmail.com>
8620 M:      Pratyush Anand <pratyush.anand@gmail.com>
8621 L:      linux-pci@vger.kernel.org
8622 S:      Maintained
8623 F:      drivers/pci/host/*designware*
8624
8625 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8626 M:      Joao Pinto <jpinto@synopsys.com>
8627 L:      linux-pci@vger.kernel.org
8628 S:      Maintained
8629 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
8630 F:      drivers/pci/host/pcie-designware-plat.c
8631
8632 PCI DRIVER FOR GENERIC OF HOSTS
8633 M:      Will Deacon <will.deacon@arm.com>
8634 L:      linux-pci@vger.kernel.org
8635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8636 S:      Maintained
8637 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8638 F:      drivers/pci/host/pci-host-common.c
8639 F:      drivers/pci/host/pci-host-generic.c
8640
8641 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8642 M:      Keith Busch <keith.busch@intel.com>
8643 L:      linux-pci@vger.kernel.org
8644 S:      Supported
8645 F:      arch/x86/pci/vmd.c
8646
8647 PCIE DRIVER FOR ST SPEAR13XX
8648 M:      Pratyush Anand <pratyush.anand@gmail.com>
8649 L:      linux-pci@vger.kernel.org
8650 S:      Maintained
8651 F:      drivers/pci/host/*spear*
8652
8653 PCI MSI DRIVER FOR ALTERA MSI IP
8654 M:      Ley Foon Tan <lftan@altera.com>
8655 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8656 L:      linux-pci@vger.kernel.org
8657 S:      Supported
8658 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8659 F:      drivers/pci/host/pcie-altera-msi.c
8660
8661 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8662 M:      Duc Dang <dhdang@apm.com>
8663 L:      linux-pci@vger.kernel.org
8664 L:      linux-arm-kernel@lists.infradead.org
8665 S:      Maintained
8666 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8667 F:      drivers/pci/host/pci-xgene-msi.c
8668
8669 PCIE DRIVER FOR HISILICON
8670 M:      Zhou Wang <wangzhou1@hisilicon.com>
8671 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8672 L:      linux-pci@vger.kernel.org
8673 S:      Maintained
8674 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8675 F:      drivers/pci/host/pcie-hisi.c
8676
8677 PCIE DRIVER FOR QUALCOMM MSM
8678 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8679 L:     linux-pci@vger.kernel.org
8680 L:     linux-arm-msm@vger.kernel.org
8681 S:     Maintained
8682 F:     drivers/pci/host/*qcom*
8683
8684 PCIE DRIVER FOR CAVIUM THUNDERX
8685 M:      David Daney <david.daney@cavium.com>
8686 L:      linux-pci@vger.kernel.org
8687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8688 S:      Supported
8689 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
8690 F:      drivers/pci/host/pci-thunder-*
8691
8692 PCMCIA SUBSYSTEM
8693 P:      Linux PCMCIA Team
8694 L:      linux-pcmcia@lists.infradead.org
8695 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8697 S:      Maintained
8698 F:      Documentation/pcmcia/
8699 F:      drivers/pcmcia/
8700 F:      include/pcmcia/
8701
8702 PCNET32 NETWORK DRIVER
8703 M:      Don Fry <pcnet32@frontier.com>
8704 L:      netdev@vger.kernel.org
8705 S:      Maintained
8706 F:      drivers/net/ethernet/amd/pcnet32.c
8707
8708 PCRYPT PARALLEL CRYPTO ENGINE
8709 M:      Steffen Klassert <steffen.klassert@secunet.com>
8710 L:      linux-crypto@vger.kernel.org
8711 S:      Maintained
8712 F:      crypto/pcrypt.c
8713 F:      include/crypto/pcrypt.h
8714
8715 PER-CPU MEMORY ALLOCATOR
8716 M:      Tejun Heo <tj@kernel.org>
8717 M:      Christoph Lameter <cl@linux.com>
8718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8719 S:      Maintained
8720 F:      include/linux/percpu*.h
8721 F:      mm/percpu*.c
8722 F:      arch/*/include/asm/percpu.h
8723
8724 PER-TASK DELAY ACCOUNTING
8725 M:      Balbir Singh <bsingharora@gmail.com>
8726 S:      Maintained
8727 F:      include/linux/delayacct.h
8728 F:      kernel/delayacct.c
8729
8730 PERFORMANCE EVENTS SUBSYSTEM
8731 M:      Peter Zijlstra <peterz@infradead.org>
8732 M:      Ingo Molnar <mingo@redhat.com>
8733 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8734 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8735 L:      linux-kernel@vger.kernel.org
8736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8737 S:      Supported
8738 F:      kernel/events/*
8739 F:      include/linux/perf_event.h
8740 F:      include/uapi/linux/perf_event.h
8741 F:      arch/*/kernel/perf_event*.c
8742 F:      arch/*/kernel/*/perf_event*.c
8743 F:      arch/*/kernel/*/*/perf_event*.c
8744 F:      arch/*/include/asm/perf_event.h
8745 F:      arch/*/kernel/perf_callchain.c
8746 F:      tools/perf/
8747
8748 PERSONALITY HANDLING
8749 M:      Christoph Hellwig <hch@infradead.org>
8750 L:      linux-abi-devel@lists.sourceforge.net
8751 S:      Maintained
8752 F:      include/linux/personality.h
8753 F:      include/uapi/linux/personality.h
8754
8755 PHONET PROTOCOL
8756 M:      Remi Denis-Courmont <courmisch@gmail.com>
8757 S:      Supported
8758 F:      Documentation/networking/phonet.txt
8759 F:      include/linux/phonet.h
8760 F:      include/net/phonet/
8761 F:      include/uapi/linux/phonet.h
8762 F:      net/phonet/
8763
8764 PHRAM MTD DRIVER
8765 M:      Joern Engel <joern@lazybastard.org>
8766 L:      linux-mtd@lists.infradead.org
8767 S:      Maintained
8768 F:      drivers/mtd/devices/phram.c
8769
8770 PICOLCD HID DRIVER
8771 M:      Bruno Prémont <bonbons@linux-vserver.org>
8772 L:      linux-input@vger.kernel.org
8773 S:      Maintained
8774 F:      drivers/hid/hid-picolcd*
8775
8776 PICOXCELL SUPPORT
8777 M:      Jamie Iles <jamie@jamieiles.com>
8778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8779 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8780 S:      Supported
8781 F:      arch/arm/boot/dts/picoxcell*
8782 F:      arch/arm/mach-picoxcell/
8783 F:      drivers/crypto/picoxcell*
8784
8785 PIN CONTROL SUBSYSTEM
8786 M:      Linus Walleij <linus.walleij@linaro.org>
8787 L:      linux-gpio@vger.kernel.org
8788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8789 S:      Maintained
8790 F:      drivers/pinctrl/
8791 F:      include/linux/pinctrl/
8792
8793 PIN CONTROLLER - ATMEL AT91
8794 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8796 S:      Maintained
8797 F:      drivers/pinctrl/pinctrl-at91.*
8798
8799 PIN CONTROLLER - ATMEL AT91 PIO4
8800 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8802 L:      linux-gpio@vger.kernel.org
8803 S:      Supported
8804 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8805
8806 PIN CONTROLLER - INTEL
8807 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8808 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8809 S:      Maintained
8810 F:      drivers/pinctrl/intel/
8811
8812 PIN CONTROLLER - RENESAS
8813 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8814 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8815 L:      linux-renesas-soc@vger.kernel.org
8816 S:      Maintained
8817 F:      drivers/pinctrl/sh-pfc/
8818
8819 PIN CONTROLLER - SAMSUNG
8820 M:      Tomasz Figa <tomasz.figa@gmail.com>
8821 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8822 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8824 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8825 S:      Maintained
8826 F:      drivers/pinctrl/samsung/
8827
8828 PIN CONTROLLER - SINGLE
8829 M:      Tony Lindgren <tony@atomide.com>
8830 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8832 L:      linux-omap@vger.kernel.org
8833 S:      Maintained
8834 F:      drivers/pinctrl/pinctrl-single.c
8835
8836 PIN CONTROLLER - ST SPEAR
8837 M:      Viresh Kumar <vireshk@kernel.org>
8838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8839 W:      http://www.st.com/spear
8840 S:      Maintained
8841 F:      drivers/pinctrl/spear/
8842
8843 PKTCDVD DRIVER
8844 M:      Jiri Kosina <jikos@kernel.org>
8845 S:      Maintained
8846 F:      drivers/block/pktcdvd.c
8847 F:      include/linux/pktcdvd.h
8848 F:      include/uapi/linux/pktcdvd.h
8849
8850 PKUNITY SOC DRIVERS
8851 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8852 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8853 S:      Maintained
8854 T:      git git://github.com/gxt/linux.git
8855 F:      drivers/input/serio/i8042-unicore32io.h
8856 F:      drivers/i2c/busses/i2c-puv3.c
8857 F:      drivers/video/fbdev/fb-puv3.c
8858 F:      drivers/rtc/rtc-puv3.c
8859
8860 PMBUS HARDWARE MONITORING DRIVERS
8861 M:      Guenter Roeck <linux@roeck-us.net>
8862 L:      linux-hwmon@vger.kernel.org
8863 W:      http://hwmon.wiki.kernel.org/
8864 W:      http://www.roeck-us.net/linux/drivers/
8865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8866 S:      Maintained
8867 F:      Documentation/hwmon/pmbus
8868 F:      drivers/hwmon/pmbus/
8869 F:      include/linux/i2c/pmbus.h
8870
8871 PMC SIERRA MaxRAID DRIVER
8872 L:      linux-scsi@vger.kernel.org
8873 W:      http://www.pmc-sierra.com/
8874 S:      Orphan
8875 F:      drivers/scsi/pmcraid.*
8876
8877 PMC SIERRA PM8001 DRIVER
8878 M:      Jack Wang <jinpu.wang@profitbricks.com>
8879 M:      lindar_liu@usish.com
8880 L:      pmchba@pmcs.com
8881 L:      linux-scsi@vger.kernel.org
8882 S:      Supported
8883 F:      drivers/scsi/pm8001/
8884
8885 POSIX CLOCKS and TIMERS
8886 M:      Thomas Gleixner <tglx@linutronix.de>
8887 L:      linux-kernel@vger.kernel.org
8888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8889 S:      Maintained
8890 F:      fs/timerfd.c
8891 F:      include/linux/timer*
8892 F:      kernel/time/*timer*
8893
8894 POWER MANAGEMENT CORE
8895 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8896 L:      linux-pm@vger.kernel.org
8897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8898 S:      Supported
8899 F:      drivers/base/power/
8900 F:      include/linux/pm.h
8901 F:      include/linux/pm_*
8902 F:      include/linux/powercap.h
8903 F:      drivers/powercap/
8904
8905 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8906 M:      Sebastian Reichel <sre@kernel.org>
8907 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8908 M:      David Woodhouse <dwmw2@infradead.org>
8909 L:      linux-pm@vger.kernel.org
8910 T:      git git://git.infradead.org/battery-2.6.git
8911 S:      Maintained
8912 F:      include/linux/power_supply.h
8913 F:      drivers/power/
8914 X:      drivers/power/avs/
8915
8916 POWER STATE COORDINATION INTERFACE (PSCI)
8917 M:      Mark Rutland <mark.rutland@arm.com>
8918 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8919 L:      linux-arm-kernel@lists.infradead.org
8920 S:      Maintained
8921 F:      drivers/firmware/psci.c
8922 F:      include/linux/psci.h
8923 F:      include/uapi/linux/psci.h
8924
8925 PNP SUPPORT
8926 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8927 S:      Maintained
8928 F:      drivers/pnp/
8929
8930 PPP PROTOCOL DRIVERS AND COMPRESSORS
8931 M:      Paul Mackerras <paulus@samba.org>
8932 L:      linux-ppp@vger.kernel.org
8933 S:      Maintained
8934 F:      drivers/net/ppp/ppp_*
8935
8936 PPP OVER ATM (RFC 2364)
8937 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8938 S:      Maintained
8939 F:      net/atm/pppoatm.c
8940 F:      include/uapi/linux/atmppp.h
8941
8942 PPP OVER ETHERNET
8943 M:      Michal Ostrowski <mostrows@earthlink.net>
8944 S:      Maintained
8945 F:      drivers/net/ppp/pppoe.c
8946 F:      drivers/net/ppp/pppox.c
8947
8948 PPP OVER L2TP
8949 M:      James Chapman <jchapman@katalix.com>
8950 S:      Maintained
8951 F:      net/l2tp/l2tp_ppp.c
8952 F:      include/linux/if_pppol2tp.h
8953 F:      include/uapi/linux/if_pppol2tp.h
8954
8955 PPS SUPPORT
8956 M:      Rodolfo Giometti <giometti@enneenne.com>
8957 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8958 L:      linuxpps@ml.enneenne.com (subscribers-only)
8959 S:      Maintained
8960 F:      Documentation/pps/
8961 F:      drivers/pps/
8962 F:      include/linux/pps*.h
8963
8964 PPTP DRIVER
8965 M:      Dmitry Kozlov <xeb@mail.ru>
8966 L:      netdev@vger.kernel.org
8967 S:      Maintained
8968 F:      drivers/net/ppp/pptp.c
8969 W:      http://sourceforge.net/projects/accel-pptp
8970
8971 PREEMPTIBLE KERNEL
8972 M:      Robert Love <rml@tech9.net>
8973 L:      kpreempt-tech@lists.sourceforge.net
8974 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8975 S:      Supported
8976 F:      Documentation/preempt-locking.txt
8977 F:      include/linux/preempt.h
8978
8979 PRISM54 WIRELESS DRIVER
8980 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8981 L:      linux-wireless@vger.kernel.org
8982 W:      http://wireless.kernel.org/en/users/Drivers/p54
8983 S:      Obsolete
8984 F:      drivers/net/wireless/intersil/prism54/
8985
8986 PS3 NETWORK SUPPORT
8987 M:      Geoff Levand <geoff@infradead.org>
8988 L:      netdev@vger.kernel.org
8989 L:      linuxppc-dev@lists.ozlabs.org
8990 S:      Maintained
8991 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8992
8993 PS3 PLATFORM SUPPORT
8994 M:      Geoff Levand <geoff@infradead.org>
8995 L:      linuxppc-dev@lists.ozlabs.org
8996 S:      Maintained
8997 F:      arch/powerpc/boot/ps3*
8998 F:      arch/powerpc/include/asm/lv1call.h
8999 F:      arch/powerpc/include/asm/ps3*.h
9000 F:      arch/powerpc/platforms/ps3/
9001 F:      drivers/*/ps3*
9002 F:      drivers/ps3/
9003 F:      drivers/rtc/rtc-ps3.c
9004 F:      drivers/usb/host/*ps3.c
9005 F:      sound/ppc/snd_ps3*
9006
9007 PS3VRAM DRIVER
9008 M:      Jim Paris <jim@jtan.com>
9009 M:      Geoff Levand <geoff@infradead.org>
9010 L:      linuxppc-dev@lists.ozlabs.org
9011 S:      Maintained
9012 F:      drivers/block/ps3vram.c
9013
9014 PSTORE FILESYSTEM
9015 M:      Anton Vorontsov <anton@enomsg.org>
9016 M:      Colin Cross <ccross@android.com>
9017 M:      Kees Cook <keescook@chromium.org>
9018 M:      Tony Luck <tony.luck@intel.com>
9019 S:      Maintained
9020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9021 F:      fs/pstore/
9022 F:      include/linux/pstore*
9023 F:      drivers/firmware/efi/efi-pstore.c
9024 F:      drivers/acpi/apei/erst.c
9025
9026 PTP HARDWARE CLOCK SUPPORT
9027 M:      Richard Cochran <richardcochran@gmail.com>
9028 L:      netdev@vger.kernel.org
9029 S:      Maintained
9030 W:      http://linuxptp.sourceforge.net/
9031 F:      Documentation/ABI/testing/sysfs-ptp
9032 F:      Documentation/ptp/*
9033 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9034 F:      drivers/net/phy/dp83640*
9035 F:      drivers/ptp/*
9036 F:      include/linux/ptp_cl*
9037
9038 PTRACE SUPPORT
9039 M:      Roland McGrath <roland@hack.frob.com>
9040 M:      Oleg Nesterov <oleg@redhat.com>
9041 S:      Maintained
9042 F:      include/asm-generic/syscall.h
9043 F:      include/linux/ptrace.h
9044 F:      include/linux/regset.h
9045 F:      include/linux/tracehook.h
9046 F:      include/uapi/linux/ptrace.h
9047 F:      kernel/ptrace.c
9048
9049 PVRUSB2 VIDEO4LINUX DRIVER
9050 M:      Mike Isely <isely@pobox.com>
9051 L:      pvrusb2@isely.net       (subscribers-only)
9052 L:      linux-media@vger.kernel.org
9053 W:      http://www.isely.net/pvrusb2/
9054 T:      git git://linuxtv.org/media_tree.git
9055 S:      Maintained
9056 F:      Documentation/video4linux/README.pvrusb2
9057 F:      drivers/media/usb/pvrusb2/
9058
9059 PWC WEBCAM DRIVER
9060 M:      Hans de Goede <hdegoede@redhat.com>
9061 L:      linux-media@vger.kernel.org
9062 T:      git git://linuxtv.org/media_tree.git
9063 S:      Maintained
9064 F:      drivers/media/usb/pwc/*
9065
9066 PWM FAN DRIVER
9067 M:      Kamil Debski <k.debski@samsung.com>
9068 L:      linux-hwmon@vger.kernel.org
9069 S:      Supported
9070 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9071 F:      Documentation/hwmon/pwm-fan
9072 F:      drivers/hwmon/pwm-fan.c
9073
9074 PWM SUBSYSTEM
9075 M:      Thierry Reding <thierry.reding@gmail.com>
9076 L:      linux-pwm@vger.kernel.org
9077 S:      Maintained
9078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9079 F:      Documentation/pwm.txt
9080 F:      Documentation/devicetree/bindings/pwm/
9081 F:      include/linux/pwm.h
9082 F:      drivers/pwm/
9083 F:      drivers/video/backlight/pwm_bl.c
9084 F:      include/linux/pwm_backlight.h
9085
9086 PXA2xx/PXA3xx SUPPORT
9087 M:      Daniel Mack <daniel@zonque.org>
9088 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9089 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9091 T:      git git://github.com/hzhuang1/linux.git
9092 T:      git git://github.com/rjarzmik/linux.git
9093 S:      Maintained
9094 F:      arch/arm/boot/dts/pxa*
9095 F:      arch/arm/mach-pxa/
9096 F:      drivers/dma/pxa*
9097 F:      drivers/pcmcia/pxa2xx*
9098 F:      drivers/pinctrl/pxa/
9099 F:      drivers/spi/spi-pxa2xx*
9100 F:      drivers/usb/gadget/udc/pxa2*
9101 F:      include/sound/pxa2xx-lib.h
9102 F:      sound/arm/pxa*
9103 F:      sound/soc/pxa/
9104
9105 PXA GPIO DRIVER
9106 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9107 L:      linux-gpio@vger.kernel.org
9108 S:      Maintained
9109 F:      drivers/gpio/gpio-pxa.c
9110
9111 PXA3xx NAND FLASH DRIVER
9112 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9113 L:      linux-mtd@lists.infradead.org
9114 S:      Maintained
9115 F:      drivers/mtd/nand/pxa3xx_nand.c
9116
9117 MMP SUPPORT
9118 M:      Eric Miao <eric.y.miao@gmail.com>
9119 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9121 T:      git git://github.com/hzhuang1/linux.git
9122 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9123 S:      Maintained
9124 F:      arch/arm/boot/dts/mmp*
9125 F:      arch/arm/mach-mmp/
9126
9127 PXA MMCI DRIVER
9128 S:      Orphan
9129
9130 PXA RTC DRIVER
9131 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9132 L:      rtc-linux@googlegroups.com
9133 S:      Maintained
9134
9135 QAT DRIVER
9136 M:      Tadeusz Struk <tadeusz.struk@intel.com>
9137 L:      qat-linux@intel.com
9138 S:      Supported
9139 F:      drivers/crypto/qat/
9140
9141 QIB DRIVER
9142 M:      Mike Marciniszyn <infinipath@intel.com>
9143 L:      linux-rdma@vger.kernel.org
9144 S:      Supported
9145 F:      drivers/infiniband/hw/qib/
9146
9147 QLOGIC QLA1280 SCSI DRIVER
9148 M:      Michael Reed <mdr@sgi.com>
9149 L:      linux-scsi@vger.kernel.org
9150 S:      Maintained
9151 F:      drivers/scsi/qla1280.[ch]
9152
9153 QLOGIC QLA2XXX FC-SCSI DRIVER
9154 M:      qla2xxx-upstream@qlogic.com
9155 L:      linux-scsi@vger.kernel.org
9156 S:      Supported
9157 F:      Documentation/scsi/LICENSE.qla2xxx
9158 F:      drivers/scsi/qla2xxx/
9159
9160 QLOGIC QLA4XXX iSCSI DRIVER
9161 M:      QLogic-Storage-Upstream@qlogic.com
9162 L:      linux-scsi@vger.kernel.org
9163 S:      Supported
9164 F:      Documentation/scsi/LICENSE.qla4xxx
9165 F:      drivers/scsi/qla4xxx/
9166
9167 QLOGIC QLA3XXX NETWORK DRIVER
9168 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9169 M:      Ron Mercer <ron.mercer@qlogic.com>
9170 M:      linux-driver@qlogic.com
9171 L:      netdev@vger.kernel.org
9172 S:      Supported
9173 F:      Documentation/networking/LICENSE.qla3xxx
9174 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9175
9176 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9177 M:      Dept-GELinuxNICDev@qlogic.com
9178 L:      netdev@vger.kernel.org
9179 S:      Supported
9180 F:      drivers/net/ethernet/qlogic/qlcnic/
9181
9182 QLOGIC QLGE 10Gb ETHERNET DRIVER
9183 M:      Harish Patil <harish.patil@qlogic.com>
9184 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9185 M:      Dept-GELinuxNICDev@qlogic.com
9186 M:      linux-driver@qlogic.com
9187 L:      netdev@vger.kernel.org
9188 S:      Supported
9189 F:      drivers/net/ethernet/qlogic/qlge/
9190
9191 QLOGIC QL4xxx ETHERNET DRIVER
9192 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9193 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9194 M:      everest-linux-l2@qlogic.com
9195 L:      netdev@vger.kernel.org
9196 S:      Supported
9197 F:      drivers/net/ethernet/qlogic/qed/
9198 F:      include/linux/qed/
9199 F:      drivers/net/ethernet/qlogic/qede/
9200
9201 QNX4 FILESYSTEM
9202 M:      Anders Larsen <al@alarsen.net>
9203 W:      http://www.alarsen.net/linux/qnx4fs/
9204 S:      Maintained
9205 F:      fs/qnx4/
9206 F:      include/uapi/linux/qnx4_fs.h
9207 F:      include/uapi/linux/qnxtypes.h
9208
9209 QT1010 MEDIA DRIVER
9210 M:      Antti Palosaari <crope@iki.fi>
9211 L:      linux-media@vger.kernel.org
9212 W:      https://linuxtv.org
9213 W:      http://palosaari.fi/linux/
9214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9215 T:      git git://linuxtv.org/anttip/media_tree.git
9216 S:      Maintained
9217 F:      drivers/media/tuners/qt1010*
9218
9219 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9220 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9221 L:      linux-wireless@vger.kernel.org
9222 L:      ath9k-devel@lists.ath9k.org
9223 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9224 S:      Supported
9225 F:      drivers/net/wireless/ath/ath9k/
9226
9227 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9228 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9229 L:      ath10k@lists.infradead.org
9230 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9232 S:      Supported
9233 F:      drivers/net/wireless/ath/ath10k/
9234
9235 QUALCOMM HEXAGON ARCHITECTURE
9236 M:      Richard Kuo <rkuo@codeaurora.org>
9237 L:      linux-hexagon@vger.kernel.org
9238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9239 S:      Supported
9240 F:      arch/hexagon/
9241
9242 QUALCOMM WCN36XX WIRELESS DRIVER
9243 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9244 L:      wcn36xx@lists.infradead.org
9245 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9246 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9247 S:      Supported
9248 F:      drivers/net/wireless/ath/wcn36xx/
9249
9250 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9251 M:      Gabriel Somlo <somlo@cmu.edu>
9252 M:      "Michael S. Tsirkin" <mst@redhat.com>
9253 L:      qemu-devel@nongnu.org
9254 S:      Maintained
9255 F:      drivers/firmware/qemu_fw_cfg.c
9256
9257 RADOS BLOCK DEVICE (RBD)
9258 M:      Ilya Dryomov <idryomov@gmail.com>
9259 M:      Sage Weil <sage@redhat.com>
9260 M:      Alex Elder <elder@kernel.org>
9261 L:      ceph-devel@vger.kernel.org
9262 W:      http://ceph.com/
9263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9264 T:      git git://github.com/ceph/ceph-client.git
9265 S:      Supported
9266 F:      Documentation/ABI/testing/sysfs-bus-rbd
9267 F:      drivers/block/rbd.c
9268 F:      drivers/block/rbd_types.h
9269
9270 RADEON FRAMEBUFFER DISPLAY DRIVER
9271 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9272 L:      linux-fbdev@vger.kernel.org
9273 S:      Maintained
9274 F:      drivers/video/fbdev/aty/radeon*
9275 F:      include/uapi/linux/radeonfb.h
9276
9277 RADIOSHARK RADIO DRIVER
9278 M:      Hans de Goede <hdegoede@redhat.com>
9279 L:      linux-media@vger.kernel.org
9280 T:      git git://linuxtv.org/media_tree.git
9281 S:      Maintained
9282 F:      drivers/media/radio/radio-shark.c
9283
9284 RADIOSHARK2 RADIO DRIVER
9285 M:      Hans de Goede <hdegoede@redhat.com>
9286 L:      linux-media@vger.kernel.org
9287 T:      git git://linuxtv.org/media_tree.git
9288 S:      Maintained
9289 F:      drivers/media/radio/radio-shark2.c
9290 F:      drivers/media/radio/radio-tea5777.c
9291
9292 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9293 M:      Paul Mackerras <paulus@samba.org>
9294 L:      linux-fbdev@vger.kernel.org
9295 S:      Maintained
9296 F:      drivers/video/fbdev/aty/aty128fb.c
9297
9298 RALINK MIPS ARCHITECTURE
9299 M:      John Crispin <john@phrozen.org>
9300 L:      linux-mips@linux-mips.org
9301 S:      Maintained
9302 F:      arch/mips/ralink
9303
9304 RALINK RT2X00 WIRELESS LAN DRIVER
9305 P:      rt2x00 project
9306 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9307 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9308 L:      linux-wireless@vger.kernel.org
9309 S:      Maintained
9310 F:      drivers/net/wireless/ralink/rt2x00/
9311
9312 RAMDISK RAM BLOCK DEVICE DRIVER
9313 M:      Jens Axboe <axboe@kernel.dk>
9314 S:      Maintained
9315 F:      Documentation/blockdev/ramdisk.txt
9316 F:      drivers/block/brd.c
9317
9318 RANDOM NUMBER DRIVER
9319 M:      "Theodore Ts'o" <tytso@mit.edu>
9320 S:      Maintained
9321 F:      drivers/char/random.c
9322
9323 RAPIDIO SUBSYSTEM
9324 M:      Matt Porter <mporter@kernel.crashing.org>
9325 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9326 S:      Maintained
9327 F:      drivers/rapidio/
9328
9329 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9330 L:      linux-wireless@vger.kernel.org
9331 S:      Orphan
9332 F:      drivers/net/wireless/ray*
9333
9334 RCUTORTURE MODULE
9335 M:      Josh Triplett <josh@joshtriplett.org>
9336 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9337 L:      linux-kernel@vger.kernel.org
9338 S:      Supported
9339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9340 F:      Documentation/RCU/torture.txt
9341 F:      kernel/rcu/rcutorture.c
9342
9343 RCUTORTURE TEST FRAMEWORK
9344 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9345 M:      Josh Triplett <josh@joshtriplett.org>
9346 R:      Steven Rostedt <rostedt@goodmis.org>
9347 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9348 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9349 L:      linux-kernel@vger.kernel.org
9350 S:      Supported
9351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9352 F:      tools/testing/selftests/rcutorture
9353
9354 RDC R-321X SoC
9355 M:      Florian Fainelli <florian@openwrt.org>
9356 S:      Maintained
9357
9358 RDC R6040 FAST ETHERNET DRIVER
9359 M:      Florian Fainelli <florian@openwrt.org>
9360 L:      netdev@vger.kernel.org
9361 S:      Maintained
9362 F:      drivers/net/ethernet/rdc/r6040.c
9363
9364 RDS - RELIABLE DATAGRAM SOCKETS
9365 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9366 L:      netdev@vger.kernel.org
9367 L:      linux-rdma@vger.kernel.org
9368 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9369 W:      https://oss.oracle.com/projects/rds/
9370 S:      Supported
9371 F:      net/rds/
9372 F:      Documentation/networking/rds.txt
9373
9374 RDMAVT - RDMA verbs software
9375 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9376 L:      linux-rdma@vger.kernel.org
9377 S:      Supported
9378 F:      drivers/infiniband/sw/rdmavt
9379
9380 READ-COPY UPDATE (RCU)
9381 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9382 M:      Josh Triplett <josh@joshtriplett.org>
9383 R:      Steven Rostedt <rostedt@goodmis.org>
9384 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9385 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9386 L:      linux-kernel@vger.kernel.org
9387 W:      http://www.rdrop.com/users/paulmck/RCU/
9388 S:      Supported
9389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9390 F:      Documentation/RCU/
9391 X:      Documentation/RCU/torture.txt
9392 F:      include/linux/rcu*
9393 X:      include/linux/srcu.h
9394 F:      kernel/rcu/
9395 X:      kernel/torture.c
9396
9397 REAL TIME CLOCK (RTC) SUBSYSTEM
9398 M:      Alessandro Zummo <a.zummo@towertech.it>
9399 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9400 L:      rtc-linux@googlegroups.com
9401 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9403 S:      Maintained
9404 F:      Documentation/rtc.txt
9405 F:      drivers/rtc/
9406 F:      include/linux/rtc.h
9407 F:      include/uapi/linux/rtc.h
9408
9409 REALTEK AUDIO CODECS
9410 M:      Bard Liao <bardliao@realtek.com>
9411 M:      Oder Chiou <oder_chiou@realtek.com>
9412 S:      Maintained
9413 F:      sound/soc/codecs/rt*
9414 F:      include/sound/rt*.h
9415
9416 REISERFS FILE SYSTEM
9417 L:      reiserfs-devel@vger.kernel.org
9418 S:      Supported
9419 F:      fs/reiserfs/
9420
9421 REGISTER MAP ABSTRACTION
9422 M:      Mark Brown <broonie@kernel.org>
9423 L:      linux-kernel@vger.kernel.org
9424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9425 S:      Supported
9426 F:      drivers/base/regmap/
9427 F:      include/linux/regmap.h
9428
9429 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9430 M:      Ohad Ben-Cohen <ohad@wizery.com>
9431 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9432 L:      linux-remoteproc@vger.kernel.org
9433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9434 S:      Maintained
9435 F:      drivers/remoteproc/
9436 F:      Documentation/remoteproc.txt
9437 F:      include/linux/remoteproc.h
9438
9439 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9440 M:      Ohad Ben-Cohen <ohad@wizery.com>
9441 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9442 L:      linux-remoteproc@vger.kernel.org
9443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9444 S:      Maintained
9445 F:      drivers/rpmsg/
9446 F:      Documentation/rpmsg.txt
9447 F:      include/linux/rpmsg.h
9448
9449 RENESAS ETHERNET DRIVERS
9450 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9451 L:      netdev@vger.kernel.org
9452 L:      linux-renesas-soc@vger.kernel.org
9453 F:      drivers/net/ethernet/renesas/
9454 F:      include/linux/sh_eth.h
9455
9456 RENESAS USB2 PHY DRIVER
9457 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9458 L:      linux-renesas-soc@vger.kernel.org
9459 S:      Maintained
9460 F:      drivers/phy/phy-rcar-gen3-usb2.c
9461
9462 RESET CONTROLLER FRAMEWORK
9463 M:      Philipp Zabel <p.zabel@pengutronix.de>
9464 T:      git git://git.pengutronix.de/git/pza/linux
9465 S:      Maintained
9466 F:      drivers/reset/
9467 F:      Documentation/devicetree/bindings/reset/
9468 F:      include/dt-bindings/reset/
9469 F:      include/linux/reset.h
9470 F:      include/linux/reset-controller.h
9471
9472 RFKILL
9473 M:      Johannes Berg <johannes@sipsolutions.net>
9474 L:      linux-wireless@vger.kernel.org
9475 W:      http://wireless.kernel.org/
9476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9478 S:      Maintained
9479 F:      Documentation/rfkill.txt
9480 F:      net/rfkill/
9481
9482 RHASHTABLE
9483 M:      Thomas Graf <tgraf@suug.ch>
9484 L:      netdev@vger.kernel.org
9485 S:      Maintained
9486 F:      lib/rhashtable.c
9487 F:      include/linux/rhashtable.h
9488
9489 RICOH SMARTMEDIA/XD DRIVER
9490 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9491 S:      Maintained
9492 F:      drivers/mtd/nand/r852.c
9493 F:      drivers/mtd/nand/r852.h
9494
9495 RICOH R5C592 MEMORYSTICK DRIVER
9496 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9497 S:      Maintained
9498 F:      drivers/memstick/host/r592.*
9499
9500 ROCCAT DRIVERS
9501 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9502 W:      http://sourceforge.net/projects/roccat/
9503 S:      Maintained
9504 F:      drivers/hid/hid-roccat*
9505 F:      include/linux/hid-roccat*
9506 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9507
9508 ROCKER DRIVER
9509 M:      Jiri Pirko <jiri@resnulli.us>
9510 M:      Scott Feldman <sfeldma@gmail.com>
9511 L:      netdev@vger.kernel.org
9512 S:      Supported
9513 F:      drivers/net/ethernet/rocker/
9514
9515 ROCKETPORT DRIVER
9516 P:      Comtrol Corp.
9517 W:      http://www.comtrol.com
9518 S:      Maintained
9519 F:      Documentation/serial/rocket.txt
9520 F:      drivers/tty/rocket*
9521
9522 ROCKETPORT EXPRESS/INFINITY DRIVER
9523 M:      Kevin Cernekee <cernekee@gmail.com>
9524 L:      linux-serial@vger.kernel.org
9525 S:      Odd Fixes
9526 F:      drivers/tty/serial/rp2.*
9527
9528 ROSE NETWORK LAYER
9529 M:      Ralf Baechle <ralf@linux-mips.org>
9530 L:      linux-hams@vger.kernel.org
9531 W:      http://www.linux-ax25.org/
9532 S:      Maintained
9533 F:      include/net/rose.h
9534 F:      include/uapi/linux/rose.h
9535 F:      net/rose/
9536
9537 RTL2830 MEDIA DRIVER
9538 M:      Antti Palosaari <crope@iki.fi>
9539 L:      linux-media@vger.kernel.org
9540 W:      https://linuxtv.org
9541 W:      http://palosaari.fi/linux/
9542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9543 T:      git git://linuxtv.org/anttip/media_tree.git
9544 S:      Maintained
9545 F:      drivers/media/dvb-frontends/rtl2830*
9546
9547 RTL2832 MEDIA DRIVER
9548 M:      Antti Palosaari <crope@iki.fi>
9549 L:      linux-media@vger.kernel.org
9550 W:      https://linuxtv.org
9551 W:      http://palosaari.fi/linux/
9552 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9553 T:      git git://linuxtv.org/anttip/media_tree.git
9554 S:      Maintained
9555 F:      drivers/media/dvb-frontends/rtl2832*
9556
9557 RTL2832_SDR MEDIA DRIVER
9558 M:      Antti Palosaari <crope@iki.fi>
9559 L:      linux-media@vger.kernel.org
9560 W:      https://linuxtv.org
9561 W:      http://palosaari.fi/linux/
9562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9563 T:      git git://linuxtv.org/anttip/media_tree.git
9564 S:      Maintained
9565 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9566
9567 RTL8180 WIRELESS DRIVER
9568 L:      linux-wireless@vger.kernel.org
9569 W:      http://wireless.kernel.org/
9570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9571 S:      Orphan
9572 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9573
9574 RTL8187 WIRELESS DRIVER
9575 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9576 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9577 M:      Larry Finger <Larry.Finger@lwfinger.net>
9578 L:      linux-wireless@vger.kernel.org
9579 W:      http://wireless.kernel.org/
9580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9581 S:      Maintained
9582 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9583
9584 RTL8192CE WIRELESS DRIVER
9585 M:      Larry Finger <Larry.Finger@lwfinger.net>
9586 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9587 L:      linux-wireless@vger.kernel.org
9588 W:      http://wireless.kernel.org/
9589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9590 S:      Maintained
9591 F:      drivers/net/wireless/realtek/rtlwifi/
9592 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9593
9594 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9595 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9596 L:      linux-wireless@vger.kernel.org
9597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
9598 S:      Maintained
9599 F:      drivers/net/wireless/realtek/rtl8xxxu/
9600
9601 S3 SAVAGE FRAMEBUFFER DRIVER
9602 M:      Antonino Daplas <adaplas@gmail.com>
9603 L:      linux-fbdev@vger.kernel.org
9604 S:      Maintained
9605 F:      drivers/video/fbdev/savage/
9606
9607 S390
9608 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9609 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9610 L:      linux-s390@vger.kernel.org
9611 W:      http://www.ibm.com/developerworks/linux/linux390/
9612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9613 S:      Supported
9614 F:      arch/s390/
9615 F:      drivers/s390/
9616 F:      Documentation/s390/
9617 F:      Documentation/DocBook/s390*
9618
9619 S390 COMMON I/O LAYER
9620 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9621 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9622 L:      linux-s390@vger.kernel.org
9623 W:      http://www.ibm.com/developerworks/linux/linux390/
9624 S:      Supported
9625 F:      drivers/s390/cio/
9626
9627 S390 DASD DRIVER
9628 M:      Stefan Weinhuber <wein@de.ibm.com>
9629 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9630 L:      linux-s390@vger.kernel.org
9631 W:      http://www.ibm.com/developerworks/linux/linux390/
9632 S:      Supported
9633 F:      drivers/s390/block/dasd*
9634 F:      block/partitions/ibm.c
9635
9636 S390 NETWORK DRIVERS
9637 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9638 L:      linux-s390@vger.kernel.org
9639 W:      http://www.ibm.com/developerworks/linux/linux390/
9640 S:      Supported
9641 F:      drivers/s390/net/
9642
9643 S390 PCI SUBSYSTEM
9644 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9645 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9646 L:      linux-s390@vger.kernel.org
9647 W:      http://www.ibm.com/developerworks/linux/linux390/
9648 S:      Supported
9649 F:      arch/s390/pci/
9650 F:      drivers/pci/hotplug/s390_pci_hpc.c
9651
9652 S390 ZCRYPT DRIVER
9653 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9654 L:      linux-s390@vger.kernel.org
9655 W:      http://www.ibm.com/developerworks/linux/linux390/
9656 S:      Supported
9657 F:      drivers/s390/crypto/
9658
9659 S390 ZFCP DRIVER
9660 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9661 L:      linux-s390@vger.kernel.org
9662 W:      http://www.ibm.com/developerworks/linux/linux390/
9663 S:      Supported
9664 F:      drivers/s390/scsi/zfcp_*
9665
9666 S390 IUCV NETWORK LAYER
9667 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9668 L:      linux-s390@vger.kernel.org
9669 W:      http://www.ibm.com/developerworks/linux/linux390/
9670 S:      Supported
9671 F:      drivers/s390/net/*iucv*
9672 F:      include/net/iucv/
9673 F:      net/iucv/
9674
9675 S390 IOMMU (PCI)
9676 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9677 L:      linux-s390@vger.kernel.org
9678 W:      http://www.ibm.com/developerworks/linux/linux390/
9679 S:      Supported
9680 F:      drivers/iommu/s390-iommu.c
9681
9682 S3C24XX SD/MMC Driver
9683 M:      Ben Dooks <ben-linux@fluff.org>
9684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9685 S:      Supported
9686 F:      drivers/mmc/host/s3cmci.*
9687
9688 SAA6588 RDS RECEIVER DRIVER
9689 M:      Hans Verkuil <hverkuil@xs4all.nl>
9690 L:      linux-media@vger.kernel.org
9691 T:      git git://linuxtv.org/media_tree.git
9692 W:      https://linuxtv.org
9693 S:      Odd Fixes
9694 F:      drivers/media/i2c/saa6588*
9695
9696 SAA7134 VIDEO4LINUX DRIVER
9697 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9698 L:      linux-media@vger.kernel.org
9699 W:      https://linuxtv.org
9700 T:      git git://linuxtv.org/media_tree.git
9701 S:      Odd fixes
9702 F:      Documentation/video4linux/*.saa7134
9703 F:      drivers/media/pci/saa7134/
9704
9705 SAA7146 VIDEO4LINUX-2 DRIVER
9706 M:      Hans Verkuil <hverkuil@xs4all.nl>
9707 L:      linux-media@vger.kernel.org
9708 T:      git git://linuxtv.org/media_tree.git
9709 S:      Maintained
9710 F:      drivers/media/common/saa7146/
9711 F:      drivers/media/pci/saa7146/
9712 F:      include/media/saa7146*
9713
9714 SAMSUNG LAPTOP DRIVER
9715 M:      Corentin Chary <corentin.chary@gmail.com>
9716 L:      platform-driver-x86@vger.kernel.org
9717 S:      Maintained
9718 F:      drivers/platform/x86/samsung-laptop.c
9719
9720 SAMSUNG AUDIO (ASoC) DRIVERS
9721 M:      Sangbeom Kim <sbkim73@samsung.com>
9722 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9723 S:      Supported
9724 F:      sound/soc/samsung/
9725
9726 SAMSUNG FRAMEBUFFER DRIVER
9727 M:      Jingoo Han <jingoohan1@gmail.com>
9728 L:      linux-fbdev@vger.kernel.org
9729 S:      Maintained
9730 F:      drivers/video/fbdev/s3c-fb.c
9731
9732 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9733 M:      Sangbeom Kim <sbkim73@samsung.com>
9734 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9735 L:      linux-kernel@vger.kernel.org
9736 L:      linux-samsung-soc@vger.kernel.org
9737 S:      Supported
9738 F:      drivers/mfd/sec*.c
9739 F:      drivers/regulator/s2m*.c
9740 F:      drivers/regulator/s5m*.c
9741 F:      drivers/clk/clk-s2mps11.c
9742 F:      drivers/rtc/rtc-s5m.c
9743 F:      include/linux/mfd/samsung/
9744 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9745 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9746 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9747 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9748
9749 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9750 M:      Kyungmin Park <kyungmin.park@samsung.com>
9751 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9752 L:      linux-media@vger.kernel.org
9753 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9754 S:      Supported
9755 F:      drivers/media/platform/exynos4-is/
9756
9757 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9758 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9759 L:      linux-media@vger.kernel.org
9760 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9761 S:      Maintained
9762 F:      drivers/media/platform/s3c-camif/
9763 F:      include/media/drv-intf/s3c_camif.h
9764
9765 SAMSUNG S5C73M3 CAMERA DRIVER
9766 M:      Kyungmin Park <kyungmin.park@samsung.com>
9767 M:      Andrzej Hajda <a.hajda@samsung.com>
9768 L:      linux-media@vger.kernel.org
9769 S:      Supported
9770 F:      drivers/media/i2c/s5c73m3/*
9771
9772 SAMSUNG S5K5BAF CAMERA DRIVER
9773 M:      Kyungmin Park <kyungmin.park@samsung.com>
9774 M:      Andrzej Hajda <a.hajda@samsung.com>
9775 L:      linux-media@vger.kernel.org
9776 S:      Supported
9777 F:      drivers/media/i2c/s5k5baf.c
9778
9779 SAMSUNG S3FWRN5 NFC DRIVER
9780 M:      Robert Baldyga <r.baldyga@samsung.com>
9781 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
9782 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9783 S:      Supported
9784 F:      drivers/nfc/s3fwrn5
9785
9786 SAMSUNG SOC CLOCK DRIVERS
9787 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9788 M:      Tomasz Figa <tomasz.figa@gmail.com>
9789 S:      Supported
9790 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9791 F:      drivers/clk/samsung/
9792
9793 SAMSUNG SXGBE DRIVERS
9794 M:      Byungho An <bh74.an@samsung.com>
9795 M:      Girish K S <ks.giri@samsung.com>
9796 M:      Vipul Pandya <vipul.pandya@samsung.com>
9797 S:      Supported
9798 L:      netdev@vger.kernel.org
9799 F:      drivers/net/ethernet/samsung/sxgbe/
9800
9801 SAMSUNG THERMAL DRIVER
9802 M:      Lukasz Majewski <l.majewski@samsung.com>
9803 L:      linux-pm@vger.kernel.org
9804 L:      linux-samsung-soc@vger.kernel.org
9805 S:      Supported
9806 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9807 F:      drivers/thermal/samsung/
9808
9809 SAMSUNG USB2 PHY DRIVER
9810 M:      Kamil Debski <k.debski@samsung.com>
9811 L:      linux-kernel@vger.kernel.org
9812 S:      Supported
9813 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9814 F:      Documentation/phy/samsung-usb2.txt
9815 F:      drivers/phy/phy-exynos4210-usb2.c
9816 F:      drivers/phy/phy-exynos4x12-usb2.c
9817 F:      drivers/phy/phy-exynos5250-usb2.c
9818 F:      drivers/phy/phy-s5pv210-usb2.c
9819 F:      drivers/phy/phy-samsung-usb2.c
9820 F:      drivers/phy/phy-samsung-usb2.h
9821
9822 SERIAL DRIVERS
9823 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9824 L:      linux-serial@vger.kernel.org
9825 S:      Maintained
9826 F:      drivers/tty/serial/
9827
9828 SYNOPSYS DESIGNWARE DMAC DRIVER
9829 M:      Viresh Kumar <vireshk@kernel.org>
9830 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9831 S:      Maintained
9832 F:      include/linux/dma/dw.h
9833 F:      include/linux/platform_data/dma-dw.h
9834 F:      drivers/dma/dw/
9835
9836 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9837 M: Lars Persson <lars.persson@axis.com>
9838 L: netdev@vger.kernel.org
9839 S: Supported
9840 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9841 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9842
9843 SYNOPSYS DESIGNWARE I2C DRIVER
9844 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9845 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9846 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
9847 L:      linux-i2c@vger.kernel.org
9848 S:      Maintained
9849 F:      drivers/i2c/busses/i2c-designware-*
9850 F:      include/linux/platform_data/i2c-designware.h
9851
9852 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9853 M:      Jaehoon Chung <jh80.chung@samsung.com>
9854 L:      linux-mmc@vger.kernel.org
9855 S:      Maintained
9856 F:      include/linux/mmc/dw_mmc.h
9857 F:      drivers/mmc/host/dw_mmc*
9858
9859 SYSTEM TRACE MODULE CLASS
9860 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9861 S:      Maintained
9862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
9863 F:      Documentation/trace/stm.txt
9864 F:      drivers/hwtracing/stm/
9865 F:      include/linux/stm.h
9866 F:      include/uapi/linux/stm.h
9867
9868 THUNDERBOLT DRIVER
9869 M:      Andreas Noever <andreas.noever@gmail.com>
9870 S:      Maintained
9871 F:      drivers/thunderbolt/
9872
9873 TI BQ27XXX POWER SUPPLY DRIVER
9874 R:      Andrew F. Davis <afd@ti.com>
9875 F:      include/linux/power/bq27xxx_battery.h
9876 F:      drivers/power/bq27xxx_battery.c
9877 F:      drivers/power/bq27xxx_battery_i2c.c
9878
9879 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9880 M:      John Stultz <john.stultz@linaro.org>
9881 M:      Thomas Gleixner <tglx@linutronix.de>
9882 L:      linux-kernel@vger.kernel.org
9883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9884 S:      Supported
9885 F:      include/linux/clocksource.h
9886 F:      include/linux/time.h
9887 F:      include/linux/timex.h
9888 F:      include/uapi/linux/time.h
9889 F:      include/uapi/linux/timex.h
9890 F:      kernel/time/clocksource.c
9891 F:      kernel/time/time*.c
9892 F:      kernel/time/alarmtimer.c
9893 F:      kernel/time/ntp.c
9894 F:      tools/testing/selftests/timers/
9895
9896 SC1200 WDT DRIVER
9897 M:      Zwane Mwaikambo <zwanem@gmail.com>
9898 S:      Maintained
9899 F:      drivers/watchdog/sc1200wdt.c
9900
9901 SCHEDULER
9902 M:      Ingo Molnar <mingo@redhat.com>
9903 M:      Peter Zijlstra <peterz@infradead.org>
9904 L:      linux-kernel@vger.kernel.org
9905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9906 S:      Maintained
9907 F:      kernel/sched/
9908 F:      include/linux/sched.h
9909 F:      include/uapi/linux/sched.h
9910 F:      include/linux/wait.h
9911
9912 SCORE ARCHITECTURE
9913 M:      Chen Liqin <liqin.linux@gmail.com>
9914 M:      Lennox Wu <lennox.wu@gmail.com>
9915 W:      http://www.sunplus.com
9916 S:      Supported
9917 F:      arch/score/
9918
9919 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9920 M:      Sudeep Holla <sudeep.holla@arm.com>
9921 L:      linux-arm-kernel@lists.infradead.org
9922 S:      Maintained
9923 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9924 F:      drivers/clk/clk-scpi.c
9925 F:      drivers/cpufreq/scpi-cpufreq.c
9926 F:      drivers/firmware/arm_scpi.c
9927 F:      include/linux/scpi_protocol.h
9928
9929 SCSI CDROM DRIVER
9930 M:      Jens Axboe <axboe@kernel.dk>
9931 L:      linux-scsi@vger.kernel.org
9932 W:      http://www.kernel.dk
9933 S:      Maintained
9934 F:      drivers/scsi/sr*
9935
9936 SCSI RDMA PROTOCOL (SRP) INITIATOR
9937 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9938 L:      linux-rdma@vger.kernel.org
9939 S:      Supported
9940 W:      http://www.openfabrics.org
9941 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9943 F:      drivers/infiniband/ulp/srp/
9944 F:      include/scsi/srp.h
9945
9946 SCSI SG DRIVER
9947 M:      Doug Gilbert <dgilbert@interlog.com>
9948 L:      linux-scsi@vger.kernel.org
9949 W:      http://sg.danny.cz/sg
9950 S:      Maintained
9951 F:      Documentation/scsi/scsi-generic.txt
9952 F:      drivers/scsi/sg.c
9953 F:      include/scsi/sg.h
9954
9955 SCSI SUBSYSTEM
9956 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
9957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9958 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9960 L:      linux-scsi@vger.kernel.org
9961 S:      Maintained
9962 F:      drivers/scsi/
9963 F:      include/scsi/
9964
9965 SCSI TAPE DRIVER
9966 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9967 L:      linux-scsi@vger.kernel.org
9968 S:      Maintained
9969 F:      Documentation/scsi/st.txt
9970 F:      drivers/scsi/st.*
9971 F:      drivers/scsi/st_*.h
9972
9973 SCTP PROTOCOL
9974 M:      Vlad Yasevich <vyasevich@gmail.com>
9975 M:      Neil Horman <nhorman@tuxdriver.com>
9976 L:      linux-sctp@vger.kernel.org
9977 W:      http://lksctp.sourceforge.net
9978 S:      Maintained
9979 F:      Documentation/networking/sctp.txt
9980 F:      include/linux/sctp.h
9981 F:      include/uapi/linux/sctp.h
9982 F:      include/net/sctp/
9983 F:      net/sctp/
9984
9985 SCx200 CPU SUPPORT
9986 M:      Jim Cromie <jim.cromie@gmail.com>
9987 S:      Odd Fixes
9988 F:      Documentation/i2c/busses/scx200_acb
9989 F:      arch/x86/platform/scx200/
9990 F:      drivers/watchdog/scx200_wdt.c
9991 F:      drivers/i2c/busses/scx200*
9992 F:      drivers/mtd/maps/scx200_docflash.c
9993 F:      include/linux/scx200.h
9994
9995 SCx200 GPIO DRIVER
9996 M:      Jim Cromie <jim.cromie@gmail.com>
9997 S:      Maintained
9998 F:      drivers/char/scx200_gpio.c
9999 F:      include/linux/scx200_gpio.h
10000
10001 SCx200 HRT CLOCKSOURCE DRIVER
10002 M:      Jim Cromie <jim.cromie@gmail.com>
10003 S:      Maintained
10004 F:      drivers/clocksource/scx200_hrt.c
10005
10006 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10007 M:      Sascha Sommer <saschasommer@freenet.de>
10008 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10009 S:      Maintained
10010 F:      drivers/mmc/host/sdricoh_cs.c
10011
10012 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10013 M:      Adrian Hunter <adrian.hunter@intel.com>
10014 L:      linux-mmc@vger.kernel.org
10015 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10016 S:      Maintained
10017 F:      drivers/mmc/host/sdhci*
10018 F:      include/linux/mmc/sdhci*
10019
10020 SECURE COMPUTING
10021 M:      Kees Cook <keescook@chromium.org>
10022 R:      Andy Lutomirski <luto@amacapital.net>
10023 R:      Will Drewry <wad@chromium.org>
10024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10025 S:      Supported
10026 F:      kernel/seccomp.c
10027 F:      include/uapi/linux/seccomp.h
10028 F:      include/linux/seccomp.h
10029 F:      tools/testing/selftests/seccomp/*
10030 K:      \bsecure_computing
10031 K:      \bTIF_SECCOMP\b
10032
10033 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10034 M:      Ben Dooks <ben-linux@fluff.org>
10035 M:      Jaehoon Chung <jh80.chung@samsung.com>
10036 L:      linux-mmc@vger.kernel.org
10037 S:      Maintained
10038 F:      drivers/mmc/host/sdhci-s3c*
10039
10040 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10041 M:      Viresh Kumar <vireshk@kernel.org>
10042 L:      linux-mmc@vger.kernel.org
10043 S:      Maintained
10044 F:      drivers/mmc/host/sdhci-spear.c
10045
10046 SECURITY SUBSYSTEM
10047 M:      James Morris <james.l.morris@oracle.com>
10048 M:      "Serge E. Hallyn" <serge@hallyn.com>
10049 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10051 W:      http://kernsec.org/
10052 S:      Supported
10053 F:      security/
10054
10055 SECURITY CONTACT
10056 M:      Security Officers <security@kernel.org>
10057 S:      Supported
10058
10059 SELINUX SECURITY MODULE
10060 M:      Paul Moore <paul@paul-moore.com>
10061 M:      Stephen Smalley <sds@tycho.nsa.gov>
10062 M:      Eric Paris <eparis@parisplace.org>
10063 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10064 W:      http://selinuxproject.org
10065 T:      git git://git.infradead.org/users/pcmoore/selinux
10066 S:      Supported
10067 F:      include/linux/selinux*
10068 F:      security/selinux/
10069 F:      scripts/selinux/
10070
10071 APPARMOR SECURITY MODULE
10072 M:      John Johansen <john.johansen@canonical.com>
10073 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10074 W:      apparmor.wiki.kernel.org
10075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10076 S:      Supported
10077 F:      security/apparmor/
10078
10079 LOADPIN SECURITY MODULE
10080 M:      Kees Cook <keescook@chromium.org>
10081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10082 S:      Supported
10083 F:      security/loadpin/
10084
10085 YAMA SECURITY MODULE
10086 M:      Kees Cook <keescook@chromium.org>
10087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10088 S:      Supported
10089 F:      security/yama/
10090
10091 SENSABLE PHANTOM
10092 M:      Jiri Slaby <jirislaby@gmail.com>
10093 S:      Maintained
10094 F:      drivers/misc/phantom.c
10095 F:      include/uapi/linux/phantom.h
10096
10097 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10098 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10099 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10100 M:      John Soni Jose <sony.john@avagotech.com>
10101 L:      linux-scsi@vger.kernel.org
10102 W:      http://www.avagotech.com
10103 S:      Supported
10104 F:      drivers/scsi/be2iscsi/
10105
10106 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
10107 M:      Sathya Perla <sathya.perla@broadcom.com>
10108 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10109 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
10110 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10111 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10112 L:      netdev@vger.kernel.org
10113 W:      http://www.emulex.com
10114 S:      Supported
10115 F:      drivers/net/ethernet/emulex/benet/
10116
10117 EMULEX ONECONNECT ROCE DRIVER
10118 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10119 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10120 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10121 L:      linux-rdma@vger.kernel.org
10122 W:      http://www.emulex.com
10123 S:      Supported
10124 F:      drivers/infiniband/hw/ocrdma/
10125
10126 SFC NETWORK DRIVER
10127 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10128 M:      Edward Cree <ecree@solarflare.com>
10129 M:      Bert Kenward <bkenward@solarflare.com>
10130 L:      netdev@vger.kernel.org
10131 S:      Supported
10132 F:      drivers/net/ethernet/sfc/
10133
10134 SGI GRU DRIVER
10135 M:      Dimitri Sivanich <sivanich@sgi.com>
10136 S:      Maintained
10137 F:      drivers/misc/sgi-gru/
10138
10139 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10140 M:      Pat Gefre <pfg@sgi.com>
10141 L:      linux-ia64@vger.kernel.org
10142 S:      Supported
10143 F:      Documentation/ia64/serial.txt
10144 F:      drivers/tty/serial/ioc?_serial.c
10145 F:      include/linux/ioc?.h
10146
10147 SGI XP/XPC/XPNET DRIVER
10148 M:      Cliff Whickman <cpw@sgi.com>
10149 M:      Robin Holt <robinmholt@gmail.com>
10150 S:      Maintained
10151 F:      drivers/misc/sgi-xp/
10152
10153 SI2157 MEDIA DRIVER
10154 M:      Antti Palosaari <crope@iki.fi>
10155 L:      linux-media@vger.kernel.org
10156 W:      https://linuxtv.org
10157 W:      http://palosaari.fi/linux/
10158 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10159 T:      git git://linuxtv.org/anttip/media_tree.git
10160 S:      Maintained
10161 F:      drivers/media/tuners/si2157*
10162
10163 SI2168 MEDIA DRIVER
10164 M:      Antti Palosaari <crope@iki.fi>
10165 L:      linux-media@vger.kernel.org
10166 W:      https://linuxtv.org
10167 W:      http://palosaari.fi/linux/
10168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10169 T:      git git://linuxtv.org/anttip/media_tree.git
10170 S:      Maintained
10171 F:      drivers/media/dvb-frontends/si2168*
10172
10173 SI470X FM RADIO RECEIVER I2C DRIVER
10174 M:      Hans Verkuil <hverkuil@xs4all.nl>
10175 L:      linux-media@vger.kernel.org
10176 T:      git git://linuxtv.org/media_tree.git
10177 W:      https://linuxtv.org
10178 S:      Odd Fixes
10179 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10180
10181 SI470X FM RADIO RECEIVER USB DRIVER
10182 M:      Hans Verkuil <hverkuil@xs4all.nl>
10183 L:      linux-media@vger.kernel.org
10184 T:      git git://linuxtv.org/media_tree.git
10185 W:      https://linuxtv.org
10186 S:      Maintained
10187 F:      drivers/media/radio/si470x/radio-si470x-common.c
10188 F:      drivers/media/radio/si470x/radio-si470x.h
10189 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10190
10191 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10192 M:      Eduardo Valentin <edubezval@gmail.com>
10193 L:      linux-media@vger.kernel.org
10194 T:      git git://linuxtv.org/media_tree.git
10195 W:      https://linuxtv.org
10196 S:      Odd Fixes
10197 F:      drivers/media/radio/si4713/si4713.?
10198
10199 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10200 M:      Eduardo Valentin <edubezval@gmail.com>
10201 L:      linux-media@vger.kernel.org
10202 T:      git git://linuxtv.org/media_tree.git
10203 W:      https://linuxtv.org
10204 S:      Odd Fixes
10205 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10206
10207 SI4713 FM RADIO TRANSMITTER USB DRIVER
10208 M:      Hans Verkuil <hverkuil@xs4all.nl>
10209 L:      linux-media@vger.kernel.org
10210 T:      git git://linuxtv.org/media_tree.git
10211 W:      https://linuxtv.org
10212 S:      Maintained
10213 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10214
10215 SIANO DVB DRIVER
10216 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10217 L:      linux-media@vger.kernel.org
10218 W:      https://linuxtv.org
10219 T:      git git://linuxtv.org/media_tree.git
10220 S:      Odd fixes
10221 F:      drivers/media/common/siano/
10222 F:      drivers/media/usb/siano/
10223 F:      drivers/media/usb/siano/
10224 F:      drivers/media/mmc/siano/
10225
10226 SIMPLEFB FB DRIVER
10227 M:      Hans de Goede <hdegoede@redhat.com>
10228 L:      linux-fbdev@vger.kernel.org
10229 S:      Maintained
10230 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10231 F:      drivers/video/fbdev/simplefb.c
10232 F:      include/linux/platform_data/simplefb.h
10233
10234 SH_VEU V4L2 MEM2MEM DRIVER
10235 L:      linux-media@vger.kernel.org
10236 S:      Orphan
10237 F:      drivers/media/platform/sh_veu.c
10238
10239 SH_VOU V4L2 OUTPUT DRIVER
10240 L:      linux-media@vger.kernel.org
10241 S:      Orphan
10242 F:      drivers/media/platform/sh_vou.c
10243 F:      include/media/drv-intf/sh_vou.h
10244
10245 SIMPLE FIRMWARE INTERFACE (SFI)
10246 M:      Len Brown <lenb@kernel.org>
10247 L:      sfi-devel@simplefirmware.org
10248 W:      http://simplefirmware.org/
10249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10250 S:      Supported
10251 F:      arch/x86/platform/sfi/
10252 F:      drivers/sfi/
10253 F:      include/linux/sfi*.h
10254
10255 SIMTEC EB110ATX (Chalice CATS)
10256 P:      Ben Dooks
10257 P:      Vincent Sanders <vince@simtec.co.uk>
10258 M:      Simtec Linux Team <linux@simtec.co.uk>
10259 W:      http://www.simtec.co.uk/products/EB110ATX/
10260 S:      Supported
10261
10262 SIMTEC EB2410ITX (BAST)
10263 P:      Ben Dooks
10264 P:      Vincent Sanders <vince@simtec.co.uk>
10265 M:      Simtec Linux Team <linux@simtec.co.uk>
10266 W:      http://www.simtec.co.uk/products/EB2410ITX/
10267 S:      Supported
10268 F:      arch/arm/mach-s3c24xx/mach-bast.c
10269 F:      arch/arm/mach-s3c24xx/bast-ide.c
10270 F:      arch/arm/mach-s3c24xx/bast-irq.c
10271
10272 TI DAVINCI MACHINE SUPPORT
10273 M:      Sekhar Nori <nsekhar@ti.com>
10274 M:      Kevin Hilman <khilman@kernel.org>
10275 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
10277 S:      Supported
10278 F:      arch/arm/mach-davinci/
10279 F:      drivers/i2c/busses/i2c-davinci.c
10280
10281 TI DAVINCI SERIES MEDIA DRIVER
10282 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10283 L:      linux-media@vger.kernel.org
10284 W:      https://linuxtv.org
10285 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10286 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10287 S:      Maintained
10288 F:      drivers/media/platform/davinci/
10289 F:      include/media/davinci/
10290
10291 TI AM437X VPFE DRIVER
10292 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10293 L:      linux-media@vger.kernel.org
10294 W:      https://linuxtv.org
10295 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10296 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10297 S:      Maintained
10298 F:      drivers/media/platform/am437x/
10299
10300 OV2659 OMNIVISION SENSOR DRIVER
10301 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10302 L:      linux-media@vger.kernel.org
10303 W:      https://linuxtv.org
10304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10305 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10306 S:      Maintained
10307 F:      drivers/media/i2c/ov2659.c
10308 F:      include/media/i2c/ov2659.h
10309
10310 SILICON MOTION SM712 FRAME BUFFER DRIVER
10311 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10312 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10313 M:      Sudip Mukherjee <sudip@vectorindia.org>
10314 L:      linux-fbdev@vger.kernel.org
10315 S:      Maintained
10316 F:      drivers/video/fbdev/sm712*
10317 F:      Documentation/fb/sm712fb.txt
10318
10319 SIS 190 ETHERNET DRIVER
10320 M:      Francois Romieu <romieu@fr.zoreil.com>
10321 L:      netdev@vger.kernel.org
10322 S:      Maintained
10323 F:      drivers/net/ethernet/sis/sis190.c
10324
10325 SIS 900/7016 FAST ETHERNET DRIVER
10326 M:      Daniele Venzano <venza@brownhat.org>
10327 W:      http://www.brownhat.org/sis900.html
10328 L:      netdev@vger.kernel.org
10329 S:      Maintained
10330 F:      drivers/net/ethernet/sis/sis900.*
10331
10332 SIS FRAMEBUFFER DRIVER
10333 M:      Thomas Winischhofer <thomas@winischhofer.net>
10334 W:      http://www.winischhofer.net/linuxsisvga.shtml
10335 S:      Maintained
10336 F:      Documentation/fb/sisfb.txt
10337 F:      drivers/video/fbdev/sis/
10338 F:      include/video/sisfb.h
10339
10340 SIS USB2VGA DRIVER
10341 M:      Thomas Winischhofer <thomas@winischhofer.net>
10342 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10343 S:      Maintained
10344 F:      drivers/usb/misc/sisusbvga/
10345
10346 SLAB ALLOCATOR
10347 M:      Christoph Lameter <cl@linux.com>
10348 M:      Pekka Enberg <penberg@kernel.org>
10349 M:      David Rientjes <rientjes@google.com>
10350 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10351 M:      Andrew Morton <akpm@linux-foundation.org>
10352 L:      linux-mm@kvack.org
10353 S:      Maintained
10354 F:      include/linux/sl?b*.h
10355 F:      mm/sl?b*
10356
10357 SLEEPABLE READ-COPY UPDATE (SRCU)
10358 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10359 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10360 M:      Josh Triplett <josh@joshtriplett.org>
10361 R:      Steven Rostedt <rostedt@goodmis.org>
10362 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10363 L:      linux-kernel@vger.kernel.org
10364 W:      http://www.rdrop.com/users/paulmck/RCU/
10365 S:      Supported
10366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10367 F:      include/linux/srcu.h
10368 F:      kernel/rcu/srcu.c
10369
10370 SMACK SECURITY MODULE
10371 M:      Casey Schaufler <casey@schaufler-ca.com>
10372 L:      linux-security-module@vger.kernel.org
10373 W:      http://schaufler-ca.com
10374 T:      git git://git.gitorious.org/smack-next/kernel.git
10375 S:      Maintained
10376 F:      Documentation/security/Smack.txt
10377 F:      security/smack/
10378
10379 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10380 M:      Kevin Hilman <khilman@kernel.org>
10381 M:      Nishanth Menon <nm@ti.com>
10382 S:      Maintained
10383 F:      drivers/power/avs/
10384 F:      include/linux/power/smartreflex.h
10385 L:      linux-pm@vger.kernel.org
10386
10387 SMC91x ETHERNET DRIVER
10388 M:      Nicolas Pitre <nico@fluxnic.net>
10389 S:      Odd Fixes
10390 F:      drivers/net/ethernet/smsc/smc91x.*
10391
10392 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10393 M:      Sakari Ailus <sakari.ailus@iki.fi>
10394 L:      linux-media@vger.kernel.org
10395 S:      Maintained
10396 F:      drivers/media/i2c/smiapp/
10397 F:      include/media/i2c/smiapp.h
10398 F:      drivers/media/i2c/smiapp-pll.c
10399 F:      drivers/media/i2c/smiapp-pll.h
10400 F:      include/uapi/linux/smiapp.h
10401 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10402
10403 SMM665 HARDWARE MONITOR DRIVER
10404 M:      Guenter Roeck <linux@roeck-us.net>
10405 L:      linux-hwmon@vger.kernel.org
10406 S:      Maintained
10407 F:      Documentation/hwmon/smm665
10408 F:      drivers/hwmon/smm665.c
10409
10410 SMSC EMC2103 HARDWARE MONITOR DRIVER
10411 M:      Steve Glendinning <steve.glendinning@shawell.net>
10412 L:      linux-hwmon@vger.kernel.org
10413 S:      Maintained
10414 F:      Documentation/hwmon/emc2103
10415 F:      drivers/hwmon/emc2103.c
10416
10417 SMSC SCH5627 HARDWARE MONITOR DRIVER
10418 M:      Hans de Goede <hdegoede@redhat.com>
10419 L:      linux-hwmon@vger.kernel.org
10420 S:      Supported
10421 F:      Documentation/hwmon/sch5627
10422 F:      drivers/hwmon/sch5627.c
10423
10424 SMSC47B397 HARDWARE MONITOR DRIVER
10425 M:      Jean Delvare <jdelvare@suse.com>
10426 L:      linux-hwmon@vger.kernel.org
10427 S:      Maintained
10428 F:      Documentation/hwmon/smsc47b397
10429 F:      drivers/hwmon/smsc47b397.c
10430
10431 SMSC911x ETHERNET DRIVER
10432 M:      Steve Glendinning <steve.glendinning@shawell.net>
10433 L:      netdev@vger.kernel.org
10434 S:      Maintained
10435 F:      include/linux/smsc911x.h
10436 F:      drivers/net/ethernet/smsc/smsc911x.*
10437
10438 SMSC9420 PCI ETHERNET DRIVER
10439 M:      Steve Glendinning <steve.glendinning@shawell.net>
10440 L:      netdev@vger.kernel.org
10441 S:      Maintained
10442 F:      drivers/net/ethernet/smsc/smsc9420.*
10443
10444 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10445 M:      Steve Glendinning <steve.glendinning@shawell.net>
10446 L:      linux-fbdev@vger.kernel.org
10447 S:      Maintained
10448 F:      drivers/video/fbdev/smscufx.c
10449
10450 SOC-CAMERA V4L2 SUBSYSTEM
10451 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10452 L:      linux-media@vger.kernel.org
10453 T:      git git://linuxtv.org/media_tree.git
10454 S:      Maintained
10455 F:      include/media/soc*
10456 F:      drivers/media/i2c/soc_camera/
10457 F:      drivers/media/platform/soc_camera/
10458
10459 SOEKRIS NET48XX LED SUPPORT
10460 M:      Chris Boot <bootc@bootc.net>
10461 S:      Maintained
10462 F:      drivers/leds/leds-net48xx.c
10463
10464 SOFTLOGIC 6x10 MPEG CODEC
10465 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10466 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10467 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10468 M:      Ismael Luceno <ismael@iodev.co.uk>
10469 L:      linux-media@vger.kernel.org
10470 S:      Supported
10471 F:      drivers/media/pci/solo6x10/
10472
10473 SOFTWARE RAID (Multiple Disks) SUPPORT
10474 M:      Shaohua Li <shli@kernel.org>
10475 L:      linux-raid@vger.kernel.org
10476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
10477 S:      Supported
10478 F:      drivers/md/
10479 F:      include/linux/raid/
10480 F:      include/uapi/linux/raid/
10481
10482 SONIC NETWORK DRIVER
10483 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10484 L:      netdev@vger.kernel.org
10485 S:      Maintained
10486 F:      drivers/net/ethernet/natsemi/sonic.*
10487
10488 SONICS SILICON BACKPLANE DRIVER (SSB)
10489 M:      Michael Buesch <m@bues.ch>
10490 L:      linux-wireless@vger.kernel.org
10491 S:      Maintained
10492 F:      drivers/ssb/
10493 F:      include/linux/ssb/
10494
10495 SONY VAIO CONTROL DEVICE DRIVER
10496 M:      Mattia Dongili <malattia@linux.it>
10497 L:      platform-driver-x86@vger.kernel.org
10498 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10499 S:      Maintained
10500 F:      Documentation/laptops/sony-laptop.txt
10501 F:      drivers/char/sonypi.c
10502 F:      drivers/platform/x86/sony-laptop.c
10503 F:      include/linux/sony-laptop.h
10504
10505 SONY MEMORYSTICK CARD SUPPORT
10506 M:      Alex Dubov <oakad@yahoo.com>
10507 W:      http://tifmxx.berlios.de/
10508 S:      Maintained
10509 F:      drivers/memstick/host/tifm_ms.c
10510
10511 SONY MEMORYSTICK STANDARD SUPPORT
10512 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10513 S:      Maintained
10514 F:      drivers/memstick/core/ms_block.*
10515
10516 SOUND
10517 M:      Jaroslav Kysela <perex@perex.cz>
10518 M:      Takashi Iwai <tiwai@suse.com>
10519 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10520 W:      http://www.alsa-project.org/
10521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10522 T:      git git://git.alsa-project.org/alsa-kernel.git
10523 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10524 S:      Maintained
10525 F:      Documentation/sound/
10526 F:      include/sound/
10527 F:      include/uapi/sound/
10528 F:      sound/
10529
10530 SOUND - COMPRESSED AUDIO
10531 M:      Vinod Koul <vinod.koul@intel.com>
10532 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10534 S:      Supported
10535 F:      Documentation/sound/alsa/compress_offload.txt
10536 F:      include/sound/compress_driver.h
10537 F:      include/uapi/sound/compress_*
10538 F:      sound/core/compress_offload.c
10539 F:      sound/soc/soc-compress.c
10540
10541 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10542 M:      Liam Girdwood <lgirdwood@gmail.com>
10543 M:      Mark Brown <broonie@kernel.org>
10544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10545 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10546 W:      http://alsa-project.org/main/index.php/ASoC
10547 S:      Supported
10548 F:      Documentation/sound/alsa/soc/
10549 F:      sound/soc/
10550 F:      include/sound/soc*
10551
10552 SOUND - DMAENGINE HELPERS
10553 M:      Lars-Peter Clausen <lars@metafoo.de>
10554 S:      Supported
10555 F:      include/sound/dmaengine_pcm.h
10556 F:      sound/core/pcm_dmaengine.c
10557 F:      sound/soc/soc-generic-dmaengine-pcm.c
10558
10559 SP2 MEDIA DRIVER
10560 M:      Olli Salonen <olli.salonen@iki.fi>
10561 L:      linux-media@vger.kernel.org
10562 W:      https://linuxtv.org
10563 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10564 S:      Maintained
10565 F:      drivers/media/dvb-frontends/sp2*
10566
10567 SPARC + UltraSPARC (sparc/sparc64)
10568 M:      "David S. Miller" <davem@davemloft.net>
10569 L:      sparclinux@vger.kernel.org
10570 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10573 S:      Maintained
10574 F:      arch/sparc/
10575 F:      drivers/sbus/
10576
10577 SPARC SERIAL DRIVERS
10578 M:      "David S. Miller" <davem@davemloft.net>
10579 L:      sparclinux@vger.kernel.org
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10582 S:      Maintained
10583 F:      include/linux/sunserialcore.h
10584 F:      drivers/tty/serial/suncore.c
10585 F:      drivers/tty/serial/sunhv.c
10586 F:      drivers/tty/serial/sunsab.c
10587 F:      drivers/tty/serial/sunsab.h
10588 F:      drivers/tty/serial/sunsu.c
10589 F:      drivers/tty/serial/sunzilog.c
10590 F:      drivers/tty/serial/sunzilog.h
10591
10592 SPARSE CHECKER
10593 M:      "Christopher Li" <sparse@chrisli.org>
10594 L:      linux-sparse@vger.kernel.org
10595 W:      https://sparse.wiki.kernel.org/
10596 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10597 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10598 S:      Maintained
10599 F:      include/linux/compiler.h
10600
10601 SPEAR PLATFORM SUPPORT
10602 M:      Viresh Kumar <vireshk@kernel.org>
10603 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10605 W:      http://www.st.com/spear
10606 S:      Maintained
10607 F:      arch/arm/boot/dts/spear*
10608 F:      arch/arm/mach-spear/
10609
10610 SPEAR CLOCK FRAMEWORK SUPPORT
10611 M:      Viresh Kumar <vireshk@kernel.org>
10612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10613 W:      http://www.st.com/spear
10614 S:      Maintained
10615 F:      drivers/clk/spear/
10616
10617 SPI SUBSYSTEM
10618 M:      Mark Brown <broonie@kernel.org>
10619 L:      linux-spi@vger.kernel.org
10620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10621 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10622 S:      Maintained
10623 F:      Documentation/spi/
10624 F:      drivers/spi/
10625 F:      include/linux/spi/
10626 F:      include/uapi/linux/spi/
10627
10628 SPIDERNET NETWORK DRIVER for CELL
10629 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10630 L:      netdev@vger.kernel.org
10631 S:      Supported
10632 F:      Documentation/networking/spider_net.txt
10633 F:      drivers/net/ethernet/toshiba/spider_net*
10634
10635 SPU FILE SYSTEM
10636 M:      Jeremy Kerr <jk@ozlabs.org>
10637 L:      linuxppc-dev@lists.ozlabs.org
10638 W:      http://www.ibm.com/developerworks/power/cell/
10639 S:      Supported
10640 F:      Documentation/filesystems/spufs.txt
10641 F:      arch/powerpc/platforms/cell/spufs/
10642
10643 SQUASHFS FILE SYSTEM
10644 M:      Phillip Lougher <phillip@squashfs.org.uk>
10645 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10646 W:      http://squashfs.org.uk
10647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10648 S:      Maintained
10649 F:      Documentation/filesystems/squashfs.txt
10650 F:      fs/squashfs/
10651
10652 SRM (Alpha) environment access
10653 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10654 S:      Maintained
10655 F:      arch/alpha/kernel/srm_env.c
10656
10657 STABLE BRANCH
10658 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10659 L:      stable@vger.kernel.org
10660 S:      Supported
10661 F:      Documentation/stable_kernel_rules.txt
10662
10663 STAGING SUBSYSTEM
10664 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10666 L:      devel@driverdev.osuosl.org
10667 S:      Supported
10668 F:      drivers/staging/
10669
10670 STAGING - COMEDI
10671 M:      Ian Abbott <abbotti@mev.co.uk>
10672 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10673 S:      Odd Fixes
10674 F:      drivers/staging/comedi/
10675
10676 STAGING - FLARION FT1000 DRIVERS
10677 M:      Marek Belisko <marek.belisko@gmail.com>
10678 S:      Odd Fixes
10679 F:      drivers/staging/ft1000/
10680
10681 STAGING - INDUSTRIAL IO
10682 M:      Jonathan Cameron <jic23@kernel.org>
10683 L:      linux-iio@vger.kernel.org
10684 S:      Odd Fixes
10685 F:      drivers/staging/iio/
10686
10687 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10688 M:      Jarod Wilson <jarod@wilsonet.com>
10689 W:      http://www.lirc.org/
10690 S:      Odd Fixes
10691 F:      drivers/staging/media/lirc/
10692
10693 STAGING - LUSTRE PARALLEL FILESYSTEM
10694 M:      Oleg Drokin <oleg.drokin@intel.com>
10695 M:      Andreas Dilger <andreas.dilger@intel.com>
10696 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10697 W:      http://wiki.lustre.org/
10698 S:      Maintained
10699 F:      drivers/staging/lustre
10700
10701 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10702 M:      Marc Dietrich <marvin24@gmx.de>
10703 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10704 L:      linux-tegra@vger.kernel.org
10705 S:      Maintained
10706 F:      drivers/staging/nvec/
10707
10708 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10709 M:      Jens Frederich <jfrederich@gmail.com>
10710 M:      Daniel Drake <dsd@laptop.org>
10711 M:      Jon Nettleton <jon.nettleton@gmail.com>
10712 W:      http://wiki.laptop.org/go/DCON
10713 S:      Maintained
10714 F:      drivers/staging/olpc_dcon/
10715
10716 STAGING - REALTEK RTL8712U DRIVERS
10717 M:      Larry Finger <Larry.Finger@lwfinger.net>
10718 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10719 S:      Odd Fixes
10720 F:      drivers/staging/rtl8712/
10721
10722 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10723 M:      Larry Finger <Larry.Finger@lwfinger.net>
10724 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10725 L:      linux-wireless@vger.kernel.org
10726 S:      Maintained
10727 F:      drivers/staging/rtl8723au/
10728
10729 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10730 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10731 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10732 M:      Sudip Mukherjee <sudip@vectorindia.org>
10733 L:      linux-fbdev@vger.kernel.org
10734 S:      Maintained
10735 F:      drivers/staging/sm750fb/
10736
10737 STAGING - SLICOSS
10738 M:      Lior Dotan <liodot@gmail.com>
10739 M:      Christopher Harrer <charrer@alacritech.com>
10740 S:      Odd Fixes
10741 F:      drivers/staging/slicoss/
10742
10743 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10744 M:      William Hubbs <w.d.hubbs@gmail.com>
10745 M:      Chris Brannon <chris@the-brannons.com>
10746 M:      Kirk Reiser <kirk@reisers.ca>
10747 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10748 L:      speakup@linux-speakup.org
10749 W:      http://www.linux-speakup.org/
10750 S:      Odd Fixes
10751 F:      drivers/staging/speakup/
10752
10753 STAGING - VIA VT665X DRIVERS
10754 M:      Forest Bond <forest@alittletooquiet.net>
10755 S:      Odd Fixes
10756 F:      drivers/staging/vt665?/
10757
10758 STAGING - WILC1000 WIFI DRIVER
10759 M:      Johnny Kim <johnny.kim@atmel.com>
10760 M:      Austin Shin <austin.shin@atmel.com>
10761 M:      Chris Park <chris.park@atmel.com>
10762 M:      Tony Cho <tony.cho@atmel.com>
10763 M:      Glen Lee <glen.lee@atmel.com>
10764 M:      Leo Kim <leo.kim@atmel.com>
10765 L:      linux-wireless@vger.kernel.org
10766 S:      Supported
10767 F:      drivers/staging/wilc1000/
10768
10769 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10770 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10771 S:      Odd Fixes
10772 F:      drivers/staging/xgifb/
10773
10774 HFI1 DRIVER
10775 M:      Mike Marciniszyn <infinipath@intel.com>
10776 L:      linux-rdma@vger.kernel.org
10777 S:      Supported
10778 F:      drivers/staging/rdma/hfi1
10779
10780 STARFIRE/DURALAN NETWORK DRIVER
10781 M:      Ion Badulescu <ionut@badula.org>
10782 S:      Odd Fixes
10783 F:      drivers/net/ethernet/adaptec/starfire*
10784
10785 SUN3/3X
10786 M:      Sam Creasey <sammy@sammy.net>
10787 W:      http://sammy.net/sun3/
10788 S:      Maintained
10789 F:      arch/m68k/kernel/*sun3*
10790 F:      arch/m68k/sun3*/
10791 F:      arch/m68k/include/asm/sun3*
10792 F:      drivers/net/ethernet/i825xx/sun3*
10793
10794 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10795 M:      Hans de Goede <hdegoede@redhat.com>
10796 L:      linux-input@vger.kernel.org
10797 S:      Maintained
10798 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10799 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10800
10801 SUNDANCE NETWORK DRIVER
10802 M:      Denis Kirjanov <kda@linux-powerpc.org>
10803 L:      netdev@vger.kernel.org
10804 S:      Maintained
10805 F:      drivers/net/ethernet/dlink/sundance.c
10806
10807 SUPERH
10808 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10809 M:      Rich Felker <dalias@libc.org>
10810 L:      linux-sh@vger.kernel.org
10811 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10812 S:      Maintained
10813 F:      Documentation/sh/
10814 F:      arch/sh/
10815 F:      drivers/sh/
10816
10817 SUSPEND TO RAM
10818 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10819 M:      Len Brown <len.brown@intel.com>
10820 M:      Pavel Machek <pavel@ucw.cz>
10821 L:      linux-pm@vger.kernel.org
10822 S:      Supported
10823 F:      Documentation/power/
10824 F:      arch/x86/kernel/acpi/
10825 F:      drivers/base/power/
10826 F:      kernel/power/
10827 F:      include/linux/suspend.h
10828 F:      include/linux/freezer.h
10829 F:      include/linux/pm.h
10830
10831 SVGA HANDLING
10832 M:      Martin Mares <mj@ucw.cz>
10833 L:      linux-video@atrey.karlin.mff.cuni.cz
10834 S:      Maintained
10835 F:      Documentation/svga.txt
10836 F:      arch/x86/boot/video*
10837
10838 SWIOTLB SUBSYSTEM
10839 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10840 L:      linux-kernel@vger.kernel.org
10841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10842 S:      Supported
10843 F:      lib/swiotlb.c
10844 F:      arch/*/kernel/pci-swiotlb.c
10845 F:      include/linux/swiotlb.h
10846
10847 SWITCHDEV
10848 M:      Jiri Pirko <jiri@resnulli.us>
10849 L:      netdev@vger.kernel.org
10850 S:      Supported
10851 F:      net/switchdev/
10852 F:      include/net/switchdev.h
10853
10854 SYNOPSYS ARC ARCHITECTURE
10855 M:      Vineet Gupta <vgupta@synopsys.com>
10856 L:      linux-snps-arc@lists.infradead.org
10857 S:      Supported
10858 F:      arch/arc/
10859 F:      Documentation/devicetree/bindings/arc/*
10860 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10861 F:      drivers/tty/serial/arc_uart.c
10862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10863
10864 SYNOPSYS ARC SDP platform support
10865 M:      Alexey Brodkin <abrodkin@synopsys.com>
10866 S:      Supported
10867 F:      arch/arc/plat-axs10x
10868 F:      arch/arc/boot/dts/ax*
10869 F:      Documentation/devicetree/bindings/arc/axs10*
10870
10871 SYSTEM CONFIGURATION (SYSCON)
10872 M:      Lee Jones <lee.jones@linaro.org>
10873 M:      Arnd Bergmann <arnd@arndb.de>
10874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10875 S:      Supported
10876 F:      drivers/mfd/syscon.c
10877
10878 SYSV FILESYSTEM
10879 M:      Christoph Hellwig <hch@infradead.org>
10880 S:      Maintained
10881 F:      Documentation/filesystems/sysv-fs.txt
10882 F:      fs/sysv/
10883 F:      include/linux/sysv_fs.h
10884
10885 TARGET SUBSYSTEM
10886 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10887 L:      linux-scsi@vger.kernel.org
10888 L:      target-devel@vger.kernel.org
10889 W:      http://www.linux-iscsi.org
10890 W:      http://groups.google.com/group/linux-iscsi-target-dev
10891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10892 S:      Supported
10893 F:      drivers/target/
10894 F:      include/target/
10895 F:      Documentation/target/
10896
10897 TASKSTATS STATISTICS INTERFACE
10898 M:      Balbir Singh <bsingharora@gmail.com>
10899 S:      Maintained
10900 F:      Documentation/accounting/taskstats*
10901 F:      include/linux/taskstats*
10902 F:      kernel/taskstats.c
10903
10904 TC CLASSIFIER
10905 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10906 L:      netdev@vger.kernel.org
10907 S:      Maintained
10908 F:      include/net/pkt_cls.h
10909 F:      include/uapi/linux/pkt_cls.h
10910 F:      net/sched/
10911
10912 TCP LOW PRIORITY MODULE
10913 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10914 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10915 W:      http://tcp-lp-mod.sourceforge.net/
10916 S:      Maintained
10917 F:      net/ipv4/tcp_lp.c
10918
10919 TDA10071 MEDIA DRIVER
10920 M:      Antti Palosaari <crope@iki.fi>
10921 L:      linux-media@vger.kernel.org
10922 W:      https://linuxtv.org
10923 W:      http://palosaari.fi/linux/
10924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10925 T:      git git://linuxtv.org/anttip/media_tree.git
10926 S:      Maintained
10927 F:      drivers/media/dvb-frontends/tda10071*
10928
10929 TDA18212 MEDIA DRIVER
10930 M:      Antti Palosaari <crope@iki.fi>
10931 L:      linux-media@vger.kernel.org
10932 W:      https://linuxtv.org
10933 W:      http://palosaari.fi/linux/
10934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10935 T:      git git://linuxtv.org/anttip/media_tree.git
10936 S:      Maintained
10937 F:      drivers/media/tuners/tda18212*
10938
10939 TDA18218 MEDIA DRIVER
10940 M:      Antti Palosaari <crope@iki.fi>
10941 L:      linux-media@vger.kernel.org
10942 W:      https://linuxtv.org
10943 W:      http://palosaari.fi/linux/
10944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10945 T:      git git://linuxtv.org/anttip/media_tree.git
10946 S:      Maintained
10947 F:      drivers/media/tuners/tda18218*
10948
10949 TDA18271 MEDIA DRIVER
10950 M:      Michael Krufky <mkrufky@linuxtv.org>
10951 L:      linux-media@vger.kernel.org
10952 W:      https://linuxtv.org
10953 W:      http://github.com/mkrufky
10954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10955 T:      git git://linuxtv.org/mkrufky/tuners.git
10956 S:      Maintained
10957 F:      drivers/media/tuners/tda18271*
10958
10959 TDA827x MEDIA DRIVER
10960 M:      Michael Krufky <mkrufky@linuxtv.org>
10961 L:      linux-media@vger.kernel.org
10962 W:      https://linuxtv.org
10963 W:      http://github.com/mkrufky
10964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10965 T:      git git://linuxtv.org/mkrufky/tuners.git
10966 S:      Maintained
10967 F:      drivers/media/tuners/tda8290.*
10968
10969 TDA8290 MEDIA DRIVER
10970 M:      Michael Krufky <mkrufky@linuxtv.org>
10971 L:      linux-media@vger.kernel.org
10972 W:      https://linuxtv.org
10973 W:      http://github.com/mkrufky
10974 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10975 T:      git git://linuxtv.org/mkrufky/tuners.git
10976 S:      Maintained
10977 F:      drivers/media/tuners/tda8290.*
10978
10979 TDA9840 MEDIA DRIVER
10980 M:      Hans Verkuil <hverkuil@xs4all.nl>
10981 L:      linux-media@vger.kernel.org
10982 T:      git git://linuxtv.org/media_tree.git
10983 W:      https://linuxtv.org
10984 S:      Maintained
10985 F:      drivers/media/i2c/tda9840*
10986
10987 TEA5761 TUNER DRIVER
10988 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10989 L:      linux-media@vger.kernel.org
10990 W:      https://linuxtv.org
10991 T:      git git://linuxtv.org/media_tree.git
10992 S:      Odd fixes
10993 F:      drivers/media/tuners/tea5761.*
10994
10995 TEA5767 TUNER DRIVER
10996 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10997 L:      linux-media@vger.kernel.org
10998 W:      https://linuxtv.org
10999 T:      git git://linuxtv.org/media_tree.git
11000 S:      Maintained
11001 F:      drivers/media/tuners/tea5767.*
11002
11003 TEA6415C MEDIA DRIVER
11004 M:      Hans Verkuil <hverkuil@xs4all.nl>
11005 L:      linux-media@vger.kernel.org
11006 T:      git git://linuxtv.org/media_tree.git
11007 W:      https://linuxtv.org
11008 S:      Maintained
11009 F:      drivers/media/i2c/tea6415c*
11010
11011 TEA6420 MEDIA DRIVER
11012 M:      Hans Verkuil <hverkuil@xs4all.nl>
11013 L:      linux-media@vger.kernel.org
11014 T:      git git://linuxtv.org/media_tree.git
11015 W:      https://linuxtv.org
11016 S:      Maintained
11017 F:      drivers/media/i2c/tea6420*
11018
11019 TEAM DRIVER
11020 M:      Jiri Pirko <jiri@resnulli.us>
11021 L:      netdev@vger.kernel.org
11022 S:      Supported
11023 F:      drivers/net/team/
11024 F:      include/linux/if_team.h
11025 F:      include/uapi/linux/if_team.h
11026
11027 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11028 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11029 S:      Maintained
11030 F:      arch/x86/platform/ts5500/
11031
11032 TECHNOTREND USB IR RECEIVER
11033 M:      Sean Young <sean@mess.org>
11034 L:      linux-media@vger.kernel.org
11035 S:      Maintained
11036 F:      drivers/media/rc/ttusbir.c
11037
11038 TEGRA ARCHITECTURE SUPPORT
11039 M:      Stephen Warren <swarren@wwwdotorg.org>
11040 M:      Thierry Reding <thierry.reding@gmail.com>
11041 M:      Alexandre Courbot <gnurou@gmail.com>
11042 L:      linux-tegra@vger.kernel.org
11043 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11045 S:      Supported
11046 N:      [^a-z]tegra
11047
11048 TEGRA CLOCK DRIVER
11049 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11050 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11051 S:      Supported
11052 F:      drivers/clk/tegra/
11053
11054 TEGRA DMA DRIVERS
11055 M:      Laxman Dewangan <ldewangan@nvidia.com>
11056 M:      Jon Hunter <jonathanh@nvidia.com>
11057 S:      Supported
11058 F:      drivers/dma/tegra*
11059
11060 TEGRA I2C DRIVER
11061 M:      Laxman Dewangan <ldewangan@nvidia.com>
11062 S:      Supported
11063 F:      drivers/i2c/busses/i2c-tegra.c
11064
11065 TEGRA IOMMU DRIVERS
11066 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11067 S:      Supported
11068 F:      drivers/iommu/tegra*
11069
11070 TEGRA KBC DRIVER
11071 M:      Rakesh Iyer <riyer@nvidia.com>
11072 M:      Laxman Dewangan <ldewangan@nvidia.com>
11073 S:      Supported
11074 F:      drivers/input/keyboard/tegra-kbc.c
11075
11076 TEGRA PWM DRIVER
11077 M:      Thierry Reding <thierry.reding@gmail.com>
11078 S:      Supported
11079 F:      drivers/pwm/pwm-tegra.c
11080
11081 TEGRA SERIAL DRIVER
11082 M:      Laxman Dewangan <ldewangan@nvidia.com>
11083 S:      Supported
11084 F:      drivers/tty/serial/serial-tegra.c
11085
11086 TEGRA SPI DRIVER
11087 M:      Laxman Dewangan <ldewangan@nvidia.com>
11088 S:      Supported
11089 F:      drivers/spi/spi-tegra*
11090
11091 TEHUTI ETHERNET DRIVER
11092 M:      Andy Gospodarek <andy@greyhouse.net>
11093 L:      netdev@vger.kernel.org
11094 S:      Supported
11095 F:      drivers/net/ethernet/tehuti/*
11096
11097 Telecom Clock Driver for MCPL0010
11098 M:      Mark Gross <mark.gross@intel.com>
11099 S:      Supported
11100 F:      drivers/char/tlclk.c
11101
11102 TENSILICA XTENSA PORT (xtensa)
11103 M:      Chris Zankel <chris@zankel.net>
11104 M:      Max Filippov <jcmvbkbc@gmail.com>
11105 L:      linux-xtensa@linux-xtensa.org
11106 T:      git git://github.com/czankel/xtensa-linux.git
11107 S:      Maintained
11108 F:      arch/xtensa/
11109 F:      drivers/irqchip/irq-xtensa-*
11110
11111 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11112 M:      Hans Verkuil <hverkuil@xs4all.nl>
11113 L:      linux-media@vger.kernel.org
11114 T:      git git://linuxtv.org/media_tree.git
11115 W:      https://linuxtv.org
11116 S:      Maintained
11117 F:      drivers/media/radio/radio-raremono.c
11118
11119 THERMAL
11120 M:      Zhang Rui <rui.zhang@intel.com>
11121 M:      Eduardo Valentin <edubezval@gmail.com>
11122 L:      linux-pm@vger.kernel.org
11123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11125 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11126 S:      Supported
11127 F:      drivers/thermal/
11128 F:      include/linux/thermal.h
11129 F:      include/uapi/linux/thermal.h
11130 F:      include/linux/cpu_cooling.h
11131 F:      Documentation/devicetree/bindings/thermal/
11132
11133 THERMAL/CPU_COOLING
11134 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11135 M:      Viresh Kumar <viresh.kumar@linaro.org>
11136 M:      Javi Merino <javi.merino@arm.com>
11137 L:      linux-pm@vger.kernel.org
11138 S:      Supported
11139 F:      Documentation/thermal/cpu-cooling-api.txt
11140 F:      drivers/thermal/cpu_cooling.c
11141 F:      include/linux/cpu_cooling.h
11142
11143 THINGM BLINK(1) USB RGB LED DRIVER
11144 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11145 S:      Maintained
11146 F:      drivers/hid/hid-thingm.c
11147
11148 THINKPAD ACPI EXTRAS DRIVER
11149 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11150 L:      ibm-acpi-devel@lists.sourceforge.net
11151 L:      platform-driver-x86@vger.kernel.org
11152 W:      http://ibm-acpi.sourceforge.net
11153 W:      http://thinkwiki.org/wiki/Ibm-acpi
11154 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11155 S:      Maintained
11156 F:      drivers/platform/x86/thinkpad_acpi.c
11157
11158 TI BANDGAP AND THERMAL DRIVER
11159 M:      Eduardo Valentin <edubezval@gmail.com>
11160 L:      linux-pm@vger.kernel.org
11161 L:      linux-omap@vger.kernel.org
11162 S:      Maintained
11163 F:      drivers/thermal/ti-soc-thermal/
11164
11165 TI VPE/CAL DRIVERS
11166 M:      Benoit Parrot <bparrot@ti.com>
11167 L:      linux-media@vger.kernel.org
11168 W:      http://linuxtv.org/
11169 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11170 S:      Maintained
11171 F:      drivers/media/platform/ti-vpe/
11172
11173 TI CDCE706 CLOCK DRIVER
11174 M:      Max Filippov <jcmvbkbc@gmail.com>
11175 S:      Maintained
11176 F:      drivers/clk/clk-cdce706.c
11177
11178 TI CLOCK DRIVER
11179 M:      Tero Kristo <t-kristo@ti.com>
11180 L:      linux-omap@vger.kernel.org
11181 S:      Maintained
11182 F:      drivers/clk/ti/
11183 F:      include/linux/clk/ti.h
11184
11185 TI ETHERNET SWITCH DRIVER (CPSW)
11186 M:      Mugunthan V N <mugunthanvnm@ti.com>
11187 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11188 L:      linux-omap@vger.kernel.org
11189 L:      netdev@vger.kernel.org
11190 S:      Maintained
11191 F:      drivers/net/ethernet/ti/cpsw*
11192 F:      drivers/net/ethernet/ti/davinci*
11193
11194 TI FLASH MEDIA INTERFACE DRIVER
11195 M:      Alex Dubov <oakad@yahoo.com>
11196 S:      Maintained
11197 F:      drivers/misc/tifm*
11198 F:      drivers/mmc/host/tifm_sd.c
11199 F:      include/linux/tifm.h
11200
11201 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11202 M:      Santosh Shilimkar <ssantosh@kernel.org>
11203 L:      linux-kernel@vger.kernel.org
11204 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11205 S:      Maintained
11206 F:      drivers/soc/ti/*
11207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11208
11209
11210 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11211 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11212 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11213 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11214 S:      Maintained
11215 F:      sound/soc/codecs/lm49453*
11216 F:      sound/soc/codecs/isabelle*
11217
11218 TI LP855x BACKLIGHT DRIVER
11219 M:      Milo Kim <milo.kim@ti.com>
11220 S:      Maintained
11221 F:      Documentation/backlight/lp855x-driver.txt
11222 F:      drivers/video/backlight/lp855x_bl.c
11223 F:      include/linux/platform_data/lp855x.h
11224
11225 TI LP8727 CHARGER DRIVER
11226 M:      Milo Kim <milo.kim@ti.com>
11227 S:      Maintained
11228 F:      drivers/power/lp8727_charger.c
11229 F:      include/linux/platform_data/lp8727.h
11230
11231 TI LP8788 MFD DRIVER
11232 M:      Milo Kim <milo.kim@ti.com>
11233 S:      Maintained
11234 F:      drivers/iio/adc/lp8788_adc.c
11235 F:      drivers/leds/leds-lp8788.c
11236 F:      drivers/mfd/lp8788*.c
11237 F:      drivers/power/lp8788-charger.c
11238 F:      drivers/regulator/lp8788-*.c
11239 F:      include/linux/mfd/lp8788*.h
11240
11241 TI NETCP ETHERNET DRIVER
11242 M:      Wingman Kwok <w-kwok2@ti.com>
11243 M:      Murali Karicheri <m-karicheri2@ti.com>
11244 L:      netdev@vger.kernel.org
11245 S:      Maintained
11246 F:      drivers/net/ethernet/ti/netcp*
11247
11248 TI TAS571X FAMILY ASoC CODEC DRIVER
11249 M:      Kevin Cernekee <cernekee@chromium.org>
11250 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11251 S:      Odd Fixes
11252 F:      sound/soc/codecs/tas571x*
11253
11254 TI TWL4030 SERIES SOC CODEC DRIVER
11255 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11256 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11257 S:      Maintained
11258 F:      sound/soc/codecs/twl4030*
11259
11260 TI WILINK WIRELESS DRIVERS
11261 L:      linux-wireless@vger.kernel.org
11262 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11263 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11265 S:      Orphan
11266 F:      drivers/net/wireless/ti/
11267 F:      include/linux/wl12xx.h
11268
11269 TIPC NETWORK LAYER
11270 M:      Jon Maloy <jon.maloy@ericsson.com>
11271 M:      Ying Xue <ying.xue@windriver.com>
11272 L:      netdev@vger.kernel.org (core kernel code)
11273 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11274 W:      http://tipc.sourceforge.net/
11275 S:      Maintained
11276 F:      include/uapi/linux/tipc*.h
11277 F:      net/tipc/
11278
11279 TILE ARCHITECTURE
11280 M:      Chris Metcalf <cmetcalf@mellanox.com>
11281 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11283 S:      Supported
11284 F:      arch/tile/
11285 F:      drivers/char/tile-srom.c
11286 F:      drivers/edac/tile_edac.c
11287 F:      drivers/net/ethernet/tile/
11288 F:      drivers/rtc/rtc-tile.c
11289 F:      drivers/tty/hvc/hvc_tile.c
11290 F:      drivers/tty/serial/tilegx.c
11291 F:      drivers/usb/host/*-tilegx.c
11292 F:      include/linux/usb/tilegx.h
11293
11294 TLAN NETWORK DRIVER
11295 M:      Samuel Chessman <chessman@tux.org>
11296 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11297 W:      http://sourceforge.net/projects/tlan/
11298 S:      Maintained
11299 F:      Documentation/networking/tlan.txt
11300 F:      drivers/net/ethernet/ti/tlan.*
11301
11302 TOMOYO SECURITY MODULE
11303 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11304 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11305 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11306 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11307 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11308 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11309 W:      http://tomoyo.sourceforge.jp/
11310 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11311 S:      Maintained
11312 F:      security/tomoyo/
11313
11314 TOPSTAR LAPTOP EXTRAS DRIVER
11315 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11316 L:      platform-driver-x86@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/platform/x86/topstar-laptop.c
11319
11320 TOSHIBA ACPI EXTRAS DRIVER
11321 M:      Azael Avalos <coproscefalo@gmail.com>
11322 L:      platform-driver-x86@vger.kernel.org
11323 S:      Maintained
11324 F:      drivers/platform/x86/toshiba_acpi.c
11325
11326 TOSHIBA BLUETOOTH DRIVER
11327 M:      Azael Avalos <coproscefalo@gmail.com>
11328 L:      platform-driver-x86@vger.kernel.org
11329 S:      Maintained
11330 F:      drivers/platform/x86/toshiba_bluetooth.c
11331
11332 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11333 M:      Azael Avalos <coproscefalo@gmail.com>
11334 L:      platform-driver-x86@vger.kernel.org
11335 S:      Maintained
11336 F:      drivers/platform/x86/toshiba_haps.c
11337
11338 TOSHIBA WMI HOTKEYS DRIVER
11339 M:      Azael Avalos <coproscefalo@gmail.com>
11340 L:      platform-driver-x86@vger.kernel.org
11341 S:      Maintained
11342 F:      drivers/platform/x86/toshiba-wmi.c
11343
11344 TOSHIBA SMM DRIVER
11345 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11346 W:      http://www.buzzard.org.uk/toshiba/
11347 S:      Maintained
11348 F:      drivers/char/toshiba.c
11349 F:      include/linux/toshiba.h
11350 F:      include/uapi/linux/toshiba.h
11351
11352 TOSHIBA TC358743 DRIVER
11353 M:      Mats Randgaard <matrandg@cisco.com>
11354 L:      linux-media@vger.kernel.org
11355 S:      Maintained
11356 F:      drivers/media/i2c/tc358743*
11357 F:      include/media/i2c/tc358743.h
11358
11359 TMIO/SDHI MMC DRIVER
11360 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
11361 L:      linux-mmc@vger.kernel.org
11362 S:      Supported
11363 F:      drivers/mmc/host/tmio_mmc*
11364 F:      drivers/mmc/host/sh_mobile_sdhi.c
11365 F:      include/linux/mfd/tmio.h
11366
11367 TMP401 HARDWARE MONITOR DRIVER
11368 M:      Guenter Roeck <linux@roeck-us.net>
11369 L:      linux-hwmon@vger.kernel.org
11370 S:      Maintained
11371 F:      Documentation/hwmon/tmp401
11372 F:      drivers/hwmon/tmp401.c
11373
11374 TMPFS (SHMEM FILESYSTEM)
11375 M:      Hugh Dickins <hughd@google.com>
11376 L:      linux-mm@kvack.org
11377 S:      Maintained
11378 F:      include/linux/shmem_fs.h
11379 F:      mm/shmem.c
11380
11381 TM6000 VIDEO4LINUX DRIVER
11382 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11383 L:      linux-media@vger.kernel.org
11384 W:      https://linuxtv.org
11385 T:      git git://linuxtv.org/media_tree.git
11386 S:      Odd fixes
11387 F:      drivers/media/usb/tm6000/
11388
11389 TW68 VIDEO4LINUX DRIVER
11390 M:      Hans Verkuil <hverkuil@xs4all.nl>
11391 L:      linux-media@vger.kernel.org
11392 T:      git git://linuxtv.org/media_tree.git
11393 W:      https://linuxtv.org
11394 S:      Odd Fixes
11395 F:      drivers/media/pci/tw68/
11396
11397 TW686X VIDEO4LINUX DRIVER
11398 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
11399 L:      linux-media@vger.kernel.org
11400 T:      git git://linuxtv.org/media_tree.git
11401 W:      http://linuxtv.org
11402 S:      Maintained
11403 F:      drivers/media/pci/tw686x/
11404
11405 TPM DEVICE DRIVER
11406 M:      Peter Huewe <peterhuewe@gmx.de>
11407 M:      Marcel Selhorst <tpmdd@selhorst.net>
11408 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11409 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11410 W:      http://tpmdd.sourceforge.net
11411 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11412 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11413 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11414 S:      Maintained
11415 F:      drivers/char/tpm/
11416
11417 TPM IBM_VTPM DEVICE DRIVER
11418 M:      Ashley Lai <ashleydlai@gmail.com>
11419 W:      http://tpmdd.sourceforge.net
11420 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11421 S:      Maintained
11422 F:      drivers/char/tpm/tpm_ibmvtpm*
11423
11424 TRACING
11425 M:      Steven Rostedt <rostedt@goodmis.org>
11426 M:      Ingo Molnar <mingo@redhat.com>
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11428 S:      Maintained
11429 F:      Documentation/trace/ftrace.txt
11430 F:      arch/*/*/*/ftrace.h
11431 F:      arch/*/kernel/ftrace.c
11432 F:      include/*/ftrace.h
11433 F:      include/linux/trace*.h
11434 F:      include/trace/
11435 F:      kernel/trace/
11436 F:      tools/testing/selftests/ftrace/
11437
11438 TRACING MMIO ACCESSES (MMIOTRACE)
11439 M:      Steven Rostedt <rostedt@goodmis.org>
11440 M:      Ingo Molnar <mingo@kernel.org>
11441 R:      Karol Herbst <karolherbst@gmail.com>
11442 R:      Pekka Paalanen <ppaalanen@gmail.com>
11443 S:      Maintained
11444 L:      linux-kernel@vger.kernel.org
11445 L:      nouveau@lists.freedesktop.org
11446 F:      kernel/trace/trace_mmiotrace.c
11447 F:      include/linux/mmiotrace.h
11448 F:      arch/x86/mm/kmmio.c
11449 F:      arch/x86/mm/mmio-mod.c
11450 F:      arch/x86/mm/testmmiotrace.c
11451
11452 TRIVIAL PATCHES
11453 M:      Jiri Kosina <trivial@kernel.org>
11454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11455 S:      Maintained
11456 K:      ^Subject:.*(?i)trivial
11457
11458 TTY LAYER
11459 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11460 M:      Jiri Slaby <jslaby@suse.com>
11461 S:      Supported
11462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11463 F:      Documentation/serial/
11464 F:      drivers/tty/
11465 F:      drivers/tty/serial/serial_core.c
11466 F:      include/linux/serial_core.h
11467 F:      include/linux/serial.h
11468 F:      include/linux/tty.h
11469 F:      include/uapi/linux/serial_core.h
11470 F:      include/uapi/linux/serial.h
11471 F:      include/uapi/linux/tty.h
11472
11473 TUA9001 MEDIA DRIVER
11474 M:      Antti Palosaari <crope@iki.fi>
11475 L:      linux-media@vger.kernel.org
11476 W:      https://linuxtv.org
11477 W:      http://palosaari.fi/linux/
11478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11479 T:      git git://linuxtv.org/anttip/media_tree.git
11480 S:      Maintained
11481 F:      drivers/media/tuners/tua9001*
11482
11483 TULIP NETWORK DRIVERS
11484 L:      netdev@vger.kernel.org
11485 L:      linux-parisc@vger.kernel.org
11486 S:      Orphan
11487 F:      drivers/net/ethernet/dec/tulip/
11488
11489 TUN/TAP driver
11490 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11491 W:      http://vtun.sourceforge.net/tun
11492 S:      Maintained
11493 F:      Documentation/networking/tuntap.txt
11494 F:      arch/um/os-Linux/drivers/
11495
11496 TURBOCHANNEL SUBSYSTEM
11497 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11498 M:      Ralf Baechle <ralf@linux-mips.org>
11499 L:      linux-mips@linux-mips.org
11500 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11501 S:      Maintained
11502 F:      drivers/tc/
11503 F:      include/linux/tc.h
11504
11505 U14-34F SCSI DRIVER
11506 M:      Dario Ballabio <ballabio_dario@emc.com>
11507 L:      linux-scsi@vger.kernel.org
11508 S:      Maintained
11509 F:      drivers/scsi/u14-34f.c
11510
11511 UBI FILE SYSTEM (UBIFS)
11512 M:      Richard Weinberger <richard@nod.at>
11513 M:      Artem Bityutskiy <dedekind1@gmail.com>
11514 M:      Adrian Hunter <adrian.hunter@intel.com>
11515 L:      linux-mtd@lists.infradead.org
11516 T:      git git://git.infradead.org/ubifs-2.6.git
11517 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11518 S:      Supported
11519 F:      Documentation/filesystems/ubifs.txt
11520 F:      fs/ubifs/
11521
11522 UCLINUX (M68KNOMMU AND COLDFIRE)
11523 M:      Greg Ungerer <gerg@linux-m68k.org>
11524 W:      http://www.linux-m68k.org/
11525 W:      http://www.uclinux.org/
11526 L:      linux-m68k@lists.linux-m68k.org
11527 L:      uclinux-dev@uclinux.org  (subscribers-only)
11528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11529 S:      Maintained
11530 F:      arch/m68k/coldfire/
11531 F:      arch/m68k/68*/
11532 F:      arch/m68k/*/*_no.*
11533 F:      arch/m68k/include/asm/*_no.*
11534
11535 UDF FILESYSTEM
11536 M:      Jan Kara <jack@suse.com>
11537 S:      Maintained
11538 F:      Documentation/filesystems/udf.txt
11539 F:      fs/udf/
11540
11541 UFS FILESYSTEM
11542 M:      Evgeniy Dushistov <dushistov@mail.ru>
11543 S:      Maintained
11544 F:      Documentation/filesystems/ufs.txt
11545 F:      fs/ufs/
11546
11547 UHID USERSPACE HID IO DRIVER:
11548 M:      David Herrmann <dh.herrmann@googlemail.com>
11549 L:      linux-input@vger.kernel.org
11550 S:      Maintained
11551 F:      drivers/hid/uhid.c
11552 F:      include/uapi/linux/uhid.h
11553
11554 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11555 L:      linux-usb@vger.kernel.org
11556 S:      Orphan
11557 F:      drivers/uwb/
11558 F:      include/linux/uwb.h
11559 F:      include/linux/uwb/
11560
11561 UNICORE32 ARCHITECTURE:
11562 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11563 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11564 S:      Maintained
11565 T:      git git://github.com/gxt/linux.git
11566 F:      arch/unicore32/
11567
11568 UNIFDEF
11569 M:      Tony Finch <dot@dotat.at>
11570 W:      http://dotat.at/prog/unifdef
11571 S:      Maintained
11572 F:      scripts/unifdef.c
11573
11574 UNIFORM CDROM DRIVER
11575 M:      Jens Axboe <axboe@kernel.dk>
11576 W:      http://www.kernel.dk
11577 S:      Maintained
11578 F:      Documentation/cdrom/
11579 F:      drivers/cdrom/cdrom.c
11580 F:      include/linux/cdrom.h
11581 F:      include/uapi/linux/cdrom.h
11582
11583 UNISYS S-PAR DRIVERS
11584 M:      David Kershner <david.kershner@unisys.com>
11585 L:      sparmaintainer@unisys.com (Unisys internal)
11586 S:      Supported
11587 F:      drivers/staging/unisys/
11588
11589 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11590 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11591 L:      linux-scsi@vger.kernel.org
11592 S:      Supported
11593 F:      Documentation/scsi/ufs.txt
11594 F:      drivers/scsi/ufs/
11595
11596 UNSORTED BLOCK IMAGES (UBI)
11597 M:      Artem Bityutskiy <dedekind1@gmail.com>
11598 M:      Richard Weinberger <richard@nod.at>
11599 W:      http://www.linux-mtd.infradead.org/
11600 L:      linux-mtd@lists.infradead.org
11601 T:      git git://git.infradead.org/ubifs-2.6.git
11602 S:      Supported
11603 F:      drivers/mtd/ubi/
11604 F:      include/linux/mtd/ubi.h
11605 F:      include/uapi/mtd/ubi-user.h
11606
11607 USB ACM DRIVER
11608 M:      Oliver Neukum <oneukum@suse.com>
11609 L:      linux-usb@vger.kernel.org
11610 S:      Maintained
11611 F:      Documentation/usb/acm.txt
11612 F:      drivers/usb/class/cdc-acm.*
11613
11614 USB AR5523 WIRELESS DRIVER
11615 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11616 L:      linux-wireless@vger.kernel.org
11617 S:      Maintained
11618 F:      drivers/net/wireless/ath/ar5523/
11619
11620 USB ATTACHED SCSI
11621 M:      Hans de Goede <hdegoede@redhat.com>
11622 M:      Gerd Hoffmann <kraxel@redhat.com>
11623 L:      linux-usb@vger.kernel.org
11624 L:      linux-scsi@vger.kernel.org
11625 S:      Maintained
11626 F:      drivers/usb/storage/uas.c
11627
11628 USB CDC ETHERNET DRIVER
11629 M:      Oliver Neukum <oliver@neukum.org>
11630 L:      linux-usb@vger.kernel.org
11631 S:      Maintained
11632 F:      drivers/net/usb/cdc_*.c
11633 F:      include/uapi/linux/usb/cdc.h
11634
11635 USB CHAOSKEY DRIVER
11636 M:      Keith Packard <keithp@keithp.com>
11637 L:      linux-usb@vger.kernel.org
11638 S:      Maintained
11639 F:      drivers/usb/misc/chaoskey.c
11640
11641 USB CYPRESS C67X00 DRIVER
11642 M:      Peter Korsgaard <jacmet@sunsite.dk>
11643 L:      linux-usb@vger.kernel.org
11644 S:      Maintained
11645 F:      drivers/usb/c67x00/
11646
11647 USB DAVICOM DM9601 DRIVER
11648 M:      Peter Korsgaard <jacmet@sunsite.dk>
11649 L:      netdev@vger.kernel.org
11650 W:      http://www.linux-usb.org/usbnet
11651 S:      Maintained
11652 F:      drivers/net/usb/dm9601.c
11653
11654 USB DIAMOND RIO500 DRIVER
11655 M:      Cesar Miquel <miquel@df.uba.ar>
11656 L:      rio500-users@lists.sourceforge.net
11657 W:      http://rio500.sourceforge.net
11658 S:      Maintained
11659 F:      drivers/usb/misc/rio500*
11660
11661 USB EHCI DRIVER
11662 M:      Alan Stern <stern@rowland.harvard.edu>
11663 L:      linux-usb@vger.kernel.org
11664 S:      Maintained
11665 F:      Documentation/usb/ehci.txt
11666 F:      drivers/usb/host/ehci*
11667
11668 USB GADGET/PERIPHERAL SUBSYSTEM
11669 M:      Felipe Balbi <balbi@kernel.org>
11670 L:      linux-usb@vger.kernel.org
11671 W:      http://www.linux-usb.org/gadget
11672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11673 S:      Maintained
11674 F:      drivers/usb/gadget/
11675 F:      include/linux/usb/gadget*
11676
11677 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11678 M:      Jiri Kosina <jikos@kernel.org>
11679 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11680 L:      linux-usb@vger.kernel.org
11681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11682 S:      Maintained
11683 F:      Documentation/hid/hiddev.txt
11684 F:      drivers/hid/usbhid/
11685
11686 USB ISP116X DRIVER
11687 M:      Olav Kongas <ok@artecdesign.ee>
11688 L:      linux-usb@vger.kernel.org
11689 S:      Maintained
11690 F:      drivers/usb/host/isp116x*
11691 F:      include/linux/usb/isp116x.h
11692
11693 USB LAN78XX ETHERNET DRIVER
11694 M:      Woojung Huh <woojung.huh@microchip.com>
11695 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11696 L:      netdev@vger.kernel.org
11697 S:      Maintained
11698 F:      drivers/net/usb/lan78xx.*
11699
11700 USB MASS STORAGE DRIVER
11701 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11702 L:      linux-usb@vger.kernel.org
11703 L:      usb-storage@lists.one-eyed-alien.net
11704 S:      Maintained
11705 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11706 F:      drivers/usb/storage/
11707
11708 USB MIDI DRIVER
11709 M:      Clemens Ladisch <clemens@ladisch.de>
11710 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11711 T:      git git://git.alsa-project.org/alsa-kernel.git
11712 S:      Maintained
11713 F:      sound/usb/midi.*
11714
11715 USB NETWORKING DRIVERS
11716 L:      linux-usb@vger.kernel.org
11717 S:      Odd Fixes
11718 F:      drivers/net/usb/
11719
11720 USB OHCI DRIVER
11721 M:      Alan Stern <stern@rowland.harvard.edu>
11722 L:      linux-usb@vger.kernel.org
11723 S:      Maintained
11724 F:      Documentation/usb/ohci.txt
11725 F:      drivers/usb/host/ohci*
11726
11727 USB OTG FSM (Finite State Machine)
11728 M:      Peter Chen <Peter.Chen@nxp.com>
11729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11730 L:      linux-usb@vger.kernel.org
11731 S:      Maintained
11732 F:      drivers/usb/common/usb-otg-fsm.c
11733
11734 USB OVER IP DRIVER
11735 M:      Valentina Manea <valentina.manea.m@gmail.com>
11736 M:      Shuah Khan <shuah.kh@samsung.com>
11737 L:      linux-usb@vger.kernel.org
11738 S:      Maintained
11739 F:      Documentation/usb/usbip_protocol.txt
11740 F:      drivers/usb/usbip/
11741 F:      tools/usb/usbip/
11742
11743 USB PEGASUS DRIVER
11744 M:      Petko Manolov <petkan@nucleusys.com>
11745 L:      linux-usb@vger.kernel.org
11746 L:      netdev@vger.kernel.org
11747 T:      git git://github.com/petkan/pegasus.git
11748 W:      https://github.com/petkan/pegasus
11749 S:      Maintained
11750 F:      drivers/net/usb/pegasus.*
11751
11752 USB PHY LAYER
11753 M:      Felipe Balbi <balbi@kernel.org>
11754 L:      linux-usb@vger.kernel.org
11755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11756 S:      Maintained
11757 F:      drivers/usb/phy/
11758
11759 USB PRINTER DRIVER (usblp)
11760 M:      Pete Zaitcev <zaitcev@redhat.com>
11761 L:      linux-usb@vger.kernel.org
11762 S:      Supported
11763 F:      drivers/usb/class/usblp.c
11764
11765 USB QMI WWAN NETWORK DRIVER
11766 M:      Bjørn Mork <bjorn@mork.no>
11767 L:      netdev@vger.kernel.org
11768 S:      Maintained
11769 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11770 F:      drivers/net/usb/qmi_wwan.c
11771
11772 USB RTL8150 DRIVER
11773 M:      Petko Manolov <petkan@nucleusys.com>
11774 L:      linux-usb@vger.kernel.org
11775 L:      netdev@vger.kernel.org
11776 T:      git git://github.com/petkan/rtl8150.git
11777 W:      https://github.com/petkan/rtl8150
11778 S:      Maintained
11779 F:      drivers/net/usb/rtl8150.c
11780
11781 USB SERIAL SUBSYSTEM
11782 M:      Johan Hovold <johan@kernel.org>
11783 L:      linux-usb@vger.kernel.org
11784 S:      Maintained
11785 F:      Documentation/usb/usb-serial.txt
11786 F:      drivers/usb/serial/
11787 F:      include/linux/usb/serial.h
11788
11789 USB SMSC75XX ETHERNET DRIVER
11790 M:      Steve Glendinning <steve.glendinning@shawell.net>
11791 L:      netdev@vger.kernel.org
11792 S:      Maintained
11793 F:      drivers/net/usb/smsc75xx.*
11794
11795 USB SMSC95XX ETHERNET DRIVER
11796 M:      Steve Glendinning <steve.glendinning@shawell.net>
11797 L:      netdev@vger.kernel.org
11798 S:      Maintained
11799 F:      drivers/net/usb/smsc95xx.*
11800
11801 USB SUBSYSTEM
11802 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11803 L:      linux-usb@vger.kernel.org
11804 W:      http://www.linux-usb.org
11805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11806 S:      Supported
11807 F:      Documentation/usb/
11808 F:      drivers/usb/
11809 F:      include/linux/usb.h
11810 F:      include/linux/usb/
11811
11812 USB UHCI DRIVER
11813 M:      Alan Stern <stern@rowland.harvard.edu>
11814 L:      linux-usb@vger.kernel.org
11815 S:      Maintained
11816 F:      drivers/usb/host/uhci*
11817
11818 USB "USBNET" DRIVER FRAMEWORK
11819 M:      Oliver Neukum <oneukum@suse.com>
11820 L:      netdev@vger.kernel.org
11821 W:      http://www.linux-usb.org/usbnet
11822 S:      Maintained
11823 F:      drivers/net/usb/usbnet.c
11824 F:      include/linux/usb/usbnet.h
11825
11826 USB VIDEO CLASS
11827 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11828 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11829 L:      linux-media@vger.kernel.org
11830 T:      git git://linuxtv.org/media_tree.git
11831 W:      http://www.ideasonboard.org/uvc/
11832 S:      Maintained
11833 F:      drivers/media/usb/uvc/
11834 F:      include/uapi/linux/uvcvideo.h
11835
11836 USB VISION DRIVER
11837 M:      Hans Verkuil <hverkuil@xs4all.nl>
11838 L:      linux-media@vger.kernel.org
11839 T:      git git://linuxtv.org/media_tree.git
11840 W:      https://linuxtv.org
11841 S:      Odd Fixes
11842 F:      drivers/media/usb/usbvision/
11843
11844 USB WEBCAM GADGET
11845 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11846 L:      linux-usb@vger.kernel.org
11847 S:      Maintained
11848 F:      drivers/usb/gadget/function/*uvc*
11849 F:      drivers/usb/gadget/legacy/webcam.c
11850
11851 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11852 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11853 L:      linux-wireless@vger.kernel.org
11854 S:      Maintained
11855 F:      drivers/net/wireless/rndis_wlan.c
11856
11857 USB XHCI DRIVER
11858 M:      Mathias Nyman <mathias.nyman@intel.com>
11859 L:      linux-usb@vger.kernel.org
11860 S:      Supported
11861 F:      drivers/usb/host/xhci*
11862 F:      drivers/usb/host/pci-quirks*
11863
11864 USB ZD1201 DRIVER
11865 L:      linux-wireless@vger.kernel.org
11866 W:      http://linux-lc100020.sourceforge.net
11867 S:      Orphan
11868 F:      drivers/net/wireless/zydas/zd1201.*
11869
11870 USB ZR364XX DRIVER
11871 M:      Antoine Jacquet <royale@zerezo.com>
11872 L:      linux-usb@vger.kernel.org
11873 L:      linux-media@vger.kernel.org
11874 T:      git git://linuxtv.org/media_tree.git
11875 W:      http://royale.zerezo.com/zr364xx/
11876 S:      Maintained
11877 F:      Documentation/video4linux/zr364xx.txt
11878 F:      drivers/media/usb/zr364xx/
11879
11880 ULPI BUS
11881 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11882 L:      linux-usb@vger.kernel.org
11883 S:      Maintained
11884 F:      drivers/usb/common/ulpi.c
11885 F:      include/linux/ulpi/
11886
11887 USER-MODE LINUX (UML)
11888 M:      Jeff Dike <jdike@addtoit.com>
11889 M:      Richard Weinberger <richard@nod.at>
11890 L:      user-mode-linux-devel@lists.sourceforge.net
11891 L:      user-mode-linux-user@lists.sourceforge.net
11892 W:      http://user-mode-linux.sourceforge.net
11893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11894 S:      Maintained
11895 F:      Documentation/virtual/uml/
11896 F:      arch/um/
11897 F:      arch/x86/um/
11898 F:      fs/hostfs/
11899 F:      fs/hppfs/
11900
11901 USERSPACE I/O (UIO)
11902 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11903 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11904 S:      Maintained
11905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11906 F:      Documentation/DocBook/uio-howto.tmpl
11907 F:      drivers/uio/
11908 F:      include/linux/uio*.h
11909
11910 UTIL-LINUX PACKAGE
11911 M:      Karel Zak <kzak@redhat.com>
11912 L:      util-linux@vger.kernel.org
11913 W:      http://en.wikipedia.org/wiki/Util-linux
11914 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11915 S:      Maintained
11916
11917 UVESAFB DRIVER
11918 M:      Michal Januszewski <spock@gentoo.org>
11919 L:      linux-fbdev@vger.kernel.org
11920 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11921 S:      Maintained
11922 F:      Documentation/fb/uvesafb.txt
11923 F:      drivers/video/fbdev/uvesafb.*
11924
11925 VF610 NAND DRIVER
11926 M:      Stefan Agner <stefan@agner.ch>
11927 L:      linux-mtd@lists.infradead.org
11928 S:      Supported
11929 F:      drivers/mtd/nand/vf610_nfc.c
11930
11931 VFAT/FAT/MSDOS FILESYSTEM
11932 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11933 S:      Maintained
11934 F:      Documentation/filesystems/vfat.txt
11935 F:      fs/fat/
11936
11937 VFIO DRIVER
11938 M:      Alex Williamson <alex.williamson@redhat.com>
11939 L:      kvm@vger.kernel.org
11940 T:      git git://github.com/awilliam/linux-vfio.git
11941 S:      Maintained
11942 F:      Documentation/vfio.txt
11943 F:      drivers/vfio/
11944 F:      include/linux/vfio.h
11945 F:      include/uapi/linux/vfio.h
11946
11947 VFIO PLATFORM DRIVER
11948 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11949 L:      kvm@vger.kernel.org
11950 S:      Maintained
11951 F:      drivers/vfio/platform/
11952
11953 VIDEOBUF2 FRAMEWORK
11954 M:      Pawel Osciak <pawel@osciak.com>
11955 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11956 M:      Kyungmin Park <kyungmin.park@samsung.com>
11957 L:      linux-media@vger.kernel.org
11958 S:      Maintained
11959 F:      drivers/media/v4l2-core/videobuf2-*
11960 F:      include/media/videobuf2-*
11961
11962 VIRTUAL SERIO DEVICE DRIVER
11963 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11964 S:      Maintained
11965 F:      drivers/input/serio/userio.c
11966 F:      include/uapi/linux/userio.h
11967
11968 VIRTIO CONSOLE DRIVER
11969 M:      Amit Shah <amit.shah@redhat.com>
11970 L:      virtualization@lists.linux-foundation.org
11971 S:      Maintained
11972 F:      drivers/char/virtio_console.c
11973 F:      include/linux/virtio_console.h
11974 F:      include/uapi/linux/virtio_console.h
11975
11976 VIRTIO CORE, NET AND BLOCK DRIVERS
11977 M:      "Michael S. Tsirkin" <mst@redhat.com>
11978 L:      virtualization@lists.linux-foundation.org
11979 S:      Maintained
11980 F:      drivers/virtio/
11981 F:      tools/virtio/
11982 F:      drivers/net/virtio_net.c
11983 F:      drivers/block/virtio_blk.c
11984 F:      include/linux/virtio_*.h
11985 F:      include/uapi/linux/virtio_*.h
11986
11987 VIRTIO DRIVERS FOR S390
11988 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11989 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11990 L:      linux-s390@vger.kernel.org
11991 L:      virtualization@lists.linux-foundation.org
11992 L:      kvm@vger.kernel.org
11993 S:      Supported
11994 F:      drivers/s390/virtio/
11995
11996 VIRTIO GPU DRIVER
11997 M:      David Airlie <airlied@linux.ie>
11998 M:      Gerd Hoffmann <kraxel@redhat.com>
11999 L:      dri-devel@lists.freedesktop.org
12000 L:      virtualization@lists.linux-foundation.org
12001 S:      Maintained
12002 F:      drivers/gpu/drm/virtio/
12003 F:      include/uapi/linux/virtio_gpu.h
12004
12005 VIRTIO HOST (VHOST)
12006 M:      "Michael S. Tsirkin" <mst@redhat.com>
12007 L:      kvm@vger.kernel.org
12008 L:      virtualization@lists.linux-foundation.org
12009 L:      netdev@vger.kernel.org
12010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12011 S:      Maintained
12012 F:      drivers/vhost/
12013 F:      include/uapi/linux/vhost.h
12014
12015 VIRTIO INPUT DRIVER
12016 M:      Gerd Hoffmann <kraxel@redhat.com>
12017 S:      Maintained
12018 F:      drivers/virtio/virtio_input.c
12019 F:      include/uapi/linux/virtio_input.h
12020
12021 VIA RHINE NETWORK DRIVER
12022 S:      Orphan
12023 F:      drivers/net/ethernet/via/via-rhine.c
12024
12025 VIA SD/MMC CARD CONTROLLER DRIVER
12026 M:      Bruce Chang <brucechang@via.com.tw>
12027 M:      Harald Welte <HaraldWelte@viatech.com>
12028 S:      Maintained
12029 F:      drivers/mmc/host/via-sdmmc.c
12030
12031 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12032 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12033 L:      linux-fbdev@vger.kernel.org
12034 S:      Maintained
12035 F:      include/linux/via-core.h
12036 F:      include/linux/via-gpio.h
12037 F:      include/linux/via_i2c.h
12038 F:      drivers/video/fbdev/via/
12039
12040 VIA VELOCITY NETWORK DRIVER
12041 M:      Francois Romieu <romieu@fr.zoreil.com>
12042 L:      netdev@vger.kernel.org
12043 S:      Maintained
12044 F:      drivers/net/ethernet/via/via-velocity.*
12045
12046 VIRT LIB
12047 M:      Alex Williamson <alex.williamson@redhat.com>
12048 M:      Paolo Bonzini <pbonzini@redhat.com>
12049 L:      kvm@vger.kernel.org
12050 S:      Supported
12051 F:      virt/lib/
12052
12053 VIVID VIRTUAL VIDEO DRIVER
12054 M:      Hans Verkuil <hverkuil@xs4all.nl>
12055 L:      linux-media@vger.kernel.org
12056 T:      git git://linuxtv.org/media_tree.git
12057 W:      https://linuxtv.org
12058 S:      Maintained
12059 F:      drivers/media/platform/vivid/*
12060
12061 VLAN (802.1Q)
12062 M:      Patrick McHardy <kaber@trash.net>
12063 L:      netdev@vger.kernel.org
12064 S:      Maintained
12065 F:      drivers/net/macvlan.c
12066 F:      include/linux/if_*vlan.h
12067 F:      net/8021q/
12068
12069 VLYNQ BUS
12070 M:      Florian Fainelli <florian@openwrt.org>
12071 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12072 S:      Maintained
12073 F:      drivers/vlynq/vlynq.c
12074 F:      include/linux/vlynq.h
12075
12076 VME SUBSYSTEM
12077 M:      Martyn Welch <martyn@welchs.me.uk>
12078 M:      Manohar Vanga <manohar.vanga@gmail.com>
12079 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12080 L:      devel@driverdev.osuosl.org
12081 S:      Maintained
12082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12083 F:      Documentation/vme_api.txt
12084 F:      drivers/staging/vme/
12085 F:      drivers/vme/
12086 F:      include/linux/vme*
12087
12088 VMWARE HYPERVISOR INTERFACE
12089 M:      Alok Kataria <akataria@vmware.com>
12090 L:      virtualization@lists.linux-foundation.org
12091 S:      Supported
12092 F:      arch/x86/kernel/cpu/vmware.c
12093
12094 VMWARE BALLOON DRIVER
12095 M:      Xavier Deguillard <xdeguillard@vmware.com>
12096 M:      Philip Moltmann <moltmann@vmware.com>
12097 M:      "VMware, Inc." <pv-drivers@vmware.com>
12098 L:      linux-kernel@vger.kernel.org
12099 S:      Maintained
12100 F:      drivers/misc/vmw_balloon.c
12101
12102 VMWARE VMMOUSE SUBDRIVER
12103 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12104 M:      "VMware, Inc." <pv-drivers@vmware.com>
12105 L:      linux-input@vger.kernel.org
12106 S:      Maintained
12107 F:      drivers/input/mouse/vmmouse.c
12108 F:      drivers/input/mouse/vmmouse.h
12109
12110 VMWARE VMXNET3 ETHERNET DRIVER
12111 M:      Shrikrishna Khare <skhare@vmware.com>
12112 M:      "VMware, Inc." <pv-drivers@vmware.com>
12113 L:      netdev@vger.kernel.org
12114 S:      Maintained
12115 F:      drivers/net/vmxnet3/
12116
12117 VMware PVSCSI driver
12118 M:      Arvind Kumar <arvindkumar@vmware.com>
12119 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12120 L:      linux-scsi@vger.kernel.org
12121 S:      Maintained
12122 F:      drivers/scsi/vmw_pvscsi.c
12123 F:      drivers/scsi/vmw_pvscsi.h
12124
12125 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12126 M:      Liam Girdwood <lgirdwood@gmail.com>
12127 M:      Mark Brown <broonie@kernel.org>
12128 L:      linux-kernel@vger.kernel.org
12129 W:      http://www.slimlogic.co.uk/?p=48
12130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12131 S:      Supported
12132 F:      Documentation/devicetree/bindings/regulator/
12133 F:      drivers/regulator/
12134 F:      include/dt-bindings/regulator/
12135 F:      include/linux/regulator/
12136
12137 VRF
12138 M:      David Ahern <dsa@cumulusnetworks.com>
12139 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
12140 L:      netdev@vger.kernel.org
12141 S:      Maintained
12142 F:      drivers/net/vrf.c
12143 F:      Documentation/networking/vrf.txt
12144
12145 VT1211 HARDWARE MONITOR DRIVER
12146 M:      Juerg Haefliger <juergh@gmail.com>
12147 L:      linux-hwmon@vger.kernel.org
12148 S:      Maintained
12149 F:      Documentation/hwmon/vt1211
12150 F:      drivers/hwmon/vt1211.c
12151
12152 VT8231 HARDWARE MONITOR DRIVER
12153 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
12154 L:      linux-hwmon@vger.kernel.org
12155 S:      Maintained
12156 F:      drivers/hwmon/vt8231.c
12157
12158 VUB300 USB to SDIO/SD/MMC bridge chip
12159 M:      Tony Olech <tony.olech@elandigitalsystems.com>
12160 L:      linux-mmc@vger.kernel.org
12161 L:      linux-usb@vger.kernel.org
12162 S:      Supported
12163 F:      drivers/mmc/host/vub300.c
12164
12165 W1 DALLAS'S 1-WIRE BUS
12166 M:      Evgeniy Polyakov <zbr@ioremap.net>
12167 S:      Maintained
12168 F:      Documentation/w1/
12169 F:      drivers/w1/
12170
12171 W83791D HARDWARE MONITORING DRIVER
12172 M:      Marc Hulsman <m.hulsman@tudelft.nl>
12173 L:      linux-hwmon@vger.kernel.org
12174 S:      Maintained
12175 F:      Documentation/hwmon/w83791d
12176 F:      drivers/hwmon/w83791d.c
12177
12178 W83793 HARDWARE MONITORING DRIVER
12179 M:      Rudolf Marek <r.marek@assembler.cz>
12180 L:      linux-hwmon@vger.kernel.org
12181 S:      Maintained
12182 F:      Documentation/hwmon/w83793
12183 F:      drivers/hwmon/w83793.c
12184
12185 W83795 HARDWARE MONITORING DRIVER
12186 M:      Jean Delvare <jdelvare@suse.com>
12187 L:      linux-hwmon@vger.kernel.org
12188 S:      Maintained
12189 F:      drivers/hwmon/w83795.c
12190
12191 W83L51xD SD/MMC CARD INTERFACE DRIVER
12192 M:      Pierre Ossman <pierre@ossman.eu>
12193 S:      Maintained
12194 F:      drivers/mmc/host/wbsd.*
12195
12196 WACOM PROTOCOL 4 SERIAL TABLETS
12197 M:      Julian Squires <julian@cipht.net>
12198 M:      Hans de Goede <hdegoede@redhat.com>
12199 L:      linux-input@vger.kernel.org
12200 S:      Maintained
12201 F:      drivers/input/tablet/wacom_serial4.c
12202
12203 WATCHDOG DEVICE DRIVERS
12204 M:      Wim Van Sebroeck <wim@iguana.be>
12205 R:      Guenter Roeck <linux@roeck-us.net>
12206 L:      linux-watchdog@vger.kernel.org
12207 W:      http://www.linux-watchdog.org/
12208 T:      git git://www.linux-watchdog.org/linux-watchdog.git
12209 S:      Maintained
12210 F:      Documentation/watchdog/
12211 F:      drivers/watchdog/
12212 F:      include/linux/watchdog.h
12213 F:      include/uapi/linux/watchdog.h
12214
12215 WD7000 SCSI DRIVER
12216 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
12217 L:      linux-scsi@vger.kernel.org
12218 S:      Maintained
12219 F:      drivers/scsi/wd7000.c
12220
12221 WIIMOTE HID DRIVER
12222 M:      David Herrmann <dh.herrmann@googlemail.com>
12223 L:      linux-input@vger.kernel.org
12224 S:      Maintained
12225 F:      drivers/hid/hid-wiimote*
12226
12227 WINBOND CIR DRIVER
12228 M:      David Härdeman <david@hardeman.nu>
12229 S:      Maintained
12230 F:      drivers/media/rc/winbond-cir.c
12231
12232 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12233 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12234 L:      linux-watchdog@vger.kernel.org
12235 S:      Maintained
12236 F:      drivers/watchdog/ebc-c384_wdt.c
12237
12238 WINSYSTEMS WS16C48 GPIO DRIVER
12239 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12240 L:      linux-gpio@vger.kernel.org
12241 S:      Maintained
12242 F:      drivers/gpio/gpio-ws16c48.c
12243
12244 WIMAX STACK
12245 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
12246 M:      linux-wimax@intel.com
12247 L:      wimax@linuxwimax.org (subscribers-only)
12248 S:      Supported
12249 W:      http://linuxwimax.org
12250 F:      Documentation/wimax/README.wimax
12251 F:      include/linux/wimax/debug.h
12252 F:      include/net/wimax.h
12253 F:      include/uapi/linux/wimax.h
12254 F:      net/wimax/
12255
12256 WISTRON LAPTOP BUTTON DRIVER
12257 M:      Miloslav Trmac <mitr@volny.cz>
12258 S:      Maintained
12259 F:      drivers/input/misc/wistron_btns.c
12260
12261 WL3501 WIRELESS PCMCIA CARD DRIVER
12262 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
12263 L:      linux-wireless@vger.kernel.org
12264 W:      http://oops.ghostprotocols.net:81/blog
12265 S:      Maintained
12266 F:      drivers/net/wireless/wl3501*
12267
12268 WOLFSON MICROELECTRONICS DRIVERS
12269 L:      patches@opensource.wolfsonmicro.com
12270 T:      git https://github.com/CirrusLogic/linux-drivers.git
12271 W:      https://github.com/CirrusLogic/linux-drivers/wiki
12272 S:      Supported
12273 F:      Documentation/hwmon/wm83??
12274 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12275 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12276 F:      Documentation/devicetree/bindings/mfd/arizona.txt
12277 F:      arch/arm/mach-s3c64xx/mach-crag6410*
12278 F:      drivers/clk/clk-wm83*.c
12279 F:      drivers/extcon/extcon-arizona.c
12280 F:      drivers/leds/leds-wm83*.c
12281 F:      drivers/gpio/gpio-*wm*.c
12282 F:      drivers/gpio/gpio-arizona.c
12283 F:      drivers/hwmon/wm83??-hwmon.c
12284 F:      drivers/input/misc/wm831x-on.c
12285 F:      drivers/input/touchscreen/wm831x-ts.c
12286 F:      drivers/input/touchscreen/wm97*.c
12287 F:      drivers/mfd/arizona*
12288 F:      drivers/mfd/wm*.c
12289 F:      drivers/mfd/cs47l24*
12290 F:      drivers/power/wm83*.c
12291 F:      drivers/rtc/rtc-wm83*.c
12292 F:      drivers/regulator/wm8*.c
12293 F:      drivers/video/backlight/wm83*_bl.c
12294 F:      drivers/watchdog/wm83*_wdt.c
12295 F:      include/linux/mfd/arizona/
12296 F:      include/linux/mfd/wm831x/
12297 F:      include/linux/mfd/wm8350/
12298 F:      include/linux/mfd/wm8400*
12299 F:      include/linux/wm97xx.h
12300 F:      include/sound/wm????.h
12301 F:      sound/soc/codecs/arizona.?
12302 F:      sound/soc/codecs/wm*
12303 F:      sound/soc/codecs/cs47l24*
12304
12305 WORKQUEUE
12306 M:      Tejun Heo <tj@kernel.org>
12307 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12309 S:      Maintained
12310 F:      include/linux/workqueue.h
12311 F:      kernel/workqueue.c
12312 F:      Documentation/workqueue.txt
12313
12314 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
12315 M:      Chen-Yu Tsai <wens@csie.org>
12316 L:      linux-kernel@vger.kernel.org
12317 S:      Maintained
12318 N:      axp[128]
12319
12320 X.25 NETWORK LAYER
12321 M:      Andrew Hendry <andrew.hendry@gmail.com>
12322 L:      linux-x25@vger.kernel.org
12323 S:      Odd Fixes
12324 F:      Documentation/networking/x25*
12325 F:      include/net/x25*
12326 F:      net/x25/
12327
12328 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12329 M:      Thomas Gleixner <tglx@linutronix.de>
12330 M:      Ingo Molnar <mingo@redhat.com>
12331 M:      "H. Peter Anvin" <hpa@zytor.com>
12332 M:      x86@kernel.org
12333 L:      linux-kernel@vger.kernel.org
12334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12335 S:      Maintained
12336 F:      Documentation/x86/
12337 F:      arch/x86/
12338
12339 X86 PLATFORM DRIVERS
12340 M:      Darren Hart <dvhart@infradead.org>
12341 L:      platform-driver-x86@vger.kernel.org
12342 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12343 S:      Maintained
12344 F:      drivers/platform/x86/
12345 F:      drivers/platform/olpc/
12346
12347 X86 MCE INFRASTRUCTURE
12348 M:      Tony Luck <tony.luck@intel.com>
12349 M:      Borislav Petkov <bp@alien8.de>
12350 L:      linux-edac@vger.kernel.org
12351 S:      Maintained
12352 F:      arch/x86/kernel/cpu/mcheck/*
12353
12354 X86 MICROCODE UPDATE SUPPORT
12355 M:      Borislav Petkov <bp@alien8.de>
12356 S:      Maintained
12357 F:      arch/x86/kernel/cpu/microcode/*
12358
12359 X86 VDSO
12360 M:      Andy Lutomirski <luto@amacapital.net>
12361 L:      linux-kernel@vger.kernel.org
12362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12363 S:      Maintained
12364 F:      arch/x86/entry/vdso/
12365
12366 XC2028/3028 TUNER DRIVER
12367 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12368 L:      linux-media@vger.kernel.org
12369 W:      https://linuxtv.org
12370 T:      git git://linuxtv.org/media_tree.git
12371 S:      Maintained
12372 F:      drivers/media/tuners/tuner-xc2028.*
12373
12374 XEN HYPERVISOR INTERFACE
12375 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12376 M:      David Vrabel <david.vrabel@citrix.com>
12377 M:      Juergen Gross <jgross@suse.com>
12378 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12380 S:      Supported
12381 F:      arch/x86/xen/
12382 F:      drivers/*/xen-*front.c
12383 F:      drivers/xen/
12384 F:      arch/x86/include/asm/xen/
12385 F:      include/xen/
12386 F:      include/uapi/xen/
12387
12388 XEN HYPERVISOR ARM
12389 M:      Stefano Stabellini <sstabellini@kernel.org>
12390 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12391 S:      Maintained
12392 F:      arch/arm/xen/
12393 F:      arch/arm/include/asm/xen/
12394
12395 XEN HYPERVISOR ARM64
12396 M:      Stefano Stabellini <sstabellini@kernel.org>
12397 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12398 S:      Maintained
12399 F:      arch/arm64/xen/
12400 F:      arch/arm64/include/asm/xen/
12401
12402 XEN NETWORK BACKEND DRIVER
12403 M:      Wei Liu <wei.liu2@citrix.com>
12404 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12405 L:      netdev@vger.kernel.org
12406 S:      Supported
12407 F:      drivers/net/xen-netback/*
12408
12409 XEN PCI SUBSYSTEM
12410 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12411 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12412 S:      Supported
12413 F:      arch/x86/pci/*xen*
12414 F:      drivers/pci/*xen*
12415
12416 XEN BLOCK SUBSYSTEM
12417 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12418 M:      Roger Pau Monné <roger.pau@citrix.com>
12419 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12420 S:      Supported
12421 F:      drivers/block/xen-blkback/*
12422 F:      drivers/block/xen*
12423
12424 XEN PVSCSI DRIVERS
12425 M:      Juergen Gross <jgross@suse.com>
12426 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12427 L:      linux-scsi@vger.kernel.org
12428 S:      Supported
12429 F:      drivers/scsi/xen-scsifront.c
12430 F:      drivers/xen/xen-scsiback.c
12431 F:      include/xen/interface/io/vscsiif.h
12432
12433 XEN SWIOTLB SUBSYSTEM
12434 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12435 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12436 S:      Supported
12437 F:      arch/x86/xen/*swiotlb*
12438 F:      drivers/xen/*swiotlb*
12439
12440 XFS FILESYSTEM
12441 P:      Silicon Graphics Inc
12442 M:      Dave Chinner <david@fromorbit.com>
12443 M:      xfs@oss.sgi.com
12444 L:      xfs@oss.sgi.com
12445 W:      http://oss.sgi.com/projects/xfs
12446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12447 S:      Supported
12448 F:      Documentation/filesystems/xfs.txt
12449 F:      fs/xfs/
12450
12451 XILINX AXI ETHERNET DRIVER
12452 M:      Anirudha Sarangi <anirudh@xilinx.com>
12453 M:      John Linn <John.Linn@xilinx.com>
12454 S:      Maintained
12455 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12456
12457 XILINX UARTLITE SERIAL DRIVER
12458 M:      Peter Korsgaard <jacmet@sunsite.dk>
12459 L:      linux-serial@vger.kernel.org
12460 S:      Maintained
12461 F:      drivers/tty/serial/uartlite.c
12462
12463 XILINX VIDEO IP CORES
12464 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12465 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12466 L:      linux-media@vger.kernel.org
12467 T:      git git://linuxtv.org/media_tree.git
12468 S:      Supported
12469 F:      Documentation/devicetree/bindings/media/xilinx/
12470 F:      drivers/media/platform/xilinx/
12471 F:      include/uapi/linux/xilinx-v4l2-controls.h
12472
12473 XILLYBUS DRIVER
12474 M:      Eli Billauer <eli.billauer@gmail.com>
12475 L:      linux-kernel@vger.kernel.org
12476 S:      Supported
12477 F:      drivers/char/xillybus/
12478
12479 XTENSA XTFPGA PLATFORM SUPPORT
12480 M:      Max Filippov <jcmvbkbc@gmail.com>
12481 L:      linux-xtensa@linux-xtensa.org
12482 S:      Maintained
12483 F:      drivers/spi/spi-xtensa-xtfpga.c
12484 F:      sound/soc/xtensa/xtfpga-i2s.c
12485
12486 YAM DRIVER FOR AX.25
12487 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12488 L:      linux-hams@vger.kernel.org
12489 S:      Maintained
12490 F:      drivers/net/hamradio/yam*
12491 F:      include/linux/yam.h
12492
12493 YEALINK PHONE DRIVER
12494 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12495 L:      usbb2k-api-dev@nongnu.org
12496 S:      Maintained
12497 F:      Documentation/input/yealink.txt
12498 F:      drivers/input/misc/yealink.*
12499
12500 Z8530 DRIVER FOR AX.25
12501 M:      Joerg Reuter <jreuter@yaina.de>
12502 W:      http://yaina.de/jreuter/
12503 W:      http://www.qsl.net/dl1bke/
12504 L:      linux-hams@vger.kernel.org
12505 S:      Maintained
12506 F:      Documentation/networking/z8530drv.txt
12507 F:      drivers/net/hamradio/*scc.c
12508 F:      drivers/net/hamradio/z8530.h
12509
12510 ZBUD COMPRESSED PAGE ALLOCATOR
12511 M:      Seth Jennings <sjenning@redhat.com>
12512 L:      linux-mm@kvack.org
12513 S:      Maintained
12514 F:      mm/zbud.c
12515 F:      include/linux/zbud.h
12516
12517 ZD1211RW WIRELESS DRIVER
12518 M:      Daniel Drake <dsd@gentoo.org>
12519 M:      Ulrich Kunitz <kune@deine-taler.de>
12520 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12521 L:      linux-wireless@vger.kernel.org
12522 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12523 S:      Maintained
12524 F:      drivers/net/wireless/zydas/zd1211rw/
12525
12526 ZPOOL COMPRESSED PAGE STORAGE API
12527 M:      Dan Streetman <ddstreet@ieee.org>
12528 L:      linux-mm@kvack.org
12529 S:      Maintained
12530 F:      mm/zpool.c
12531 F:      include/linux/zpool.h
12532
12533 ZR36067 VIDEO FOR LINUX DRIVER
12534 L:      mjpeg-users@lists.sourceforge.net
12535 L:      linux-media@vger.kernel.org
12536 W:      http://mjpeg.sourceforge.net/driver-zoran/
12537 T:      hg https://linuxtv.org/hg/v4l-dvb
12538 S:      Odd Fixes
12539 F:      drivers/media/pci/zoran/
12540
12541 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12542 M:      Minchan Kim <minchan@kernel.org>
12543 M:      Nitin Gupta <ngupta@vflare.org>
12544 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12545 L:      linux-kernel@vger.kernel.org
12546 S:      Maintained
12547 F:      drivers/block/zram/
12548 F:      Documentation/blockdev/zram.txt
12549
12550 ZS DECSTATION Z85C30 SERIAL DRIVER
12551 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12552 S:      Maintained
12553 F:      drivers/tty/serial/zs.*
12554
12555 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12556 M:      Minchan Kim <minchan@kernel.org>
12557 M:      Nitin Gupta <ngupta@vflare.org>
12558 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12559 L:      linux-mm@kvack.org
12560 S:      Maintained
12561 F:      mm/zsmalloc.c
12562 F:      include/linux/zsmalloc.h
12563 F:      Documentation/vm/zsmalloc.txt
12564
12565 ZSWAP COMPRESSED SWAP CACHING
12566 M:      Seth Jennings <sjenning@redhat.com>
12567 L:      linux-mm@kvack.org
12568 S:      Maintained
12569 F:      mm/zswap.c
12570
12571 THE REST
12572 M:      Linus Torvalds <torvalds@linux-foundation.org>
12573 L:      linux-kernel@vger.kernel.org
12574 Q:      http://patchwork.kernel.org/project/LKML/list/
12575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12576 S:      Buried alive in reporters
12577 F:      *
12578 F:      */