Merge branch 'drm-hisilicon-next' of github.com:xin3liang/linux into drm-next
[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 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      https://linuxtv.org
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      include/linux/syscalls.h
227 F:      kernel/sys_ni.c
228
229 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
230 M:      Hans de Goede <hdegoede@redhat.com>
231 L:      linux-hwmon@vger.kernel.org
232 S:      Maintained
233 F:      drivers/hwmon/abituguru.c
234
235 ABIT UGURU 3 HARDWARE MONITOR DRIVER
236 M:      Alistair John Strachan <alistair@devzero.co.uk>
237 L:      linux-hwmon@vger.kernel.org
238 S:      Maintained
239 F:      drivers/hwmon/abituguru3.c
240
241 ACCES 104-DIO-48E GPIO DRIVER
242 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
243 L:      linux-gpio@vger.kernel.org
244 S:      Maintained
245 F:      drivers/gpio/gpio-104-dio-48e.c
246
247 ACCES 104-IDI-48 GPIO DRIVER
248 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
249 L:      linux-gpio@vger.kernel.org
250 S:      Maintained
251 F:      drivers/gpio/gpio-104-idi-48.c
252
253 ACCES 104-IDIO-16 GPIO DRIVER
254 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
255 L:      linux-gpio@vger.kernel.org
256 S:      Maintained
257 F:      drivers/gpio/gpio-104-idio-16.c
258
259 ACENIC DRIVER
260 M:      Jes Sorensen <jes@trained-monkey.org>
261 L:      linux-acenic@sunsite.dk
262 S:      Maintained
263 F:      drivers/net/ethernet/alteon/acenic*
264
265 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
266 M:      Peter Feuerer <peter@piie.net>
267 L:      platform-driver-x86@vger.kernel.org
268 W:      http://piie.net/?section=acerhdf
269 S:      Maintained
270 F:      drivers/platform/x86/acerhdf.c
271
272 ACER WMI LAPTOP EXTRAS
273 M:      "Lee, Chun-Yi" <jlee@suse.com>
274 L:      platform-driver-x86@vger.kernel.org
275 S:      Maintained
276 F:      drivers/platform/x86/acer-wmi.c
277
278 ACPI
279 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
280 M:      Len Brown <lenb@kernel.org>
281 L:      linux-acpi@vger.kernel.org
282 W:      https://01.org/linux-acpi
283 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
285 S:      Supported
286 F:      drivers/acpi/
287 F:      drivers/pnp/pnpacpi/
288 F:      include/linux/acpi.h
289 F:      include/acpi/
290 F:      Documentation/acpi/
291 F:      Documentation/ABI/testing/sysfs-bus-acpi
292 F:      drivers/pci/*acpi*
293 F:      drivers/pci/*/*acpi*
294 F:      drivers/pci/*/*/*acpi*
295 F:      tools/power/acpi/
296
297 ACPI COMPONENT ARCHITECTURE (ACPICA)
298 M:      Robert Moore <robert.moore@intel.com>
299 M:      Lv Zheng <lv.zheng@intel.com>
300 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
301 L:      linux-acpi@vger.kernel.org
302 L:      devel@acpica.org
303 W:      https://acpica.org/
304 W:      https://github.com/acpica/acpica/
305 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
307 S:      Supported
308 F:      drivers/acpi/acpica/
309 F:      include/acpi/
310 F:      tools/power/acpi/
311
312 ACPI FAN DRIVER
313 M:      Zhang Rui <rui.zhang@intel.com>
314 L:      linux-acpi@vger.kernel.org
315 W:      https://01.org/linux-acpi
316 S:      Supported
317 F:      drivers/acpi/fan.c
318
319 ACPI THERMAL DRIVER
320 M:      Zhang Rui <rui.zhang@intel.com>
321 L:      linux-acpi@vger.kernel.org
322 W:      https://01.org/linux-acpi
323 S:      Supported
324 F:      drivers/acpi/*thermal*
325
326 ACPI VIDEO DRIVER
327 M:      Zhang Rui <rui.zhang@intel.com>
328 L:      linux-acpi@vger.kernel.org
329 W:      https://01.org/linux-acpi
330 S:      Supported
331 F:      drivers/acpi/acpi_video.c
332
333 ACPI WMI DRIVER
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Orphan
336 F:      drivers/platform/x86/wmi.c
337
338 AD1889 ALSA SOUND DRIVER
339 M:      Thibaut Varene <T-Bone@parisc-linux.org>
340 W:      http://wiki.parisc-linux.org/AD1889
341 L:      linux-parisc@vger.kernel.org
342 S:      Maintained
343 F:      sound/pci/ad1889.*
344
345 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
346 M:      Michael Hennerich <michael.hennerich@analog.com>
347 W:      http://wiki.analog.com/AD5254
348 W:      http://ez.analog.com/community/linux-device-drivers
349 S:      Supported
350 F:      drivers/misc/ad525x_dpot.c
351
352 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
353 M:      Michael Hennerich <michael.hennerich@analog.com>
354 W:      http://wiki.analog.com/AD5398
355 W:      http://ez.analog.com/community/linux-device-drivers
356 S:      Supported
357 F:      drivers/regulator/ad5398.c
358
359 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
360 M:      Michael Hennerich <michael.hennerich@analog.com>
361 W:      http://wiki.analog.com/AD7142
362 W:      http://ez.analog.com/community/linux-device-drivers
363 S:      Supported
364 F:      drivers/input/misc/ad714x.c
365
366 AD7877 TOUCHSCREEN DRIVER
367 M:      Michael Hennerich <michael.hennerich@analog.com>
368 W:      http://wiki.analog.com/AD7877
369 W:      http://ez.analog.com/community/linux-device-drivers
370 S:      Supported
371 F:      drivers/input/touchscreen/ad7877.c
372
373 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
374 M:      Michael Hennerich <michael.hennerich@analog.com>
375 W:      http://wiki.analog.com/AD7879
376 W:      http://ez.analog.com/community/linux-device-drivers
377 S:      Supported
378 F:      drivers/input/touchscreen/ad7879.c
379
380 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
381 M:      Jiri Kosina <jikos@kernel.org>
382 S:      Maintained
383
384 ADF7242 IEEE 802.15.4 RADIO DRIVER
385 M:      Michael Hennerich <michael.hennerich@analog.com>
386 W:      https://wiki.analog.com/ADF7242
387 W:      http://ez.analog.com/community/linux-device-drivers
388 L:      linux-wpan@vger.kernel.org
389 S:      Supported
390 F:      drivers/net/ieee802154/adf7242.c
391 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
392
393 ADM1025 HARDWARE MONITOR DRIVER
394 M:      Jean Delvare <jdelvare@suse.com>
395 L:      linux-hwmon@vger.kernel.org
396 S:      Maintained
397 F:      Documentation/hwmon/adm1025
398 F:      drivers/hwmon/adm1025.c
399
400 ADM1029 HARDWARE MONITOR DRIVER
401 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
402 L:      linux-hwmon@vger.kernel.org
403 S:      Maintained
404 F:      drivers/hwmon/adm1029.c
405
406 ADM8211 WIRELESS DRIVER
407 L:      linux-wireless@vger.kernel.org
408 W:      http://wireless.kernel.org/
409 S:      Orphan
410 F:      drivers/net/wireless/admtek/adm8211.*
411
412 ADP1653 FLASH CONTROLLER DRIVER
413 M:      Sakari Ailus <sakari.ailus@iki.fi>
414 L:      linux-media@vger.kernel.org
415 S:      Maintained
416 F:      drivers/media/i2c/adp1653.c
417 F:      include/media/i2c/adp1653.h
418
419 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
420 M:      Michael Hennerich <michael.hennerich@analog.com>
421 W:      http://wiki.analog.com/ADP5520
422 W:      http://ez.analog.com/community/linux-device-drivers
423 S:      Supported
424 F:      drivers/mfd/adp5520.c
425 F:      drivers/video/backlight/adp5520_bl.c
426 F:      drivers/leds/leds-adp5520.c
427 F:      drivers/gpio/gpio-adp5520.c
428 F:      drivers/input/keyboard/adp5520-keys.c
429
430 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
431 M:      Michael Hennerich <michael.hennerich@analog.com>
432 W:      http://wiki.analog.com/ADP5588
433 W:      http://ez.analog.com/community/linux-device-drivers
434 S:      Supported
435 F:      drivers/input/keyboard/adp5588-keys.c
436 F:      drivers/gpio/gpio-adp5588.c
437
438 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
439 M:      Michael Hennerich <michael.hennerich@analog.com>
440 W:      http://wiki.analog.com/ADP8860
441 W:      http://ez.analog.com/community/linux-device-drivers
442 S:      Supported
443 F:      drivers/video/backlight/adp8860_bl.c
444
445 ADS1015 HARDWARE MONITOR DRIVER
446 M:      Dirk Eibach <eibach@gdsys.de>
447 L:      linux-hwmon@vger.kernel.org
448 S:      Maintained
449 F:      Documentation/hwmon/ads1015
450 F:      drivers/hwmon/ads1015.c
451 F:      include/linux/i2c/ads1015.h
452
453 ADT746X FAN DRIVER
454 M:      Colin Leroy <colin@colino.net>
455 S:      Maintained
456 F:      drivers/macintosh/therm_adt746x.c
457
458 ADT7475 HARDWARE MONITOR DRIVER
459 M:      Jean Delvare <jdelvare@suse.com>
460 L:      linux-hwmon@vger.kernel.org
461 S:      Maintained
462 F:      Documentation/hwmon/adt7475
463 F:      drivers/hwmon/adt7475.c
464
465 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 W:      http://wiki.analog.com/ADXL345
468 W:      http://ez.analog.com/community/linux-device-drivers
469 S:      Supported
470 F:      drivers/input/misc/adxl34x.c
471
472 ADVANSYS SCSI DRIVER
473 M:      Matthew Wilcox <matthew@wil.cx>
474 M:      Hannes Reinecke <hare@suse.com>
475 L:      linux-scsi@vger.kernel.org
476 S:      Maintained
477 F:      Documentation/scsi/advansys.txt
478 F:      drivers/scsi/advansys.c
479
480 AEDSP16 DRIVER
481 M:      Riccardo Facchetti <fizban@tin.it>
482 S:      Maintained
483 F:      sound/oss/aedsp16.c
484
485 AF9013 MEDIA DRIVER
486 M:      Antti Palosaari <crope@iki.fi>
487 L:      linux-media@vger.kernel.org
488 W:      https://linuxtv.org
489 W:      http://palosaari.fi/linux/
490 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
491 T:      git git://linuxtv.org/anttip/media_tree.git
492 S:      Maintained
493 F:      drivers/media/dvb-frontends/af9013*
494
495 AF9033 MEDIA DRIVER
496 M:      Antti Palosaari <crope@iki.fi>
497 L:      linux-media@vger.kernel.org
498 W:      https://linuxtv.org
499 W:      http://palosaari.fi/linux/
500 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
501 T:      git git://linuxtv.org/anttip/media_tree.git
502 S:      Maintained
503 F:      drivers/media/dvb-frontends/af9033*
504
505 AFFS FILE SYSTEM
506 L:      linux-fsdevel@vger.kernel.org
507 S:      Orphan
508 F:      Documentation/filesystems/affs.txt
509 F:      fs/affs/
510
511 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
512 M:      David Howells <dhowells@redhat.com>
513 L:      linux-afs@lists.infradead.org
514 S:      Supported
515 F:      fs/afs/
516 F:      include/net/af_rxrpc.h
517 F:      net/rxrpc/af_rxrpc.c
518
519 AGPGART DRIVER
520 M:      David Airlie <airlied@linux.ie>
521 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
522 S:      Maintained
523 F:      drivers/char/agp/
524 F:      include/linux/agp*
525 F:      include/uapi/linux/agp*
526
527 AHA152X SCSI DRIVER
528 M:      "Juergen E. Fischer" <fischer@norbit.de>
529 L:      linux-scsi@vger.kernel.org
530 S:      Maintained
531 F:      drivers/scsi/aha152x*
532 F:      drivers/scsi/pcmcia/aha152x*
533
534 AIC7XXX / AIC79XX SCSI DRIVER
535 M:      Hannes Reinecke <hare@suse.com>
536 L:      linux-scsi@vger.kernel.org
537 S:      Maintained
538 F:      drivers/scsi/aic7xxx/
539
540 AIMSLAB FM RADIO RECEIVER DRIVER
541 M:      Hans Verkuil <hverkuil@xs4all.nl>
542 L:      linux-media@vger.kernel.org
543 T:      git git://linuxtv.org/media_tree.git
544 W:      https://linuxtv.org
545 S:      Maintained
546 F:      drivers/media/radio/radio-aimslab*
547
548 AIO
549 M:      Benjamin LaHaise <bcrl@kvack.org>
550 L:      linux-aio@kvack.org
551 S:      Supported
552 F:      fs/aio.c
553 F:      include/linux/*aio*.h
554
555 AIRSPY MEDIA DRIVER
556 M:      Antti Palosaari <crope@iki.fi>
557 L:      linux-media@vger.kernel.org
558 W:      https://linuxtv.org
559 W:      http://palosaari.fi/linux/
560 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
561 T:      git git://linuxtv.org/anttip/media_tree.git
562 S:      Maintained
563 F:      drivers/media/usb/airspy/
564
565 ALCATEL SPEEDTOUCH USB DRIVER
566 M:      Duncan Sands <duncan.sands@free.fr>
567 L:      linux-usb@vger.kernel.org
568 W:      http://www.linux-usb.org/SpeedTouch/
569 S:      Maintained
570 F:      drivers/usb/atm/speedtch.c
571 F:      drivers/usb/atm/usbatm.c
572
573 ALCHEMY AU1XX0 MMC DRIVER
574 M:      Manuel Lauss <manuel.lauss@gmail.com>
575 S:      Maintained
576 F:      drivers/mmc/host/au1xmmc.c
577
578 ALI1563 I2C DRIVER
579 M:      Rudolf Marek <r.marek@assembler.cz>
580 L:      linux-i2c@vger.kernel.org
581 S:      Maintained
582 F:      Documentation/i2c/busses/i2c-ali1563
583 F:      drivers/i2c/busses/i2c-ali1563.c
584
585 ALLWINNER SECURITY SYSTEM
586 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
587 L:      linux-crypto@vger.kernel.org
588 S:      Maintained
589 F:      drivers/crypto/sunxi-ss/
590
591 ALPHA PORT
592 M:      Richard Henderson <rth@twiddle.net>
593 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
594 M:      Matt Turner <mattst88@gmail.com>
595 S:      Odd Fixes
596 L:      linux-alpha@vger.kernel.org
597 F:      arch/alpha/
598
599 ALTERA MAILBOX DRIVER
600 M:      Ley Foon Tan <lftan@altera.com>
601 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
602 S:      Maintained
603 F:      drivers/mailbox/mailbox-altera.c
604
605 ALTERA PIO DRIVER
606 M:      Tien Hock Loh <thloh@altera.com>
607 L:      linux-gpio@vger.kernel.org
608 S:      Maintained
609 F:      drivers/gpio/gpio-altera.c
610
611 ALTERA TRIPLE SPEED ETHERNET DRIVER
612 M:      Vince Bridgers <vbridger@opensource.altera.com>
613 L:      netdev@vger.kernel.org
614 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
615 S:      Maintained
616 F:      drivers/net/ethernet/altera/
617
618 ALTERA UART/JTAG UART SERIAL DRIVERS
619 M:      Tobias Klauser <tklauser@distanz.ch>
620 L:      linux-serial@vger.kernel.org
621 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
622 S:      Maintained
623 F:      drivers/tty/serial/altera_uart.c
624 F:      drivers/tty/serial/altera_jtaguart.c
625 F:      include/linux/altera_uart.h
626 F:      include/linux/altera_jtaguart.h
627
628 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
629 M:      Tom Lendacky <thomas.lendacky@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 AOA (Apple Onboard Audio) ALSA DRIVER
780 M:      Johannes Berg <johannes@sipsolutions.net>
781 L:      linuxppc-dev@lists.ozlabs.org
782 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
783 S:      Maintained
784 F:      sound/aoa/
785
786 APEX EMBEDDED SYSTEMS STX104 DAC DRIVER
787 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
788 L:      linux-iio@vger.kernel.org
789 S:      Maintained
790 F:      drivers/iio/dac/stx104.c
791
792 APM DRIVER
793 M:      Jiri Kosina <jikos@kernel.org>
794 S:      Odd fixes
795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
796 F:      arch/x86/kernel/apm_32.c
797 F:      include/linux/apm_bios.h
798 F:      include/uapi/linux/apm_bios.h
799 F:      drivers/char/apm-emulation.c
800
801 APPLE BCM5974 MULTITOUCH DRIVER
802 M:      Henrik Rydberg <rydberg@bitmath.org>
803 L:      linux-input@vger.kernel.org
804 S:      Odd fixes
805 F:      drivers/input/mouse/bcm5974.c
806
807 APPLE SMC DRIVER
808 M:      Henrik Rydberg <rydberg@bitmath.org>
809 L:      linux-hwmon@vger.kernel.org
810 S:      Odd fixes
811 F:      drivers/hwmon/applesmc.c
812
813 APPLETALK NETWORK LAYER
814 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
815 S:      Maintained
816 F:      drivers/net/appletalk/
817 F:      net/appletalk/
818
819 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
820 M:      Duc Dang <dhdang@apm.com>
821 S:      Supported
822 F:      arch/arm64/boot/dts/apm/
823
824 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
825 M:      Iyappan Subramanian <isubramanian@apm.com>
826 M:      Keyur Chudgar <kchudgar@apm.com>
827 S:      Supported
828 F:      drivers/net/ethernet/apm/xgene/
829 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
830
831 APTINA CAMERA SENSOR PLL
832 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
833 L:      linux-media@vger.kernel.org
834 S:      Maintained
835 F:      drivers/media/i2c/aptina-pll.*
836
837 ARC FRAMEBUFFER DRIVER
838 M:      Jaya Kumar <jayalk@intworks.biz>
839 S:      Maintained
840 F:      drivers/video/fbdev/arcfb.c
841 F:      drivers/video/fbdev/core/fb_defio.c
842
843 ARCNET NETWORK LAYER
844 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
845 L:      netdev@vger.kernel.org
846 S:      Maintained
847 F:      drivers/net/arcnet/
848 F:      include/uapi/linux/if_arcnet.h
849
850 ARC PGU DRM DRIVER
851 M:      Alexey Brodkin <abrodkin@synopsys.com>
852 S:      Supported
853 F:      drivers/gpu/drm/arc/
854 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
855
856 ARM HDLCD DRM DRIVER
857 M:      Liviu Dudau <liviu.dudau@arm.com>
858 S:      Supported
859 F:      drivers/gpu/drm/arm/
860 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
861
862 ARM MFM AND FLOPPY DRIVERS
863 M:      Ian Molton <spyro@f2s.com>
864 S:      Maintained
865 F:      arch/arm/lib/floppydma.S
866 F:      arch/arm/include/asm/floppy.h
867
868 ARM PMU PROFILING AND DEBUGGING
869 M:      Will Deacon <will.deacon@arm.com>
870 R:      Mark Rutland <mark.rutland@arm.com>
871 S:      Maintained
872 F:      arch/arm*/kernel/perf_*
873 F:      arch/arm/oprofile/common.c
874 F:      arch/arm*/kernel/hw_breakpoint.c
875 F:      arch/arm*/include/asm/hw_breakpoint.h
876 F:      arch/arm*/include/asm/perf_event.h
877 F:      drivers/perf/arm_pmu.c
878 F:      include/linux/perf/arm_pmu.h
879
880 ARM PORT
881 M:      Russell King <linux@armlinux.org.uk>
882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
883 W:      http://www.armlinux.org.uk/
884 S:      Maintained
885 F:      arch/arm/
886
887 ARM SUB-ARCHITECTURES
888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
889 S:      Maintained
890 F:      arch/arm/mach-*/
891 F:      arch/arm/plat-*/
892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
893
894 ARM PRIMECELL AACI PL041 DRIVER
895 M:      Russell King <linux@armlinux.org.uk>
896 S:      Maintained
897 F:      sound/arm/aaci.*
898
899 ARM PRIMECELL CLCD PL110 DRIVER
900 M:      Russell King <linux@armlinux.org.uk>
901 S:      Maintained
902 F:      drivers/video/fbdev/amba-clcd.*
903
904 ARM PRIMECELL KMI PL050 DRIVER
905 M:      Russell King <linux@armlinux.org.uk>
906 S:      Maintained
907 F:      drivers/input/serio/ambakmi.*
908 F:      include/linux/amba/kmi.h
909
910 ARM PRIMECELL MMCI PL180/1 DRIVER
911 M:      Russell King <linux@armlinux.org.uk>
912 S:      Maintained
913 F:      drivers/mmc/host/mmci.*
914 F:      include/linux/amba/mmci.h
915
916 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
917 M:      Russell King <linux@armlinux.org.uk>
918 S:      Maintained
919 F:      drivers/tty/serial/amba-pl01*.c
920 F:      include/linux/amba/serial.h
921
922 ARM PRIMECELL BUS SUPPORT
923 M:      Russell King <linux@armlinux.org.uk>
924 S:      Maintained
925 F:      drivers/amba/
926 F:      include/linux/amba/bus.h
927
928 ARM/ADS SPHERE MACHINE SUPPORT
929 M:      Lennert Buytenhek <kernel@wantstofly.org>
930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
931 S:      Maintained
932
933 ARM/AFEB9260 MACHINE SUPPORT
934 M:      Sergey Lapin <slapin@ossfans.org>
935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
936 S:      Maintained
937
938 ARM/AJECO 1ARM MACHINE SUPPORT
939 M:      Lennert Buytenhek <kernel@wantstofly.org>
940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941 S:      Maintained
942
943 ARM/Allwinner sunXi SoC support
944 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
945 M:      Chen-Yu Tsai <wens@csie.org>
946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
947 S:      Maintained
948 N:      sun[x456789]i
949
950 ARM/Allwinner SoC Clock Support
951 M:      Emilio López <emilio@elopez.com.ar>
952 S:      Maintained
953 F:      drivers/clk/sunxi/
954
955 ARM/Amlogic Meson SoC support
956 M:      Carlo Caione <carlo@caione.org>
957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
958 L:      linux-meson@googlegroups.com
959 W:      http://linux-meson.com/
960 S:      Maintained
961 F:      arch/arm/mach-meson/
962 F:      arch/arm/boot/dts/meson*
963 N:      meson
964
965 ARM/Annapurna Labs ALPINE ARCHITECTURE
966 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
967 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
968 S:      Maintained
969 F:      arch/arm/mach-alpine/
970 F:      arch/arm/boot/dts/alpine*
971 F:      arch/arm64/boot/dts/al/
972 F:      drivers/*/*alpine*
973
974 ARM/ARTPEC MACHINE SUPPORT
975 M:      Jesper Nilsson <jesper.nilsson@axis.com>
976 M:      Lars Persson <lars.persson@axis.com>
977 M:      Niklas Cassel <niklas.cassel@axis.com>
978 S:      Maintained
979 L:      linux-arm-kernel@axis.com
980 F:      arch/arm/mach-artpec
981 F:      arch/arm/boot/dts/artpec6*
982 F:      drivers/clk/clk-artpec6.c
983
984 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
985 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
986 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
987 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
989 W:      http://www.linux4sam.org
990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
991 S:      Supported
992 F:      arch/arm/mach-at91/
993 F:      include/soc/at91/
994 F:      arch/arm/boot/dts/at91*.dts
995 F:      arch/arm/boot/dts/at91*.dtsi
996 F:      arch/arm/boot/dts/sama*.dts
997 F:      arch/arm/boot/dts/sama*.dtsi
998 F:      arch/arm/include/debug/at91.S
999
1000 ARM/ATMEL AT91 Clock Support
1001 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1002 S:      Maintained
1003 F:      drivers/clk/at91
1004
1005 ARM/CALXEDA HIGHBANK ARCHITECTURE
1006 M:      Rob Herring <robh@kernel.org>
1007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1008 S:      Maintained
1009 F:      arch/arm/mach-highbank/
1010 F:      arch/arm/boot/dts/highbank.dts
1011 F:      arch/arm/boot/dts/ecx-*.dts*
1012
1013 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1014 M:      Krzysztof Halasa <khalasa@piap.pl>
1015 S:      Maintained
1016 F:      arch/arm/mach-cns3xxx/
1017
1018 ARM/CAVIUM THUNDER NETWORK DRIVER
1019 M:      Sunil Goutham <sgoutham@cavium.com>
1020 M:      Robert Richter <rric@kernel.org>
1021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1022 S:      Supported
1023 F:      drivers/net/ethernet/cavium/thunder/
1024
1025 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1026 M:      Alexander Shiyan <shc_work@mail.ru>
1027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1028 S:      Odd Fixes
1029 N:      clps711x
1030
1031 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1032 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1033 M:      Ryan Mallon <rmallon@gmail.com>
1034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1035 S:      Maintained
1036 F:      arch/arm/mach-ep93xx/
1037 F:      arch/arm/mach-ep93xx/include/mach/
1038
1039 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1040 M:      Lennert Buytenhek <kernel@wantstofly.org>
1041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1042 S:      Maintained
1043
1044 ARM/CLKDEV SUPPORT
1045 M:      Russell King <linux@armlinux.org.uk>
1046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1047 S:      Maintained
1048 F:      arch/arm/include/asm/clkdev.h
1049 F:      drivers/clk/clkdev.c
1050
1051 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1052 M:      Mike Rapoport <mike@compulab.co.il>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Maintained
1055
1056 ARM/CONTEC MICRO9 MACHINE SUPPORT
1057 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1058 S:      Maintained
1059 F:      arch/arm/mach-ep93xx/micro9.c
1060
1061 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1062 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1064 S:      Maintained
1065 F:      drivers/hwtracing/coresight/*
1066 F:      Documentation/trace/coresight.txt
1067 F:      Documentation/devicetree/bindings/arm/coresight.txt
1068 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1069
1070 ARM/CORGI MACHINE SUPPORT
1071 M:      Richard Purdie <rpurdie@rpsys.net>
1072 S:      Maintained
1073
1074 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1075 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1077 T:      git git://github.com/ulli-kroll/linux.git
1078 S:      Maintained
1079 F:      arch/arm/mach-gemini/
1080 F:      drivers/rtc/rtc-gemini.c
1081
1082 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1083 M:      Barry Song <baohua@kernel.org>
1084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1086 S:      Maintained
1087 F:      arch/arm/boot/dts/prima2*
1088 F:      arch/arm/mach-prima2/
1089 F:      drivers/clk/sirf/
1090 F:      drivers/clocksource/timer-prima2.c
1091 F:      drivers/clocksource/timer-atlas7.c
1092 N:      [^a-z]sirf
1093
1094 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1095 M:      Baruch Siach <baruch@tkos.co.il>
1096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1097 S:      Maintained
1098 F:      arch/arm/boot/dts/cx92755*
1099 N:      digicolor
1100
1101 ARM/EBSA110 MACHINE SUPPORT
1102 M:      Russell King <linux@armlinux.org.uk>
1103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1104 W:      http://www.armlinux.org.uk/
1105 S:      Maintained
1106 F:      arch/arm/mach-ebsa110/
1107 F:      drivers/net/ethernet/amd/am79c961a.*
1108
1109 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1110 M:      Uwe Kleine-König <kernel@pengutronix.de>
1111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1112 S:      Maintained
1113 N:      efm32
1114
1115 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1116 M:      Daniel Ribeiro <drwyrm@gmail.com>
1117 M:      Stefan Schmidt <stefan@openezx.org>
1118 M:      Harald Welte <laforge@openezx.org>
1119 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1120 W:      http://www.openezx.org/
1121 S:      Maintained
1122 T:      topgit git://git.openezx.org/openezx.git
1123 F:      arch/arm/mach-pxa/ezx.c
1124
1125 ARM/FARADAY FA526 PORT
1126 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1128 S:      Maintained
1129 T:      git git://git.berlios.de/gemini-board
1130 F:      arch/arm/mm/*-fa*
1131
1132 ARM/FOOTBRIDGE ARCHITECTURE
1133 M:      Russell King <linux@armlinux.org.uk>
1134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1135 W:      http://www.armlinux.org.uk/
1136 S:      Maintained
1137 F:      arch/arm/include/asm/hardware/dec21285.h
1138 F:      arch/arm/mach-footbridge/
1139
1140 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1141 M:      Shawn Guo <shawnguo@kernel.org>
1142 M:      Sascha Hauer <kernel@pengutronix.de>
1143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1144 S:      Maintained
1145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1146 F:      arch/arm/mach-imx/
1147 F:      arch/arm/mach-mxs/
1148 F:      arch/arm/boot/dts/imx*
1149 F:      arch/arm/configs/imx*_defconfig
1150 F:      drivers/clk/imx/
1151 F:      include/soc/imx/
1152
1153 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1154 M:      Shawn Guo <shawnguo@kernel.org>
1155 M:      Sascha Hauer <kernel@pengutronix.de>
1156 R:      Stefan Agner <stefan@agner.ch>
1157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1158 S:      Maintained
1159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1160 F:      arch/arm/mach-imx/*vf610*
1161 F:      arch/arm/boot/dts/vf*
1162
1163 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1164 M:      Lennert Buytenhek <kernel@wantstofly.org>
1165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1166 S:      Maintained
1167
1168 ARM/GUMSTIX MACHINE SUPPORT
1169 M:      Steve Sakoman <sakoman@gmail.com>
1170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1171 S:      Maintained
1172
1173 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1174 M:      Philipp Zabel <philipp.zabel@gmail.com>
1175 M:      Paul Parsons <lost.distance@yahoo.com>
1176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1177 S:      Maintained
1178 F:      arch/arm/mach-pxa/hx4700.c
1179 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1180 F:      sound/soc/pxa/hx4700.c
1181
1182 ARM/HISILICON SOC SUPPORT
1183 M:      Wei Xu <xuwei5@hisilicon.com>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 W:      http://www.hisilicon.com
1186 S:      Supported
1187 T:      git git://github.com/hisilicon/linux-hisi.git
1188 F:      arch/arm/mach-hisi/
1189 F:      arch/arm/boot/dts/hi3*
1190 F:      arch/arm/boot/dts/hip*
1191 F:      arch/arm/boot/dts/hisi*
1192 F:      arch/arm64/boot/dts/hisilicon/
1193
1194 ARM/HP JORNADA 7XX MACHINE SUPPORT
1195 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1196 W:      www.jlime.com
1197 S:      Maintained
1198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1199 F:      arch/arm/mach-sa1100/jornada720.c
1200 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1201
1202 ARM/IGEP MACHINE SUPPORT
1203 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1204 M:      Javier Martinez Canillas <javier@dowhile0.org>
1205 L:      linux-omap@vger.kernel.org
1206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207 S:      Maintained
1208 F:      arch/arm/boot/dts/omap3-igep*
1209
1210 ARM/INCOME PXA270 SUPPORT
1211 M:      Marek Vasut <marek.vasut@gmail.com>
1212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1213 S:      Maintained
1214 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1215
1216 ARM/INTEL IOP32X ARM ARCHITECTURE
1217 M:      Lennert Buytenhek <kernel@wantstofly.org>
1218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1219 S:      Maintained
1220
1221 ARM/INTEL IOP33X ARM ARCHITECTURE
1222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223 S:      Orphan
1224
1225 ARM/INTEL IOP13XX ARM ARCHITECTURE
1226 M:      Lennert Buytenhek <kernel@wantstofly.org>
1227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1228 S:      Maintained
1229
1230 ARM/INTEL IQ81342EX MACHINE SUPPORT
1231 M:      Lennert Buytenhek <kernel@wantstofly.org>
1232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1233 S:      Maintained
1234
1235 ARM/INTEL IXDP2850 MACHINE SUPPORT
1236 M:      Lennert Buytenhek <kernel@wantstofly.org>
1237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1238 S:      Maintained
1239
1240 ARM/INTEL IXP4XX ARM ARCHITECTURE
1241 M:      Imre Kaloz <kaloz@openwrt.org>
1242 M:      Krzysztof Halasa <khalasa@piap.pl>
1243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1244 S:      Maintained
1245 F:      arch/arm/mach-ixp4xx/
1246
1247 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1248 M:      Jonathan Cameron <jic23@cam.ac.uk>
1249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1250 S:      Maintained
1251 F:      arch/arm/mach-pxa/stargate2.c
1252 F:      drivers/pcmcia/pxa2xx_stargate2.c
1253
1254 ARM/INTEL XSC3 (MANZANO) ARM CORE
1255 M:      Lennert Buytenhek <kernel@wantstofly.org>
1256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 S:      Maintained
1258
1259 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1260 M:      Lennert Buytenhek <kernel@wantstofly.org>
1261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 S:      Maintained
1263
1264 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1265 M:      Santosh Shilimkar <ssantosh@kernel.org>
1266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1267 S:      Maintained
1268 F:      arch/arm/mach-keystone/
1269 F:      arch/arm/boot/dts/k2*
1270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1271
1272 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1273 M:      Santosh Shilimkar <ssantosh@kernel.org>
1274 L:      linux-kernel@vger.kernel.org
1275 S:      Maintained
1276 F:      drivers/clk/keystone/
1277
1278 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1279 M:      Santosh Shilimkar <ssantosh@kernel.org>
1280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1281 L:      linux-kernel@vger.kernel.org
1282 S:      Maintained
1283 F:      drivers/clocksource/timer-keystone.c
1284
1285 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1286 M:      Santosh Shilimkar <ssantosh@kernel.org>
1287 L:      linux-kernel@vger.kernel.org
1288 S:      Maintained
1289 F:      drivers/power/reset/keystone-reset.c
1290
1291 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1292 M:      Santosh Shilimkar <ssantosh@kernel.org>
1293 L:      linux-kernel@vger.kernel.org
1294 S:      Maintained
1295 F:      drivers/memory/*emif*
1296
1297 ARM/LOGICPD PXA270 MACHINE SUPPORT
1298 M:      Lennert Buytenhek <kernel@wantstofly.org>
1299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1300 S:      Maintained
1301
1302 ARM/LPC18XX ARCHITECTURE
1303 M:      Joachim Eastwood <manabian@gmail.com>
1304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1305 S:      Maintained
1306 F:      arch/arm/boot/dts/lpc43*
1307 F:      drivers/clk/nxp/clk-lpc18xx*
1308 F:      drivers/clocksource/time-lpc32xx.c
1309 F:      drivers/i2c/busses/i2c-lpc2k.c
1310 F:      drivers/memory/pl172.c
1311 F:      drivers/mtd/spi-nor/nxp-spifi.c
1312 F:      drivers/rtc/rtc-lpc24xx.c
1313 N:      lpc18xx
1314
1315 ARM/MAGICIAN MACHINE SUPPORT
1316 M:      Philipp Zabel <philipp.zabel@gmail.com>
1317 S:      Maintained
1318
1319 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1320 M:      Jason Cooper <jason@lakedaemon.net>
1321 M:      Andrew Lunn <andrew@lunn.ch>
1322 M:      Gregory Clement <gregory.clement@free-electrons.com>
1323 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1324 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1325 S:      Maintained
1326 F:      arch/arm/mach-mvebu/
1327 F:      drivers/rtc/rtc-armada38x.c
1328 F:      arch/arm/boot/dts/armada*
1329 F:      arch/arm/boot/dts/kirkwood*
1330 F:      arch/arm64/boot/dts/marvell/armada*
1331
1332
1333 ARM/Marvell Berlin SoC support
1334 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1336 S:      Maintained
1337 F:      arch/arm/mach-berlin/
1338 F:      arch/arm/boot/dts/berlin*
1339 F:      arch/arm64/boot/dts/marvell/berlin*
1340
1341
1342 ARM/Marvell Dove/MV78xx0/Orion SOC support
1343 M:      Jason Cooper <jason@lakedaemon.net>
1344 M:      Andrew Lunn <andrew@lunn.ch>
1345 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1346 M:      Gregory Clement <gregory.clement@free-electrons.com>
1347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1348 S:      Maintained
1349 F:      arch/arm/mach-dove/
1350 F:      arch/arm/mach-mv78xx0/
1351 F:      arch/arm/mach-orion5x/
1352 F:      arch/arm/plat-orion/
1353 F:      arch/arm/boot/dts/dove*
1354 F:      arch/arm/boot/dts/orion5x*
1355
1356
1357 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1358 M:      Alexander Clouter <alex@digriz.org.uk>
1359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1360 W:      http://www.digriz.org.uk/ts78xx/kernel
1361 S:      Maintained
1362 F:      arch/arm/mach-orion5x/ts78xx-*
1363
1364 ARM/Mediatek RTC DRIVER
1365 M:      Eddie Huang <eddie.huang@mediatek.com>
1366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1367 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1368 S:      Maintained
1369 F:      drivers/rtc/rtc-mt6397.c
1370
1371 ARM/Mediatek SoC support
1372 M:      Matthias Brugger <matthias.bgg@gmail.com>
1373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1374 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1375 S:      Maintained
1376 F:      arch/arm/boot/dts/mt6*
1377 F:      arch/arm/boot/dts/mt8*
1378 F:      arch/arm/mach-mediatek/
1379 N:      mtk
1380 K:      mediatek
1381
1382 ARM/Mediatek USB3 PHY DRIVER
1383 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1386 S:      Maintained
1387 F:      drivers/phy/phy-mt65xx-usb3.c
1388
1389 ARM/MICREL KS8695 ARCHITECTURE
1390 M:      Greg Ungerer <gerg@uclinux.org>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 F:      arch/arm/mach-ks8695/
1393 S:      Odd Fixes
1394
1395 ARM/MIOA701 MACHINE SUPPORT
1396 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1397 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1398 F:      arch/arm/mach-pxa/mioa701.c
1399 S:      Maintained
1400
1401 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1402 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1403 S:      Maintained
1404
1405 ARM/NOMADIK ARCHITECTURE
1406 M:      Alessandro Rubini <rubini@unipv.it>
1407 M:      Linus Walleij <linus.walleij@linaro.org>
1408 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1409 S:      Maintained
1410 F:      arch/arm/mach-nomadik/
1411 F:      drivers/pinctrl/nomadik/
1412 F:      drivers/i2c/busses/i2c-nomadik.c
1413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1414
1415 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1416 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1417 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1418 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1419 S:      Supported
1420
1421 ARM/TOSA MACHINE SUPPORT
1422 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1423 M:      Dirk Opfer <dirk@opfer-online.de>
1424 S:      Maintained
1425
1426 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1427 M:      Marek Vasut <marek.vasut@gmail.com>
1428 L:      linux-arm-kernel@lists.infradead.org
1429 W:      http://hackndev.com
1430 S:      Maintained
1431 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1432 F:      arch/arm/mach-pxa/palmtx.c
1433 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1434 F:      arch/arm/mach-pxa/palmt5.c
1435 F:      arch/arm/mach-pxa/include/mach/palmld.h
1436 F:      arch/arm/mach-pxa/palmld.c
1437 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1438 F:      arch/arm/mach-pxa/palmte2.c
1439 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1440 F:      arch/arm/mach-pxa/palmtc.c
1441
1442 ARM/PALM TREO SUPPORT
1443 M:      Tomas Cech <sleep_walker@suse.com>
1444 L:      linux-arm-kernel@lists.infradead.org
1445 W:      http://hackndev.com
1446 S:      Maintained
1447 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1448 F:      arch/arm/mach-pxa/palmtreo.c
1449
1450 ARM/PALMZ72 SUPPORT
1451 M:      Sergey Lapin <slapin@ossfans.org>
1452 L:      linux-arm-kernel@lists.infradead.org
1453 W:      http://hackndev.com
1454 S:      Maintained
1455 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1456 F:      arch/arm/mach-pxa/palmz72.c
1457
1458 ARM/PLEB SUPPORT
1459 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1460 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1461 S:      Maintained
1462
1463 ARM/PT DIGITAL BOARD PORT
1464 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1466 W:      http://www.armlinux.org.uk/
1467 S:      Maintained
1468
1469 ARM/QUALCOMM SUPPORT
1470 M:      Andy Gross <andy.gross@linaro.org>
1471 M:      David Brown <david.brown@linaro.org>
1472 L:      linux-arm-msm@vger.kernel.org
1473 L:      linux-soc@vger.kernel.org
1474 S:      Maintained
1475 F:      arch/arm/boot/dts/qcom-*.dts
1476 F:      arch/arm/boot/dts/qcom-*.dtsi
1477 F:      arch/arm/mach-qcom/
1478 F:      arch/arm64/boot/dts/qcom/*
1479 F:      drivers/soc/qcom/
1480 F:      drivers/tty/serial/msm_serial.h
1481 F:      drivers/tty/serial/msm_serial.c
1482 F:      drivers/*/pm8???-*
1483 F:      drivers/mfd/ssbi.c
1484 F:      drivers/firmware/qcom_scm.c
1485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1486
1487 ARM/RADISYS ENP2611 MACHINE SUPPORT
1488 M:      Lennert Buytenhek <kernel@wantstofly.org>
1489 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1490 S:      Maintained
1491
1492 ARM/RENESAS ARM64 ARCHITECTURE
1493 M:      Simon Horman <horms@verge.net.au>
1494 M:      Magnus Damm <magnus.damm@gmail.com>
1495 L:      linux-renesas-soc@vger.kernel.org
1496 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1498 S:      Supported
1499 F:      arch/arm64/boot/dts/renesas/
1500
1501 ARM/RISCPC ARCHITECTURE
1502 M:      Russell King <linux@armlinux.org.uk>
1503 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1504 W:      http://www.armlinux.org.uk/
1505 S:      Maintained
1506 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1507 F:      arch/arm/include/asm/hardware/ioc.h
1508 F:      arch/arm/include/asm/hardware/iomd.h
1509 F:      arch/arm/include/asm/hardware/memc.h
1510 F:      arch/arm/mach-rpc/
1511 F:      drivers/net/ethernet/8390/etherh.c
1512 F:      drivers/net/ethernet/i825xx/ether1*
1513 F:      drivers/net/ethernet/seeq/ether3*
1514 F:      drivers/scsi/arm/
1515
1516 ARM/Rockchip SoC support
1517 M:      Heiko Stuebner <heiko@sntech.de>
1518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1519 L:      linux-rockchip@lists.infradead.org
1520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1521 S:      Maintained
1522 F:      arch/arm/boot/dts/rk3*
1523 F:      arch/arm/mach-rockchip/
1524 F:      drivers/clk/rockchip/
1525 F:      drivers/i2c/busses/i2c-rk3x.c
1526 F:      drivers/*/*rockchip*
1527 F:      drivers/*/*/*rockchip*
1528 F:      sound/soc/rockchip/
1529 N:      rockchip
1530
1531 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1532 M:      Kukjin Kim <kgene@kernel.org>
1533 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1536 S:      Maintained
1537 F:      arch/arm/boot/dts/s3c*
1538 F:      arch/arm/boot/dts/s5p*
1539 F:      arch/arm/boot/dts/samsung*
1540 F:      arch/arm/boot/dts/exynos*
1541 F:      arch/arm64/boot/dts/exynos/
1542 F:      arch/arm/plat-samsung/
1543 F:      arch/arm/mach-s3c24*/
1544 F:      arch/arm/mach-s3c64xx/
1545 F:      arch/arm/mach-s5p*/
1546 F:      arch/arm/mach-exynos*/
1547 F:      drivers/*/*s3c2410*
1548 F:      drivers/*/*/*s3c2410*
1549 F:      drivers/soc/samsung/*
1550 F:      drivers/spi/spi-s3c*
1551 F:      sound/soc/samsung/*
1552 F:      Documentation/arm/Samsung/
1553 F:      Documentation/devicetree/bindings/arm/samsung/
1554 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1555 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1556 N:      exynos
1557
1558 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1559 M:      Kyungmin Park <kyungmin.park@samsung.com>
1560 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1561 S:      Maintained
1562 F:      arch/arm/mach-s5pv210/
1563
1564 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1565 M:      Kyungmin Park <kyungmin.park@samsung.com>
1566 M:      Kamil Debski <k.debski@samsung.com>
1567 L:      linux-arm-kernel@lists.infradead.org
1568 L:      linux-media@vger.kernel.org
1569 S:      Maintained
1570 F:      drivers/media/platform/s5p-g2d/
1571
1572 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1573 M:      Kyungmin Park <kyungmin.park@samsung.com>
1574 M:      Kamil Debski <k.debski@samsung.com>
1575 M:      Jeongtae Park <jtp.park@samsung.com>
1576 L:      linux-arm-kernel@lists.infradead.org
1577 L:      linux-media@vger.kernel.org
1578 S:      Maintained
1579 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1580 F:      drivers/media/platform/s5p-mfc/
1581
1582 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1583 M:      Kyungmin Park <kyungmin.park@samsung.com>
1584 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1585 L:      linux-arm-kernel@lists.infradead.org
1586 L:      linux-media@vger.kernel.org
1587 S:      Maintained
1588 F:      drivers/media/platform/s5p-tv/
1589
1590 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1591 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1592 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1593 L:      linux-arm-kernel@lists.infradead.org
1594 L:      linux-media@vger.kernel.org
1595 S:      Maintained
1596 F:      drivers/media/platform/s5p-jpeg/
1597
1598 ARM/SHMOBILE ARM ARCHITECTURE
1599 M:      Simon Horman <horms@verge.net.au>
1600 M:      Magnus Damm <magnus.damm@gmail.com>
1601 L:      linux-renesas-soc@vger.kernel.org
1602 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1604 S:      Supported
1605 F:      arch/arm/boot/dts/emev2*
1606 F:      arch/arm/boot/dts/r7s*
1607 F:      arch/arm/boot/dts/r8a*
1608 F:      arch/arm/boot/dts/sh*
1609 F:      arch/arm/configs/shmobile_defconfig
1610 F:      arch/arm/include/debug/renesas-scif.S
1611 F:      arch/arm/mach-shmobile/
1612 F:      drivers/sh/
1613
1614 ARM/SOCFPGA ARCHITECTURE
1615 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1616 S:      Maintained
1617 F:      arch/arm/mach-socfpga/
1618 F:      arch/arm/boot/dts/socfpga*
1619 F:      arch/arm/configs/socfpga_defconfig
1620 F:      arch/arm64/boot/dts/altera/
1621 W:      http://www.rocketboards.org
1622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1623
1624 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1625 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1626 S:      Maintained
1627 F:      drivers/clk/socfpga/
1628
1629 ARM/SOCFPGA EDAC SUPPORT
1630 M:      Thor Thayer <tthayer@opensource.altera.com>
1631 S:      Maintained
1632 F:      drivers/edac/altera_edac.
1633
1634 ARM/STI ARCHITECTURE
1635 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1636 M:      Maxime Coquelin <maxime.coquelin@st.com>
1637 M:      Patrice Chotard <patrice.chotard@st.com>
1638 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1639 L:      kernel@stlinux.com
1640 W:      http://www.stlinux.com
1641 S:      Maintained
1642 F:      arch/arm/mach-sti/
1643 F:      arch/arm/boot/dts/sti*
1644 F:      drivers/char/hw_random/st-rng.c
1645 F:      drivers/clocksource/arm_global_timer.c
1646 F:      drivers/clocksource/clksrc_st_lpc.c
1647 F:      drivers/i2c/busses/i2c-st.c
1648 F:      drivers/media/rc/st_rc.c
1649 F:      drivers/media/platform/sti/c8sectpfe/
1650 F:      drivers/mmc/host/sdhci-st.c
1651 F:      drivers/phy/phy-miphy28lp.c
1652 F:      drivers/phy/phy-miphy365x.c
1653 F:      drivers/phy/phy-stih407-usb.c
1654 F:      drivers/phy/phy-stih41x-usb.c
1655 F:      drivers/pinctrl/pinctrl-st.c
1656 F:      drivers/reset/sti/
1657 F:      drivers/rtc/rtc-st-lpc.c
1658 F:      drivers/tty/serial/st-asc.c
1659 F:      drivers/usb/dwc3/dwc3-st.c
1660 F:      drivers/usb/host/ehci-st.c
1661 F:      drivers/usb/host/ohci-st.c
1662 F:      drivers/watchdog/st_lpc_wdt.c
1663 F:      drivers/ata/ahci_st.c
1664
1665 ARM/STM32 ARCHITECTURE
1666 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S:      Maintained
1669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1670 N:      stm32
1671 F:      drivers/clocksource/armv7m_systick.c
1672
1673 ARM/TANGO ARCHITECTURE
1674 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1675 L:      linux-arm-kernel@lists.infradead.org
1676 S:      Maintained
1677 F:      arch/arm/mach-tango/
1678 F:      arch/arm/boot/dts/tango*
1679
1680 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1681 M:      Lennert Buytenhek <kernel@wantstofly.org>
1682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683 S:      Maintained
1684
1685 ARM/TETON BGA MACHINE SUPPORT
1686 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689
1690 ARM/THECUS N2100 MACHINE SUPPORT
1691 M:      Lennert Buytenhek <kernel@wantstofly.org>
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Maintained
1694
1695 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1696 M:      Wan ZongShun <mcuos.com@gmail.com>
1697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1698 W:      http://www.mcuos.com
1699 S:      Maintained
1700 F:      arch/arm/mach-w90x900/
1701 F:      drivers/input/keyboard/w90p910_keypad.c
1702 F:      drivers/input/touchscreen/w90p910_ts.c
1703 F:      drivers/watchdog/nuc900_wdt.c
1704 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1705 F:      drivers/mtd/nand/nuc900_nand.c
1706 F:      drivers/rtc/rtc-nuc900.c
1707 F:      drivers/spi/spi-nuc900.c
1708 F:      drivers/usb/host/ehci-w90x900.c
1709 F:      drivers/video/fbdev/nuc900fb.c
1710
1711 ARM/U300 MACHINE SUPPORT
1712 M:      Linus Walleij <linus.walleij@linaro.org>
1713 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1714 S:      Supported
1715 F:      arch/arm/mach-u300/
1716 F:      drivers/clocksource/timer-u300.c
1717 F:      drivers/i2c/busses/i2c-stu300.c
1718 F:      drivers/rtc/rtc-coh901331.c
1719 F:      drivers/watchdog/coh901327_wdt.c
1720 F:      drivers/dma/coh901318*
1721 F:      drivers/mfd/ab3100*
1722 F:      drivers/rtc/rtc-ab3100.c
1723 F:      drivers/rtc/rtc-coh901331.c
1724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1725
1726 ARM/UNIPHIER ARCHITECTURE
1727 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1728 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1729 S:      Maintained
1730 F:      arch/arm/boot/dts/uniphier*
1731 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1732 F:      arch/arm/mach-uniphier/
1733 F:      arch/arm/mm/cache-uniphier.c
1734 F:      arch/arm64/boot/dts/socionext/
1735 F:      drivers/bus/uniphier-system-bus.c
1736 F:      drivers/i2c/busses/i2c-uniphier*
1737 F:      drivers/pinctrl/uniphier/
1738 F:      drivers/tty/serial/8250/8250_uniphier.c
1739 N:      uniphier
1740
1741 ARM/Ux500 ARM ARCHITECTURE
1742 M:      Linus Walleij <linus.walleij@linaro.org>
1743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1744 S:      Maintained
1745 F:      arch/arm/mach-ux500/
1746 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1747 F:      drivers/dma/ste_dma40*
1748 F:      drivers/hwspinlock/u8500_hsem.c
1749 F:      drivers/mfd/abx500*
1750 F:      drivers/mfd/ab8500*
1751 F:      drivers/mfd/dbx500*
1752 F:      drivers/mfd/db8500*
1753 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1754 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1755 F:      drivers/rtc/rtc-ab8500.c
1756 F:      drivers/rtc/rtc-pl031.c
1757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1758
1759 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1760 M:      Ulf Hansson <ulf.hansson@linaro.org>
1761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 T:      git git://git.linaro.org/people/ulfh/clk.git
1763 S:      Maintained
1764 F:      drivers/clk/ux500/
1765 F:      include/linux/platform_data/clk-ux500.h
1766
1767 ARM/VERSATILE EXPRESS PLATFORM
1768 M:      Liviu Dudau <liviu.dudau@arm.com>
1769 M:      Sudeep Holla <sudeep.holla@arm.com>
1770 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1771 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1772 S:      Maintained
1773 F:      arch/arm/boot/dts/vexpress*
1774 F:      arch/arm64/boot/dts/arm/
1775 F:      arch/arm/mach-vexpress/
1776 F:      */*/vexpress*
1777 F:      */*/*/vexpress*
1778 F:      drivers/clk/versatile/clk-vexpress-osc.c
1779 F:      drivers/clocksource/versatile.c
1780
1781 ARM/VFP SUPPORT
1782 M:      Russell King <linux@armlinux.org.uk>
1783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1784 W:      http://www.armlinux.org.uk/
1785 S:      Maintained
1786 F:      arch/arm/vfp/
1787
1788 ARM/VOIPAC PXA270 SUPPORT
1789 M:      Marek Vasut <marek.vasut@gmail.com>
1790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1791 S:      Maintained
1792 F:      arch/arm/mach-pxa/vpac270.c
1793 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1794
1795 ARM/VT8500 ARM ARCHITECTURE
1796 M:      Tony Prisk <linux@prisktech.co.nz>
1797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1798 S:      Maintained
1799 F:      arch/arm/mach-vt8500/
1800 F:      drivers/clocksource/vt8500_timer.c
1801 F:      drivers/i2c/busses/i2c-wmt.c
1802 F:      drivers/mmc/host/wmt-sdmmc.c
1803 F:      drivers/pwm/pwm-vt8500.c
1804 F:      drivers/rtc/rtc-vt8500.c
1805 F:      drivers/tty/serial/vt8500_serial.c
1806 F:      drivers/usb/host/ehci-platform.c
1807 F:      drivers/usb/host/uhci-platform.c
1808 F:      drivers/video/fbdev/vt8500lcdfb.*
1809 F:      drivers/video/fbdev/wm8505fb*
1810 F:      drivers/video/fbdev/wmt_ge_rops.*
1811
1812 ARM/ZIPIT Z2 SUPPORT
1813 M:      Marek Vasut <marek.vasut@gmail.com>
1814 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1815 S:      Maintained
1816 F:      arch/arm/mach-pxa/z2.c
1817 F:      arch/arm/mach-pxa/include/mach/z2.h
1818
1819 ARM/ZTE ARCHITECTURE
1820 M:      Jun Nie <jun.nie@linaro.org>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 S:      Maintained
1823 F:      arch/arm/mach-zx/
1824 F:      drivers/clk/zte/
1825 F:      Documentation/devicetree/bindings/arm/zte.txt
1826 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1827
1828 ARM/ZYNQ ARCHITECTURE
1829 M:      Michal Simek <michal.simek@xilinx.com>
1830 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 W:      http://wiki.xilinx.com
1833 T:      git https://github.com/Xilinx/linux-xlnx.git
1834 S:      Supported
1835 F:      arch/arm/mach-zynq/
1836 F:      drivers/cpuidle/cpuidle-zynq.c
1837 F:      drivers/block/xsysace.c
1838 N:      zynq
1839 N:      xilinx
1840 F:      drivers/clocksource/cadence_ttc_timer.c
1841 F:      drivers/i2c/busses/i2c-cadence.c
1842 F:      drivers/mmc/host/sdhci-of-arasan.c
1843 F:      drivers/edac/synopsys_edac.c
1844
1845 ARM SMMU DRIVERS
1846 M:      Will Deacon <will.deacon@arm.com>
1847 R:      Robin Murphy <robin.murphy@arm.com>
1848 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1849 S:      Maintained
1850 F:      drivers/iommu/arm-smmu.c
1851 F:      drivers/iommu/arm-smmu-v3.c
1852 F:      drivers/iommu/io-pgtable-arm.c
1853 F:      drivers/iommu/io-pgtable-arm-v7s.c
1854
1855 ARM64 PORT (AARCH64 ARCHITECTURE)
1856 M:      Catalin Marinas <catalin.marinas@arm.com>
1857 M:      Will Deacon <will.deacon@arm.com>
1858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1860 S:      Maintained
1861 F:      arch/arm64/
1862 F:      Documentation/arm64/
1863
1864 AS3645A LED FLASH CONTROLLER DRIVER
1865 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1866 L:      linux-media@vger.kernel.org
1867 T:      git git://linuxtv.org/media_tree.git
1868 S:      Maintained
1869 F:      drivers/media/i2c/as3645a.c
1870 F:      include/media/i2c/as3645a.h
1871
1872 ASC7621 HARDWARE MONITOR DRIVER
1873 M:      George Joseph <george.joseph@fairview5.com>
1874 L:      linux-hwmon@vger.kernel.org
1875 S:      Maintained
1876 F:      Documentation/hwmon/asc7621
1877 F:      drivers/hwmon/asc7621.c
1878
1879 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1880 M:      Corentin Chary <corentin.chary@gmail.com>
1881 L:      acpi4asus-user@lists.sourceforge.net
1882 L:      platform-driver-x86@vger.kernel.org
1883 W:      http://acpi4asus.sf.net
1884 S:      Maintained
1885 F:      drivers/platform/x86/asus*.c
1886 F:      drivers/platform/x86/eeepc*.c
1887
1888 ASUS WIRELESS RADIO CONTROL DRIVER
1889 M:      João Paulo Rechi Vita <jprvita@gmail.com>
1890 L:      platform-driver-x86@vger.kernel.org
1891 S:      Maintained
1892 F:      drivers/platform/x86/asus-wireless.c
1893
1894 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1895 R:      Dan Williams <dan.j.williams@intel.com>
1896 W:      http://sourceforge.net/projects/xscaleiop
1897 S:      Odd fixes
1898 F:      Documentation/crypto/async-tx-api.txt
1899 F:      crypto/async_tx/
1900 F:      drivers/dma/
1901 F:      include/linux/dmaengine.h
1902 F:      include/linux/async_tx.h
1903
1904 AT24 EEPROM DRIVER
1905 M:      Wolfram Sang <wsa@the-dreams.de>
1906 L:      linux-i2c@vger.kernel.org
1907 S:      Maintained
1908 F:      drivers/misc/eeprom/at24.c
1909 F:      include/linux/platform_data/at24.h
1910
1911 ATA OVER ETHERNET (AOE) DRIVER
1912 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1913 W:      http://www.openaoe.org/
1914 S:      Supported
1915 F:      Documentation/aoe/
1916 F:      drivers/block/aoe/
1917
1918 ATHEROS 71XX/9XXX GPIO DRIVER
1919 M:      Alban Bedel <albeu@free.fr>
1920 W:      https://github.com/AlbanBedel/linux
1921 T:      git git://github.com/AlbanBedel/linux
1922 S:      Maintained
1923 F:      drivers/gpio/gpio-ath79.c
1924 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1925
1926 ATHEROS ATH GENERIC UTILITIES
1927 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1928 L:      linux-wireless@vger.kernel.org
1929 S:      Supported
1930 F:      drivers/net/wireless/ath/*
1931
1932 ATHEROS ATH5K WIRELESS DRIVER
1933 M:      Jiri Slaby <jirislaby@gmail.com>
1934 M:      Nick Kossifidis <mickflemm@gmail.com>
1935 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1936 L:      linux-wireless@vger.kernel.org
1937 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1938 S:      Maintained
1939 F:      drivers/net/wireless/ath/ath5k/
1940
1941 ATHEROS ATH6KL WIRELESS DRIVER
1942 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1943 L:      linux-wireless@vger.kernel.org
1944 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1946 S:      Supported
1947 F:      drivers/net/wireless/ath/ath6kl/
1948
1949 WILOCITY WIL6210 WIRELESS DRIVER
1950 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1951 L:      linux-wireless@vger.kernel.org
1952 L:      wil6210@qca.qualcomm.com
1953 S:      Supported
1954 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1955 F:      drivers/net/wireless/ath/wil6210/
1956 F:      include/uapi/linux/wil6210_uapi.h
1957
1958 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1959 M:      Christian Lamparter <chunkeey@googlemail.com>
1960 L:      linux-wireless@vger.kernel.org
1961 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1962 S:      Maintained
1963 F:      drivers/net/wireless/ath/carl9170/
1964
1965 ATK0110 HWMON DRIVER
1966 M:      Luca Tettamanti <kronos.it@gmail.com>
1967 L:      linux-hwmon@vger.kernel.org
1968 S:      Maintained
1969 F:      drivers/hwmon/asus_atk0110.c
1970
1971 ATI_REMOTE2 DRIVER
1972 M:      Ville Syrjala <syrjala@sci.fi>
1973 S:      Maintained
1974 F:      drivers/input/misc/ati_remote2.c
1975
1976 ATLX ETHERNET DRIVERS
1977 M:      Jay Cliburn <jcliburn@gmail.com>
1978 M:      Chris Snook <chris.snook@gmail.com>
1979 L:      netdev@vger.kernel.org
1980 W:      http://sourceforge.net/projects/atl1
1981 W:      http://atl1.sourceforge.net
1982 S:      Maintained
1983 F:      drivers/net/ethernet/atheros/
1984
1985 ATM
1986 M:      Chas Williams <3chas3@gmail.com>
1987 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1988 L:      netdev@vger.kernel.org
1989 W:      http://linux-atm.sourceforge.net
1990 S:      Maintained
1991 F:      drivers/atm/
1992 F:      include/linux/atm*
1993 F:      include/uapi/linux/atm*
1994
1995 ATMEL AT91 / AT32 MCI DRIVER
1996 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1997 S:      Maintained
1998 F:      drivers/mmc/host/atmel-mci.c
1999
2000 ATMEL AT91 / AT32 SERIAL DRIVER
2001 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2002 S:      Supported
2003 F:      drivers/tty/serial/atmel_serial.c
2004
2005 ATMEL SAMA5D2 ADC DRIVER
2006 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2007 L:      linux-iio@vger.kernel.org
2008 S:      Supported
2009 F:      drivers/iio/adc/at91-sama5d2_adc.c
2010
2011 ATMEL Audio ALSA driver
2012 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2013 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2014 S:      Supported
2015 F:      sound/soc/atmel
2016
2017 ATMEL DMA DRIVER
2018 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2020 S:      Supported
2021 F:      drivers/dma/at_hdmac.c
2022 F:      drivers/dma/at_hdmac_regs.h
2023 F:      include/linux/platform_data/dma-atmel.h
2024
2025 ATMEL XDMA DRIVER
2026 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2027 L:      linux-arm-kernel@lists.infradead.org
2028 L:      dmaengine@vger.kernel.org
2029 S:      Supported
2030 F:      drivers/dma/at_xdmac.c
2031
2032 ATMEL I2C DRIVER
2033 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2034 L:      linux-i2c@vger.kernel.org
2035 S:      Supported
2036 F:      drivers/i2c/busses/i2c-at91.c
2037
2038 ATMEL ISI DRIVER
2039 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2040 L:      linux-media@vger.kernel.org
2041 S:      Supported
2042 F:      drivers/media/platform/soc_camera/atmel-isi.c
2043 F:      include/media/atmel-isi.h
2044
2045 ATMEL LCDFB DRIVER
2046 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2047 L:      linux-fbdev@vger.kernel.org
2048 S:      Maintained
2049 F:      drivers/video/fbdev/atmel_lcdfb.c
2050 F:      include/video/atmel_lcdc.h
2051
2052 ATMEL MACB ETHERNET DRIVER
2053 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2054 S:      Supported
2055 F:      drivers/net/ethernet/cadence/
2056
2057 ATMEL NAND DRIVER
2058 M:      Wenyou Yang <wenyou.yang@atmel.com>
2059 M:      Josh Wu <rainyfeeling@outlook.com>
2060 L:      linux-mtd@lists.infradead.org
2061 S:      Supported
2062 F:      drivers/mtd/nand/atmel_nand*
2063
2064 ATMEL SDMMC DRIVER
2065 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2066 L:      linux-mmc@vger.kernel.org
2067 S:      Supported
2068 F:      drivers/mmc/host/sdhci-of-at91.c
2069
2070 ATMEL SPI DRIVER
2071 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2072 S:      Supported
2073 F:      drivers/spi/spi-atmel.*
2074
2075 ATMEL SSC DRIVER
2076 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2078 S:      Supported
2079 F:      drivers/misc/atmel-ssc.c
2080 F:      include/linux/atmel-ssc.h
2081
2082 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2083 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Supported
2086 F:      drivers/misc/atmel_tclib.c
2087 F:      drivers/clocksource/tcb_clksrc.c
2088
2089 ATMEL USBA UDC DRIVER
2090 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S:      Supported
2093 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2094
2095 ATMEL WIRELESS DRIVER
2096 M:      Simon Kelley <simon@thekelleys.org.uk>
2097 L:      linux-wireless@vger.kernel.org
2098 W:      http://www.thekelleys.org.uk/atmel
2099 W:      http://atmelwlandriver.sourceforge.net/
2100 S:      Maintained
2101 F:      drivers/net/wireless/atmel/atmel*
2102
2103 ATMEL MAXTOUCH DRIVER
2104 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2105 T:      git git://github.com/atmel-maxtouch/linux.git
2106 S:      Supported
2107 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2108 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2109 F:      include/linux/platform_data/atmel_mxt_ts.h
2110
2111 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2112 M:      Bradley Grove <linuxdrivers@attotech.com>
2113 L:      linux-scsi@vger.kernel.org
2114 W:      http://www.attotech.com
2115 S:      Supported
2116 F:      drivers/scsi/esas2r
2117
2118 ATUSB IEEE 802.15.4 RADIO DRIVER
2119 M:      Stefan Schmidt <stefan@osg.samsung.com>
2120 L:      linux-wpan@vger.kernel.org
2121 S:      Maintained
2122 F:      drivers/net/ieee802154/atusb.c
2123 F:      drivers/net/ieee802154/atusb.h
2124 F:      drivers/net/ieee802154/at86rf230.h
2125
2126 AUDIT SUBSYSTEM
2127 M:      Paul Moore <paul@paul-moore.com>
2128 M:      Eric Paris <eparis@redhat.com>
2129 L:      linux-audit@redhat.com (moderated for non-subscribers)
2130 W:      http://people.redhat.com/sgrubb/audit/
2131 T:      git git://git.infradead.org/users/pcmoore/audit
2132 S:      Maintained
2133 F:      include/linux/audit.h
2134 F:      include/uapi/linux/audit.h
2135 F:      kernel/audit*
2136
2137 AUXILIARY DISPLAY DRIVERS
2138 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2139 W:      http://miguelojeda.es/auxdisplay.htm
2140 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2141 S:      Maintained
2142 F:      drivers/auxdisplay/
2143 F:      include/linux/cfag12864b.h
2144
2145 AVR32 ARCHITECTURE
2146 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2147 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2148 W:      http://www.atmel.com/products/AVR32/
2149 W:      http://mirror.egtvedt.no/avr32linux.org/
2150 W:      http://avrfreaks.net/
2151 S:      Maintained
2152 F:      arch/avr32/
2153
2154 AVR32/AT32AP MACHINE SUPPORT
2155 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2156 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2157 S:      Maintained
2158 F:      arch/avr32/mach-at32ap/
2159
2160 AX.25 NETWORK LAYER
2161 M:      Ralf Baechle <ralf@linux-mips.org>
2162 L:      linux-hams@vger.kernel.org
2163 W:      http://www.linux-ax25.org/
2164 S:      Maintained
2165 F:      include/uapi/linux/ax25.h
2166 F:      include/net/ax25.h
2167 F:      net/ax25/
2168
2169 AZ6007 DVB DRIVER
2170 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2171 L:      linux-media@vger.kernel.org
2172 W:      https://linuxtv.org
2173 T:      git git://linuxtv.org/media_tree.git
2174 S:      Maintained
2175 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2176
2177 AZTECH FM RADIO RECEIVER DRIVER
2178 M:      Hans Verkuil <hverkuil@xs4all.nl>
2179 L:      linux-media@vger.kernel.org
2180 T:      git git://linuxtv.org/media_tree.git
2181 W:      https://linuxtv.org
2182 S:      Maintained
2183 F:      drivers/media/radio/radio-aztech*
2184
2185 B43 WIRELESS DRIVER
2186 L:      linux-wireless@vger.kernel.org
2187 L:      b43-dev@lists.infradead.org
2188 W:      http://wireless.kernel.org/en/users/Drivers/b43
2189 S:      Odd Fixes
2190 F:      drivers/net/wireless/broadcom/b43/
2191
2192 B43LEGACY WIRELESS DRIVER
2193 M:      Larry Finger <Larry.Finger@lwfinger.net>
2194 L:      linux-wireless@vger.kernel.org
2195 L:      b43-dev@lists.infradead.org
2196 W:      http://wireless.kernel.org/en/users/Drivers/b43
2197 S:      Maintained
2198 F:      drivers/net/wireless/broadcom/b43legacy/
2199
2200 BACKLIGHT CLASS/SUBSYSTEM
2201 M:      Jingoo Han <jingoohan1@gmail.com>
2202 M:      Lee Jones <lee.jones@linaro.org>
2203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2204 S:      Maintained
2205 F:      drivers/video/backlight/
2206 F:      include/linux/backlight.h
2207
2208 BATMAN ADVANCED
2209 M:      Marek Lindner <mareklindner@neomailbox.ch>
2210 M:      Simon Wunderlich <sw@simonwunderlich.de>
2211 M:      Antonio Quartulli <a@unstable.cc>
2212 L:      b.a.t.m.a.n@lists.open-mesh.org
2213 W:      https://www.open-mesh.org/
2214 Q:      https://patchwork.open-mesh.org/project/batman/list/
2215 S:      Maintained
2216 F:      net/batman-adv/
2217
2218 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2219 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2220 L:      linux-hams@vger.kernel.org
2221 W:      http://www.baycom.org/~tom/ham/ham.html
2222 S:      Maintained
2223 F:      drivers/net/hamradio/baycom*
2224
2225 BCACHE (BLOCK LAYER CACHE)
2226 M:      Kent Overstreet <kent.overstreet@gmail.com>
2227 L:      linux-bcache@vger.kernel.org
2228 W:      http://bcache.evilpiepirate.org
2229 S:      Maintained
2230 F:      drivers/md/bcache/
2231
2232 BDISP ST MEDIA DRIVER
2233 M:      Fabien Dessenne <fabien.dessenne@st.com>
2234 L:      linux-media@vger.kernel.org
2235 T:      git git://linuxtv.org/media_tree.git
2236 W:      https://linuxtv.org
2237 S:      Supported
2238 F:      drivers/media/platform/sti/bdisp
2239
2240 BEFS FILE SYSTEM
2241 S:      Orphan
2242 F:      Documentation/filesystems/befs.txt
2243 F:      fs/befs/
2244
2245 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2246 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2247 L:      netdev@vger.kernel.org
2248 S:      Maintained
2249 F:      drivers/net/ethernet/ec_bhf.c
2250
2251 BFS FILE SYSTEM
2252 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2253 S:      Maintained
2254 F:      Documentation/filesystems/bfs.txt
2255 F:      fs/bfs/
2256 F:      include/uapi/linux/bfs_fs.h
2257
2258 BLACKFIN ARCHITECTURE
2259 M:      Steven Miao <realmz6@gmail.com>
2260 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2261 T:      git git://git.code.sf.net/p/adi-linux/code
2262 W:      http://blackfin.uclinux.org
2263 S:      Supported
2264 F:      arch/blackfin/
2265
2266 BLACKFIN EMAC DRIVER
2267 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2268 W:      http://blackfin.uclinux.org
2269 S:      Supported
2270 F:      drivers/net/ethernet/adi/
2271
2272 BLACKFIN RTC DRIVER
2273 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2274 W:      http://blackfin.uclinux.org
2275 S:      Supported
2276 F:      drivers/rtc/rtc-bfin.c
2277
2278 BLACKFIN SDH DRIVER
2279 M:      Sonic Zhang <sonic.zhang@analog.com>
2280 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2281 W:      http://blackfin.uclinux.org
2282 S:      Supported
2283 F:      drivers/mmc/host/bfin_sdh.c
2284
2285 BLACKFIN SERIAL DRIVER
2286 M:      Sonic Zhang <sonic.zhang@analog.com>
2287 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2288 W:      http://blackfin.uclinux.org
2289 S:      Supported
2290 F:      drivers/tty/serial/bfin_uart.c
2291
2292 BLACKFIN WATCHDOG DRIVER
2293 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2294 W:      http://blackfin.uclinux.org
2295 S:      Supported
2296 F:      drivers/watchdog/bfin_wdt.c
2297
2298 BLACKFIN I2C TWI DRIVER
2299 M:      Sonic Zhang <sonic.zhang@analog.com>
2300 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2301 W:      http://blackfin.uclinux.org/
2302 S:      Supported
2303 F:      drivers/i2c/busses/i2c-bfin-twi.c
2304
2305 BLACKFIN MEDIA DRIVER
2306 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2307 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2308 W:      http://blackfin.uclinux.org/
2309 S:      Supported
2310 F:      drivers/media/platform/blackfin/
2311 F:      drivers/media/i2c/adv7183*
2312 F:      drivers/media/i2c/vs6624*
2313
2314 BLINKM RGB LED DRIVER
2315 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2316 S:      Maintained
2317 F:      drivers/leds/leds-blinkm.c
2318
2319 BLOCK LAYER
2320 M:      Jens Axboe <axboe@kernel.dk>
2321 L:      linux-block@vger.kernel.org
2322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2323 S:      Maintained
2324 F:      block/
2325 F:      kernel/trace/blktrace.c
2326
2327 BLOCK2MTD DRIVER
2328 M:      Joern Engel <joern@lazybastard.org>
2329 L:      linux-mtd@lists.infradead.org
2330 S:      Maintained
2331 F:      drivers/mtd/devices/block2mtd.c
2332
2333 BLUETOOTH DRIVERS
2334 M:      Marcel Holtmann <marcel@holtmann.org>
2335 M:      Gustavo Padovan <gustavo@padovan.org>
2336 M:      Johan Hedberg <johan.hedberg@gmail.com>
2337 L:      linux-bluetooth@vger.kernel.org
2338 W:      http://www.bluez.org/
2339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2341 S:      Maintained
2342 F:      drivers/bluetooth/
2343
2344 BLUETOOTH SUBSYSTEM
2345 M:      Marcel Holtmann <marcel@holtmann.org>
2346 M:      Gustavo Padovan <gustavo@padovan.org>
2347 M:      Johan Hedberg <johan.hedberg@gmail.com>
2348 L:      linux-bluetooth@vger.kernel.org
2349 W:      http://www.bluez.org/
2350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2352 S:      Maintained
2353 F:      net/bluetooth/
2354 F:      include/net/bluetooth/
2355
2356 BONDING DRIVER
2357 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2358 M:      Veaceslav Falico <vfalico@gmail.com>
2359 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2360 L:      netdev@vger.kernel.org
2361 W:      http://sourceforge.net/projects/bonding/
2362 S:      Supported
2363 F:      drivers/net/bonding/
2364 F:      include/uapi/linux/if_bonding.h
2365
2366 BPF (Safe dynamic programs and tools)
2367 M:      Alexei Starovoitov <ast@kernel.org>
2368 L:      netdev@vger.kernel.org
2369 L:      linux-kernel@vger.kernel.org
2370 S:      Supported
2371 F:      kernel/bpf/
2372
2373 BROADCOM B44 10/100 ETHERNET DRIVER
2374 M:      Gary Zambrano <zambrano@broadcom.com>
2375 L:      netdev@vger.kernel.org
2376 S:      Supported
2377 F:      drivers/net/ethernet/broadcom/b44.*
2378
2379 BROADCOM GENET ETHERNET DRIVER
2380 M:      Florian Fainelli <f.fainelli@gmail.com>
2381 L:      netdev@vger.kernel.org
2382 S:      Supported
2383 F:      drivers/net/ethernet/broadcom/genet/
2384
2385 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2386 M:      Sony Chacko <sony.chacko@qlogic.com>
2387 M:      Dept-HSGLinuxNICDev@qlogic.com
2388 L:      netdev@vger.kernel.org
2389 S:      Supported
2390 F:      drivers/net/ethernet/broadcom/bnx2.*
2391 F:      drivers/net/ethernet/broadcom/bnx2_*
2392
2393 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2394 M:      Ariel Elior <ariel.elior@qlogic.com>
2395 L:      netdev@vger.kernel.org
2396 S:      Supported
2397 F:      drivers/net/ethernet/broadcom/bnx2x/
2398
2399 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2400 M:      Florian Fainelli <f.fainelli@gmail.com>
2401 M:      Ray Jui <rjui@broadcom.com>
2402 M:      Scott Branden <sbranden@broadcom.com>
2403 L:      bcm-kernel-feedback-list@broadcom.com
2404 T:      git git://github.com/broadcom/mach-bcm
2405 S:      Maintained
2406 F:      arch/arm/mach-bcm/
2407 F:      arch/arm/boot/dts/bcm113*
2408 F:      arch/arm/boot/dts/bcm216*
2409 F:      arch/arm/boot/dts/bcm281*
2410 F:      arch/arm64/boot/dts/broadcom/
2411 F:      arch/arm/configs/bcm_defconfig
2412 F:      drivers/mmc/host/sdhci-bcm-kona.c
2413 F:      drivers/clocksource/bcm_kona_timer.c
2414
2415 BROADCOM BCM2835 ARM ARCHITECTURE
2416 M:      Stephen Warren <swarren@wwwdotorg.org>
2417 M:      Lee Jones <lee@kernel.org>
2418 M:      Eric Anholt <eric@anholt.net>
2419 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2422 S:      Maintained
2423 N:      bcm2835
2424
2425 BROADCOM BCM47XX MIPS ARCHITECTURE
2426 M:      Hauke Mehrtens <hauke@hauke-m.de>
2427 M:      Rafał Miłecki <zajec5@gmail.com>
2428 L:      linux-mips@linux-mips.org
2429 S:      Maintained
2430 F:      arch/mips/bcm47xx/*
2431 F:      arch/mips/include/asm/mach-bcm47xx/*
2432
2433 BROADCOM BCM5301X ARM ARCHITECTURE
2434 M:      Hauke Mehrtens <hauke@hauke-m.de>
2435 L:      linux-arm-kernel@lists.infradead.org
2436 S:      Maintained
2437 F:      arch/arm/mach-bcm/bcm_5301x.c
2438 F:      arch/arm/boot/dts/bcm5301x.dtsi
2439 F:      arch/arm/boot/dts/bcm470*
2440
2441 BROADCOM BCM63XX ARM ARCHITECTURE
2442 M:      Florian Fainelli <f.fainelli@gmail.com>
2443 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2444 L:      bcm-kernel-feedback-list@broadcom.com
2445 T:      git git://github.com/broadcom/stblinux.git
2446 S:      Maintained
2447 F:      arch/arm/mach-bcm/bcm63xx.c
2448 F:      arch/arm/include/debug/bcm63xx.S
2449
2450 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2451 M:      Kevin Cernekee <cernekee@gmail.com>
2452 L:      linux-usb@vger.kernel.org
2453 S:      Maintained
2454 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2455
2456 BROADCOM BCM7XXX ARM ARCHITECTURE
2457 M:      Brian Norris <computersforpeace@gmail.com>
2458 M:      Gregory Fong <gregory.0xf0@gmail.com>
2459 M:      Florian Fainelli <f.fainelli@gmail.com>
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      bcm-kernel-feedback-list@broadcom.com
2462 T:      git git://github.com/broadcom/stblinux.git
2463 S:      Maintained
2464 F:      arch/arm/mach-bcm/*brcmstb*
2465 F:      arch/arm/boot/dts/bcm7*.dts*
2466 F:      drivers/bus/brcmstb_gisb.c
2467 N:      brcmstb
2468
2469 BROADCOM BMIPS MIPS ARCHITECTURE
2470 M:      Kevin Cernekee <cernekee@gmail.com>
2471 M:      Florian Fainelli <f.fainelli@gmail.com>
2472 L:      linux-mips@linux-mips.org
2473 T:      git git://github.com/broadcom/stblinux.git
2474 S:      Maintained
2475 F:      arch/mips/bmips/*
2476 F:      arch/mips/include/asm/mach-bmips/*
2477 F:      arch/mips/kernel/*bmips*
2478 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2479 F:      drivers/irqchip/irq-bcm63*
2480 F:      drivers/irqchip/irq-bcm7*
2481 F:      drivers/irqchip/irq-brcmstb*
2482 F:      include/linux/bcm963xx_nvram.h
2483 F:      include/linux/bcm963xx_tag.h
2484
2485 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2486 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2487 M:      Prashant Sreedharan <prashant@broadcom.com>
2488 M:      Michael Chan <mchan@broadcom.com>
2489 L:      netdev@vger.kernel.org
2490 S:      Supported
2491 F:      drivers/net/ethernet/broadcom/tg3.*
2492
2493 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2494 M:      Brett Rudley <brudley@broadcom.com>
2495 M:      Arend van Spriel <arend@broadcom.com>
2496 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2497 M:      Hante Meuleman <meuleman@broadcom.com>
2498 L:      linux-wireless@vger.kernel.org
2499 L:      brcm80211-dev-list@broadcom.com
2500 S:      Supported
2501 F:      drivers/net/wireless/broadcom/brcm80211/
2502
2503 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2504 M:      QLogic-Storage-Upstream@qlogic.com
2505 L:      linux-scsi@vger.kernel.org
2506 S:      Supported
2507 F:      drivers/scsi/bnx2fc/
2508
2509 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2510 M:      QLogic-Storage-Upstream@qlogic.com
2511 L:      linux-scsi@vger.kernel.org
2512 S:      Supported
2513 F:      drivers/scsi/bnx2i/
2514
2515 BROADCOM IPROC ARM ARCHITECTURE
2516 M:      Ray Jui <rjui@broadcom.com>
2517 M:      Scott Branden <sbranden@broadcom.com>
2518 M:      Jon Mason <jonmason@broadcom.com>
2519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2520 L:      bcm-kernel-feedback-list@broadcom.com
2521 T:      git git://github.com/broadcom/cygnus-linux.git
2522 S:      Maintained
2523 N:      iproc
2524 N:      cygnus
2525 N:      nsp
2526 N:      bcm9113*
2527 N:      bcm9583*
2528 N:      bcm9585*
2529 N:      bcm9586*
2530 N:      bcm988312
2531 N:      bcm113*
2532 N:      bcm583*
2533 N:      bcm585*
2534 N:      bcm586*
2535 N:      bcm88312
2536
2537 BROADCOM BRCMSTB GPIO DRIVER
2538 M:      Gregory Fong <gregory.0xf0@gmail.com>
2539 L:      bcm-kernel-feedback-list@broadcom.com
2540 S:      Supported
2541 F:      drivers/gpio/gpio-brcmstb.c
2542 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2543
2544 BROADCOM KONA GPIO DRIVER
2545 M:      Ray Jui <rjui@broadcom.com>
2546 L:      bcm-kernel-feedback-list@broadcom.com
2547 S:      Supported
2548 F:      drivers/gpio/gpio-bcm-kona.c
2549 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2550
2551 BROADCOM NVRAM DRIVER
2552 M:      Rafał Miłecki <zajec5@gmail.com>
2553 L:      linux-mips@linux-mips.org
2554 S:      Maintained
2555 F:      drivers/firmware/broadcom/*
2556
2557 BROADCOM STB NAND FLASH DRIVER
2558 M:      Brian Norris <computersforpeace@gmail.com>
2559 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2560 L:      linux-mtd@lists.infradead.org
2561 L:      bcm-kernel-feedback-list@broadcom.com
2562 S:      Maintained
2563 F:      drivers/mtd/nand/brcmnand/
2564
2565 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2566 M:      Rafał Miłecki <zajec5@gmail.com>
2567 L:      linux-wireless@vger.kernel.org
2568 S:      Maintained
2569 F:      drivers/bcma/
2570 F:      include/linux/bcma/
2571
2572 BROADCOM SYSTEMPORT ETHERNET DRIVER
2573 M:      Florian Fainelli <f.fainelli@gmail.com>
2574 L:      netdev@vger.kernel.org
2575 S:      Supported
2576 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2577
2578 BROADCOM VULCAN ARM64 SOC
2579 M:      Jayachandran C. <jchandra@broadcom.com>
2580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2581 L:      bcm-kernel-feedback-list@broadcom.com
2582 S:      Maintained
2583 F:      arch/arm64/boot/dts/broadcom/vulcan*
2584
2585 BROCADE BFA FC SCSI DRIVER
2586 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2587 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2588 L:      linux-scsi@vger.kernel.org
2589 S:      Supported
2590 F:      drivers/scsi/bfa/
2591
2592 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2593 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2594 L:      netdev@vger.kernel.org
2595 S:      Supported
2596 F:      drivers/net/ethernet/brocade/bna/
2597
2598 BSG (block layer generic sg v4 driver)
2599 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2600 L:      linux-scsi@vger.kernel.org
2601 S:      Supported
2602 F:      block/bsg.c
2603 F:      include/linux/bsg.h
2604 F:      include/uapi/linux/bsg.h
2605
2606 BT87X AUDIO DRIVER
2607 M:      Clemens Ladisch <clemens@ladisch.de>
2608 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2609 T:      git git://git.alsa-project.org/alsa-kernel.git
2610 S:      Maintained
2611 F:      Documentation/sound/alsa/Bt87x.txt
2612 F:      sound/pci/bt87x.c
2613
2614 BT8XXGPIO DRIVER
2615 M:      Michael Buesch <m@bues.ch>
2616 W:      http://bu3sch.de/btgpio.php
2617 S:      Maintained
2618 F:      drivers/gpio/gpio-bt8xx.c
2619
2620 BTRFS FILE SYSTEM
2621 M:      Chris Mason <clm@fb.com>
2622 M:      Josef Bacik <jbacik@fb.com>
2623 M:      David Sterba <dsterba@suse.com>
2624 L:      linux-btrfs@vger.kernel.org
2625 W:      http://btrfs.wiki.kernel.org/
2626 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2628 S:      Maintained
2629 F:      Documentation/filesystems/btrfs.txt
2630 F:      fs/btrfs/
2631
2632 BTTV VIDEO4LINUX DRIVER
2633 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2634 L:      linux-media@vger.kernel.org
2635 W:      https://linuxtv.org
2636 T:      git git://linuxtv.org/media_tree.git
2637 S:      Odd fixes
2638 F:      Documentation/video4linux/bttv/
2639 F:      drivers/media/pci/bt8xx/bttv*
2640
2641 BUSLOGIC SCSI DRIVER
2642 M:      Khalid Aziz <khalid@gonehiking.org>
2643 L:      linux-scsi@vger.kernel.org
2644 S:      Maintained
2645 F:      drivers/scsi/BusLogic.*
2646 F:      drivers/scsi/FlashPoint.*
2647
2648 C-MEDIA CMI8788 DRIVER
2649 M:      Clemens Ladisch <clemens@ladisch.de>
2650 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2651 T:      git git://git.alsa-project.org/alsa-kernel.git
2652 S:      Maintained
2653 F:      sound/pci/oxygen/
2654
2655 C6X ARCHITECTURE
2656 M:      Mark Salter <msalter@redhat.com>
2657 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2658 L:      linux-c6x-dev@linux-c6x.org
2659 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2660 S:      Maintained
2661 F:      arch/c6x/
2662
2663 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2664 M:      David Howells <dhowells@redhat.com>
2665 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2666 S:      Supported
2667 F:      Documentation/filesystems/caching/cachefiles.txt
2668 F:      fs/cachefiles/
2669
2670 CADET FM/AM RADIO RECEIVER DRIVER
2671 M:      Hans Verkuil <hverkuil@xs4all.nl>
2672 L:      linux-media@vger.kernel.org
2673 T:      git git://linuxtv.org/media_tree.git
2674 W:      https://linuxtv.org
2675 S:      Maintained
2676 F:      drivers/media/radio/radio-cadet*
2677
2678 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2679 M:      Jonathan Corbet <corbet@lwn.net>
2680 L:      linux-media@vger.kernel.org
2681 T:      git git://linuxtv.org/media_tree.git
2682 S:      Maintained
2683 F:      Documentation/video4linux/cafe_ccic
2684 F:      drivers/media/platform/marvell-ccic/
2685
2686 CAIF NETWORK LAYER
2687 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2688 L:      netdev@vger.kernel.org
2689 S:      Supported
2690 F:      Documentation/networking/caif/
2691 F:      drivers/net/caif/
2692 F:      include/uapi/linux/caif/
2693 F:      include/net/caif/
2694 F:      net/caif/
2695
2696 CALGARY x86-64 IOMMU
2697 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2698 M:      "Jon D. Mason" <jdmason@kudzu.us>
2699 L:      discuss@x86-64.org
2700 S:      Maintained
2701 F:      arch/x86/kernel/pci-calgary_64.c
2702 F:      arch/x86/kernel/tce_64.c
2703 F:      arch/x86/include/asm/calgary.h
2704 F:      arch/x86/include/asm/tce.h
2705
2706 CAN NETWORK LAYER
2707 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2708 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2709 L:      linux-can@vger.kernel.org
2710 W:      https://github.com/linux-can
2711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2713 S:      Maintained
2714 F:      Documentation/networking/can.txt
2715 F:      net/can/
2716 F:      include/linux/can/core.h
2717 F:      include/uapi/linux/can.h
2718 F:      include/uapi/linux/can/bcm.h
2719 F:      include/uapi/linux/can/raw.h
2720 F:      include/uapi/linux/can/gw.h
2721
2722 CAN NETWORK DRIVERS
2723 M:      Wolfgang Grandegger <wg@grandegger.com>
2724 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2725 L:      linux-can@vger.kernel.org
2726 W:      https://github.com/linux-can
2727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2729 S:      Maintained
2730 F:      drivers/net/can/
2731 F:      include/linux/can/dev.h
2732 F:      include/linux/can/platform/
2733 F:      include/uapi/linux/can/error.h
2734 F:      include/uapi/linux/can/netlink.h
2735
2736 CAPABILITIES
2737 M:      Serge Hallyn <serge.hallyn@canonical.com>
2738 L:      linux-security-module@vger.kernel.org
2739 S:      Supported
2740 F:      include/linux/capability.h
2741 F:      include/uapi/linux/capability.h
2742 F:      security/commoncap.c
2743 F:      kernel/capability.c
2744
2745 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2746 M:      Kevin Tsai <ktsai@capellamicro.com>
2747 S:      Maintained
2748 F:      drivers/iio/light/cm*
2749 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2750
2751 CAVIUM LIQUIDIO NETWORK DRIVER
2752 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2753 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2754 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2755 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2756 L:     netdev@vger.kernel.org
2757 W:     http://www.cavium.com
2758 S:     Supported
2759 F:     drivers/net/ethernet/cavium/liquidio/
2760
2761 CC2520 IEEE-802.15.4 RADIO DRIVER
2762 M:      Varka Bhadram <varkabhadram@gmail.com>
2763 L:      linux-wpan@vger.kernel.org
2764 S:      Maintained
2765 F:      drivers/net/ieee802154/cc2520.c
2766 F:      include/linux/spi/cc2520.h
2767 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2768
2769 CELL BROADBAND ENGINE ARCHITECTURE
2770 M:      Arnd Bergmann <arnd@arndb.de>
2771 L:      linuxppc-dev@lists.ozlabs.org
2772 W:      http://www.ibm.com/developerworks/power/cell/
2773 S:      Supported
2774 F:      arch/powerpc/include/asm/cell*.h
2775 F:      arch/powerpc/include/asm/spu*.h
2776 F:      arch/powerpc/include/uapi/asm/spu*.h
2777 F:      arch/powerpc/oprofile/*cell*
2778 F:      arch/powerpc/platforms/cell/
2779
2780 CEPH COMMON CODE (LIBCEPH)
2781 M:      Ilya Dryomov <idryomov@gmail.com>
2782 M:      "Yan, Zheng" <zyan@redhat.com>
2783 M:      Sage Weil <sage@redhat.com>
2784 L:      ceph-devel@vger.kernel.org
2785 W:      http://ceph.com/
2786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2787 T:      git git://github.com/ceph/ceph-client.git
2788 S:      Supported
2789 F:      net/ceph/
2790 F:      include/linux/ceph/
2791 F:      include/linux/crush/
2792
2793 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2794 M:      "Yan, Zheng" <zyan@redhat.com>
2795 M:      Sage Weil <sage@redhat.com>
2796 M:      Ilya Dryomov <idryomov@gmail.com>
2797 L:      ceph-devel@vger.kernel.org
2798 W:      http://ceph.com/
2799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2800 T:      git git://github.com/ceph/ceph-client.git
2801 S:      Supported
2802 F:      Documentation/filesystems/ceph.txt
2803 F:      fs/ceph/
2804
2805 CERTIFICATE HANDLING:
2806 M:      David Howells <dhowells@redhat.com>
2807 M:      David Woodhouse <dwmw2@infradead.org>
2808 L:      keyrings@vger.kernel.org
2809 S:      Maintained
2810 F:      Documentation/module-signing.txt
2811 F:      certs/
2812 F:      scripts/sign-file.c
2813 F:      scripts/extract-cert.c
2814
2815 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2816 L:      linux-usb@vger.kernel.org
2817 S:      Orphan
2818 F:      Documentation/usb/WUSB-Design-overview.txt
2819 F:      Documentation/usb/wusb-cbaf
2820 F:      drivers/usb/host/hwa-hc.c
2821 F:      drivers/usb/host/whci/
2822 F:      drivers/usb/wusbcore/
2823 F:      include/linux/usb/wusb*
2824
2825 CFAG12864B LCD DRIVER
2826 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2827 W:      http://miguelojeda.es/auxdisplay.htm
2828 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2829 S:      Maintained
2830 F:      drivers/auxdisplay/cfag12864b.c
2831 F:      include/linux/cfag12864b.h
2832
2833 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2834 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2835 W:      http://miguelojeda.es/auxdisplay.htm
2836 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2837 S:      Maintained
2838 F:      drivers/auxdisplay/cfag12864bfb.c
2839 F:      include/linux/cfag12864b.h
2840
2841 CFG80211 and NL80211
2842 M:      Johannes Berg <johannes@sipsolutions.net>
2843 L:      linux-wireless@vger.kernel.org
2844 W:      http://wireless.kernel.org/
2845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2847 S:      Maintained
2848 F:      include/uapi/linux/nl80211.h
2849 F:      include/net/cfg80211.h
2850 F:      net/wireless/*
2851 X:      net/wireless/wext*
2852
2853 CHAR and MISC DRIVERS
2854 M:      Arnd Bergmann <arnd@arndb.de>
2855 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2857 S:      Supported
2858 F:      drivers/char/*
2859 F:      drivers/misc/*
2860 F:      include/linux/miscdevice.h
2861
2862 CHECKPATCH
2863 M:      Andy Whitcroft <apw@canonical.com>
2864 M:      Joe Perches <joe@perches.com>
2865 S:      Maintained
2866 F:      scripts/checkpatch.pl
2867
2868 CHINESE DOCUMENTATION
2869 M:      Harry Wei <harryxiyou@gmail.com>
2870 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2871 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2872 S:      Maintained
2873 F:      Documentation/zh_CN/
2874
2875 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2876 M:      Peter Chen <Peter.Chen@nxp.com>
2877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2878 L:      linux-usb@vger.kernel.org
2879 S:      Maintained
2880 F:      drivers/usb/chipidea/
2881
2882 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2883 M:      Hans de Goede <hdegoede@redhat.com>
2884 L:      linux-input@vger.kernel.org
2885 S:      Maintained
2886 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2887 F:      drivers/input/touchscreen/chipone_icn8318.c
2888
2889 CHROME HARDWARE PLATFORM SUPPORT
2890 M:      Olof Johansson <olof@lixom.net>
2891 S:      Maintained
2892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2893 F:      drivers/platform/chrome/
2894
2895 CISCO VIC ETHERNET NIC DRIVER
2896 M:      Christian Benvenuti <benve@cisco.com>
2897 M:      Sujith Sankar <ssujith@cisco.com>
2898 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2899 M:      Neel Patel <neepatel@cisco.com>
2900 S:      Supported
2901 F:      drivers/net/ethernet/cisco/enic/
2902
2903 CISCO VIC LOW LATENCY NIC DRIVER
2904 M:      Christian Benvenuti <benve@cisco.com>
2905 M:      Dave Goodell <dgoodell@cisco.com>
2906 S:      Supported
2907 F:      drivers/infiniband/hw/usnic/
2908
2909 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2910 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2911 L:      netdev@vger.kernel.org
2912 S:      Maintained
2913 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2914
2915 CIRRUS LOGIC AUDIO CODEC DRIVERS
2916 M:      Brian Austin <brian.austin@cirrus.com>
2917 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2918 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2919 S:      Maintained
2920 F:      sound/soc/codecs/cs*
2921
2922 CLEANCACHE API
2923 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2924 L:      linux-kernel@vger.kernel.org
2925 S:      Maintained
2926 F:      mm/cleancache.c
2927 F:      include/linux/cleancache.h
2928
2929 CLK API
2930 M:      Russell King <linux@armlinux.org.uk>
2931 L:      linux-clk@vger.kernel.org
2932 S:      Maintained
2933 F:      include/linux/clk.h
2934
2935 CLOCKSOURCE, CLOCKEVENT DRIVERS
2936 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2937 M:      Thomas Gleixner <tglx@linutronix.de>
2938 L:      linux-kernel@vger.kernel.org
2939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2940 S:      Supported
2941 F:      drivers/clocksource
2942
2943 CISCO FCOE HBA DRIVER
2944 M:      Hiral Patel <hiralpat@cisco.com>
2945 M:      Suma Ramars <sramars@cisco.com>
2946 M:      Brian Uchino <buchino@cisco.com>
2947 L:      linux-scsi@vger.kernel.org
2948 S:      Supported
2949 F:      drivers/scsi/fnic/
2950
2951 CISCO SCSI HBA DRIVER
2952 M:      Narsimhulu Musini <nmusini@cisco.com>
2953 M:      Sesidhar Baddela <sebaddel@cisco.com>
2954 L:      linux-scsi@vger.kernel.org
2955 S:      Supported
2956 F:      drivers/scsi/snic/
2957
2958 CMPC ACPI DRIVER
2959 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2960 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2961 L:      platform-driver-x86@vger.kernel.org
2962 S:      Supported
2963 F:      drivers/platform/x86/classmate-laptop.c
2964
2965 COBALT MEDIA DRIVER
2966 M:      Hans Verkuil <hans.verkuil@cisco.com>
2967 L:      linux-media@vger.kernel.org
2968 T:      git git://linuxtv.org/media_tree.git
2969 W:      https://linuxtv.org
2970 S:      Supported
2971 F:      drivers/media/pci/cobalt/
2972
2973 COCCINELLE/Semantic Patches (SmPL)
2974 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2975 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2976 M:      Nicolas Palix <nicolas.palix@imag.fr>
2977 M:      Michal Marek <mmarek@suse.com>
2978 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2980 W:      http://coccinelle.lip6.fr/
2981 S:      Supported
2982 F:      Documentation/coccinelle.txt
2983 F:      scripts/coccinelle/
2984 F:      scripts/coccicheck
2985
2986 CODA FILE SYSTEM
2987 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2988 M:      coda@cs.cmu.edu
2989 L:      codalist@coda.cs.cmu.edu
2990 W:      http://www.coda.cs.cmu.edu/
2991 S:      Maintained
2992 F:      Documentation/filesystems/coda.txt
2993 F:      fs/coda/
2994 F:      include/linux/coda*.h
2995 F:      include/uapi/linux/coda*.h
2996
2997 CODA V4L2 MEM2MEM DRIVER
2998 M:      Philipp Zabel <p.zabel@pengutronix.de>
2999 L:      linux-media@vger.kernel.org
3000 S:      Maintained
3001 F:      Documentation/devicetree/bindings/media/coda.txt
3002 F:      drivers/media/platform/coda/
3003
3004 COMMON CLK FRAMEWORK
3005 M:      Michael Turquette <mturquette@baylibre.com>
3006 M:      Stephen Boyd <sboyd@codeaurora.org>
3007 L:      linux-clk@vger.kernel.org
3008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3009 S:      Maintained
3010 F:      drivers/clk/
3011 X:      drivers/clk/clkdev.c
3012 F:      include/linux/clk-pr*
3013 F:      include/linux/clk/
3014
3015 COMMON INTERNET FILE SYSTEM (CIFS)
3016 M:      Steve French <sfrench@samba.org>
3017 L:      linux-cifs@vger.kernel.org
3018 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3019 W:      http://linux-cifs.samba.org/
3020 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3021 S:      Supported
3022 F:      Documentation/filesystems/cifs/
3023 F:      fs/cifs/
3024
3025 COMPACTPCI HOTPLUG CORE
3026 M:      Scott Murray <scott@spiteful.org>
3027 L:      linux-pci@vger.kernel.org
3028 S:      Maintained
3029 F:      drivers/pci/hotplug/cpci_hotplug*
3030
3031 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3032 M:      Scott Murray <scott@spiteful.org>
3033 L:      linux-pci@vger.kernel.org
3034 S:      Maintained
3035 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3036
3037 COMPACTPCI HOTPLUG GENERIC DRIVER
3038 M:      Scott Murray <scott@spiteful.org>
3039 L:      linux-pci@vger.kernel.org
3040 S:      Maintained
3041 F:      drivers/pci/hotplug/cpcihp_generic.c
3042
3043 COMPAL LAPTOP SUPPORT
3044 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3045 L:      platform-driver-x86@vger.kernel.org
3046 S:      Maintained
3047 F:      drivers/platform/x86/compal-laptop.c
3048
3049 CONEXANT ACCESSRUNNER USB DRIVER
3050 L:      accessrunner-general@lists.sourceforge.net
3051 W:      http://accessrunner.sourceforge.net/
3052 S:      Orphan
3053 F:      drivers/usb/atm/cxacru.c
3054
3055 CONFIGFS
3056 M:      Joel Becker <jlbec@evilplan.org>
3057 M:      Christoph Hellwig <hch@lst.de>
3058 T:      git git://git.infradead.org/users/hch/configfs.git
3059 S:      Supported
3060 F:      fs/configfs/
3061 F:      include/linux/configfs.h
3062
3063 CONNECTOR
3064 M:      Evgeniy Polyakov <zbr@ioremap.net>
3065 L:      netdev@vger.kernel.org
3066 S:      Maintained
3067 F:      drivers/connector/
3068
3069 CONTROL GROUP (CGROUP)
3070 M:      Tejun Heo <tj@kernel.org>
3071 M:      Li Zefan <lizefan@huawei.com>
3072 M:      Johannes Weiner <hannes@cmpxchg.org>
3073 L:      cgroups@vger.kernel.org
3074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3075 S:      Maintained
3076 F:      Documentation/cgroups/
3077 F:      include/linux/cgroup*
3078 F:      kernel/cgroup*
3079
3080 CONTROL GROUP - CPUSET
3081 M:      Li Zefan <lizefan@huawei.com>
3082 L:      cgroups@vger.kernel.org
3083 W:      http://www.bullopensource.org/cpuset/
3084 W:      http://oss.sgi.com/projects/cpusets/
3085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3086 S:      Maintained
3087 F:      Documentation/cgroups/cpusets.txt
3088 F:      include/linux/cpuset.h
3089 F:      kernel/cpuset.c
3090
3091 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3092 M:      Johannes Weiner <hannes@cmpxchg.org>
3093 M:      Michal Hocko <mhocko@kernel.org>
3094 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3095 L:      cgroups@vger.kernel.org
3096 L:      linux-mm@kvack.org
3097 S:      Maintained
3098 F:      mm/memcontrol.c
3099 F:      mm/swap_cgroup.c
3100
3101 CORETEMP HARDWARE MONITORING DRIVER
3102 M:      Fenghua Yu <fenghua.yu@intel.com>
3103 L:      linux-hwmon@vger.kernel.org
3104 S:      Maintained
3105 F:      Documentation/hwmon/coretemp
3106 F:      drivers/hwmon/coretemp.c
3107
3108 COSA/SRP SYNC SERIAL DRIVER
3109 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3110 W:      http://www.fi.muni.cz/~kas/cosa/
3111 S:      Maintained
3112 F:      drivers/net/wan/cosa*
3113
3114 CPMAC ETHERNET DRIVER
3115 M:      Florian Fainelli <florian@openwrt.org>
3116 L:      netdev@vger.kernel.org
3117 S:      Maintained
3118 F:      drivers/net/ethernet/ti/cpmac.c
3119
3120 CPU FREQUENCY DRIVERS
3121 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3122 M:      Viresh Kumar <viresh.kumar@linaro.org>
3123 L:      linux-pm@vger.kernel.org
3124 S:      Maintained
3125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3126 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3127 F:      drivers/cpufreq/
3128 F:      include/linux/cpufreq.h
3129
3130 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3131 M:      Viresh Kumar <viresh.kumar@linaro.org>
3132 M:      Sudeep Holla <sudeep.holla@arm.com>
3133 L:      linux-pm@vger.kernel.org
3134 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3135 S:      Maintained
3136 F:      drivers/cpufreq/arm_big_little.h
3137 F:      drivers/cpufreq/arm_big_little.c
3138 F:      drivers/cpufreq/arm_big_little_dt.c
3139
3140 CPUIDLE DRIVER - ARM BIG LITTLE
3141 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3142 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3143 L:      linux-pm@vger.kernel.org
3144 L:      linux-arm-kernel@lists.infradead.org
3145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3146 S:      Maintained
3147 F:      drivers/cpuidle/cpuidle-big_little.c
3148
3149 CPUIDLE DRIVER - ARM EXYNOS
3150 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3151 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3152 M:      Kukjin Kim <kgene@kernel.org>
3153 L:      linux-pm@vger.kernel.org
3154 L:      linux-samsung-soc@vger.kernel.org
3155 S:      Supported
3156 F:      drivers/cpuidle/cpuidle-exynos.c
3157 F:      arch/arm/mach-exynos/pm.c
3158
3159 CPUIDLE DRIVERS
3160 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3161 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3162 L:      linux-pm@vger.kernel.org
3163 S:      Maintained
3164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3165 F:      drivers/cpuidle/*
3166 F:      include/linux/cpuidle.h
3167
3168 CPUID/MSR DRIVER
3169 M:      "H. Peter Anvin" <hpa@zytor.com>
3170 S:      Maintained
3171 F:      arch/x86/kernel/cpuid.c
3172 F:      arch/x86/kernel/msr.c
3173
3174 CPU POWER MONITORING SUBSYSTEM
3175 M:      Thomas Renninger <trenn@suse.com>
3176 L:      linux-pm@vger.kernel.org
3177 S:      Maintained
3178 F:      tools/power/cpupower/
3179
3180 CRAMFS FILESYSTEM
3181 W:      http://sourceforge.net/projects/cramfs/
3182 S:      Orphan / Obsolete
3183 F:      Documentation/filesystems/cramfs.txt
3184 F:      fs/cramfs/
3185
3186 CRIS PORT
3187 M:      Mikael Starvik <starvik@axis.com>
3188 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3189 L:      linux-cris-kernel@axis.com
3190 W:      http://developer.axis.com
3191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3192 S:      Maintained
3193 F:      arch/cris/
3194 F:      drivers/tty/serial/crisv10.*
3195
3196 CRYPTO API
3197 M:      Herbert Xu <herbert@gondor.apana.org.au>
3198 M:      "David S. Miller" <davem@davemloft.net>
3199 L:      linux-crypto@vger.kernel.org
3200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3202 S:      Maintained
3203 F:      Documentation/crypto/
3204 F:      Documentation/DocBook/crypto-API.tmpl
3205 F:      arch/*/crypto/
3206 F:      crypto/
3207 F:      drivers/crypto/
3208 F:      include/crypto/
3209
3210 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3211 M:      Neil Horman <nhorman@tuxdriver.com>
3212 L:      linux-crypto@vger.kernel.org
3213 S:      Maintained
3214 F:      crypto/ansi_cprng.c
3215 F:      crypto/rng.c
3216
3217 CS3308 MEDIA DRIVER
3218 M:      Hans Verkuil <hverkuil@xs4all.nl>
3219 L:      linux-media@vger.kernel.org
3220 T:      git git://linuxtv.org/media_tree.git
3221 W:      http://linuxtv.org
3222 S:      Odd Fixes
3223 F:      drivers/media/i2c/cs3308.c
3224 F:      drivers/media/i2c/cs3308.h
3225
3226 CS5535 Audio ALSA driver
3227 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3228 S:      Maintained
3229 F:      sound/pci/cs5535audio/
3230
3231 CW1200 WLAN driver
3232 M:      Solomon Peachy <pizza@shaftnet.org>
3233 S:      Maintained
3234 F:      drivers/net/wireless/st/cw1200/
3235
3236 CX18 VIDEO4LINUX DRIVER
3237 M:      Andy Walls <awalls@md.metrocast.net>
3238 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3239 L:      linux-media@vger.kernel.org
3240 T:      git git://linuxtv.org/media_tree.git
3241 W:      https://linuxtv.org
3242 W:      http://www.ivtvdriver.org/index.php/Cx18
3243 S:      Maintained
3244 F:      Documentation/video4linux/cx18.txt
3245 F:      drivers/media/pci/cx18/
3246 F:      include/uapi/linux/ivtv*
3247
3248 CX2341X MPEG ENCODER HELPER MODULE
3249 M:      Hans Verkuil <hverkuil@xs4all.nl>
3250 L:      linux-media@vger.kernel.org
3251 T:      git git://linuxtv.org/media_tree.git
3252 W:      https://linuxtv.org
3253 S:      Maintained
3254 F:      drivers/media/common/cx2341x*
3255 F:      include/media/cx2341x*
3256
3257 CX24120 MEDIA DRIVER
3258 M:      Jemma Denson <jdenson@gmail.com>
3259 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3260 L:      linux-media@vger.kernel.org
3261 W:      https://linuxtv.org
3262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3263 S:      Maintained
3264 F:      drivers/media/dvb-frontends/cx24120*
3265
3266 CX88 VIDEO4LINUX DRIVER
3267 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3268 L:      linux-media@vger.kernel.org
3269 W:      https://linuxtv.org
3270 T:      git git://linuxtv.org/media_tree.git
3271 S:      Odd fixes
3272 F:      Documentation/video4linux/cx88/
3273 F:      drivers/media/pci/cx88/
3274
3275 CXD2820R MEDIA DRIVER
3276 M:      Antti Palosaari <crope@iki.fi>
3277 L:      linux-media@vger.kernel.org
3278 W:      https://linuxtv.org
3279 W:      http://palosaari.fi/linux/
3280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3281 T:      git git://linuxtv.org/anttip/media_tree.git
3282 S:      Maintained
3283 F:      drivers/media/dvb-frontends/cxd2820r*
3284
3285 CXGB3 ETHERNET DRIVER (CXGB3)
3286 M:      Santosh Raspatur <santosh@chelsio.com>
3287 L:      netdev@vger.kernel.org
3288 W:      http://www.chelsio.com
3289 S:      Supported
3290 F:      drivers/net/ethernet/chelsio/cxgb3/
3291
3292 CXGB3 ISCSI DRIVER (CXGB3I)
3293 M:      Karen Xie <kxie@chelsio.com>
3294 L:      linux-scsi@vger.kernel.org
3295 W:      http://www.chelsio.com
3296 S:      Supported
3297 F:      drivers/scsi/cxgbi/cxgb3i
3298
3299 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3300 M:      Steve Wise <swise@chelsio.com>
3301 L:      linux-rdma@vger.kernel.org
3302 W:      http://www.openfabrics.org
3303 S:      Supported
3304 F:      drivers/infiniband/hw/cxgb3/
3305
3306 CXGB4 ETHERNET DRIVER (CXGB4)
3307 M:      Hariprasad S <hariprasad@chelsio.com>
3308 L:      netdev@vger.kernel.org
3309 W:      http://www.chelsio.com
3310 S:      Supported
3311 F:      drivers/net/ethernet/chelsio/cxgb4/
3312
3313 CXGB4 ISCSI DRIVER (CXGB4I)
3314 M:      Karen Xie <kxie@chelsio.com>
3315 L:      linux-scsi@vger.kernel.org
3316 W:      http://www.chelsio.com
3317 S:      Supported
3318 F:      drivers/scsi/cxgbi/cxgb4i
3319
3320 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3321 M:      Steve Wise <swise@chelsio.com>
3322 L:      linux-rdma@vger.kernel.org
3323 W:      http://www.openfabrics.org
3324 S:      Supported
3325 F:      drivers/infiniband/hw/cxgb4/
3326
3327 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3328 M:      Casey Leedom <leedom@chelsio.com>
3329 L:      netdev@vger.kernel.org
3330 W:      http://www.chelsio.com
3331 S:      Supported
3332 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3333
3334 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3335 M:      Ian Munsie <imunsie@au1.ibm.com>
3336 M:      Michael Neuling <mikey@neuling.org>
3337 L:      linuxppc-dev@lists.ozlabs.org
3338 S:      Supported
3339 F:      drivers/misc/cxl/
3340 F:      include/misc/cxl*
3341 F:      include/uapi/misc/cxl.h
3342 F:      Documentation/powerpc/cxl.txt
3343 F:      Documentation/powerpc/cxl.txt
3344 F:      Documentation/ABI/testing/sysfs-class-cxl
3345
3346 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3347 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3348 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3349 L:      linux-scsi@vger.kernel.org
3350 S:      Supported
3351 F:      drivers/scsi/cxlflash/
3352 F:      include/uapi/scsi/cxlflash_ioctls.h
3353 F:      Documentation/powerpc/cxlflash.txt
3354
3355 STMMAC ETHERNET DRIVER
3356 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3357 L:      netdev@vger.kernel.org
3358 W:      http://www.stlinux.com
3359 S:      Supported
3360 F:      drivers/net/ethernet/stmicro/stmmac/
3361
3362 CYBERPRO FB DRIVER
3363 M:      Russell King <linux@armlinux.org.uk>
3364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3365 W:      http://www.armlinux.org.uk/
3366 S:      Maintained
3367 F:      drivers/video/fbdev/cyber2000fb.*
3368
3369 CYCLADES ASYNC MUX DRIVER
3370 W:      http://www.cyclades.com/
3371 S:      Orphan
3372 F:      drivers/tty/cyclades.c
3373 F:      include/linux/cyclades.h
3374 F:      include/uapi/linux/cyclades.h
3375
3376 CYCLADES PC300 DRIVER
3377 W:      http://www.cyclades.com/
3378 S:      Orphan
3379 F:      drivers/net/wan/pc300*
3380
3381 CYPRESS_FIRMWARE MEDIA DRIVER
3382 M:      Antti Palosaari <crope@iki.fi>
3383 L:      linux-media@vger.kernel.org
3384 W:      https://linuxtv.org
3385 W:      http://palosaari.fi/linux/
3386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3387 T:      git git://linuxtv.org/anttip/media_tree.git
3388 S:      Maintained
3389 F:      drivers/media/common/cypress_firmware*
3390
3391 CYTTSP TOUCHSCREEN DRIVER
3392 M:      Ferruh Yigit <fery@cypress.com>
3393 L:      linux-input@vger.kernel.org
3394 S:      Supported
3395 F:      drivers/input/touchscreen/cyttsp*
3396 F:      include/linux/input/cyttsp.h
3397
3398 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3399 M:      Joshua Kinard <kumba@gentoo.org>
3400 S:      Maintained
3401 F:      drivers/rtc/rtc-ds1685.c
3402 F:      include/linux/rtc/ds1685.h
3403
3404 DAMA SLAVE for AX.25
3405 M:      Joerg Reuter <jreuter@yaina.de>
3406 W:      http://yaina.de/jreuter/
3407 W:      http://www.qsl.net/dl1bke/
3408 L:      linux-hams@vger.kernel.org
3409 S:      Maintained
3410 F:      net/ax25/af_ax25.c
3411 F:      net/ax25/ax25_dev.c
3412 F:      net/ax25/ax25_ds_*
3413 F:      net/ax25/ax25_in.c
3414 F:      net/ax25/ax25_out.c
3415 F:      net/ax25/ax25_timer.c
3416 F:      net/ax25/sysctl_net_ax25.c
3417
3418 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3419 L:      netdev@vger.kernel.org
3420 S:      Orphan
3421 F:      Documentation/networking/dmfe.txt
3422 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3423
3424 DC390/AM53C974 SCSI driver
3425 M:      Hannes Reinecke <hare@suse.com>
3426 L:      linux-scsi@vger.kernel.org
3427 S:      Maintained
3428 F:      drivers/scsi/am53c974.c
3429
3430 DC395x SCSI driver
3431 M:      Oliver Neukum <oliver@neukum.org>
3432 M:      Ali Akcaagac <aliakc@web.de>
3433 M:      Jamie Lenehan <lenehan@twibble.org>
3434 L:      dc395x@twibble.org
3435 W:      http://twibble.org/dist/dc395x/
3436 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3437 S:      Maintained
3438 F:      Documentation/scsi/dc395x.txt
3439 F:      drivers/scsi/dc395x.*
3440
3441 DCCP PROTOCOL
3442 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3443 L:      dccp@vger.kernel.org
3444 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3445 S:      Maintained
3446 F:      include/linux/dccp.h
3447 F:      include/uapi/linux/dccp.h
3448 F:      include/linux/tfrc.h
3449 F:      net/dccp/
3450
3451 DECnet NETWORK LAYER
3452 W:      http://linux-decnet.sourceforge.net
3453 L:      linux-decnet-user@lists.sourceforge.net
3454 S:      Orphan
3455 F:      Documentation/networking/decnet.txt
3456 F:      net/decnet/
3457
3458 DECSTATION PLATFORM SUPPORT
3459 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3460 L:      linux-mips@linux-mips.org
3461 W:      http://www.linux-mips.org/wiki/DECstation
3462 S:      Maintained
3463 F:      arch/mips/dec/
3464 F:      arch/mips/include/asm/dec/
3465 F:      arch/mips/include/asm/mach-dec/
3466
3467 DEFXX FDDI NETWORK DRIVER
3468 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3469 S:      Maintained
3470 F:      drivers/net/fddi/defxx.*
3471
3472 DELL LAPTOP DRIVER
3473 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3474 M:      Pali Rohár <pali.rohar@gmail.com>
3475 L:      platform-driver-x86@vger.kernel.org
3476 S:      Maintained
3477 F:      drivers/platform/x86/dell-laptop.c
3478
3479 DELL LAPTOP RBTN DRIVER
3480 M:      Pali Rohár <pali.rohar@gmail.com>
3481 S:      Maintained
3482 F:      drivers/platform/x86/dell-rbtn.*
3483
3484 DELL LAPTOP FREEFALL DRIVER
3485 M:      Pali Rohár <pali.rohar@gmail.com>
3486 S:      Maintained
3487 F:      drivers/platform/x86/dell-smo8800.c
3488
3489 DELL LAPTOP SMM DRIVER
3490 M:      Pali Rohár <pali.rohar@gmail.com>
3491 S:      Maintained
3492 F:      drivers/hwmon/dell-smm-hwmon.c
3493 F:      include/uapi/linux/i8k.h
3494
3495 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3496 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3497 S:      Maintained
3498 F:      Documentation/dcdbas.txt
3499 F:      drivers/firmware/dcdbas.*
3500
3501 DELL WMI EXTRAS DRIVER
3502 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3503 M:      Pali Rohár <pali.rohar@gmail.com>
3504 S:      Maintained
3505 F:      drivers/platform/x86/dell-wmi.c
3506
3507 DESIGNWARE USB2 DRD IP DRIVER
3508 M:      John Youn <johnyoun@synopsys.com>
3509 L:      linux-usb@vger.kernel.org
3510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3511 S:      Maintained
3512 F:      drivers/usb/dwc2/
3513
3514 DESIGNWARE USB3 DRD IP DRIVER
3515 M:      Felipe Balbi <balbi@kernel.org>
3516 L:      linux-usb@vger.kernel.org
3517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3518 S:      Maintained
3519 F:      drivers/usb/dwc3/
3520
3521 DEVICE COREDUMP (DEV_COREDUMP)
3522 M:      Johannes Berg <johannes@sipsolutions.net>
3523 L:      linux-kernel@vger.kernel.org
3524 S:      Maintained
3525 F:      drivers/base/devcoredump.c
3526 F:      include/linux/devcoredump.h
3527
3528 DEVICE FREQUENCY (DEVFREQ)
3529 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3530 M:      Kyungmin Park <kyungmin.park@samsung.com>
3531 L:      linux-pm@vger.kernel.org
3532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3533 S:      Maintained
3534 F:      drivers/devfreq/
3535 F:      include/linux/devfreq.h
3536 F:      Documentation/devicetree/bindings/devfreq/
3537
3538 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3539 M:      Chanwoo Choi <cw00.choi@samsung.com>
3540 L:      linux-pm@vger.kernel.org
3541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3542 S:      Supported
3543 F:      drivers/devfreq/event/
3544 F:      drivers/devfreq/devfreq-event.c
3545 F:      include/linux/devfreq-event.h
3546 F:      Documentation/devicetree/bindings/devfreq/event/
3547
3548 DEVICE NUMBER REGISTRY
3549 M:      Torben Mathiasen <device@lanana.org>
3550 W:      http://lanana.org/docs/device-list/index.html
3551 S:      Maintained
3552
3553 DEVICE-MAPPER  (LVM)
3554 M:      Alasdair Kergon <agk@redhat.com>
3555 M:      Mike Snitzer <snitzer@redhat.com>
3556 M:      dm-devel@redhat.com
3557 L:      dm-devel@redhat.com
3558 W:      http://sources.redhat.com/dm
3559 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3561 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3562 S:      Maintained
3563 F:      Documentation/device-mapper/
3564 F:      drivers/md/dm*
3565 F:      drivers/md/persistent-data/
3566 F:      include/linux/device-mapper.h
3567 F:      include/linux/dm-*.h
3568 F:      include/uapi/linux/dm-*.h
3569
3570 DEVLINK
3571 M:      Jiri Pirko <jiri@mellanox.com>
3572 L:      netdev@vger.kernel.org
3573 S:      Supported
3574 F:      net/core/devlink.c
3575 F:      include/net/devlink.h
3576 F:      include/uapi/linux/devlink.h
3577
3578 DIALOG SEMICONDUCTOR DRIVERS
3579 M:      Support Opensource <support.opensource@diasemi.com>
3580 W:      http://www.dialog-semiconductor.com/products
3581 S:      Supported
3582 F:      Documentation/hwmon/da90??
3583 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3584 F:      drivers/gpio/gpio-da90??.c
3585 F:      drivers/hwmon/da90??-hwmon.c
3586 F:      drivers/iio/adc/da91??-*.c
3587 F:      drivers/input/misc/da90??_onkey.c
3588 F:      drivers/input/touchscreen/da9052_tsi.c
3589 F:      drivers/leds/leds-da90??.c
3590 F:      drivers/mfd/da903x.c
3591 F:      drivers/mfd/da90??-*.c
3592 F:      drivers/mfd/da91??-*.c
3593 F:      drivers/power/da9052-battery.c
3594 F:      drivers/power/da91??-*.c
3595 F:      drivers/regulator/da903x.c
3596 F:      drivers/regulator/da9???-regulator.[ch]
3597 F:      drivers/rtc/rtc-da90??.c
3598 F:      drivers/video/backlight/da90??_bl.c
3599 F:      drivers/watchdog/da90??_wdt.c
3600 F:      include/linux/mfd/da903x.h
3601 F:      include/linux/mfd/da9052/
3602 F:      include/linux/mfd/da9055/
3603 F:      include/linux/mfd/da9063/
3604 F:      include/linux/mfd/da9150/
3605 F:      include/sound/da[79]*.h
3606 F:      sound/soc/codecs/da[79]*.[ch]
3607
3608 DIGI NEO AND CLASSIC PCI PRODUCTS
3609 M:      Lidza Louina <lidza.louina@gmail.com>
3610 M:      Mark Hounschell <markh@compro.net>
3611 L:      driverdev-devel@linuxdriverproject.org
3612 S:      Maintained
3613 F:      drivers/staging/dgnc/
3614
3615 DIOLAN U2C-12 I2C DRIVER
3616 M:      Guenter Roeck <linux@roeck-us.net>
3617 L:      linux-i2c@vger.kernel.org
3618 S:      Maintained
3619 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3620
3621 DIRECT ACCESS (DAX)
3622 M:      Matthew Wilcox <willy@linux.intel.com>
3623 L:      linux-fsdevel@vger.kernel.org
3624 S:      Supported
3625 F:      fs/dax.c
3626
3627 DIRECTORY NOTIFICATION (DNOTIFY)
3628 M:      Eric Paris <eparis@parisplace.org>
3629 S:      Maintained
3630 F:      Documentation/filesystems/dnotify.txt
3631 F:      fs/notify/dnotify/
3632 F:      include/linux/dnotify.h
3633
3634 DISK GEOMETRY AND PARTITION HANDLING
3635 M:      Andries Brouwer <aeb@cwi.nl>
3636 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3637 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3638 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3639 S:      Maintained
3640
3641 DISKQUOTA
3642 M:      Jan Kara <jack@suse.com>
3643 S:      Maintained
3644 F:      Documentation/filesystems/quota.txt
3645 F:      fs/quota/
3646 F:      include/linux/quota*.h
3647 F:      include/uapi/linux/quota*.h
3648
3649 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3650 M:      Bernie Thompson <bernie@plugable.com>
3651 L:      linux-fbdev@vger.kernel.org
3652 S:      Maintained
3653 W:      http://plugable.com/category/projects/udlfb/
3654 F:      drivers/video/fbdev/udlfb.c
3655 F:      include/video/udlfb.h
3656 F:      Documentation/fb/udlfb.txt
3657
3658 DISTRIBUTED LOCK MANAGER (DLM)
3659 M:      Christine Caulfield <ccaulfie@redhat.com>
3660 M:      David Teigland <teigland@redhat.com>
3661 L:      cluster-devel@redhat.com
3662 W:      http://sources.redhat.com/cluster/
3663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3664 S:      Supported
3665 F:      fs/dlm/
3666
3667 DMA BUFFER SHARING FRAMEWORK
3668 M:      Sumit Semwal <sumit.semwal@linaro.org>
3669 S:      Maintained
3670 L:      linux-media@vger.kernel.org
3671 L:      dri-devel@lists.freedesktop.org
3672 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3673 F:      drivers/dma-buf/
3674 F:      include/linux/dma-buf*
3675 F:      include/linux/reservation.h
3676 F:      include/linux/*fence.h
3677 F:      Documentation/dma-buf-sharing.txt
3678 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3679
3680 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3681 M:      Vinod Koul <vinod.koul@intel.com>
3682 L:      dmaengine@vger.kernel.org
3683 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3684 S:      Maintained
3685 F:      drivers/dma/
3686 F:      include/linux/dmaengine.h
3687 F:      Documentation/dmaengine/
3688 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3689
3690 DME1737 HARDWARE MONITOR DRIVER
3691 M:      Juerg Haefliger <juergh@gmail.com>
3692 L:      linux-hwmon@vger.kernel.org
3693 S:      Maintained
3694 F:      Documentation/hwmon/dme1737
3695 F:      drivers/hwmon/dme1737.c
3696
3697 DMI/SMBIOS SUPPORT
3698 M:      Jean Delvare <jdelvare@suse.com>
3699 S:      Maintained
3700 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3701 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3702 F:      drivers/firmware/dmi-id.c
3703 F:      drivers/firmware/dmi_scan.c
3704 F:      include/linux/dmi.h
3705
3706 DOCUMENTATION
3707 M:      Jonathan Corbet <corbet@lwn.net>
3708 L:      linux-doc@vger.kernel.org
3709 S:      Maintained
3710 F:      Documentation/
3711 F:      scripts/docproc.c
3712 F:      scripts/kernel-doc*
3713 X:      Documentation/ABI/
3714 X:      Documentation/devicetree/
3715 X:      Documentation/acpi
3716 X:      Documentation/power
3717 X:      Documentation/spi
3718 X:      Documentation/DocBook/media
3719 T:      git git://git.lwn.net/linux.git docs-next
3720
3721 DOUBLETALK DRIVER
3722 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3723 L:      blinux-list@redhat.com
3724 S:      Maintained
3725 F:      drivers/char/dtlk.c
3726 F:      include/linux/dtlk.h
3727
3728 DPT_I2O SCSI RAID DRIVER
3729 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3730 L:      linux-scsi@vger.kernel.org
3731 W:      http://www.adaptec.com/
3732 S:      Maintained
3733 F:      drivers/scsi/dpt*
3734 F:      drivers/scsi/dpt/
3735
3736 DRBD DRIVER
3737 M:      Philipp Reisner <philipp.reisner@linbit.com>
3738 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3739 L:      drbd-dev@lists.linbit.com
3740 W:      http://www.drbd.org
3741 T:      git git://git.linbit.com/linux-drbd.git
3742 T:      git git://git.linbit.com/drbd-8.4.git
3743 S:      Supported
3744 F:      drivers/block/drbd/
3745 F:      lib/lru_cache.c
3746 F:      Documentation/blockdev/drbd/
3747
3748 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3749 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3751 S:      Supported
3752 F:      Documentation/kobject.txt
3753 F:      drivers/base/
3754 F:      fs/debugfs/
3755 F:      fs/kernfs/
3756 F:      fs/sysfs/
3757 F:      include/linux/debugfs.h
3758 F:      include/linux/kobj*
3759 F:      lib/kobj*
3760
3761 DRM DRIVERS
3762 M:      David Airlie <airlied@linux.ie>
3763 L:      dri-devel@lists.freedesktop.org
3764 T:      git git://people.freedesktop.org/~airlied/linux
3765 S:      Maintained
3766 F:      drivers/gpu/drm/
3767 F:      drivers/gpu/vga/
3768 F:      Documentation/DocBook/gpu.*
3769 F:      include/drm/
3770 F:      include/uapi/drm/
3771
3772 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
3773 M:      Dave Airlie <airlied@redhat.com>
3774 S:      Odd Fixes
3775 F:      drivers/gpu/drm/ast/
3776
3777 DRM DRIVER FOR BOCHS VIRTUAL GPU
3778 M:      Gerd Hoffmann <kraxel@redhat.com>
3779 S:      Odd Fixes
3780 F:      drivers/gpu/drm/bochs/
3781
3782 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
3783 M:      Dave Airlie <airlied@redhat.com>
3784 S:      Odd Fixes
3785 F:      drivers/gpu/drm/cirrus/
3786
3787 RADEON and AMDGPU DRM DRIVERS
3788 M:      Alex Deucher <alexander.deucher@amd.com>
3789 M:      Christian König <christian.koenig@amd.com>
3790 L:      dri-devel@lists.freedesktop.org
3791 T:      git git://people.freedesktop.org/~agd5f/linux
3792 S:      Supported
3793 F:      drivers/gpu/drm/radeon/
3794 F:      include/uapi/drm/radeon_drm.h
3795 F:      drivers/gpu/drm/amd/
3796 F:      include/uapi/drm/amdgpu_drm.h
3797
3798 DRM PANEL DRIVERS
3799 M:      Thierry Reding <thierry.reding@gmail.com>
3800 L:      dri-devel@lists.freedesktop.org
3801 T:      git git://anongit.freedesktop.org/tegra/linux.git
3802 S:      Maintained
3803 F:      drivers/gpu/drm/drm_panel.c
3804 F:      drivers/gpu/drm/panel/
3805 F:      include/drm/drm_panel.h
3806 F:      Documentation/devicetree/bindings/display/panel/
3807
3808 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3809 M:      Daniel Vetter <daniel.vetter@intel.com>
3810 M:      Jani Nikula <jani.nikula@linux.intel.com>
3811 L:      intel-gfx@lists.freedesktop.org
3812 L:      dri-devel@lists.freedesktop.org
3813 W:      https://01.org/linuxgraphics/
3814 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3815 T:      git git://anongit.freedesktop.org/drm-intel
3816 S:      Supported
3817 F:      drivers/gpu/drm/i915/
3818 F:      include/drm/i915*
3819 F:      include/uapi/drm/i915_drm.h
3820
3821 DRM DRIVERS FOR ATMEL HLCDC
3822 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3823 L:      dri-devel@lists.freedesktop.org
3824 S:      Supported
3825 F:      drivers/gpu/drm/atmel-hlcdc/
3826 F:      Documentation/devicetree/bindings/drm/atmel/
3827
3828 DRM DRIVERS FOR ALLWINNER A10
3829 M:      Maxime Ripard  <maxime.ripard@free-electrons.com>
3830 L:      dri-devel@lists.freedesktop.org
3831 S:      Supported
3832 F:      drivers/gpu/drm/sun4i/
3833 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
3834
3835 DRM DRIVERS FOR EXYNOS
3836 M:      Inki Dae <inki.dae@samsung.com>
3837 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3838 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3839 M:      Kyungmin Park <kyungmin.park@samsung.com>
3840 L:      dri-devel@lists.freedesktop.org
3841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3842 S:      Supported
3843 F:      drivers/gpu/drm/exynos/
3844 F:      include/uapi/drm/exynos_drm.h
3845 F:      Documentation/devicetree/bindings/display/exynos/
3846
3847 DRM DRIVERS FOR FREESCALE DCU
3848 M:      Stefan Agner <stefan@agner.ch>
3849 M:      Alison Wang <alison.wang@freescale.com>
3850 L:      dri-devel@lists.freedesktop.org
3851 S:      Supported
3852 F:      drivers/gpu/drm/fsl-dcu/
3853 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3854 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
3855 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3856
3857 DRM DRIVERS FOR FREESCALE IMX
3858 M:      Philipp Zabel <p.zabel@pengutronix.de>
3859 L:      dri-devel@lists.freedesktop.org
3860 S:      Maintained
3861 F:      drivers/gpu/drm/imx/
3862 F:      drivers/gpu/ipu-v3/
3863 F:      Documentation/devicetree/bindings/display/imx/
3864
3865 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3866 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3867 L:      dri-devel@lists.freedesktop.org
3868 T:      git git://github.com/patjak/drm-gma500
3869 S:      Maintained
3870 F:      drivers/gpu/drm/gma500/
3871
3872 DRM DRIVERS FOR HISILICON
3873 M:      Xinliang Liu <z.liuxinliang@hisilicon.com>
3874 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
3875 R:      Chen Feng <puck.chen@hisilicon.com>
3876 L:      dri-devel@lists.freedesktop.org
3877 T:      git git://github.com/xin3liang/linux.git
3878 S:      Maintained
3879 F:      drivers/gpu/drm/hisilicon/
3880 F:      Documentation/devicetree/bindings/display/hisilicon/
3881
3882 DRM DRIVER FOR INTEL I810 VIDEO CARDS
3883 S:      Orphan / Obsolete
3884 F:      drivers/gpu/drm/i810/
3885 F:      include/uapi/drm/i810_drm.h
3886
3887 DRM DRIVER FOR MSM ADRENO GPU
3888 M:      Rob Clark <robdclark@gmail.com>
3889 L:      linux-arm-msm@vger.kernel.org
3890 L:      dri-devel@lists.freedesktop.org
3891 L:      freedreno@lists.freedesktop.org
3892 T:      git git://people.freedesktop.org/~robclark/linux
3893 S:      Maintained
3894 F:      drivers/gpu/drm/msm/
3895 F:      include/uapi/drm/msm_drm.h
3896 F:      Documentation/devicetree/bindings/display/msm/
3897
3898 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
3899 M:      Ben Skeggs <bskeggs@redhat.com>
3900 L:      dri-devel@lists.freedesktop.org
3901 L:      nouveau@lists.freedesktop.org
3902 T:      git git://github.com/skeggsb/linux
3903 S:      Supported
3904 F:      drivers/gpu/drm/nouveau/
3905 F:      include/uapi/drm/nouveau_drm.h
3906
3907 DRM DRIVERS FOR NVIDIA TEGRA
3908 M:      Thierry Reding <thierry.reding@gmail.com>
3909 M:      Terje Bergström <tbergstrom@nvidia.com>
3910 L:      dri-devel@lists.freedesktop.org
3911 L:      linux-tegra@vger.kernel.org
3912 T:      git git://anongit.freedesktop.org/tegra/linux.git
3913 S:      Supported
3914 F:      drivers/gpu/drm/tegra/
3915 F:      drivers/gpu/host1x/
3916 F:      include/linux/host1x.h
3917 F:      include/uapi/drm/tegra_drm.h
3918 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3919
3920 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
3921 S:      Orphan / Obsolete
3922 F:      drivers/gpu/drm/mga/
3923 F:      include/uapi/drm/mga_drm.h
3924
3925 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
3926 M:      Dave Airlie <airlied@redhat.com>
3927 S:      Odd Fixes
3928 F:      drivers/gpu/drm/mgag200/
3929
3930 DRM DRIVER FOR RAGE 128 VIDEO CARDS
3931 S:      Orphan / Obsolete
3932 F:      drivers/gpu/drm/r128/
3933 F:      include/uapi/drm/r128_drm.h
3934
3935 DRM DRIVERS FOR RENESAS
3936 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3937 L:      dri-devel@lists.freedesktop.org
3938 L:      linux-renesas-soc@vger.kernel.org
3939 T:      git git://linuxtv.org/pinchartl/fbdev
3940 S:      Supported
3941 F:      drivers/gpu/drm/rcar-du/
3942 F:      drivers/gpu/drm/shmobile/
3943 F:      include/linux/platform_data/shmob_drm.h
3944 F:      Documentation/devicetree/bindings/display/renesas,du.txt
3945
3946 DRM DRIVER FOR QXL VIRTUAL GPU
3947 M:      Dave Airlie <airlied@redhat.com>
3948 S:      Odd Fixes
3949 F:      drivers/gpu/drm/qxl/
3950 F:      include/uapi/drm/qxl_drm.h
3951
3952 DRM DRIVERS FOR ROCKCHIP
3953 M:      Mark Yao <mark.yao@rock-chips.com>
3954 L:      dri-devel@lists.freedesktop.org
3955 S:      Maintained
3956 F:      drivers/gpu/drm/rockchip/
3957 F:      Documentation/devicetree/bindings/display/rockchip/
3958
3959 DRM DRIVER FOR SAVAGE VIDEO CARDS
3960 S:      Orphan / Obsolete
3961 F:      drivers/gpu/drm/savage/
3962 F:      include/uapi/drm/savage_drm.h
3963
3964 DRM DRIVER FOR SIS VIDEO CARDS
3965 S:      Orphan / Obsolete
3966 F:      drivers/gpu/drm/sis/
3967 F:      include/uapi/drm/sis_drm.h
3968
3969 DRM DRIVERS FOR STI
3970 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3971 M:      Vincent Abriou <vincent.abriou@st.com>
3972 L:      dri-devel@lists.freedesktop.org
3973 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3974 S:      Maintained
3975 F:      drivers/gpu/drm/sti
3976 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3977
3978 DRM DRIVER FOR TDFX VIDEO CARDS
3979 S:      Orphan / Obsolete
3980 F:      drivers/gpu/drm/tdfx/
3981
3982 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
3983 M:      Dave Airlie <airlied@redhat.com>
3984 S:      Odd Fixes
3985 F:      drivers/gpu/drm/udl/
3986
3987 DRM DRIVERS FOR VIVANTE GPU IP
3988 M:      Lucas Stach <l.stach@pengutronix.de>
3989 R:      Russell King <linux+etnaviv@armlinux.org.uk>
3990 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3991 L:      dri-devel@lists.freedesktop.org
3992 S:      Maintained
3993 F:      drivers/gpu/drm/etnaviv/
3994 F:      include/uapi/drm/etnaviv_drm.h
3995 F:      Documentation/devicetree/bindings/display/etnaviv/
3996
3997 DRM DRIVER FOR VMWARE VIRTUAL GPU
3998 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
3999 M:      Sinclair Yeh <syeh@vmware.com>
4000 M:      Thomas Hellstrom <thellstrom@vmware.com>
4001 L:      dri-devel@lists.freedesktop.org
4002 T:      git git://people.freedesktop.org/~syeh/repos_linux
4003 T:      git git://people.freedesktop.org/~thomash/linux
4004 S:      Supported
4005 F:      drivers/gpu/drm/vmwgfx/
4006 F:      include/uapi/drm/vmwgfx_drm.h
4007
4008 DRM DRIVERS FOR VC4
4009 M:      Eric Anholt <eric@anholt.net>
4010 T:      git git://github.com/anholt/linux
4011 S:      Supported
4012 F:      drivers/gpu/drm/vc4/
4013 F:      include/uapi/drm/vc4_drm.h
4014 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4015
4016 DSBR100 USB FM RADIO DRIVER
4017 M:      Alexey Klimov <klimov.linux@gmail.com>
4018 L:      linux-media@vger.kernel.org
4019 T:      git git://linuxtv.org/media_tree.git
4020 S:      Maintained
4021 F:      drivers/media/radio/dsbr100.c
4022
4023 DSCC4 DRIVER
4024 M:      Francois Romieu <romieu@fr.zoreil.com>
4025 L:      netdev@vger.kernel.org
4026 S:      Maintained
4027 F:      drivers/net/wan/dscc4.c
4028
4029 DT3155 MEDIA DRIVER
4030 M:      Hans Verkuil <hverkuil@xs4all.nl>
4031 L:      linux-media@vger.kernel.org
4032 T:      git git://linuxtv.org/media_tree.git
4033 W:      https://linuxtv.org
4034 S:      Odd Fixes
4035 F:      drivers/media/pci/dt3155/
4036
4037 DVB_USB_AF9015 MEDIA DRIVER
4038 M:      Antti Palosaari <crope@iki.fi>
4039 L:      linux-media@vger.kernel.org
4040 W:      https://linuxtv.org
4041 W:      http://palosaari.fi/linux/
4042 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4043 T:      git git://linuxtv.org/anttip/media_tree.git
4044 S:      Maintained
4045 F:      drivers/media/usb/dvb-usb-v2/af9015*
4046
4047 DVB_USB_AF9035 MEDIA DRIVER
4048 M:      Antti Palosaari <crope@iki.fi>
4049 L:      linux-media@vger.kernel.org
4050 W:      https://linuxtv.org
4051 W:      http://palosaari.fi/linux/
4052 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4053 T:      git git://linuxtv.org/anttip/media_tree.git
4054 S:      Maintained
4055 F:      drivers/media/usb/dvb-usb-v2/af9035*
4056
4057 DVB_USB_ANYSEE MEDIA DRIVER
4058 M:      Antti Palosaari <crope@iki.fi>
4059 L:      linux-media@vger.kernel.org
4060 W:      https://linuxtv.org
4061 W:      http://palosaari.fi/linux/
4062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4063 T:      git git://linuxtv.org/anttip/media_tree.git
4064 S:      Maintained
4065 F:      drivers/media/usb/dvb-usb-v2/anysee*
4066
4067 DVB_USB_AU6610 MEDIA DRIVER
4068 M:      Antti Palosaari <crope@iki.fi>
4069 L:      linux-media@vger.kernel.org
4070 W:      https://linuxtv.org
4071 W:      http://palosaari.fi/linux/
4072 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4073 T:      git git://linuxtv.org/anttip/media_tree.git
4074 S:      Maintained
4075 F:      drivers/media/usb/dvb-usb-v2/au6610*
4076
4077 DVB_USB_CE6230 MEDIA DRIVER
4078 M:      Antti Palosaari <crope@iki.fi>
4079 L:      linux-media@vger.kernel.org
4080 W:      https://linuxtv.org
4081 W:      http://palosaari.fi/linux/
4082 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4083 T:      git git://linuxtv.org/anttip/media_tree.git
4084 S:      Maintained
4085 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4086
4087 DVB_USB_CXUSB MEDIA DRIVER
4088 M:      Michael Krufky <mkrufky@linuxtv.org>
4089 L:      linux-media@vger.kernel.org
4090 W:      https://linuxtv.org
4091 W:      http://github.com/mkrufky
4092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4093 T:      git git://linuxtv.org/media_tree.git
4094 S:      Maintained
4095 F:      drivers/media/usb/dvb-usb/cxusb*
4096
4097 DVB_USB_EC168 MEDIA DRIVER
4098 M:      Antti Palosaari <crope@iki.fi>
4099 L:      linux-media@vger.kernel.org
4100 W:      https://linuxtv.org
4101 W:      http://palosaari.fi/linux/
4102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4103 T:      git git://linuxtv.org/anttip/media_tree.git
4104 S:      Maintained
4105 F:      drivers/media/usb/dvb-usb-v2/ec168*
4106
4107 DVB_USB_GL861 MEDIA DRIVER
4108 M:      Antti Palosaari <crope@iki.fi>
4109 L:      linux-media@vger.kernel.org
4110 W:      https://linuxtv.org
4111 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4112 T:      git git://linuxtv.org/anttip/media_tree.git
4113 S:      Maintained
4114 F:      drivers/media/usb/dvb-usb-v2/gl861*
4115
4116 DVB_USB_MXL111SF MEDIA DRIVER
4117 M:      Michael Krufky <mkrufky@linuxtv.org>
4118 L:      linux-media@vger.kernel.org
4119 W:      https://linuxtv.org
4120 W:      http://github.com/mkrufky
4121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4122 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4123 S:      Maintained
4124 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4125
4126 DVB_USB_RTL28XXU MEDIA DRIVER
4127 M:      Antti Palosaari <crope@iki.fi>
4128 L:      linux-media@vger.kernel.org
4129 W:      https://linuxtv.org
4130 W:      http://palosaari.fi/linux/
4131 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4132 T:      git git://linuxtv.org/anttip/media_tree.git
4133 S:      Maintained
4134 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4135
4136 DVB_USB_V2 MEDIA DRIVER
4137 M:      Antti Palosaari <crope@iki.fi>
4138 L:      linux-media@vger.kernel.org
4139 W:      https://linuxtv.org
4140 W:      http://palosaari.fi/linux/
4141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4142 T:      git git://linuxtv.org/anttip/media_tree.git
4143 S:      Maintained
4144 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4145 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4146
4147 DYNAMIC DEBUG
4148 M:      Jason Baron <jbaron@akamai.com>
4149 S:      Maintained
4150 F:      lib/dynamic_debug.c
4151 F:      include/linux/dynamic_debug.h
4152
4153 DZ DECSTATION DZ11 SERIAL DRIVER
4154 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4155 S:      Maintained
4156 F:      drivers/tty/serial/dz.*
4157
4158 E3X0 POWER BUTTON DRIVER
4159 M:      Moritz Fischer <moritz.fischer@ettus.com>
4160 L:      usrp-users@lists.ettus.com
4161 W:      http://www.ettus.com
4162 S:      Supported
4163 F:      drivers/input/misc/e3x0-button.c
4164 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4165
4166 E4000 MEDIA DRIVER
4167 M:      Antti Palosaari <crope@iki.fi>
4168 L:      linux-media@vger.kernel.org
4169 W:      https://linuxtv.org
4170 W:      http://palosaari.fi/linux/
4171 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4172 T:      git git://linuxtv.org/anttip/media_tree.git
4173 S:      Maintained
4174 F:      drivers/media/tuners/e4000*
4175
4176 EATA ISA/EISA/PCI SCSI DRIVER
4177 M:      Dario Ballabio <ballabio_dario@emc.com>
4178 L:      linux-scsi@vger.kernel.org
4179 S:      Maintained
4180 F:      drivers/scsi/eata.c
4181
4182 EC100 MEDIA DRIVER
4183 M:      Antti Palosaari <crope@iki.fi>
4184 L:      linux-media@vger.kernel.org
4185 W:      https://linuxtv.org
4186 W:      http://palosaari.fi/linux/
4187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4188 T:      git git://linuxtv.org/anttip/media_tree.git
4189 S:      Maintained
4190 F:      drivers/media/dvb-frontends/ec100*
4191
4192 ECRYPT FILE SYSTEM
4193 M:      Tyler Hicks <tyhicks@canonical.com>
4194 L:      ecryptfs@vger.kernel.org
4195 W:      http://ecryptfs.org
4196 W:      https://launchpad.net/ecryptfs
4197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4198 S:      Supported
4199 F:      Documentation/filesystems/ecryptfs.txt
4200 F:      fs/ecryptfs/
4201
4202 EDAC-CORE
4203 M:      Doug Thompson <dougthompson@xmission.com>
4204 M:      Borislav Petkov <bp@alien8.de>
4205 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4206 L:      linux-edac@vger.kernel.org
4207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4209 S:      Supported
4210 F:      Documentation/edac.txt
4211 F:      drivers/edac/
4212 F:      include/linux/edac.h
4213
4214 EDAC-AMD64
4215 M:      Doug Thompson <dougthompson@xmission.com>
4216 M:      Borislav Petkov <bp@alien8.de>
4217 L:      linux-edac@vger.kernel.org
4218 S:      Maintained
4219 F:      drivers/edac/amd64_edac*
4220
4221 EDAC-CALXEDA
4222 M:      Doug Thompson <dougthompson@xmission.com>
4223 M:      Robert Richter <rric@kernel.org>
4224 L:      linux-edac@vger.kernel.org
4225 S:      Maintained
4226 F:      drivers/edac/highbank*
4227
4228 EDAC-CAVIUM
4229 M:      Ralf Baechle <ralf@linux-mips.org>
4230 M:      David Daney <david.daney@cavium.com>
4231 L:      linux-edac@vger.kernel.org
4232 L:      linux-mips@linux-mips.org
4233 S:      Supported
4234 F:      drivers/edac/octeon_edac*
4235
4236 EDAC-E752X
4237 M:      Mark Gross <mark.gross@intel.com>
4238 M:      Doug Thompson <dougthompson@xmission.com>
4239 L:      linux-edac@vger.kernel.org
4240 S:      Maintained
4241 F:      drivers/edac/e752x_edac.c
4242
4243 EDAC-E7XXX
4244 M:      Doug Thompson <dougthompson@xmission.com>
4245 L:      linux-edac@vger.kernel.org
4246 S:      Maintained
4247 F:      drivers/edac/e7xxx_edac.c
4248
4249 EDAC-GHES
4250 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4251 L:      linux-edac@vger.kernel.org
4252 S:      Maintained
4253 F:      drivers/edac/ghes_edac.c
4254
4255 EDAC-I82443BXGX
4256 M:      Tim Small <tim@buttersideup.com>
4257 L:      linux-edac@vger.kernel.org
4258 S:      Maintained
4259 F:      drivers/edac/i82443bxgx_edac.c
4260
4261 EDAC-I3000
4262 M:      Jason Uhlenkott <juhlenko@akamai.com>
4263 L:      linux-edac@vger.kernel.org
4264 S:      Maintained
4265 F:      drivers/edac/i3000_edac.c
4266
4267 EDAC-I5000
4268 M:      Doug Thompson <dougthompson@xmission.com>
4269 L:      linux-edac@vger.kernel.org
4270 S:      Maintained
4271 F:      drivers/edac/i5000_edac.c
4272
4273 EDAC-I5400
4274 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4275 L:      linux-edac@vger.kernel.org
4276 S:      Maintained
4277 F:      drivers/edac/i5400_edac.c
4278
4279 EDAC-I7300
4280 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4281 L:      linux-edac@vger.kernel.org
4282 S:      Maintained
4283 F:      drivers/edac/i7300_edac.c
4284
4285 EDAC-I7CORE
4286 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4287 L:      linux-edac@vger.kernel.org
4288 S:      Maintained
4289 F:      drivers/edac/i7core_edac.c
4290
4291 EDAC-I82975X
4292 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4293 M:      "Arvind R." <arvino55@gmail.com>
4294 L:      linux-edac@vger.kernel.org
4295 S:      Maintained
4296 F:      drivers/edac/i82975x_edac.c
4297
4298 EDAC-IE31200
4299 M:      Jason Baron <jbaron@akamai.com>
4300 L:      linux-edac@vger.kernel.org
4301 S:      Maintained
4302 F:      drivers/edac/ie31200_edac.c
4303
4304 EDAC-MPC85XX
4305 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4306 L:      linux-edac@vger.kernel.org
4307 S:      Maintained
4308 F:      drivers/edac/mpc85xx_edac.[ch]
4309
4310 EDAC-PASEMI
4311 M:      Egor Martovetsky <egor@pasemi.com>
4312 L:      linux-edac@vger.kernel.org
4313 S:      Maintained
4314 F:      drivers/edac/pasemi_edac.c
4315
4316 EDAC-R82600
4317 M:      Tim Small <tim@buttersideup.com>
4318 L:      linux-edac@vger.kernel.org
4319 S:      Maintained
4320 F:      drivers/edac/r82600_edac.c
4321
4322 EDAC-SBRIDGE
4323 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4324 L:      linux-edac@vger.kernel.org
4325 S:      Maintained
4326 F:      drivers/edac/sb_edac.c
4327
4328 EDAC-XGENE
4329 APPLIED MICRO (APM) X-GENE SOC EDAC
4330 M:     Loc Ho <lho@apm.com>
4331 S:     Supported
4332 F:     drivers/edac/xgene_edac.c
4333 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4334
4335 EDIROL UA-101/UA-1000 DRIVER
4336 M:      Clemens Ladisch <clemens@ladisch.de>
4337 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4338 T:      git git://git.alsa-project.org/alsa-kernel.git
4339 S:      Maintained
4340 F:      sound/usb/misc/ua101.c
4341
4342 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4343 M:      Matt Fleming <matt@codeblueprint.co.uk>
4344 L:      linux-efi@vger.kernel.org
4345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4346 S:      Maintained
4347 F:      Documentation/efi-stub.txt
4348 F:      arch/ia64/kernel/efi.c
4349 F:      arch/x86/boot/compressed/eboot.[ch]
4350 F:      arch/x86/include/asm/efi.h
4351 F:      arch/x86/platform/efi/
4352 F:      drivers/firmware/efi/
4353 F:      include/linux/efi*.h
4354
4355 EFI VARIABLE FILESYSTEM
4356 M:      Matthew Garrett <matthew.garrett@nebula.com>
4357 M:      Jeremy Kerr <jk@ozlabs.org>
4358 M:      Matt Fleming <matt@codeblueprint.co.uk>
4359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4360 L:      linux-efi@vger.kernel.org
4361 S:      Maintained
4362 F:      fs/efivarfs/
4363
4364 EFIFB FRAMEBUFFER DRIVER
4365 L:      linux-fbdev@vger.kernel.org
4366 M:      Peter Jones <pjones@redhat.com>
4367 S:      Maintained
4368 F:      drivers/video/fbdev/efifb.c
4369
4370 EFS FILESYSTEM
4371 W:      http://aeschi.ch.eu.org/efs/
4372 S:      Orphan
4373 F:      fs/efs/
4374
4375 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4376 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4377 L:      netdev@vger.kernel.org
4378 S:      Maintained
4379 F:      drivers/net/ethernet/ibm/ehea/
4380
4381 EM28XX VIDEO4LINUX DRIVER
4382 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4383 L:      linux-media@vger.kernel.org
4384 W:      https://linuxtv.org
4385 T:      git git://linuxtv.org/media_tree.git
4386 S:      Maintained
4387 F:      drivers/media/usb/em28xx/
4388
4389 EMBEDDED LINUX
4390 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4391 M:      Matt Mackall <mpm@selenic.com>
4392 M:      David Woodhouse <dwmw2@infradead.org>
4393 L:      linux-embedded@vger.kernel.org
4394 S:      Maintained
4395
4396 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4397 M:      James Smart <james.smart@avagotech.com>
4398 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4399 L:      linux-scsi@vger.kernel.org
4400 W:      http://www.avagotech.com
4401 S:      Supported
4402 F:      drivers/scsi/lpfc/
4403
4404 ENE CB710 FLASH CARD READER DRIVER
4405 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4406 S:      Maintained
4407 F:      drivers/misc/cb710/
4408 F:      drivers/mmc/host/cb710-mmc.*
4409 F:      include/linux/cb710.h
4410
4411 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4412 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4413 S:      Maintained
4414 F:      drivers/media/rc/ene_ir.*
4415
4416 EPSON S1D13XXX FRAMEBUFFER DRIVER
4417 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4418 S:      Maintained
4419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4420 F:      drivers/video/fbdev/s1d13xxxfb.c
4421 F:      include/video/s1d13xxxfb.h
4422
4423 ET131X NETWORK DRIVER
4424 M:      Mark Einon <mark.einon@gmail.com>
4425 S:      Odd Fixes
4426 F:      drivers/net/ethernet/agere/
4427
4428 ETHERNET BRIDGE
4429 M:      Stephen Hemminger <stephen@networkplumber.org>
4430 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4431 L:      netdev@vger.kernel.org
4432 W:      http://www.linuxfoundation.org/en/Net:Bridge
4433 S:      Maintained
4434 F:      include/linux/netfilter_bridge/
4435 F:      net/bridge/
4436
4437 ETHERNET PHY LIBRARY
4438 M:      Florian Fainelli <f.fainelli@gmail.com>
4439 L:      netdev@vger.kernel.org
4440 S:      Maintained
4441 F:      include/linux/phy.h
4442 F:      include/linux/phy_fixed.h
4443 F:      drivers/net/phy/
4444 F:      Documentation/networking/phy.txt
4445 F:      drivers/of/of_mdio.c
4446 F:      drivers/of/of_net.c
4447
4448 EXT2 FILE SYSTEM
4449 M:      Jan Kara <jack@suse.com>
4450 L:      linux-ext4@vger.kernel.org
4451 S:      Maintained
4452 F:      Documentation/filesystems/ext2.txt
4453 F:      fs/ext2/
4454 F:      include/linux/ext2*
4455
4456 EXT4 FILE SYSTEM
4457 M:      "Theodore Ts'o" <tytso@mit.edu>
4458 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4459 L:      linux-ext4@vger.kernel.org
4460 W:      http://ext4.wiki.kernel.org
4461 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4463 S:      Maintained
4464 F:      Documentation/filesystems/ext4.txt
4465 F:      fs/ext4/
4466
4467 Extended Verification Module (EVM)
4468 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4469 L:      linux-ima-devel@lists.sourceforge.net
4470 L:      linux-security-module@vger.kernel.org
4471 S:      Supported
4472 F:      security/integrity/evm/
4473
4474 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4475 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4476 M:      Chanwoo Choi <cw00.choi@samsung.com>
4477 L:      linux-kernel@vger.kernel.org
4478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4479 S:      Maintained
4480 F:      drivers/extcon/
4481 F:      include/linux/extcon/
4482 F:      include/linux/extcon.h
4483 F:      Documentation/extcon/
4484 F:      Documentation/devicetree/bindings/extcon/
4485
4486 EXYNOS DP DRIVER
4487 M:      Jingoo Han <jingoohan1@gmail.com>
4488 L:      dri-devel@lists.freedesktop.org
4489 S:      Maintained
4490 F:      drivers/gpu/drm/exynos/exynos_dp*
4491
4492 EXYNOS SYSMMU (IOMMU) driver
4493 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4494 L:      iommu@lists.linux-foundation.org
4495 S:      Maintained
4496 F:      drivers/iommu/exynos-iommu.c
4497
4498 EXYNOS MIPI DISPLAY DRIVERS
4499 M:      Inki Dae <inki.dae@samsung.com>
4500 M:      Donghwa Lee <dh09.lee@samsung.com>
4501 M:      Kyungmin Park <kyungmin.park@samsung.com>
4502 L:      linux-fbdev@vger.kernel.org
4503 S:      Maintained
4504 F:      drivers/video/fbdev/exynos/exynos_mipi*
4505 F:      include/video/exynos_mipi*
4506
4507 F71805F HARDWARE MONITORING DRIVER
4508 M:      Jean Delvare <jdelvare@suse.com>
4509 L:      linux-hwmon@vger.kernel.org
4510 S:      Maintained
4511 F:      Documentation/hwmon/f71805f
4512 F:      drivers/hwmon/f71805f.c
4513
4514 FC0011 TUNER DRIVER
4515 M:      Michael Buesch <m@bues.ch>
4516 L:      linux-media@vger.kernel.org
4517 S:      Maintained
4518 F:      drivers/media/tuners/fc0011.h
4519 F:      drivers/media/tuners/fc0011.c
4520
4521 FC2580 MEDIA DRIVER
4522 M:      Antti Palosaari <crope@iki.fi>
4523 L:      linux-media@vger.kernel.org
4524 W:      https://linuxtv.org
4525 W:      http://palosaari.fi/linux/
4526 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4527 T:      git git://linuxtv.org/anttip/media_tree.git
4528 S:      Maintained
4529 F:      drivers/media/tuners/fc2580*
4530
4531 FANOTIFY
4532 M:      Eric Paris <eparis@redhat.com>
4533 S:      Maintained
4534 F:      fs/notify/fanotify/
4535 F:      include/linux/fanotify.h
4536 F:      include/uapi/linux/fanotify.h
4537
4538 FARSYNC SYNCHRONOUS DRIVER
4539 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4540 W:      http://www.farsite.co.uk/
4541 S:      Supported
4542 F:      drivers/net/wan/farsync.*
4543
4544 FAULT INJECTION SUPPORT
4545 M:      Akinobu Mita <akinobu.mita@gmail.com>
4546 S:      Supported
4547 F:      Documentation/fault-injection/
4548 F:      lib/fault-inject.c
4549
4550 FBTFT Framebuffer drivers
4551 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4552 M:      Noralf Trønnes <noralf@tronnes.org>
4553 S:      Maintained
4554 F:      drivers/staging/fbtft/
4555
4556 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4557 M:      Vasu Dev <vasu.dev@intel.com>
4558 L:      fcoe-devel@open-fcoe.org
4559 W:      www.Open-FCoE.org
4560 S:      Supported
4561 F:      drivers/scsi/libfc/
4562 F:      drivers/scsi/fcoe/
4563 F:      include/scsi/fc/
4564 F:      include/scsi/libfc.h
4565 F:      include/scsi/libfcoe.h
4566 F:      include/uapi/scsi/fc/
4567
4568 FILE LOCKING (flock() and fcntl()/lockf())
4569 M:      Jeff Layton <jlayton@poochiereds.net>
4570 M:      "J. Bruce Fields" <bfields@fieldses.org>
4571 L:      linux-fsdevel@vger.kernel.org
4572 S:      Maintained
4573 F:      include/linux/fcntl.h
4574 F:      include/linux/fs.h
4575 F:      include/uapi/linux/fcntl.h
4576 F:      include/uapi/linux/fs.h
4577 F:      fs/fcntl.c
4578 F:      fs/locks.c
4579
4580 FILESYSTEMS (VFS and infrastructure)
4581 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4582 L:      linux-fsdevel@vger.kernel.org
4583 S:      Maintained
4584 F:      fs/*
4585
4586 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4587 M:      Riku Voipio <riku.voipio@iki.fi>
4588 L:      linux-hwmon@vger.kernel.org
4589 S:      Maintained
4590 F:      drivers/hwmon/f75375s.c
4591 F:      include/linux/f75375s.h
4592
4593 FIREWIRE AUDIO DRIVERS
4594 M:      Clemens Ladisch <clemens@ladisch.de>
4595 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4596 T:      git git://git.alsa-project.org/alsa-kernel.git
4597 S:      Maintained
4598 F:      sound/firewire/
4599
4600 FIREWIRE MEDIA DRIVERS (firedtv)
4601 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4602 L:      linux-media@vger.kernel.org
4603 L:      linux1394-devel@lists.sourceforge.net
4604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4605 S:      Maintained
4606 F:      drivers/media/firewire/
4607
4608 FIREWIRE SBP-2 TARGET
4609 M:      Chris Boot <bootc@bootc.net>
4610 L:      linux-scsi@vger.kernel.org
4611 L:      target-devel@vger.kernel.org
4612 L:      linux1394-devel@lists.sourceforge.net
4613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4614 S:      Maintained
4615 F:      drivers/target/sbp/
4616
4617 FIREWIRE SUBSYSTEM
4618 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4619 L:      linux1394-devel@lists.sourceforge.net
4620 W:      http://ieee1394.wiki.kernel.org/
4621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4622 S:      Maintained
4623 F:      drivers/firewire/
4624 F:      include/linux/firewire.h
4625 F:      include/uapi/linux/firewire*.h
4626 F:      tools/firewire/
4627
4628 FIRMWARE LOADER (request_firmware)
4629 M:      Ming Lei <ming.lei@canonical.com>
4630 L:      linux-kernel@vger.kernel.org
4631 S:      Maintained
4632 F:      Documentation/firmware_class/
4633 F:      drivers/base/firmware*.c
4634 F:      include/linux/firmware.h
4635
4636 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4637 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4638 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4639 S:      Maintained
4640 F:      drivers/block/rsxx/
4641
4642 FLOPPY DRIVER
4643 M:      Jiri Kosina <jikos@kernel.org>
4644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4645 S:      Odd fixes
4646 F:      drivers/block/floppy.c
4647
4648 FMC SUBSYSTEM
4649 M:      Alessandro Rubini <rubini@gnudd.com>
4650 W:      http://www.ohwr.org/projects/fmc-bus
4651 S:      Supported
4652 F:      drivers/fmc/
4653 F:      include/linux/fmc*.h
4654 F:      include/linux/ipmi-fru.h
4655 K:      fmc_d.*register
4656
4657 FPGA MANAGER FRAMEWORK
4658 M:      Alan Tull <atull@opensource.altera.com>
4659 R:      Moritz Fischer <moritz.fischer@ettus.com>
4660 S:      Maintained
4661 F:      drivers/fpga/
4662 F:      include/linux/fpga/fpga-mgr.h
4663 W:      http://www.rocketboards.org
4664
4665 FPU EMULATOR
4666 M:      Bill Metzenthen <billm@melbpc.org.au>
4667 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4668 S:      Maintained
4669 F:      arch/x86/math-emu/
4670
4671 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4672 L:      netdev@vger.kernel.org
4673 S:      Orphan
4674 F:      drivers/net/wan/dlci.c
4675 F:      drivers/net/wan/sdla.c
4676
4677 FRAMEBUFFER LAYER
4678 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4679 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4680 L:      linux-fbdev@vger.kernel.org
4681 W:      http://linux-fbdev.sourceforge.net/
4682 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4684 S:      Maintained
4685 F:      Documentation/fb/
4686 F:      drivers/video/
4687 F:      include/video/
4688 F:      include/linux/fb.h
4689 F:      include/uapi/video/
4690 F:      include/uapi/linux/fb.h
4691
4692 FREESCALE DIU FRAMEBUFFER DRIVER
4693 M:      Timur Tabi <timur@tabi.org>
4694 L:      linux-fbdev@vger.kernel.org
4695 S:      Maintained
4696 F:      drivers/video/fbdev/fsl-diu-fb.*
4697
4698 FREESCALE DMA DRIVER
4699 M:      Li Yang <leoli@freescale.com>
4700 M:      Zhang Wei <zw@zh-kernel.org>
4701 L:      linuxppc-dev@lists.ozlabs.org
4702 S:      Maintained
4703 F:      drivers/dma/fsldma.*
4704
4705 FREESCALE GPMI NAND DRIVER
4706 M:      Han Xu <han.xu@nxp.com>
4707 L:      linux-mtd@lists.infradead.org
4708 S:      Maintained
4709 F:      drivers/mtd/nand/gpmi-nand/*
4710
4711 FREESCALE I2C CPM DRIVER
4712 M:      Jochen Friedrich <jochen@scram.de>
4713 L:      linuxppc-dev@lists.ozlabs.org
4714 L:      linux-i2c@vger.kernel.org
4715 S:      Maintained
4716 F:      drivers/i2c/busses/i2c-cpm.c
4717
4718 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4719 M:      Sascha Hauer <kernel@pengutronix.de>
4720 L:      linux-fbdev@vger.kernel.org
4721 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4722 S:      Maintained
4723 F:      include/linux/platform_data/video-imxfb.h
4724 F:      drivers/video/fbdev/imxfb.c
4725
4726 FREESCALE QUAD SPI DRIVER
4727 M:      Han Xu <han.xu@nxp.com>
4728 L:      linux-mtd@lists.infradead.org
4729 S:      Maintained
4730 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4731
4732 FREESCALE SOC FS_ENET DRIVER
4733 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4734 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4735 L:      linuxppc-dev@lists.ozlabs.org
4736 L:      netdev@vger.kernel.org
4737 S:      Maintained
4738 F:      drivers/net/ethernet/freescale/fs_enet/
4739 F:      include/linux/fs_enet_pd.h
4740
4741 FREESCALE IMX / MXC FEC DRIVER
4742 M:      Fugang Duan <fugang.duan@nxp.com>
4743 L:      netdev@vger.kernel.org
4744 S:      Maintained
4745 F:      drivers/net/ethernet/freescale/fec_main.c
4746 F:      drivers/net/ethernet/freescale/fec_ptp.c
4747 F:      drivers/net/ethernet/freescale/fec.h
4748 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4749
4750 FREESCALE QUICC ENGINE LIBRARY
4751 L:      linuxppc-dev@lists.ozlabs.org
4752 S:      Orphan
4753 F:      drivers/soc/fsl/qe/
4754 F:      include/soc/fsl/*qe*.h
4755 F:      include/soc/fsl/*ucc*.h
4756
4757 FREESCALE USB PERIPHERAL DRIVERS
4758 M:      Li Yang <leoli@freescale.com>
4759 L:      linux-usb@vger.kernel.org
4760 L:      linuxppc-dev@lists.ozlabs.org
4761 S:      Maintained
4762 F:      drivers/usb/gadget/udc/fsl*
4763
4764 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4765 M:      Li Yang <leoli@freescale.com>
4766 L:      netdev@vger.kernel.org
4767 L:      linuxppc-dev@lists.ozlabs.org
4768 S:      Maintained
4769 F:      drivers/net/ethernet/freescale/ucc_geth*
4770
4771 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4772 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4773 L:      netdev@vger.kernel.org
4774 S:      Maintained
4775 F:      drivers/net/ethernet/freescale/gianfar*
4776 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4777 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4778
4779 FREESCALE QUICC ENGINE UCC UART DRIVER
4780 M:      Timur Tabi <timur@tabi.org>
4781 L:      linuxppc-dev@lists.ozlabs.org
4782 S:      Maintained
4783 F:      drivers/tty/serial/ucc_uart.c
4784
4785 FREESCALE SOC SOUND DRIVERS
4786 M:      Timur Tabi <timur@tabi.org>
4787 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4788 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4789 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4790 L:      linuxppc-dev@lists.ozlabs.org
4791 S:      Maintained
4792 F:      sound/soc/fsl/fsl*
4793 F:      sound/soc/fsl/imx*
4794 F:      sound/soc/fsl/mpc8610_hpcd.c
4795
4796 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4797 M:      "J. German Rivera" <German.Rivera@freescale.com>
4798 L:      linux-kernel@vger.kernel.org
4799 S:      Maintained
4800 F:      drivers/staging/fsl-mc/
4801
4802 FREEVXFS FILESYSTEM
4803 M:      Christoph Hellwig <hch@infradead.org>
4804 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4805 S:      Maintained
4806 F:      fs/freevxfs/
4807
4808 FREEZER
4809 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4810 M:      Pavel Machek <pavel@ucw.cz>
4811 L:      linux-pm@vger.kernel.org
4812 S:      Supported
4813 F:      Documentation/power/freezing-of-tasks.txt
4814 F:      include/linux/freezer.h
4815 F:      kernel/freezer.c
4816
4817 FRONTSWAP API
4818 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4819 L:      linux-kernel@vger.kernel.org
4820 S:      Maintained
4821 F:      mm/frontswap.c
4822 F:      include/linux/frontswap.h
4823
4824 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4825 M:      David Howells <dhowells@redhat.com>
4826 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4827 S:      Supported
4828 F:      Documentation/filesystems/caching/
4829 F:      fs/fscache/
4830 F:      include/linux/fscache*.h
4831
4832 F2FS FILE SYSTEM
4833 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4834 M:      Changman Lee <cm224.lee@samsung.com>
4835 R:      Chao Yu <chao2.yu@samsung.com>
4836 L:      linux-f2fs-devel@lists.sourceforge.net
4837 W:      http://en.wikipedia.org/wiki/F2FS
4838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4839 S:      Maintained
4840 F:      Documentation/filesystems/f2fs.txt
4841 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4842 F:      fs/f2fs/
4843 F:      include/linux/f2fs_fs.h
4844 F:      include/trace/events/f2fs.h
4845
4846 FUJITSU FR-V (FRV) PORT
4847 S:      Orphan
4848 F:      arch/frv/
4849
4850 FUJITSU LAPTOP EXTRAS
4851 M:      Jonathan Woithe <jwoithe@just42.net>
4852 L:      platform-driver-x86@vger.kernel.org
4853 S:      Maintained
4854 F:      drivers/platform/x86/fujitsu-laptop.c
4855
4856 FUJITSU M-5MO LS CAMERA ISP DRIVER
4857 M:      Kyungmin Park <kyungmin.park@samsung.com>
4858 M:      Heungjun Kim <riverful.kim@samsung.com>
4859 L:      linux-media@vger.kernel.org
4860 S:      Maintained
4861 F:      drivers/media/i2c/m5mols/
4862 F:      include/media/i2c/m5mols.h
4863
4864 FUJITSU TABLET EXTRAS
4865 M:      Robert Gerlach <khnz@gmx.de>
4866 L:      platform-driver-x86@vger.kernel.org
4867 S:      Maintained
4868 F:      drivers/platform/x86/fujitsu-tablet.c
4869
4870 FUSE: FILESYSTEM IN USERSPACE
4871 M:      Miklos Szeredi <miklos@szeredi.hu>
4872 L:      linux-fsdevel@vger.kernel.org
4873 W:      http://fuse.sourceforge.net/
4874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4875 S:      Maintained
4876 F:      fs/fuse/
4877 F:      include/uapi/linux/fuse.h
4878 F:      Documentation/filesystems/fuse.txt
4879
4880 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4881 M:      Rik Faith <faith@cs.unc.edu>
4882 L:      linux-scsi@vger.kernel.org
4883 S:      Odd Fixes (e.g., new signatures)
4884 F:      drivers/scsi/fdomain.*
4885
4886 GCOV BASED KERNEL PROFILING
4887 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4888 S:      Maintained
4889 F:      kernel/gcov/
4890 F:      Documentation/gcov.txt
4891
4892 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4893 M:      Achim Leubner <achim_leubner@adaptec.com>
4894 L:      linux-scsi@vger.kernel.org
4895 W:      http://www.icp-vortex.com/
4896 S:      Supported
4897 F:      drivers/scsi/gdt*
4898
4899 GDB KERNEL DEBUGGING HELPER SCRIPTS
4900 M:      Jan Kiszka <jan.kiszka@siemens.com>
4901 S:      Supported
4902 F:      scripts/gdb/
4903
4904 GEMTEK FM RADIO RECEIVER DRIVER
4905 M:      Hans Verkuil <hverkuil@xs4all.nl>
4906 L:      linux-media@vger.kernel.org
4907 T:      git git://linuxtv.org/media_tree.git
4908 W:      https://linuxtv.org
4909 S:      Maintained
4910 F:      drivers/media/radio/radio-gemtek*
4911
4912 GENERIC GPIO I2C DRIVER
4913 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4914 S:      Supported
4915 F:      drivers/i2c/busses/i2c-gpio.c
4916 F:      include/linux/i2c-gpio.h
4917
4918 GENERIC GPIO I2C MULTIPLEXER DRIVER
4919 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4920 L:      linux-i2c@vger.kernel.org
4921 S:      Supported
4922 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4923 F:      include/linux/i2c-mux-gpio.h
4924 F:      Documentation/i2c/muxes/i2c-mux-gpio
4925
4926 GENERIC HDLC (WAN) DRIVERS
4927 M:      Krzysztof Halasa <khc@pm.waw.pl>
4928 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4929 S:      Maintained
4930 F:      drivers/net/wan/c101.c
4931 F:      drivers/net/wan/hd6457*
4932 F:      drivers/net/wan/hdlc*
4933 F:      drivers/net/wan/n2.c
4934 F:      drivers/net/wan/pc300too.c
4935 F:      drivers/net/wan/pci200syn.c
4936 F:      drivers/net/wan/wanxl*
4937
4938 GENERIC INCLUDE/ASM HEADER FILES
4939 M:      Arnd Bergmann <arnd@arndb.de>
4940 L:      linux-arch@vger.kernel.org
4941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4942 S:      Maintained
4943 F:      include/asm-generic/
4944 F:      include/uapi/asm-generic/
4945
4946 GENERIC PHY FRAMEWORK
4947 M:      Kishon Vijay Abraham I <kishon@ti.com>
4948 L:      linux-kernel@vger.kernel.org
4949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4950 S:      Supported
4951 F:      drivers/phy/
4952 F:      include/linux/phy/
4953
4954 GENERIC PM DOMAINS
4955 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4956 M:      Kevin Hilman <khilman@kernel.org>
4957 M:      Ulf Hansson <ulf.hansson@linaro.org>
4958 L:      linux-pm@vger.kernel.org
4959 S:      Supported
4960 F:      drivers/base/power/domain*.c
4961 F:      include/linux/pm_domain.h
4962
4963 GENERIC UIO DRIVER FOR PCI DEVICES
4964 M:      "Michael S. Tsirkin" <mst@redhat.com>
4965 L:      kvm@vger.kernel.org
4966 S:      Supported
4967 F:      drivers/uio/uio_pci_generic.c
4968
4969 GET_MAINTAINER SCRIPT
4970 M:      Joe Perches <joe@perches.com>
4971 S:      Maintained
4972 F:      scripts/get_maintainer.pl
4973
4974 GFS2 FILE SYSTEM
4975 M:      Steven Whitehouse <swhiteho@redhat.com>
4976 M:      Bob Peterson <rpeterso@redhat.com>
4977 L:      cluster-devel@redhat.com
4978 W:      http://sources.redhat.com/cluster/
4979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4980 S:      Supported
4981 F:      Documentation/filesystems/gfs2*.txt
4982 F:      fs/gfs2/
4983 F:      include/uapi/linux/gfs2_ondisk.h
4984
4985 GIGASET ISDN DRIVERS
4986 M:      Paul Bolle <pebolle@tiscali.nl>
4987 L:      gigaset307x-common@lists.sourceforge.net
4988 W:      http://gigaset307x.sourceforge.net/
4989 S:      Odd Fixes
4990 F:      Documentation/isdn/README.gigaset
4991 F:      drivers/isdn/gigaset/
4992 F:      include/uapi/linux/gigaset_dev.h
4993
4994 GO7007 MPEG CODEC
4995 M:      Hans Verkuil <hans.verkuil@cisco.com>
4996 L:      linux-media@vger.kernel.org
4997 S:      Maintained
4998 F:      drivers/media/usb/go7007/
4999
5000 GOODIX TOUCHSCREEN
5001 M:      Bastien Nocera <hadess@hadess.net>
5002 L:      linux-input@vger.kernel.org
5003 S:      Maintained
5004 F:      drivers/input/touchscreen/goodix.c
5005
5006 GPIO SUBSYSTEM
5007 M:      Linus Walleij <linus.walleij@linaro.org>
5008 M:      Alexandre Courbot <gnurou@gmail.com>
5009 L:      linux-gpio@vger.kernel.org
5010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5011 S:      Maintained
5012 F:      Documentation/gpio/
5013 F:      Documentation/ABI/testing/gpio-cdev
5014 F:      Documentation/ABI/obsolete/sysfs-gpio
5015 F:      drivers/gpio/
5016 F:      include/linux/gpio/
5017 F:      include/linux/gpio.h
5018 F:      include/asm-generic/gpio.h
5019 F:      include/uapi/linux/gpio.h
5020 F:      tools/gpio/
5021
5022 GRE DEMULTIPLEXER DRIVER
5023 M:      Dmitry Kozlov <xeb@mail.ru>
5024 L:      netdev@vger.kernel.org
5025 S:      Maintained
5026 F:      net/ipv4/gre_demux.c
5027 F:      net/ipv4/gre_offload.c
5028 F:      include/net/gre.h
5029
5030 GRETH 10/100/1G Ethernet MAC device driver
5031 M:      Andreas Larsson <andreas@gaisler.com>
5032 L:      netdev@vger.kernel.org
5033 S:      Maintained
5034 F:      drivers/net/ethernet/aeroflex/
5035
5036 GSPCA FINEPIX SUBDRIVER
5037 M:      Frank Zago <frank@zago.net>
5038 L:      linux-media@vger.kernel.org
5039 T:      git git://linuxtv.org/media_tree.git
5040 S:      Maintained
5041 F:      drivers/media/usb/gspca/finepix.c
5042
5043 GSPCA GL860 SUBDRIVER
5044 M:      Olivier Lorin <o.lorin@laposte.net>
5045 L:      linux-media@vger.kernel.org
5046 T:      git git://linuxtv.org/media_tree.git
5047 S:      Maintained
5048 F:      drivers/media/usb/gspca/gl860/
5049
5050 GSPCA M5602 SUBDRIVER
5051 M:      Erik Andren <erik.andren@gmail.com>
5052 L:      linux-media@vger.kernel.org
5053 T:      git git://linuxtv.org/media_tree.git
5054 S:      Maintained
5055 F:      drivers/media/usb/gspca/m5602/
5056
5057 GSPCA PAC207 SONIXB SUBDRIVER
5058 M:      Hans de Goede <hdegoede@redhat.com>
5059 L:      linux-media@vger.kernel.org
5060 T:      git git://linuxtv.org/media_tree.git
5061 S:      Maintained
5062 F:      drivers/media/usb/gspca/pac207.c
5063
5064 GSPCA SN9C20X SUBDRIVER
5065 M:      Brian Johnson <brijohn@gmail.com>
5066 L:      linux-media@vger.kernel.org
5067 T:      git git://linuxtv.org/media_tree.git
5068 S:      Maintained
5069 F:      drivers/media/usb/gspca/sn9c20x.c
5070
5071 GSPCA T613 SUBDRIVER
5072 M:      Leandro Costantino <lcostantino@gmail.com>
5073 L:      linux-media@vger.kernel.org
5074 T:      git git://linuxtv.org/media_tree.git
5075 S:      Maintained
5076 F:      drivers/media/usb/gspca/t613.c
5077
5078 GSPCA USB WEBCAM DRIVER
5079 M:      Hans de Goede <hdegoede@redhat.com>
5080 L:      linux-media@vger.kernel.org
5081 T:      git git://linuxtv.org/media_tree.git
5082 S:      Maintained
5083 F:      drivers/media/usb/gspca/
5084
5085 GUID PARTITION TABLE (GPT)
5086 M:      Davidlohr Bueso <dave@stgolabs.net>
5087 L:      linux-efi@vger.kernel.org
5088 S:      Maintained
5089 F:      block/partitions/efi.*
5090
5091 STK1160 USB VIDEO CAPTURE DRIVER
5092 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5093 L:      linux-media@vger.kernel.org
5094 T:      git git://linuxtv.org/media_tree.git
5095 S:      Maintained
5096 F:      drivers/media/usb/stk1160/
5097
5098 H8/300 ARCHITECTURE
5099 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5100 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5101 W:      http://uclinux-h8.sourceforge.jp
5102 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5103 S:      Maintained
5104 F:      arch/h8300/
5105 F:      drivers/clocksource/h8300_*.c
5106 F:      drivers/clk/h8300/
5107 F:      drivers/irqchip/irq-renesas-h8*.c
5108
5109 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5110 M:      Frank Seidel <frank@f-seidel.de>
5111 L:      platform-driver-x86@vger.kernel.org
5112 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5113 S:      Maintained
5114 F:      drivers/platform/x86/hdaps.c
5115
5116 HDPVR USB VIDEO ENCODER DRIVER
5117 M:      Hans Verkuil <hverkuil@xs4all.nl>
5118 L:      linux-media@vger.kernel.org
5119 T:      git git://linuxtv.org/media_tree.git
5120 W:      https://linuxtv.org
5121 S:      Odd Fixes
5122 F:      drivers/media/usb/hdpvr/
5123
5124 HWPOISON MEMORY FAILURE HANDLING
5125 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5126 L:      linux-mm@kvack.org
5127 S:      Maintained
5128 F:      mm/memory-failure.c
5129 F:      mm/hwpoison-inject.c
5130
5131 HYPERVISOR VIRTUAL CONSOLE DRIVER
5132 L:      linuxppc-dev@lists.ozlabs.org
5133 S:      Odd Fixes
5134 F:      drivers/tty/hvc/
5135
5136 HACKRF MEDIA DRIVER
5137 M:      Antti Palosaari <crope@iki.fi>
5138 L:      linux-media@vger.kernel.org
5139 W:      https://linuxtv.org
5140 W:      http://palosaari.fi/linux/
5141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5142 T:      git git://linuxtv.org/anttip/media_tree.git
5143 S:      Maintained
5144 F:      drivers/media/usb/hackrf/
5145
5146 HARDWARE MONITORING
5147 M:      Jean Delvare <jdelvare@suse.com>
5148 M:      Guenter Roeck <linux@roeck-us.net>
5149 L:      linux-hwmon@vger.kernel.org
5150 W:      http://hwmon.wiki.kernel.org/
5151 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5153 S:      Maintained
5154 F:      Documentation/hwmon/
5155 F:      drivers/hwmon/
5156 F:      include/linux/hwmon*.h
5157
5158 HARDWARE RANDOM NUMBER GENERATOR CORE
5159 M:      Matt Mackall <mpm@selenic.com>
5160 M:      Herbert Xu <herbert@gondor.apana.org.au>
5161 L:      linux-crypto@vger.kernel.org
5162 S:      Odd fixes
5163 F:      Documentation/hw_random.txt
5164 F:      drivers/char/hw_random/
5165 F:      include/linux/hw_random.h
5166
5167 HARDWARE SPINLOCK CORE
5168 M:      Ohad Ben-Cohen <ohad@wizery.com>
5169 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5170 L:      linux-remoteproc@vger.kernel.org
5171 S:      Maintained
5172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5173 F:      Documentation/hwspinlock.txt
5174 F:      drivers/hwspinlock/hwspinlock_*
5175 F:      include/linux/hwspinlock.h
5176
5177 HARMONY SOUND DRIVER
5178 L:      linux-parisc@vger.kernel.org
5179 S:      Maintained
5180 F:      sound/parisc/harmony.*
5181
5182 HD29L2 MEDIA DRIVER
5183 M:      Antti Palosaari <crope@iki.fi>
5184 L:      linux-media@vger.kernel.org
5185 W:      https://linuxtv.org
5186 W:      http://palosaari.fi/linux/
5187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5188 T:      git git://linuxtv.org/anttip/media_tree.git
5189 S:      Maintained
5190 F:      drivers/media/dvb-frontends/hd29l2*
5191
5192 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5193 M:      Don Brace <don.brace@microsemi.com>
5194 L:      iss_storagedev@hp.com
5195 L:      esc.storagedev@microsemi.com
5196 L:      linux-scsi@vger.kernel.org
5197 S:      Supported
5198 F:      Documentation/scsi/hpsa.txt
5199 F:      drivers/scsi/hpsa*.[ch]
5200 F:      include/linux/cciss*.h
5201 F:      include/uapi/linux/cciss*.h
5202
5203 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5204 M:      Don Brace <don.brace@microsemi.com>
5205 L:      iss_storagedev@hp.com
5206 L:      esc.storagedev@microsemi.com
5207 L:      linux-scsi@vger.kernel.org
5208 S:      Supported
5209 F:      Documentation/blockdev/cciss.txt
5210 F:      drivers/block/cciss*
5211 F:      include/linux/cciss_ioctl.h
5212 F:      include/uapi/linux/cciss_ioctl.h
5213
5214 HFS FILESYSTEM
5215 L:      linux-fsdevel@vger.kernel.org
5216 S:      Orphan
5217 F:      Documentation/filesystems/hfs.txt
5218 F:      fs/hfs/
5219
5220 HFSPLUS FILESYSTEM
5221 L:      linux-fsdevel@vger.kernel.org
5222 S:      Orphan
5223 F:      Documentation/filesystems/hfsplus.txt
5224 F:      fs/hfsplus/
5225
5226 HGA FRAMEBUFFER DRIVER
5227 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5228 L:      linux-nvidia@lists.surfsouth.com
5229 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5230 S:      Maintained
5231 F:      drivers/video/fbdev/hgafb.c
5232
5233 HIBERNATION (aka Software Suspend, aka swsusp)
5234 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5235 M:      Pavel Machek <pavel@ucw.cz>
5236 L:      linux-pm@vger.kernel.org
5237 S:      Supported
5238 F:      arch/x86/power/
5239 F:      drivers/base/power/
5240 F:      kernel/power/
5241 F:      include/linux/suspend.h
5242 F:      include/linux/freezer.h
5243 F:      include/linux/pm.h
5244 F:      arch/*/include/asm/suspend*.h
5245
5246 HID CORE LAYER
5247 M:      Jiri Kosina <jikos@kernel.org>
5248 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5249 L:      linux-input@vger.kernel.org
5250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5251 S:      Maintained
5252 F:      drivers/hid/
5253 F:      include/linux/hid*
5254 F:      include/uapi/linux/hid*
5255
5256 HID SENSOR HUB DRIVERS
5257 M:      Jiri Kosina <jikos@kernel.org>
5258 M:      Jonathan Cameron <jic23@kernel.org>
5259 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5260 L:      linux-input@vger.kernel.org
5261 L:      linux-iio@vger.kernel.org
5262 S:      Maintained
5263 F:      Documentation/hid/hid-sensor*
5264 F:      drivers/hid/hid-sensor-*
5265 F:      drivers/iio/*/hid-*
5266 F:      include/linux/hid-sensor-*
5267
5268 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5269 M:      Thomas Gleixner <tglx@linutronix.de>
5270 L:      linux-kernel@vger.kernel.org
5271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5272 S:      Maintained
5273 F:      Documentation/timers/
5274 F:      kernel/time/hrtimer.c
5275 F:      kernel/time/clockevents.c
5276 F:      kernel/time/tick*.*
5277 F:      kernel/time/timer_*.c
5278 F:      include/linux/clockchips.h
5279 F:      include/linux/hrtimer.h
5280
5281 HIGH-SPEED SCC DRIVER FOR AX.25
5282 L:      linux-hams@vger.kernel.org
5283 S:      Orphan
5284 F:      drivers/net/hamradio/dmascc.c
5285 F:      drivers/net/hamradio/scc.c
5286
5287 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5288 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5289 W:      http://www.highpoint-tech.com
5290 S:      Supported
5291 F:      Documentation/scsi/hptiop.txt
5292 F:      drivers/scsi/hptiop.c
5293
5294 HIPPI
5295 M:      Jes Sorensen <jes@trained-monkey.org>
5296 L:      linux-hippi@sunsite.dk
5297 S:      Maintained
5298 F:      include/linux/hippidevice.h
5299 F:      include/uapi/linux/if_hippi.h
5300 F:      net/802/hippi.c
5301 F:      drivers/net/hippi/
5302
5303 HISILICON SAS Controller
5304 M:      John Garry <john.garry@huawei.com>
5305 W:      http://www.hisilicon.com
5306 S:      Supported
5307 F:      drivers/scsi/hisi_sas/
5308 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5309
5310 HOST AP DRIVER
5311 M:      Jouni Malinen <j@w1.fi>
5312 L:      hostap@shmoo.com (subscribers-only)
5313 L:      linux-wireless@vger.kernel.org
5314 W:      http://hostap.epitest.fi/
5315 S:      Maintained
5316 F:      drivers/net/wireless/intersil/hostap/
5317
5318 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5319 L:      platform-driver-x86@vger.kernel.org
5320 S:      Orphan
5321 F:      drivers/platform/x86/tc1100-wmi.c
5322
5323 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5324 M:      Jaroslav Kysela <perex@perex.cz>
5325 S:      Maintained
5326 F:      drivers/net/ethernet/hp/hp100.*
5327
5328 HPET:   High Precision Event Timers driver
5329 M:      Clemens Ladisch <clemens@ladisch.de>
5330 S:      Maintained
5331 F:      Documentation/timers/hpet.txt
5332 F:      drivers/char/hpet.c
5333 F:      include/linux/hpet.h
5334 F:      include/uapi/linux/hpet.h
5335
5336 HPET:   x86
5337 S:      Orphan
5338 F:      arch/x86/kernel/hpet.c
5339 F:      arch/x86/include/asm/hpet.h
5340
5341 HPFS FILESYSTEM
5342 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5343 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5344 S:      Maintained
5345 F:      fs/hpfs/
5346
5347 HSI SUBSYSTEM
5348 M:      Sebastian Reichel <sre@kernel.org>
5349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5350 S:      Maintained
5351 F:      Documentation/ABI/testing/sysfs-bus-hsi
5352 F:      Documentation/hsi.txt
5353 F:      drivers/hsi/
5354 F:      include/linux/hsi/
5355 F:      include/uapi/linux/hsi/
5356
5357 HSO 3G MODEM DRIVER
5358 M:      Jan Dumon <j.dumon@option.com>
5359 W:      http://www.pharscape.org
5360 S:      Maintained
5361 F:      drivers/net/usb/hso.c
5362
5363 HSR NETWORK PROTOCOL
5364 M:      Arvid Brodin <arvid.brodin@alten.se>
5365 L:      netdev@vger.kernel.org
5366 S:      Maintained
5367 F:      net/hsr/
5368
5369 HTCPEN TOUCHSCREEN DRIVER
5370 M:      Pau Oliva Fora <pof@eslack.org>
5371 L:      linux-input@vger.kernel.org
5372 S:      Maintained
5373 F:      drivers/input/touchscreen/htcpen.c
5374
5375 HUGETLB FILESYSTEM
5376 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5377 S:      Maintained
5378 F:      fs/hugetlbfs/
5379
5380 Hyper-V CORE AND DRIVERS
5381 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5382 M:      Haiyang Zhang <haiyangz@microsoft.com>
5383 L:      devel@linuxdriverproject.org
5384 S:      Maintained
5385 F:      arch/x86/include/asm/mshyperv.h
5386 F:      arch/x86/include/uapi/asm/hyperv.h
5387 F:      arch/x86/kernel/cpu/mshyperv.c
5388 F:      drivers/hid/hid-hyperv.c
5389 F:      drivers/hv/
5390 F:      drivers/input/serio/hyperv-keyboard.c
5391 F:      drivers/pci/host/pci-hyperv.c
5392 F:      drivers/net/hyperv/
5393 F:      drivers/scsi/storvsc_drv.c
5394 F:      drivers/video/fbdev/hyperv_fb.c
5395 F:      include/linux/hyperv.h
5396 F:      tools/hv/
5397 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5398
5399 I2C MUXES
5400 M:      Peter Rosin <peda@axentia.se>
5401 L:      linux-i2c@vger.kernel.org
5402 S:      Maintained
5403 F:      Documentation/i2c/muxes/
5404 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5405 F:      drivers/i2c/i2c-mux.c
5406 F:      drivers/i2c/muxes/
5407 F:      include/linux/i2c-mux.h
5408
5409 I2C OVER PARALLEL PORT
5410 M:      Jean Delvare <jdelvare@suse.com>
5411 L:      linux-i2c@vger.kernel.org
5412 S:      Maintained
5413 F:      Documentation/i2c/busses/i2c-parport
5414 F:      Documentation/i2c/busses/i2c-parport-light
5415 F:      drivers/i2c/busses/i2c-parport.c
5416 F:      drivers/i2c/busses/i2c-parport-light.c
5417
5418 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5419 M:      Jean Delvare <jdelvare@suse.com>
5420 L:      linux-i2c@vger.kernel.org
5421 S:      Maintained
5422 F:      Documentation/i2c/busses/i2c-ali1535
5423 F:      Documentation/i2c/busses/i2c-ali1563
5424 F:      Documentation/i2c/busses/i2c-ali15x3
5425 F:      Documentation/i2c/busses/i2c-amd756
5426 F:      Documentation/i2c/busses/i2c-amd8111
5427 F:      Documentation/i2c/busses/i2c-i801
5428 F:      Documentation/i2c/busses/i2c-nforce2
5429 F:      Documentation/i2c/busses/i2c-piix4
5430 F:      Documentation/i2c/busses/i2c-sis5595
5431 F:      Documentation/i2c/busses/i2c-sis630
5432 F:      Documentation/i2c/busses/i2c-sis96x
5433 F:      Documentation/i2c/busses/i2c-via
5434 F:      Documentation/i2c/busses/i2c-viapro
5435 F:      drivers/i2c/busses/i2c-ali1535.c
5436 F:      drivers/i2c/busses/i2c-ali1563.c
5437 F:      drivers/i2c/busses/i2c-ali15x3.c
5438 F:      drivers/i2c/busses/i2c-amd756.c
5439 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5440 F:      drivers/i2c/busses/i2c-amd8111.c
5441 F:      drivers/i2c/busses/i2c-i801.c
5442 F:      drivers/i2c/busses/i2c-isch.c
5443 F:      drivers/i2c/busses/i2c-nforce2.c
5444 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5445 F:      drivers/i2c/busses/i2c-piix4.c
5446 F:      drivers/i2c/busses/i2c-sis5595.c
5447 F:      drivers/i2c/busses/i2c-sis630.c
5448 F:      drivers/i2c/busses/i2c-sis96x.c
5449 F:      drivers/i2c/busses/i2c-via.c
5450 F:      drivers/i2c/busses/i2c-viapro.c
5451
5452 I2C/SMBUS ISMT DRIVER
5453 M:      Seth Heasley <seth.heasley@intel.com>
5454 M:      Neil Horman <nhorman@tuxdriver.com>
5455 L:      linux-i2c@vger.kernel.org
5456 F:      drivers/i2c/busses/i2c-ismt.c
5457 F:      Documentation/i2c/busses/i2c-ismt
5458
5459 I2C/SMBUS STUB DRIVER
5460 M:      Jean Delvare <jdelvare@suse.com>
5461 L:      linux-i2c@vger.kernel.org
5462 S:      Maintained
5463 F:      drivers/i2c/i2c-stub.c
5464
5465 I2C SUBSYSTEM
5466 M:      Wolfram Sang <wsa@the-dreams.de>
5467 L:      linux-i2c@vger.kernel.org
5468 W:      https://i2c.wiki.kernel.org/
5469 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5471 S:      Maintained
5472 F:      Documentation/devicetree/bindings/i2c/
5473 F:      Documentation/i2c/
5474 F:      drivers/i2c/
5475 F:      drivers/i2c/*/
5476 F:      include/linux/i2c.h
5477 F:      include/linux/i2c-*.h
5478 F:      include/uapi/linux/i2c.h
5479 F:      include/uapi/linux/i2c-*.h
5480
5481 I2C ACPI SUPPORT
5482 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5483 L:      linux-i2c@vger.kernel.org
5484 L:      linux-acpi@vger.kernel.org
5485 S:      Maintained
5486
5487 I2C-TAOS-EVM DRIVER
5488 M:      Jean Delvare <jdelvare@suse.com>
5489 L:      linux-i2c@vger.kernel.org
5490 S:      Maintained
5491 F:      Documentation/i2c/busses/i2c-taos-evm
5492 F:      drivers/i2c/busses/i2c-taos-evm.c
5493
5494 I2C-TINY-USB DRIVER
5495 M:      Till Harbaum <till@harbaum.org>
5496 L:      linux-i2c@vger.kernel.org
5497 W:      http://www.harbaum.org/till/i2c_tiny_usb
5498 S:      Maintained
5499 F:      drivers/i2c/busses/i2c-tiny-usb.c
5500
5501 i386 BOOT CODE
5502 M:      "H. Peter Anvin" <hpa@zytor.com>
5503 S:      Maintained
5504 F:      arch/x86/boot/
5505
5506 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5507 M:      "H. Peter Anvin" <hpa@zytor.com>
5508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5509 S:      Maintained
5510
5511 IA64 (Itanium) PLATFORM
5512 M:      Tony Luck <tony.luck@intel.com>
5513 M:      Fenghua Yu <fenghua.yu@intel.com>
5514 L:      linux-ia64@vger.kernel.org
5515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5516 S:      Maintained
5517 F:      arch/ia64/
5518
5519 IBM Power VMX Cryptographic instructions
5520 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5521 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5522 L:      linux-crypto@vger.kernel.org
5523 S:      Supported
5524 F:      drivers/crypto/vmx/Makefile
5525 F:      drivers/crypto/vmx/Kconfig
5526 F:      drivers/crypto/vmx/vmx.c
5527 F:      drivers/crypto/vmx/aes*
5528 F:      drivers/crypto/vmx/ghash*
5529 F:      drivers/crypto/vmx/ppc-xlate.pl
5530
5531 IBM Power in-Nest Crypto Acceleration
5532 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5533 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5534 L:      linux-crypto@vger.kernel.org
5535 S:      Supported
5536 F:      drivers/crypto/nx/Makefile
5537 F:      drivers/crypto/nx/Kconfig
5538 F:      drivers/crypto/nx/nx-aes*
5539 F:      drivers/crypto/nx/nx-sha*
5540 F:      drivers/crypto/nx/nx.*
5541 F:      drivers/crypto/nx/nx_csbcpb.h
5542 F:      drivers/crypto/nx/nx_debugfs.h
5543
5544 IBM Power 842 compression accelerator
5545 M:      Dan Streetman <ddstreet@ieee.org>
5546 S:      Supported
5547 F:      drivers/crypto/nx/Makefile
5548 F:      drivers/crypto/nx/Kconfig
5549 F:      drivers/crypto/nx/nx-842*
5550 F:      include/linux/sw842.h
5551 F:      crypto/842.c
5552 F:      lib/842/
5553
5554 IBM Power Linux RAID adapter
5555 M:      Brian King <brking@us.ibm.com>
5556 S:      Supported
5557 F:      drivers/scsi/ipr.*
5558
5559 IBM Power Virtual Ethernet Device Driver
5560 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5561 L:      netdev@vger.kernel.org
5562 S:      Supported
5563 F:      drivers/net/ethernet/ibm/ibmveth.*
5564
5565 IBM Power SRIOV Virtual NIC Device Driver
5566 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5567 M:      John Allen <jallen@linux.vnet.ibm.com>
5568 L:      netdev@vger.kernel.org
5569 S:      Supported
5570 F:      drivers/net/ethernet/ibm/ibmvnic.*
5571
5572 IBM Power Virtual SCSI Device Drivers
5573 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5574 L:      linux-scsi@vger.kernel.org
5575 S:      Supported
5576 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5577 F:      drivers/scsi/ibmvscsi/viosrp.h
5578
5579 IBM Power Virtual FC Device Drivers
5580 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5581 L:      linux-scsi@vger.kernel.org
5582 S:      Supported
5583 F:      drivers/scsi/ibmvscsi/ibmvfc*
5584
5585 IBM ServeRAID RAID DRIVER
5586 S:      Orphan
5587 F:      drivers/scsi/ips.*
5588
5589 ICH LPC AND GPIO DRIVER
5590 M:      Peter Tyser <ptyser@xes-inc.com>
5591 S:      Maintained
5592 F:      drivers/mfd/lpc_ich.c
5593 F:      drivers/gpio/gpio-ich.c
5594
5595 IDE SUBSYSTEM
5596 M:      "David S. Miller" <davem@davemloft.net>
5597 L:      linux-ide@vger.kernel.org
5598 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5600 S:      Maintained
5601 F:      Documentation/ide/
5602 F:      drivers/ide/
5603 F:      include/linux/ide.h
5604
5605 IDEAPAD LAPTOP EXTRAS DRIVER
5606 M:      Ike Panhc <ike.pan@canonical.com>
5607 L:      platform-driver-x86@vger.kernel.org
5608 W:      http://launchpad.net/ideapad-laptop
5609 S:      Maintained
5610 F:      drivers/platform/x86/ideapad-laptop.c
5611
5612 IDEAPAD LAPTOP SLIDEBAR DRIVER
5613 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5614 L:      linux-input@vger.kernel.org
5615 W:      https://github.com/o2genum/ideapad-slidebar
5616 S:      Maintained
5617 F:      drivers/input/misc/ideapad_slidebar.c
5618
5619 IDE/ATAPI DRIVERS
5620 M:      Borislav Petkov <bp@alien8.de>
5621 L:      linux-ide@vger.kernel.org
5622 S:      Maintained
5623 F:      Documentation/cdrom/ide-cd
5624 F:      drivers/ide/ide-cd*
5625
5626 IDLE-I7300
5627 M:      Andy Henroid <andrew.d.henroid@intel.com>
5628 L:      linux-pm@vger.kernel.org
5629 S:      Supported
5630 F:      drivers/idle/i7300_idle.c
5631
5632 IEEE 802.15.4 SUBSYSTEM
5633 M:      Alexander Aring <aar@pengutronix.de>
5634 L:      linux-wpan@vger.kernel.org
5635 W:      http://wpan.cakelab.org/
5636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5638 S:      Maintained
5639 F:      net/ieee802154/
5640 F:      net/mac802154/
5641 F:      drivers/net/ieee802154/
5642 F:      include/linux/nl802154.h
5643 F:      include/linux/ieee802154.h
5644 F:      include/net/nl802154.h
5645 F:      include/net/mac802154.h
5646 F:      include/net/af_ieee802154.h
5647 F:      include/net/cfg802154.h
5648 F:      include/net/ieee802154_netdev.h
5649 F:      Documentation/networking/ieee802154.txt
5650
5651 IGORPLUG-USB IR RECEIVER
5652 M:      Sean Young <sean@mess.org>
5653 L:      linux-media@vger.kernel.org
5654 S:      Maintained
5655 F:      drivers/media/rc/igorplugusb.c
5656
5657 IGUANAWORKS USB IR TRANSCEIVER
5658 M:      Sean Young <sean@mess.org>
5659 L:      linux-media@vger.kernel.org
5660 S:      Maintained
5661 F:      drivers/media/rc/iguanair.c
5662
5663 IIO SUBSYSTEM AND DRIVERS
5664 M:      Jonathan Cameron <jic23@kernel.org>
5665 R:      Hartmut Knaack <knaack.h@gmx.de>
5666 R:      Lars-Peter Clausen <lars@metafoo.de>
5667 R:      Peter Meerwald <pmeerw@pmeerw.net>
5668 L:      linux-iio@vger.kernel.org
5669 S:      Maintained
5670 F:      drivers/iio/
5671 F:      drivers/staging/iio/
5672 F:      include/linux/iio/
5673 F:      tools/iio/
5674
5675 IKANOS/ADI EAGLE ADSL USB DRIVER
5676 M:      Matthieu Castet <castet.matthieu@free.fr>
5677 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5678 S:      Maintained
5679 F:      drivers/usb/atm/ueagle-atm.c
5680
5681 INA209 HARDWARE MONITOR DRIVER
5682 M:      Guenter Roeck <linux@roeck-us.net>
5683 L:      linux-hwmon@vger.kernel.org
5684 S:      Maintained
5685 F:      Documentation/hwmon/ina209
5686 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5687 F:      drivers/hwmon/ina209.c
5688
5689 INA2XX HARDWARE MONITOR DRIVER
5690 M:      Guenter Roeck <linux@roeck-us.net>
5691 L:      linux-hwmon@vger.kernel.org
5692 S:      Maintained
5693 F:      Documentation/hwmon/ina2xx
5694 F:      drivers/hwmon/ina2xx.c
5695 F:      include/linux/platform_data/ina2xx.h
5696
5697 INDUSTRY PACK SUBSYSTEM (IPACK)
5698 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5699 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5700 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5701 L:      industrypack-devel@lists.sourceforge.net
5702 W:      http://industrypack.sourceforge.net
5703 S:      Maintained
5704 F:      drivers/ipack/
5705
5706 INGENIC JZ4780 DMA Driver
5707 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5708 S:      Maintained
5709 F:      drivers/dma/dma-jz4780.c
5710
5711 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5712 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5713 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5714 L:      linux-ima-devel@lists.sourceforge.net
5715 L:      linux-ima-user@lists.sourceforge.net
5716 L:      linux-security-module@vger.kernel.org
5717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5718 S:      Supported
5719 F:      security/integrity/ima/
5720
5721 IMGTEC IR DECODER DRIVER
5722 M:      James Hogan <james.hogan@imgtec.com>
5723 S:      Maintained
5724 F:      drivers/media/rc/img-ir/
5725
5726 IMS TWINTURBO FRAMEBUFFER DRIVER
5727 L:      linux-fbdev@vger.kernel.org
5728 S:      Orphan
5729 F:      drivers/video/fbdev/imsttfb.c
5730
5731 INFINIBAND SUBSYSTEM
5732 M:      Doug Ledford <dledford@redhat.com>
5733 M:      Sean Hefty <sean.hefty@intel.com>
5734 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5735 L:      linux-rdma@vger.kernel.org
5736 W:      http://www.openfabrics.org/
5737 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5739 S:      Supported
5740 F:      Documentation/infiniband/
5741 F:      drivers/infiniband/
5742 F:      drivers/staging/rdma/
5743 F:      include/uapi/linux/if_infiniband.h
5744 F:      include/uapi/rdma/
5745 F:      include/rdma/
5746
5747 INOTIFY
5748 M:      John McCutchan <john@johnmccutchan.com>
5749 M:      Robert Love <rlove@rlove.org>
5750 M:      Eric Paris <eparis@parisplace.org>
5751 S:      Maintained
5752 F:      Documentation/filesystems/inotify.txt
5753 F:      fs/notify/inotify/
5754 F:      include/linux/inotify.h
5755 F:      include/uapi/linux/inotify.h
5756
5757 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5758 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5759 L:      linux-input@vger.kernel.org
5760 Q:      http://patchwork.kernel.org/project/linux-input/list/
5761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5762 S:      Maintained
5763 F:      drivers/input/
5764 F:      include/linux/input.h
5765 F:      include/uapi/linux/input.h
5766 F:      include/linux/input/
5767 F:      Documentation/devicetree/bindings/input/
5768
5769 INPUT MULTITOUCH (MT) PROTOCOL
5770 M:      Henrik Rydberg <rydberg@bitmath.org>
5771 L:      linux-input@vger.kernel.org
5772 S:      Odd fixes
5773 F:      Documentation/input/multi-touch-protocol.txt
5774 F:      drivers/input/input-mt.c
5775 K:      \b(ABS|SYN)_MT_
5776
5777 INTEL ASoC BDW/HSW DRIVERS
5778 M:      Jie Yang <yang.jie@linux.intel.com>
5779 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5780 S:      Supported
5781 F:      sound/soc/intel/common/sst-dsp*
5782 F:      sound/soc/intel/common/sst-firmware.c
5783 F:      sound/soc/intel/boards/broadwell.c
5784 F:      sound/soc/intel/haswell/
5785
5786 INTEL C600 SERIES SAS CONTROLLER DRIVER
5787 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5788 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5789 L:      linux-scsi@vger.kernel.org
5790 T:      git git://git.code.sf.net/p/intel-sas/isci
5791 S:      Supported
5792 F:      drivers/scsi/isci/
5793
5794 INTEL HID EVENT DRIVER
5795 M:      Alex Hung <alex.hung@canonical.com>
5796 L:      platform-driver-x86@vger.kernel.org
5797 S:      Maintained
5798 F:      drivers/platform/x86/intel-hid.c
5799
5800 INTEL IDLE DRIVER
5801 M:      Len Brown <lenb@kernel.org>
5802 L:      linux-pm@vger.kernel.org
5803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5804 S:      Supported
5805 F:      drivers/idle/intel_idle.c
5806
5807 INTEL PSTATE DRIVER
5808 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5809 M:      Len Brown <lenb@kernel.org>
5810 L:      linux-pm@vger.kernel.org
5811 S:      Supported
5812 F:      drivers/cpufreq/intel_pstate.c
5813
5814 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5815 M:      Maik Broemme <mbroemme@plusserver.de>
5816 L:      linux-fbdev@vger.kernel.org
5817 S:      Maintained
5818 F:      Documentation/fb/intelfb.txt
5819 F:      drivers/video/fbdev/intelfb/
5820
5821 INTEL 810/815 FRAMEBUFFER DRIVER
5822 M:      Antonino Daplas <adaplas@gmail.com>
5823 L:      linux-fbdev@vger.kernel.org
5824 S:      Maintained
5825 F:      drivers/video/fbdev/i810/
5826
5827 INTEL MENLOW THERMAL DRIVER
5828 M:      Sujith Thomas <sujith.thomas@intel.com>
5829 L:      platform-driver-x86@vger.kernel.org
5830 W:      https://01.org/linux-acpi
5831 S:      Supported
5832 F:      drivers/platform/x86/intel_menlow.c
5833
5834 INTEL I/OAT DMA DRIVER
5835 M:      Dave Jiang <dave.jiang@intel.com>
5836 R:      Dan Williams <dan.j.williams@intel.com>
5837 L:      dmaengine@vger.kernel.org
5838 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5839 S:      Supported
5840 F:      drivers/dma/ioat*
5841
5842 INTEL IOMMU (VT-d)
5843 M:      David Woodhouse <dwmw2@infradead.org>
5844 L:      iommu@lists.linux-foundation.org
5845 T:      git git://git.infradead.org/iommu-2.6.git
5846 S:      Supported
5847 F:      drivers/iommu/intel-iommu.c
5848 F:      include/linux/intel-iommu.h
5849
5850 INTEL IOP-ADMA DMA DRIVER
5851 R:      Dan Williams <dan.j.williams@intel.com>
5852 S:      Odd fixes
5853 F:      drivers/dma/iop-adma.c
5854
5855 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5856 M:      Krzysztof Halasa <khalasa@piap.pl>
5857 S:      Maintained
5858 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5859 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5860 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5861 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5862 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5863 F:      drivers/net/wan/ixp4xx_hss.c
5864
5865 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5866 M:      Deepak Saxena <dsaxena@plexity.net>
5867 S:      Maintained
5868 F:      drivers/char/hw_random/ixp4xx-rng.c
5869
5870 INTEL ETHERNET DRIVERS
5871 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5872 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5873 R:      Shannon Nelson <shannon.nelson@intel.com>
5874 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5875 R:      Don Skidmore <donald.c.skidmore@intel.com>
5876 R:      Bruce Allan <bruce.w.allan@intel.com>
5877 R:      John Ronciak <john.ronciak@intel.com>
5878 R:      Mitch Williams <mitch.a.williams@intel.com>
5879 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
5880 W:      http://www.intel.com/support/feedback.htm
5881 W:      http://e1000.sourceforge.net/
5882 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5885 S:      Supported
5886 F:      Documentation/networking/e100.txt
5887 F:      Documentation/networking/e1000.txt
5888 F:      Documentation/networking/e1000e.txt
5889 F:      Documentation/networking/igb.txt
5890 F:      Documentation/networking/igbvf.txt
5891 F:      Documentation/networking/ixgb.txt
5892 F:      Documentation/networking/ixgbe.txt
5893 F:      Documentation/networking/ixgbevf.txt
5894 F:      Documentation/networking/i40e.txt
5895 F:      Documentation/networking/i40evf.txt
5896 F:      drivers/net/ethernet/intel/
5897 F:      drivers/net/ethernet/intel/*/
5898
5899 INTEL RDMA RNIC DRIVER
5900 M:     Faisal Latif <faisal.latif@intel.com>
5901 R:     Chien Tin Tung <chien.tin.tung@intel.com>
5902 R:     Mustafa Ismail <mustafa.ismail@intel.com>
5903 R:     Shiraz Saleem <shiraz.saleem@intel.com>
5904 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5905 L:     linux-rdma@vger.kernel.org
5906 S:     Supported
5907 F:     drivers/infiniband/hw/i40iw/
5908
5909 INTEL-MID GPIO DRIVER
5910 M:      David Cohen <david.a.cohen@linux.intel.com>
5911 L:      linux-gpio@vger.kernel.org
5912 S:      Maintained
5913 F:      drivers/gpio/gpio-intel-mid.c
5914
5915 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5916 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5917 L:      linux-wireless@vger.kernel.org
5918 S:      Maintained
5919 F:      Documentation/networking/README.ipw2100
5920 F:      Documentation/networking/README.ipw2200
5921 F:      drivers/net/wireless/intel/ipw2x00/
5922
5923 INTEL(R) TRACE HUB
5924 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5925 S:      Supported
5926 F:      Documentation/trace/intel_th.txt
5927 F:      drivers/hwtracing/intel_th/
5928
5929 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5930 M:      Ning Sun <ning.sun@intel.com>
5931 L:      tboot-devel@lists.sourceforge.net
5932 W:      http://tboot.sourceforge.net
5933 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5934 S:      Supported
5935 F:      Documentation/intel_txt.txt
5936 F:      include/linux/tboot.h
5937 F:      arch/x86/kernel/tboot.c
5938
5939 INTEL WIRELESS WIMAX CONNECTION 2400
5940 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5941 M:      linux-wimax@intel.com
5942 L:      wimax@linuxwimax.org (subscribers-only)
5943 S:      Supported
5944 W:      http://linuxwimax.org
5945 F:      Documentation/wimax/README.i2400m
5946 F:      drivers/net/wimax/i2400m/
5947 F:      include/uapi/linux/wimax/i2400m.h
5948
5949 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5950 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5951 L:      linux-wireless@vger.kernel.org
5952 S:      Supported
5953 F:      drivers/net/wireless/intel/iwlegacy/
5954
5955 INTEL WIRELESS WIFI LINK (iwlwifi)
5956 M:      Johannes Berg <johannes.berg@intel.com>
5957 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5958 M:      Intel Linux Wireless <linuxwifi@intel.com>
5959 L:      linux-wireless@vger.kernel.org
5960 W:      http://intellinuxwireless.org
5961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5962 S:      Supported
5963 F:      drivers/net/wireless/intel/iwlwifi/
5964
5965 INTEL MANAGEMENT ENGINE (mei)
5966 M:      Tomas Winkler <tomas.winkler@intel.com>
5967 L:      linux-kernel@vger.kernel.org
5968 S:      Supported
5969 F:      include/uapi/linux/mei.h
5970 F:      include/linux/mei_cl_bus.h
5971 F:      drivers/misc/mei/*
5972 F:      drivers/watchdog/mei_wdt.c
5973 F:      Documentation/misc-devices/mei/*
5974
5975 INTEL MIC DRIVERS (mic)
5976 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5977 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5978 S:      Supported
5979 W:      https://github.com/sudeepdutt/mic
5980 W:      http://software.intel.com/en-us/mic-developer
5981 F:      include/linux/mic_bus.h
5982 F:      include/linux/scif.h
5983 F:      include/uapi/linux/mic_common.h
5984 F:      include/uapi/linux/mic_ioctl.h
5985 F:      include/uapi/linux/scif_ioctl.h
5986 F:      drivers/misc/mic/
5987 F:      drivers/dma/mic_x100_dma.c
5988 F:      drivers/dma/mic_x100_dma.h
5989 F:      Documentation/mic/
5990
5991 INTEL PMC/P-Unit IPC DRIVER
5992 M:      Zha Qipeng<qipeng.zha@intel.com>
5993 L:      platform-driver-x86@vger.kernel.org
5994 S:      Maintained
5995 F:      drivers/platform/x86/intel_pmc_ipc.c
5996 F:      drivers/platform/x86/intel_punit_ipc.c
5997 F:      arch/x86/include/asm/intel_pmc_ipc.h
5998 F:      arch/x86/include/asm/intel_punit_ipc.h
5999
6000 INTEL TELEMETRY DRIVER
6001 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
6002 L:      platform-driver-x86@vger.kernel.org
6003 S:      Maintained
6004 F:      arch/x86/include/asm/intel_telemetry.h
6005 F:      drivers/platform/x86/intel_telemetry*
6006
6007 IOC3 ETHERNET DRIVER
6008 M:      Ralf Baechle <ralf@linux-mips.org>
6009 L:      linux-mips@linux-mips.org
6010 S:      Maintained
6011 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6012
6013 IOC3 SERIAL DRIVER
6014 M:      Pat Gefre <pfg@sgi.com>
6015 L:      linux-serial@vger.kernel.org
6016 S:      Maintained
6017 F:      drivers/tty/serial/ioc3_serial.c
6018
6019 IOMMU DRIVERS
6020 M:      Joerg Roedel <joro@8bytes.org>
6021 L:      iommu@lists.linux-foundation.org
6022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6023 S:      Maintained
6024 F:      drivers/iommu/
6025
6026 IP MASQUERADING
6027 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
6028 S:      Maintained
6029 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
6030
6031 IPMI SUBSYSTEM
6032 M:      Corey Minyard <minyard@acm.org>
6033 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
6034 W:      http://openipmi.sourceforge.net/
6035 S:      Supported
6036 F:      Documentation/IPMI.txt
6037 F:      drivers/char/ipmi/
6038 F:      include/linux/ipmi*
6039 F:      include/uapi/linux/ipmi*
6040
6041 QCOM AUDIO (ASoC) DRIVERS
6042 M:      Patrick Lai <plai@codeaurora.org>
6043 M:      Banajit Goswami <bgoswami@codeaurora.org>
6044 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6045 S:      Supported
6046 F:      sound/soc/qcom/
6047
6048 IPS SCSI RAID DRIVER
6049 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
6050 L:      linux-scsi@vger.kernel.org
6051 W:      http://www.adaptec.com/
6052 S:      Maintained
6053 F:      drivers/scsi/ips*
6054
6055 IPVS
6056 M:      Wensong Zhang <wensong@linux-vs.org>
6057 M:      Simon Horman <horms@verge.net.au>
6058 M:      Julian Anastasov <ja@ssi.bg>
6059 L:      netdev@vger.kernel.org
6060 L:      lvs-devel@vger.kernel.org
6061 S:      Maintained
6062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6064 F:      Documentation/networking/ipvs-sysctl.txt
6065 F:      include/net/ip_vs.h
6066 F:      include/uapi/linux/ip_vs.h
6067 F:      net/netfilter/ipvs/
6068
6069 IPWIRELESS DRIVER
6070 M:      Jiri Kosina <jikos@kernel.org>
6071 M:      David Sterba <dsterba@suse.com>
6072 S:      Odd Fixes
6073 F:      drivers/tty/ipwireless/
6074
6075 IPX NETWORK LAYER
6076 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6077 L:      netdev@vger.kernel.org
6078 S:      Maintained
6079 F:      include/net/ipx.h
6080 F:      include/uapi/linux/ipx.h
6081 F:      net/ipx/
6082
6083 IRDA SUBSYSTEM
6084 M:      Samuel Ortiz <samuel@sortiz.org>
6085 L:      irda-users@lists.sourceforge.net (subscribers-only)
6086 L:      netdev@vger.kernel.org
6087 W:      http://irda.sourceforge.net/
6088 S:      Maintained
6089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6090 F:      Documentation/networking/irda.txt
6091 F:      drivers/net/irda/
6092 F:      include/net/irda/
6093 F:      net/irda/
6094
6095 IRQ SUBSYSTEM
6096 M:      Thomas Gleixner <tglx@linutronix.de>
6097 L:      linux-kernel@vger.kernel.org
6098 S:      Maintained
6099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6100 F:      kernel/irq/
6101
6102 IRQCHIP DRIVERS
6103 M:      Thomas Gleixner <tglx@linutronix.de>
6104 M:      Jason Cooper <jason@lakedaemon.net>
6105 M:      Marc Zyngier <marc.zyngier@arm.com>
6106 L:      linux-kernel@vger.kernel.org
6107 S:      Maintained
6108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6109 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6110 F:      Documentation/devicetree/bindings/interrupt-controller/
6111 F:      drivers/irqchip/
6112
6113 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6114 M:      Jiang Liu <jiang.liu@linux.intel.com>
6115 M:      Marc Zyngier <marc.zyngier@arm.com>
6116 S:      Maintained
6117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6118 F:      Documentation/IRQ-domain.txt
6119 F:      include/linux/irqdomain.h
6120 F:      kernel/irq/irqdomain.c
6121 F:      kernel/irq/msi.c
6122
6123 ISAPNP
6124 M:      Jaroslav Kysela <perex@perex.cz>
6125 S:      Maintained
6126 F:      Documentation/isapnp.txt
6127 F:      drivers/pnp/isapnp/
6128 F:      include/linux/isapnp.h
6129
6130 ISA RADIO MODULE
6131 M:      Hans Verkuil <hverkuil@xs4all.nl>
6132 L:      linux-media@vger.kernel.org
6133 T:      git git://linuxtv.org/media_tree.git
6134 W:      https://linuxtv.org
6135 S:      Maintained
6136 F:      drivers/media/radio/radio-isa*
6137
6138 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6139 M:      Peter Jones <pjones@redhat.com>
6140 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6141 S:      Maintained
6142 F:      drivers/firmware/iscsi_ibft*
6143
6144 ISCSI
6145 M:      Mike Christie <michaelc@cs.wisc.edu>
6146 L:      open-iscsi@googlegroups.com
6147 W:      www.open-iscsi.org
6148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6149 S:      Maintained
6150 F:      drivers/scsi/*iscsi*
6151 F:      include/scsi/*iscsi*
6152
6153 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6154 M:      Or Gerlitz <ogerlitz@mellanox.com>
6155 M:      Sagi Grimberg <sagi@grimberg.me>
6156 M:      Roi Dayan <roid@mellanox.com>
6157 L:      linux-rdma@vger.kernel.org
6158 S:      Supported
6159 W:      http://www.openfabrics.org
6160 W:      www.open-iscsi.org
6161 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6162 F:      drivers/infiniband/ulp/iser/
6163
6164 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6165 M:      Sagi Grimberg <sagi@grimberg.me>
6166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6167 L:      linux-rdma@vger.kernel.org
6168 L:      target-devel@vger.kernel.org
6169 S:      Supported
6170 W:      http://www.linux-iscsi.org
6171 F:      drivers/infiniband/ulp/isert
6172
6173 ISDN SUBSYSTEM
6174 M:      Karsten Keil <isdn@linux-pingi.de>
6175 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6176 L:      netdev@vger.kernel.org
6177 W:      http://www.isdn4linux.de
6178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6179 S:      Maintained
6180 F:      Documentation/isdn/
6181 F:      drivers/isdn/
6182 F:      include/linux/isdn.h
6183 F:      include/linux/isdn/
6184 F:      include/uapi/linux/isdn.h
6185 F:      include/uapi/linux/isdn/
6186
6187 ISDN SUBSYSTEM (Eicon active card driver)
6188 M:      Armin Schindler <mac@melware.de>
6189 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6190 W:      http://www.melware.de
6191 S:      Maintained
6192 F:      drivers/isdn/hardware/eicon/
6193
6194 IT87 HARDWARE MONITORING DRIVER
6195 M:      Jean Delvare <jdelvare@suse.com>
6196 L:      linux-hwmon@vger.kernel.org
6197 S:      Maintained
6198 F:      Documentation/hwmon/it87
6199 F:      drivers/hwmon/it87.c
6200
6201 IT913X MEDIA DRIVER
6202 M:      Antti Palosaari <crope@iki.fi>
6203 L:      linux-media@vger.kernel.org
6204 W:      https://linuxtv.org
6205 W:      http://palosaari.fi/linux/
6206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6207 T:      git git://linuxtv.org/anttip/media_tree.git
6208 S:      Maintained
6209 F:      drivers/media/tuners/it913x*
6210
6211 IVTV VIDEO4LINUX DRIVER
6212 M:      Andy Walls <awalls@md.metrocast.net>
6213 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6214 L:      linux-media@vger.kernel.org
6215 T:      git git://linuxtv.org/media_tree.git
6216 W:      http://www.ivtvdriver.org
6217 S:      Maintained
6218 F:      Documentation/video4linux/*.ivtv
6219 F:      drivers/media/pci/ivtv/
6220 F:      include/uapi/linux/ivtv*
6221
6222 IX2505V MEDIA DRIVER
6223 M:      Malcolm Priestley <tvboxspy@gmail.com>
6224 L:      linux-media@vger.kernel.org
6225 W:      https://linuxtv.org
6226 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6227 S:      Maintained
6228 F:      drivers/media/dvb-frontends/ix2505v*
6229
6230 JC42.4 TEMPERATURE SENSOR DRIVER
6231 M:      Guenter Roeck <linux@roeck-us.net>
6232 L:      linux-hwmon@vger.kernel.org
6233 S:      Maintained
6234 F:      drivers/hwmon/jc42.c
6235 F:      Documentation/hwmon/jc42
6236
6237 JFS FILESYSTEM
6238 M:      Dave Kleikamp <shaggy@kernel.org>
6239 L:      jfs-discussion@lists.sourceforge.net
6240 W:      http://jfs.sourceforge.net/
6241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6242 S:      Maintained
6243 F:      Documentation/filesystems/jfs.txt
6244 F:      fs/jfs/
6245
6246 JME NETWORK DRIVER
6247 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6248 L:      netdev@vger.kernel.org
6249 S:      Maintained
6250 F:      drivers/net/ethernet/jme.*
6251
6252 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6253 M:      David Woodhouse <dwmw2@infradead.org>
6254 L:      linux-mtd@lists.infradead.org
6255 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6256 S:      Maintained
6257 F:      fs/jffs2/
6258 F:      include/uapi/linux/jffs2.h
6259
6260 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6261 M:      "Theodore Ts'o" <tytso@mit.edu>
6262 M:      Jan Kara <jack@suse.com>
6263 L:      linux-ext4@vger.kernel.org
6264 S:      Maintained
6265 F:      fs/jbd2/
6266 F:      include/linux/jbd2.h
6267
6268 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6269 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6270 L:      linux-media@vger.kernel.org
6271 S:      Maintained
6272 F:      drivers/media/platform/rcar_jpu.c
6273
6274 JSM Neo PCI based serial card
6275 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6276 L:      linux-serial@vger.kernel.org
6277 S:      Maintained
6278 F:      drivers/tty/serial/jsm/
6279
6280 K10TEMP HARDWARE MONITORING DRIVER
6281 M:      Clemens Ladisch <clemens@ladisch.de>
6282 L:      linux-hwmon@vger.kernel.org
6283 S:      Maintained
6284 F:      Documentation/hwmon/k10temp
6285 F:      drivers/hwmon/k10temp.c
6286
6287 K8TEMP HARDWARE MONITORING DRIVER
6288 M:      Rudolf Marek <r.marek@assembler.cz>
6289 L:      linux-hwmon@vger.kernel.org
6290 S:      Maintained
6291 F:      Documentation/hwmon/k8temp
6292 F:      drivers/hwmon/k8temp.c
6293
6294 KASAN
6295 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6296 R:      Alexander Potapenko <glider@google.com>
6297 R:      Dmitry Vyukov <dvyukov@google.com>
6298 L:      kasan-dev@googlegroups.com
6299 S:      Maintained
6300 F:      arch/*/include/asm/kasan.h
6301 F:      arch/*/mm/kasan_init*
6302 F:      Documentation/kasan.txt
6303 F:      include/linux/kasan.h
6304 F:      lib/test_kasan.c
6305 F:      mm/kasan/
6306 F:      scripts/Makefile.kasan
6307
6308 KCONFIG
6309 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6310 L:      linux-kbuild@vger.kernel.org
6311 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6312 S:      Maintained
6313 F:      Documentation/kbuild/kconfig-language.txt
6314 F:      scripts/kconfig/
6315
6316 KDUMP
6317 M:      Vivek Goyal <vgoyal@redhat.com>
6318 M:      Haren Myneni <hbabu@us.ibm.com>
6319 L:      kexec@lists.infradead.org
6320 W:      http://lse.sourceforge.net/kdump/
6321 S:      Maintained
6322 F:      Documentation/kdump/
6323
6324 KEENE FM RADIO TRANSMITTER DRIVER
6325 M:      Hans Verkuil <hverkuil@xs4all.nl>
6326 L:      linux-media@vger.kernel.org
6327 T:      git git://linuxtv.org/media_tree.git
6328 W:      https://linuxtv.org
6329 S:      Maintained
6330 F:      drivers/media/radio/radio-keene*
6331
6332 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6333 M:      Ian Kent <raven@themaw.net>
6334 L:      autofs@vger.kernel.org
6335 S:      Maintained
6336 F:      fs/autofs4/
6337
6338 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6339 M:      Michal Marek <mmarek@suse.com>
6340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6342 L:      linux-kbuild@vger.kernel.org
6343 S:      Maintained
6344 F:      Documentation/kbuild/
6345 F:      Makefile
6346 F:      scripts/Makefile.*
6347 F:      scripts/basic/
6348 F:      scripts/mk*
6349 F:      scripts/package/
6350
6351 KERNEL JANITORS
6352 L:      kernel-janitors@vger.kernel.org
6353 W:      http://kernelnewbies.org/KernelJanitors
6354 S:      Odd Fixes
6355
6356 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6357 M:      "J. Bruce Fields" <bfields@fieldses.org>
6358 M:      Jeff Layton <jlayton@poochiereds.net>
6359 L:      linux-nfs@vger.kernel.org
6360 W:      http://nfs.sourceforge.net/
6361 T:      git git://linux-nfs.org/~bfields/linux.git
6362 S:      Supported
6363 F:      fs/nfsd/
6364 F:      include/uapi/linux/nfsd/
6365 F:      fs/lockd/
6366 F:      fs/nfs_common/
6367 F:      net/sunrpc/
6368 F:      include/linux/lockd/
6369 F:      include/linux/sunrpc/
6370 F:      include/uapi/linux/sunrpc/
6371
6372 KERNEL SELFTEST FRAMEWORK
6373 M:      Shuah Khan <shuahkh@osg.samsung.com>
6374 L:      linux-kselftest@vger.kernel.org
6375 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6376 S:      Maintained
6377 F:      tools/testing/selftests
6378
6379 KERNEL VIRTUAL MACHINE (KVM)
6380 M:      Paolo Bonzini <pbonzini@redhat.com>
6381 M:      Radim Krčmář <rkrcmar@redhat.com>
6382 L:      kvm@vger.kernel.org
6383 W:      http://www.linux-kvm.org
6384 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6385 S:      Supported
6386 F:      Documentation/*/kvm*.txt
6387 F:      Documentation/virtual/kvm/
6388 F:      arch/*/kvm/
6389 F:      arch/x86/kernel/kvm.c
6390 F:      arch/x86/kernel/kvmclock.c
6391 F:      arch/*/include/asm/kvm*
6392 F:      include/linux/kvm*
6393 F:      include/uapi/linux/kvm*
6394 F:      virt/kvm/
6395
6396 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6397 M:      Joerg Roedel <joro@8bytes.org>
6398 L:      kvm@vger.kernel.org
6399 W:      http://www.linux-kvm.org/
6400 S:      Maintained
6401 F:      arch/x86/include/asm/svm.h
6402 F:      arch/x86/kvm/svm.c
6403
6404 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6405 M:      Alexander Graf <agraf@suse.com>
6406 L:      kvm-ppc@vger.kernel.org
6407 W:      http://www.linux-kvm.org/
6408 T:      git git://github.com/agraf/linux-2.6.git
6409 S:      Supported
6410 F:      arch/powerpc/include/asm/kvm*
6411 F:      arch/powerpc/kvm/
6412
6413 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6414 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6415 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6416 L:      linux-s390@vger.kernel.org
6417 W:      http://www.ibm.com/developerworks/linux/linux390/
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6419 S:      Supported
6420 F:      Documentation/s390/kvm.txt
6421 F:      arch/s390/include/asm/kvm*
6422 F:      arch/s390/kvm/
6423
6424 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6425 M:      Christoffer Dall <christoffer.dall@linaro.org>
6426 M:      Marc Zyngier <marc.zyngier@arm.com>
6427 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6428 L:      kvmarm@lists.cs.columbia.edu
6429 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6431 S:      Supported
6432 F:      arch/arm/include/uapi/asm/kvm*
6433 F:      arch/arm/include/asm/kvm*
6434 F:      arch/arm/kvm/
6435 F:      virt/kvm/arm/
6436 F:      include/kvm/arm_*
6437
6438 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6439 M:      Christoffer Dall <christoffer.dall@linaro.org>
6440 M:      Marc Zyngier <marc.zyngier@arm.com>
6441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6442 L:      kvmarm@lists.cs.columbia.edu
6443 S:      Maintained
6444 F:      arch/arm64/include/uapi/asm/kvm*
6445 F:      arch/arm64/include/asm/kvm*
6446 F:      arch/arm64/kvm/
6447
6448 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6449 M:      James Hogan <james.hogan@imgtec.com>
6450 L:      linux-mips@linux-mips.org
6451 S:      Supported
6452 F:      arch/mips/include/uapi/asm/kvm*
6453 F:      arch/mips/include/asm/kvm*
6454 F:      arch/mips/kvm/
6455
6456 KEXEC
6457 M:      Eric Biederman <ebiederm@xmission.com>
6458 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6459 L:      kexec@lists.infradead.org
6460 S:      Maintained
6461 F:      include/linux/kexec.h
6462 F:      include/uapi/linux/kexec.h
6463 F:      kernel/kexec.c
6464
6465 KEYS/KEYRINGS:
6466 M:      David Howells <dhowells@redhat.com>
6467 L:      keyrings@vger.kernel.org
6468 S:      Maintained
6469 F:      Documentation/security/keys.txt
6470 F:      include/linux/key.h
6471 F:      include/linux/key-type.h
6472 F:      include/keys/
6473 F:      security/keys/
6474
6475 KEYS-TRUSTED
6476 M:      David Safford <safford@us.ibm.com>
6477 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6478 L:      linux-security-module@vger.kernel.org
6479 L:      keyrings@vger.kernel.org
6480 S:      Supported
6481 F:      Documentation/security/keys-trusted-encrypted.txt
6482 F:      include/keys/trusted-type.h
6483 F:      security/keys/trusted.c
6484 F:      security/keys/trusted.h
6485
6486 KEYS-ENCRYPTED
6487 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6488 M:      David Safford <safford@us.ibm.com>
6489 L:      linux-security-module@vger.kernel.org
6490 L:      keyrings@vger.kernel.org
6491 S:      Supported
6492 F:      Documentation/security/keys-trusted-encrypted.txt
6493 F:      include/keys/encrypted-type.h
6494 F:      security/keys/encrypted-keys/
6495
6496 KGDB / KDB /debug_core
6497 M:      Jason Wessel <jason.wessel@windriver.com>
6498 W:      http://kgdb.wiki.kernel.org/
6499 L:      kgdb-bugreport@lists.sourceforge.net
6500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6501 S:      Maintained
6502 F:      Documentation/DocBook/kgdb.tmpl
6503 F:      drivers/misc/kgdbts.c
6504 F:      drivers/tty/serial/kgdboc.c
6505 F:      include/linux/kdb.h
6506 F:      include/linux/kgdb.h
6507 F:      kernel/debug/
6508
6509 KMEMCHECK
6510 M:      Vegard Nossum <vegardno@ifi.uio.no>
6511 M:      Pekka Enberg <penberg@kernel.org>
6512 S:      Maintained
6513 F:      Documentation/kmemcheck.txt
6514 F:      arch/x86/include/asm/kmemcheck.h
6515 F:      arch/x86/mm/kmemcheck/
6516 F:      include/linux/kmemcheck.h
6517 F:      mm/kmemcheck.c
6518
6519 KMEMLEAK
6520 M:      Catalin Marinas <catalin.marinas@arm.com>
6521 S:      Maintained
6522 F:      Documentation/kmemleak.txt
6523 F:      include/linux/kmemleak.h
6524 F:      mm/kmemleak.c
6525 F:      mm/kmemleak-test.c
6526
6527 KPROBES
6528 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6529 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6530 M:      "David S. Miller" <davem@davemloft.net>
6531 M:      Masami Hiramatsu <mhiramat@kernel.org>
6532 S:      Maintained
6533 F:      Documentation/kprobes.txt
6534 F:      include/linux/kprobes.h
6535 F:      kernel/kprobes.c
6536
6537 KS0108 LCD CONTROLLER DRIVER
6538 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6539 W:      http://miguelojeda.es/auxdisplay.htm
6540 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6541 S:      Maintained
6542 F:      Documentation/auxdisplay/ks0108
6543 F:      drivers/auxdisplay/ks0108.c
6544 F:      include/linux/ks0108.h
6545
6546 L3MDEV
6547 M:      David Ahern <dsa@cumulusnetworks.com>
6548 L:      netdev@vger.kernel.org
6549 S:      Maintained
6550 F:      net/l3mdev
6551 F:      include/net/l3mdev.h
6552
6553 LANTIQ MIPS ARCHITECTURE
6554 M:      John Crispin <blogic@openwrt.org>
6555 L:      linux-mips@linux-mips.org
6556 S:      Maintained
6557 F:      arch/mips/lantiq
6558
6559 LAPB module
6560 L:      linux-x25@vger.kernel.org
6561 S:      Orphan
6562 F:      Documentation/networking/lapb-module.txt
6563 F:      include/*/lapb.h
6564 F:      net/lapb/
6565
6566 LASI 53c700 driver for PARISC
6567 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6568 L:      linux-scsi@vger.kernel.org
6569 S:      Maintained
6570 F:      Documentation/scsi/53c700.txt
6571 F:      drivers/scsi/53c700*
6572
6573 LED SUBSYSTEM
6574 M:      Richard Purdie <rpurdie@rpsys.net>
6575 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6576 L:      linux-leds@vger.kernel.org
6577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6578 S:      Maintained
6579 F:      drivers/leds/
6580 F:      include/linux/leds.h
6581
6582 LEGACY EEPROM DRIVER
6583 M:      Jean Delvare <jdelvare@suse.com>
6584 S:      Maintained
6585 F:      Documentation/misc-devices/eeprom
6586 F:      drivers/misc/eeprom/eeprom.c
6587
6588 LEGO USB Tower driver
6589 M:      Juergen Stuber <starblue@users.sourceforge.net>
6590 L:      legousb-devel@lists.sourceforge.net
6591 W:      http://legousb.sourceforge.net/
6592 S:      Maintained
6593 F:      drivers/usb/misc/legousbtower.c
6594
6595 LG2160 MEDIA DRIVER
6596 M:      Michael Krufky <mkrufky@linuxtv.org>
6597 L:      linux-media@vger.kernel.org
6598 W:      https://linuxtv.org
6599 W:      http://github.com/mkrufky
6600 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6601 T:      git git://linuxtv.org/mkrufky/tuners.git
6602 S:      Maintained
6603 F:      drivers/media/dvb-frontends/lg2160.*
6604
6605 LGDT3305 MEDIA DRIVER
6606 M:      Michael Krufky <mkrufky@linuxtv.org>
6607 L:      linux-media@vger.kernel.org
6608 W:      https://linuxtv.org
6609 W:      http://github.com/mkrufky
6610 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6611 T:      git git://linuxtv.org/mkrufky/tuners.git
6612 S:      Maintained
6613 F:      drivers/media/dvb-frontends/lgdt3305.*
6614
6615 LGUEST
6616 M:      Rusty Russell <rusty@rustcorp.com.au>
6617 L:      lguest@lists.ozlabs.org
6618 W:      http://lguest.ozlabs.org/
6619 S:      Odd Fixes
6620 F:      arch/x86/include/asm/lguest*.h
6621 F:      arch/x86/lguest/
6622 F:      drivers/lguest/
6623 F:      include/linux/lguest*.h
6624 F:      tools/lguest/
6625
6626 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6627 M:      Tejun Heo <tj@kernel.org>
6628 L:      linux-ide@vger.kernel.org
6629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6630 S:      Maintained
6631 F:      drivers/ata/
6632 F:      include/linux/ata.h
6633 F:      include/linux/libata.h
6634
6635 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6636 M:      Viresh Kumar <vireshk@kernel.org>
6637 L:      linux-ide@vger.kernel.org
6638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6639 S:      Maintained
6640 F:      include/linux/pata_arasan_cf_data.h
6641 F:      drivers/ata/pata_arasan_cf.c
6642
6643 LIBATA PATA DRIVERS
6644 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6645 M:      Tejun Heo <tj@kernel.org>
6646 L:      linux-ide@vger.kernel.org
6647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6648 S:      Maintained
6649 F:      drivers/ata/pata_*.c
6650 F:      drivers/ata/ata_generic.c
6651
6652 LIBATA SATA AHCI PLATFORM devices support
6653 M:      Hans de Goede <hdegoede@redhat.com>
6654 M:      Tejun Heo <tj@kernel.org>
6655 L:      linux-ide@vger.kernel.org
6656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6657 S:      Maintained
6658 F:      drivers/ata/ahci_platform.c
6659 F:      drivers/ata/libahci_platform.c
6660 F:      include/linux/ahci_platform.h
6661
6662 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6663 M:      Mikael Pettersson <mikpelinux@gmail.com>
6664 L:      linux-ide@vger.kernel.org
6665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6666 S:      Maintained
6667 F:      drivers/ata/sata_promise.*
6668
6669 LIBLOCKDEP
6670 M:      Sasha Levin <sasha.levin@oracle.com>
6671 S:      Maintained
6672 F:      tools/lib/lockdep/
6673
6674 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6675 M:      Dan Williams <dan.j.williams@intel.com>
6676 L:      linux-nvdimm@lists.01.org
6677 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6679 S:      Supported
6680 F:      drivers/nvdimm/*
6681 F:      include/linux/nd.h
6682 F:      include/linux/libnvdimm.h
6683 F:      include/uapi/linux/ndctl.h
6684
6685 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6686 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6687 L:      linux-nvdimm@lists.01.org
6688 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6689 S:      Supported
6690 F:      drivers/nvdimm/blk.c
6691 F:      drivers/nvdimm/region_devs.c
6692 F:      drivers/acpi/nfit*
6693
6694 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6695 M:      Vishal Verma <vishal.l.verma@intel.com>
6696 L:      linux-nvdimm@lists.01.org
6697 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6698 S:      Supported
6699 F:      drivers/nvdimm/btt*
6700
6701 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6702 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6703 L:      linux-nvdimm@lists.01.org
6704 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6705 S:      Supported
6706 F:      drivers/nvdimm/pmem.c
6707 F:      include/linux/pmem.h
6708 F:      arch/*/include/asm/pmem.h
6709
6710 LIGHTNVM PLATFORM SUPPORT
6711 M:      Matias Bjorling <mb@lightnvm.io>
6712 W:      http://github/OpenChannelSSD
6713 L:      linux-block@vger.kernel.org
6714 S:      Maintained
6715 F:      drivers/lightnvm/
6716 F:      include/linux/lightnvm.h
6717 F:      include/uapi/linux/lightnvm.h
6718
6719 LINUX FOR IBM pSERIES (RS/6000)
6720 M:      Paul Mackerras <paulus@au.ibm.com>
6721 W:      http://www.ibm.com/linux/ltc/projects/ppc
6722 S:      Supported
6723 F:      arch/powerpc/boot/rs6000.h
6724
6725 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6726 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6727 M:      Paul Mackerras <paulus@samba.org>
6728 M:      Michael Ellerman <mpe@ellerman.id.au>
6729 W:      http://www.penguinppc.org/
6730 L:      linuxppc-dev@lists.ozlabs.org
6731 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6733 S:      Supported
6734 F:      Documentation/powerpc/
6735 F:      arch/powerpc/
6736
6737 LINUX FOR POWER MACINTOSH
6738 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6739 W:      http://www.penguinppc.org/
6740 L:      linuxppc-dev@lists.ozlabs.org
6741 S:      Maintained
6742 F:      arch/powerpc/platforms/powermac/
6743 F:      drivers/macintosh/
6744
6745 LINUX FOR POWERPC EMBEDDED MPC5XXX
6746 M:      Anatolij Gustschin <agust@denx.de>
6747 L:      linuxppc-dev@lists.ozlabs.org
6748 T:      git git://git.denx.de/linux-denx-agust.git
6749 S:      Maintained
6750 F:      arch/powerpc/platforms/512x/
6751 F:      arch/powerpc/platforms/52xx/
6752
6753 LINUX FOR POWERPC EMBEDDED PPC4XX
6754 M:      Alistair Popple <alistair@popple.id.au>
6755 M:      Matt Porter <mporter@kernel.crashing.org>
6756 W:      http://www.penguinppc.org/
6757 L:      linuxppc-dev@lists.ozlabs.org
6758 S:      Maintained
6759 F:      arch/powerpc/platforms/40x/
6760 F:      arch/powerpc/platforms/44x/
6761
6762 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6763 L:      linuxppc-dev@lists.ozlabs.org
6764 S:      Orphan
6765 F:      arch/powerpc/*/*virtex*
6766 F:      arch/powerpc/*/*/*virtex*
6767
6768 LINUX FOR POWERPC EMBEDDED PPC8XX
6769 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6770 W:      http://www.penguinppc.org/
6771 L:      linuxppc-dev@lists.ozlabs.org
6772 S:      Maintained
6773 F:      arch/powerpc/platforms/8xx/
6774
6775 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6776 M:      Scott Wood <oss@buserror.net>
6777 M:      Kumar Gala <galak@kernel.crashing.org>
6778 W:      http://www.penguinppc.org/
6779 L:      linuxppc-dev@lists.ozlabs.org
6780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6781 S:      Maintained
6782 F:      arch/powerpc/platforms/83xx/
6783 F:      arch/powerpc/platforms/85xx/
6784
6785 LINUX FOR POWERPC PA SEMI PWRFICIENT
6786 M:      Olof Johansson <olof@lixom.net>
6787 L:      linuxppc-dev@lists.ozlabs.org
6788 S:      Maintained
6789 F:      arch/powerpc/platforms/pasemi/
6790 F:      drivers/*/*pasemi*
6791 F:      drivers/*/*/*pasemi*
6792
6793 LINUX SECURITY MODULE (LSM) FRAMEWORK
6794 M:      Chris Wright <chrisw@sous-sol.org>
6795 L:      linux-security-module@vger.kernel.org
6796 S:      Supported
6797
6798 LIS3LV02D ACCELEROMETER DRIVER
6799 M:      Eric Piel <eric.piel@tremplin-utc.net>
6800 S:      Maintained
6801 F:      Documentation/misc-devices/lis3lv02d
6802 F:      drivers/misc/lis3lv02d/
6803 F:      drivers/platform/x86/hp_accel.c
6804
6805 LIVE PATCHING
6806 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6807 M:      Jessica Yu <jeyu@redhat.com>
6808 M:      Jiri Kosina <jikos@kernel.org>
6809 M:      Miroslav Benes <mbenes@suse.cz>
6810 R:      Petr Mladek <pmladek@suse.com>
6811 S:      Maintained
6812 F:      kernel/livepatch/
6813 F:      include/linux/livepatch.h
6814 F:      arch/x86/include/asm/livepatch.h
6815 F:      arch/x86/kernel/livepatch.c
6816 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6817 F:      samples/livepatch/
6818 L:      live-patching@vger.kernel.org
6819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6820
6821 LINUX KERNEL DUMP TEST MODULE (LKDTM)
6822 M:      Kees Cook <keescook@chromium.org>
6823 S:      Maintained
6824 F:      drivers/misc/lkdtm.c
6825
6826 LLC (802.2)
6827 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6828 S:      Maintained
6829 F:      include/linux/llc.h
6830 F:      include/uapi/linux/llc.h
6831 F:      include/net/llc*
6832 F:      net/llc/
6833
6834 LM73 HARDWARE MONITOR DRIVER
6835 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6836 L:      linux-hwmon@vger.kernel.org
6837 S:      Maintained
6838 F:      drivers/hwmon/lm73.c
6839
6840 LM78 HARDWARE MONITOR DRIVER
6841 M:      Jean Delvare <jdelvare@suse.com>
6842 L:      linux-hwmon@vger.kernel.org
6843 S:      Maintained
6844 F:      Documentation/hwmon/lm78
6845 F:      drivers/hwmon/lm78.c
6846
6847 LM83 HARDWARE MONITOR DRIVER
6848 M:      Jean Delvare <jdelvare@suse.com>
6849 L:      linux-hwmon@vger.kernel.org
6850 S:      Maintained
6851 F:      Documentation/hwmon/lm83
6852 F:      drivers/hwmon/lm83.c
6853
6854 LM90 HARDWARE MONITOR DRIVER
6855 M:      Jean Delvare <jdelvare@suse.com>
6856 L:      linux-hwmon@vger.kernel.org
6857 S:      Maintained
6858 F:      Documentation/hwmon/lm90
6859 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6860 F:      drivers/hwmon/lm90.c
6861
6862 LM95234 HARDWARE MONITOR DRIVER
6863 M:      Guenter Roeck <linux@roeck-us.net>
6864 L:      linux-hwmon@vger.kernel.org
6865 S:      Maintained
6866 F:      Documentation/hwmon/lm95234
6867 F:      drivers/hwmon/lm95234.c
6868
6869 LME2510 MEDIA DRIVER
6870 M:      Malcolm Priestley <tvboxspy@gmail.com>
6871 L:      linux-media@vger.kernel.org
6872 W:      https://linuxtv.org
6873 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6874 S:      Maintained
6875 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6876
6877 LOCKDEP AND LOCKSTAT
6878 M:      Peter Zijlstra <peterz@infradead.org>
6879 M:      Ingo Molnar <mingo@redhat.com>
6880 L:      linux-kernel@vger.kernel.org
6881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6882 S:      Maintained
6883 F:      Documentation/locking/lockdep*.txt
6884 F:      Documentation/locking/lockstat.txt
6885 F:      include/linux/lockdep.h
6886 F:      kernel/locking/
6887
6888 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6889 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6890 L:      linux-ntfs-dev@lists.sourceforge.net
6891 W:      http://www.linux-ntfs.org/content/view/19/37/
6892 S:      Maintained
6893 F:      Documentation/ldm.txt
6894 F:      block/partitions/ldm.*
6895
6896 LogFS
6897 M:      Joern Engel <joern@logfs.org>
6898 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6899 L:      logfs@logfs.org
6900 W:      logfs.org
6901 S:      Maintained
6902 F:      fs/logfs/
6903
6904 LPC32XX MACHINE SUPPORT
6905 M:      Roland Stigge <stigge@antcom.de>
6906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6907 S:      Maintained
6908 F:      arch/arm/mach-lpc32xx/
6909
6910 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6911 M:      Sathya Prakash <sathya.prakash@broadcom.com>
6912 M:      Chaitra P B <chaitra.basappa@broadcom.com>
6913 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6914 L:      MPT-FusionLinux.pdl@broadcom.com
6915 L:      linux-scsi@vger.kernel.org
6916 W:      http://www.avagotech.com/support/
6917 S:      Supported
6918 F:      drivers/message/fusion/
6919 F:      drivers/scsi/mpt2sas/
6920 F:      drivers/scsi/mpt3sas/
6921
6922 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6923 M:      Matthew Wilcox <matthew@wil.cx>
6924 L:      linux-scsi@vger.kernel.org
6925 S:      Maintained
6926 F:      drivers/scsi/sym53c8xx_2/
6927
6928 LTC4261 HARDWARE MONITOR DRIVER
6929 M:      Guenter Roeck <linux@roeck-us.net>
6930 L:      linux-hwmon@vger.kernel.org
6931 S:      Maintained
6932 F:      Documentation/hwmon/ltc4261
6933 F:      drivers/hwmon/ltc4261.c
6934
6935 LTP (Linux Test Project)
6936 M:      Mike Frysinger <vapier@gentoo.org>
6937 M:      Cyril Hrubis <chrubis@suse.cz>
6938 M:      Wanlong Gao <wanlong.gao@gmail.com>
6939 M:      Jan Stancek <jstancek@redhat.com>
6940 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6941 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6942 L:      ltp@lists.linux.it (subscribers-only)
6943 W:      http://linux-test-project.github.io/
6944 T:      git git://github.com/linux-test-project/ltp.git
6945 S:      Maintained
6946
6947 M32R ARCHITECTURE
6948 W:      http://www.linux-m32r.org/
6949 S:      Orphan
6950 F:      arch/m32r/
6951
6952 M68K ARCHITECTURE
6953 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6954 L:      linux-m68k@lists.linux-m68k.org
6955 W:      http://www.linux-m68k.org/
6956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6957 S:      Maintained
6958 F:      arch/m68k/
6959 F:      drivers/zorro/
6960
6961 M68K ON APPLE MACINTOSH
6962 M:      Joshua Thompson <funaho@jurai.org>
6963 W:      http://www.mac.linux-m68k.org/
6964 L:      linux-m68k@lists.linux-m68k.org
6965 S:      Maintained
6966 F:      arch/m68k/mac/
6967
6968 M68K ON HP9000/300
6969 M:      Philip Blundell <philb@gnu.org>
6970 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6971 S:      Maintained
6972 F:      arch/m68k/hp300/
6973
6974 M88DS3103 MEDIA DRIVER
6975 M:      Antti Palosaari <crope@iki.fi>
6976 L:      linux-media@vger.kernel.org
6977 W:      https://linuxtv.org
6978 W:      http://palosaari.fi/linux/
6979 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6980 T:      git git://linuxtv.org/anttip/media_tree.git
6981 S:      Maintained
6982 F:      drivers/media/dvb-frontends/m88ds3103*
6983
6984 M88RS2000 MEDIA DRIVER
6985 M:      Malcolm Priestley <tvboxspy@gmail.com>
6986 L:      linux-media@vger.kernel.org
6987 W:      https://linuxtv.org
6988 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6989 S:      Maintained
6990 F:      drivers/media/dvb-frontends/m88rs2000*
6991
6992 MA901 MASTERKIT USB FM RADIO DRIVER
6993 M:      Alexey Klimov <klimov.linux@gmail.com>
6994 L:      linux-media@vger.kernel.org
6995 T:      git git://linuxtv.org/media_tree.git
6996 S:      Maintained
6997 F:      drivers/media/radio/radio-ma901.c
6998
6999 MAC80211
7000 M:      Johannes Berg <johannes@sipsolutions.net>
7001 L:      linux-wireless@vger.kernel.org
7002 W:      http://wireless.kernel.org/
7003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7004 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7005 S:      Maintained
7006 F:      Documentation/networking/mac80211-injection.txt
7007 F:      include/net/mac80211.h
7008 F:      net/mac80211/
7009 F:      drivers/net/wireless/mac80211_hwsim.[ch]
7010
7011 MACVLAN DRIVER
7012 M:      Patrick McHardy <kaber@trash.net>
7013 L:      netdev@vger.kernel.org
7014 S:      Maintained
7015 F:      drivers/net/macvlan.c
7016 F:      include/linux/if_macvlan.h
7017
7018 MAILBOX API
7019 M:      Jassi Brar <jassisinghbrar@gmail.com>
7020 L:      linux-kernel@vger.kernel.org
7021 S:      Maintained
7022 F:      drivers/mailbox/
7023 F:      include/linux/mailbox_client.h
7024 F:      include/linux/mailbox_controller.h
7025
7026 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7027 M:      Michael Kerrisk <mtk.manpages@gmail.com>
7028 W:      http://www.kernel.org/doc/man-pages
7029 L:      linux-man@vger.kernel.org
7030 S:      Maintained
7031
7032 MARVELL ARMADA DRM SUPPORT
7033 M:      Russell King <rmk+kernel@armlinux.org.uk>
7034 S:      Maintained
7035 F:      drivers/gpu/drm/armada/
7036 F:      include/uapi/drm/armada_drm.h
7037 F:      Documentation/devicetree/bindings/display/armada/
7038
7039 MARVELL 88E6352 DSA support
7040 M:      Guenter Roeck <linux@roeck-us.net>
7041 S:      Maintained
7042 F:      drivers/net/dsa/mv88e6352.c
7043
7044 MARVELL CRYPTO DRIVER
7045 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7046 M:      Arnaud Ebalard <arno@natisbad.org>
7047 F:      drivers/crypto/marvell/
7048 S:      Maintained
7049 L:      linux-crypto@vger.kernel.org
7050
7051 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7052 M:      Mirko Lindner <mlindner@marvell.com>
7053 M:      Stephen Hemminger <stephen@networkplumber.org>
7054 L:      netdev@vger.kernel.org
7055 S:      Maintained
7056 F:      drivers/net/ethernet/marvell/sk*
7057
7058 MARVELL LIBERTAS WIRELESS DRIVER
7059 L:      libertas-dev@lists.infradead.org
7060 S:      Orphan
7061 F:      drivers/net/wireless/marvell/libertas/
7062
7063 MARVELL MV643XX ETHERNET DRIVER
7064 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7065 L:      netdev@vger.kernel.org
7066 S:      Maintained
7067 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7068 F:      include/linux/mv643xx.h
7069
7070 MARVELL MVNETA ETHERNET DRIVER
7071 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7072 L:      netdev@vger.kernel.org
7073 S:      Maintained
7074 F:      drivers/net/ethernet/marvell/mvneta.*
7075
7076 MARVELL MWIFIEX WIRELESS DRIVER
7077 M:      Amitkumar Karwar <akarwar@marvell.com>
7078 M:      Nishant Sarmukadam <nishants@marvell.com>
7079 L:      linux-wireless@vger.kernel.org
7080 S:      Maintained
7081 F:      drivers/net/wireless/marvell/mwifiex/
7082
7083 MARVELL MWL8K WIRELESS DRIVER
7084 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7085 L:      linux-wireless@vger.kernel.org
7086 S:      Odd Fixes
7087 F:      drivers/net/wireless/marvell/mwl8k.c
7088
7089 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7090 M:      Nicolas Pitre <nico@fluxnic.net>
7091 S:      Odd Fixes
7092 F:      drivers/mmc/host/mvsdio.*
7093
7094 MATROX FRAMEBUFFER DRIVER
7095 L:      linux-fbdev@vger.kernel.org
7096 S:      Orphan
7097 F:      drivers/video/fbdev/matrox/matroxfb_*
7098 F:      include/uapi/linux/matroxfb.h
7099
7100 MAX16065 HARDWARE MONITOR DRIVER
7101 M:      Guenter Roeck <linux@roeck-us.net>
7102 L:      linux-hwmon@vger.kernel.org
7103 S:      Maintained
7104 F:      Documentation/hwmon/max16065
7105 F:      drivers/hwmon/max16065.c
7106
7107 MAX20751 HARDWARE MONITOR DRIVER
7108 M:      Guenter Roeck <linux@roeck-us.net>
7109 L:      linux-hwmon@vger.kernel.org
7110 S:      Maintained
7111 F:      Documentation/hwmon/max20751
7112 F:      drivers/hwmon/max20751.c
7113
7114 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7115 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7116 L:      linux-hwmon@vger.kernel.org
7117 S:      Maintained
7118 F:      Documentation/hwmon/max6650
7119 F:      drivers/hwmon/max6650.c
7120
7121 MAX6697 HARDWARE MONITOR DRIVER
7122 M:      Guenter Roeck <linux@roeck-us.net>
7123 L:      linux-hwmon@vger.kernel.org
7124 S:      Maintained
7125 F:      Documentation/hwmon/max6697
7126 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7127 F:      drivers/hwmon/max6697.c
7128 F:      include/linux/platform_data/max6697.h
7129
7130 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7131 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7132 L:      linux-pm@vger.kernel.org
7133 S:      Supported
7134 F:      drivers/power/max14577_charger.c
7135 F:      drivers/power/max77693_charger.c
7136
7137 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7138 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7139 L:      linux-kernel@vger.kernel.org
7140 S:      Supported
7141 F:      drivers/*/*max77802*.c
7142 F:      Documentation/devicetree/bindings/*/*max77802.txt
7143 F:      include/dt-bindings/*/*max77802.h
7144
7145 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7146 M:      Chanwoo Choi <cw00.choi@samsung.com>
7147 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7148 L:      linux-kernel@vger.kernel.org
7149 S:      Supported
7150 F:      drivers/*/max14577.c
7151 F:      drivers/*/max77686*.c
7152 F:      drivers/*/max77693.c
7153 F:      drivers/extcon/extcon-max14577.c
7154 F:      drivers/extcon/extcon-max77693.c
7155 F:      drivers/rtc/rtc-max77686.c
7156 F:      drivers/clk/clk-max77686.c
7157 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7158 F:      Documentation/devicetree/bindings/*/max77686.txt
7159 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7160 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7161 F:      include/linux/mfd/max14577*.h
7162 F:      include/linux/mfd/max77686*.h
7163 F:      include/linux/mfd/max77693*.h
7164
7165 MAXIRADIO FM RADIO RECEIVER DRIVER
7166 M:      Hans Verkuil <hverkuil@xs4all.nl>
7167 L:      linux-media@vger.kernel.org
7168 T:      git git://linuxtv.org/media_tree.git
7169 W:      https://linuxtv.org
7170 S:      Maintained
7171 F:      drivers/media/radio/radio-maxiradio*
7172
7173 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7174 M:      Peter Rosin <peda@axentia.se>
7175 L:      linux-iio@vger.kernel.org
7176 S:      Maintained
7177 F:      drivers/iio/potentiometer/mcp4531.c
7178
7179 MEDIA DRIVERS FOR RENESAS - VSP1
7180 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7181 L:      linux-media@vger.kernel.org
7182 L:      linux-renesas-soc@vger.kernel.org
7183 T:      git git://linuxtv.org/media_tree.git
7184 S:      Supported
7185 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7186 F:      drivers/media/platform/vsp1/
7187
7188 MEDIA DRIVERS FOR ASCOT2E
7189 M:      Sergey Kozlov <serjk@netup.ru>
7190 L:      linux-media@vger.kernel.org
7191 W:      https://linuxtv.org
7192 W:      http://netup.tv/
7193 T:      git git://linuxtv.org/media_tree.git
7194 S:      Supported
7195 F:      drivers/media/dvb-frontends/ascot2e*
7196
7197 MEDIA DRIVERS FOR CXD2841ER
7198 M:      Sergey Kozlov <serjk@netup.ru>
7199 L:      linux-media@vger.kernel.org
7200 W:      https://linuxtv.org
7201 W:      http://netup.tv/
7202 T:      git git://linuxtv.org/media_tree.git
7203 S:      Supported
7204 F:      drivers/media/dvb-frontends/cxd2841er*
7205
7206 MEDIA DRIVERS FOR HORUS3A
7207 M:      Sergey Kozlov <serjk@netup.ru>
7208 L:      linux-media@vger.kernel.org
7209 W:      https://linuxtv.org
7210 W:      http://netup.tv/
7211 T:      git git://linuxtv.org/media_tree.git
7212 S:      Supported
7213 F:      drivers/media/dvb-frontends/horus3a*
7214
7215 MEDIA DRIVERS FOR LNBH25
7216 M:      Sergey Kozlov <serjk@netup.ru>
7217 L:      linux-media@vger.kernel.org
7218 W:      https://linuxtv.org
7219 W:      http://netup.tv/
7220 T:      git git://linuxtv.org/media_tree.git
7221 S:      Supported
7222 F:      drivers/media/dvb-frontends/lnbh25*
7223
7224 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7225 M:      Sergey Kozlov <serjk@netup.ru>
7226 L:      linux-media@vger.kernel.org
7227 W:      https://linuxtv.org
7228 W:      http://netup.tv/
7229 T:      git git://linuxtv.org/media_tree.git
7230 S:      Supported
7231 F:      drivers/media/pci/netup_unidvb/*
7232
7233 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7234 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7235 P:      LinuxTV.org Project
7236 L:      linux-media@vger.kernel.org
7237 W:      https://linuxtv.org
7238 Q:      http://patchwork.kernel.org/project/linux-media/list/
7239 T:      git git://linuxtv.org/media_tree.git
7240 S:      Maintained
7241 F:      Documentation/dvb/
7242 F:      Documentation/video4linux/
7243 F:      Documentation/DocBook/media/
7244 F:      drivers/media/
7245 F:      drivers/staging/media/
7246 F:      include/linux/platform_data/media/
7247 F:      include/media/
7248 F:      include/uapi/linux/dvb/
7249 F:      include/uapi/linux/videodev2.h
7250 F:      include/uapi/linux/media.h
7251 F:      include/uapi/linux/v4l2-*
7252 F:      include/uapi/linux/meye.h
7253 F:      include/uapi/linux/ivtv*
7254 F:      include/uapi/linux/uvcvideo.h
7255
7256 MEDIATEK ETHERNET DRIVER
7257 M:      Felix Fietkau <nbd@openwrt.org>
7258 M:      John Crispin <blogic@openwrt.org>
7259 L:      netdev@vger.kernel.org
7260 S:      Maintained
7261 F:      drivers/net/ethernet/mediatek/
7262
7263 MEDIATEK MT7601U WIRELESS LAN DRIVER
7264 M:      Jakub Kicinski <kubakici@wp.pl>
7265 L:      linux-wireless@vger.kernel.org
7266 S:      Maintained
7267 F:      drivers/net/wireless/mediatek/mt7601u/
7268
7269 MEGARAID SCSI/SAS DRIVERS
7270 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7271 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7272 M:      Uday Lingala <uday.lingala@avagotech.com>
7273 L:      megaraidlinux.pdl@avagotech.com
7274 L:      linux-scsi@vger.kernel.org
7275 W:      http://www.lsi.com
7276 S:      Maintained
7277 F:      Documentation/scsi/megaraid.txt
7278 F:      drivers/scsi/megaraid.*
7279 F:      drivers/scsi/megaraid/
7280
7281 MELLANOX ETHERNET DRIVER (mlx4_en)
7282 M:      Eugenia Emantayev <eugenia@mellanox.com>
7283 L:      netdev@vger.kernel.org
7284 S:      Supported
7285 W:      http://www.mellanox.com
7286 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7287 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7288
7289 MELLANOX ETHERNET DRIVER (mlx5e)
7290 M:      Saeed Mahameed <saeedm@mellanox.com>
7291 L:      netdev@vger.kernel.org
7292 S:      Supported
7293 W:      http://www.mellanox.com
7294 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7295 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7296
7297 MELLANOX ETHERNET SWITCH DRIVERS
7298 M:      Jiri Pirko <jiri@mellanox.com>
7299 M:      Ido Schimmel <idosch@mellanox.com>
7300 L:      netdev@vger.kernel.org
7301 S:      Supported
7302 W:      http://www.mellanox.com
7303 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7304 F:      drivers/net/ethernet/mellanox/mlxsw/
7305
7306 MEMBARRIER SUPPORT
7307 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7308 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7309 L:      linux-kernel@vger.kernel.org
7310 S:      Supported
7311 F:      kernel/membarrier.c
7312 F:      include/uapi/linux/membarrier.h
7313
7314 MEMORY MANAGEMENT
7315 L:      linux-mm@kvack.org
7316 W:      http://www.linux-mm.org
7317 S:      Maintained
7318 F:      include/linux/mm.h
7319 F:      include/linux/gfp.h
7320 F:      include/linux/mmzone.h
7321 F:      include/linux/memory_hotplug.h
7322 F:      include/linux/vmalloc.h
7323 F:      mm/
7324
7325 MEMORY TECHNOLOGY DEVICES (MTD)
7326 M:      David Woodhouse <dwmw2@infradead.org>
7327 M:      Brian Norris <computersforpeace@gmail.com>
7328 L:      linux-mtd@lists.infradead.org
7329 W:      http://www.linux-mtd.infradead.org/
7330 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7331 T:      git git://git.infradead.org/linux-mtd.git
7332 T:      git git://git.infradead.org/l2-mtd.git
7333 S:      Maintained
7334 F:      drivers/mtd/
7335 F:      include/linux/mtd/
7336 F:      include/uapi/mtd/
7337
7338 MEN A21 WATCHDOG DRIVER
7339 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7340 L:      linux-watchdog@vger.kernel.org
7341 S:      Maintained
7342 F:      drivers/watchdog/mena21_wdt.c
7343
7344 MEN CHAMELEON BUS (mcb)
7345 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7346 S:      Maintained
7347 F:      drivers/mcb/
7348 F:      include/linux/mcb.h
7349 F:      Documentation/men-chameleon-bus.txt
7350
7351 MEN F21BMC (Board Management Controller)
7352 M:      Andreas Werner <andreas.werner@men.de>
7353 S:      Supported
7354 F:      drivers/mfd/menf21bmc.c
7355 F:      drivers/watchdog/menf21bmc_wdt.c
7356 F:      drivers/leds/leds-menf21bmc.c
7357 F:      drivers/hwmon/menf21bmc_hwmon.c
7358 F:      Documentation/hwmon/menf21bmc
7359
7360 METAG ARCHITECTURE
7361 M:      James Hogan <james.hogan@imgtec.com>
7362 L:      linux-metag@vger.kernel.org
7363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7364 S:      Odd Fixes
7365 F:      arch/metag/
7366 F:      Documentation/metag/
7367 F:      Documentation/devicetree/bindings/metag/
7368 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7369 F:      drivers/clocksource/metag_generic.c
7370 F:      drivers/irqchip/irq-metag.c
7371 F:      drivers/irqchip/irq-metag-ext.c
7372 F:      drivers/tty/metag_da.c
7373
7374 MICROBLAZE ARCHITECTURE
7375 M:      Michal Simek <monstr@monstr.eu>
7376 W:      http://www.monstr.eu/fdt/
7377 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7378 S:      Supported
7379 F:      arch/microblaze/
7380
7381 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7382 M:      Chen Yu <yu.c.chen@intel.com>
7383 L:      platform-driver-x86@vger.kernel.org
7384 S:      Supported
7385 F:      drivers/platform/x86/surfacepro3_button.c
7386
7387 MICROTEK X6 SCANNER
7388 M:      Oliver Neukum <oliver@neukum.org>
7389 S:      Maintained
7390 F:      drivers/usb/image/microtek.*
7391
7392 MIPS
7393 M:      Ralf Baechle <ralf@linux-mips.org>
7394 L:      linux-mips@linux-mips.org
7395 W:      http://www.linux-mips.org/
7396 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7397 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7398 S:      Supported
7399 F:      Documentation/mips/
7400 F:      arch/mips/
7401
7402 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7403 M:      Hans Verkuil <hverkuil@xs4all.nl>
7404 L:      linux-media@vger.kernel.org
7405 T:      git git://linuxtv.org/media_tree.git
7406 W:      https://linuxtv.org
7407 S:      Odd Fixes
7408 F:      drivers/media/radio/radio-miropcm20*
7409
7410 MELLANOX MLX4 core VPI driver
7411 M:      Yishai Hadas <yishaih@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/mlx4/
7418 F:      include/linux/mlx4/
7419
7420 MELLANOX MLX4 IB driver
7421 M:      Yishai Hadas <yishaih@mellanox.com>
7422 L:      linux-rdma@vger.kernel.org
7423 W:      http://www.mellanox.com
7424 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7425 S:      Supported
7426 F:      drivers/infiniband/hw/mlx4/
7427 F:      include/linux/mlx4/
7428
7429 MELLANOX MLX5 core VPI driver
7430 M:      Matan Barak <matanb@mellanox.com>
7431 M:      Leon Romanovsky <leonro@mellanox.com>
7432 L:      netdev@vger.kernel.org
7433 L:      linux-rdma@vger.kernel.org
7434 W:      http://www.mellanox.com
7435 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7436 S:      Supported
7437 F:      drivers/net/ethernet/mellanox/mlx5/core/
7438 F:      include/linux/mlx5/
7439
7440 MELLANOX MLX5 IB driver
7441 M:      Matan Barak <matanb@mellanox.com>
7442 M:      Leon Romanovsky <leonro@mellanox.com>
7443 L:      linux-rdma@vger.kernel.org
7444 W:      http://www.mellanox.com
7445 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7446 S:      Supported
7447 F:      drivers/infiniband/hw/mlx5/
7448 F:      include/linux/mlx5/
7449
7450 MELEXIS MLX90614 DRIVER
7451 M:      Crt Mori <cmo@melexis.com>
7452 L:      linux-iio@vger.kernel.org
7453 W:      http://www.melexis.com
7454 S:      Supported
7455 F:      drivers/iio/temperature/mlx90614.c
7456
7457 MN88472 MEDIA DRIVER
7458 M:      Antti Palosaari <crope@iki.fi>
7459 L:      linux-media@vger.kernel.org
7460 W:      https://linuxtv.org
7461 W:      http://palosaari.fi/linux/
7462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7463 T:      git git://linuxtv.org/anttip/media_tree.git
7464 S:      Maintained
7465 F:      drivers/staging/media/mn88472/
7466 F:      drivers/media/dvb-frontends/mn88472.h
7467
7468 MN88473 MEDIA DRIVER
7469 M:      Antti Palosaari <crope@iki.fi>
7470 L:      linux-media@vger.kernel.org
7471 W:      https://linuxtv.org
7472 W:      http://palosaari.fi/linux/
7473 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7474 S:      Maintained
7475 F:      drivers/media/dvb-frontends/mn88473*
7476
7477 MODULE SUPPORT
7478 M:      Rusty Russell <rusty@rustcorp.com.au>
7479 S:      Maintained
7480 F:      include/linux/module.h
7481 F:      kernel/module.c
7482
7483 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7484 W:      http://popies.net/meye/
7485 S:      Orphan
7486 F:      Documentation/video4linux/meye.txt
7487 F:      drivers/media/pci/meye/
7488 F:      include/uapi/linux/meye.h
7489
7490 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7491 M:      Jiri Slaby <jirislaby@gmail.com>
7492 S:      Maintained
7493 F:      Documentation/serial/moxa-smartio
7494 F:      drivers/tty/mxser.*
7495
7496 MR800 AVERMEDIA USB FM RADIO DRIVER
7497 M:      Alexey Klimov <klimov.linux@gmail.com>
7498 L:      linux-media@vger.kernel.org
7499 T:      git git://linuxtv.org/media_tree.git
7500 S:      Maintained
7501 F:      drivers/media/radio/radio-mr800.c
7502
7503 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7504 M:      Alan Ott <alan@signal11.us>
7505 L:      linux-wpan@vger.kernel.org
7506 S:      Maintained
7507 F:      drivers/net/ieee802154/mrf24j40.c
7508 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7509
7510 MSI LAPTOP SUPPORT
7511 M:      "Lee, Chun-Yi" <jlee@suse.com>
7512 L:      platform-driver-x86@vger.kernel.org
7513 S:      Maintained
7514 F:      drivers/platform/x86/msi-laptop.c
7515
7516 MSI WMI SUPPORT
7517 L:      platform-driver-x86@vger.kernel.org
7518 S:      Orphan
7519 F:      drivers/platform/x86/msi-wmi.c
7520
7521 MSI001 MEDIA DRIVER
7522 M:      Antti Palosaari <crope@iki.fi>
7523 L:      linux-media@vger.kernel.org
7524 W:      https://linuxtv.org
7525 W:      http://palosaari.fi/linux/
7526 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7527 T:      git git://linuxtv.org/anttip/media_tree.git
7528 S:      Maintained
7529 F:      drivers/media/tuners/msi001*
7530
7531 MSI2500 MEDIA DRIVER
7532 M:      Antti Palosaari <crope@iki.fi>
7533 L:      linux-media@vger.kernel.org
7534 W:      https://linuxtv.org
7535 W:      http://palosaari.fi/linux/
7536 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7537 T:      git git://linuxtv.org/anttip/media_tree.git
7538 S:      Maintained
7539 F:      drivers/media/usb/msi2500/
7540
7541 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7542 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7543 L:      linux-mtd@lists.infradead.org
7544 S:      Maintained
7545 F:      drivers/mtd/devices/docg3*
7546
7547 MT9M032 APTINA SENSOR DRIVER
7548 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7549 L:      linux-media@vger.kernel.org
7550 T:      git git://linuxtv.org/media_tree.git
7551 S:      Maintained
7552 F:      drivers/media/i2c/mt9m032.c
7553 F:      include/media/i2c/mt9m032.h
7554
7555 MT9P031 APTINA CAMERA SENSOR
7556 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7557 L:      linux-media@vger.kernel.org
7558 T:      git git://linuxtv.org/media_tree.git
7559 S:      Maintained
7560 F:      drivers/media/i2c/mt9p031.c
7561 F:      include/media/i2c/mt9p031.h
7562
7563 MT9T001 APTINA CAMERA SENSOR
7564 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7565 L:      linux-media@vger.kernel.org
7566 T:      git git://linuxtv.org/media_tree.git
7567 S:      Maintained
7568 F:      drivers/media/i2c/mt9t001.c
7569 F:      include/media/i2c/mt9t001.h
7570
7571 MT9V032 APTINA CAMERA SENSOR
7572 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7573 L:      linux-media@vger.kernel.org
7574 T:      git git://linuxtv.org/media_tree.git
7575 S:      Maintained
7576 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7577 F:      drivers/media/i2c/mt9v032.c
7578 F:      include/media/i2c/mt9v032.h
7579
7580 MULTIFUNCTION DEVICES (MFD)
7581 M:      Lee Jones <lee.jones@linaro.org>
7582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7583 S:      Supported
7584 F:      drivers/mfd/
7585 F:      include/linux/mfd/
7586
7587 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7588 M:      Ulf Hansson <ulf.hansson@linaro.org>
7589 L:      linux-mmc@vger.kernel.org
7590 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7591 S:      Maintained
7592 F:      drivers/mmc/
7593 F:      include/linux/mmc/
7594 F:      include/uapi/linux/mmc/
7595
7596 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7597 S:      Orphan
7598 F:      drivers/mmc/host/mmc_spi.c
7599 F:      include/linux/spi/mmc_spi.h
7600
7601 MULTISOUND SOUND DRIVER
7602 M:      Andrew Veliath <andrewtv@usa.net>
7603 S:      Maintained
7604 F:      Documentation/sound/oss/MultiSound
7605 F:      sound/oss/msnd*
7606
7607 MULTITECH MULTIPORT CARD (ISICOM)
7608 S:      Orphan
7609 F:      drivers/tty/isicom.c
7610 F:      include/linux/isicom.h
7611
7612 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7613 M:      Bin Liu <b-liu@ti.com>
7614 L:      linux-usb@vger.kernel.org
7615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7616 S:      Maintained
7617 F:      drivers/usb/musb/
7618
7619 MXL5007T MEDIA DRIVER
7620 M:      Michael Krufky <mkrufky@linuxtv.org>
7621 L:      linux-media@vger.kernel.org
7622 W:      https://linuxtv.org
7623 W:      http://github.com/mkrufky
7624 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7625 T:      git git://linuxtv.org/mkrufky/tuners.git
7626 S:      Maintained
7627 F:      drivers/media/tuners/mxl5007t.*
7628
7629 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7630 M:      Hyong-Youb Kim <hykim@myri.com>
7631 L:      netdev@vger.kernel.org
7632 W:      https://www.myricom.com/support/downloads/myri10ge.html
7633 S:      Supported
7634 F:      drivers/net/ethernet/myricom/myri10ge/
7635
7636 NAND FLASH SUBSYSTEM
7637 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7638 R:      Richard Weinberger <richard@nod.at>
7639 L:      linux-mtd@lists.infradead.org
7640 W:      http://www.linux-mtd.infradead.org/
7641 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7642 T:      git git://github.com/linux-nand/linux.git
7643 S:      Maintained
7644 F:      drivers/mtd/nand/
7645 F:      include/linux/mtd/nand*.h
7646
7647 NATSEMI ETHERNET DRIVER (DP8381x)
7648 S:      Orphan
7649 F:      drivers/net/ethernet/natsemi/natsemi.c
7650
7651 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7652 M:      Daniel Mack <zonque@gmail.com>
7653 S:      Maintained
7654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7655 W:      http://www.native-instruments.com
7656 F:      sound/usb/caiaq/
7657
7658 NCP FILESYSTEM
7659 M:      Petr Vandrovec <petr@vandrovec.name>
7660 S:      Odd Fixes
7661 F:      fs/ncpfs/
7662
7663 NCR 5380 SCSI DRIVERS
7664 M:      Finn Thain <fthain@telegraphics.com.au>
7665 M:      Michael Schmitz <schmitzmic@gmail.com>
7666 L:      linux-scsi@vger.kernel.org
7667 S:      Maintained
7668 F:      Documentation/scsi/g_NCR5380.txt
7669 F:      drivers/scsi/NCR5380.*
7670 F:      drivers/scsi/arm/cumana_1.c
7671 F:      drivers/scsi/arm/oak.c
7672 F:      drivers/scsi/atari_NCR5380.c
7673 F:      drivers/scsi/atari_scsi.*
7674 F:      drivers/scsi/dmx3191d.c
7675 F:      drivers/scsi/dtc.*
7676 F:      drivers/scsi/g_NCR5380.*
7677 F:      drivers/scsi/g_NCR5380_mmio.c
7678 F:      drivers/scsi/mac_scsi.*
7679 F:      drivers/scsi/pas16.*
7680 F:      drivers/scsi/sun3_scsi.*
7681 F:      drivers/scsi/sun3_scsi_vme.c
7682 F:      drivers/scsi/t128.*
7683
7684 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7685 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7686 L:      linux-scsi@vger.kernel.org
7687 S:      Maintained
7688 F:      drivers/scsi/NCR_D700.*
7689
7690 NCT6775 HARDWARE MONITOR DRIVER
7691 M:      Guenter Roeck <linux@roeck-us.net>
7692 L:      linux-hwmon@vger.kernel.org
7693 S:      Maintained
7694 F:      Documentation/hwmon/nct6775
7695 F:      drivers/hwmon/nct6775.c
7696
7697 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7698 M:      Faisal Latif <faisal.latif@intel.com>
7699 L:      linux-rdma@vger.kernel.org
7700 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7701 S:      Supported
7702 F:      drivers/infiniband/hw/nes/
7703
7704 NETEM NETWORK EMULATOR
7705 M:      Stephen Hemminger <stephen@networkplumber.org>
7706 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
7707 S:      Maintained
7708 F:      net/sched/sch_netem.c
7709
7710 NETERION 10GbE DRIVERS (s2io/vxge)
7711 M:      Jon Mason <jdmason@kudzu.us>
7712 L:      netdev@vger.kernel.org
7713 S:      Supported
7714 F:      Documentation/networking/s2io.txt
7715 F:      Documentation/networking/vxge.txt
7716 F:      drivers/net/ethernet/neterion/
7717
7718 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7719 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7720 M:      Patrick McHardy <kaber@trash.net>
7721 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7722 L:      netfilter-devel@vger.kernel.org
7723 L:      coreteam@netfilter.org
7724 W:      http://www.netfilter.org/
7725 W:      http://www.iptables.org/
7726 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7729 S:      Supported
7730 F:      include/linux/netfilter*
7731 F:      include/linux/netfilter/
7732 F:      include/net/netfilter/
7733 F:      include/uapi/linux/netfilter*
7734 F:      include/uapi/linux/netfilter/
7735 F:      net/*/netfilter.c
7736 F:      net/*/netfilter/
7737 F:      net/netfilter/
7738 F:      net/bridge/br_netfilter*.c
7739
7740 NETLABEL
7741 M:      Paul Moore <paul@paul-moore.com>
7742 W:      http://netlabel.sf.net
7743 L:      netdev@vger.kernel.org
7744 S:      Maintained
7745 F:      Documentation/netlabel/
7746 F:      include/net/netlabel.h
7747 F:      net/netlabel/
7748
7749 NETROM NETWORK LAYER
7750 M:      Ralf Baechle <ralf@linux-mips.org>
7751 L:      linux-hams@vger.kernel.org
7752 W:      http://www.linux-ax25.org/
7753 S:      Maintained
7754 F:      include/net/netrom.h
7755 F:      include/uapi/linux/netrom.h
7756 F:      net/netrom/
7757
7758 NETRONOME ETHERNET DRIVERS
7759 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7760 L:      oss-drivers@netronome.com
7761 S:      Maintained
7762 F:      drivers/net/ethernet/netronome/
7763
7764 NETWORK BLOCK DEVICE (NBD)
7765 M:      Markus Pargmann <mpa@pengutronix.de>
7766 S:      Maintained
7767 L:      nbd-general@lists.sourceforge.net
7768 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7769 F:      Documentation/blockdev/nbd.txt
7770 F:      drivers/block/nbd.c
7771 F:      include/uapi/linux/nbd.h
7772
7773 NETWORK DROP MONITOR
7774 M:      Neil Horman <nhorman@tuxdriver.com>
7775 L:      netdev@vger.kernel.org
7776 S:      Maintained
7777 W:      https://fedorahosted.org/dropwatch/
7778 F:      net/core/drop_monitor.c
7779
7780 NETWORKING [GENERAL]
7781 M:      "David S. Miller" <davem@davemloft.net>
7782 L:      netdev@vger.kernel.org
7783 W:      http://www.linuxfoundation.org/en/Net
7784 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7787 S:      Maintained
7788 F:      net/
7789 F:      include/net/
7790 F:      include/linux/in.h
7791 F:      include/linux/net.h
7792 F:      include/linux/netdevice.h
7793 F:      include/uapi/linux/in.h
7794 F:      include/uapi/linux/net.h
7795 F:      include/uapi/linux/netdevice.h
7796 F:      include/uapi/linux/net_namespace.h
7797 F:      tools/net/
7798 F:      tools/testing/selftests/net/
7799 F:      lib/random32.c
7800 F:      lib/test_bpf.c
7801
7802 NETWORKING [IPv4/IPv6]
7803 M:      "David S. Miller" <davem@davemloft.net>
7804 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7805 M:      James Morris <jmorris@namei.org>
7806 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7807 M:      Patrick McHardy <kaber@trash.net>
7808 L:      netdev@vger.kernel.org
7809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7810 S:      Maintained
7811 F:      net/ipv4/
7812 F:      net/ipv6/
7813 F:      include/net/ip*
7814 F:      arch/x86/net/*
7815
7816 NETWORKING [IPSEC]
7817 M:      Steffen Klassert <steffen.klassert@secunet.com>
7818 M:      Herbert Xu <herbert@gondor.apana.org.au>
7819 M:      "David S. Miller" <davem@davemloft.net>
7820 L:      netdev@vger.kernel.org
7821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7823 S:      Maintained
7824 F:      net/core/flow.c
7825 F:      net/xfrm/
7826 F:      net/key/
7827 F:      net/ipv4/xfrm*
7828 F:      net/ipv4/esp4.c
7829 F:      net/ipv4/ah4.c
7830 F:      net/ipv4/ipcomp.c
7831 F:      net/ipv4/ip_vti.c
7832 F:      net/ipv6/xfrm*
7833 F:      net/ipv6/esp6.c
7834 F:      net/ipv6/ah6.c
7835 F:      net/ipv6/ipcomp6.c
7836 F:      net/ipv6/ip6_vti.c
7837 F:      include/uapi/linux/xfrm.h
7838 F:      include/net/xfrm.h
7839
7840 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7841 M:      Paul Moore <paul@paul-moore.com>
7842 L:      netdev@vger.kernel.org
7843 S:      Maintained
7844
7845 NETWORKING [WIRELESS]
7846 L:      linux-wireless@vger.kernel.org
7847 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7848
7849 NETWORKING DRIVERS
7850 L:      netdev@vger.kernel.org
7851 W:      http://www.linuxfoundation.org/en/Net
7852 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7855 S:      Odd Fixes
7856 F:      drivers/net/
7857 F:      include/linux/if_*
7858 F:      include/linux/netdevice.h
7859 F:      include/linux/etherdevice.h
7860 F:      include/linux/fcdevice.h
7861 F:      include/linux/fddidevice.h
7862 F:      include/linux/hippidevice.h
7863 F:      include/linux/inetdevice.h
7864 F:      include/uapi/linux/if_*
7865 F:      include/uapi/linux/netdevice.h
7866
7867 NETWORKING DRIVERS (WIRELESS)
7868 M:      Kalle Valo <kvalo@codeaurora.org>
7869 L:      linux-wireless@vger.kernel.org
7870 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7873 S:      Maintained
7874 F:      drivers/net/wireless/
7875
7876 NETXEN (1/10) GbE SUPPORT
7877 M:      Manish Chopra <manish.chopra@qlogic.com>
7878 M:      Sony Chacko <sony.chacko@qlogic.com>
7879 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7880 L:      netdev@vger.kernel.org
7881 W:      http://www.qlogic.com
7882 S:      Supported
7883 F:      drivers/net/ethernet/qlogic/netxen/
7884
7885 NFC SUBSYSTEM
7886 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7887 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7888 M:      Samuel Ortiz <sameo@linux.intel.com>
7889 L:      linux-wireless@vger.kernel.org
7890 L:      linux-nfc@lists.01.org (subscribers-only)
7891 S:      Supported
7892 F:      net/nfc/
7893 F:      include/net/nfc/
7894 F:      include/uapi/linux/nfc.h
7895 F:      drivers/nfc/
7896 F:      include/linux/platform_data/nfcmrvl.h
7897 F:      include/linux/platform_data/nxp-nci.h
7898 F:      include/linux/platform_data/pn544.h
7899 F:      include/linux/platform_data/st21nfca.h
7900 F:      include/linux/platform_data/st-nci.h
7901 F:      Documentation/devicetree/bindings/net/nfc/
7902
7903 NFS, SUNRPC, AND LOCKD CLIENTS
7904 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7905 M:      Anna Schumaker <anna.schumaker@netapp.com>
7906 L:      linux-nfs@vger.kernel.org
7907 W:      http://client.linux-nfs.org
7908 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7909 S:      Maintained
7910 F:      fs/lockd/
7911 F:      fs/nfs/
7912 F:      fs/nfs_common/
7913 F:      net/sunrpc/
7914 F:      include/linux/lockd/
7915 F:      include/linux/nfs*
7916 F:      include/linux/sunrpc/
7917 F:      include/uapi/linux/nfs*
7918 F:      include/uapi/linux/sunrpc/
7919
7920 NILFS2 FILESYSTEM
7921 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7922 L:      linux-nilfs@vger.kernel.org
7923 W:      http://nilfs.sourceforge.net/
7924 T:      git git://github.com/konis/nilfs2.git
7925 S:      Supported
7926 F:      Documentation/filesystems/nilfs2.txt
7927 F:      fs/nilfs2/
7928 F:      include/linux/nilfs2_fs.h
7929 F:      include/trace/events/nilfs2.h
7930
7931 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7932 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7933 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7934 S:      Maintained
7935 F:      Documentation/scsi/NinjaSCSI.txt
7936 F:      drivers/scsi/pcmcia/nsp_*
7937
7938 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7939 M:      GOTO Masanori <gotom@debian.or.jp>
7940 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7941 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7942 S:      Maintained
7943 F:      Documentation/scsi/NinjaSCSI.txt
7944 F:      drivers/scsi/nsp32*
7945
7946 NIOS2 ARCHITECTURE
7947 M:      Ley Foon Tan <lftan@altera.com>
7948 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7950 S:      Maintained
7951 F:      arch/nios2/
7952
7953 NOKIA N900 POWER SUPPLY DRIVERS
7954 R:      Pali Rohár <pali.rohar@gmail.com>
7955 F:      include/linux/power/bq2415x_charger.h
7956 F:      include/linux/power/bq27xxx_battery.h
7957 F:      include/linux/power/isp1704_charger.h
7958 F:      drivers/power/bq2415x_charger.c
7959 F:      drivers/power/bq27xxx_battery.c
7960 F:      drivers/power/bq27xxx_battery_i2c.c
7961 F:      drivers/power/isp1704_charger.c
7962 F:      drivers/power/rx51_battery.c
7963
7964 NTB DRIVER CORE
7965 M:      Jon Mason <jdmason@kudzu.us>
7966 M:      Dave Jiang <dave.jiang@intel.com>
7967 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7968 L:      linux-ntb@googlegroups.com
7969 S:      Supported
7970 W:      https://github.com/jonmason/ntb/wiki
7971 T:      git git://github.com/jonmason/ntb.git
7972 F:      drivers/ntb/
7973 F:      drivers/net/ntb_netdev.c
7974 F:      include/linux/ntb.h
7975 F:      include/linux/ntb_transport.h
7976
7977 NTB INTEL DRIVER
7978 M:      Jon Mason <jdmason@kudzu.us>
7979 M:      Dave Jiang <dave.jiang@intel.com>
7980 L:      linux-ntb@googlegroups.com
7981 S:      Supported
7982 W:      https://github.com/jonmason/ntb/wiki
7983 T:      git git://github.com/jonmason/ntb.git
7984 F:      drivers/ntb/hw/intel/
7985
7986 NTB AMD DRIVER
7987 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7988 L:      linux-ntb@googlegroups.com
7989 S:      Supported
7990 F:      drivers/ntb/hw/amd/
7991
7992 NTFS FILESYSTEM
7993 M:      Anton Altaparmakov <anton@tuxera.com>
7994 L:      linux-ntfs-dev@lists.sourceforge.net
7995 W:      http://www.tuxera.com/
7996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7997 S:      Supported
7998 F:      Documentation/filesystems/ntfs.txt
7999 F:      fs/ntfs/
8000
8001 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
8002 M:      Antonino Daplas <adaplas@gmail.com>
8003 L:      linux-fbdev@vger.kernel.org
8004 S:      Maintained
8005 F:      drivers/video/fbdev/riva/
8006 F:      drivers/video/fbdev/nvidia/
8007
8008 NVM EXPRESS DRIVER
8009 M:      Keith Busch <keith.busch@intel.com>
8010 M:      Jens Axboe <axboe@fb.com>
8011 L:      linux-nvme@lists.infradead.org
8012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
8013 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
8014 S:      Supported
8015 F:      drivers/nvme/host/
8016 F:      include/linux/nvme.h
8017
8018 NVMEM FRAMEWORK
8019 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
8020 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
8021 S:      Maintained
8022 F:      drivers/nvmem/
8023 F:      Documentation/devicetree/bindings/nvmem/
8024 F:      include/linux/nvmem-consumer.h
8025 F:      include/linux/nvmem-provider.h
8026
8027 NXP-NCI NFC DRIVER
8028 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
8029 R:      Charles Gorand <charles.gorand@effinnov.com>
8030 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8031 S:      Supported
8032 F:      drivers/nfc/nxp-nci
8033
8034 NXP TDA998X DRM DRIVER
8035 M:      Russell King <rmk+kernel@armlinux.org.uk>
8036 S:      Supported
8037 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8038 F:      include/drm/i2c/tda998x.h
8039
8040 NXP TFA9879 DRIVER
8041 M:      Peter Rosin <peda@axentia.se>
8042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8043 S:      Maintained
8044 F:      sound/soc/codecs/tfa9879*
8045
8046 OBJTOOL
8047 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8048 S:      Supported
8049 F:      tools/objtool/
8050
8051 OMAP SUPPORT
8052 M:      Tony Lindgren <tony@atomide.com>
8053 L:      linux-omap@vger.kernel.org
8054 W:      http://www.muru.com/linux/omap/
8055 W:      http://linux.omap.com/
8056 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8058 S:      Maintained
8059 F:      arch/arm/*omap*/
8060 F:      arch/arm/configs/omap1_defconfig
8061 F:      arch/arm/configs/omap2plus_defconfig
8062 F:      drivers/i2c/busses/i2c-omap.c
8063 F:      drivers/irqchip/irq-omap-intc.c
8064 F:      drivers/mfd/*omap*.c
8065 F:      drivers/mfd/menelaus.c
8066 F:      drivers/mfd/palmas.c
8067 F:      drivers/mfd/tps65217.c
8068 F:      drivers/mfd/tps65218.c
8069 F:      drivers/mfd/tps65910.c
8070 F:      drivers/mfd/twl-core.[ch]
8071 F:      drivers/mfd/twl4030*.c
8072 F:      drivers/mfd/twl6030*.c
8073 F:      drivers/mfd/twl6040*.c
8074 F:      drivers/regulator/palmas-regulator*.c
8075 F:      drivers/regulator/pbias-regulator.c
8076 F:      drivers/regulator/tps65217-regulator.c
8077 F:      drivers/regulator/tps65218-regulator.c
8078 F:      drivers/regulator/tps65910-regulator.c
8079 F:      drivers/regulator/twl-regulator.c
8080 F:      include/linux/i2c-omap.h
8081
8082 OMAP DEVICE TREE SUPPORT
8083 M:      Benoît Cousson <bcousson@baylibre.com>
8084 M:      Tony Lindgren <tony@atomide.com>
8085 L:      linux-omap@vger.kernel.org
8086 L:      devicetree@vger.kernel.org
8087 S:      Maintained
8088 F:      arch/arm/boot/dts/*omap*
8089 F:      arch/arm/boot/dts/*am3*
8090 F:      arch/arm/boot/dts/*am4*
8091 F:      arch/arm/boot/dts/*am5*
8092 F:      arch/arm/boot/dts/*dra7*
8093
8094 OMAP CLOCK FRAMEWORK SUPPORT
8095 M:      Paul Walmsley <paul@pwsan.com>
8096 L:      linux-omap@vger.kernel.org
8097 S:      Maintained
8098 F:      arch/arm/*omap*/*clock*
8099
8100 OMAP POWER MANAGEMENT SUPPORT
8101 M:      Kevin Hilman <khilman@kernel.org>
8102 L:      linux-omap@vger.kernel.org
8103 S:      Maintained
8104 F:      arch/arm/*omap*/*pm*
8105 F:      drivers/cpufreq/omap-cpufreq.c
8106
8107 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8108 M:      Rajendra Nayak <rnayak@codeaurora.org>
8109 M:      Paul Walmsley <paul@pwsan.com>
8110 L:      linux-omap@vger.kernel.org
8111 S:      Maintained
8112 F:      arch/arm/mach-omap2/prm*
8113
8114 OMAP AUDIO SUPPORT
8115 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8116 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8117 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8118 L:      linux-omap@vger.kernel.org
8119 S:      Maintained
8120 F:      sound/soc/omap/
8121
8122 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8123 M:      Roger Quadros <rogerq@ti.com>
8124 M:      Tony Lindgren <tony@atomide.com>
8125 L:      linux-omap@vger.kernel.org
8126 S:      Maintained
8127 F:      drivers/memory/omap-gpmc.c
8128 F:      arch/arm/mach-omap2/*gpmc*
8129
8130 OMAP FRAMEBUFFER SUPPORT
8131 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8132 L:      linux-fbdev@vger.kernel.org
8133 L:      linux-omap@vger.kernel.org
8134 S:      Maintained
8135 F:      drivers/video/fbdev/omap/
8136
8137 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8138 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8139 L:      linux-omap@vger.kernel.org
8140 L:      linux-fbdev@vger.kernel.org
8141 S:      Maintained
8142 F:      drivers/video/fbdev/omap2/
8143 F:      Documentation/arm/OMAP/DSS
8144
8145 OMAP HARDWARE SPINLOCK SUPPORT
8146 M:      Ohad Ben-Cohen <ohad@wizery.com>
8147 L:      linux-omap@vger.kernel.org
8148 S:      Maintained
8149 F:      drivers/hwspinlock/omap_hwspinlock.c
8150
8151 OMAP MMC SUPPORT
8152 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8153 L:      linux-omap@vger.kernel.org
8154 S:      Maintained
8155 F:      drivers/mmc/host/omap.c
8156
8157 OMAP HS MMC SUPPORT
8158 L:      linux-mmc@vger.kernel.org
8159 L:      linux-omap@vger.kernel.org
8160 S:      Orphan
8161 F:      drivers/mmc/host/omap_hsmmc.c
8162
8163 OMAP RANDOM NUMBER GENERATOR SUPPORT
8164 M:      Deepak Saxena <dsaxena@plexity.net>
8165 S:      Maintained
8166 F:      drivers/char/hw_random/omap-rng.c
8167
8168 OMAP HWMOD SUPPORT
8169 M:      Benoît Cousson <bcousson@baylibre.com>
8170 M:      Paul Walmsley <paul@pwsan.com>
8171 L:      linux-omap@vger.kernel.org
8172 S:      Maintained
8173 F:      arch/arm/mach-omap2/omap_hwmod.*
8174
8175 OMAP HWMOD DATA
8176 M:      Paul Walmsley <paul@pwsan.com>
8177 L:      linux-omap@vger.kernel.org
8178 S:      Maintained
8179 F:      arch/arm/mach-omap2/omap_hwmod*data*
8180
8181 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8182 M:      Benoît Cousson <bcousson@baylibre.com>
8183 L:      linux-omap@vger.kernel.org
8184 S:      Maintained
8185 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8186
8187 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8188 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8189 L:      linux-media@vger.kernel.org
8190 S:      Maintained
8191 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8192 F:      drivers/media/platform/omap3isp/
8193 F:      drivers/staging/media/omap4iss/
8194
8195 OMAP USB SUPPORT
8196 L:      linux-usb@vger.kernel.org
8197 L:      linux-omap@vger.kernel.org
8198 S:      Orphan
8199 F:      drivers/usb/*/*omap*
8200 F:      arch/arm/*omap*/usb*
8201
8202 OMAP GPIO DRIVER
8203 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8204 M:      Santosh Shilimkar <ssantosh@kernel.org>
8205 M:      Kevin Hilman <khilman@kernel.org>
8206 L:      linux-omap@vger.kernel.org
8207 S:      Maintained
8208 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8209 F:      drivers/gpio/gpio-omap.c
8210
8211 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8212 M:      Mark Jackson <mpfj@newflow.co.uk>
8213 L:      linux-omap@vger.kernel.org
8214 S:      Maintained
8215 F:      arch/arm/boot/dts/am335x-nano.dts
8216
8217 OMFS FILESYSTEM
8218 M:      Bob Copeland <me@bobcopeland.com>
8219 L:      linux-karma-devel@lists.sourceforge.net
8220 S:      Maintained
8221 F:      Documentation/filesystems/omfs.txt
8222 F:      fs/omfs/
8223
8224 OMNIKEY CARDMAN 4000 DRIVER
8225 M:      Harald Welte <laforge@gnumonks.org>
8226 S:      Maintained
8227 F:      drivers/char/pcmcia/cm4000_cs.c
8228 F:      include/linux/cm4000_cs.h
8229 F:      include/uapi/linux/cm4000_cs.h
8230
8231 OMNIKEY CARDMAN 4040 DRIVER
8232 M:      Harald Welte <laforge@gnumonks.org>
8233 S:      Maintained
8234 F:      drivers/char/pcmcia/cm4040_cs.*
8235
8236 OMNIVISION OV7670 SENSOR DRIVER
8237 M:      Jonathan Corbet <corbet@lwn.net>
8238 L:      linux-media@vger.kernel.org
8239 T:      git git://linuxtv.org/media_tree.git
8240 S:      Maintained
8241 F:      drivers/media/i2c/ov7670.c
8242
8243 ONENAND FLASH DRIVER
8244 M:      Kyungmin Park <kyungmin.park@samsung.com>
8245 L:      linux-mtd@lists.infradead.org
8246 S:      Maintained
8247 F:      drivers/mtd/onenand/
8248 F:      include/linux/mtd/onenand*.h
8249
8250 ONSTREAM SCSI TAPE DRIVER
8251 M:      Willem Riede <osst@riede.org>
8252 L:      osst-users@lists.sourceforge.net
8253 L:      linux-scsi@vger.kernel.org
8254 S:      Maintained
8255 F:      Documentation/scsi/osst.txt
8256 F:      drivers/scsi/osst.*
8257 F:      drivers/scsi/osst_*.h
8258 F:      drivers/scsi/st.h
8259
8260 OPENCORES I2C BUS DRIVER
8261 M:      Peter Korsgaard <jacmet@sunsite.dk>
8262 L:      linux-i2c@vger.kernel.org
8263 S:      Maintained
8264 F:      Documentation/i2c/busses/i2c-ocores
8265 F:      drivers/i2c/busses/i2c-ocores.c
8266
8267 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8268 M:      Rob Herring <robh+dt@kernel.org>
8269 M:      Frank Rowand <frowand.list@gmail.com>
8270 M:      Grant Likely <grant.likely@linaro.org>
8271 L:      devicetree@vger.kernel.org
8272 W:      http://www.devicetree.org/
8273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8274 S:      Maintained
8275 F:      drivers/of/
8276 F:      include/linux/of*.h
8277 F:      scripts/dtc/
8278
8279 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8280 M:      Rob Herring <robh+dt@kernel.org>
8281 M:      Pawel Moll <pawel.moll@arm.com>
8282 M:      Mark Rutland <mark.rutland@arm.com>
8283 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8284 M:      Kumar Gala <galak@codeaurora.org>
8285 L:      devicetree@vger.kernel.org
8286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8287 S:      Maintained
8288 F:      Documentation/devicetree/
8289 F:      arch/*/boot/dts/
8290 F:      include/dt-bindings/
8291
8292 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8293 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8294 L:      devicetree@vger.kernel.org
8295 S:      Maintained
8296 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8297 F:      Documentation/devicetree/overlay-notes.txt
8298 F:      drivers/of/overlay.c
8299 F:      drivers/of/resolver.c
8300
8301 OPENRISC ARCHITECTURE
8302 M:      Jonas Bonn <jonas@southpole.se>
8303 W:      http://openrisc.net
8304 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8305 S:      Maintained
8306 T:      git git://openrisc.net/~jonas/linux
8307 F:      arch/openrisc/
8308
8309 OPENVSWITCH
8310 M:      Pravin Shelar <pshelar@nicira.com>
8311 L:      netdev@vger.kernel.org
8312 L:      dev@openvswitch.org
8313 W:      http://openvswitch.org
8314 S:      Maintained
8315 F:      net/openvswitch/
8316 F:      include/uapi/linux/openvswitch.h
8317
8318 OPERATING PERFORMANCE POINTS (OPP)
8319 M:      Viresh Kumar <vireshk@kernel.org>
8320 M:      Nishanth Menon <nm@ti.com>
8321 M:      Stephen Boyd <sboyd@codeaurora.org>
8322 L:      linux-pm@vger.kernel.org
8323 S:      Maintained
8324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8325 F:      drivers/base/power/opp/
8326 F:      include/linux/pm_opp.h
8327 F:      Documentation/power/opp.txt
8328 F:      Documentation/devicetree/bindings/opp/
8329
8330 OPL4 DRIVER
8331 M:      Clemens Ladisch <clemens@ladisch.de>
8332 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8333 T:      git git://git.alsa-project.org/alsa-kernel.git
8334 S:      Maintained
8335 F:      sound/drivers/opl4/
8336
8337 OPROFILE
8338 M:      Robert Richter <rric@kernel.org>
8339 L:      oprofile-list@lists.sf.net
8340 S:      Maintained
8341 F:      arch/*/include/asm/oprofile*.h
8342 F:      arch/*/oprofile/
8343 F:      drivers/oprofile/
8344 F:      include/linux/oprofile.h
8345
8346 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8347 M:      Mark Fasheh <mfasheh@suse.com>
8348 M:      Joel Becker <jlbec@evilplan.org>
8349 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8350 W:      http://ocfs2.wiki.kernel.org
8351 S:      Supported
8352 F:      Documentation/filesystems/ocfs2.txt
8353 F:      Documentation/filesystems/dlmfs.txt
8354 F:      fs/ocfs2/
8355
8356 ORINOCO DRIVER
8357 L:      linux-wireless@vger.kernel.org
8358 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8359 W:      http://www.nongnu.org/orinoco/
8360 S:      Orphan
8361 F:      drivers/net/wireless/intersil/orinoco/
8362
8363 OSD LIBRARY and FILESYSTEM
8364 M:      Boaz Harrosh <ooo@electrozaur.com>
8365 M:      Benny Halevy <bhalevy@primarydata.com>
8366 L:      osd-dev@open-osd.org
8367 W:      http://open-osd.org
8368 T:      git git://git.open-osd.org/open-osd.git
8369 S:      Maintained
8370 F:      drivers/scsi/osd/
8371 F:      include/scsi/osd_*
8372 F:      fs/exofs/
8373
8374 OVERLAY FILESYSTEM
8375 M:      Miklos Szeredi <miklos@szeredi.hu>
8376 L:      linux-unionfs@vger.kernel.org
8377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8378 S:      Supported
8379 F:      fs/overlayfs/
8380 F:      Documentation/filesystems/overlayfs.txt
8381
8382 ORANGEFS FILESYSTEM
8383 M:      Mike Marshall <hubcap@omnibond.com>
8384 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8386 S:      Supported
8387 F:      fs/orangefs/
8388 F:      Documentation/filesystems/orangefs.txt
8389
8390 P54 WIRELESS DRIVER
8391 M:      Christian Lamparter <chunkeey@googlemail.com>
8392 L:      linux-wireless@vger.kernel.org
8393 W:      http://wireless.kernel.org/en/users/Drivers/p54
8394 S:      Maintained
8395 F:      drivers/net/wireless/intersil/p54/
8396
8397 PA SEMI ETHERNET DRIVER
8398 M:      Olof Johansson <olof@lixom.net>
8399 L:      netdev@vger.kernel.org
8400 S:      Maintained
8401 F:      drivers/net/ethernet/pasemi/*
8402
8403 PA SEMI SMBUS DRIVER
8404 M:      Olof Johansson <olof@lixom.net>
8405 L:      linux-i2c@vger.kernel.org
8406 S:      Maintained
8407 F:      drivers/i2c/busses/i2c-pasemi.c
8408
8409 PADATA PARALLEL EXECUTION MECHANISM
8410 M:      Steffen Klassert <steffen.klassert@secunet.com>
8411 L:      linux-crypto@vger.kernel.org
8412 S:      Maintained
8413 F:      kernel/padata.c
8414 F:      include/linux/padata.h
8415 F:      Documentation/padata.txt
8416
8417 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8418 M:      Harald Welte <laforge@gnumonks.org>
8419 L:      platform-driver-x86@vger.kernel.org
8420 S:      Maintained
8421 F:      drivers/platform/x86/panasonic-laptop.c
8422
8423 PANASONIC MN10300/AM33/AM34 PORT
8424 M:      David Howells <dhowells@redhat.com>
8425 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8426 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8427 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8428 S:      Maintained
8429 F:      Documentation/mn10300/
8430 F:      arch/mn10300/
8431
8432 PARALLEL LCD/KEYPAD PANEL DRIVER
8433 M:      Willy Tarreau <willy@haproxy.com>
8434 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8435 S:      Odd Fixes
8436 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8437 F:      drivers/misc/panel.c
8438
8439 PARALLEL PORT SUBSYSTEM
8440 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8441 M:      Sudip Mukherjee <sudip@vectorindia.org>
8442 L:      linux-parport@lists.infradead.org (subscribers-only)
8443 S:      Maintained
8444 F:      drivers/parport/
8445 F:      include/linux/parport*.h
8446 F:      drivers/char/ppdev.c
8447 F:      include/uapi/linux/ppdev.h
8448 F:      Documentation/parport*.txt
8449
8450 PARAVIRT_OPS INTERFACE
8451 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8452 M:      Chris Wright <chrisw@sous-sol.org>
8453 M:      Alok Kataria <akataria@vmware.com>
8454 M:      Rusty Russell <rusty@rustcorp.com.au>
8455 L:      virtualization@lists.linux-foundation.org
8456 S:      Supported
8457 F:      Documentation/virtual/paravirt_ops.txt
8458 F:      arch/*/kernel/paravirt*
8459 F:      arch/*/include/asm/paravirt.h
8460
8461 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8462 M:      Tim Waugh <tim@cyberelk.net>
8463 L:      linux-parport@lists.infradead.org (subscribers-only)
8464 S:      Maintained
8465 F:      Documentation/blockdev/paride.txt
8466 F:      drivers/block/paride/
8467
8468 PARISC ARCHITECTURE
8469 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8470 M:      Helge Deller <deller@gmx.de>
8471 L:      linux-parisc@vger.kernel.org
8472 W:      http://www.parisc-linux.org/
8473 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8476 S:      Maintained
8477 F:      arch/parisc/
8478 F:      Documentation/parisc/
8479 F:      drivers/parisc/
8480 F:      drivers/char/agp/parisc-agp.c
8481 F:      drivers/input/serio/gscps2.c
8482 F:      drivers/parport/parport_gsc.*
8483 F:      drivers/tty/serial/8250/8250_gsc.c
8484 F:      drivers/video/fbdev/sti*
8485 F:      drivers/video/console/sti*
8486 F:      drivers/video/logo/logo_parisc*
8487
8488 PC87360 HARDWARE MONITORING DRIVER
8489 M:      Jim Cromie <jim.cromie@gmail.com>
8490 L:      linux-hwmon@vger.kernel.org
8491 S:      Maintained
8492 F:      Documentation/hwmon/pc87360
8493 F:      drivers/hwmon/pc87360.c
8494
8495 PC8736x GPIO DRIVER
8496 M:      Jim Cromie <jim.cromie@gmail.com>
8497 S:      Maintained
8498 F:      drivers/char/pc8736x_gpio.c
8499
8500 PC87427 HARDWARE MONITORING DRIVER
8501 M:      Jean Delvare <jdelvare@suse.com>
8502 L:      linux-hwmon@vger.kernel.org
8503 S:      Maintained
8504 F:      Documentation/hwmon/pc87427
8505 F:      drivers/hwmon/pc87427.c
8506
8507 PCA9532 LED DRIVER
8508 M:      Riku Voipio <riku.voipio@iki.fi>
8509 S:      Maintained
8510 F:      drivers/leds/leds-pca9532.c
8511 F:      include/linux/leds-pca9532.h
8512
8513 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8514 M:      Guenter Roeck <linux@roeck-us.net>
8515 L:      linux-i2c@vger.kernel.org
8516 S:      Maintained
8517 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8518
8519 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8520 M:      Khalid Aziz <khalid@gonehiking.org>
8521 S:      Maintained
8522 F:      drivers/firmware/pcdp.*
8523
8524 PCI ERROR RECOVERY
8525 M:      Linas Vepstas <linasvepstas@gmail.com>
8526 L:      linux-pci@vger.kernel.org
8527 S:      Supported
8528 F:      Documentation/PCI/pci-error-recovery.txt
8529
8530 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8531 M:      Russell Currey <ruscur@russell.cc>
8532 L:      linuxppc-dev@lists.ozlabs.org
8533 S:      Supported
8534 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8535 F:      arch/powerpc/kernel/eeh*.c
8536 F:      arch/powerpc/platforms/*/eeh*.c
8537 F:      arch/powerpc/include/*/eeh*.h
8538
8539 PCI SUBSYSTEM
8540 M:      Bjorn Helgaas <bhelgaas@google.com>
8541 L:      linux-pci@vger.kernel.org
8542 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8544 S:      Supported
8545 F:      Documentation/PCI/
8546 F:      drivers/pci/
8547 F:      include/linux/pci*
8548 F:      arch/x86/pci/
8549 F:      arch/x86/kernel/quirks.c
8550
8551 PCI DRIVER FOR ALTERA PCIE IP
8552 M:      Ley Foon Tan <lftan@altera.com>
8553 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8554 L:      linux-pci@vger.kernel.org
8555 S:      Supported
8556 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8557 F:      drivers/pci/host/pcie-altera.c
8558
8559 PCI DRIVER FOR ARM VERSATILE PLATFORM
8560 M:      Rob Herring <robh@kernel.org>
8561 L:      linux-pci@vger.kernel.org
8562 L:      linux-arm-kernel@lists.infradead.org
8563 S:      Maintained
8564 F:      Documentation/devicetree/bindings/pci/versatile.txt
8565 F:      drivers/pci/host/pci-versatile.c
8566
8567 PCI DRIVER FOR APPLIEDMICRO XGENE
8568 M:      Tanmay Inamdar <tinamdar@apm.com>
8569 L:      linux-pci@vger.kernel.org
8570 L:      linux-arm-kernel@lists.infradead.org
8571 S:      Maintained
8572 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8573 F:      drivers/pci/host/pci-xgene.c
8574
8575 PCI DRIVER FOR FREESCALE LAYERSCAPE
8576 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8577 M:      Mingkai Hu <mingkai.hu@freescale.com>
8578 M:      Roy Zang <tie-fei.zang@freescale.com>
8579 L:      linuxppc-dev@lists.ozlabs.org
8580 L:      linux-pci@vger.kernel.org
8581 L:      linux-arm-kernel@lists.infradead.org
8582 S:      Maintained
8583 F:      drivers/pci/host/*layerscape*
8584
8585 PCI DRIVER FOR IMX6
8586 M:      Richard Zhu <Richard.Zhu@freescale.com>
8587 M:      Lucas Stach <l.stach@pengutronix.de>
8588 L:      linux-pci@vger.kernel.org
8589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8590 S:      Maintained
8591 F:      drivers/pci/host/*imx6*
8592
8593 PCI DRIVER FOR TI KEYSTONE
8594 M:      Murali Karicheri <m-karicheri2@ti.com>
8595 L:      linux-pci@vger.kernel.org
8596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8597 S:      Maintained
8598 F:      drivers/pci/host/*keystone*
8599
8600 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8601 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8602 M:      Jason Cooper <jason@lakedaemon.net>
8603 L:      linux-pci@vger.kernel.org
8604 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8605 S:      Maintained
8606 F:      drivers/pci/host/*mvebu*
8607
8608 PCI DRIVER FOR NVIDIA TEGRA
8609 M:      Thierry Reding <thierry.reding@gmail.com>
8610 L:      linux-tegra@vger.kernel.org
8611 L:      linux-pci@vger.kernel.org
8612 S:      Supported
8613 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8614 F:      drivers/pci/host/pci-tegra.c
8615
8616 PCI DRIVER FOR TI DRA7XX
8617 M:      Kishon Vijay Abraham I <kishon@ti.com>
8618 L:      linux-omap@vger.kernel.org
8619 L:      linux-pci@vger.kernel.org
8620 S:      Supported
8621 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8622 F:      drivers/pci/host/pci-dra7xx.c
8623
8624 PCI DRIVER FOR RENESAS R-CAR
8625 M:      Simon Horman <horms@verge.net.au>
8626 L:      linux-pci@vger.kernel.org
8627 L:      linux-renesas-soc@vger.kernel.org
8628 S:      Maintained
8629 F:      drivers/pci/host/*rcar*
8630
8631 PCI DRIVER FOR SAMSUNG EXYNOS
8632 M:      Jingoo Han <jingoohan1@gmail.com>
8633 L:      linux-pci@vger.kernel.org
8634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8635 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8636 S:      Maintained
8637 F:      drivers/pci/host/pci-exynos.c
8638
8639 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8640 M:      Jingoo Han <jingoohan1@gmail.com>
8641 M:      Pratyush Anand <pratyush.anand@gmail.com>
8642 L:      linux-pci@vger.kernel.org
8643 S:      Maintained
8644 F:      drivers/pci/host/*designware*
8645
8646 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8647 M:      Joao Pinto <jpinto@synopsys.com>
8648 L:      linux-pci@vger.kernel.org
8649 S:      Maintained
8650 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
8651 F:      drivers/pci/host/pcie-designware-plat.c
8652
8653 PCI DRIVER FOR GENERIC OF HOSTS
8654 M:      Will Deacon <will.deacon@arm.com>
8655 L:      linux-pci@vger.kernel.org
8656 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8657 S:      Maintained
8658 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8659 F:      drivers/pci/host/pci-host-common.c
8660 F:      drivers/pci/host/pci-host-generic.c
8661
8662 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8663 M:      Keith Busch <keith.busch@intel.com>
8664 L:      linux-pci@vger.kernel.org
8665 S:      Supported
8666 F:      arch/x86/pci/vmd.c
8667
8668 PCIE DRIVER FOR ST SPEAR13XX
8669 M:      Pratyush Anand <pratyush.anand@gmail.com>
8670 L:      linux-pci@vger.kernel.org
8671 S:      Maintained
8672 F:      drivers/pci/host/*spear*
8673
8674 PCI MSI DRIVER FOR ALTERA MSI IP
8675 M:      Ley Foon Tan <lftan@altera.com>
8676 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8677 L:      linux-pci@vger.kernel.org
8678 S:      Supported
8679 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8680 F:      drivers/pci/host/pcie-altera-msi.c
8681
8682 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8683 M:      Duc Dang <dhdang@apm.com>
8684 L:      linux-pci@vger.kernel.org
8685 L:      linux-arm-kernel@lists.infradead.org
8686 S:      Maintained
8687 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8688 F:      drivers/pci/host/pci-xgene-msi.c
8689
8690 PCIE DRIVER FOR HISILICON
8691 M:      Zhou Wang <wangzhou1@hisilicon.com>
8692 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8693 L:      linux-pci@vger.kernel.org
8694 S:      Maintained
8695 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8696 F:      drivers/pci/host/pcie-hisi.c
8697
8698 PCIE DRIVER FOR QUALCOMM MSM
8699 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8700 L:     linux-pci@vger.kernel.org
8701 L:     linux-arm-msm@vger.kernel.org
8702 S:     Maintained
8703 F:     drivers/pci/host/*qcom*
8704
8705 PCIE DRIVER FOR CAVIUM THUNDERX
8706 M:      David Daney <david.daney@cavium.com>
8707 L:      linux-pci@vger.kernel.org
8708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8709 S:      Supported
8710 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
8711 F:      drivers/pci/host/pci-thunder-*
8712
8713 PCMCIA SUBSYSTEM
8714 P:      Linux PCMCIA Team
8715 L:      linux-pcmcia@lists.infradead.org
8716 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8718 S:      Maintained
8719 F:      Documentation/pcmcia/
8720 F:      drivers/pcmcia/
8721 F:      include/pcmcia/
8722
8723 PCNET32 NETWORK DRIVER
8724 M:      Don Fry <pcnet32@frontier.com>
8725 L:      netdev@vger.kernel.org
8726 S:      Maintained
8727 F:      drivers/net/ethernet/amd/pcnet32.c
8728
8729 PCRYPT PARALLEL CRYPTO ENGINE
8730 M:      Steffen Klassert <steffen.klassert@secunet.com>
8731 L:      linux-crypto@vger.kernel.org
8732 S:      Maintained
8733 F:      crypto/pcrypt.c
8734 F:      include/crypto/pcrypt.h
8735
8736 PER-CPU MEMORY ALLOCATOR
8737 M:      Tejun Heo <tj@kernel.org>
8738 M:      Christoph Lameter <cl@linux.com>
8739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8740 S:      Maintained
8741 F:      include/linux/percpu*.h
8742 F:      mm/percpu*.c
8743 F:      arch/*/include/asm/percpu.h
8744
8745 PER-TASK DELAY ACCOUNTING
8746 M:      Balbir Singh <bsingharora@gmail.com>
8747 S:      Maintained
8748 F:      include/linux/delayacct.h
8749 F:      kernel/delayacct.c
8750
8751 PERFORMANCE EVENTS SUBSYSTEM
8752 M:      Peter Zijlstra <peterz@infradead.org>
8753 M:      Ingo Molnar <mingo@redhat.com>
8754 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8755 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8756 L:      linux-kernel@vger.kernel.org
8757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8758 S:      Supported
8759 F:      kernel/events/*
8760 F:      include/linux/perf_event.h
8761 F:      include/uapi/linux/perf_event.h
8762 F:      arch/*/kernel/perf_event*.c
8763 F:      arch/*/kernel/*/perf_event*.c
8764 F:      arch/*/kernel/*/*/perf_event*.c
8765 F:      arch/*/include/asm/perf_event.h
8766 F:      arch/*/kernel/perf_callchain.c
8767 F:      tools/perf/
8768
8769 PERSONALITY HANDLING
8770 M:      Christoph Hellwig <hch@infradead.org>
8771 L:      linux-abi-devel@lists.sourceforge.net
8772 S:      Maintained
8773 F:      include/linux/personality.h
8774 F:      include/uapi/linux/personality.h
8775
8776 PHONET PROTOCOL
8777 M:      Remi Denis-Courmont <courmisch@gmail.com>
8778 S:      Supported
8779 F:      Documentation/networking/phonet.txt
8780 F:      include/linux/phonet.h
8781 F:      include/net/phonet/
8782 F:      include/uapi/linux/phonet.h
8783 F:      net/phonet/
8784
8785 PHRAM MTD DRIVER
8786 M:      Joern Engel <joern@lazybastard.org>
8787 L:      linux-mtd@lists.infradead.org
8788 S:      Maintained
8789 F:      drivers/mtd/devices/phram.c
8790
8791 PICOLCD HID DRIVER
8792 M:      Bruno Prémont <bonbons@linux-vserver.org>
8793 L:      linux-input@vger.kernel.org
8794 S:      Maintained
8795 F:      drivers/hid/hid-picolcd*
8796
8797 PICOXCELL SUPPORT
8798 M:      Jamie Iles <jamie@jamieiles.com>
8799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8800 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8801 S:      Supported
8802 F:      arch/arm/boot/dts/picoxcell*
8803 F:      arch/arm/mach-picoxcell/
8804 F:      drivers/crypto/picoxcell*
8805
8806 PIN CONTROL SUBSYSTEM
8807 M:      Linus Walleij <linus.walleij@linaro.org>
8808 L:      linux-gpio@vger.kernel.org
8809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8810 S:      Maintained
8811 F:      drivers/pinctrl/
8812 F:      include/linux/pinctrl/
8813
8814 PIN CONTROLLER - ATMEL AT91
8815 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8817 S:      Maintained
8818 F:      drivers/pinctrl/pinctrl-at91.*
8819
8820 PIN CONTROLLER - ATMEL AT91 PIO4
8821 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8822 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8823 L:      linux-gpio@vger.kernel.org
8824 S:      Supported
8825 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8826
8827 PIN CONTROLLER - INTEL
8828 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8829 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8830 S:      Maintained
8831 F:      drivers/pinctrl/intel/
8832
8833 PIN CONTROLLER - RENESAS
8834 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8835 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8836 L:      linux-renesas-soc@vger.kernel.org
8837 S:      Maintained
8838 F:      drivers/pinctrl/sh-pfc/
8839
8840 PIN CONTROLLER - SAMSUNG
8841 M:      Tomasz Figa <tomasz.figa@gmail.com>
8842 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8843 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8845 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8846 S:      Maintained
8847 F:      drivers/pinctrl/samsung/
8848
8849 PIN CONTROLLER - SINGLE
8850 M:      Tony Lindgren <tony@atomide.com>
8851 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8853 L:      linux-omap@vger.kernel.org
8854 S:      Maintained
8855 F:      drivers/pinctrl/pinctrl-single.c
8856
8857 PIN CONTROLLER - ST SPEAR
8858 M:      Viresh Kumar <vireshk@kernel.org>
8859 L:      spear-devel@list.st.com
8860 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8861 W:      http://www.st.com/spear
8862 S:      Maintained
8863 F:      drivers/pinctrl/spear/
8864
8865 PKTCDVD DRIVER
8866 M:      Jiri Kosina <jikos@kernel.org>
8867 S:      Maintained
8868 F:      drivers/block/pktcdvd.c
8869 F:      include/linux/pktcdvd.h
8870 F:      include/uapi/linux/pktcdvd.h
8871
8872 PKUNITY SOC DRIVERS
8873 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8874 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8875 S:      Maintained
8876 T:      git git://github.com/gxt/linux.git
8877 F:      drivers/input/serio/i8042-unicore32io.h
8878 F:      drivers/i2c/busses/i2c-puv3.c
8879 F:      drivers/video/fbdev/fb-puv3.c
8880 F:      drivers/rtc/rtc-puv3.c
8881
8882 PMBUS HARDWARE MONITORING DRIVERS
8883 M:      Guenter Roeck <linux@roeck-us.net>
8884 L:      linux-hwmon@vger.kernel.org
8885 W:      http://hwmon.wiki.kernel.org/
8886 W:      http://www.roeck-us.net/linux/drivers/
8887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8888 S:      Maintained
8889 F:      Documentation/hwmon/pmbus
8890 F:      drivers/hwmon/pmbus/
8891 F:      include/linux/i2c/pmbus.h
8892
8893 PMC SIERRA MaxRAID DRIVER
8894 L:      linux-scsi@vger.kernel.org
8895 W:      http://www.pmc-sierra.com/
8896 S:      Orphan
8897 F:      drivers/scsi/pmcraid.*
8898
8899 PMC SIERRA PM8001 DRIVER
8900 M:      Jack Wang <jinpu.wang@profitbricks.com>
8901 M:      lindar_liu@usish.com
8902 L:      pmchba@pmcs.com
8903 L:      linux-scsi@vger.kernel.org
8904 S:      Supported
8905 F:      drivers/scsi/pm8001/
8906
8907 POSIX CLOCKS and TIMERS
8908 M:      Thomas Gleixner <tglx@linutronix.de>
8909 L:      linux-kernel@vger.kernel.org
8910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8911 S:      Maintained
8912 F:      fs/timerfd.c
8913 F:      include/linux/timer*
8914 F:      kernel/time/*timer*
8915
8916 POWER MANAGEMENT CORE
8917 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8918 L:      linux-pm@vger.kernel.org
8919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8920 S:      Supported
8921 F:      drivers/base/power/
8922 F:      include/linux/pm.h
8923 F:      include/linux/pm_*
8924 F:      include/linux/powercap.h
8925 F:      drivers/powercap/
8926
8927 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8928 M:      Sebastian Reichel <sre@kernel.org>
8929 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8930 M:      David Woodhouse <dwmw2@infradead.org>
8931 L:      linux-pm@vger.kernel.org
8932 T:      git git://git.infradead.org/battery-2.6.git
8933 S:      Maintained
8934 F:      include/linux/power_supply.h
8935 F:      drivers/power/
8936 X:      drivers/power/avs/
8937
8938 POWER STATE COORDINATION INTERFACE (PSCI)
8939 M:      Mark Rutland <mark.rutland@arm.com>
8940 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8941 L:      linux-arm-kernel@lists.infradead.org
8942 S:      Maintained
8943 F:      drivers/firmware/psci.c
8944 F:      include/linux/psci.h
8945 F:      include/uapi/linux/psci.h
8946
8947 PNP SUPPORT
8948 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8949 S:      Maintained
8950 F:      drivers/pnp/
8951
8952 PPP PROTOCOL DRIVERS AND COMPRESSORS
8953 M:      Paul Mackerras <paulus@samba.org>
8954 L:      linux-ppp@vger.kernel.org
8955 S:      Maintained
8956 F:      drivers/net/ppp/ppp_*
8957
8958 PPP OVER ATM (RFC 2364)
8959 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8960 S:      Maintained
8961 F:      net/atm/pppoatm.c
8962 F:      include/uapi/linux/atmppp.h
8963
8964 PPP OVER ETHERNET
8965 M:      Michal Ostrowski <mostrows@earthlink.net>
8966 S:      Maintained
8967 F:      drivers/net/ppp/pppoe.c
8968 F:      drivers/net/ppp/pppox.c
8969
8970 PPP OVER L2TP
8971 M:      James Chapman <jchapman@katalix.com>
8972 S:      Maintained
8973 F:      net/l2tp/l2tp_ppp.c
8974 F:      include/linux/if_pppol2tp.h
8975 F:      include/uapi/linux/if_pppol2tp.h
8976
8977 PPS SUPPORT
8978 M:      Rodolfo Giometti <giometti@enneenne.com>
8979 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8980 L:      linuxpps@ml.enneenne.com (subscribers-only)
8981 S:      Maintained
8982 F:      Documentation/pps/
8983 F:      drivers/pps/
8984 F:      include/linux/pps*.h
8985
8986 PPTP DRIVER
8987 M:      Dmitry Kozlov <xeb@mail.ru>
8988 L:      netdev@vger.kernel.org
8989 S:      Maintained
8990 F:      drivers/net/ppp/pptp.c
8991 W:      http://sourceforge.net/projects/accel-pptp
8992
8993 PREEMPTIBLE KERNEL
8994 M:      Robert Love <rml@tech9.net>
8995 L:      kpreempt-tech@lists.sourceforge.net
8996 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8997 S:      Supported
8998 F:      Documentation/preempt-locking.txt
8999 F:      include/linux/preempt.h
9000
9001 PRISM54 WIRELESS DRIVER
9002 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
9003 L:      linux-wireless@vger.kernel.org
9004 W:      http://wireless.kernel.org/en/users/Drivers/p54
9005 S:      Obsolete
9006 F:      drivers/net/wireless/intersil/prism54/
9007
9008 PS3 NETWORK SUPPORT
9009 M:      Geoff Levand <geoff@infradead.org>
9010 L:      netdev@vger.kernel.org
9011 L:      linuxppc-dev@lists.ozlabs.org
9012 S:      Maintained
9013 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
9014
9015 PS3 PLATFORM SUPPORT
9016 M:      Geoff Levand <geoff@infradead.org>
9017 L:      linuxppc-dev@lists.ozlabs.org
9018 S:      Maintained
9019 F:      arch/powerpc/boot/ps3*
9020 F:      arch/powerpc/include/asm/lv1call.h
9021 F:      arch/powerpc/include/asm/ps3*.h
9022 F:      arch/powerpc/platforms/ps3/
9023 F:      drivers/*/ps3*
9024 F:      drivers/ps3/
9025 F:      drivers/rtc/rtc-ps3.c
9026 F:      drivers/usb/host/*ps3.c
9027 F:      sound/ppc/snd_ps3*
9028
9029 PS3VRAM DRIVER
9030 M:      Jim Paris <jim@jtan.com>
9031 M:      Geoff Levand <geoff@infradead.org>
9032 L:      linuxppc-dev@lists.ozlabs.org
9033 S:      Maintained
9034 F:      drivers/block/ps3vram.c
9035
9036 PSTORE FILESYSTEM
9037 M:      Anton Vorontsov <anton@enomsg.org>
9038 M:      Colin Cross <ccross@android.com>
9039 M:      Kees Cook <keescook@chromium.org>
9040 M:      Tony Luck <tony.luck@intel.com>
9041 S:      Maintained
9042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9043 F:      fs/pstore/
9044 F:      include/linux/pstore*
9045 F:      drivers/firmware/efi/efi-pstore.c
9046 F:      drivers/acpi/apei/erst.c
9047
9048 PTP HARDWARE CLOCK SUPPORT
9049 M:      Richard Cochran <richardcochran@gmail.com>
9050 L:      netdev@vger.kernel.org
9051 S:      Maintained
9052 W:      http://linuxptp.sourceforge.net/
9053 F:      Documentation/ABI/testing/sysfs-ptp
9054 F:      Documentation/ptp/*
9055 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9056 F:      drivers/net/phy/dp83640*
9057 F:      drivers/ptp/*
9058 F:      include/linux/ptp_cl*
9059
9060 PTRACE SUPPORT
9061 M:      Roland McGrath <roland@hack.frob.com>
9062 M:      Oleg Nesterov <oleg@redhat.com>
9063 S:      Maintained
9064 F:      include/asm-generic/syscall.h
9065 F:      include/linux/ptrace.h
9066 F:      include/linux/regset.h
9067 F:      include/linux/tracehook.h
9068 F:      include/uapi/linux/ptrace.h
9069 F:      kernel/ptrace.c
9070
9071 PVRUSB2 VIDEO4LINUX DRIVER
9072 M:      Mike Isely <isely@pobox.com>
9073 L:      pvrusb2@isely.net       (subscribers-only)
9074 L:      linux-media@vger.kernel.org
9075 W:      http://www.isely.net/pvrusb2/
9076 T:      git git://linuxtv.org/media_tree.git
9077 S:      Maintained
9078 F:      Documentation/video4linux/README.pvrusb2
9079 F:      drivers/media/usb/pvrusb2/
9080
9081 PWC WEBCAM DRIVER
9082 M:      Hans de Goede <hdegoede@redhat.com>
9083 L:      linux-media@vger.kernel.org
9084 T:      git git://linuxtv.org/media_tree.git
9085 S:      Maintained
9086 F:      drivers/media/usb/pwc/*
9087
9088 PWM FAN DRIVER
9089 M:      Kamil Debski <k.debski@samsung.com>
9090 L:      linux-hwmon@vger.kernel.org
9091 S:      Supported
9092 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9093 F:      Documentation/hwmon/pwm-fan
9094 F:      drivers/hwmon/pwm-fan.c
9095
9096 PWM SUBSYSTEM
9097 M:      Thierry Reding <thierry.reding@gmail.com>
9098 L:      linux-pwm@vger.kernel.org
9099 S:      Maintained
9100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9101 F:      Documentation/pwm.txt
9102 F:      Documentation/devicetree/bindings/pwm/
9103 F:      include/linux/pwm.h
9104 F:      drivers/pwm/
9105 F:      drivers/video/backlight/pwm_bl.c
9106 F:      include/linux/pwm_backlight.h
9107
9108 PXA2xx/PXA3xx SUPPORT
9109 M:      Daniel Mack <daniel@zonque.org>
9110 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9111 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9113 T:      git git://github.com/hzhuang1/linux.git
9114 T:      git git://github.com/rjarzmik/linux.git
9115 S:      Maintained
9116 F:      arch/arm/boot/dts/pxa*
9117 F:      arch/arm/mach-pxa/
9118 F:      drivers/dma/pxa*
9119 F:      drivers/pcmcia/pxa2xx*
9120 F:      drivers/pinctrl/pxa/
9121 F:      drivers/spi/spi-pxa2xx*
9122 F:      drivers/usb/gadget/udc/pxa2*
9123 F:      include/sound/pxa2xx-lib.h
9124 F:      sound/arm/pxa*
9125 F:      sound/soc/pxa/
9126
9127 PXA GPIO DRIVER
9128 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9129 L:      linux-gpio@vger.kernel.org
9130 S:      Maintained
9131 F:      drivers/gpio/gpio-pxa.c
9132
9133 PXA3xx NAND FLASH DRIVER
9134 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9135 L:      linux-mtd@lists.infradead.org
9136 S:      Maintained
9137 F:      drivers/mtd/nand/pxa3xx_nand.c
9138
9139 MMP SUPPORT
9140 M:      Eric Miao <eric.y.miao@gmail.com>
9141 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9142 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9143 T:      git git://github.com/hzhuang1/linux.git
9144 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9145 S:      Maintained
9146 F:      arch/arm/boot/dts/mmp*
9147 F:      arch/arm/mach-mmp/
9148
9149 PXA MMCI DRIVER
9150 S:      Orphan
9151
9152 PXA RTC DRIVER
9153 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9154 L:      rtc-linux@googlegroups.com
9155 S:      Maintained
9156
9157 QAT DRIVER
9158 M:      Tadeusz Struk <tadeusz.struk@intel.com>
9159 L:      qat-linux@intel.com
9160 S:      Supported
9161 F:      drivers/crypto/qat/
9162
9163 QIB DRIVER
9164 M:      Mike Marciniszyn <infinipath@intel.com>
9165 L:      linux-rdma@vger.kernel.org
9166 S:      Supported
9167 F:      drivers/infiniband/hw/qib/
9168
9169 QLOGIC QLA1280 SCSI DRIVER
9170 M:      Michael Reed <mdr@sgi.com>
9171 L:      linux-scsi@vger.kernel.org
9172 S:      Maintained
9173 F:      drivers/scsi/qla1280.[ch]
9174
9175 QLOGIC QLA2XXX FC-SCSI DRIVER
9176 M:      qla2xxx-upstream@qlogic.com
9177 L:      linux-scsi@vger.kernel.org
9178 S:      Supported
9179 F:      Documentation/scsi/LICENSE.qla2xxx
9180 F:      drivers/scsi/qla2xxx/
9181
9182 QLOGIC QLA4XXX iSCSI DRIVER
9183 M:      QLogic-Storage-Upstream@qlogic.com
9184 L:      linux-scsi@vger.kernel.org
9185 S:      Supported
9186 F:      Documentation/scsi/LICENSE.qla4xxx
9187 F:      drivers/scsi/qla4xxx/
9188
9189 QLOGIC QLA3XXX NETWORK DRIVER
9190 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9191 M:      Ron Mercer <ron.mercer@qlogic.com>
9192 M:      linux-driver@qlogic.com
9193 L:      netdev@vger.kernel.org
9194 S:      Supported
9195 F:      Documentation/networking/LICENSE.qla3xxx
9196 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9197
9198 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9199 M:      Dept-GELinuxNICDev@qlogic.com
9200 L:      netdev@vger.kernel.org
9201 S:      Supported
9202 F:      drivers/net/ethernet/qlogic/qlcnic/
9203
9204 QLOGIC QLGE 10Gb ETHERNET DRIVER
9205 M:      Harish Patil <harish.patil@qlogic.com>
9206 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9207 M:      Dept-GELinuxNICDev@qlogic.com
9208 M:      linux-driver@qlogic.com
9209 L:      netdev@vger.kernel.org
9210 S:      Supported
9211 F:      drivers/net/ethernet/qlogic/qlge/
9212
9213 QLOGIC QL4xxx ETHERNET DRIVER
9214 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9215 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9216 M:      everest-linux-l2@qlogic.com
9217 L:      netdev@vger.kernel.org
9218 S:      Supported
9219 F:      drivers/net/ethernet/qlogic/qed/
9220 F:      include/linux/qed/
9221 F:      drivers/net/ethernet/qlogic/qede/
9222
9223 QNX4 FILESYSTEM
9224 M:      Anders Larsen <al@alarsen.net>
9225 W:      http://www.alarsen.net/linux/qnx4fs/
9226 S:      Maintained
9227 F:      fs/qnx4/
9228 F:      include/uapi/linux/qnx4_fs.h
9229 F:      include/uapi/linux/qnxtypes.h
9230
9231 QT1010 MEDIA DRIVER
9232 M:      Antti Palosaari <crope@iki.fi>
9233 L:      linux-media@vger.kernel.org
9234 W:      https://linuxtv.org
9235 W:      http://palosaari.fi/linux/
9236 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9237 T:      git git://linuxtv.org/anttip/media_tree.git
9238 S:      Maintained
9239 F:      drivers/media/tuners/qt1010*
9240
9241 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9242 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9243 L:      linux-wireless@vger.kernel.org
9244 L:      ath9k-devel@lists.ath9k.org
9245 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9246 S:      Supported
9247 F:      drivers/net/wireless/ath/ath9k/
9248
9249 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9250 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9251 L:      ath10k@lists.infradead.org
9252 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9254 S:      Supported
9255 F:      drivers/net/wireless/ath/ath10k/
9256
9257 QUALCOMM HEXAGON ARCHITECTURE
9258 M:      Richard Kuo <rkuo@codeaurora.org>
9259 L:      linux-hexagon@vger.kernel.org
9260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9261 S:      Supported
9262 F:      arch/hexagon/
9263
9264 QUALCOMM WCN36XX WIRELESS DRIVER
9265 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9266 L:      wcn36xx@lists.infradead.org
9267 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9268 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9269 S:      Supported
9270 F:      drivers/net/wireless/ath/wcn36xx/
9271
9272 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9273 M:      Gabriel Somlo <somlo@cmu.edu>
9274 M:      "Michael S. Tsirkin" <mst@redhat.com>
9275 L:      qemu-devel@nongnu.org
9276 S:      Maintained
9277 F:      drivers/firmware/qemu_fw_cfg.c
9278
9279 RADOS BLOCK DEVICE (RBD)
9280 M:      Ilya Dryomov <idryomov@gmail.com>
9281 M:      Sage Weil <sage@redhat.com>
9282 M:      Alex Elder <elder@kernel.org>
9283 L:      ceph-devel@vger.kernel.org
9284 W:      http://ceph.com/
9285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9286 T:      git git://github.com/ceph/ceph-client.git
9287 S:      Supported
9288 F:      Documentation/ABI/testing/sysfs-bus-rbd
9289 F:      drivers/block/rbd.c
9290 F:      drivers/block/rbd_types.h
9291
9292 RADEON FRAMEBUFFER DISPLAY DRIVER
9293 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9294 L:      linux-fbdev@vger.kernel.org
9295 S:      Maintained
9296 F:      drivers/video/fbdev/aty/radeon*
9297 F:      include/uapi/linux/radeonfb.h
9298
9299 RADIOSHARK RADIO DRIVER
9300 M:      Hans de Goede <hdegoede@redhat.com>
9301 L:      linux-media@vger.kernel.org
9302 T:      git git://linuxtv.org/media_tree.git
9303 S:      Maintained
9304 F:      drivers/media/radio/radio-shark.c
9305
9306 RADIOSHARK2 RADIO DRIVER
9307 M:      Hans de Goede <hdegoede@redhat.com>
9308 L:      linux-media@vger.kernel.org
9309 T:      git git://linuxtv.org/media_tree.git
9310 S:      Maintained
9311 F:      drivers/media/radio/radio-shark2.c
9312 F:      drivers/media/radio/radio-tea5777.c
9313
9314 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9315 M:      Paul Mackerras <paulus@samba.org>
9316 L:      linux-fbdev@vger.kernel.org
9317 S:      Maintained
9318 F:      drivers/video/fbdev/aty/aty128fb.c
9319
9320 RALINK MIPS ARCHITECTURE
9321 M:      John Crispin <blogic@openwrt.org>
9322 L:      linux-mips@linux-mips.org
9323 S:      Maintained
9324 F:      arch/mips/ralink
9325
9326 RALINK RT2X00 WIRELESS LAN DRIVER
9327 P:      rt2x00 project
9328 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9329 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9330 L:      linux-wireless@vger.kernel.org
9331 S:      Maintained
9332 F:      drivers/net/wireless/ralink/rt2x00/
9333
9334 RAMDISK RAM BLOCK DEVICE DRIVER
9335 M:      Jens Axboe <axboe@kernel.dk>
9336 S:      Maintained
9337 F:      Documentation/blockdev/ramdisk.txt
9338 F:      drivers/block/brd.c
9339
9340 RANDOM NUMBER DRIVER
9341 M:      "Theodore Ts'o" <tytso@mit.edu>
9342 S:      Maintained
9343 F:      drivers/char/random.c
9344
9345 RAPIDIO SUBSYSTEM
9346 M:      Matt Porter <mporter@kernel.crashing.org>
9347 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9348 S:      Maintained
9349 F:      drivers/rapidio/
9350
9351 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9352 L:      linux-wireless@vger.kernel.org
9353 S:      Orphan
9354 F:      drivers/net/wireless/ray*
9355
9356 RCUTORTURE MODULE
9357 M:      Josh Triplett <josh@joshtriplett.org>
9358 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9359 L:      linux-kernel@vger.kernel.org
9360 S:      Supported
9361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9362 F:      Documentation/RCU/torture.txt
9363 F:      kernel/rcu/rcutorture.c
9364
9365 RCUTORTURE TEST FRAMEWORK
9366 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9367 M:      Josh Triplett <josh@joshtriplett.org>
9368 R:      Steven Rostedt <rostedt@goodmis.org>
9369 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9370 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9371 L:      linux-kernel@vger.kernel.org
9372 S:      Supported
9373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9374 F:      tools/testing/selftests/rcutorture
9375
9376 RDC R-321X SoC
9377 M:      Florian Fainelli <florian@openwrt.org>
9378 S:      Maintained
9379
9380 RDC R6040 FAST ETHERNET DRIVER
9381 M:      Florian Fainelli <florian@openwrt.org>
9382 L:      netdev@vger.kernel.org
9383 S:      Maintained
9384 F:      drivers/net/ethernet/rdc/r6040.c
9385
9386 RDS - RELIABLE DATAGRAM SOCKETS
9387 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9388 L:      netdev@vger.kernel.org
9389 L:      linux-rdma@vger.kernel.org
9390 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9391 W:      https://oss.oracle.com/projects/rds/
9392 S:      Supported
9393 F:      net/rds/
9394 F:      Documentation/networking/rds.txt
9395
9396 RDMAVT - RDMA verbs software
9397 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9398 L:      linux-rdma@vger.kernel.org
9399 S:      Supported
9400 F:      drivers/infiniband/sw/rdmavt
9401
9402 READ-COPY UPDATE (RCU)
9403 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9404 M:      Josh Triplett <josh@joshtriplett.org>
9405 R:      Steven Rostedt <rostedt@goodmis.org>
9406 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9407 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9408 L:      linux-kernel@vger.kernel.org
9409 W:      http://www.rdrop.com/users/paulmck/RCU/
9410 S:      Supported
9411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9412 F:      Documentation/RCU/
9413 X:      Documentation/RCU/torture.txt
9414 F:      include/linux/rcu*
9415 X:      include/linux/srcu.h
9416 F:      kernel/rcu/
9417 X:      kernel/torture.c
9418
9419 REAL TIME CLOCK (RTC) SUBSYSTEM
9420 M:      Alessandro Zummo <a.zummo@towertech.it>
9421 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9422 L:      rtc-linux@googlegroups.com
9423 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9425 S:      Maintained
9426 F:      Documentation/rtc.txt
9427 F:      drivers/rtc/
9428 F:      include/linux/rtc.h
9429 F:      include/uapi/linux/rtc.h
9430
9431 REALTEK AUDIO CODECS
9432 M:      Bard Liao <bardliao@realtek.com>
9433 M:      Oder Chiou <oder_chiou@realtek.com>
9434 S:      Maintained
9435 F:      sound/soc/codecs/rt*
9436 F:      include/sound/rt*.h
9437
9438 REISERFS FILE SYSTEM
9439 L:      reiserfs-devel@vger.kernel.org
9440 S:      Supported
9441 F:      fs/reiserfs/
9442
9443 REGISTER MAP ABSTRACTION
9444 M:      Mark Brown <broonie@kernel.org>
9445 L:      linux-kernel@vger.kernel.org
9446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9447 S:      Supported
9448 F:      drivers/base/regmap/
9449 F:      include/linux/regmap.h
9450
9451 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9452 M:      Ohad Ben-Cohen <ohad@wizery.com>
9453 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9454 L:      linux-remoteproc@vger.kernel.org
9455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9456 S:      Maintained
9457 F:      drivers/remoteproc/
9458 F:      Documentation/remoteproc.txt
9459 F:      include/linux/remoteproc.h
9460
9461 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9462 M:      Ohad Ben-Cohen <ohad@wizery.com>
9463 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9464 L:      linux-remoteproc@vger.kernel.org
9465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9466 S:      Maintained
9467 F:      drivers/rpmsg/
9468 F:      Documentation/rpmsg.txt
9469 F:      include/linux/rpmsg.h
9470
9471 RENESAS ETHERNET DRIVERS
9472 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9473 L:      netdev@vger.kernel.org
9474 L:      linux-renesas-soc@vger.kernel.org
9475 F:      drivers/net/ethernet/renesas/
9476 F:      include/linux/sh_eth.h
9477
9478 RENESAS USB2 PHY DRIVER
9479 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9480 L:      linux-renesas-soc@vger.kernel.org
9481 S:      Maintained
9482 F:      drivers/phy/phy-rcar-gen3-usb2.c
9483
9484 RESET CONTROLLER FRAMEWORK
9485 M:      Philipp Zabel <p.zabel@pengutronix.de>
9486 T:      git git://git.pengutronix.de/git/pza/linux
9487 S:      Maintained
9488 F:      drivers/reset/
9489 F:      Documentation/devicetree/bindings/reset/
9490 F:      include/dt-bindings/reset/
9491 F:      include/linux/reset.h
9492 F:      include/linux/reset-controller.h
9493
9494 RFKILL
9495 M:      Johannes Berg <johannes@sipsolutions.net>
9496 L:      linux-wireless@vger.kernel.org
9497 W:      http://wireless.kernel.org/
9498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9500 S:      Maintained
9501 F:      Documentation/rfkill.txt
9502 F:      net/rfkill/
9503
9504 RHASHTABLE
9505 M:      Thomas Graf <tgraf@suug.ch>
9506 L:      netdev@vger.kernel.org
9507 S:      Maintained
9508 F:      lib/rhashtable.c
9509 F:      include/linux/rhashtable.h
9510
9511 RICOH SMARTMEDIA/XD DRIVER
9512 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9513 S:      Maintained
9514 F:      drivers/mtd/nand/r852.c
9515 F:      drivers/mtd/nand/r852.h
9516
9517 RICOH R5C592 MEMORYSTICK DRIVER
9518 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9519 S:      Maintained
9520 F:      drivers/memstick/host/r592.*
9521
9522 ROCCAT DRIVERS
9523 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9524 W:      http://sourceforge.net/projects/roccat/
9525 S:      Maintained
9526 F:      drivers/hid/hid-roccat*
9527 F:      include/linux/hid-roccat*
9528 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9529
9530 ROCKER DRIVER
9531 M:      Jiri Pirko <jiri@resnulli.us>
9532 M:      Scott Feldman <sfeldma@gmail.com>
9533 L:      netdev@vger.kernel.org
9534 S:      Supported
9535 F:      drivers/net/ethernet/rocker/
9536
9537 ROCKETPORT DRIVER
9538 P:      Comtrol Corp.
9539 W:      http://www.comtrol.com
9540 S:      Maintained
9541 F:      Documentation/serial/rocket.txt
9542 F:      drivers/tty/rocket*
9543
9544 ROCKETPORT EXPRESS/INFINITY DRIVER
9545 M:      Kevin Cernekee <cernekee@gmail.com>
9546 L:      linux-serial@vger.kernel.org
9547 S:      Odd Fixes
9548 F:      drivers/tty/serial/rp2.*
9549
9550 ROSE NETWORK LAYER
9551 M:      Ralf Baechle <ralf@linux-mips.org>
9552 L:      linux-hams@vger.kernel.org
9553 W:      http://www.linux-ax25.org/
9554 S:      Maintained
9555 F:      include/net/rose.h
9556 F:      include/uapi/linux/rose.h
9557 F:      net/rose/
9558
9559 RTL2830 MEDIA DRIVER
9560 M:      Antti Palosaari <crope@iki.fi>
9561 L:      linux-media@vger.kernel.org
9562 W:      https://linuxtv.org
9563 W:      http://palosaari.fi/linux/
9564 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9565 T:      git git://linuxtv.org/anttip/media_tree.git
9566 S:      Maintained
9567 F:      drivers/media/dvb-frontends/rtl2830*
9568
9569 RTL2832 MEDIA DRIVER
9570 M:      Antti Palosaari <crope@iki.fi>
9571 L:      linux-media@vger.kernel.org
9572 W:      https://linuxtv.org
9573 W:      http://palosaari.fi/linux/
9574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9575 T:      git git://linuxtv.org/anttip/media_tree.git
9576 S:      Maintained
9577 F:      drivers/media/dvb-frontends/rtl2832*
9578
9579 RTL2832_SDR MEDIA DRIVER
9580 M:      Antti Palosaari <crope@iki.fi>
9581 L:      linux-media@vger.kernel.org
9582 W:      https://linuxtv.org
9583 W:      http://palosaari.fi/linux/
9584 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9585 T:      git git://linuxtv.org/anttip/media_tree.git
9586 S:      Maintained
9587 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9588
9589 RTL8180 WIRELESS DRIVER
9590 L:      linux-wireless@vger.kernel.org
9591 W:      http://wireless.kernel.org/
9592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9593 S:      Orphan
9594 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9595
9596 RTL8187 WIRELESS DRIVER
9597 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9598 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9599 M:      Larry Finger <Larry.Finger@lwfinger.net>
9600 L:      linux-wireless@vger.kernel.org
9601 W:      http://wireless.kernel.org/
9602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9603 S:      Maintained
9604 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9605
9606 RTL8192CE WIRELESS DRIVER
9607 M:      Larry Finger <Larry.Finger@lwfinger.net>
9608 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9609 L:      linux-wireless@vger.kernel.org
9610 W:      http://wireless.kernel.org/
9611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9612 S:      Maintained
9613 F:      drivers/net/wireless/realtek/rtlwifi/
9614 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9615
9616 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9617 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9618 L:      linux-wireless@vger.kernel.org
9619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9620 S:      Maintained
9621 F:      drivers/net/wireless/realtek/rtl8xxxu/
9622
9623 S3 SAVAGE FRAMEBUFFER DRIVER
9624 M:      Antonino Daplas <adaplas@gmail.com>
9625 L:      linux-fbdev@vger.kernel.org
9626 S:      Maintained
9627 F:      drivers/video/fbdev/savage/
9628
9629 S390
9630 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9631 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9632 L:      linux-s390@vger.kernel.org
9633 W:      http://www.ibm.com/developerworks/linux/linux390/
9634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9635 S:      Supported
9636 F:      arch/s390/
9637 F:      drivers/s390/
9638 F:      Documentation/s390/
9639 F:      Documentation/DocBook/s390*
9640
9641 S390 COMMON I/O LAYER
9642 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9643 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9644 L:      linux-s390@vger.kernel.org
9645 W:      http://www.ibm.com/developerworks/linux/linux390/
9646 S:      Supported
9647 F:      drivers/s390/cio/
9648
9649 S390 DASD DRIVER
9650 M:      Stefan Weinhuber <wein@de.ibm.com>
9651 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9652 L:      linux-s390@vger.kernel.org
9653 W:      http://www.ibm.com/developerworks/linux/linux390/
9654 S:      Supported
9655 F:      drivers/s390/block/dasd*
9656 F:      block/partitions/ibm.c
9657
9658 S390 NETWORK DRIVERS
9659 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9660 L:      linux-s390@vger.kernel.org
9661 W:      http://www.ibm.com/developerworks/linux/linux390/
9662 S:      Supported
9663 F:      drivers/s390/net/
9664
9665 S390 PCI SUBSYSTEM
9666 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9667 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9668 L:      linux-s390@vger.kernel.org
9669 W:      http://www.ibm.com/developerworks/linux/linux390/
9670 S:      Supported
9671 F:      arch/s390/pci/
9672 F:      drivers/pci/hotplug/s390_pci_hpc.c
9673
9674 S390 ZCRYPT DRIVER
9675 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9676 L:      linux-s390@vger.kernel.org
9677 W:      http://www.ibm.com/developerworks/linux/linux390/
9678 S:      Supported
9679 F:      drivers/s390/crypto/
9680
9681 S390 ZFCP DRIVER
9682 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9683 L:      linux-s390@vger.kernel.org
9684 W:      http://www.ibm.com/developerworks/linux/linux390/
9685 S:      Supported
9686 F:      drivers/s390/scsi/zfcp_*
9687
9688 S390 IUCV NETWORK LAYER
9689 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9690 L:      linux-s390@vger.kernel.org
9691 W:      http://www.ibm.com/developerworks/linux/linux390/
9692 S:      Supported
9693 F:      drivers/s390/net/*iucv*
9694 F:      include/net/iucv/
9695 F:      net/iucv/
9696
9697 S390 IOMMU (PCI)
9698 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9699 L:      linux-s390@vger.kernel.org
9700 W:      http://www.ibm.com/developerworks/linux/linux390/
9701 S:      Supported
9702 F:      drivers/iommu/s390-iommu.c
9703
9704 S3C24XX SD/MMC Driver
9705 M:      Ben Dooks <ben-linux@fluff.org>
9706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9707 S:      Supported
9708 F:      drivers/mmc/host/s3cmci.*
9709
9710 SAA6588 RDS RECEIVER DRIVER
9711 M:      Hans Verkuil <hverkuil@xs4all.nl>
9712 L:      linux-media@vger.kernel.org
9713 T:      git git://linuxtv.org/media_tree.git
9714 W:      https://linuxtv.org
9715 S:      Odd Fixes
9716 F:      drivers/media/i2c/saa6588*
9717
9718 SAA7134 VIDEO4LINUX DRIVER
9719 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9720 L:      linux-media@vger.kernel.org
9721 W:      https://linuxtv.org
9722 T:      git git://linuxtv.org/media_tree.git
9723 S:      Odd fixes
9724 F:      Documentation/video4linux/*.saa7134
9725 F:      drivers/media/pci/saa7134/
9726
9727 SAA7146 VIDEO4LINUX-2 DRIVER
9728 M:      Hans Verkuil <hverkuil@xs4all.nl>
9729 L:      linux-media@vger.kernel.org
9730 T:      git git://linuxtv.org/media_tree.git
9731 S:      Maintained
9732 F:      drivers/media/common/saa7146/
9733 F:      drivers/media/pci/saa7146/
9734 F:      include/media/saa7146*
9735
9736 SAMSUNG LAPTOP DRIVER
9737 M:      Corentin Chary <corentin.chary@gmail.com>
9738 L:      platform-driver-x86@vger.kernel.org
9739 S:      Maintained
9740 F:      drivers/platform/x86/samsung-laptop.c
9741
9742 SAMSUNG AUDIO (ASoC) DRIVERS
9743 M:      Sangbeom Kim <sbkim73@samsung.com>
9744 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9745 S:      Supported
9746 F:      sound/soc/samsung/
9747
9748 SAMSUNG FRAMEBUFFER DRIVER
9749 M:      Jingoo Han <jingoohan1@gmail.com>
9750 L:      linux-fbdev@vger.kernel.org
9751 S:      Maintained
9752 F:      drivers/video/fbdev/s3c-fb.c
9753
9754 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9755 M:      Sangbeom Kim <sbkim73@samsung.com>
9756 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9757 L:      linux-kernel@vger.kernel.org
9758 L:      linux-samsung-soc@vger.kernel.org
9759 S:      Supported
9760 F:      drivers/mfd/sec*.c
9761 F:      drivers/regulator/s2m*.c
9762 F:      drivers/regulator/s5m*.c
9763 F:      drivers/clk/clk-s2mps11.c
9764 F:      drivers/rtc/rtc-s5m.c
9765 F:      include/linux/mfd/samsung/
9766 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9767 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9768 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9769 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9770
9771 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9772 M:      Kyungmin Park <kyungmin.park@samsung.com>
9773 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9774 L:      linux-media@vger.kernel.org
9775 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9776 S:      Supported
9777 F:      drivers/media/platform/exynos4-is/
9778
9779 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9780 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9781 L:      linux-media@vger.kernel.org
9782 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9783 S:      Maintained
9784 F:      drivers/media/platform/s3c-camif/
9785 F:      include/media/drv-intf/s3c_camif.h
9786
9787 SAMSUNG S5C73M3 CAMERA DRIVER
9788 M:      Kyungmin Park <kyungmin.park@samsung.com>
9789 M:      Andrzej Hajda <a.hajda@samsung.com>
9790 L:      linux-media@vger.kernel.org
9791 S:      Supported
9792 F:      drivers/media/i2c/s5c73m3/*
9793
9794 SAMSUNG S5K5BAF CAMERA DRIVER
9795 M:      Kyungmin Park <kyungmin.park@samsung.com>
9796 M:      Andrzej Hajda <a.hajda@samsung.com>
9797 L:      linux-media@vger.kernel.org
9798 S:      Supported
9799 F:      drivers/media/i2c/s5k5baf.c
9800
9801 SAMSUNG S3FWRN5 NFC DRIVER
9802 M:      Robert Baldyga <r.baldyga@samsung.com>
9803 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
9804 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9805 S:      Supported
9806 F:      drivers/nfc/s3fwrn5
9807
9808 SAMSUNG SOC CLOCK DRIVERS
9809 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9810 M:      Tomasz Figa <tomasz.figa@gmail.com>
9811 S:      Supported
9812 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9813 F:      drivers/clk/samsung/
9814
9815 SAMSUNG SXGBE DRIVERS
9816 M:      Byungho An <bh74.an@samsung.com>
9817 M:      Girish K S <ks.giri@samsung.com>
9818 M:      Vipul Pandya <vipul.pandya@samsung.com>
9819 S:      Supported
9820 L:      netdev@vger.kernel.org
9821 F:      drivers/net/ethernet/samsung/sxgbe/
9822
9823 SAMSUNG THERMAL DRIVER
9824 M:      Lukasz Majewski <l.majewski@samsung.com>
9825 L:      linux-pm@vger.kernel.org
9826 L:      linux-samsung-soc@vger.kernel.org
9827 S:      Supported
9828 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9829 F:      drivers/thermal/samsung/
9830
9831 SAMSUNG USB2 PHY DRIVER
9832 M:      Kamil Debski <k.debski@samsung.com>
9833 L:      linux-kernel@vger.kernel.org
9834 S:      Supported
9835 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9836 F:      Documentation/phy/samsung-usb2.txt
9837 F:      drivers/phy/phy-exynos4210-usb2.c
9838 F:      drivers/phy/phy-exynos4x12-usb2.c
9839 F:      drivers/phy/phy-exynos5250-usb2.c
9840 F:      drivers/phy/phy-s5pv210-usb2.c
9841 F:      drivers/phy/phy-samsung-usb2.c
9842 F:      drivers/phy/phy-samsung-usb2.h
9843
9844 SERIAL DRIVERS
9845 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9846 L:      linux-serial@vger.kernel.org
9847 S:      Maintained
9848 F:      drivers/tty/serial/
9849
9850 SYNOPSYS DESIGNWARE DMAC DRIVER
9851 M:      Viresh Kumar <vireshk@kernel.org>
9852 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9853 S:      Maintained
9854 F:      include/linux/dma/dw.h
9855 F:      include/linux/platform_data/dma-dw.h
9856 F:      drivers/dma/dw/
9857
9858 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9859 M: Lars Persson <lars.persson@axis.com>
9860 L: netdev@vger.kernel.org
9861 S: Supported
9862 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9863 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9864
9865 SYNOPSYS DESIGNWARE I2C DRIVER
9866 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9867 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9868 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
9869 L:      linux-i2c@vger.kernel.org
9870 S:      Maintained
9871 F:      drivers/i2c/busses/i2c-designware-*
9872 F:      include/linux/platform_data/i2c-designware.h
9873
9874 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9875 M:      Jaehoon Chung <jh80.chung@samsung.com>
9876 L:      linux-mmc@vger.kernel.org
9877 S:      Maintained
9878 F:      include/linux/mmc/dw_mmc.h
9879 F:      drivers/mmc/host/dw_mmc*
9880
9881 SYSTEM TRACE MODULE CLASS
9882 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9883 S:      Maintained
9884 F:      Documentation/trace/stm.txt
9885 F:      drivers/hwtracing/stm/
9886 F:      include/linux/stm.h
9887 F:      include/uapi/linux/stm.h
9888
9889 THUNDERBOLT DRIVER
9890 M:      Andreas Noever <andreas.noever@gmail.com>
9891 S:      Maintained
9892 F:      drivers/thunderbolt/
9893
9894 TI BQ27XXX POWER SUPPLY DRIVER
9895 R:      Andrew F. Davis <afd@ti.com>
9896 F:      include/linux/power/bq27xxx_battery.h
9897 F:      drivers/power/bq27xxx_battery.c
9898 F:      drivers/power/bq27xxx_battery_i2c.c
9899
9900 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9901 M:      John Stultz <john.stultz@linaro.org>
9902 M:      Thomas Gleixner <tglx@linutronix.de>
9903 L:      linux-kernel@vger.kernel.org
9904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9905 S:      Supported
9906 F:      include/linux/clocksource.h
9907 F:      include/linux/time.h
9908 F:      include/linux/timex.h
9909 F:      include/uapi/linux/time.h
9910 F:      include/uapi/linux/timex.h
9911 F:      kernel/time/clocksource.c
9912 F:      kernel/time/time*.c
9913 F:      kernel/time/alarmtimer.c
9914 F:      kernel/time/ntp.c
9915 F:      tools/testing/selftests/timers/
9916
9917 SC1200 WDT DRIVER
9918 M:      Zwane Mwaikambo <zwanem@gmail.com>
9919 S:      Maintained
9920 F:      drivers/watchdog/sc1200wdt.c
9921
9922 SCHEDULER
9923 M:      Ingo Molnar <mingo@redhat.com>
9924 M:      Peter Zijlstra <peterz@infradead.org>
9925 L:      linux-kernel@vger.kernel.org
9926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9927 S:      Maintained
9928 F:      kernel/sched/
9929 F:      include/linux/sched.h
9930 F:      include/uapi/linux/sched.h
9931 F:      include/linux/wait.h
9932
9933 SCORE ARCHITECTURE
9934 M:      Chen Liqin <liqin.linux@gmail.com>
9935 M:      Lennox Wu <lennox.wu@gmail.com>
9936 W:      http://www.sunplus.com
9937 S:      Supported
9938 F:      arch/score/
9939
9940 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9941 M:      Sudeep Holla <sudeep.holla@arm.com>
9942 L:      linux-arm-kernel@lists.infradead.org
9943 S:      Maintained
9944 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9945 F:      drivers/clk/clk-scpi.c
9946 F:      drivers/cpufreq/scpi-cpufreq.c
9947 F:      drivers/firmware/arm_scpi.c
9948 F:      include/linux/scpi_protocol.h
9949
9950 SCSI CDROM DRIVER
9951 M:      Jens Axboe <axboe@kernel.dk>
9952 L:      linux-scsi@vger.kernel.org
9953 W:      http://www.kernel.dk
9954 S:      Maintained
9955 F:      drivers/scsi/sr*
9956
9957 SCSI RDMA PROTOCOL (SRP) INITIATOR
9958 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9959 L:      linux-rdma@vger.kernel.org
9960 S:      Supported
9961 W:      http://www.openfabrics.org
9962 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9964 F:      drivers/infiniband/ulp/srp/
9965 F:      include/scsi/srp.h
9966
9967 SCSI SG DRIVER
9968 M:      Doug Gilbert <dgilbert@interlog.com>
9969 L:      linux-scsi@vger.kernel.org
9970 W:      http://sg.danny.cz/sg
9971 S:      Maintained
9972 F:      Documentation/scsi/scsi-generic.txt
9973 F:      drivers/scsi/sg.c
9974 F:      include/scsi/sg.h
9975
9976 SCSI SUBSYSTEM
9977 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
9978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9979 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9981 L:      linux-scsi@vger.kernel.org
9982 S:      Maintained
9983 F:      drivers/scsi/
9984 F:      include/scsi/
9985
9986 SCSI TAPE DRIVER
9987 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9988 L:      linux-scsi@vger.kernel.org
9989 S:      Maintained
9990 F:      Documentation/scsi/st.txt
9991 F:      drivers/scsi/st.*
9992 F:      drivers/scsi/st_*.h
9993
9994 SCTP PROTOCOL
9995 M:      Vlad Yasevich <vyasevich@gmail.com>
9996 M:      Neil Horman <nhorman@tuxdriver.com>
9997 L:      linux-sctp@vger.kernel.org
9998 W:      http://lksctp.sourceforge.net
9999 S:      Maintained
10000 F:      Documentation/networking/sctp.txt
10001 F:      include/linux/sctp.h
10002 F:      include/uapi/linux/sctp.h
10003 F:      include/net/sctp/
10004 F:      net/sctp/
10005
10006 SCx200 CPU SUPPORT
10007 M:      Jim Cromie <jim.cromie@gmail.com>
10008 S:      Odd Fixes
10009 F:      Documentation/i2c/busses/scx200_acb
10010 F:      arch/x86/platform/scx200/
10011 F:      drivers/watchdog/scx200_wdt.c
10012 F:      drivers/i2c/busses/scx200*
10013 F:      drivers/mtd/maps/scx200_docflash.c
10014 F:      include/linux/scx200.h
10015
10016 SCx200 GPIO DRIVER
10017 M:      Jim Cromie <jim.cromie@gmail.com>
10018 S:      Maintained
10019 F:      drivers/char/scx200_gpio.c
10020 F:      include/linux/scx200_gpio.h
10021
10022 SCx200 HRT CLOCKSOURCE DRIVER
10023 M:      Jim Cromie <jim.cromie@gmail.com>
10024 S:      Maintained
10025 F:      drivers/clocksource/scx200_hrt.c
10026
10027 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
10028 M:      Sascha Sommer <saschasommer@freenet.de>
10029 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10030 S:      Maintained
10031 F:      drivers/mmc/host/sdricoh_cs.c
10032
10033 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10034 M:      Adrian Hunter <adrian.hunter@intel.com>
10035 L:      linux-mmc@vger.kernel.org
10036 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10037 S:      Maintained
10038 F:      drivers/mmc/host/sdhci*
10039 F:      include/linux/mmc/sdhci*
10040
10041 SECURE COMPUTING
10042 M:      Kees Cook <keescook@chromium.org>
10043 R:      Andy Lutomirski <luto@amacapital.net>
10044 R:      Will Drewry <wad@chromium.org>
10045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10046 S:      Supported
10047 F:      kernel/seccomp.c
10048 F:      include/uapi/linux/seccomp.h
10049 F:      include/linux/seccomp.h
10050 F:      tools/testing/selftests/seccomp/*
10051 K:      \bsecure_computing
10052 K:      \bTIF_SECCOMP\b
10053
10054 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10055 M:      Ben Dooks <ben-linux@fluff.org>
10056 M:      Jaehoon Chung <jh80.chung@samsung.com>
10057 L:      linux-mmc@vger.kernel.org
10058 S:      Maintained
10059 F:      drivers/mmc/host/sdhci-s3c*
10060
10061 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10062 M:      Viresh Kumar <vireshk@kernel.org>
10063 L:      spear-devel@list.st.com
10064 L:      linux-mmc@vger.kernel.org
10065 S:      Maintained
10066 F:      drivers/mmc/host/sdhci-spear.c
10067
10068 SECURITY SUBSYSTEM
10069 M:      James Morris <james.l.morris@oracle.com>
10070 M:      "Serge E. Hallyn" <serge@hallyn.com>
10071 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10073 W:      http://kernsec.org/
10074 S:      Supported
10075 F:      security/
10076
10077 SECURITY CONTACT
10078 M:      Security Officers <security@kernel.org>
10079 S:      Supported
10080
10081 SELINUX SECURITY MODULE
10082 M:      Paul Moore <paul@paul-moore.com>
10083 M:      Stephen Smalley <sds@tycho.nsa.gov>
10084 M:      Eric Paris <eparis@parisplace.org>
10085 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10086 W:      http://selinuxproject.org
10087 T:      git git://git.infradead.org/users/pcmoore/selinux
10088 S:      Supported
10089 F:      include/linux/selinux*
10090 F:      security/selinux/
10091 F:      scripts/selinux/
10092
10093 APPARMOR SECURITY MODULE
10094 M:      John Johansen <john.johansen@canonical.com>
10095 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10096 W:      apparmor.wiki.kernel.org
10097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10098 S:      Supported
10099 F:      security/apparmor/
10100
10101 YAMA SECURITY MODULE
10102 M:      Kees Cook <keescook@chromium.org>
10103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10104 S:      Supported
10105 F:      security/yama/
10106
10107 SENSABLE PHANTOM
10108 M:      Jiri Slaby <jirislaby@gmail.com>
10109 S:      Maintained
10110 F:      drivers/misc/phantom.c
10111 F:      include/uapi/linux/phantom.h
10112
10113 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10114 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10115 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10116 M:      John Soni Jose <sony.john@avagotech.com>
10117 L:      linux-scsi@vger.kernel.org
10118 W:      http://www.avagotech.com
10119 S:      Supported
10120 F:      drivers/scsi/be2iscsi/
10121
10122 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
10123 M:      Sathya Perla <sathya.perla@broadcom.com>
10124 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10125 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
10126 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10127 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10128 L:      netdev@vger.kernel.org
10129 W:      http://www.emulex.com
10130 S:      Supported
10131 F:      drivers/net/ethernet/emulex/benet/
10132
10133 EMULEX ONECONNECT ROCE DRIVER
10134 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10135 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10136 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10137 L:      linux-rdma@vger.kernel.org
10138 W:      http://www.emulex.com
10139 S:      Supported
10140 F:      drivers/infiniband/hw/ocrdma/
10141
10142 SFC NETWORK DRIVER
10143 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10144 M:      Edward Cree <ecree@solarflare.com>
10145 M:      Bert Kenward <bkenward@solarflare.com>
10146 L:      netdev@vger.kernel.org
10147 S:      Supported
10148 F:      drivers/net/ethernet/sfc/
10149
10150 SGI GRU DRIVER
10151 M:      Dimitri Sivanich <sivanich@sgi.com>
10152 S:      Maintained
10153 F:      drivers/misc/sgi-gru/
10154
10155 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10156 M:      Pat Gefre <pfg@sgi.com>
10157 L:      linux-ia64@vger.kernel.org
10158 S:      Supported
10159 F:      Documentation/ia64/serial.txt
10160 F:      drivers/tty/serial/ioc?_serial.c
10161 F:      include/linux/ioc?.h
10162
10163 SGI XP/XPC/XPNET DRIVER
10164 M:      Cliff Whickman <cpw@sgi.com>
10165 M:      Robin Holt <robinmholt@gmail.com>
10166 S:      Maintained
10167 F:      drivers/misc/sgi-xp/
10168
10169 SI2157 MEDIA DRIVER
10170 M:      Antti Palosaari <crope@iki.fi>
10171 L:      linux-media@vger.kernel.org
10172 W:      https://linuxtv.org
10173 W:      http://palosaari.fi/linux/
10174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10175 T:      git git://linuxtv.org/anttip/media_tree.git
10176 S:      Maintained
10177 F:      drivers/media/tuners/si2157*
10178
10179 SI2168 MEDIA DRIVER
10180 M:      Antti Palosaari <crope@iki.fi>
10181 L:      linux-media@vger.kernel.org
10182 W:      https://linuxtv.org
10183 W:      http://palosaari.fi/linux/
10184 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10185 T:      git git://linuxtv.org/anttip/media_tree.git
10186 S:      Maintained
10187 F:      drivers/media/dvb-frontends/si2168*
10188
10189 SI470X FM RADIO RECEIVER I2C DRIVER
10190 M:      Hans Verkuil <hverkuil@xs4all.nl>
10191 L:      linux-media@vger.kernel.org
10192 T:      git git://linuxtv.org/media_tree.git
10193 W:      https://linuxtv.org
10194 S:      Odd Fixes
10195 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10196
10197 SI470X FM RADIO RECEIVER USB DRIVER
10198 M:      Hans Verkuil <hverkuil@xs4all.nl>
10199 L:      linux-media@vger.kernel.org
10200 T:      git git://linuxtv.org/media_tree.git
10201 W:      https://linuxtv.org
10202 S:      Maintained
10203 F:      drivers/media/radio/si470x/radio-si470x-common.c
10204 F:      drivers/media/radio/si470x/radio-si470x.h
10205 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10206
10207 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10208 M:      Eduardo Valentin <edubezval@gmail.com>
10209 L:      linux-media@vger.kernel.org
10210 T:      git git://linuxtv.org/media_tree.git
10211 W:      https://linuxtv.org
10212 S:      Odd Fixes
10213 F:      drivers/media/radio/si4713/si4713.?
10214
10215 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10216 M:      Eduardo Valentin <edubezval@gmail.com>
10217 L:      linux-media@vger.kernel.org
10218 T:      git git://linuxtv.org/media_tree.git
10219 W:      https://linuxtv.org
10220 S:      Odd Fixes
10221 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10222
10223 SI4713 FM RADIO TRANSMITTER USB DRIVER
10224 M:      Hans Verkuil <hverkuil@xs4all.nl>
10225 L:      linux-media@vger.kernel.org
10226 T:      git git://linuxtv.org/media_tree.git
10227 W:      https://linuxtv.org
10228 S:      Maintained
10229 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10230
10231 SIANO DVB DRIVER
10232 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10233 L:      linux-media@vger.kernel.org
10234 W:      https://linuxtv.org
10235 T:      git git://linuxtv.org/media_tree.git
10236 S:      Odd fixes
10237 F:      drivers/media/common/siano/
10238 F:      drivers/media/usb/siano/
10239 F:      drivers/media/usb/siano/
10240 F:      drivers/media/mmc/siano/
10241
10242 SIMPLEFB FB DRIVER
10243 M:      Hans de Goede <hdegoede@redhat.com>
10244 L:      linux-fbdev@vger.kernel.org
10245 S:      Maintained
10246 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10247 F:      drivers/video/fbdev/simplefb.c
10248 F:      include/linux/platform_data/simplefb.h
10249
10250 SH_VEU V4L2 MEM2MEM DRIVER
10251 L:      linux-media@vger.kernel.org
10252 S:      Orphan
10253 F:      drivers/media/platform/sh_veu.c
10254
10255 SH_VOU V4L2 OUTPUT DRIVER
10256 L:      linux-media@vger.kernel.org
10257 S:      Orphan
10258 F:      drivers/media/platform/sh_vou.c
10259 F:      include/media/drv-intf/sh_vou.h
10260
10261 SIMPLE FIRMWARE INTERFACE (SFI)
10262 M:      Len Brown <lenb@kernel.org>
10263 L:      sfi-devel@simplefirmware.org
10264 W:      http://simplefirmware.org/
10265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10266 S:      Supported
10267 F:      arch/x86/platform/sfi/
10268 F:      drivers/sfi/
10269 F:      include/linux/sfi*.h
10270
10271 SIMTEC EB110ATX (Chalice CATS)
10272 P:      Ben Dooks
10273 P:      Vincent Sanders <vince@simtec.co.uk>
10274 M:      Simtec Linux Team <linux@simtec.co.uk>
10275 W:      http://www.simtec.co.uk/products/EB110ATX/
10276 S:      Supported
10277
10278 SIMTEC EB2410ITX (BAST)
10279 P:      Ben Dooks
10280 P:      Vincent Sanders <vince@simtec.co.uk>
10281 M:      Simtec Linux Team <linux@simtec.co.uk>
10282 W:      http://www.simtec.co.uk/products/EB2410ITX/
10283 S:      Supported
10284 F:      arch/arm/mach-s3c24xx/mach-bast.c
10285 F:      arch/arm/mach-s3c24xx/bast-ide.c
10286 F:      arch/arm/mach-s3c24xx/bast-irq.c
10287
10288 TI DAVINCI MACHINE SUPPORT
10289 M:      Sekhar Nori <nsekhar@ti.com>
10290 M:      Kevin Hilman <khilman@kernel.org>
10291 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
10292 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
10293 S:      Supported
10294 F:      arch/arm/mach-davinci/
10295 F:      drivers/i2c/busses/i2c-davinci.c
10296
10297 TI DAVINCI SERIES MEDIA DRIVER
10298 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10299 L:      linux-media@vger.kernel.org
10300 W:      https://linuxtv.org
10301 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10302 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10303 S:      Maintained
10304 F:      drivers/media/platform/davinci/
10305 F:      include/media/davinci/
10306
10307 TI AM437X VPFE DRIVER
10308 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10309 L:      linux-media@vger.kernel.org
10310 W:      https://linuxtv.org
10311 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10312 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10313 S:      Maintained
10314 F:      drivers/media/platform/am437x/
10315
10316 OV2659 OMNIVISION SENSOR DRIVER
10317 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10318 L:      linux-media@vger.kernel.org
10319 W:      https://linuxtv.org
10320 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10321 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10322 S:      Maintained
10323 F:      drivers/media/i2c/ov2659.c
10324 F:      include/media/i2c/ov2659.h
10325
10326 SILICON MOTION SM712 FRAME BUFFER DRIVER
10327 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10328 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10329 M:      Sudip Mukherjee <sudip@vectorindia.org>
10330 L:      linux-fbdev@vger.kernel.org
10331 S:      Maintained
10332 F:      drivers/video/fbdev/sm712*
10333 F:      Documentation/fb/sm712fb.txt
10334
10335 SIS 190 ETHERNET DRIVER
10336 M:      Francois Romieu <romieu@fr.zoreil.com>
10337 L:      netdev@vger.kernel.org
10338 S:      Maintained
10339 F:      drivers/net/ethernet/sis/sis190.c
10340
10341 SIS 900/7016 FAST ETHERNET DRIVER
10342 M:      Daniele Venzano <venza@brownhat.org>
10343 W:      http://www.brownhat.org/sis900.html
10344 L:      netdev@vger.kernel.org
10345 S:      Maintained
10346 F:      drivers/net/ethernet/sis/sis900.*
10347
10348 SIS FRAMEBUFFER DRIVER
10349 M:      Thomas Winischhofer <thomas@winischhofer.net>
10350 W:      http://www.winischhofer.net/linuxsisvga.shtml
10351 S:      Maintained
10352 F:      Documentation/fb/sisfb.txt
10353 F:      drivers/video/fbdev/sis/
10354 F:      include/video/sisfb.h
10355
10356 SIS USB2VGA DRIVER
10357 M:      Thomas Winischhofer <thomas@winischhofer.net>
10358 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10359 S:      Maintained
10360 F:      drivers/usb/misc/sisusbvga/
10361
10362 SLAB ALLOCATOR
10363 M:      Christoph Lameter <cl@linux.com>
10364 M:      Pekka Enberg <penberg@kernel.org>
10365 M:      David Rientjes <rientjes@google.com>
10366 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10367 M:      Andrew Morton <akpm@linux-foundation.org>
10368 L:      linux-mm@kvack.org
10369 S:      Maintained
10370 F:      include/linux/sl?b*.h
10371 F:      mm/sl?b*
10372
10373 SLEEPABLE READ-COPY UPDATE (SRCU)
10374 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10375 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10376 M:      Josh Triplett <josh@joshtriplett.org>
10377 R:      Steven Rostedt <rostedt@goodmis.org>
10378 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10379 L:      linux-kernel@vger.kernel.org
10380 W:      http://www.rdrop.com/users/paulmck/RCU/
10381 S:      Supported
10382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10383 F:      include/linux/srcu.h
10384 F:      kernel/rcu/srcu.c
10385
10386 SMACK SECURITY MODULE
10387 M:      Casey Schaufler <casey@schaufler-ca.com>
10388 L:      linux-security-module@vger.kernel.org
10389 W:      http://schaufler-ca.com
10390 T:      git git://git.gitorious.org/smack-next/kernel.git
10391 S:      Maintained
10392 F:      Documentation/security/Smack.txt
10393 F:      security/smack/
10394
10395 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10396 M:      Kevin Hilman <khilman@kernel.org>
10397 M:      Nishanth Menon <nm@ti.com>
10398 S:      Maintained
10399 F:      drivers/power/avs/
10400 F:      include/linux/power/smartreflex.h
10401 L:      linux-pm@vger.kernel.org
10402
10403 SMC91x ETHERNET DRIVER
10404 M:      Nicolas Pitre <nico@fluxnic.net>
10405 S:      Odd Fixes
10406 F:      drivers/net/ethernet/smsc/smc91x.*
10407
10408 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10409 M:      Sakari Ailus <sakari.ailus@iki.fi>
10410 L:      linux-media@vger.kernel.org
10411 S:      Maintained
10412 F:      drivers/media/i2c/smiapp/
10413 F:      include/media/i2c/smiapp.h
10414 F:      drivers/media/i2c/smiapp-pll.c
10415 F:      drivers/media/i2c/smiapp-pll.h
10416 F:      include/uapi/linux/smiapp.h
10417 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10418
10419 SMM665 HARDWARE MONITOR DRIVER
10420 M:      Guenter Roeck <linux@roeck-us.net>
10421 L:      linux-hwmon@vger.kernel.org
10422 S:      Maintained
10423 F:      Documentation/hwmon/smm665
10424 F:      drivers/hwmon/smm665.c
10425
10426 SMSC EMC2103 HARDWARE MONITOR DRIVER
10427 M:      Steve Glendinning <steve.glendinning@shawell.net>
10428 L:      linux-hwmon@vger.kernel.org
10429 S:      Maintained
10430 F:      Documentation/hwmon/emc2103
10431 F:      drivers/hwmon/emc2103.c
10432
10433 SMSC SCH5627 HARDWARE MONITOR DRIVER
10434 M:      Hans de Goede <hdegoede@redhat.com>
10435 L:      linux-hwmon@vger.kernel.org
10436 S:      Supported
10437 F:      Documentation/hwmon/sch5627
10438 F:      drivers/hwmon/sch5627.c
10439
10440 SMSC47B397 HARDWARE MONITOR DRIVER
10441 M:      Jean Delvare <jdelvare@suse.com>
10442 L:      linux-hwmon@vger.kernel.org
10443 S:      Maintained
10444 F:      Documentation/hwmon/smsc47b397
10445 F:      drivers/hwmon/smsc47b397.c
10446
10447 SMSC911x ETHERNET DRIVER
10448 M:      Steve Glendinning <steve.glendinning@shawell.net>
10449 L:      netdev@vger.kernel.org
10450 S:      Maintained
10451 F:      include/linux/smsc911x.h
10452 F:      drivers/net/ethernet/smsc/smsc911x.*
10453
10454 SMSC9420 PCI ETHERNET DRIVER
10455 M:      Steve Glendinning <steve.glendinning@shawell.net>
10456 L:      netdev@vger.kernel.org
10457 S:      Maintained
10458 F:      drivers/net/ethernet/smsc/smsc9420.*
10459
10460 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10461 M:      Steve Glendinning <steve.glendinning@shawell.net>
10462 L:      linux-fbdev@vger.kernel.org
10463 S:      Maintained
10464 F:      drivers/video/fbdev/smscufx.c
10465
10466 SOC-CAMERA V4L2 SUBSYSTEM
10467 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10468 L:      linux-media@vger.kernel.org
10469 T:      git git://linuxtv.org/media_tree.git
10470 S:      Maintained
10471 F:      include/media/soc*
10472 F:      drivers/media/i2c/soc_camera/
10473 F:      drivers/media/platform/soc_camera/
10474
10475 SOEKRIS NET48XX LED SUPPORT
10476 M:      Chris Boot <bootc@bootc.net>
10477 S:      Maintained
10478 F:      drivers/leds/leds-net48xx.c
10479
10480 SOFTLOGIC 6x10 MPEG CODEC
10481 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10482 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10483 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10484 M:      Ismael Luceno <ismael@iodev.co.uk>
10485 L:      linux-media@vger.kernel.org
10486 S:      Supported
10487 F:      drivers/media/pci/solo6x10/
10488
10489 SOFTWARE RAID (Multiple Disks) SUPPORT
10490 M:      Shaohua Li <shli@kernel.org>
10491 L:      linux-raid@vger.kernel.org
10492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
10493 S:      Supported
10494 F:      drivers/md/
10495 F:      include/linux/raid/
10496 F:      include/uapi/linux/raid/
10497
10498 SONIC NETWORK DRIVER
10499 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10500 L:      netdev@vger.kernel.org
10501 S:      Maintained
10502 F:      drivers/net/ethernet/natsemi/sonic.*
10503
10504 SONICS SILICON BACKPLANE DRIVER (SSB)
10505 M:      Michael Buesch <m@bues.ch>
10506 L:      linux-wireless@vger.kernel.org
10507 S:      Maintained
10508 F:      drivers/ssb/
10509 F:      include/linux/ssb/
10510
10511 SONY VAIO CONTROL DEVICE DRIVER
10512 M:      Mattia Dongili <malattia@linux.it>
10513 L:      platform-driver-x86@vger.kernel.org
10514 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10515 S:      Maintained
10516 F:      Documentation/laptops/sony-laptop.txt
10517 F:      drivers/char/sonypi.c
10518 F:      drivers/platform/x86/sony-laptop.c
10519 F:      include/linux/sony-laptop.h
10520
10521 SONY MEMORYSTICK CARD SUPPORT
10522 M:      Alex Dubov <oakad@yahoo.com>
10523 W:      http://tifmxx.berlios.de/
10524 S:      Maintained
10525 F:      drivers/memstick/host/tifm_ms.c
10526
10527 SONY MEMORYSTICK STANDARD SUPPORT
10528 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10529 S:      Maintained
10530 F:      drivers/memstick/core/ms_block.*
10531
10532 SOUND
10533 M:      Jaroslav Kysela <perex@perex.cz>
10534 M:      Takashi Iwai <tiwai@suse.com>
10535 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10536 W:      http://www.alsa-project.org/
10537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10538 T:      git git://git.alsa-project.org/alsa-kernel.git
10539 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10540 S:      Maintained
10541 F:      Documentation/sound/
10542 F:      include/sound/
10543 F:      include/uapi/sound/
10544 F:      sound/
10545
10546 SOUND - COMPRESSED AUDIO
10547 M:      Vinod Koul <vinod.koul@intel.com>
10548 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10550 S:      Supported
10551 F:      Documentation/sound/alsa/compress_offload.txt
10552 F:      include/sound/compress_driver.h
10553 F:      include/uapi/sound/compress_*
10554 F:      sound/core/compress_offload.c
10555 F:      sound/soc/soc-compress.c
10556
10557 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10558 M:      Liam Girdwood <lgirdwood@gmail.com>
10559 M:      Mark Brown <broonie@kernel.org>
10560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10561 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10562 W:      http://alsa-project.org/main/index.php/ASoC
10563 S:      Supported
10564 F:      Documentation/sound/alsa/soc/
10565 F:      sound/soc/
10566 F:      include/sound/soc*
10567
10568 SOUND - DMAENGINE HELPERS
10569 M:      Lars-Peter Clausen <lars@metafoo.de>
10570 S:      Supported
10571 F:      include/sound/dmaengine_pcm.h
10572 F:      sound/core/pcm_dmaengine.c
10573 F:      sound/soc/soc-generic-dmaengine-pcm.c
10574
10575 SP2 MEDIA DRIVER
10576 M:      Olli Salonen <olli.salonen@iki.fi>
10577 L:      linux-media@vger.kernel.org
10578 W:      https://linuxtv.org
10579 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10580 S:      Maintained
10581 F:      drivers/media/dvb-frontends/sp2*
10582
10583 SPARC + UltraSPARC (sparc/sparc64)
10584 M:      "David S. Miller" <davem@davemloft.net>
10585 L:      sparclinux@vger.kernel.org
10586 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10589 S:      Maintained
10590 F:      arch/sparc/
10591 F:      drivers/sbus/
10592
10593 SPARC SERIAL DRIVERS
10594 M:      "David S. Miller" <davem@davemloft.net>
10595 L:      sparclinux@vger.kernel.org
10596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10598 S:      Maintained
10599 F:      include/linux/sunserialcore.h
10600 F:      drivers/tty/serial/suncore.c
10601 F:      drivers/tty/serial/sunhv.c
10602 F:      drivers/tty/serial/sunsab.c
10603 F:      drivers/tty/serial/sunsab.h
10604 F:      drivers/tty/serial/sunsu.c
10605 F:      drivers/tty/serial/sunzilog.c
10606 F:      drivers/tty/serial/sunzilog.h
10607
10608 SPARSE CHECKER
10609 M:      "Christopher Li" <sparse@chrisli.org>
10610 L:      linux-sparse@vger.kernel.org
10611 W:      https://sparse.wiki.kernel.org/
10612 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10613 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10614 S:      Maintained
10615 F:      include/linux/compiler.h
10616
10617 SPEAR PLATFORM SUPPORT
10618 M:      Viresh Kumar <vireshk@kernel.org>
10619 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10620 L:      spear-devel@list.st.com
10621 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10622 W:      http://www.st.com/spear
10623 S:      Maintained
10624 F:      arch/arm/boot/dts/spear*
10625 F:      arch/arm/mach-spear/
10626
10627 SPEAR CLOCK FRAMEWORK SUPPORT
10628 M:      Viresh Kumar <vireshk@kernel.org>
10629 L:      spear-devel@list.st.com
10630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10631 W:      http://www.st.com/spear
10632 S:      Maintained
10633 F:      drivers/clk/spear/
10634
10635 SPI SUBSYSTEM
10636 M:      Mark Brown <broonie@kernel.org>
10637 L:      linux-spi@vger.kernel.org
10638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10639 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10640 S:      Maintained
10641 F:      Documentation/spi/
10642 F:      drivers/spi/
10643 F:      include/linux/spi/
10644 F:      include/uapi/linux/spi/
10645
10646 SPIDERNET NETWORK DRIVER for CELL
10647 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10648 L:      netdev@vger.kernel.org
10649 S:      Supported
10650 F:      Documentation/networking/spider_net.txt
10651 F:      drivers/net/ethernet/toshiba/spider_net*
10652
10653 SPU FILE SYSTEM
10654 M:      Jeremy Kerr <jk@ozlabs.org>
10655 L:      linuxppc-dev@lists.ozlabs.org
10656 W:      http://www.ibm.com/developerworks/power/cell/
10657 S:      Supported
10658 F:      Documentation/filesystems/spufs.txt
10659 F:      arch/powerpc/platforms/cell/spufs/
10660
10661 SQUASHFS FILE SYSTEM
10662 M:      Phillip Lougher <phillip@squashfs.org.uk>
10663 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10664 W:      http://squashfs.org.uk
10665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10666 S:      Maintained
10667 F:      Documentation/filesystems/squashfs.txt
10668 F:      fs/squashfs/
10669
10670 SRM (Alpha) environment access
10671 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10672 S:      Maintained
10673 F:      arch/alpha/kernel/srm_env.c
10674
10675 STABLE BRANCH
10676 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10677 L:      stable@vger.kernel.org
10678 S:      Supported
10679 F:      Documentation/stable_kernel_rules.txt
10680
10681 STAGING SUBSYSTEM
10682 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10684 L:      devel@driverdev.osuosl.org
10685 S:      Supported
10686 F:      drivers/staging/
10687
10688 STAGING - COMEDI
10689 M:      Ian Abbott <abbotti@mev.co.uk>
10690 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10691 S:      Odd Fixes
10692 F:      drivers/staging/comedi/
10693
10694 STAGING - FLARION FT1000 DRIVERS
10695 M:      Marek Belisko <marek.belisko@gmail.com>
10696 S:      Odd Fixes
10697 F:      drivers/staging/ft1000/
10698
10699 STAGING - INDUSTRIAL IO
10700 M:      Jonathan Cameron <jic23@kernel.org>
10701 L:      linux-iio@vger.kernel.org
10702 S:      Odd Fixes
10703 F:      drivers/staging/iio/
10704
10705 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10706 M:      Jarod Wilson <jarod@wilsonet.com>
10707 W:      http://www.lirc.org/
10708 S:      Odd Fixes
10709 F:      drivers/staging/media/lirc/
10710
10711 STAGING - LUSTRE PARALLEL FILESYSTEM
10712 M:      Oleg Drokin <oleg.drokin@intel.com>
10713 M:      Andreas Dilger <andreas.dilger@intel.com>
10714 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10715 W:      http://wiki.lustre.org/
10716 S:      Maintained
10717 F:      drivers/staging/lustre
10718
10719 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10720 M:      Marc Dietrich <marvin24@gmx.de>
10721 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10722 L:      linux-tegra@vger.kernel.org
10723 S:      Maintained
10724 F:      drivers/staging/nvec/
10725
10726 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10727 M:      Jens Frederich <jfrederich@gmail.com>
10728 M:      Daniel Drake <dsd@laptop.org>
10729 M:      Jon Nettleton <jon.nettleton@gmail.com>
10730 W:      http://wiki.laptop.org/go/DCON
10731 S:      Maintained
10732 F:      drivers/staging/olpc_dcon/
10733
10734 STAGING - REALTEK RTL8712U DRIVERS
10735 M:      Larry Finger <Larry.Finger@lwfinger.net>
10736 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10737 S:      Odd Fixes
10738 F:      drivers/staging/rtl8712/
10739
10740 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10741 M:      Larry Finger <Larry.Finger@lwfinger.net>
10742 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10743 L:      linux-wireless@vger.kernel.org
10744 S:      Maintained
10745 F:      drivers/staging/rtl8723au/
10746
10747 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10748 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10749 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10750 M:      Sudip Mukherjee <sudip@vectorindia.org>
10751 L:      linux-fbdev@vger.kernel.org
10752 S:      Maintained
10753 F:      drivers/staging/sm750fb/
10754
10755 STAGING - SLICOSS
10756 M:      Lior Dotan <liodot@gmail.com>
10757 M:      Christopher Harrer <charrer@alacritech.com>
10758 S:      Odd Fixes
10759 F:      drivers/staging/slicoss/
10760
10761 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10762 M:      William Hubbs <w.d.hubbs@gmail.com>
10763 M:      Chris Brannon <chris@the-brannons.com>
10764 M:      Kirk Reiser <kirk@reisers.ca>
10765 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10766 L:      speakup@linux-speakup.org
10767 W:      http://www.linux-speakup.org/
10768 S:      Odd Fixes
10769 F:      drivers/staging/speakup/
10770
10771 STAGING - VIA VT665X DRIVERS
10772 M:      Forest Bond <forest@alittletooquiet.net>
10773 S:      Odd Fixes
10774 F:      drivers/staging/vt665?/
10775
10776 STAGING - WILC1000 WIFI DRIVER
10777 M:      Johnny Kim <johnny.kim@atmel.com>
10778 M:      Austin Shin <austin.shin@atmel.com>
10779 M:      Chris Park <chris.park@atmel.com>
10780 M:      Tony Cho <tony.cho@atmel.com>
10781 M:      Glen Lee <glen.lee@atmel.com>
10782 M:      Leo Kim <leo.kim@atmel.com>
10783 L:      linux-wireless@vger.kernel.org
10784 S:      Supported
10785 F:      drivers/staging/wilc1000/
10786
10787 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10788 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10789 S:      Odd Fixes
10790 F:      drivers/staging/xgifb/
10791
10792 HFI1 DRIVER
10793 M:      Mike Marciniszyn <infinipath@intel.com>
10794 L:      linux-rdma@vger.kernel.org
10795 S:      Supported
10796 F:      drivers/staging/rdma/hfi1
10797
10798 STARFIRE/DURALAN NETWORK DRIVER
10799 M:      Ion Badulescu <ionut@badula.org>
10800 S:      Odd Fixes
10801 F:      drivers/net/ethernet/adaptec/starfire*
10802
10803 SUN3/3X
10804 M:      Sam Creasey <sammy@sammy.net>
10805 W:      http://sammy.net/sun3/
10806 S:      Maintained
10807 F:      arch/m68k/kernel/*sun3*
10808 F:      arch/m68k/sun3*/
10809 F:      arch/m68k/include/asm/sun3*
10810 F:      drivers/net/ethernet/i825xx/sun3*
10811
10812 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10813 M:      Hans de Goede <hdegoede@redhat.com>
10814 L:      linux-input@vger.kernel.org
10815 S:      Maintained
10816 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10817 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10818
10819 SUNDANCE NETWORK DRIVER
10820 M:      Denis Kirjanov <kda@linux-powerpc.org>
10821 L:      netdev@vger.kernel.org
10822 S:      Maintained
10823 F:      drivers/net/ethernet/dlink/sundance.c
10824
10825 SUPERH
10826 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10827 M:      Rich Felker <dalias@libc.org>
10828 L:      linux-sh@vger.kernel.org
10829 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10830 S:      Maintained
10831 F:      Documentation/sh/
10832 F:      arch/sh/
10833 F:      drivers/sh/
10834
10835 SUSPEND TO RAM
10836 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10837 M:      Len Brown <len.brown@intel.com>
10838 M:      Pavel Machek <pavel@ucw.cz>
10839 L:      linux-pm@vger.kernel.org
10840 S:      Supported
10841 F:      Documentation/power/
10842 F:      arch/x86/kernel/acpi/
10843 F:      drivers/base/power/
10844 F:      kernel/power/
10845 F:      include/linux/suspend.h
10846 F:      include/linux/freezer.h
10847 F:      include/linux/pm.h
10848
10849 SVGA HANDLING
10850 M:      Martin Mares <mj@ucw.cz>
10851 L:      linux-video@atrey.karlin.mff.cuni.cz
10852 S:      Maintained
10853 F:      Documentation/svga.txt
10854 F:      arch/x86/boot/video*
10855
10856 SWIOTLB SUBSYSTEM
10857 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10858 L:      linux-kernel@vger.kernel.org
10859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10860 S:      Supported
10861 F:      lib/swiotlb.c
10862 F:      arch/*/kernel/pci-swiotlb.c
10863 F:      include/linux/swiotlb.h
10864
10865 SWITCHDEV
10866 M:      Jiri Pirko <jiri@resnulli.us>
10867 L:      netdev@vger.kernel.org
10868 S:      Supported
10869 F:      net/switchdev/
10870 F:      include/net/switchdev.h
10871
10872 SYNOPSYS ARC ARCHITECTURE
10873 M:      Vineet Gupta <vgupta@synopsys.com>
10874 L:      linux-snps-arc@lists.infradead.org
10875 S:      Supported
10876 F:      arch/arc/
10877 F:      Documentation/devicetree/bindings/arc/*
10878 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10879 F:      drivers/tty/serial/arc_uart.c
10880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10881
10882 SYNOPSYS ARC SDP platform support
10883 M:      Alexey Brodkin <abrodkin@synopsys.com>
10884 S:      Supported
10885 F:      arch/arc/plat-axs10x
10886 F:      arch/arc/boot/dts/ax*
10887 F:      Documentation/devicetree/bindings/arc/axs10*
10888
10889 SYSTEM CONFIGURATION (SYSCON)
10890 M:      Lee Jones <lee.jones@linaro.org>
10891 M:      Arnd Bergmann <arnd@arndb.de>
10892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10893 S:      Supported
10894 F:      drivers/mfd/syscon.c
10895
10896 SYSV FILESYSTEM
10897 M:      Christoph Hellwig <hch@infradead.org>
10898 S:      Maintained
10899 F:      Documentation/filesystems/sysv-fs.txt
10900 F:      fs/sysv/
10901 F:      include/linux/sysv_fs.h
10902
10903 TARGET SUBSYSTEM
10904 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10905 L:      linux-scsi@vger.kernel.org
10906 L:      target-devel@vger.kernel.org
10907 W:      http://www.linux-iscsi.org
10908 W:      http://groups.google.com/group/linux-iscsi-target-dev
10909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10910 S:      Supported
10911 F:      drivers/target/
10912 F:      include/target/
10913 F:      Documentation/target/
10914
10915 TASKSTATS STATISTICS INTERFACE
10916 M:      Balbir Singh <bsingharora@gmail.com>
10917 S:      Maintained
10918 F:      Documentation/accounting/taskstats*
10919 F:      include/linux/taskstats*
10920 F:      kernel/taskstats.c
10921
10922 TC CLASSIFIER
10923 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10924 L:      netdev@vger.kernel.org
10925 S:      Maintained
10926 F:      include/net/pkt_cls.h
10927 F:      include/uapi/linux/pkt_cls.h
10928 F:      net/sched/
10929
10930 TCP LOW PRIORITY MODULE
10931 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10932 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10933 W:      http://tcp-lp-mod.sourceforge.net/
10934 S:      Maintained
10935 F:      net/ipv4/tcp_lp.c
10936
10937 TDA10071 MEDIA DRIVER
10938 M:      Antti Palosaari <crope@iki.fi>
10939 L:      linux-media@vger.kernel.org
10940 W:      https://linuxtv.org
10941 W:      http://palosaari.fi/linux/
10942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10943 T:      git git://linuxtv.org/anttip/media_tree.git
10944 S:      Maintained
10945 F:      drivers/media/dvb-frontends/tda10071*
10946
10947 TDA18212 MEDIA DRIVER
10948 M:      Antti Palosaari <crope@iki.fi>
10949 L:      linux-media@vger.kernel.org
10950 W:      https://linuxtv.org
10951 W:      http://palosaari.fi/linux/
10952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10953 T:      git git://linuxtv.org/anttip/media_tree.git
10954 S:      Maintained
10955 F:      drivers/media/tuners/tda18212*
10956
10957 TDA18218 MEDIA DRIVER
10958 M:      Antti Palosaari <crope@iki.fi>
10959 L:      linux-media@vger.kernel.org
10960 W:      https://linuxtv.org
10961 W:      http://palosaari.fi/linux/
10962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10963 T:      git git://linuxtv.org/anttip/media_tree.git
10964 S:      Maintained
10965 F:      drivers/media/tuners/tda18218*
10966
10967 TDA18271 MEDIA DRIVER
10968 M:      Michael Krufky <mkrufky@linuxtv.org>
10969 L:      linux-media@vger.kernel.org
10970 W:      https://linuxtv.org
10971 W:      http://github.com/mkrufky
10972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10973 T:      git git://linuxtv.org/mkrufky/tuners.git
10974 S:      Maintained
10975 F:      drivers/media/tuners/tda18271*
10976
10977 TDA827x MEDIA DRIVER
10978 M:      Michael Krufky <mkrufky@linuxtv.org>
10979 L:      linux-media@vger.kernel.org
10980 W:      https://linuxtv.org
10981 W:      http://github.com/mkrufky
10982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10983 T:      git git://linuxtv.org/mkrufky/tuners.git
10984 S:      Maintained
10985 F:      drivers/media/tuners/tda8290.*
10986
10987 TDA8290 MEDIA DRIVER
10988 M:      Michael Krufky <mkrufky@linuxtv.org>
10989 L:      linux-media@vger.kernel.org
10990 W:      https://linuxtv.org
10991 W:      http://github.com/mkrufky
10992 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10993 T:      git git://linuxtv.org/mkrufky/tuners.git
10994 S:      Maintained
10995 F:      drivers/media/tuners/tda8290.*
10996
10997 TDA9840 MEDIA DRIVER
10998 M:      Hans Verkuil <hverkuil@xs4all.nl>
10999 L:      linux-media@vger.kernel.org
11000 T:      git git://linuxtv.org/media_tree.git
11001 W:      https://linuxtv.org
11002 S:      Maintained
11003 F:      drivers/media/i2c/tda9840*
11004
11005 TEA5761 TUNER DRIVER
11006 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11007 L:      linux-media@vger.kernel.org
11008 W:      https://linuxtv.org
11009 T:      git git://linuxtv.org/media_tree.git
11010 S:      Odd fixes
11011 F:      drivers/media/tuners/tea5761.*
11012
11013 TEA5767 TUNER DRIVER
11014 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11015 L:      linux-media@vger.kernel.org
11016 W:      https://linuxtv.org
11017 T:      git git://linuxtv.org/media_tree.git
11018 S:      Maintained
11019 F:      drivers/media/tuners/tea5767.*
11020
11021 TEA6415C MEDIA DRIVER
11022 M:      Hans Verkuil <hverkuil@xs4all.nl>
11023 L:      linux-media@vger.kernel.org
11024 T:      git git://linuxtv.org/media_tree.git
11025 W:      https://linuxtv.org
11026 S:      Maintained
11027 F:      drivers/media/i2c/tea6415c*
11028
11029 TEA6420 MEDIA DRIVER
11030 M:      Hans Verkuil <hverkuil@xs4all.nl>
11031 L:      linux-media@vger.kernel.org
11032 T:      git git://linuxtv.org/media_tree.git
11033 W:      https://linuxtv.org
11034 S:      Maintained
11035 F:      drivers/media/i2c/tea6420*
11036
11037 TEAM DRIVER
11038 M:      Jiri Pirko <jiri@resnulli.us>
11039 L:      netdev@vger.kernel.org
11040 S:      Supported
11041 F:      drivers/net/team/
11042 F:      include/linux/if_team.h
11043 F:      include/uapi/linux/if_team.h
11044
11045 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11046 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11047 S:      Maintained
11048 F:      arch/x86/platform/ts5500/
11049
11050 TECHNOTREND USB IR RECEIVER
11051 M:      Sean Young <sean@mess.org>
11052 L:      linux-media@vger.kernel.org
11053 S:      Maintained
11054 F:      drivers/media/rc/ttusbir.c
11055
11056 TEGRA ARCHITECTURE SUPPORT
11057 M:      Stephen Warren <swarren@wwwdotorg.org>
11058 M:      Thierry Reding <thierry.reding@gmail.com>
11059 M:      Alexandre Courbot <gnurou@gmail.com>
11060 L:      linux-tegra@vger.kernel.org
11061 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11063 S:      Supported
11064 N:      [^a-z]tegra
11065
11066 TEGRA CLOCK DRIVER
11067 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11068 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11069 S:      Supported
11070 F:      drivers/clk/tegra/
11071
11072 TEGRA DMA DRIVER
11073 M:      Laxman Dewangan <ldewangan@nvidia.com>
11074 S:      Supported
11075 F:      drivers/dma/tegra20-apb-dma.c
11076
11077 TEGRA I2C DRIVER
11078 M:      Laxman Dewangan <ldewangan@nvidia.com>
11079 S:      Supported
11080 F:      drivers/i2c/busses/i2c-tegra.c
11081
11082 TEGRA IOMMU DRIVERS
11083 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11084 S:      Supported
11085 F:      drivers/iommu/tegra*
11086
11087 TEGRA KBC DRIVER
11088 M:      Rakesh Iyer <riyer@nvidia.com>
11089 M:      Laxman Dewangan <ldewangan@nvidia.com>
11090 S:      Supported
11091 F:      drivers/input/keyboard/tegra-kbc.c
11092
11093 TEGRA PWM DRIVER
11094 M:      Thierry Reding <thierry.reding@gmail.com>
11095 S:      Supported
11096 F:      drivers/pwm/pwm-tegra.c
11097
11098 TEGRA SERIAL DRIVER
11099 M:      Laxman Dewangan <ldewangan@nvidia.com>
11100 S:      Supported
11101 F:      drivers/tty/serial/serial-tegra.c
11102
11103 TEGRA SPI DRIVER
11104 M:      Laxman Dewangan <ldewangan@nvidia.com>
11105 S:      Supported
11106 F:      drivers/spi/spi-tegra*
11107
11108 TEHUTI ETHERNET DRIVER
11109 M:      Andy Gospodarek <andy@greyhouse.net>
11110 L:      netdev@vger.kernel.org
11111 S:      Supported
11112 F:      drivers/net/ethernet/tehuti/*
11113
11114 Telecom Clock Driver for MCPL0010
11115 M:      Mark Gross <mark.gross@intel.com>
11116 S:      Supported
11117 F:      drivers/char/tlclk.c
11118
11119 TENSILICA XTENSA PORT (xtensa)
11120 M:      Chris Zankel <chris@zankel.net>
11121 M:      Max Filippov <jcmvbkbc@gmail.com>
11122 L:      linux-xtensa@linux-xtensa.org
11123 T:      git git://github.com/czankel/xtensa-linux.git
11124 S:      Maintained
11125 F:      arch/xtensa/
11126 F:      drivers/irqchip/irq-xtensa-*
11127
11128 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11129 M:      Hans Verkuil <hverkuil@xs4all.nl>
11130 L:      linux-media@vger.kernel.org
11131 T:      git git://linuxtv.org/media_tree.git
11132 W:      https://linuxtv.org
11133 S:      Maintained
11134 F:      drivers/media/radio/radio-raremono.c
11135
11136 THERMAL
11137 M:      Zhang Rui <rui.zhang@intel.com>
11138 M:      Eduardo Valentin <edubezval@gmail.com>
11139 L:      linux-pm@vger.kernel.org
11140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11142 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11143 S:      Supported
11144 F:      drivers/thermal/
11145 F:      include/linux/thermal.h
11146 F:      include/uapi/linux/thermal.h
11147 F:      include/linux/cpu_cooling.h
11148 F:      Documentation/devicetree/bindings/thermal/
11149
11150 THERMAL/CPU_COOLING
11151 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11152 M:      Viresh Kumar <viresh.kumar@linaro.org>
11153 M:      Javi Merino <javi.merino@arm.com>
11154 L:      linux-pm@vger.kernel.org
11155 S:      Supported
11156 F:      Documentation/thermal/cpu-cooling-api.txt
11157 F:      drivers/thermal/cpu_cooling.c
11158 F:      include/linux/cpu_cooling.h
11159
11160 THINGM BLINK(1) USB RGB LED DRIVER
11161 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11162 S:      Maintained
11163 F:      drivers/hid/hid-thingm.c
11164
11165 THINKPAD ACPI EXTRAS DRIVER
11166 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11167 L:      ibm-acpi-devel@lists.sourceforge.net
11168 L:      platform-driver-x86@vger.kernel.org
11169 W:      http://ibm-acpi.sourceforge.net
11170 W:      http://thinkwiki.org/wiki/Ibm-acpi
11171 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11172 S:      Maintained
11173 F:      drivers/platform/x86/thinkpad_acpi.c
11174
11175 TI BANDGAP AND THERMAL DRIVER
11176 M:      Eduardo Valentin <edubezval@gmail.com>
11177 L:      linux-pm@vger.kernel.org
11178 L:      linux-omap@vger.kernel.org
11179 S:      Maintained
11180 F:      drivers/thermal/ti-soc-thermal/
11181
11182 TI VPE/CAL DRIVERS
11183 M:      Benoit Parrot <bparrot@ti.com>
11184 L:      linux-media@vger.kernel.org
11185 W:      http://linuxtv.org/
11186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11187 S:      Maintained
11188 F:      drivers/media/platform/ti-vpe/
11189
11190 TI CDCE706 CLOCK DRIVER
11191 M:      Max Filippov <jcmvbkbc@gmail.com>
11192 S:      Maintained
11193 F:      drivers/clk/clk-cdce706.c
11194
11195 TI CLOCK DRIVER
11196 M:      Tero Kristo <t-kristo@ti.com>
11197 L:      linux-omap@vger.kernel.org
11198 S:      Maintained
11199 F:      drivers/clk/ti/
11200 F:      include/linux/clk/ti.h
11201
11202 TI ETHERNET SWITCH DRIVER (CPSW)
11203 M:      Mugunthan V N <mugunthanvnm@ti.com>
11204 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11205 L:      linux-omap@vger.kernel.org
11206 L:      netdev@vger.kernel.org
11207 S:      Maintained
11208 F:      drivers/net/ethernet/ti/cpsw*
11209 F:      drivers/net/ethernet/ti/davinci*
11210
11211 TI FLASH MEDIA INTERFACE DRIVER
11212 M:      Alex Dubov <oakad@yahoo.com>
11213 S:      Maintained
11214 F:      drivers/misc/tifm*
11215 F:      drivers/mmc/host/tifm_sd.c
11216 F:      include/linux/tifm.h
11217
11218 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11219 M:      Santosh Shilimkar <ssantosh@kernel.org>
11220 L:      linux-kernel@vger.kernel.org
11221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11222 S:      Maintained
11223 F:      drivers/soc/ti/*
11224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11225
11226
11227 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11228 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11229 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11230 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11231 S:      Maintained
11232 F:      sound/soc/codecs/lm49453*
11233 F:      sound/soc/codecs/isabelle*
11234
11235 TI LP855x BACKLIGHT DRIVER
11236 M:      Milo Kim <milo.kim@ti.com>
11237 S:      Maintained
11238 F:      Documentation/backlight/lp855x-driver.txt
11239 F:      drivers/video/backlight/lp855x_bl.c
11240 F:      include/linux/platform_data/lp855x.h
11241
11242 TI LP8727 CHARGER DRIVER
11243 M:      Milo Kim <milo.kim@ti.com>
11244 S:      Maintained
11245 F:      drivers/power/lp8727_charger.c
11246 F:      include/linux/platform_data/lp8727.h
11247
11248 TI LP8788 MFD DRIVER
11249 M:      Milo Kim <milo.kim@ti.com>
11250 S:      Maintained
11251 F:      drivers/iio/adc/lp8788_adc.c
11252 F:      drivers/leds/leds-lp8788.c
11253 F:      drivers/mfd/lp8788*.c
11254 F:      drivers/power/lp8788-charger.c
11255 F:      drivers/regulator/lp8788-*.c
11256 F:      include/linux/mfd/lp8788*.h
11257
11258 TI NETCP ETHERNET DRIVER
11259 M:      Wingman Kwok <w-kwok2@ti.com>
11260 M:      Murali Karicheri <m-karicheri2@ti.com>
11261 L:      netdev@vger.kernel.org
11262 S:      Maintained
11263 F:      drivers/net/ethernet/ti/netcp*
11264
11265 TI TAS571X FAMILY ASoC CODEC DRIVER
11266 M:      Kevin Cernekee <cernekee@chromium.org>
11267 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11268 S:      Odd Fixes
11269 F:      sound/soc/codecs/tas571x*
11270
11271 TI TWL4030 SERIES SOC CODEC DRIVER
11272 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11273 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11274 S:      Maintained
11275 F:      sound/soc/codecs/twl4030*
11276
11277 TI WILINK WIRELESS DRIVERS
11278 L:      linux-wireless@vger.kernel.org
11279 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11280 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11282 S:      Orphan
11283 F:      drivers/net/wireless/ti/
11284 F:      include/linux/wl12xx.h
11285
11286 TIPC NETWORK LAYER
11287 M:      Jon Maloy <jon.maloy@ericsson.com>
11288 M:      Ying Xue <ying.xue@windriver.com>
11289 L:      netdev@vger.kernel.org (core kernel code)
11290 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11291 W:      http://tipc.sourceforge.net/
11292 S:      Maintained
11293 F:      include/uapi/linux/tipc*.h
11294 F:      net/tipc/
11295
11296 TILE ARCHITECTURE
11297 M:      Chris Metcalf <cmetcalf@mellanox.com>
11298 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11300 S:      Supported
11301 F:      arch/tile/
11302 F:      drivers/char/tile-srom.c
11303 F:      drivers/edac/tile_edac.c
11304 F:      drivers/net/ethernet/tile/
11305 F:      drivers/rtc/rtc-tile.c
11306 F:      drivers/tty/hvc/hvc_tile.c
11307 F:      drivers/tty/serial/tilegx.c
11308 F:      drivers/usb/host/*-tilegx.c
11309 F:      include/linux/usb/tilegx.h
11310
11311 TLAN NETWORK DRIVER
11312 M:      Samuel Chessman <chessman@tux.org>
11313 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11314 W:      http://sourceforge.net/projects/tlan/
11315 S:      Maintained
11316 F:      Documentation/networking/tlan.txt
11317 F:      drivers/net/ethernet/ti/tlan.*
11318
11319 TOMOYO SECURITY MODULE
11320 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11321 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11322 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11323 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11324 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11325 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11326 W:      http://tomoyo.sourceforge.jp/
11327 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11328 S:      Maintained
11329 F:      security/tomoyo/
11330
11331 TOPSTAR LAPTOP EXTRAS DRIVER
11332 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11333 L:      platform-driver-x86@vger.kernel.org
11334 S:      Maintained
11335 F:      drivers/platform/x86/topstar-laptop.c
11336
11337 TOSHIBA ACPI EXTRAS DRIVER
11338 M:      Azael Avalos <coproscefalo@gmail.com>
11339 L:      platform-driver-x86@vger.kernel.org
11340 S:      Maintained
11341 F:      drivers/platform/x86/toshiba_acpi.c
11342
11343 TOSHIBA BLUETOOTH DRIVER
11344 M:      Azael Avalos <coproscefalo@gmail.com>
11345 L:      platform-driver-x86@vger.kernel.org
11346 S:      Maintained
11347 F:      drivers/platform/x86/toshiba_bluetooth.c
11348
11349 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11350 M:      Azael Avalos <coproscefalo@gmail.com>
11351 L:      platform-driver-x86@vger.kernel.org
11352 S:      Maintained
11353 F:      drivers/platform/x86/toshiba_haps.c
11354
11355 TOSHIBA WMI HOTKEYS DRIVER
11356 M:      Azael Avalos <coproscefalo@gmail.com>
11357 L:      platform-driver-x86@vger.kernel.org
11358 S:      Maintained
11359 F:      drivers/platform/x86/toshiba-wmi.c
11360
11361 TOSHIBA SMM DRIVER
11362 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11363 W:      http://www.buzzard.org.uk/toshiba/
11364 S:      Maintained
11365 F:      drivers/char/toshiba.c
11366 F:      include/linux/toshiba.h
11367 F:      include/uapi/linux/toshiba.h
11368
11369 TOSHIBA TC358743 DRIVER
11370 M:      Mats Randgaard <matrandg@cisco.com>
11371 L:      linux-media@vger.kernel.org
11372 S:      Maintained
11373 F:      drivers/media/i2c/tc358743*
11374 F:      include/media/i2c/tc358743.h
11375
11376 TMIO MMC DRIVER
11377 M:      Ian Molton <ian@mnementh.co.uk>
11378 L:      linux-mmc@vger.kernel.org
11379 S:      Maintained
11380 F:      drivers/mmc/host/tmio_mmc*
11381 F:      drivers/mmc/host/sh_mobile_sdhi.c
11382 F:      include/linux/mmc/tmio.h
11383 F:      include/linux/mmc/sh_mobile_sdhi.h
11384
11385 TMP401 HARDWARE MONITOR DRIVER
11386 M:      Guenter Roeck <linux@roeck-us.net>
11387 L:      linux-hwmon@vger.kernel.org
11388 S:      Maintained
11389 F:      Documentation/hwmon/tmp401
11390 F:      drivers/hwmon/tmp401.c
11391
11392 TMPFS (SHMEM FILESYSTEM)
11393 M:      Hugh Dickins <hughd@google.com>
11394 L:      linux-mm@kvack.org
11395 S:      Maintained
11396 F:      include/linux/shmem_fs.h
11397 F:      mm/shmem.c
11398
11399 TM6000 VIDEO4LINUX DRIVER
11400 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11401 L:      linux-media@vger.kernel.org
11402 W:      https://linuxtv.org
11403 T:      git git://linuxtv.org/media_tree.git
11404 S:      Odd fixes
11405 F:      drivers/media/usb/tm6000/
11406
11407 TW68 VIDEO4LINUX DRIVER
11408 M:      Hans Verkuil <hverkuil@xs4all.nl>
11409 L:      linux-media@vger.kernel.org
11410 T:      git git://linuxtv.org/media_tree.git
11411 W:      https://linuxtv.org
11412 S:      Odd Fixes
11413 F:      drivers/media/pci/tw68/
11414
11415 TPM DEVICE DRIVER
11416 M:      Peter Huewe <peterhuewe@gmx.de>
11417 M:      Marcel Selhorst <tpmdd@selhorst.net>
11418 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11419 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11420 W:      http://tpmdd.sourceforge.net
11421 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11422 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11423 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11424 S:      Maintained
11425 F:      drivers/char/tpm/
11426
11427 TPM IBM_VTPM DEVICE DRIVER
11428 M:      Ashley Lai <ashleydlai@gmail.com>
11429 W:      http://tpmdd.sourceforge.net
11430 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11431 S:      Maintained
11432 F:      drivers/char/tpm/tpm_ibmvtpm*
11433
11434 TRACING
11435 M:      Steven Rostedt <rostedt@goodmis.org>
11436 M:      Ingo Molnar <mingo@redhat.com>
11437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11438 S:      Maintained
11439 F:      Documentation/trace/ftrace.txt
11440 F:      arch/*/*/*/ftrace.h
11441 F:      arch/*/kernel/ftrace.c
11442 F:      include/*/ftrace.h
11443 F:      include/linux/trace*.h
11444 F:      include/trace/
11445 F:      kernel/trace/
11446 F:      tools/testing/selftests/ftrace/
11447
11448 TRIVIAL PATCHES
11449 M:      Jiri Kosina <trivial@kernel.org>
11450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11451 S:      Maintained
11452 K:      ^Subject:.*(?i)trivial
11453
11454 TTY LAYER
11455 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11456 M:      Jiri Slaby <jslaby@suse.com>
11457 S:      Supported
11458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11459 F:      Documentation/serial/
11460 F:      drivers/tty/
11461 F:      drivers/tty/serial/serial_core.c
11462 F:      include/linux/serial_core.h
11463 F:      include/linux/serial.h
11464 F:      include/linux/tty.h
11465 F:      include/uapi/linux/serial_core.h
11466 F:      include/uapi/linux/serial.h
11467 F:      include/uapi/linux/tty.h
11468
11469 TUA9001 MEDIA DRIVER
11470 M:      Antti Palosaari <crope@iki.fi>
11471 L:      linux-media@vger.kernel.org
11472 W:      https://linuxtv.org
11473 W:      http://palosaari.fi/linux/
11474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11475 T:      git git://linuxtv.org/anttip/media_tree.git
11476 S:      Maintained
11477 F:      drivers/media/tuners/tua9001*
11478
11479 TULIP NETWORK DRIVERS
11480 L:      netdev@vger.kernel.org
11481 L:      linux-parisc@vger.kernel.org
11482 S:      Orphan
11483 F:      drivers/net/ethernet/dec/tulip/
11484
11485 TUN/TAP driver
11486 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11487 W:      http://vtun.sourceforge.net/tun
11488 S:      Maintained
11489 F:      Documentation/networking/tuntap.txt
11490 F:      arch/um/os-Linux/drivers/
11491
11492 TURBOCHANNEL SUBSYSTEM
11493 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11494 M:      Ralf Baechle <ralf@linux-mips.org>
11495 L:      linux-mips@linux-mips.org
11496 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11497 S:      Maintained
11498 F:      drivers/tc/
11499 F:      include/linux/tc.h
11500
11501 U14-34F SCSI DRIVER
11502 M:      Dario Ballabio <ballabio_dario@emc.com>
11503 L:      linux-scsi@vger.kernel.org
11504 S:      Maintained
11505 F:      drivers/scsi/u14-34f.c
11506
11507 UBI FILE SYSTEM (UBIFS)
11508 M:      Richard Weinberger <richard@nod.at>
11509 M:      Artem Bityutskiy <dedekind1@gmail.com>
11510 M:      Adrian Hunter <adrian.hunter@intel.com>
11511 L:      linux-mtd@lists.infradead.org
11512 T:      git git://git.infradead.org/ubifs-2.6.git
11513 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11514 S:      Supported
11515 F:      Documentation/filesystems/ubifs.txt
11516 F:      fs/ubifs/
11517
11518 UCLINUX (M68KNOMMU AND COLDFIRE)
11519 M:      Greg Ungerer <gerg@uclinux.org>
11520 W:      http://www.uclinux.org/
11521 L:      linux-m68k@lists.linux-m68k.org
11522 L:      uclinux-dev@uclinux.org  (subscribers-only)
11523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11524 S:      Maintained
11525 F:      arch/m68k/coldfire/
11526 F:      arch/m68k/68*/
11527 F:      arch/m68k/*/*_no.*
11528 F:      arch/m68k/include/asm/*_no.*
11529
11530 UDF FILESYSTEM
11531 M:      Jan Kara <jack@suse.com>
11532 S:      Maintained
11533 F:      Documentation/filesystems/udf.txt
11534 F:      fs/udf/
11535
11536 UFS FILESYSTEM
11537 M:      Evgeniy Dushistov <dushistov@mail.ru>
11538 S:      Maintained
11539 F:      Documentation/filesystems/ufs.txt
11540 F:      fs/ufs/
11541
11542 UHID USERSPACE HID IO DRIVER:
11543 M:      David Herrmann <dh.herrmann@googlemail.com>
11544 L:      linux-input@vger.kernel.org
11545 S:      Maintained
11546 F:      drivers/hid/uhid.c
11547 F:      include/uapi/linux/uhid.h
11548
11549 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11550 L:      linux-usb@vger.kernel.org
11551 S:      Orphan
11552 F:      drivers/uwb/
11553 F:      include/linux/uwb.h
11554 F:      include/linux/uwb/
11555
11556 UNICORE32 ARCHITECTURE:
11557 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11558 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11559 S:      Maintained
11560 T:      git git://github.com/gxt/linux.git
11561 F:      arch/unicore32/
11562
11563 UNIFDEF
11564 M:      Tony Finch <dot@dotat.at>
11565 W:      http://dotat.at/prog/unifdef
11566 S:      Maintained
11567 F:      scripts/unifdef.c
11568
11569 UNIFORM CDROM DRIVER
11570 M:      Jens Axboe <axboe@kernel.dk>
11571 W:      http://www.kernel.dk
11572 S:      Maintained
11573 F:      Documentation/cdrom/
11574 F:      drivers/cdrom/cdrom.c
11575 F:      include/linux/cdrom.h
11576 F:      include/uapi/linux/cdrom.h
11577
11578 UNISYS S-PAR DRIVERS
11579 M:      David Kershner <david.kershner@unisys.com>
11580 L:      sparmaintainer@unisys.com (Unisys internal)
11581 S:      Supported
11582 F:      drivers/staging/unisys/
11583
11584 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11585 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11586 L:      linux-scsi@vger.kernel.org
11587 S:      Supported
11588 F:      Documentation/scsi/ufs.txt
11589 F:      drivers/scsi/ufs/
11590
11591 UNSORTED BLOCK IMAGES (UBI)
11592 M:      Artem Bityutskiy <dedekind1@gmail.com>
11593 M:      Richard Weinberger <richard@nod.at>
11594 W:      http://www.linux-mtd.infradead.org/
11595 L:      linux-mtd@lists.infradead.org
11596 T:      git git://git.infradead.org/ubifs-2.6.git
11597 S:      Supported
11598 F:      drivers/mtd/ubi/
11599 F:      include/linux/mtd/ubi.h
11600 F:      include/uapi/mtd/ubi-user.h
11601
11602 USB ACM DRIVER
11603 M:      Oliver Neukum <oneukum@suse.com>
11604 L:      linux-usb@vger.kernel.org
11605 S:      Maintained
11606 F:      Documentation/usb/acm.txt
11607 F:      drivers/usb/class/cdc-acm.*
11608
11609 USB AR5523 WIRELESS DRIVER
11610 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11611 L:      linux-wireless@vger.kernel.org
11612 S:      Maintained
11613 F:      drivers/net/wireless/ath/ar5523/
11614
11615 USB ATTACHED SCSI
11616 M:      Hans de Goede <hdegoede@redhat.com>
11617 M:      Gerd Hoffmann <kraxel@redhat.com>
11618 L:      linux-usb@vger.kernel.org
11619 L:      linux-scsi@vger.kernel.org
11620 S:      Maintained
11621 F:      drivers/usb/storage/uas.c
11622
11623 USB CDC ETHERNET DRIVER
11624 M:      Oliver Neukum <oliver@neukum.org>
11625 L:      linux-usb@vger.kernel.org
11626 S:      Maintained
11627 F:      drivers/net/usb/cdc_*.c
11628 F:      include/uapi/linux/usb/cdc.h
11629
11630 USB CHAOSKEY DRIVER
11631 M:      Keith Packard <keithp@keithp.com>
11632 L:      linux-usb@vger.kernel.org
11633 S:      Maintained
11634 F:      drivers/usb/misc/chaoskey.c
11635
11636 USB CYPRESS C67X00 DRIVER
11637 M:      Peter Korsgaard <jacmet@sunsite.dk>
11638 L:      linux-usb@vger.kernel.org
11639 S:      Maintained
11640 F:      drivers/usb/c67x00/
11641
11642 USB DAVICOM DM9601 DRIVER
11643 M:      Peter Korsgaard <jacmet@sunsite.dk>
11644 L:      netdev@vger.kernel.org
11645 W:      http://www.linux-usb.org/usbnet
11646 S:      Maintained
11647 F:      drivers/net/usb/dm9601.c
11648
11649 USB DIAMOND RIO500 DRIVER
11650 M:      Cesar Miquel <miquel@df.uba.ar>
11651 L:      rio500-users@lists.sourceforge.net
11652 W:      http://rio500.sourceforge.net
11653 S:      Maintained
11654 F:      drivers/usb/misc/rio500*
11655
11656 USB EHCI DRIVER
11657 M:      Alan Stern <stern@rowland.harvard.edu>
11658 L:      linux-usb@vger.kernel.org
11659 S:      Maintained
11660 F:      Documentation/usb/ehci.txt
11661 F:      drivers/usb/host/ehci*
11662
11663 USB GADGET/PERIPHERAL SUBSYSTEM
11664 M:      Felipe Balbi <balbi@kernel.org>
11665 L:      linux-usb@vger.kernel.org
11666 W:      http://www.linux-usb.org/gadget
11667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11668 S:      Maintained
11669 F:      drivers/usb/gadget/
11670 F:      include/linux/usb/gadget*
11671
11672 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11673 M:      Jiri Kosina <jikos@kernel.org>
11674 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11675 L:      linux-usb@vger.kernel.org
11676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11677 S:      Maintained
11678 F:      Documentation/hid/hiddev.txt
11679 F:      drivers/hid/usbhid/
11680
11681 USB ISP116X DRIVER
11682 M:      Olav Kongas <ok@artecdesign.ee>
11683 L:      linux-usb@vger.kernel.org
11684 S:      Maintained
11685 F:      drivers/usb/host/isp116x*
11686 F:      include/linux/usb/isp116x.h
11687
11688 USB LAN78XX ETHERNET DRIVER
11689 M:      Woojung Huh <woojung.huh@microchip.com>
11690 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11691 L:      netdev@vger.kernel.org
11692 S:      Maintained
11693 F:      drivers/net/usb/lan78xx.*
11694
11695 USB MASS STORAGE DRIVER
11696 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11697 L:      linux-usb@vger.kernel.org
11698 L:      usb-storage@lists.one-eyed-alien.net
11699 S:      Maintained
11700 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11701 F:      drivers/usb/storage/
11702
11703 USB MIDI DRIVER
11704 M:      Clemens Ladisch <clemens@ladisch.de>
11705 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11706 T:      git git://git.alsa-project.org/alsa-kernel.git
11707 S:      Maintained
11708 F:      sound/usb/midi.*
11709
11710 USB NETWORKING DRIVERS
11711 L:      linux-usb@vger.kernel.org
11712 S:      Odd Fixes
11713 F:      drivers/net/usb/
11714
11715 USB OHCI DRIVER
11716 M:      Alan Stern <stern@rowland.harvard.edu>
11717 L:      linux-usb@vger.kernel.org
11718 S:      Maintained
11719 F:      Documentation/usb/ohci.txt
11720 F:      drivers/usb/host/ohci*
11721
11722 USB OTG FSM (Finite State Machine)
11723 M:      Peter Chen <Peter.Chen@nxp.com>
11724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11725 L:      linux-usb@vger.kernel.org
11726 S:      Maintained
11727 F:      drivers/usb/common/usb-otg-fsm.c
11728
11729 USB OVER IP DRIVER
11730 M:      Valentina Manea <valentina.manea.m@gmail.com>
11731 M:      Shuah Khan <shuah.kh@samsung.com>
11732 L:      linux-usb@vger.kernel.org
11733 S:      Maintained
11734 F:      Documentation/usb/usbip_protocol.txt
11735 F:      drivers/usb/usbip/
11736 F:      tools/usb/usbip/
11737
11738 USB PEGASUS DRIVER
11739 M:      Petko Manolov <petkan@nucleusys.com>
11740 L:      linux-usb@vger.kernel.org
11741 L:      netdev@vger.kernel.org
11742 T:      git git://github.com/petkan/pegasus.git
11743 W:      https://github.com/petkan/pegasus
11744 S:      Maintained
11745 F:      drivers/net/usb/pegasus.*
11746
11747 USB PHY LAYER
11748 M:      Felipe Balbi <balbi@kernel.org>
11749 L:      linux-usb@vger.kernel.org
11750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11751 S:      Maintained
11752 F:      drivers/usb/phy/
11753
11754 USB PRINTER DRIVER (usblp)
11755 M:      Pete Zaitcev <zaitcev@redhat.com>
11756 L:      linux-usb@vger.kernel.org
11757 S:      Supported
11758 F:      drivers/usb/class/usblp.c
11759
11760 USB QMI WWAN NETWORK DRIVER
11761 M:      Bjørn Mork <bjorn@mork.no>
11762 L:      netdev@vger.kernel.org
11763 S:      Maintained
11764 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11765 F:      drivers/net/usb/qmi_wwan.c
11766
11767 USB RTL8150 DRIVER
11768 M:      Petko Manolov <petkan@nucleusys.com>
11769 L:      linux-usb@vger.kernel.org
11770 L:      netdev@vger.kernel.org
11771 T:      git git://github.com/petkan/rtl8150.git
11772 W:      https://github.com/petkan/rtl8150
11773 S:      Maintained
11774 F:      drivers/net/usb/rtl8150.c
11775
11776 USB SERIAL SUBSYSTEM
11777 M:      Johan Hovold <johan@kernel.org>
11778 L:      linux-usb@vger.kernel.org
11779 S:      Maintained
11780 F:      Documentation/usb/usb-serial.txt
11781 F:      drivers/usb/serial/
11782 F:      include/linux/usb/serial.h
11783
11784 USB SMSC75XX ETHERNET DRIVER
11785 M:      Steve Glendinning <steve.glendinning@shawell.net>
11786 L:      netdev@vger.kernel.org
11787 S:      Maintained
11788 F:      drivers/net/usb/smsc75xx.*
11789
11790 USB SMSC95XX ETHERNET DRIVER
11791 M:      Steve Glendinning <steve.glendinning@shawell.net>
11792 L:      netdev@vger.kernel.org
11793 S:      Maintained
11794 F:      drivers/net/usb/smsc95xx.*
11795
11796 USB SUBSYSTEM
11797 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11798 L:      linux-usb@vger.kernel.org
11799 W:      http://www.linux-usb.org
11800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11801 S:      Supported
11802 F:      Documentation/usb/
11803 F:      drivers/usb/
11804 F:      include/linux/usb.h
11805 F:      include/linux/usb/
11806
11807 USB UHCI DRIVER
11808 M:      Alan Stern <stern@rowland.harvard.edu>
11809 L:      linux-usb@vger.kernel.org
11810 S:      Maintained
11811 F:      drivers/usb/host/uhci*
11812
11813 USB "USBNET" DRIVER FRAMEWORK
11814 M:      Oliver Neukum <oneukum@suse.com>
11815 L:      netdev@vger.kernel.org
11816 W:      http://www.linux-usb.org/usbnet
11817 S:      Maintained
11818 F:      drivers/net/usb/usbnet.c
11819 F:      include/linux/usb/usbnet.h
11820
11821 USB VIDEO CLASS
11822 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11823 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11824 L:      linux-media@vger.kernel.org
11825 T:      git git://linuxtv.org/media_tree.git
11826 W:      http://www.ideasonboard.org/uvc/
11827 S:      Maintained
11828 F:      drivers/media/usb/uvc/
11829 F:      include/uapi/linux/uvcvideo.h
11830
11831 USB VISION DRIVER
11832 M:      Hans Verkuil <hverkuil@xs4all.nl>
11833 L:      linux-media@vger.kernel.org
11834 T:      git git://linuxtv.org/media_tree.git
11835 W:      https://linuxtv.org
11836 S:      Odd Fixes
11837 F:      drivers/media/usb/usbvision/
11838
11839 USB WEBCAM GADGET
11840 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11841 L:      linux-usb@vger.kernel.org
11842 S:      Maintained
11843 F:      drivers/usb/gadget/function/*uvc*
11844 F:      drivers/usb/gadget/legacy/webcam.c
11845
11846 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11847 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11848 L:      linux-wireless@vger.kernel.org
11849 S:      Maintained
11850 F:      drivers/net/wireless/rndis_wlan.c
11851
11852 USB XHCI DRIVER
11853 M:      Mathias Nyman <mathias.nyman@intel.com>
11854 L:      linux-usb@vger.kernel.org
11855 S:      Supported
11856 F:      drivers/usb/host/xhci*
11857 F:      drivers/usb/host/pci-quirks*
11858
11859 USB ZD1201 DRIVER
11860 L:      linux-wireless@vger.kernel.org
11861 W:      http://linux-lc100020.sourceforge.net
11862 S:      Orphan
11863 F:      drivers/net/wireless/zydas/zd1201.*
11864
11865 USB ZR364XX DRIVER
11866 M:      Antoine Jacquet <royale@zerezo.com>
11867 L:      linux-usb@vger.kernel.org
11868 L:      linux-media@vger.kernel.org
11869 T:      git git://linuxtv.org/media_tree.git
11870 W:      http://royale.zerezo.com/zr364xx/
11871 S:      Maintained
11872 F:      Documentation/video4linux/zr364xx.txt
11873 F:      drivers/media/usb/zr364xx/
11874
11875 ULPI BUS
11876 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11877 L:      linux-usb@vger.kernel.org
11878 S:      Maintained
11879 F:      drivers/usb/common/ulpi.c
11880 F:      include/linux/ulpi/
11881
11882 USER-MODE LINUX (UML)
11883 M:      Jeff Dike <jdike@addtoit.com>
11884 M:      Richard Weinberger <richard@nod.at>
11885 L:      user-mode-linux-devel@lists.sourceforge.net
11886 L:      user-mode-linux-user@lists.sourceforge.net
11887 W:      http://user-mode-linux.sourceforge.net
11888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11889 S:      Maintained
11890 F:      Documentation/virtual/uml/
11891 F:      arch/um/
11892 F:      arch/x86/um/
11893 F:      fs/hostfs/
11894 F:      fs/hppfs/
11895
11896 USERSPACE I/O (UIO)
11897 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11898 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11899 S:      Maintained
11900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11901 F:      Documentation/DocBook/uio-howto.tmpl
11902 F:      drivers/uio/
11903 F:      include/linux/uio*.h
11904
11905 UTIL-LINUX PACKAGE
11906 M:      Karel Zak <kzak@redhat.com>
11907 L:      util-linux@vger.kernel.org
11908 W:      http://en.wikipedia.org/wiki/Util-linux
11909 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11910 S:      Maintained
11911
11912 UVESAFB DRIVER
11913 M:      Michal Januszewski <spock@gentoo.org>
11914 L:      linux-fbdev@vger.kernel.org
11915 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11916 S:      Maintained
11917 F:      Documentation/fb/uvesafb.txt
11918 F:      drivers/video/fbdev/uvesafb.*
11919
11920 VF610 NAND DRIVER
11921 M:      Stefan Agner <stefan@agner.ch>
11922 L:      linux-mtd@lists.infradead.org
11923 S:      Supported
11924 F:      drivers/mtd/nand/vf610_nfc.c
11925
11926 VFAT/FAT/MSDOS FILESYSTEM
11927 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11928 S:      Maintained
11929 F:      Documentation/filesystems/vfat.txt
11930 F:      fs/fat/
11931
11932 VFIO DRIVER
11933 M:      Alex Williamson <alex.williamson@redhat.com>
11934 L:      kvm@vger.kernel.org
11935 T:      git git://github.com/awilliam/linux-vfio.git
11936 S:      Maintained
11937 F:      Documentation/vfio.txt
11938 F:      drivers/vfio/
11939 F:      include/linux/vfio.h
11940 F:      include/uapi/linux/vfio.h
11941
11942 VFIO PLATFORM DRIVER
11943 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11944 L:      kvm@vger.kernel.org
11945 S:      Maintained
11946 F:      drivers/vfio/platform/
11947
11948 VIDEOBUF2 FRAMEWORK
11949 M:      Pawel Osciak <pawel@osciak.com>
11950 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11951 M:      Kyungmin Park <kyungmin.park@samsung.com>
11952 L:      linux-media@vger.kernel.org
11953 S:      Maintained
11954 F:      drivers/media/v4l2-core/videobuf2-*
11955 F:      include/media/videobuf2-*
11956
11957 VIRTUAL SERIO DEVICE DRIVER
11958 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11959 S:      Maintained
11960 F:      drivers/input/serio/userio.c
11961 F:      include/uapi/linux/userio.h
11962
11963 VIRTIO CONSOLE DRIVER
11964 M:      Amit Shah <amit.shah@redhat.com>
11965 L:      virtualization@lists.linux-foundation.org
11966 S:      Maintained
11967 F:      drivers/char/virtio_console.c
11968 F:      include/linux/virtio_console.h
11969 F:      include/uapi/linux/virtio_console.h
11970
11971 VIRTIO CORE, NET AND BLOCK DRIVERS
11972 M:      "Michael S. Tsirkin" <mst@redhat.com>
11973 L:      virtualization@lists.linux-foundation.org
11974 S:      Maintained
11975 F:      drivers/virtio/
11976 F:      tools/virtio/
11977 F:      drivers/net/virtio_net.c
11978 F:      drivers/block/virtio_blk.c
11979 F:      include/linux/virtio_*.h
11980 F:      include/uapi/linux/virtio_*.h
11981
11982 VIRTIO DRIVERS FOR S390
11983 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11984 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11985 L:      linux-s390@vger.kernel.org
11986 L:      virtualization@lists.linux-foundation.org
11987 L:      kvm@vger.kernel.org
11988 S:      Supported
11989 F:      drivers/s390/virtio/
11990
11991 VIRTIO GPU DRIVER
11992 M:      David Airlie <airlied@linux.ie>
11993 M:      Gerd Hoffmann <kraxel@redhat.com>
11994 L:      dri-devel@lists.freedesktop.org
11995 L:      virtualization@lists.linux-foundation.org
11996 S:      Maintained
11997 F:      drivers/gpu/drm/virtio/
11998 F:      include/uapi/linux/virtio_gpu.h
11999
12000 VIRTIO HOST (VHOST)
12001 M:      "Michael S. Tsirkin" <mst@redhat.com>
12002 L:      kvm@vger.kernel.org
12003 L:      virtualization@lists.linux-foundation.org
12004 L:      netdev@vger.kernel.org
12005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12006 S:      Maintained
12007 F:      drivers/vhost/
12008 F:      include/uapi/linux/vhost.h
12009
12010 VIRTIO INPUT DRIVER
12011 M:      Gerd Hoffmann <kraxel@redhat.com>
12012 S:      Maintained
12013 F:      drivers/virtio/virtio_input.c
12014 F:      include/uapi/linux/virtio_input.h
12015
12016 VIA RHINE NETWORK DRIVER
12017 S:      Orphan
12018 F:      drivers/net/ethernet/via/via-rhine.c
12019
12020 VIA SD/MMC CARD CONTROLLER DRIVER
12021 M:      Bruce Chang <brucechang@via.com.tw>
12022 M:      Harald Welte <HaraldWelte@viatech.com>
12023 S:      Maintained
12024 F:      drivers/mmc/host/via-sdmmc.c
12025
12026 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12027 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12028 L:      linux-fbdev@vger.kernel.org
12029 S:      Maintained
12030 F:      include/linux/via-core.h
12031 F:      include/linux/via-gpio.h
12032 F:      include/linux/via_i2c.h
12033 F:      drivers/video/fbdev/via/
12034
12035 VIA VELOCITY NETWORK DRIVER
12036 M:      Francois Romieu <romieu@fr.zoreil.com>
12037 L:      netdev@vger.kernel.org
12038 S:      Maintained
12039 F:      drivers/net/ethernet/via/via-velocity.*
12040
12041 VIRT LIB
12042 M:      Alex Williamson <alex.williamson@redhat.com>
12043 M:      Paolo Bonzini <pbonzini@redhat.com>
12044 L:      kvm@vger.kernel.org
12045 S:      Supported
12046 F:      virt/lib/
12047
12048 VIVID VIRTUAL VIDEO DRIVER
12049 M:      Hans Verkuil <hverkuil@xs4all.nl>
12050 L:      linux-media@vger.kernel.org
12051 T:      git git://linuxtv.org/media_tree.git
12052 W:      https://linuxtv.org
12053 S:      Maintained
12054 F:      drivers/media/platform/vivid/*
12055
12056 VLAN (802.1Q)
12057 M:      Patrick McHardy <kaber@trash.net>
12058 L:      netdev@vger.kernel.org
12059 S:      Maintained
12060 F:      drivers/net/macvlan.c
12061 F:      include/linux/if_*vlan.h
12062 F:      net/8021q/
12063
12064 VLYNQ BUS
12065 M:      Florian Fainelli <florian@openwrt.org>
12066 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12067 S:      Maintained
12068 F:      drivers/vlynq/vlynq.c
12069 F:      include/linux/vlynq.h
12070
12071 VME SUBSYSTEM
12072 M:      Martyn Welch <martyn@welchs.me.uk>
12073 M:      Manohar Vanga <manohar.vanga@gmail.com>
12074 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12075 L:      devel@driverdev.osuosl.org
12076 S:      Maintained
12077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12078 F:      Documentation/vme_api.txt
12079 F:      drivers/staging/vme/
12080 F:      drivers/vme/
12081 F:      include/linux/vme*
12082
12083 VMWARE HYPERVISOR INTERFACE
12084 M:      Alok Kataria <akataria@vmware.com>
12085 L:      virtualization@lists.linux-foundation.org
12086 S:      Supported
12087 F:      arch/x86/kernel/cpu/vmware.c
12088
12089 VMWARE BALLOON DRIVER
12090 M:      Xavier Deguillard <xdeguillard@vmware.com>
12091 M:      Philip Moltmann <moltmann@vmware.com>
12092 M:      "VMware, Inc." <pv-drivers@vmware.com>
12093 L:      linux-kernel@vger.kernel.org
12094 S:      Maintained
12095 F:      drivers/misc/vmw_balloon.c
12096
12097 VMWARE VMMOUSE SUBDRIVER
12098 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12099 M:      "VMware, Inc." <pv-drivers@vmware.com>
12100 L:      linux-input@vger.kernel.org
12101 S:      Maintained
12102 F:      drivers/input/mouse/vmmouse.c
12103 F:      drivers/input/mouse/vmmouse.h
12104
12105 VMWARE VMXNET3 ETHERNET DRIVER
12106 M:      Shrikrishna Khare <skhare@vmware.com>
12107 M:      "VMware, Inc." <pv-drivers@vmware.com>
12108 L:      netdev@vger.kernel.org
12109 S:      Maintained
12110 F:      drivers/net/vmxnet3/
12111
12112 VMware PVSCSI driver
12113 M:      Arvind Kumar <arvindkumar@vmware.com>
12114 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12115 L:      linux-scsi@vger.kernel.org
12116 S:      Maintained
12117 F:      drivers/scsi/vmw_pvscsi.c
12118 F:      drivers/scsi/vmw_pvscsi.h
12119
12120 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12121 M:      Liam Girdwood <lgirdwood@gmail.com>
12122 M:      Mark Brown <broonie@kernel.org>
12123 L:      linux-kernel@vger.kernel.org
12124 W:      http://www.slimlogic.co.uk/?p=48
12125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12126 S:      Supported
12127 F:      drivers/regulator/
12128 F:      include/linux/regulator/
12129
12130 VRF
12131 M:      David Ahern <dsa@cumulusnetworks.com>
12132 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
12133 L:      netdev@vger.kernel.org
12134 S:      Maintained
12135 F:      drivers/net/vrf.c
12136 F:      Documentation/networking/vrf.txt
12137
12138 VT1211 HARDWARE MONITOR DRIVER
12139 M:      Juerg Haefliger <juergh@gmail.com>
12140 L:      linux-hwmon@vger.kernel.org
12141 S:      Maintained
12142 F:      Documentation/hwmon/vt1211
12143 F:      drivers/hwmon/vt1211.c
12144
12145 VT8231 HARDWARE MONITOR DRIVER
12146 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
12147 L:      linux-hwmon@vger.kernel.org
12148 S:      Maintained
12149 F:      drivers/hwmon/vt8231.c
12150
12151 VUB300 USB to SDIO/SD/MMC bridge chip
12152 M:      Tony Olech <tony.olech@elandigitalsystems.com>
12153 L:      linux-mmc@vger.kernel.org
12154 L:      linux-usb@vger.kernel.org
12155 S:      Supported
12156 F:      drivers/mmc/host/vub300.c
12157
12158 W1 DALLAS'S 1-WIRE BUS
12159 M:      Evgeniy Polyakov <zbr@ioremap.net>
12160 S:      Maintained
12161 F:      Documentation/w1/
12162 F:      drivers/w1/
12163
12164 W83791D HARDWARE MONITORING DRIVER
12165 M:      Marc Hulsman <m.hulsman@tudelft.nl>
12166 L:      linux-hwmon@vger.kernel.org
12167 S:      Maintained
12168 F:      Documentation/hwmon/w83791d
12169 F:      drivers/hwmon/w83791d.c
12170
12171 W83793 HARDWARE MONITORING DRIVER
12172 M:      Rudolf Marek <r.marek@assembler.cz>
12173 L:      linux-hwmon@vger.kernel.org
12174 S:      Maintained
12175 F:      Documentation/hwmon/w83793
12176 F:      drivers/hwmon/w83793.c
12177
12178 W83795 HARDWARE MONITORING DRIVER
12179 M:      Jean Delvare <jdelvare@suse.com>
12180 L:      linux-hwmon@vger.kernel.org
12181 S:      Maintained
12182 F:      drivers/hwmon/w83795.c
12183
12184 W83L51xD SD/MMC CARD INTERFACE DRIVER
12185 M:      Pierre Ossman <pierre@ossman.eu>
12186 S:      Maintained
12187 F:      drivers/mmc/host/wbsd.*
12188
12189 WACOM PROTOCOL 4 SERIAL TABLETS
12190 M:      Julian Squires <julian@cipht.net>
12191 M:      Hans de Goede <hdegoede@redhat.com>
12192 L:      linux-input@vger.kernel.org
12193 S:      Maintained
12194 F:      drivers/input/tablet/wacom_serial4.c
12195
12196 WATCHDOG DEVICE DRIVERS
12197 M:      Wim Van Sebroeck <wim@iguana.be>
12198 R:      Guenter Roeck <linux@roeck-us.net>
12199 L:      linux-watchdog@vger.kernel.org
12200 W:      http://www.linux-watchdog.org/
12201 T:      git git://www.linux-watchdog.org/linux-watchdog.git
12202 S:      Maintained
12203 F:      Documentation/watchdog/
12204 F:      drivers/watchdog/
12205 F:      include/linux/watchdog.h
12206 F:      include/uapi/linux/watchdog.h
12207
12208 WD7000 SCSI DRIVER
12209 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
12210 L:      linux-scsi@vger.kernel.org
12211 S:      Maintained
12212 F:      drivers/scsi/wd7000.c
12213
12214 WIIMOTE HID DRIVER
12215 M:      David Herrmann <dh.herrmann@googlemail.com>
12216 L:      linux-input@vger.kernel.org
12217 S:      Maintained
12218 F:      drivers/hid/hid-wiimote*
12219
12220 WINBOND CIR DRIVER
12221 M:      David Härdeman <david@hardeman.nu>
12222 S:      Maintained
12223 F:      drivers/media/rc/winbond-cir.c
12224
12225 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
12226 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12227 L:      linux-watchdog@vger.kernel.org
12228 S:      Maintained
12229 F:      drivers/watchdog/ebc-c384_wdt.c
12230
12231 WINSYSTEMS WS16C48 GPIO DRIVER
12232 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12233 L:      linux-gpio@vger.kernel.org
12234 S:      Maintained
12235 F:      drivers/gpio/gpio-ws16c48.c
12236
12237 WIMAX STACK
12238 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
12239 M:      linux-wimax@intel.com
12240 L:      wimax@linuxwimax.org (subscribers-only)
12241 S:      Supported
12242 W:      http://linuxwimax.org
12243 F:      Documentation/wimax/README.wimax
12244 F:      include/linux/wimax/debug.h
12245 F:      include/net/wimax.h
12246 F:      include/uapi/linux/wimax.h
12247 F:      net/wimax/
12248
12249 WISTRON LAPTOP BUTTON DRIVER
12250 M:      Miloslav Trmac <mitr@volny.cz>
12251 S:      Maintained
12252 F:      drivers/input/misc/wistron_btns.c
12253
12254 WL3501 WIRELESS PCMCIA CARD DRIVER
12255 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
12256 L:      linux-wireless@vger.kernel.org
12257 W:      http://oops.ghostprotocols.net:81/blog
12258 S:      Maintained
12259 F:      drivers/net/wireless/wl3501*
12260
12261 WOLFSON MICROELECTRONICS DRIVERS
12262 L:      patches@opensource.wolfsonmicro.com
12263 T:      git https://github.com/CirrusLogic/linux-drivers.git
12264 W:      https://github.com/CirrusLogic/linux-drivers/wiki
12265 S:      Supported
12266 F:      Documentation/hwmon/wm83??
12267 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
12268 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
12269 F:      Documentation/devicetree/bindings/mfd/arizona.txt
12270 F:      arch/arm/mach-s3c64xx/mach-crag6410*
12271 F:      drivers/clk/clk-wm83*.c
12272 F:      drivers/extcon/extcon-arizona.c
12273 F:      drivers/leds/leds-wm83*.c
12274 F:      drivers/gpio/gpio-*wm*.c
12275 F:      drivers/gpio/gpio-arizona.c
12276 F:      drivers/hwmon/wm83??-hwmon.c
12277 F:      drivers/input/misc/wm831x-on.c
12278 F:      drivers/input/touchscreen/wm831x-ts.c
12279 F:      drivers/input/touchscreen/wm97*.c
12280 F:      drivers/mfd/arizona*
12281 F:      drivers/mfd/wm*.c
12282 F:      drivers/mfd/cs47l24*
12283 F:      drivers/power/wm83*.c
12284 F:      drivers/rtc/rtc-wm83*.c
12285 F:      drivers/regulator/wm8*.c
12286 F:      drivers/video/backlight/wm83*_bl.c
12287 F:      drivers/watchdog/wm83*_wdt.c
12288 F:      include/linux/mfd/arizona/
12289 F:      include/linux/mfd/wm831x/
12290 F:      include/linux/mfd/wm8350/
12291 F:      include/linux/mfd/wm8400*
12292 F:      include/linux/wm97xx.h
12293 F:      include/sound/wm????.h
12294 F:      sound/soc/codecs/arizona.?
12295 F:      sound/soc/codecs/wm*
12296 F:      sound/soc/codecs/cs47l24*
12297
12298 WORKQUEUE
12299 M:      Tejun Heo <tj@kernel.org>
12300 R:      Lai Jiangshan <jiangshanlai@gmail.com>
12301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
12302 S:      Maintained
12303 F:      include/linux/workqueue.h
12304 F:      kernel/workqueue.c
12305 F:      Documentation/workqueue.txt
12306
12307 X.25 NETWORK LAYER
12308 M:      Andrew Hendry <andrew.hendry@gmail.com>
12309 L:      linux-x25@vger.kernel.org
12310 S:      Odd Fixes
12311 F:      Documentation/networking/x25*
12312 F:      include/net/x25*
12313 F:      net/x25/
12314
12315 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12316 M:      Thomas Gleixner <tglx@linutronix.de>
12317 M:      Ingo Molnar <mingo@redhat.com>
12318 M:      "H. Peter Anvin" <hpa@zytor.com>
12319 M:      x86@kernel.org
12320 L:      linux-kernel@vger.kernel.org
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12322 S:      Maintained
12323 F:      Documentation/x86/
12324 F:      arch/x86/
12325
12326 X86 PLATFORM DRIVERS
12327 M:      Darren Hart <dvhart@infradead.org>
12328 L:      platform-driver-x86@vger.kernel.org
12329 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12330 S:      Maintained
12331 F:      drivers/platform/x86/
12332 F:      drivers/platform/olpc/
12333
12334 X86 MCE INFRASTRUCTURE
12335 M:      Tony Luck <tony.luck@intel.com>
12336 M:      Borislav Petkov <bp@alien8.de>
12337 L:      linux-edac@vger.kernel.org
12338 S:      Maintained
12339 F:      arch/x86/kernel/cpu/mcheck/*
12340
12341 X86 MICROCODE UPDATE SUPPORT
12342 M:      Borislav Petkov <bp@alien8.de>
12343 S:      Maintained
12344 F:      arch/x86/kernel/cpu/microcode/*
12345
12346 X86 VDSO
12347 M:      Andy Lutomirski <luto@amacapital.net>
12348 L:      linux-kernel@vger.kernel.org
12349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12350 S:      Maintained
12351 F:      arch/x86/entry/vdso/
12352
12353 XC2028/3028 TUNER DRIVER
12354 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12355 L:      linux-media@vger.kernel.org
12356 W:      https://linuxtv.org
12357 T:      git git://linuxtv.org/media_tree.git
12358 S:      Maintained
12359 F:      drivers/media/tuners/tuner-xc2028.*
12360
12361 XEN HYPERVISOR INTERFACE
12362 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12363 M:      David Vrabel <david.vrabel@citrix.com>
12364 M:      Juergen Gross <jgross@suse.com>
12365 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12367 S:      Supported
12368 F:      arch/x86/xen/
12369 F:      drivers/*/xen-*front.c
12370 F:      drivers/xen/
12371 F:      arch/x86/include/asm/xen/
12372 F:      include/xen/
12373 F:      include/uapi/xen/
12374
12375 XEN HYPERVISOR ARM
12376 M:      Stefano Stabellini <sstabellini@kernel.org>
12377 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12378 S:      Maintained
12379 F:      arch/arm/xen/
12380 F:      arch/arm/include/asm/xen/
12381
12382 XEN HYPERVISOR ARM64
12383 M:      Stefano Stabellini <sstabellini@kernel.org>
12384 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12385 S:      Maintained
12386 F:      arch/arm64/xen/
12387 F:      arch/arm64/include/asm/xen/
12388
12389 XEN NETWORK BACKEND DRIVER
12390 M:      Wei Liu <wei.liu2@citrix.com>
12391 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12392 L:      netdev@vger.kernel.org
12393 S:      Supported
12394 F:      drivers/net/xen-netback/*
12395
12396 XEN PCI SUBSYSTEM
12397 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12398 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12399 S:      Supported
12400 F:      arch/x86/pci/*xen*
12401 F:      drivers/pci/*xen*
12402
12403 XEN BLOCK SUBSYSTEM
12404 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12405 M:      Roger Pau Monné <roger.pau@citrix.com>
12406 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12407 S:      Supported
12408 F:      drivers/block/xen-blkback/*
12409 F:      drivers/block/xen*
12410
12411 XEN PVSCSI DRIVERS
12412 M:      Juergen Gross <jgross@suse.com>
12413 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12414 L:      linux-scsi@vger.kernel.org
12415 S:      Supported
12416 F:      drivers/scsi/xen-scsifront.c
12417 F:      drivers/xen/xen-scsiback.c
12418 F:      include/xen/interface/io/vscsiif.h
12419
12420 XEN SWIOTLB SUBSYSTEM
12421 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12422 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12423 S:      Supported
12424 F:      arch/x86/xen/*swiotlb*
12425 F:      drivers/xen/*swiotlb*
12426
12427 XFS FILESYSTEM
12428 P:      Silicon Graphics Inc
12429 M:      Dave Chinner <david@fromorbit.com>
12430 M:      xfs@oss.sgi.com
12431 L:      xfs@oss.sgi.com
12432 W:      http://oss.sgi.com/projects/xfs
12433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12434 S:      Supported
12435 F:      Documentation/filesystems/xfs.txt
12436 F:      fs/xfs/
12437
12438 XILINX AXI ETHERNET DRIVER
12439 M:      Anirudha Sarangi <anirudh@xilinx.com>
12440 M:      John Linn <John.Linn@xilinx.com>
12441 S:      Maintained
12442 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12443
12444 XILINX UARTLITE SERIAL DRIVER
12445 M:      Peter Korsgaard <jacmet@sunsite.dk>
12446 L:      linux-serial@vger.kernel.org
12447 S:      Maintained
12448 F:      drivers/tty/serial/uartlite.c
12449
12450 XILINX VIDEO IP CORES
12451 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12452 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12453 L:      linux-media@vger.kernel.org
12454 T:      git git://linuxtv.org/media_tree.git
12455 S:      Supported
12456 F:      Documentation/devicetree/bindings/media/xilinx/
12457 F:      drivers/media/platform/xilinx/
12458 F:      include/uapi/linux/xilinx-v4l2-controls.h
12459
12460 XILLYBUS DRIVER
12461 M:      Eli Billauer <eli.billauer@gmail.com>
12462 L:      linux-kernel@vger.kernel.org
12463 S:      Supported
12464 F:      drivers/char/xillybus/
12465
12466 XTENSA XTFPGA PLATFORM SUPPORT
12467 M:      Max Filippov <jcmvbkbc@gmail.com>
12468 L:      linux-xtensa@linux-xtensa.org
12469 S:      Maintained
12470 F:      drivers/spi/spi-xtensa-xtfpga.c
12471 F:      sound/soc/xtensa/xtfpga-i2s.c
12472
12473 YAM DRIVER FOR AX.25
12474 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12475 L:      linux-hams@vger.kernel.org
12476 S:      Maintained
12477 F:      drivers/net/hamradio/yam*
12478 F:      include/linux/yam.h
12479
12480 YEALINK PHONE DRIVER
12481 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12482 L:      usbb2k-api-dev@nongnu.org
12483 S:      Maintained
12484 F:      Documentation/input/yealink.txt
12485 F:      drivers/input/misc/yealink.*
12486
12487 Z8530 DRIVER FOR AX.25
12488 M:      Joerg Reuter <jreuter@yaina.de>
12489 W:      http://yaina.de/jreuter/
12490 W:      http://www.qsl.net/dl1bke/
12491 L:      linux-hams@vger.kernel.org
12492 S:      Maintained
12493 F:      Documentation/networking/z8530drv.txt
12494 F:      drivers/net/hamradio/*scc.c
12495 F:      drivers/net/hamradio/z8530.h
12496
12497 ZBUD COMPRESSED PAGE ALLOCATOR
12498 M:      Seth Jennings <sjenning@redhat.com>
12499 L:      linux-mm@kvack.org
12500 S:      Maintained
12501 F:      mm/zbud.c
12502 F:      include/linux/zbud.h
12503
12504 ZD1211RW WIRELESS DRIVER
12505 M:      Daniel Drake <dsd@gentoo.org>
12506 M:      Ulrich Kunitz <kune@deine-taler.de>
12507 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12508 L:      linux-wireless@vger.kernel.org
12509 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12510 S:      Maintained
12511 F:      drivers/net/wireless/zydas/zd1211rw/
12512
12513 ZPOOL COMPRESSED PAGE STORAGE API
12514 M:      Dan Streetman <ddstreet@ieee.org>
12515 L:      linux-mm@kvack.org
12516 S:      Maintained
12517 F:      mm/zpool.c
12518 F:      include/linux/zpool.h
12519
12520 ZR36067 VIDEO FOR LINUX DRIVER
12521 L:      mjpeg-users@lists.sourceforge.net
12522 L:      linux-media@vger.kernel.org
12523 W:      http://mjpeg.sourceforge.net/driver-zoran/
12524 T:      hg https://linuxtv.org/hg/v4l-dvb
12525 S:      Odd Fixes
12526 F:      drivers/media/pci/zoran/
12527
12528 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12529 M:      Minchan Kim <minchan@kernel.org>
12530 M:      Nitin Gupta <ngupta@vflare.org>
12531 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12532 L:      linux-kernel@vger.kernel.org
12533 S:      Maintained
12534 F:      drivers/block/zram/
12535 F:      Documentation/blockdev/zram.txt
12536
12537 ZS DECSTATION Z85C30 SERIAL DRIVER
12538 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12539 S:      Maintained
12540 F:      drivers/tty/serial/zs.*
12541
12542 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12543 M:      Minchan Kim <minchan@kernel.org>
12544 M:      Nitin Gupta <ngupta@vflare.org>
12545 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12546 L:      linux-mm@kvack.org
12547 S:      Maintained
12548 F:      mm/zsmalloc.c
12549 F:      include/linux/zsmalloc.h
12550 F:      Documentation/vm/zsmalloc.txt
12551
12552 ZSWAP COMPRESSED SWAP CACHING
12553 M:      Seth Jennings <sjenning@redhat.com>
12554 L:      linux-mm@kvack.org
12555 S:      Maintained
12556 F:      mm/zswap.c
12557
12558 THE REST
12559 M:      Linus Torvalds <torvalds@linux-foundation.org>
12560 L:      linux-kernel@vger.kernel.org
12561 Q:      http://patchwork.kernel.org/project/LKML/list/
12562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12563 S:      Buried alive in reporters
12564 F:      *
12565 F:      */