Merge tag 'driver-core-4.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[platform/kernel/linux-rpi.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <aar@pengutronix.de>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 S:      Maintained
179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
180 F:      drivers/tty/serial/8250*
181 F:      include/linux/serial_8250.h
182
183 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
184 L:      netdev@vger.kernel.org
185 S:      Orphan / Obsolete
186 F:      drivers/net/ethernet/8390/
187
188 9P FILE SYSTEM
189 M:      Eric Van Hensbergen <ericvh@gmail.com>
190 M:      Ron Minnich <rminnich@sandia.gov>
191 M:      Latchesar Ionkov <lucho@ionkov.net>
192 L:      v9fs-developer@lists.sourceforge.net
193 W:      http://swik.net/v9fs
194 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
196 S:      Maintained
197 F:      Documentation/filesystems/9p.txt
198 F:      fs/9p/
199 F:      net/9p/
200 F:      include/net/9p/
201 F:      include/uapi/linux/virtio_9p.h
202 F:      include/trace/events/9p.h
203
204
205 A8293 MEDIA DRIVER
206 M:      Antti Palosaari <crope@iki.fi>
207 L:      linux-media@vger.kernel.org
208 W:      https://linuxtv.org
209 W:      http://palosaari.fi/linux/
210 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
211 T:      git git://linuxtv.org/anttip/media_tree.git
212 S:      Maintained
213 F:      drivers/media/dvb-frontends/a8293*
214
215 AACRAID SCSI RAID DRIVER
216 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
217 L:      linux-scsi@vger.kernel.org
218 W:      http://www.adaptec.com/
219 S:      Supported
220 F:      Documentation/scsi/aacraid.txt
221 F:      drivers/scsi/aacraid/
222
223 ABI/API
224 L:      linux-api@vger.kernel.org
225 F:      include/linux/syscalls.h
226 F:      kernel/sys_ni.c
227
228 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
229 M:      Hans de Goede <hdegoede@redhat.com>
230 L:      linux-hwmon@vger.kernel.org
231 S:      Maintained
232 F:      drivers/hwmon/abituguru.c
233
234 ABIT UGURU 3 HARDWARE MONITOR DRIVER
235 M:      Alistair John Strachan <alistair@devzero.co.uk>
236 L:      linux-hwmon@vger.kernel.org
237 S:      Maintained
238 F:      drivers/hwmon/abituguru3.c
239
240 ACCES 104-DIO-48E GPIO DRIVER
241 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
242 L:      linux-gpio@vger.kernel.org
243 S:      Maintained
244 F:      drivers/gpio/gpio-104-dio-48e.c
245
246 ACCES 104-IDI-48 GPIO DRIVER
247 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
248 L:      linux-gpio@vger.kernel.org
249 S:      Maintained
250 F:      drivers/gpio/gpio-104-idi-48.c
251
252 ACCES 104-IDIO-16 GPIO DRIVER
253 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
254 L:      linux-gpio@vger.kernel.org
255 S:      Maintained
256 F:      drivers/gpio/gpio-104-idio-16.c
257
258 ACENIC DRIVER
259 M:      Jes Sorensen <jes@trained-monkey.org>
260 L:      linux-acenic@sunsite.dk
261 S:      Maintained
262 F:      drivers/net/ethernet/alteon/acenic*
263
264 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
265 M:      Peter Feuerer <peter@piie.net>
266 L:      platform-driver-x86@vger.kernel.org
267 W:      http://piie.net/?section=acerhdf
268 S:      Maintained
269 F:      drivers/platform/x86/acerhdf.c
270
271 ACER WMI LAPTOP EXTRAS
272 M:      "Lee, Chun-Yi" <jlee@suse.com>
273 L:      platform-driver-x86@vger.kernel.org
274 S:      Maintained
275 F:      drivers/platform/x86/acer-wmi.c
276
277 ACPI
278 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
279 M:      Len Brown <lenb@kernel.org>
280 L:      linux-acpi@vger.kernel.org
281 W:      https://01.org/linux-acpi
282 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
284 S:      Supported
285 F:      drivers/acpi/
286 F:      drivers/pnp/pnpacpi/
287 F:      include/linux/acpi.h
288 F:      include/acpi/
289 F:      Documentation/acpi/
290 F:      Documentation/ABI/testing/sysfs-bus-acpi
291 F:      drivers/pci/*acpi*
292 F:      drivers/pci/*/*acpi*
293 F:      drivers/pci/*/*/*acpi*
294 F:      tools/power/acpi/
295
296 ACPI COMPONENT ARCHITECTURE (ACPICA)
297 M:      Robert Moore <robert.moore@intel.com>
298 M:      Lv Zheng <lv.zheng@intel.com>
299 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
300 L:      linux-acpi@vger.kernel.org
301 L:      devel@acpica.org
302 W:      https://acpica.org/
303 W:      https://github.com/acpica/acpica/
304 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
306 S:      Supported
307 F:      drivers/acpi/acpica/
308 F:      include/acpi/
309 F:      tools/power/acpi/
310
311 ACPI FAN DRIVER
312 M:      Zhang Rui <rui.zhang@intel.com>
313 L:      linux-acpi@vger.kernel.org
314 W:      https://01.org/linux-acpi
315 S:      Supported
316 F:      drivers/acpi/fan.c
317
318 ACPI THERMAL DRIVER
319 M:      Zhang Rui <rui.zhang@intel.com>
320 L:      linux-acpi@vger.kernel.org
321 W:      https://01.org/linux-acpi
322 S:      Supported
323 F:      drivers/acpi/*thermal*
324
325 ACPI VIDEO DRIVER
326 M:      Zhang Rui <rui.zhang@intel.com>
327 L:      linux-acpi@vger.kernel.org
328 W:      https://01.org/linux-acpi
329 S:      Supported
330 F:      drivers/acpi/acpi_video.c
331
332 ACPI WMI DRIVER
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Orphan
335 F:      drivers/platform/x86/wmi.c
336
337 AD1889 ALSA SOUND DRIVER
338 M:      Thibaut Varene <T-Bone@parisc-linux.org>
339 W:      http://wiki.parisc-linux.org/AD1889
340 L:      linux-parisc@vger.kernel.org
341 S:      Maintained
342 F:      sound/pci/ad1889.*
343
344 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
345 M:      Michael Hennerich <michael.hennerich@analog.com>
346 W:      http://wiki.analog.com/AD5254
347 W:      http://ez.analog.com/community/linux-device-drivers
348 S:      Supported
349 F:      drivers/misc/ad525x_dpot.c
350
351 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
352 M:      Michael Hennerich <michael.hennerich@analog.com>
353 W:      http://wiki.analog.com/AD5398
354 W:      http://ez.analog.com/community/linux-device-drivers
355 S:      Supported
356 F:      drivers/regulator/ad5398.c
357
358 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
359 M:      Michael Hennerich <michael.hennerich@analog.com>
360 W:      http://wiki.analog.com/AD7142
361 W:      http://ez.analog.com/community/linux-device-drivers
362 S:      Supported
363 F:      drivers/input/misc/ad714x.c
364
365 AD7877 TOUCHSCREEN DRIVER
366 M:      Michael Hennerich <michael.hennerich@analog.com>
367 W:      http://wiki.analog.com/AD7877
368 W:      http://ez.analog.com/community/linux-device-drivers
369 S:      Supported
370 F:      drivers/input/touchscreen/ad7877.c
371
372 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
373 M:      Michael Hennerich <michael.hennerich@analog.com>
374 W:      http://wiki.analog.com/AD7879
375 W:      http://ez.analog.com/community/linux-device-drivers
376 S:      Supported
377 F:      drivers/input/touchscreen/ad7879.c
378
379 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
380 M:      Jiri Kosina <jikos@kernel.org>
381 S:      Maintained
382
383 ADF7242 IEEE 802.15.4 RADIO DRIVER
384 M:      Michael Hennerich <michael.hennerich@analog.com>
385 W:      https://wiki.analog.com/ADF7242
386 W:      http://ez.analog.com/community/linux-device-drivers
387 L:      linux-wpan@vger.kernel.org
388 S:      Supported
389 F:      drivers/net/ieee802154/adf7242.c
390 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
391
392 ADM1025 HARDWARE MONITOR DRIVER
393 M:      Jean Delvare <jdelvare@suse.com>
394 L:      linux-hwmon@vger.kernel.org
395 S:      Maintained
396 F:      Documentation/hwmon/adm1025
397 F:      drivers/hwmon/adm1025.c
398
399 ADM1029 HARDWARE MONITOR DRIVER
400 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
401 L:      linux-hwmon@vger.kernel.org
402 S:      Maintained
403 F:      drivers/hwmon/adm1029.c
404
405 ADM8211 WIRELESS DRIVER
406 L:      linux-wireless@vger.kernel.org
407 W:      http://wireless.kernel.org/
408 S:      Orphan
409 F:      drivers/net/wireless/admtek/adm8211.*
410
411 ADP1653 FLASH CONTROLLER DRIVER
412 M:      Sakari Ailus <sakari.ailus@iki.fi>
413 L:      linux-media@vger.kernel.org
414 S:      Maintained
415 F:      drivers/media/i2c/adp1653.c
416 F:      include/media/i2c/adp1653.h
417
418 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
419 M:      Michael Hennerich <michael.hennerich@analog.com>
420 W:      http://wiki.analog.com/ADP5520
421 W:      http://ez.analog.com/community/linux-device-drivers
422 S:      Supported
423 F:      drivers/mfd/adp5520.c
424 F:      drivers/video/backlight/adp5520_bl.c
425 F:      drivers/leds/leds-adp5520.c
426 F:      drivers/gpio/gpio-adp5520.c
427 F:      drivers/input/keyboard/adp5520-keys.c
428
429 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
430 M:      Michael Hennerich <michael.hennerich@analog.com>
431 W:      http://wiki.analog.com/ADP5588
432 W:      http://ez.analog.com/community/linux-device-drivers
433 S:      Supported
434 F:      drivers/input/keyboard/adp5588-keys.c
435 F:      drivers/gpio/gpio-adp5588.c
436
437 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
438 M:      Michael Hennerich <michael.hennerich@analog.com>
439 W:      http://wiki.analog.com/ADP8860
440 W:      http://ez.analog.com/community/linux-device-drivers
441 S:      Supported
442 F:      drivers/video/backlight/adp8860_bl.c
443
444 ADS1015 HARDWARE MONITOR DRIVER
445 M:      Dirk Eibach <eibach@gdsys.de>
446 L:      linux-hwmon@vger.kernel.org
447 S:      Maintained
448 F:      Documentation/hwmon/ads1015
449 F:      drivers/hwmon/ads1015.c
450 F:      include/linux/i2c/ads1015.h
451
452 ADT746X FAN DRIVER
453 M:      Colin Leroy <colin@colino.net>
454 S:      Maintained
455 F:      drivers/macintosh/therm_adt746x.c
456
457 ADT7475 HARDWARE MONITOR DRIVER
458 M:      Jean Delvare <jdelvare@suse.com>
459 L:      linux-hwmon@vger.kernel.org
460 S:      Maintained
461 F:      Documentation/hwmon/adt7475
462 F:      drivers/hwmon/adt7475.c
463
464 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
465 M:      Michael Hennerich <michael.hennerich@analog.com>
466 W:      http://wiki.analog.com/ADXL345
467 W:      http://ez.analog.com/community/linux-device-drivers
468 S:      Supported
469 F:      drivers/input/misc/adxl34x.c
470
471 ADVANSYS SCSI DRIVER
472 M:      Matthew Wilcox <matthew@wil.cx>
473 M:      Hannes Reinecke <hare@suse.com>
474 L:      linux-scsi@vger.kernel.org
475 S:      Maintained
476 F:      Documentation/scsi/advansys.txt
477 F:      drivers/scsi/advansys.c
478
479 AEDSP16 DRIVER
480 M:      Riccardo Facchetti <fizban@tin.it>
481 S:      Maintained
482 F:      sound/oss/aedsp16.c
483
484 AF9013 MEDIA DRIVER
485 M:      Antti Palosaari <crope@iki.fi>
486 L:      linux-media@vger.kernel.org
487 W:      https://linuxtv.org
488 W:      http://palosaari.fi/linux/
489 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
490 T:      git git://linuxtv.org/anttip/media_tree.git
491 S:      Maintained
492 F:      drivers/media/dvb-frontends/af9013*
493
494 AF9033 MEDIA DRIVER
495 M:      Antti Palosaari <crope@iki.fi>
496 L:      linux-media@vger.kernel.org
497 W:      https://linuxtv.org
498 W:      http://palosaari.fi/linux/
499 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
500 T:      git git://linuxtv.org/anttip/media_tree.git
501 S:      Maintained
502 F:      drivers/media/dvb-frontends/af9033*
503
504 AFFS FILE SYSTEM
505 L:      linux-fsdevel@vger.kernel.org
506 S:      Orphan
507 F:      Documentation/filesystems/affs.txt
508 F:      fs/affs/
509
510 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
511 M:      David Howells <dhowells@redhat.com>
512 L:      linux-afs@lists.infradead.org
513 S:      Supported
514 F:      fs/afs/
515 F:      include/net/af_rxrpc.h
516 F:      net/rxrpc/af_rxrpc.c
517
518 AGPGART DRIVER
519 M:      David Airlie <airlied@linux.ie>
520 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
521 S:      Maintained
522 F:      drivers/char/agp/
523 F:      include/linux/agp*
524 F:      include/uapi/linux/agp*
525
526 AHA152X SCSI DRIVER
527 M:      "Juergen E. Fischer" <fischer@norbit.de>
528 L:      linux-scsi@vger.kernel.org
529 S:      Maintained
530 F:      drivers/scsi/aha152x*
531 F:      drivers/scsi/pcmcia/aha152x*
532
533 AIC7XXX / AIC79XX SCSI DRIVER
534 M:      Hannes Reinecke <hare@suse.com>
535 L:      linux-scsi@vger.kernel.org
536 S:      Maintained
537 F:      drivers/scsi/aic7xxx/
538
539 AIMSLAB FM RADIO RECEIVER DRIVER
540 M:      Hans Verkuil <hverkuil@xs4all.nl>
541 L:      linux-media@vger.kernel.org
542 T:      git git://linuxtv.org/media_tree.git
543 W:      https://linuxtv.org
544 S:      Maintained
545 F:      drivers/media/radio/radio-aimslab*
546
547 AIO
548 M:      Benjamin LaHaise <bcrl@kvack.org>
549 L:      linux-aio@kvack.org
550 S:      Supported
551 F:      fs/aio.c
552 F:      include/linux/*aio*.h
553
554 AIRSPY MEDIA DRIVER
555 M:      Antti Palosaari <crope@iki.fi>
556 L:      linux-media@vger.kernel.org
557 W:      https://linuxtv.org
558 W:      http://palosaari.fi/linux/
559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
560 T:      git git://linuxtv.org/anttip/media_tree.git
561 S:      Maintained
562 F:      drivers/media/usb/airspy/
563
564 ALCATEL SPEEDTOUCH USB DRIVER
565 M:      Duncan Sands <duncan.sands@free.fr>
566 L:      linux-usb@vger.kernel.org
567 W:      http://www.linux-usb.org/SpeedTouch/
568 S:      Maintained
569 F:      drivers/usb/atm/speedtch.c
570 F:      drivers/usb/atm/usbatm.c
571
572 ALCHEMY AU1XX0 MMC DRIVER
573 M:      Manuel Lauss <manuel.lauss@gmail.com>
574 S:      Maintained
575 F:      drivers/mmc/host/au1xmmc.c
576
577 ALI1563 I2C DRIVER
578 M:      Rudolf Marek <r.marek@assembler.cz>
579 L:      linux-i2c@vger.kernel.org
580 S:      Maintained
581 F:      Documentation/i2c/busses/i2c-ali1563
582 F:      drivers/i2c/busses/i2c-ali1563.c
583
584 ALLWINNER SECURITY SYSTEM
585 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
586 L:      linux-crypto@vger.kernel.org
587 S:      Maintained
588 F:      drivers/crypto/sunxi-ss/
589
590 ALPHA PORT
591 M:      Richard Henderson <rth@twiddle.net>
592 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
593 M:      Matt Turner <mattst88@gmail.com>
594 S:      Odd Fixes
595 L:      linux-alpha@vger.kernel.org
596 F:      arch/alpha/
597
598 ALTERA MAILBOX DRIVER
599 M:      Ley Foon Tan <lftan@altera.com>
600 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
601 S:      Maintained
602 F:      drivers/mailbox/mailbox-altera.c
603
604 ALTERA PIO DRIVER
605 M:      Tien Hock Loh <thloh@altera.com>
606 L:      linux-gpio@vger.kernel.org
607 S:      Maintained
608 F:      drivers/gpio/gpio-altera.c
609
610 ALTERA TRIPLE SPEED ETHERNET DRIVER
611 M:      Vince Bridgers <vbridger@opensource.altera.com>
612 L:      netdev@vger.kernel.org
613 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
614 S:      Maintained
615 F:      drivers/net/ethernet/altera/
616
617 ALTERA UART/JTAG UART SERIAL DRIVERS
618 M:      Tobias Klauser <tklauser@distanz.ch>
619 L:      linux-serial@vger.kernel.org
620 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
621 S:      Maintained
622 F:      drivers/tty/serial/altera_uart.c
623 F:      drivers/tty/serial/altera_jtaguart.c
624 F:      include/linux/altera_uart.h
625 F:      include/linux/altera_jtaguart.h
626
627 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
628 M:      Tom Lendacky <thomas.lendacky@amd.com>
629 M:      Gary Hook <gary.hook@amd.com>
630 L:      linux-crypto@vger.kernel.org
631 S:      Supported
632 F:      drivers/crypto/ccp/
633 F:      include/linux/ccp.h
634
635 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
636 M:      Huang Rui <ray.huang@amd.com>
637 L:      linux-hwmon@vger.kernel.org
638 S:      Supported
639 F:      Documentation/hwmon/fam15h_power
640 F:      drivers/hwmon/fam15h_power.c
641
642 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 S:      Orphan
645 F:      drivers/usb/gadget/udc/amd5536udc.*
646
647 AMD GEODE PROCESSOR/CHIPSET SUPPORT
648 P:      Andres Salomon <dilinger@queued.net>
649 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
650 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
651 S:      Supported
652 F:      drivers/char/hw_random/geode-rng.c
653 F:      drivers/crypto/geode*
654 F:      drivers/video/fbdev/geode/
655 F:      arch/x86/include/asm/geode.h
656
657 AMD IOMMU (AMD-VI)
658 M:      Joerg Roedel <joro@8bytes.org>
659 L:      iommu@lists.linux-foundation.org
660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
661 S:      Maintained
662 F:      drivers/iommu/amd_iommu*.[ch]
663 F:      include/linux/amd-iommu.h
664
665 AMD KFD
666 M:      Oded Gabbay <oded.gabbay@gmail.com>
667 L:      dri-devel@lists.freedesktop.org
668 T:      git git://people.freedesktop.org/~gabbayo/linux.git
669 S:      Supported
670 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
671 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
672 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
673 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
674 F:      drivers/gpu/drm/amd/amdkfd/
675 F:      drivers/gpu/drm/amd/include/cik_structs.h
676 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
677 F:      drivers/gpu/drm/amd/include/vi_structs.h
678 F:      drivers/gpu/drm/radeon/radeon_kfd.c
679 F:      drivers/gpu/drm/radeon/radeon_kfd.h
680 F:      include/uapi/linux/kfd_ioctl.h
681
682 AMD SEATTLE DEVICE TREE SUPPORT
683 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
684 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
685 M:      Tom Lendacky <thomas.lendacky@amd.com>
686 S:      Supported
687 F:      arch/arm64/boot/dts/amd/
688
689 AMD XGBE DRIVER
690 M:      Tom Lendacky <thomas.lendacky@amd.com>
691 L:      netdev@vger.kernel.org
692 S:      Supported
693 F:      drivers/net/ethernet/amd/xgbe/
694 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
695
696 AMS (Apple Motion Sensor) DRIVER
697 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
698 S:      Supported
699 F:      drivers/macintosh/ams/
700
701 ANALOG DEVICES INC AD9389B DRIVER
702 M:      Hans Verkuil <hans.verkuil@cisco.com>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 F:      drivers/media/i2c/ad9389b*
706
707 ANALOG DEVICES INC ADV7180 DRIVER
708 M:      Lars-Peter Clausen <lars@metafoo.de>
709 L:      linux-media@vger.kernel.org
710 W:      http://ez.analog.com/community/linux-device-drivers
711 S:      Supported
712 F:      drivers/media/i2c/adv7180.c
713
714 ANALOG DEVICES INC ADV7511 DRIVER
715 M:      Hans Verkuil <hans.verkuil@cisco.com>
716 L:      linux-media@vger.kernel.org
717 S:      Maintained
718 F:      drivers/media/i2c/adv7511*
719
720 ANALOG DEVICES INC ADV7604 DRIVER
721 M:      Hans Verkuil <hans.verkuil@cisco.com>
722 L:      linux-media@vger.kernel.org
723 S:      Maintained
724 F:      drivers/media/i2c/adv7604*
725
726 ANALOG DEVICES INC ADV7842 DRIVER
727 M:      Hans Verkuil <hans.verkuil@cisco.com>
728 L:      linux-media@vger.kernel.org
729 S:      Maintained
730 F:      drivers/media/i2c/adv7842*
731
732 ANALOG DEVICES INC ASOC CODEC DRIVERS
733 M:      Lars-Peter Clausen <lars@metafoo.de>
734 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
735 W:      http://wiki.analog.com/
736 W:      http://ez.analog.com/community/linux-device-drivers
737 S:      Supported
738 F:      sound/soc/codecs/adau*
739 F:      sound/soc/codecs/adav*
740 F:      sound/soc/codecs/ad1*
741 F:      sound/soc/codecs/ad7*
742 F:      sound/soc/codecs/ssm*
743 F:      sound/soc/codecs/sigmadsp.*
744
745 ANALOG DEVICES INC ASOC DRIVERS
746 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
748 W:      http://blackfin.uclinux.org/
749 S:      Supported
750 F:      sound/soc/blackfin/*
751
752 ANALOG DEVICES INC IIO DRIVERS
753 M:      Lars-Peter Clausen <lars@metafoo.de>
754 M:      Michael Hennerich <Michael.Hennerich@analog.com>
755 W:      http://wiki.analog.com/
756 W:      http://ez.analog.com/community/linux-device-drivers
757 S:      Supported
758 F:      drivers/iio/*/ad*
759 X:      drivers/iio/*/adjd*
760 F:      drivers/staging/iio/*/ad*
761 F:      staging/iio/trigger/iio-trig-bfin-timer.c
762
763 ANALOG DEVICES INC DMA DRIVERS
764 M:      Lars-Peter Clausen <lars@metafoo.de>
765 W:      http://ez.analog.com/community/linux-device-drivers
766 S:      Supported
767 F:      drivers/dma/dma-axi-dmac.c
768
769 ANDROID DRIVERS
770 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
771 M:      Arve Hjønnevåg <arve@android.com>
772 M:      Riley Andrews <riandrews@android.com>
773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
774 L:      devel@driverdev.osuosl.org
775 S:      Supported
776 F:      drivers/android/
777 F:      drivers/staging/android/
778
779 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 ARM HDLCD DRM DRIVER
851 M:      Liviu Dudau <liviu.dudau@arm.com>
852 S:      Supported
853 F:      drivers/gpu/drm/arm/
854 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
855
856 ARM MFM AND FLOPPY DRIVERS
857 M:      Ian Molton <spyro@f2s.com>
858 S:      Maintained
859 F:      arch/arm/lib/floppydma.S
860 F:      arch/arm/include/asm/floppy.h
861
862 ARM PMU PROFILING AND DEBUGGING
863 M:      Will Deacon <will.deacon@arm.com>
864 R:      Mark Rutland <mark.rutland@arm.com>
865 S:      Maintained
866 F:      arch/arm*/kernel/perf_*
867 F:      arch/arm/oprofile/common.c
868 F:      arch/arm*/kernel/hw_breakpoint.c
869 F:      arch/arm*/include/asm/hw_breakpoint.h
870 F:      arch/arm*/include/asm/perf_event.h
871 F:      drivers/perf/arm_pmu.c
872 F:      include/linux/perf/arm_pmu.h
873
874 ARM PORT
875 M:      Russell King <linux@armlinux.org.uk>
876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
877 W:      http://www.armlinux.org.uk/
878 S:      Maintained
879 F:      arch/arm/
880
881 ARM SUB-ARCHITECTURES
882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
883 S:      Maintained
884 F:      arch/arm/mach-*/
885 F:      arch/arm/plat-*/
886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
887
888 ARM PRIMECELL AACI PL041 DRIVER
889 M:      Russell King <linux@armlinux.org.uk>
890 S:      Maintained
891 F:      sound/arm/aaci.*
892
893 ARM PRIMECELL CLCD PL110 DRIVER
894 M:      Russell King <linux@armlinux.org.uk>
895 S:      Maintained
896 F:      drivers/video/fbdev/amba-clcd.*
897
898 ARM PRIMECELL KMI PL050 DRIVER
899 M:      Russell King <linux@armlinux.org.uk>
900 S:      Maintained
901 F:      drivers/input/serio/ambakmi.*
902 F:      include/linux/amba/kmi.h
903
904 ARM PRIMECELL MMCI PL180/1 DRIVER
905 M:      Russell King <linux@armlinux.org.uk>
906 S:      Maintained
907 F:      drivers/mmc/host/mmci.*
908 F:      include/linux/amba/mmci.h
909
910 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
911 M:      Russell King <linux@armlinux.org.uk>
912 S:      Maintained
913 F:      drivers/tty/serial/amba-pl01*.c
914 F:      include/linux/amba/serial.h
915
916 ARM PRIMECELL BUS SUPPORT
917 M:      Russell King <linux@armlinux.org.uk>
918 S:      Maintained
919 F:      drivers/amba/
920 F:      include/linux/amba/bus.h
921
922 ARM/ADS SPHERE MACHINE SUPPORT
923 M:      Lennert Buytenhek <kernel@wantstofly.org>
924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
925 S:      Maintained
926
927 ARM/AFEB9260 MACHINE SUPPORT
928 M:      Sergey Lapin <slapin@ossfans.org>
929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
930 S:      Maintained
931
932 ARM/AJECO 1ARM MACHINE SUPPORT
933 M:      Lennert Buytenhek <kernel@wantstofly.org>
934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
935 S:      Maintained
936
937 ARM/Allwinner sunXi SoC support
938 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
939 M:      Chen-Yu Tsai <wens@csie.org>
940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
941 S:      Maintained
942 N:      sun[x456789]i
943
944 ARM/Allwinner SoC Clock Support
945 M:      Emilio López <emilio@elopez.com.ar>
946 S:      Maintained
947 F:      drivers/clk/sunxi/
948
949 ARM/Amlogic Meson SoC support
950 M:      Carlo Caione <carlo@caione.org>
951 M:      Kevin Hilman <khilman@baylibre.com>
952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
953 L:      linux-amlogic@lists.infradead.org
954 W:      http://linux-meson.com/
955 S:      Maintained
956 F:      arch/arm/mach-meson/
957 F:      arch/arm/boot/dts/meson*
958 F:      arch/arm64/boot/dts/amlogic/
959 F:      drivers/pinctrl/meson/
960 N:      meson
961
962 ARM/Annapurna Labs ALPINE ARCHITECTURE
963 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
964 M:      Antoine Tenart <antoine.tenart@free-electrons.com>
965 S:      Maintained
966 F:      arch/arm/mach-alpine/
967 F:      arch/arm/boot/dts/alpine*
968 F:      arch/arm64/boot/dts/al/
969 F:      drivers/*/*alpine*
970
971 ARM/ARTPEC MACHINE SUPPORT
972 M:      Jesper Nilsson <jesper.nilsson@axis.com>
973 M:      Lars Persson <lars.persson@axis.com>
974 M:      Niklas Cassel <niklas.cassel@axis.com>
975 S:      Maintained
976 L:      linux-arm-kernel@axis.com
977 F:      arch/arm/mach-artpec
978 F:      arch/arm/boot/dts/artpec6*
979 F:      drivers/clk/axis
980
981 ARM/ASPEED MACHINE SUPPORT
982 M:      Joel Stanley <joel@jms.id.au>
983 S:      Maintained
984 F:      arch/arm/mach-aspeed/
985 F:      arch/arm/boot/dts/aspeed-*
986 F:      drivers/*/*aspeed*
987
988 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
989 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
990 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
991 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
993 W:      http://www.linux4sam.org
994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
995 S:      Supported
996 F:      arch/arm/mach-at91/
997 F:      include/soc/at91/
998 F:      arch/arm/boot/dts/at91*.dts
999 F:      arch/arm/boot/dts/at91*.dtsi
1000 F:      arch/arm/boot/dts/sama*.dts
1001 F:      arch/arm/boot/dts/sama*.dtsi
1002 F:      arch/arm/include/debug/at91.S
1003
1004 ARM/ATMEL AT91 Clock Support
1005 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
1006 S:      Maintained
1007 F:      drivers/clk/at91
1008
1009 ARM/CALXEDA HIGHBANK ARCHITECTURE
1010 M:      Rob Herring <robh@kernel.org>
1011 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1012 S:      Maintained
1013 F:      arch/arm/mach-highbank/
1014 F:      arch/arm/boot/dts/highbank.dts
1015 F:      arch/arm/boot/dts/ecx-*.dts*
1016
1017 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1018 M:      Krzysztof Halasa <khalasa@piap.pl>
1019 S:      Maintained
1020 F:      arch/arm/mach-cns3xxx/
1021
1022 ARM/CAVIUM THUNDER NETWORK DRIVER
1023 M:      Sunil Goutham <sgoutham@cavium.com>
1024 M:      Robert Richter <rric@kernel.org>
1025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1026 S:      Supported
1027 F:      drivers/net/ethernet/cavium/thunder/
1028
1029 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1030 M:      Alexander Shiyan <shc_work@mail.ru>
1031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1032 S:      Odd Fixes
1033 N:      clps711x
1034
1035 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1036 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1037 M:      Ryan Mallon <rmallon@gmail.com>
1038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1039 S:      Maintained
1040 F:      arch/arm/mach-ep93xx/
1041 F:      arch/arm/mach-ep93xx/include/mach/
1042
1043 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1044 M:      Lennert Buytenhek <kernel@wantstofly.org>
1045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1046 S:      Maintained
1047
1048 ARM/CLKDEV SUPPORT
1049 M:      Russell King <linux@armlinux.org.uk>
1050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1051 S:      Maintained
1052 F:      arch/arm/include/asm/clkdev.h
1053 F:      drivers/clk/clkdev.c
1054
1055 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1056 M:      Mike Rapoport <mike@compulab.co.il>
1057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1058 S:      Maintained
1059
1060 ARM/CONTEC MICRO9 MACHINE SUPPORT
1061 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1062 S:      Maintained
1063 F:      arch/arm/mach-ep93xx/micro9.c
1064
1065 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1066 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1068 S:      Maintained
1069 F:      drivers/hwtracing/coresight/*
1070 F:      Documentation/trace/coresight.txt
1071 F:      Documentation/devicetree/bindings/arm/coresight.txt
1072 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1073
1074 ARM/CORGI MACHINE SUPPORT
1075 M:      Richard Purdie <rpurdie@rpsys.net>
1076 S:      Maintained
1077
1078 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1079 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1081 T:      git git://github.com/ulli-kroll/linux.git
1082 S:      Maintained
1083 F:      arch/arm/mach-gemini/
1084 F:      drivers/rtc/rtc-gemini.c
1085
1086 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1087 M:      Barry Song <baohua@kernel.org>
1088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1090 S:      Maintained
1091 F:      arch/arm/boot/dts/prima2*
1092 F:      arch/arm/mach-prima2/
1093 F:      drivers/clk/sirf/
1094 F:      drivers/clocksource/timer-prima2.c
1095 F:      drivers/clocksource/timer-atlas7.c
1096 N:      [^a-z]sirf
1097
1098 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1099 M:      Baruch Siach <baruch@tkos.co.il>
1100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 S:      Maintained
1102 F:      arch/arm/boot/dts/cx92755*
1103 N:      digicolor
1104
1105 ARM/EBSA110 MACHINE SUPPORT
1106 M:      Russell King <linux@armlinux.org.uk>
1107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1108 W:      http://www.armlinux.org.uk/
1109 S:      Maintained
1110 F:      arch/arm/mach-ebsa110/
1111 F:      drivers/net/ethernet/amd/am79c961a.*
1112
1113 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1114 M:      Uwe Kleine-König <kernel@pengutronix.de>
1115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1116 S:      Maintained
1117 N:      efm32
1118
1119 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1120 M:      Daniel Ribeiro <drwyrm@gmail.com>
1121 M:      Stefan Schmidt <stefan@openezx.org>
1122 M:      Harald Welte <laforge@openezx.org>
1123 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1124 W:      http://www.openezx.org/
1125 S:      Maintained
1126 T:      topgit git://git.openezx.org/openezx.git
1127 F:      arch/arm/mach-pxa/ezx.c
1128
1129 ARM/FARADAY FA526 PORT
1130 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1132 S:      Maintained
1133 T:      git git://git.berlios.de/gemini-board
1134 F:      arch/arm/mm/*-fa*
1135
1136 ARM/FOOTBRIDGE ARCHITECTURE
1137 M:      Russell King <linux@armlinux.org.uk>
1138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1139 W:      http://www.armlinux.org.uk/
1140 S:      Maintained
1141 F:      arch/arm/include/asm/hardware/dec21285.h
1142 F:      arch/arm/mach-footbridge/
1143
1144 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1145 M:      Shawn Guo <shawnguo@kernel.org>
1146 M:      Sascha Hauer <kernel@pengutronix.de>
1147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1148 S:      Maintained
1149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1150 F:      arch/arm/mach-imx/
1151 F:      arch/arm/mach-mxs/
1152 F:      arch/arm/boot/dts/imx*
1153 F:      arch/arm/configs/imx*_defconfig
1154 F:      drivers/clk/imx/
1155 F:      include/soc/imx/
1156
1157 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1158 M:      Shawn Guo <shawnguo@kernel.org>
1159 M:      Sascha Hauer <kernel@pengutronix.de>
1160 R:      Stefan Agner <stefan@agner.ch>
1161 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1162 S:      Maintained
1163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1164 F:      arch/arm/mach-imx/*vf610*
1165 F:      arch/arm/boot/dts/vf*
1166
1167 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1168 M:      Lennert Buytenhek <kernel@wantstofly.org>
1169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170 S:      Maintained
1171
1172 ARM/GUMSTIX MACHINE SUPPORT
1173 M:      Steve Sakoman <sakoman@gmail.com>
1174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1175 S:      Maintained
1176
1177 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1178 M:      Philipp Zabel <philipp.zabel@gmail.com>
1179 M:      Paul Parsons <lost.distance@yahoo.com>
1180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1181 S:      Maintained
1182 F:      arch/arm/mach-pxa/hx4700.c
1183 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1184 F:      sound/soc/pxa/hx4700.c
1185
1186 ARM/HISILICON SOC SUPPORT
1187 M:      Wei Xu <xuwei5@hisilicon.com>
1188 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1189 W:      http://www.hisilicon.com
1190 S:      Supported
1191 T:      git git://github.com/hisilicon/linux-hisi.git
1192 F:      arch/arm/mach-hisi/
1193 F:      arch/arm/boot/dts/hi3*
1194 F:      arch/arm/boot/dts/hip*
1195 F:      arch/arm/boot/dts/hisi*
1196 F:      arch/arm64/boot/dts/hisilicon/
1197
1198 ARM/HP JORNADA 7XX MACHINE SUPPORT
1199 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1200 W:      www.jlime.com
1201 S:      Maintained
1202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1203 F:      arch/arm/mach-sa1100/jornada720.c
1204 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1205
1206 ARM/IGEP MACHINE SUPPORT
1207 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1208 M:      Javier Martinez Canillas <javier@dowhile0.org>
1209 L:      linux-omap@vger.kernel.org
1210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1211 S:      Maintained
1212 F:      arch/arm/boot/dts/omap3-igep*
1213
1214 ARM/INCOME PXA270 SUPPORT
1215 M:      Marek Vasut <marek.vasut@gmail.com>
1216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1217 S:      Maintained
1218 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1219
1220 ARM/INTEL IOP32X ARM ARCHITECTURE
1221 M:      Lennert Buytenhek <kernel@wantstofly.org>
1222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1223 S:      Maintained
1224
1225 ARM/INTEL IOP33X ARM ARCHITECTURE
1226 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1227 S:      Orphan
1228
1229 ARM/INTEL IOP13XX ARM ARCHITECTURE
1230 M:      Lennert Buytenhek <kernel@wantstofly.org>
1231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1232 S:      Maintained
1233
1234 ARM/INTEL IQ81342EX MACHINE SUPPORT
1235 M:      Lennert Buytenhek <kernel@wantstofly.org>
1236 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1237 S:      Maintained
1238
1239 ARM/INTEL IXDP2850 MACHINE SUPPORT
1240 M:      Lennert Buytenhek <kernel@wantstofly.org>
1241 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1242 S:      Maintained
1243
1244 ARM/INTEL IXP4XX ARM ARCHITECTURE
1245 M:      Imre Kaloz <kaloz@openwrt.org>
1246 M:      Krzysztof Halasa <khalasa@piap.pl>
1247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1248 S:      Maintained
1249 F:      arch/arm/mach-ixp4xx/
1250
1251 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1252 M:      Jonathan Cameron <jic23@cam.ac.uk>
1253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1254 S:      Maintained
1255 F:      arch/arm/mach-pxa/stargate2.c
1256 F:      drivers/pcmcia/pxa2xx_stargate2.c
1257
1258 ARM/INTEL XSC3 (MANZANO) ARM CORE
1259 M:      Lennert Buytenhek <kernel@wantstofly.org>
1260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1261 S:      Maintained
1262
1263 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1264 M:      Lennert Buytenhek <kernel@wantstofly.org>
1265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1266 S:      Maintained
1267
1268 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1269 M:      Santosh Shilimkar <ssantosh@kernel.org>
1270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1271 S:      Maintained
1272 F:      arch/arm/mach-keystone/
1273 F:      arch/arm/boot/dts/keystone-*
1274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1275
1276 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1277 M:      Santosh Shilimkar <ssantosh@kernel.org>
1278 L:      linux-kernel@vger.kernel.org
1279 S:      Maintained
1280 F:      drivers/clk/keystone/
1281
1282 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1283 M:      Santosh Shilimkar <ssantosh@kernel.org>
1284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1285 L:      linux-kernel@vger.kernel.org
1286 S:      Maintained
1287 F:      drivers/clocksource/timer-keystone.c
1288
1289 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1290 M:      Santosh Shilimkar <ssantosh@kernel.org>
1291 L:      linux-kernel@vger.kernel.org
1292 S:      Maintained
1293 F:      drivers/power/reset/keystone-reset.c
1294
1295 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1296 M:      Santosh Shilimkar <ssantosh@kernel.org>
1297 L:      linux-kernel@vger.kernel.org
1298 S:      Maintained
1299 F:      drivers/memory/*emif*
1300
1301 ARM/LG1K ARCHITECTURE
1302 M:      Chanho Min <chanho.min@lge.com>
1303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304 S:      Maintained
1305 F:      arch/arm64/boot/dts/lg/
1306
1307 ARM/LOGICPD PXA270 MACHINE SUPPORT
1308 M:      Lennert Buytenhek <kernel@wantstofly.org>
1309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1310 S:      Maintained
1311
1312 ARM/LPC18XX ARCHITECTURE
1313 M:      Joachim Eastwood <manabian@gmail.com>
1314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1315 S:      Maintained
1316 F:      arch/arm/boot/dts/lpc43*
1317 F:      drivers/clk/nxp/clk-lpc18xx*
1318 F:      drivers/clocksource/time-lpc32xx.c
1319 F:      drivers/i2c/busses/i2c-lpc2k.c
1320 F:      drivers/memory/pl172.c
1321 F:      drivers/mtd/spi-nor/nxp-spifi.c
1322 F:      drivers/rtc/rtc-lpc24xx.c
1323 N:      lpc18xx
1324
1325 ARM/LPC32XX SOC SUPPORT
1326 M:      Vladimir Zapolskiy <vz@mleia.com>
1327 M:      Sylvain Lemieux <slemieux.tyco@gmail.com>
1328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1329 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1330 S:      Maintained
1331 F:      arch/arm/boot/dts/lpc32*
1332 F:      arch/arm/mach-lpc32xx/
1333 F:      drivers/i2c/busses/i2c-pnx.c
1334 F:      drivers/net/ethernet/nxp/lpc_eth.c
1335 F:      drivers/usb/host/ohci-nxp.c
1336 F:      drivers/watchdog/pnx4008_wdt.c
1337 N:      lpc32xx
1338
1339 ARM/MAGICIAN MACHINE SUPPORT
1340 M:      Philipp Zabel <philipp.zabel@gmail.com>
1341 S:      Maintained
1342
1343 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1344 M:      Jason Cooper <jason@lakedaemon.net>
1345 M:      Andrew Lunn <andrew@lunn.ch>
1346 M:      Gregory Clement <gregory.clement@free-electrons.com>
1347 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1349 S:      Maintained
1350 F:      arch/arm/mach-mvebu/
1351 F:      drivers/rtc/rtc-armada38x.c
1352 F:      arch/arm/boot/dts/armada*
1353 F:      arch/arm/boot/dts/kirkwood*
1354 F:      arch/arm64/boot/dts/marvell/armada*
1355 F:      drivers/cpufreq/mvebu-cpufreq.c
1356 F:      arch/arm/configs/mvebu_*_defconfig
1357
1358 ARM/Marvell Berlin SoC support
1359 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1361 S:      Maintained
1362 F:      arch/arm/mach-berlin/
1363 F:      arch/arm/boot/dts/berlin*
1364 F:      arch/arm64/boot/dts/marvell/berlin*
1365
1366
1367 ARM/Marvell Dove/MV78xx0/Orion SOC support
1368 M:      Jason Cooper <jason@lakedaemon.net>
1369 M:      Andrew Lunn <andrew@lunn.ch>
1370 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1371 M:      Gregory Clement <gregory.clement@free-electrons.com>
1372 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1373 S:      Maintained
1374 F:      arch/arm/mach-dove/
1375 F:      arch/arm/mach-mv78xx0/
1376 F:      arch/arm/mach-orion5x/
1377 F:      arch/arm/plat-orion/
1378 F:      arch/arm/boot/dts/dove*
1379 F:      arch/arm/boot/dts/orion5x*
1380
1381
1382 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1383 M:      Alexander Clouter <alex@digriz.org.uk>
1384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1385 W:      http://www.digriz.org.uk/ts78xx/kernel
1386 S:      Maintained
1387 F:      arch/arm/mach-orion5x/ts78xx-*
1388
1389 ARM/OXNAS platform support
1390 M:      Neil Armstrong <narmstrong@baylibre.com>
1391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1392 S:      Maintained
1393 F:      arch/arm/mach-oxnas/
1394 F:      arch/arm/boot/dts/oxnas*
1395 F:      arch/arm/boot/dts/wd-mbwe.dts
1396 N:      oxnas
1397
1398 ARM/Mediatek RTC DRIVER
1399 M:      Eddie Huang <eddie.huang@mediatek.com>
1400 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1401 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1402 S:      Maintained
1403 F:      drivers/rtc/rtc-mt6397.c
1404
1405 ARM/Mediatek SoC support
1406 M:      Matthias Brugger <matthias.bgg@gmail.com>
1407 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1408 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1409 S:      Maintained
1410 F:      arch/arm/boot/dts/mt6*
1411 F:      arch/arm/boot/dts/mt8*
1412 F:      arch/arm/mach-mediatek/
1413 N:      mtk
1414 K:      mediatek
1415
1416 ARM/Mediatek USB3 PHY DRIVER
1417 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1419 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1420 S:      Maintained
1421 F:      drivers/phy/phy-mt65xx-usb3.c
1422
1423 ARM/MICREL KS8695 ARCHITECTURE
1424 M:      Greg Ungerer <gerg@uclinux.org>
1425 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1426 F:      arch/arm/mach-ks8695/
1427 S:      Odd Fixes
1428
1429 ARM/MIOA701 MACHINE SUPPORT
1430 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1432 F:      arch/arm/mach-pxa/mioa701.c
1433 S:      Maintained
1434
1435 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1436 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1437 S:      Maintained
1438
1439 ARM/NOMADIK ARCHITECTURE
1440 M:      Alessandro Rubini <rubini@unipv.it>
1441 M:      Linus Walleij <linus.walleij@linaro.org>
1442 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1443 S:      Maintained
1444 F:      arch/arm/mach-nomadik/
1445 F:      drivers/pinctrl/nomadik/
1446 F:      drivers/i2c/busses/i2c-nomadik.c
1447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1448
1449 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1450 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1451 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1452 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1453 S:      Supported
1454
1455 ARM/TOSA MACHINE SUPPORT
1456 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1457 M:      Dirk Opfer <dirk@opfer-online.de>
1458 S:      Maintained
1459
1460 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1461 M:      Marek Vasut <marek.vasut@gmail.com>
1462 L:      linux-arm-kernel@lists.infradead.org
1463 W:      http://hackndev.com
1464 S:      Maintained
1465 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1466 F:      arch/arm/mach-pxa/palmtx.c
1467 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1468 F:      arch/arm/mach-pxa/palmt5.c
1469 F:      arch/arm/mach-pxa/include/mach/palmld.h
1470 F:      arch/arm/mach-pxa/palmld.c
1471 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1472 F:      arch/arm/mach-pxa/palmte2.c
1473 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1474 F:      arch/arm/mach-pxa/palmtc.c
1475
1476 ARM/PALM TREO SUPPORT
1477 M:      Tomas Cech <sleep_walker@suse.com>
1478 L:      linux-arm-kernel@lists.infradead.org
1479 W:      http://hackndev.com
1480 S:      Maintained
1481 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1482 F:      arch/arm/mach-pxa/palmtreo.c
1483
1484 ARM/PALMZ72 SUPPORT
1485 M:      Sergey Lapin <slapin@ossfans.org>
1486 L:      linux-arm-kernel@lists.infradead.org
1487 W:      http://hackndev.com
1488 S:      Maintained
1489 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1490 F:      arch/arm/mach-pxa/palmz72.c
1491
1492 ARM/PLEB SUPPORT
1493 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1494 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1495 S:      Maintained
1496
1497 ARM/PT DIGITAL BOARD PORT
1498 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1499 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1500 W:      http://www.armlinux.org.uk/
1501 S:      Maintained
1502
1503 ARM/QUALCOMM SUPPORT
1504 M:      Andy Gross <andy.gross@linaro.org>
1505 M:      David Brown <david.brown@linaro.org>
1506 L:      linux-arm-msm@vger.kernel.org
1507 L:      linux-soc@vger.kernel.org
1508 S:      Maintained
1509 F:      arch/arm/boot/dts/qcom-*.dts
1510 F:      arch/arm/boot/dts/qcom-*.dtsi
1511 F:      arch/arm/mach-qcom/
1512 F:      arch/arm64/boot/dts/qcom/*
1513 F:      drivers/i2c/busses/i2c-qup.c
1514 F:      drivers/clk/qcom/
1515 F:      drivers/soc/qcom/
1516 F:      drivers/spi/spi-qup.c
1517 F:      drivers/tty/serial/msm_serial.h
1518 F:      drivers/tty/serial/msm_serial.c
1519 F:      drivers/*/pm8???-*
1520 F:      drivers/mfd/ssbi.c
1521 F:      drivers/firmware/qcom_scm.c
1522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1523
1524 ARM/RADISYS ENP2611 MACHINE SUPPORT
1525 M:      Lennert Buytenhek <kernel@wantstofly.org>
1526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1527 S:      Maintained
1528
1529 ARM/RENESAS ARM64 ARCHITECTURE
1530 M:      Simon Horman <horms@verge.net.au>
1531 M:      Magnus Damm <magnus.damm@gmail.com>
1532 L:      linux-renesas-soc@vger.kernel.org
1533 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1535 S:      Supported
1536 F:      arch/arm64/boot/dts/renesas/
1537 F:      drivers/soc/renesas/
1538 F:      include/linux/soc/renesas/
1539
1540 ARM/RISCPC ARCHITECTURE
1541 M:      Russell King <linux@armlinux.org.uk>
1542 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1543 W:      http://www.armlinux.org.uk/
1544 S:      Maintained
1545 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1546 F:      arch/arm/include/asm/hardware/ioc.h
1547 F:      arch/arm/include/asm/hardware/iomd.h
1548 F:      arch/arm/include/asm/hardware/memc.h
1549 F:      arch/arm/mach-rpc/
1550 F:      drivers/net/ethernet/8390/etherh.c
1551 F:      drivers/net/ethernet/i825xx/ether1*
1552 F:      drivers/net/ethernet/seeq/ether3*
1553 F:      drivers/scsi/arm/
1554
1555 ARM/Rockchip SoC support
1556 M:      Heiko Stuebner <heiko@sntech.de>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 L:      linux-rockchip@lists.infradead.org
1559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1560 S:      Maintained
1561 F:      arch/arm/boot/dts/rk3*
1562 F:      arch/arm/mach-rockchip/
1563 F:      drivers/clk/rockchip/
1564 F:      drivers/i2c/busses/i2c-rk3x.c
1565 F:      drivers/*/*rockchip*
1566 F:      drivers/*/*/*rockchip*
1567 F:      sound/soc/rockchip/
1568 N:      rockchip
1569
1570 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1571 M:      Kukjin Kim <kgene@kernel.org>
1572 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1574 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1575 S:      Maintained
1576 F:      arch/arm/boot/dts/s3c*
1577 F:      arch/arm/boot/dts/s5p*
1578 F:      arch/arm/boot/dts/samsung*
1579 F:      arch/arm/boot/dts/exynos*
1580 F:      arch/arm64/boot/dts/exynos/
1581 F:      arch/arm/plat-samsung/
1582 F:      arch/arm/mach-s3c24*/
1583 F:      arch/arm/mach-s3c64xx/
1584 F:      arch/arm/mach-s5p*/
1585 F:      arch/arm/mach-exynos*/
1586 F:      drivers/*/*s3c2410*
1587 F:      drivers/*/*/*s3c2410*
1588 F:      drivers/memory/samsung/*
1589 F:      drivers/soc/samsung/*
1590 F:      drivers/spi/spi-s3c*
1591 F:      sound/soc/samsung/*
1592 F:      Documentation/arm/Samsung/
1593 F:      Documentation/devicetree/bindings/arm/samsung/
1594 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1595 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1596 N:      exynos
1597
1598 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1599 M:      Kyungmin Park <kyungmin.park@samsung.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      arch/arm/mach-s5pv210/
1603
1604 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1605 M:      Kyungmin Park <kyungmin.park@samsung.com>
1606 M:      Kamil Debski <k.debski@samsung.com>
1607 L:      linux-arm-kernel@lists.infradead.org
1608 L:      linux-media@vger.kernel.org
1609 S:      Maintained
1610 F:      drivers/media/platform/s5p-g2d/
1611
1612 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1613 M:      Kyungmin Park <kyungmin.park@samsung.com>
1614 M:      Kamil Debski <k.debski@samsung.com>
1615 M:      Jeongtae Park <jtp.park@samsung.com>
1616 L:      linux-arm-kernel@lists.infradead.org
1617 L:      linux-media@vger.kernel.org
1618 S:      Maintained
1619 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1620 F:      drivers/media/platform/s5p-mfc/
1621
1622 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1623 M:      Kyungmin Park <kyungmin.park@samsung.com>
1624 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1625 L:      linux-arm-kernel@lists.infradead.org
1626 L:      linux-media@vger.kernel.org
1627 S:      Maintained
1628 F:      drivers/media/platform/s5p-tv/
1629
1630 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1631 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1632 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1633 L:      linux-arm-kernel@lists.infradead.org
1634 L:      linux-media@vger.kernel.org
1635 S:      Maintained
1636 F:      drivers/media/platform/s5p-jpeg/
1637
1638 ARM/SHMOBILE ARM ARCHITECTURE
1639 M:      Simon Horman <horms@verge.net.au>
1640 M:      Magnus Damm <magnus.damm@gmail.com>
1641 L:      linux-renesas-soc@vger.kernel.org
1642 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1644 S:      Supported
1645 F:      arch/arm/boot/dts/emev2*
1646 F:      arch/arm/boot/dts/r7s*
1647 F:      arch/arm/boot/dts/r8a*
1648 F:      arch/arm/boot/dts/sh*
1649 F:      arch/arm/configs/shmobile_defconfig
1650 F:      arch/arm/include/debug/renesas-scif.S
1651 F:      arch/arm/mach-shmobile/
1652 F:      drivers/sh/
1653 F:      drivers/soc/renesas/
1654 F:      include/linux/soc/renesas/
1655
1656 ARM/SOCFPGA ARCHITECTURE
1657 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1658 S:      Maintained
1659 F:      arch/arm/mach-socfpga/
1660 F:      arch/arm/boot/dts/socfpga*
1661 F:      arch/arm/configs/socfpga_defconfig
1662 F:      arch/arm64/boot/dts/altera/
1663 W:      http://www.rocketboards.org
1664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1665
1666 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1667 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1668 S:      Maintained
1669 F:      drivers/clk/socfpga/
1670
1671 ARM/SOCFPGA EDAC SUPPORT
1672 M:      Thor Thayer <tthayer@opensource.altera.com>
1673 S:      Maintained
1674 F:      drivers/edac/altera_edac.
1675
1676 ARM/STI ARCHITECTURE
1677 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1678 M:      Maxime Coquelin <maxime.coquelin@st.com>
1679 M:      Patrice Chotard <patrice.chotard@st.com>
1680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1681 L:      kernel@stlinux.com
1682 W:      http://www.stlinux.com
1683 S:      Maintained
1684 F:      arch/arm/mach-sti/
1685 F:      arch/arm/boot/dts/sti*
1686 F:      drivers/char/hw_random/st-rng.c
1687 F:      drivers/clocksource/arm_global_timer.c
1688 F:      drivers/clocksource/clksrc_st_lpc.c
1689 F:      drivers/cpufreq/sti-cpufreq.c
1690 F:      drivers/i2c/busses/i2c-st.c
1691 F:      drivers/media/rc/st_rc.c
1692 F:      drivers/media/platform/sti/c8sectpfe/
1693 F:      drivers/mmc/host/sdhci-st.c
1694 F:      drivers/phy/phy-miphy28lp.c
1695 F:      drivers/phy/phy-miphy365x.c
1696 F:      drivers/phy/phy-stih407-usb.c
1697 F:      drivers/phy/phy-stih41x-usb.c
1698 F:      drivers/pinctrl/pinctrl-st.c
1699 F:      drivers/remoteproc/st_remoteproc.c
1700 F:      drivers/reset/sti/
1701 F:      drivers/rtc/rtc-st-lpc.c
1702 F:      drivers/tty/serial/st-asc.c
1703 F:      drivers/usb/dwc3/dwc3-st.c
1704 F:      drivers/usb/host/ehci-st.c
1705 F:      drivers/usb/host/ohci-st.c
1706 F:      drivers/watchdog/st_lpc_wdt.c
1707 F:      drivers/ata/ahci_st.c
1708
1709 ARM/STM32 ARCHITECTURE
1710 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1714 N:      stm32
1715 F:      drivers/clocksource/armv7m_systick.c
1716
1717 ARM/TANGO ARCHITECTURE
1718 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1719 L:      linux-arm-kernel@lists.infradead.org
1720 S:      Maintained
1721 F:      arch/arm/mach-tango/
1722 F:      arch/arm/boot/dts/tango*
1723
1724 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1725 M:      Lennert Buytenhek <kernel@wantstofly.org>
1726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S:      Maintained
1728
1729 ARM/TETON BGA MACHINE SUPPORT
1730 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1732 S:      Maintained
1733
1734 ARM/THECUS N2100 MACHINE SUPPORT
1735 M:      Lennert Buytenhek <kernel@wantstofly.org>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738
1739 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1740 M:      Wan ZongShun <mcuos.com@gmail.com>
1741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1742 W:      http://www.mcuos.com
1743 S:      Maintained
1744 F:      arch/arm/mach-w90x900/
1745 F:      drivers/input/keyboard/w90p910_keypad.c
1746 F:      drivers/input/touchscreen/w90p910_ts.c
1747 F:      drivers/watchdog/nuc900_wdt.c
1748 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1749 F:      drivers/mtd/nand/nuc900_nand.c
1750 F:      drivers/rtc/rtc-nuc900.c
1751 F:      drivers/spi/spi-nuc900.c
1752 F:      drivers/usb/host/ehci-w90x900.c
1753 F:      drivers/video/fbdev/nuc900fb.c
1754
1755 ARM/U300 MACHINE SUPPORT
1756 M:      Linus Walleij <linus.walleij@linaro.org>
1757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1758 S:      Supported
1759 F:      arch/arm/mach-u300/
1760 F:      drivers/clocksource/timer-u300.c
1761 F:      drivers/i2c/busses/i2c-stu300.c
1762 F:      drivers/rtc/rtc-coh901331.c
1763 F:      drivers/watchdog/coh901327_wdt.c
1764 F:      drivers/dma/coh901318*
1765 F:      drivers/mfd/ab3100*
1766 F:      drivers/rtc/rtc-ab3100.c
1767 F:      drivers/rtc/rtc-coh901331.c
1768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1769
1770 ARM/UNIPHIER ARCHITECTURE
1771 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1773 S:      Maintained
1774 F:      arch/arm/boot/dts/uniphier*
1775 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1776 F:      arch/arm/mach-uniphier/
1777 F:      arch/arm/mm/cache-uniphier.c
1778 F:      arch/arm64/boot/dts/socionext/
1779 F:      drivers/bus/uniphier-system-bus.c
1780 F:      drivers/i2c/busses/i2c-uniphier*
1781 F:      drivers/pinctrl/uniphier/
1782 F:      drivers/tty/serial/8250/8250_uniphier.c
1783 N:      uniphier
1784
1785 ARM/Ux500 ARM ARCHITECTURE
1786 M:      Linus Walleij <linus.walleij@linaro.org>
1787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1788 S:      Maintained
1789 F:      arch/arm/mach-ux500/
1790 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1791 F:      drivers/dma/ste_dma40*
1792 F:      drivers/hwspinlock/u8500_hsem.c
1793 F:      drivers/mfd/abx500*
1794 F:      drivers/mfd/ab8500*
1795 F:      drivers/mfd/dbx500*
1796 F:      drivers/mfd/db8500*
1797 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1798 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1799 F:      drivers/rtc/rtc-ab8500.c
1800 F:      drivers/rtc/rtc-pl031.c
1801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1802
1803 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1804 M:      Ulf Hansson <ulf.hansson@linaro.org>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 T:      git git://git.linaro.org/people/ulfh/clk.git
1807 S:      Maintained
1808 F:      drivers/clk/ux500/
1809 F:      include/linux/platform_data/clk-ux500.h
1810
1811 ARM/VERSATILE EXPRESS PLATFORM
1812 M:      Liviu Dudau <liviu.dudau@arm.com>
1813 M:      Sudeep Holla <sudeep.holla@arm.com>
1814 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 S:      Maintained
1817 F:      arch/arm/boot/dts/vexpress*
1818 F:      arch/arm64/boot/dts/arm/
1819 F:      arch/arm/mach-vexpress/
1820 F:      */*/vexpress*
1821 F:      */*/*/vexpress*
1822 F:      drivers/clk/versatile/clk-vexpress-osc.c
1823 F:      drivers/clocksource/versatile.c
1824 N:      mps2
1825
1826 ARM/VFP SUPPORT
1827 M:      Russell King <linux@armlinux.org.uk>
1828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1829 W:      http://www.armlinux.org.uk/
1830 S:      Maintained
1831 F:      arch/arm/vfp/
1832
1833 ARM/VOIPAC PXA270 SUPPORT
1834 M:      Marek Vasut <marek.vasut@gmail.com>
1835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1836 S:      Maintained
1837 F:      arch/arm/mach-pxa/vpac270.c
1838 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1839
1840 ARM/VT8500 ARM ARCHITECTURE
1841 M:      Tony Prisk <linux@prisktech.co.nz>
1842 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1843 S:      Maintained
1844 F:      arch/arm/mach-vt8500/
1845 F:      drivers/clocksource/vt8500_timer.c
1846 F:      drivers/i2c/busses/i2c-wmt.c
1847 F:      drivers/mmc/host/wmt-sdmmc.c
1848 F:      drivers/pwm/pwm-vt8500.c
1849 F:      drivers/rtc/rtc-vt8500.c
1850 F:      drivers/tty/serial/vt8500_serial.c
1851 F:      drivers/usb/host/ehci-platform.c
1852 F:      drivers/usb/host/uhci-platform.c
1853 F:      drivers/video/fbdev/vt8500lcdfb.*
1854 F:      drivers/video/fbdev/wm8505fb*
1855 F:      drivers/video/fbdev/wmt_ge_rops.*
1856
1857 ARM/ZIPIT Z2 SUPPORT
1858 M:      Marek Vasut <marek.vasut@gmail.com>
1859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1860 S:      Maintained
1861 F:      arch/arm/mach-pxa/z2.c
1862 F:      arch/arm/mach-pxa/include/mach/z2.h
1863
1864 ARM/ZTE ARCHITECTURE
1865 M:      Jun Nie <jun.nie@linaro.org>
1866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1867 S:      Maintained
1868 F:      arch/arm/mach-zx/
1869 F:      drivers/clk/zte/
1870 F:      Documentation/devicetree/bindings/arm/zte.txt
1871 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1872
1873 ARM/ZYNQ ARCHITECTURE
1874 M:      Michal Simek <michal.simek@xilinx.com>
1875 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1877 W:      http://wiki.xilinx.com
1878 T:      git https://github.com/Xilinx/linux-xlnx.git
1879 S:      Supported
1880 F:      arch/arm/mach-zynq/
1881 F:      drivers/cpuidle/cpuidle-zynq.c
1882 F:      drivers/block/xsysace.c
1883 N:      zynq
1884 N:      xilinx
1885 F:      drivers/clocksource/cadence_ttc_timer.c
1886 F:      drivers/i2c/busses/i2c-cadence.c
1887 F:      drivers/mmc/host/sdhci-of-arasan.c
1888 F:      drivers/edac/synopsys_edac.c
1889
1890 ARM SMMU DRIVERS
1891 M:      Will Deacon <will.deacon@arm.com>
1892 R:      Robin Murphy <robin.murphy@arm.com>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 S:      Maintained
1895 F:      drivers/iommu/arm-smmu.c
1896 F:      drivers/iommu/arm-smmu-v3.c
1897 F:      drivers/iommu/io-pgtable-arm.c
1898 F:      drivers/iommu/io-pgtable-arm-v7s.c
1899
1900 ARM64 PORT (AARCH64 ARCHITECTURE)
1901 M:      Catalin Marinas <catalin.marinas@arm.com>
1902 M:      Will Deacon <will.deacon@arm.com>
1903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1905 S:      Maintained
1906 F:      arch/arm64/
1907 F:      Documentation/arm64/
1908
1909 AS3645A LED FLASH CONTROLLER DRIVER
1910 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1911 L:      linux-media@vger.kernel.org
1912 T:      git git://linuxtv.org/media_tree.git
1913 S:      Maintained
1914 F:      drivers/media/i2c/as3645a.c
1915 F:      include/media/i2c/as3645a.h
1916
1917 ASC7621 HARDWARE MONITOR DRIVER
1918 M:      George Joseph <george.joseph@fairview5.com>
1919 L:      linux-hwmon@vger.kernel.org
1920 S:      Maintained
1921 F:      Documentation/hwmon/asc7621
1922 F:      drivers/hwmon/asc7621.c
1923
1924 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1925 M:      Corentin Chary <corentin.chary@gmail.com>
1926 L:      acpi4asus-user@lists.sourceforge.net
1927 L:      platform-driver-x86@vger.kernel.org
1928 W:      http://acpi4asus.sf.net
1929 S:      Maintained
1930 F:      drivers/platform/x86/asus*.c
1931 F:      drivers/platform/x86/eeepc*.c
1932
1933 ASUS WIRELESS RADIO CONTROL DRIVER
1934 M:      João Paulo Rechi Vita <jprvita@gmail.com>
1935 L:      platform-driver-x86@vger.kernel.org
1936 S:      Maintained
1937 F:      drivers/platform/x86/asus-wireless.c
1938
1939 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1940 R:      Dan Williams <dan.j.williams@intel.com>
1941 W:      http://sourceforge.net/projects/xscaleiop
1942 S:      Odd fixes
1943 F:      Documentation/crypto/async-tx-api.txt
1944 F:      crypto/async_tx/
1945 F:      drivers/dma/
1946 F:      include/linux/dmaengine.h
1947 F:      include/linux/async_tx.h
1948
1949 AT24 EEPROM DRIVER
1950 M:      Wolfram Sang <wsa@the-dreams.de>
1951 L:      linux-i2c@vger.kernel.org
1952 S:      Maintained
1953 F:      drivers/misc/eeprom/at24.c
1954 F:      include/linux/platform_data/at24.h
1955
1956 ATA OVER ETHERNET (AOE) DRIVER
1957 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1958 W:      http://www.openaoe.org/
1959 S:      Supported
1960 F:      Documentation/aoe/
1961 F:      drivers/block/aoe/
1962
1963 ATHEROS 71XX/9XXX GPIO DRIVER
1964 M:      Alban Bedel <albeu@free.fr>
1965 W:      https://github.com/AlbanBedel/linux
1966 T:      git git://github.com/AlbanBedel/linux
1967 S:      Maintained
1968 F:      drivers/gpio/gpio-ath79.c
1969 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1970
1971 ATHEROS ATH GENERIC UTILITIES
1972 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1973 L:      linux-wireless@vger.kernel.org
1974 S:      Supported
1975 F:      drivers/net/wireless/ath/*
1976
1977 ATHEROS ATH5K WIRELESS DRIVER
1978 M:      Jiri Slaby <jirislaby@gmail.com>
1979 M:      Nick Kossifidis <mickflemm@gmail.com>
1980 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1981 L:      linux-wireless@vger.kernel.org
1982 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1983 S:      Maintained
1984 F:      drivers/net/wireless/ath/ath5k/
1985
1986 ATHEROS ATH6KL WIRELESS DRIVER
1987 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1988 L:      linux-wireless@vger.kernel.org
1989 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1991 S:      Supported
1992 F:      drivers/net/wireless/ath/ath6kl/
1993
1994 WILOCITY WIL6210 WIRELESS DRIVER
1995 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1996 L:      linux-wireless@vger.kernel.org
1997 L:      wil6210@qca.qualcomm.com
1998 S:      Supported
1999 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2000 F:      drivers/net/wireless/ath/wil6210/
2001 F:      include/uapi/linux/wil6210_uapi.h
2002
2003 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2004 M:      Christian Lamparter <chunkeey@googlemail.com>
2005 L:      linux-wireless@vger.kernel.org
2006 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2007 S:      Maintained
2008 F:      drivers/net/wireless/ath/carl9170/
2009
2010 ATK0110 HWMON DRIVER
2011 M:      Luca Tettamanti <kronos.it@gmail.com>
2012 L:      linux-hwmon@vger.kernel.org
2013 S:      Maintained
2014 F:      drivers/hwmon/asus_atk0110.c
2015
2016 ATI_REMOTE2 DRIVER
2017 M:      Ville Syrjala <syrjala@sci.fi>
2018 S:      Maintained
2019 F:      drivers/input/misc/ati_remote2.c
2020
2021 ATLX ETHERNET DRIVERS
2022 M:      Jay Cliburn <jcliburn@gmail.com>
2023 M:      Chris Snook <chris.snook@gmail.com>
2024 L:      netdev@vger.kernel.org
2025 W:      http://sourceforge.net/projects/atl1
2026 W:      http://atl1.sourceforge.net
2027 S:      Maintained
2028 F:      drivers/net/ethernet/atheros/
2029
2030 ATM
2031 M:      Chas Williams <3chas3@gmail.com>
2032 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
2033 L:      netdev@vger.kernel.org
2034 W:      http://linux-atm.sourceforge.net
2035 S:      Maintained
2036 F:      drivers/atm/
2037 F:      include/linux/atm*
2038 F:      include/uapi/linux/atm*
2039
2040 ATMEL AT91 / AT32 MCI DRIVER
2041 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2042 S:      Maintained
2043 F:      drivers/mmc/host/atmel-mci.c
2044
2045 ATMEL AT91 / AT32 SERIAL DRIVER
2046 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2047 S:      Supported
2048 F:      drivers/tty/serial/atmel_serial.c
2049
2050 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2051 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2052 S:      Supported
2053 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2054
2055 ATMEL SAMA5D2 ADC DRIVER
2056 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2057 L:      linux-iio@vger.kernel.org
2058 S:      Supported
2059 F:      drivers/iio/adc/at91-sama5d2_adc.c
2060
2061 ATMEL Audio ALSA driver
2062 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2063 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2064 S:      Supported
2065 F:      sound/soc/atmel
2066
2067 ATMEL DMA DRIVER
2068 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Supported
2071 F:      drivers/dma/at_hdmac.c
2072 F:      drivers/dma/at_hdmac_regs.h
2073 F:      include/linux/platform_data/dma-atmel.h
2074
2075 ATMEL XDMA DRIVER
2076 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2077 L:      linux-arm-kernel@lists.infradead.org
2078 L:      dmaengine@vger.kernel.org
2079 S:      Supported
2080 F:      drivers/dma/at_xdmac.c
2081
2082 ATMEL I2C DRIVER
2083 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2084 L:      linux-i2c@vger.kernel.org
2085 S:      Supported
2086 F:      drivers/i2c/busses/i2c-at91.c
2087
2088 ATMEL ISI DRIVER
2089 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2090 L:      linux-media@vger.kernel.org
2091 S:      Supported
2092 F:      drivers/media/platform/soc_camera/atmel-isi.c
2093 F:      include/media/atmel-isi.h
2094
2095 ATMEL LCDFB DRIVER
2096 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2097 L:      linux-fbdev@vger.kernel.org
2098 S:      Maintained
2099 F:      drivers/video/fbdev/atmel_lcdfb.c
2100 F:      include/video/atmel_lcdc.h
2101
2102 ATMEL MACB ETHERNET DRIVER
2103 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2104 S:      Supported
2105 F:      drivers/net/ethernet/cadence/
2106
2107 ATMEL NAND DRIVER
2108 M:      Wenyou Yang <wenyou.yang@atmel.com>
2109 M:      Josh Wu <rainyfeeling@outlook.com>
2110 L:      linux-mtd@lists.infradead.org
2111 S:      Supported
2112 F:      drivers/mtd/nand/atmel_nand*
2113
2114 ATMEL SDMMC DRIVER
2115 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2116 L:      linux-mmc@vger.kernel.org
2117 S:      Supported
2118 F:      drivers/mmc/host/sdhci-of-at91.c
2119
2120 ATMEL SPI DRIVER
2121 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2122 S:      Supported
2123 F:      drivers/spi/spi-atmel.*
2124
2125 ATMEL SSC DRIVER
2126 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Supported
2129 F:      drivers/misc/atmel-ssc.c
2130 F:      include/linux/atmel-ssc.h
2131
2132 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2133 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2135 S:      Supported
2136 F:      drivers/misc/atmel_tclib.c
2137 F:      drivers/clocksource/tcb_clksrc.c
2138
2139 ATMEL USBA UDC DRIVER
2140 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Supported
2143 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2144
2145 ATMEL WIRELESS DRIVER
2146 M:      Simon Kelley <simon@thekelleys.org.uk>
2147 L:      linux-wireless@vger.kernel.org
2148 W:      http://www.thekelleys.org.uk/atmel
2149 W:      http://atmelwlandriver.sourceforge.net/
2150 S:      Maintained
2151 F:      drivers/net/wireless/atmel/atmel*
2152
2153 ATMEL MAXTOUCH DRIVER
2154 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2155 T:      git git://github.com/atmel-maxtouch/linux.git
2156 S:      Supported
2157 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2158 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2159 F:      include/linux/platform_data/atmel_mxt_ts.h
2160
2161 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2162 M:      Bradley Grove <linuxdrivers@attotech.com>
2163 L:      linux-scsi@vger.kernel.org
2164 W:      http://www.attotech.com
2165 S:      Supported
2166 F:      drivers/scsi/esas2r
2167
2168 ATUSB IEEE 802.15.4 RADIO DRIVER
2169 M:      Stefan Schmidt <stefan@osg.samsung.com>
2170 L:      linux-wpan@vger.kernel.org
2171 S:      Maintained
2172 F:      drivers/net/ieee802154/atusb.c
2173 F:      drivers/net/ieee802154/atusb.h
2174 F:      drivers/net/ieee802154/at86rf230.h
2175
2176 AUDIT SUBSYSTEM
2177 M:      Paul Moore <paul@paul-moore.com>
2178 M:      Eric Paris <eparis@redhat.com>
2179 L:      linux-audit@redhat.com (moderated for non-subscribers)
2180 W:      http://people.redhat.com/sgrubb/audit/
2181 T:      git git://git.infradead.org/users/pcmoore/audit
2182 S:      Maintained
2183 F:      include/linux/audit.h
2184 F:      include/uapi/linux/audit.h
2185 F:      kernel/audit*
2186
2187 AUXILIARY DISPLAY DRIVERS
2188 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2189 W:      http://miguelojeda.es/auxdisplay.htm
2190 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2191 S:      Maintained
2192 F:      drivers/auxdisplay/
2193 F:      include/linux/cfag12864b.h
2194
2195 AVR32 ARCHITECTURE
2196 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2197 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2198 W:      http://www.atmel.com/products/AVR32/
2199 W:      http://mirror.egtvedt.no/avr32linux.org/
2200 W:      http://avrfreaks.net/
2201 S:      Maintained
2202 F:      arch/avr32/
2203
2204 AVR32/AT32AP MACHINE SUPPORT
2205 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2206 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2207 S:      Maintained
2208 F:      arch/avr32/mach-at32ap/
2209
2210 AX.25 NETWORK LAYER
2211 M:      Ralf Baechle <ralf@linux-mips.org>
2212 L:      linux-hams@vger.kernel.org
2213 W:      http://www.linux-ax25.org/
2214 S:      Maintained
2215 F:      include/uapi/linux/ax25.h
2216 F:      include/net/ax25.h
2217 F:      net/ax25/
2218
2219 AZ6007 DVB DRIVER
2220 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2221 L:      linux-media@vger.kernel.org
2222 W:      https://linuxtv.org
2223 T:      git git://linuxtv.org/media_tree.git
2224 S:      Maintained
2225 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2226
2227 AZTECH FM RADIO RECEIVER DRIVER
2228 M:      Hans Verkuil <hverkuil@xs4all.nl>
2229 L:      linux-media@vger.kernel.org
2230 T:      git git://linuxtv.org/media_tree.git
2231 W:      https://linuxtv.org
2232 S:      Maintained
2233 F:      drivers/media/radio/radio-aztech*
2234
2235 B43 WIRELESS DRIVER
2236 L:      linux-wireless@vger.kernel.org
2237 L:      b43-dev@lists.infradead.org
2238 W:      http://wireless.kernel.org/en/users/Drivers/b43
2239 S:      Odd Fixes
2240 F:      drivers/net/wireless/broadcom/b43/
2241
2242 B43LEGACY WIRELESS DRIVER
2243 M:      Larry Finger <Larry.Finger@lwfinger.net>
2244 L:      linux-wireless@vger.kernel.org
2245 L:      b43-dev@lists.infradead.org
2246 W:      http://wireless.kernel.org/en/users/Drivers/b43
2247 S:      Maintained
2248 F:      drivers/net/wireless/broadcom/b43legacy/
2249
2250 BACKLIGHT CLASS/SUBSYSTEM
2251 M:      Jingoo Han <jingoohan1@gmail.com>
2252 M:      Lee Jones <lee.jones@linaro.org>
2253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2254 S:      Maintained
2255 F:      drivers/video/backlight/
2256 F:      include/linux/backlight.h
2257
2258 BATMAN ADVANCED
2259 M:      Marek Lindner <mareklindner@neomailbox.ch>
2260 M:      Simon Wunderlich <sw@simonwunderlich.de>
2261 M:      Antonio Quartulli <a@unstable.cc>
2262 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
2263 W:      https://www.open-mesh.org/
2264 Q:      https://patchwork.open-mesh.org/project/batman/list/
2265 S:      Maintained
2266 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2267 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2268 F:      Documentation/networking/batman-adv.txt
2269 F:      net/batman-adv/
2270
2271 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2272 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2273 L:      linux-hams@vger.kernel.org
2274 W:      http://www.baycom.org/~tom/ham/ham.html
2275 S:      Maintained
2276 F:      drivers/net/hamradio/baycom*
2277
2278 BCACHE (BLOCK LAYER CACHE)
2279 M:      Kent Overstreet <kent.overstreet@gmail.com>
2280 L:      linux-bcache@vger.kernel.org
2281 W:      http://bcache.evilpiepirate.org
2282 S:      Maintained
2283 F:      drivers/md/bcache/
2284
2285 BDISP ST MEDIA DRIVER
2286 M:      Fabien Dessenne <fabien.dessenne@st.com>
2287 L:      linux-media@vger.kernel.org
2288 T:      git git://linuxtv.org/media_tree.git
2289 W:      https://linuxtv.org
2290 S:      Supported
2291 F:      drivers/media/platform/sti/bdisp
2292
2293 BEFS FILE SYSTEM
2294 S:      Orphan
2295 F:      Documentation/filesystems/befs.txt
2296 F:      fs/befs/
2297
2298 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2299 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2300 L:      netdev@vger.kernel.org
2301 S:      Maintained
2302 F:      drivers/net/ethernet/ec_bhf.c
2303
2304 BFS FILE SYSTEM
2305 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2306 S:      Maintained
2307 F:      Documentation/filesystems/bfs.txt
2308 F:      fs/bfs/
2309 F:      include/uapi/linux/bfs_fs.h
2310
2311 BLACKFIN ARCHITECTURE
2312 M:      Steven Miao <realmz6@gmail.com>
2313 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2314 T:      git git://git.code.sf.net/p/adi-linux/code
2315 W:      http://blackfin.uclinux.org
2316 S:      Supported
2317 F:      arch/blackfin/
2318
2319 BLACKFIN EMAC DRIVER
2320 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2321 W:      http://blackfin.uclinux.org
2322 S:      Supported
2323 F:      drivers/net/ethernet/adi/
2324
2325 BLACKFIN RTC DRIVER
2326 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2327 W:      http://blackfin.uclinux.org
2328 S:      Supported
2329 F:      drivers/rtc/rtc-bfin.c
2330
2331 BLACKFIN SDH DRIVER
2332 M:      Sonic Zhang <sonic.zhang@analog.com>
2333 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2334 W:      http://blackfin.uclinux.org
2335 S:      Supported
2336 F:      drivers/mmc/host/bfin_sdh.c
2337
2338 BLACKFIN SERIAL DRIVER
2339 M:      Sonic Zhang <sonic.zhang@analog.com>
2340 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2341 W:      http://blackfin.uclinux.org
2342 S:      Supported
2343 F:      drivers/tty/serial/bfin_uart.c
2344
2345 BLACKFIN WATCHDOG DRIVER
2346 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2347 W:      http://blackfin.uclinux.org
2348 S:      Supported
2349 F:      drivers/watchdog/bfin_wdt.c
2350
2351 BLACKFIN I2C TWI DRIVER
2352 M:      Sonic Zhang <sonic.zhang@analog.com>
2353 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2354 W:      http://blackfin.uclinux.org/
2355 S:      Supported
2356 F:      drivers/i2c/busses/i2c-bfin-twi.c
2357
2358 BLACKFIN MEDIA DRIVER
2359 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2360 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2361 W:      http://blackfin.uclinux.org/
2362 S:      Supported
2363 F:      drivers/media/platform/blackfin/
2364 F:      drivers/media/i2c/adv7183*
2365 F:      drivers/media/i2c/vs6624*
2366
2367 BLINKM RGB LED DRIVER
2368 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2369 S:      Maintained
2370 F:      drivers/leds/leds-blinkm.c
2371
2372 BLOCK LAYER
2373 M:      Jens Axboe <axboe@kernel.dk>
2374 L:      linux-block@vger.kernel.org
2375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2376 S:      Maintained
2377 F:      block/
2378 F:      kernel/trace/blktrace.c
2379
2380 BLOCK2MTD DRIVER
2381 M:      Joern Engel <joern@lazybastard.org>
2382 L:      linux-mtd@lists.infradead.org
2383 S:      Maintained
2384 F:      drivers/mtd/devices/block2mtd.c
2385
2386 BLUETOOTH DRIVERS
2387 M:      Marcel Holtmann <marcel@holtmann.org>
2388 M:      Gustavo Padovan <gustavo@padovan.org>
2389 M:      Johan Hedberg <johan.hedberg@gmail.com>
2390 L:      linux-bluetooth@vger.kernel.org
2391 W:      http://www.bluez.org/
2392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2394 S:      Maintained
2395 F:      drivers/bluetooth/
2396
2397 BLUETOOTH SUBSYSTEM
2398 M:      Marcel Holtmann <marcel@holtmann.org>
2399 M:      Gustavo Padovan <gustavo@padovan.org>
2400 M:      Johan Hedberg <johan.hedberg@gmail.com>
2401 L:      linux-bluetooth@vger.kernel.org
2402 W:      http://www.bluez.org/
2403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2405 S:      Maintained
2406 F:      net/bluetooth/
2407 F:      include/net/bluetooth/
2408
2409 BONDING DRIVER
2410 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2411 M:      Veaceslav Falico <vfalico@gmail.com>
2412 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2413 L:      netdev@vger.kernel.org
2414 W:      http://sourceforge.net/projects/bonding/
2415 S:      Supported
2416 F:      drivers/net/bonding/
2417 F:      include/uapi/linux/if_bonding.h
2418
2419 BPF (Safe dynamic programs and tools)
2420 M:      Alexei Starovoitov <ast@kernel.org>
2421 L:      netdev@vger.kernel.org
2422 L:      linux-kernel@vger.kernel.org
2423 S:      Supported
2424 F:      kernel/bpf/
2425
2426 BROADCOM B44 10/100 ETHERNET DRIVER
2427 M:      Gary Zambrano <zambrano@broadcom.com>
2428 L:      netdev@vger.kernel.org
2429 S:      Supported
2430 F:      drivers/net/ethernet/broadcom/b44.*
2431
2432 BROADCOM GENET ETHERNET DRIVER
2433 M:      Florian Fainelli <f.fainelli@gmail.com>
2434 L:      netdev@vger.kernel.org
2435 S:      Supported
2436 F:      drivers/net/ethernet/broadcom/genet/
2437
2438 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2439 M:      Sony Chacko <sony.chacko@qlogic.com>
2440 M:      Dept-HSGLinuxNICDev@qlogic.com
2441 L:      netdev@vger.kernel.org
2442 S:      Supported
2443 F:      drivers/net/ethernet/broadcom/bnx2.*
2444 F:      drivers/net/ethernet/broadcom/bnx2_*
2445
2446 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2447 M:      Ariel Elior <ariel.elior@qlogic.com>
2448 L:      netdev@vger.kernel.org
2449 S:      Supported
2450 F:      drivers/net/ethernet/broadcom/bnx2x/
2451
2452 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2453 M:      Florian Fainelli <f.fainelli@gmail.com>
2454 M:      Ray Jui <rjui@broadcom.com>
2455 M:      Scott Branden <sbranden@broadcom.com>
2456 L:      bcm-kernel-feedback-list@broadcom.com
2457 T:      git git://github.com/broadcom/mach-bcm
2458 S:      Maintained
2459 F:      arch/arm/mach-bcm/
2460 F:      arch/arm/boot/dts/bcm113*
2461 F:      arch/arm/boot/dts/bcm216*
2462 F:      arch/arm/boot/dts/bcm281*
2463 F:      arch/arm64/boot/dts/broadcom/
2464 F:      arch/arm/configs/bcm_defconfig
2465 F:      drivers/mmc/host/sdhci-bcm-kona.c
2466 F:      drivers/clocksource/bcm_kona_timer.c
2467
2468 BROADCOM BCM2835 ARM ARCHITECTURE
2469 M:      Stephen Warren <swarren@wwwdotorg.org>
2470 M:      Lee Jones <lee@kernel.org>
2471 M:      Eric Anholt <eric@anholt.net>
2472 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2475 S:      Maintained
2476 N:      bcm2835
2477
2478 BROADCOM BCM47XX MIPS ARCHITECTURE
2479 M:      Hauke Mehrtens <hauke@hauke-m.de>
2480 M:      Rafał Miłecki <zajec5@gmail.com>
2481 L:      linux-mips@linux-mips.org
2482 S:      Maintained
2483 F:      arch/mips/bcm47xx/*
2484 F:      arch/mips/include/asm/mach-bcm47xx/*
2485
2486 BROADCOM BCM5301X ARM ARCHITECTURE
2487 M:      Hauke Mehrtens <hauke@hauke-m.de>
2488 L:      linux-arm-kernel@lists.infradead.org
2489 S:      Maintained
2490 F:      arch/arm/mach-bcm/bcm_5301x.c
2491 F:      arch/arm/boot/dts/bcm5301x.dtsi
2492 F:      arch/arm/boot/dts/bcm470*
2493
2494 BROADCOM BCM63XX ARM ARCHITECTURE
2495 M:      Florian Fainelli <f.fainelli@gmail.com>
2496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2497 L:      bcm-kernel-feedback-list@broadcom.com
2498 T:      git git://github.com/broadcom/stblinux.git
2499 S:      Maintained
2500 F:      arch/arm/mach-bcm/bcm63xx.c
2501 F:      arch/arm/include/debug/bcm63xx.S
2502
2503 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2504 M:      Kevin Cernekee <cernekee@gmail.com>
2505 L:      linux-usb@vger.kernel.org
2506 S:      Maintained
2507 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2508
2509 BROADCOM BCM7XXX ARM ARCHITECTURE
2510 M:      Brian Norris <computersforpeace@gmail.com>
2511 M:      Gregory Fong <gregory.0xf0@gmail.com>
2512 M:      Florian Fainelli <f.fainelli@gmail.com>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 L:      bcm-kernel-feedback-list@broadcom.com
2515 T:      git git://github.com/broadcom/stblinux.git
2516 S:      Maintained
2517 F:      arch/arm/mach-bcm/*brcmstb*
2518 F:      arch/arm/boot/dts/bcm7*.dts*
2519 F:      drivers/bus/brcmstb_gisb.c
2520 N:      brcmstb
2521
2522 BROADCOM BMIPS MIPS ARCHITECTURE
2523 M:      Kevin Cernekee <cernekee@gmail.com>
2524 M:      Florian Fainelli <f.fainelli@gmail.com>
2525 L:      linux-mips@linux-mips.org
2526 T:      git git://github.com/broadcom/stblinux.git
2527 S:      Maintained
2528 F:      arch/mips/bmips/*
2529 F:      arch/mips/include/asm/mach-bmips/*
2530 F:      arch/mips/kernel/*bmips*
2531 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2532 F:      drivers/irqchip/irq-bcm63*
2533 F:      drivers/irqchip/irq-bcm7*
2534 F:      drivers/irqchip/irq-brcmstb*
2535 F:      include/linux/bcm963xx_nvram.h
2536 F:      include/linux/bcm963xx_tag.h
2537
2538 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2539 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
2540 M:      Prashant Sreedharan <prashant@broadcom.com>
2541 M:      Michael Chan <mchan@broadcom.com>
2542 L:      netdev@vger.kernel.org
2543 S:      Supported
2544 F:      drivers/net/ethernet/broadcom/tg3.*
2545
2546 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2547 M:      Brett Rudley <brudley@broadcom.com>
2548 M:      Arend van Spriel <arend@broadcom.com>
2549 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2550 M:      Hante Meuleman <meuleman@broadcom.com>
2551 L:      linux-wireless@vger.kernel.org
2552 L:      brcm80211-dev-list@broadcom.com
2553 S:      Supported
2554 F:      drivers/net/wireless/broadcom/brcm80211/
2555
2556 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2557 M:      QLogic-Storage-Upstream@qlogic.com
2558 L:      linux-scsi@vger.kernel.org
2559 S:      Supported
2560 F:      drivers/scsi/bnx2fc/
2561
2562 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2563 M:      QLogic-Storage-Upstream@qlogic.com
2564 L:      linux-scsi@vger.kernel.org
2565 S:      Supported
2566 F:      drivers/scsi/bnx2i/
2567
2568 BROADCOM IPROC ARM ARCHITECTURE
2569 M:      Ray Jui <rjui@broadcom.com>
2570 M:      Scott Branden <sbranden@broadcom.com>
2571 M:      Jon Mason <jonmason@broadcom.com>
2572 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2573 L:      bcm-kernel-feedback-list@broadcom.com
2574 T:      git git://github.com/broadcom/cygnus-linux.git
2575 S:      Maintained
2576 N:      iproc
2577 N:      cygnus
2578 N:      nsp
2579 N:      bcm9113*
2580 N:      bcm9583*
2581 N:      bcm9585*
2582 N:      bcm9586*
2583 N:      bcm988312
2584 N:      bcm113*
2585 N:      bcm583*
2586 N:      bcm585*
2587 N:      bcm586*
2588 N:      bcm88312
2589
2590 BROADCOM BRCMSTB GPIO DRIVER
2591 M:      Gregory Fong <gregory.0xf0@gmail.com>
2592 L:      bcm-kernel-feedback-list@broadcom.com
2593 S:      Supported
2594 F:      drivers/gpio/gpio-brcmstb.c
2595 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2596
2597 BROADCOM KONA GPIO DRIVER
2598 M:      Ray Jui <rjui@broadcom.com>
2599 L:      bcm-kernel-feedback-list@broadcom.com
2600 S:      Supported
2601 F:      drivers/gpio/gpio-bcm-kona.c
2602 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2603
2604 BROADCOM NVRAM DRIVER
2605 M:      Rafał Miłecki <zajec5@gmail.com>
2606 L:      linux-mips@linux-mips.org
2607 S:      Maintained
2608 F:      drivers/firmware/broadcom/*
2609
2610 BROADCOM STB NAND FLASH DRIVER
2611 M:      Brian Norris <computersforpeace@gmail.com>
2612 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2613 L:      linux-mtd@lists.infradead.org
2614 L:      bcm-kernel-feedback-list@broadcom.com
2615 S:      Maintained
2616 F:      drivers/mtd/nand/brcmnand/
2617
2618 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2619 M:      Rafał Miłecki <zajec5@gmail.com>
2620 L:      linux-wireless@vger.kernel.org
2621 S:      Maintained
2622 F:      drivers/bcma/
2623 F:      include/linux/bcma/
2624
2625 BROADCOM SYSTEMPORT ETHERNET DRIVER
2626 M:      Florian Fainelli <f.fainelli@gmail.com>
2627 L:      netdev@vger.kernel.org
2628 S:      Supported
2629 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2630
2631 BROADCOM VULCAN ARM64 SOC
2632 M:      Jayachandran C. <jchandra@broadcom.com>
2633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2634 L:      bcm-kernel-feedback-list@broadcom.com
2635 S:      Maintained
2636 F:      arch/arm64/boot/dts/broadcom/vulcan*
2637
2638 BROCADE BFA FC SCSI DRIVER
2639 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2640 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2641 L:      linux-scsi@vger.kernel.org
2642 S:      Supported
2643 F:      drivers/scsi/bfa/
2644
2645 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2646 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2647 L:      netdev@vger.kernel.org
2648 S:      Supported
2649 F:      drivers/net/ethernet/brocade/bna/
2650
2651 BSG (block layer generic sg v4 driver)
2652 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2653 L:      linux-scsi@vger.kernel.org
2654 S:      Supported
2655 F:      block/bsg.c
2656 F:      include/linux/bsg.h
2657 F:      include/uapi/linux/bsg.h
2658
2659 BT87X AUDIO DRIVER
2660 M:      Clemens Ladisch <clemens@ladisch.de>
2661 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2662 T:      git git://git.alsa-project.org/alsa-kernel.git
2663 S:      Maintained
2664 F:      Documentation/sound/alsa/Bt87x.txt
2665 F:      sound/pci/bt87x.c
2666
2667 BT8XXGPIO DRIVER
2668 M:      Michael Buesch <m@bues.ch>
2669 W:      http://bu3sch.de/btgpio.php
2670 S:      Maintained
2671 F:      drivers/gpio/gpio-bt8xx.c
2672
2673 BTRFS FILE SYSTEM
2674 M:      Chris Mason <clm@fb.com>
2675 M:      Josef Bacik <jbacik@fb.com>
2676 M:      David Sterba <dsterba@suse.com>
2677 L:      linux-btrfs@vger.kernel.org
2678 W:      http://btrfs.wiki.kernel.org/
2679 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2681 S:      Maintained
2682 F:      Documentation/filesystems/btrfs.txt
2683 F:      fs/btrfs/
2684
2685 BTTV VIDEO4LINUX DRIVER
2686 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2687 L:      linux-media@vger.kernel.org
2688 W:      https://linuxtv.org
2689 T:      git git://linuxtv.org/media_tree.git
2690 S:      Odd fixes
2691 F:      Documentation/video4linux/bttv/
2692 F:      drivers/media/pci/bt8xx/bttv*
2693
2694 BUSLOGIC SCSI DRIVER
2695 M:      Khalid Aziz <khalid@gonehiking.org>
2696 L:      linux-scsi@vger.kernel.org
2697 S:      Maintained
2698 F:      drivers/scsi/BusLogic.*
2699 F:      drivers/scsi/FlashPoint.*
2700
2701 C-MEDIA CMI8788 DRIVER
2702 M:      Clemens Ladisch <clemens@ladisch.de>
2703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2704 T:      git git://git.alsa-project.org/alsa-kernel.git
2705 S:      Maintained
2706 F:      sound/pci/oxygen/
2707
2708 C6X ARCHITECTURE
2709 M:      Mark Salter <msalter@redhat.com>
2710 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2711 L:      linux-c6x-dev@linux-c6x.org
2712 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2713 S:      Maintained
2714 F:      arch/c6x/
2715
2716 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2717 M:      David Howells <dhowells@redhat.com>
2718 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2719 S:      Supported
2720 F:      Documentation/filesystems/caching/cachefiles.txt
2721 F:      fs/cachefiles/
2722
2723 CADET FM/AM RADIO RECEIVER DRIVER
2724 M:      Hans Verkuil <hverkuil@xs4all.nl>
2725 L:      linux-media@vger.kernel.org
2726 T:      git git://linuxtv.org/media_tree.git
2727 W:      https://linuxtv.org
2728 S:      Maintained
2729 F:      drivers/media/radio/radio-cadet*
2730
2731 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2732 M:      Jonathan Corbet <corbet@lwn.net>
2733 L:      linux-media@vger.kernel.org
2734 T:      git git://linuxtv.org/media_tree.git
2735 S:      Maintained
2736 F:      Documentation/video4linux/cafe_ccic
2737 F:      drivers/media/platform/marvell-ccic/
2738
2739 CAIF NETWORK LAYER
2740 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2741 L:      netdev@vger.kernel.org
2742 S:      Supported
2743 F:      Documentation/networking/caif/
2744 F:      drivers/net/caif/
2745 F:      include/uapi/linux/caif/
2746 F:      include/net/caif/
2747 F:      net/caif/
2748
2749 CALGARY x86-64 IOMMU
2750 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2751 M:      "Jon D. Mason" <jdmason@kudzu.us>
2752 L:      discuss@x86-64.org
2753 S:      Maintained
2754 F:      arch/x86/kernel/pci-calgary_64.c
2755 F:      arch/x86/kernel/tce_64.c
2756 F:      arch/x86/include/asm/calgary.h
2757 F:      arch/x86/include/asm/tce.h
2758
2759 CAN NETWORK LAYER
2760 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2761 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2762 L:      linux-can@vger.kernel.org
2763 W:      https://github.com/linux-can
2764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2766 S:      Maintained
2767 F:      Documentation/networking/can.txt
2768 F:      net/can/
2769 F:      include/linux/can/core.h
2770 F:      include/uapi/linux/can.h
2771 F:      include/uapi/linux/can/bcm.h
2772 F:      include/uapi/linux/can/raw.h
2773 F:      include/uapi/linux/can/gw.h
2774
2775 CAN NETWORK DRIVERS
2776 M:      Wolfgang Grandegger <wg@grandegger.com>
2777 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2778 L:      linux-can@vger.kernel.org
2779 W:      https://github.com/linux-can
2780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2782 S:      Maintained
2783 F:      drivers/net/can/
2784 F:      include/linux/can/dev.h
2785 F:      include/linux/can/platform/
2786 F:      include/uapi/linux/can/error.h
2787 F:      include/uapi/linux/can/netlink.h
2788
2789 CAPABILITIES
2790 M:      Serge Hallyn <serge.hallyn@canonical.com>
2791 L:      linux-security-module@vger.kernel.org
2792 S:      Supported
2793 F:      include/linux/capability.h
2794 F:      include/uapi/linux/capability.h
2795 F:      security/commoncap.c
2796 F:      kernel/capability.c
2797
2798 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2799 M:      Kevin Tsai <ktsai@capellamicro.com>
2800 S:      Maintained
2801 F:      drivers/iio/light/cm*
2802 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2803
2804 CAVIUM LIQUIDIO NETWORK DRIVER
2805 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2806 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2807 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2808 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2809 L:     netdev@vger.kernel.org
2810 W:     http://www.cavium.com
2811 S:     Supported
2812 F:     drivers/net/ethernet/cavium/liquidio/
2813
2814 CC2520 IEEE-802.15.4 RADIO DRIVER
2815 M:      Varka Bhadram <varkabhadram@gmail.com>
2816 L:      linux-wpan@vger.kernel.org
2817 S:      Maintained
2818 F:      drivers/net/ieee802154/cc2520.c
2819 F:      include/linux/spi/cc2520.h
2820 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2821
2822 CELL BROADBAND ENGINE ARCHITECTURE
2823 M:      Arnd Bergmann <arnd@arndb.de>
2824 L:      linuxppc-dev@lists.ozlabs.org
2825 W:      http://www.ibm.com/developerworks/power/cell/
2826 S:      Supported
2827 F:      arch/powerpc/include/asm/cell*.h
2828 F:      arch/powerpc/include/asm/spu*.h
2829 F:      arch/powerpc/include/uapi/asm/spu*.h
2830 F:      arch/powerpc/oprofile/*cell*
2831 F:      arch/powerpc/platforms/cell/
2832
2833 CEPH COMMON CODE (LIBCEPH)
2834 M:      Ilya Dryomov <idryomov@gmail.com>
2835 M:      "Yan, Zheng" <zyan@redhat.com>
2836 M:      Sage Weil <sage@redhat.com>
2837 L:      ceph-devel@vger.kernel.org
2838 W:      http://ceph.com/
2839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2840 T:      git git://github.com/ceph/ceph-client.git
2841 S:      Supported
2842 F:      net/ceph/
2843 F:      include/linux/ceph/
2844 F:      include/linux/crush/
2845
2846 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2847 M:      "Yan, Zheng" <zyan@redhat.com>
2848 M:      Sage Weil <sage@redhat.com>
2849 M:      Ilya Dryomov <idryomov@gmail.com>
2850 L:      ceph-devel@vger.kernel.org
2851 W:      http://ceph.com/
2852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2853 T:      git git://github.com/ceph/ceph-client.git
2854 S:      Supported
2855 F:      Documentation/filesystems/ceph.txt
2856 F:      fs/ceph/
2857
2858 CERTIFICATE HANDLING:
2859 M:      David Howells <dhowells@redhat.com>
2860 M:      David Woodhouse <dwmw2@infradead.org>
2861 L:      keyrings@vger.kernel.org
2862 S:      Maintained
2863 F:      Documentation/module-signing.txt
2864 F:      certs/
2865 F:      scripts/sign-file.c
2866 F:      scripts/extract-cert.c
2867
2868 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2869 L:      linux-usb@vger.kernel.org
2870 S:      Orphan
2871 F:      Documentation/usb/WUSB-Design-overview.txt
2872 F:      Documentation/usb/wusb-cbaf
2873 F:      drivers/usb/host/hwa-hc.c
2874 F:      drivers/usb/host/whci/
2875 F:      drivers/usb/wusbcore/
2876 F:      include/linux/usb/wusb*
2877
2878 CFAG12864B LCD DRIVER
2879 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2880 W:      http://miguelojeda.es/auxdisplay.htm
2881 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2882 S:      Maintained
2883 F:      drivers/auxdisplay/cfag12864b.c
2884 F:      include/linux/cfag12864b.h
2885
2886 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2887 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2888 W:      http://miguelojeda.es/auxdisplay.htm
2889 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2890 S:      Maintained
2891 F:      drivers/auxdisplay/cfag12864bfb.c
2892 F:      include/linux/cfag12864b.h
2893
2894 CFG80211 and NL80211
2895 M:      Johannes Berg <johannes@sipsolutions.net>
2896 L:      linux-wireless@vger.kernel.org
2897 W:      http://wireless.kernel.org/
2898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2900 S:      Maintained
2901 F:      include/uapi/linux/nl80211.h
2902 F:      include/net/cfg80211.h
2903 F:      net/wireless/*
2904 X:      net/wireless/wext*
2905
2906 CHAR and MISC DRIVERS
2907 M:      Arnd Bergmann <arnd@arndb.de>
2908 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2910 S:      Supported
2911 F:      drivers/char/*
2912 F:      drivers/misc/*
2913 F:      include/linux/miscdevice.h
2914
2915 CHECKPATCH
2916 M:      Andy Whitcroft <apw@canonical.com>
2917 M:      Joe Perches <joe@perches.com>
2918 S:      Maintained
2919 F:      scripts/checkpatch.pl
2920
2921 CHINESE DOCUMENTATION
2922 M:      Harry Wei <harryxiyou@gmail.com>
2923 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2924 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2925 S:      Maintained
2926 F:      Documentation/zh_CN/
2927
2928 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2929 M:      Peter Chen <Peter.Chen@nxp.com>
2930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2931 L:      linux-usb@vger.kernel.org
2932 S:      Maintained
2933 F:      drivers/usb/chipidea/
2934
2935 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2936 M:      Hans de Goede <hdegoede@redhat.com>
2937 L:      linux-input@vger.kernel.org
2938 S:      Maintained
2939 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2940 F:      drivers/input/touchscreen/chipone_icn8318.c
2941
2942 CHROME HARDWARE PLATFORM SUPPORT
2943 M:      Olof Johansson <olof@lixom.net>
2944 S:      Maintained
2945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2946 F:      drivers/platform/chrome/
2947
2948 CISCO VIC ETHERNET NIC DRIVER
2949 M:      Christian Benvenuti <benve@cisco.com>
2950 M:      Sujith Sankar <ssujith@cisco.com>
2951 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2952 M:      Neel Patel <neepatel@cisco.com>
2953 S:      Supported
2954 F:      drivers/net/ethernet/cisco/enic/
2955
2956 CISCO VIC LOW LATENCY NIC DRIVER
2957 M:      Christian Benvenuti <benve@cisco.com>
2958 M:      Dave Goodell <dgoodell@cisco.com>
2959 S:      Supported
2960 F:      drivers/infiniband/hw/usnic/
2961
2962 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2963 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2964 L:      netdev@vger.kernel.org
2965 S:      Maintained
2966 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2967
2968 CIRRUS LOGIC AUDIO CODEC DRIVERS
2969 M:      Brian Austin <brian.austin@cirrus.com>
2970 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2971 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2972 S:      Maintained
2973 F:      sound/soc/codecs/cs*
2974
2975 CLEANCACHE API
2976 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2977 L:      linux-kernel@vger.kernel.org
2978 S:      Maintained
2979 F:      mm/cleancache.c
2980 F:      include/linux/cleancache.h
2981
2982 CLK API
2983 M:      Russell King <linux@armlinux.org.uk>
2984 L:      linux-clk@vger.kernel.org
2985 S:      Maintained
2986 F:      include/linux/clk.h
2987
2988 CLOCKSOURCE, CLOCKEVENT DRIVERS
2989 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2990 M:      Thomas Gleixner <tglx@linutronix.de>
2991 L:      linux-kernel@vger.kernel.org
2992 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2993 S:      Supported
2994 F:      drivers/clocksource
2995
2996 CISCO FCOE HBA DRIVER
2997 M:      Hiral Patel <hiralpat@cisco.com>
2998 M:      Suma Ramars <sramars@cisco.com>
2999 M:      Brian Uchino <buchino@cisco.com>
3000 L:      linux-scsi@vger.kernel.org
3001 S:      Supported
3002 F:      drivers/scsi/fnic/
3003
3004 CISCO SCSI HBA DRIVER
3005 M:      Narsimhulu Musini <nmusini@cisco.com>
3006 M:      Sesidhar Baddela <sebaddel@cisco.com>
3007 L:      linux-scsi@vger.kernel.org
3008 S:      Supported
3009 F:      drivers/scsi/snic/
3010
3011 CMPC ACPI DRIVER
3012 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3013 M:      Daniel Oliveira Nascimento <don@syst.com.br>
3014 L:      platform-driver-x86@vger.kernel.org
3015 S:      Supported
3016 F:      drivers/platform/x86/classmate-laptop.c
3017
3018 COBALT MEDIA DRIVER
3019 M:      Hans Verkuil <hans.verkuil@cisco.com>
3020 L:      linux-media@vger.kernel.org
3021 T:      git git://linuxtv.org/media_tree.git
3022 W:      https://linuxtv.org
3023 S:      Supported
3024 F:      drivers/media/pci/cobalt/
3025
3026 COCCINELLE/Semantic Patches (SmPL)
3027 M:      Julia Lawall <Julia.Lawall@lip6.fr>
3028 M:      Gilles Muller <Gilles.Muller@lip6.fr>
3029 M:      Nicolas Palix <nicolas.palix@imag.fr>
3030 M:      Michal Marek <mmarek@suse.com>
3031 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
3032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3033 W:      http://coccinelle.lip6.fr/
3034 S:      Supported
3035 F:      Documentation/coccinelle.txt
3036 F:      scripts/coccinelle/
3037 F:      scripts/coccicheck
3038
3039 CODA FILE SYSTEM
3040 M:      Jan Harkes <jaharkes@cs.cmu.edu>
3041 M:      coda@cs.cmu.edu
3042 L:      codalist@coda.cs.cmu.edu
3043 W:      http://www.coda.cs.cmu.edu/
3044 S:      Maintained
3045 F:      Documentation/filesystems/coda.txt
3046 F:      fs/coda/
3047 F:      include/linux/coda*.h
3048 F:      include/uapi/linux/coda*.h
3049
3050 CODA V4L2 MEM2MEM DRIVER
3051 M:      Philipp Zabel <p.zabel@pengutronix.de>
3052 L:      linux-media@vger.kernel.org
3053 S:      Maintained
3054 F:      Documentation/devicetree/bindings/media/coda.txt
3055 F:      drivers/media/platform/coda/
3056
3057 COMMON CLK FRAMEWORK
3058 M:      Michael Turquette <mturquette@baylibre.com>
3059 M:      Stephen Boyd <sboyd@codeaurora.org>
3060 L:      linux-clk@vger.kernel.org
3061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3062 S:      Maintained
3063 F:      drivers/clk/
3064 X:      drivers/clk/clkdev.c
3065 F:      include/linux/clk-pr*
3066 F:      include/linux/clk/
3067
3068 COMMON INTERNET FILE SYSTEM (CIFS)
3069 M:      Steve French <sfrench@samba.org>
3070 L:      linux-cifs@vger.kernel.org
3071 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
3072 W:      http://linux-cifs.samba.org/
3073 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3074 S:      Supported
3075 F:      Documentation/filesystems/cifs/
3076 F:      fs/cifs/
3077
3078 COMPACTPCI HOTPLUG CORE
3079 M:      Scott Murray <scott@spiteful.org>
3080 L:      linux-pci@vger.kernel.org
3081 S:      Maintained
3082 F:      drivers/pci/hotplug/cpci_hotplug*
3083
3084 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3085 M:      Scott Murray <scott@spiteful.org>
3086 L:      linux-pci@vger.kernel.org
3087 S:      Maintained
3088 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3089
3090 COMPACTPCI HOTPLUG GENERIC DRIVER
3091 M:      Scott Murray <scott@spiteful.org>
3092 L:      linux-pci@vger.kernel.org
3093 S:      Maintained
3094 F:      drivers/pci/hotplug/cpcihp_generic.c
3095
3096 COMPAL LAPTOP SUPPORT
3097 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
3098 L:      platform-driver-x86@vger.kernel.org
3099 S:      Maintained
3100 F:      drivers/platform/x86/compal-laptop.c
3101
3102 CONEXANT ACCESSRUNNER USB DRIVER
3103 L:      accessrunner-general@lists.sourceforge.net
3104 W:      http://accessrunner.sourceforge.net/
3105 S:      Orphan
3106 F:      drivers/usb/atm/cxacru.c
3107
3108 CONFIGFS
3109 M:      Joel Becker <jlbec@evilplan.org>
3110 M:      Christoph Hellwig <hch@lst.de>
3111 T:      git git://git.infradead.org/users/hch/configfs.git
3112 S:      Supported
3113 F:      fs/configfs/
3114 F:      include/linux/configfs.h
3115
3116 CONNECTOR
3117 M:      Evgeniy Polyakov <zbr@ioremap.net>
3118 L:      netdev@vger.kernel.org
3119 S:      Maintained
3120 F:      drivers/connector/
3121
3122 CONTROL GROUP (CGROUP)
3123 M:      Tejun Heo <tj@kernel.org>
3124 M:      Li Zefan <lizefan@huawei.com>
3125 M:      Johannes Weiner <hannes@cmpxchg.org>
3126 L:      cgroups@vger.kernel.org
3127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3128 S:      Maintained
3129 F:      Documentation/cgroups/
3130 F:      include/linux/cgroup*
3131 F:      kernel/cgroup*
3132
3133 CONTROL GROUP - CPUSET
3134 M:      Li Zefan <lizefan@huawei.com>
3135 L:      cgroups@vger.kernel.org
3136 W:      http://www.bullopensource.org/cpuset/
3137 W:      http://oss.sgi.com/projects/cpusets/
3138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3139 S:      Maintained
3140 F:      Documentation/cgroups/cpusets.txt
3141 F:      include/linux/cpuset.h
3142 F:      kernel/cpuset.c
3143
3144 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3145 M:      Johannes Weiner <hannes@cmpxchg.org>
3146 M:      Michal Hocko <mhocko@kernel.org>
3147 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3148 L:      cgroups@vger.kernel.org
3149 L:      linux-mm@kvack.org
3150 S:      Maintained
3151 F:      mm/memcontrol.c
3152 F:      mm/swap_cgroup.c
3153
3154 CORETEMP HARDWARE MONITORING DRIVER
3155 M:      Fenghua Yu <fenghua.yu@intel.com>
3156 L:      linux-hwmon@vger.kernel.org
3157 S:      Maintained
3158 F:      Documentation/hwmon/coretemp
3159 F:      drivers/hwmon/coretemp.c
3160
3161 COSA/SRP SYNC SERIAL DRIVER
3162 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3163 W:      http://www.fi.muni.cz/~kas/cosa/
3164 S:      Maintained
3165 F:      drivers/net/wan/cosa*
3166
3167 CPMAC ETHERNET DRIVER
3168 M:      Florian Fainelli <florian@openwrt.org>
3169 L:      netdev@vger.kernel.org
3170 S:      Maintained
3171 F:      drivers/net/ethernet/ti/cpmac.c
3172
3173 CPU FREQUENCY DRIVERS
3174 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3175 M:      Viresh Kumar <viresh.kumar@linaro.org>
3176 L:      linux-pm@vger.kernel.org
3177 S:      Maintained
3178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3179 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3180 F:      drivers/cpufreq/
3181 F:      include/linux/cpufreq.h
3182
3183 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3184 M:      Viresh Kumar <viresh.kumar@linaro.org>
3185 M:      Sudeep Holla <sudeep.holla@arm.com>
3186 L:      linux-pm@vger.kernel.org
3187 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3188 S:      Maintained
3189 F:      drivers/cpufreq/arm_big_little.h
3190 F:      drivers/cpufreq/arm_big_little.c
3191 F:      drivers/cpufreq/arm_big_little_dt.c
3192
3193 CPUIDLE DRIVER - ARM BIG LITTLE
3194 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3195 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3196 L:      linux-pm@vger.kernel.org
3197 L:      linux-arm-kernel@lists.infradead.org
3198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3199 S:      Maintained
3200 F:      drivers/cpuidle/cpuidle-big_little.c
3201
3202 CPUIDLE DRIVER - ARM EXYNOS
3203 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3204 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3205 M:      Kukjin Kim <kgene@kernel.org>
3206 L:      linux-pm@vger.kernel.org
3207 L:      linux-samsung-soc@vger.kernel.org
3208 S:      Supported
3209 F:      drivers/cpuidle/cpuidle-exynos.c
3210 F:      arch/arm/mach-exynos/pm.c
3211
3212 CPUIDLE DRIVERS
3213 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3214 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3215 L:      linux-pm@vger.kernel.org
3216 S:      Maintained
3217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3218 F:      drivers/cpuidle/*
3219 F:      include/linux/cpuidle.h
3220
3221 CPUID/MSR DRIVER
3222 M:      "H. Peter Anvin" <hpa@zytor.com>
3223 S:      Maintained
3224 F:      arch/x86/kernel/cpuid.c
3225 F:      arch/x86/kernel/msr.c
3226
3227 CPU POWER MONITORING SUBSYSTEM
3228 M:      Thomas Renninger <trenn@suse.com>
3229 L:      linux-pm@vger.kernel.org
3230 S:      Maintained
3231 F:      tools/power/cpupower/
3232
3233 CRAMFS FILESYSTEM
3234 W:      http://sourceforge.net/projects/cramfs/
3235 S:      Orphan / Obsolete
3236 F:      Documentation/filesystems/cramfs.txt
3237 F:      fs/cramfs/
3238
3239 CRIS PORT
3240 M:      Mikael Starvik <starvik@axis.com>
3241 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3242 L:      linux-cris-kernel@axis.com
3243 W:      http://developer.axis.com
3244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3245 S:      Maintained
3246 F:      arch/cris/
3247 F:      drivers/tty/serial/crisv10.*
3248
3249 CRYPTO API
3250 M:      Herbert Xu <herbert@gondor.apana.org.au>
3251 M:      "David S. Miller" <davem@davemloft.net>
3252 L:      linux-crypto@vger.kernel.org
3253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3255 S:      Maintained
3256 F:      Documentation/crypto/
3257 F:      Documentation/DocBook/crypto-API.tmpl
3258 F:      arch/*/crypto/
3259 F:      crypto/
3260 F:      drivers/crypto/
3261 F:      include/crypto/
3262
3263 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3264 M:      Neil Horman <nhorman@tuxdriver.com>
3265 L:      linux-crypto@vger.kernel.org
3266 S:      Maintained
3267 F:      crypto/ansi_cprng.c
3268 F:      crypto/rng.c
3269
3270 CS3308 MEDIA DRIVER
3271 M:      Hans Verkuil <hverkuil@xs4all.nl>
3272 L:      linux-media@vger.kernel.org
3273 T:      git git://linuxtv.org/media_tree.git
3274 W:      http://linuxtv.org
3275 S:      Odd Fixes
3276 F:      drivers/media/i2c/cs3308.c
3277 F:      drivers/media/i2c/cs3308.h
3278
3279 CS5535 Audio ALSA driver
3280 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3281 S:      Maintained
3282 F:      sound/pci/cs5535audio/
3283
3284 CW1200 WLAN driver
3285 M:      Solomon Peachy <pizza@shaftnet.org>
3286 S:      Maintained
3287 F:      drivers/net/wireless/st/cw1200/
3288
3289 CX18 VIDEO4LINUX DRIVER
3290 M:      Andy Walls <awalls@md.metrocast.net>
3291 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3292 L:      linux-media@vger.kernel.org
3293 T:      git git://linuxtv.org/media_tree.git
3294 W:      https://linuxtv.org
3295 W:      http://www.ivtvdriver.org/index.php/Cx18
3296 S:      Maintained
3297 F:      Documentation/video4linux/cx18.txt
3298 F:      drivers/media/pci/cx18/
3299 F:      include/uapi/linux/ivtv*
3300
3301 CX2341X MPEG ENCODER HELPER MODULE
3302 M:      Hans Verkuil <hverkuil@xs4all.nl>
3303 L:      linux-media@vger.kernel.org
3304 T:      git git://linuxtv.org/media_tree.git
3305 W:      https://linuxtv.org
3306 S:      Maintained
3307 F:      drivers/media/common/cx2341x*
3308 F:      include/media/cx2341x*
3309
3310 CX24120 MEDIA DRIVER
3311 M:      Jemma Denson <jdenson@gmail.com>
3312 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3313 L:      linux-media@vger.kernel.org
3314 W:      https://linuxtv.org
3315 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3316 S:      Maintained
3317 F:      drivers/media/dvb-frontends/cx24120*
3318
3319 CX88 VIDEO4LINUX DRIVER
3320 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3321 L:      linux-media@vger.kernel.org
3322 W:      https://linuxtv.org
3323 T:      git git://linuxtv.org/media_tree.git
3324 S:      Odd fixes
3325 F:      Documentation/video4linux/cx88/
3326 F:      drivers/media/pci/cx88/
3327
3328 CXD2820R MEDIA DRIVER
3329 M:      Antti Palosaari <crope@iki.fi>
3330 L:      linux-media@vger.kernel.org
3331 W:      https://linuxtv.org
3332 W:      http://palosaari.fi/linux/
3333 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3334 T:      git git://linuxtv.org/anttip/media_tree.git
3335 S:      Maintained
3336 F:      drivers/media/dvb-frontends/cxd2820r*
3337
3338 CXGB3 ETHERNET DRIVER (CXGB3)
3339 M:      Santosh Raspatur <santosh@chelsio.com>
3340 L:      netdev@vger.kernel.org
3341 W:      http://www.chelsio.com
3342 S:      Supported
3343 F:      drivers/net/ethernet/chelsio/cxgb3/
3344
3345 CXGB3 ISCSI DRIVER (CXGB3I)
3346 M:      Karen Xie <kxie@chelsio.com>
3347 L:      linux-scsi@vger.kernel.org
3348 W:      http://www.chelsio.com
3349 S:      Supported
3350 F:      drivers/scsi/cxgbi/cxgb3i
3351
3352 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3353 M:      Steve Wise <swise@chelsio.com>
3354 L:      linux-rdma@vger.kernel.org
3355 W:      http://www.openfabrics.org
3356 S:      Supported
3357 F:      drivers/infiniband/hw/cxgb3/
3358
3359 CXGB4 ETHERNET DRIVER (CXGB4)
3360 M:      Hariprasad S <hariprasad@chelsio.com>
3361 L:      netdev@vger.kernel.org
3362 W:      http://www.chelsio.com
3363 S:      Supported
3364 F:      drivers/net/ethernet/chelsio/cxgb4/
3365
3366 CXGB4 ISCSI DRIVER (CXGB4I)
3367 M:      Karen Xie <kxie@chelsio.com>
3368 L:      linux-scsi@vger.kernel.org
3369 W:      http://www.chelsio.com
3370 S:      Supported
3371 F:      drivers/scsi/cxgbi/cxgb4i
3372
3373 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3374 M:      Steve Wise <swise@chelsio.com>
3375 L:      linux-rdma@vger.kernel.org
3376 W:      http://www.openfabrics.org
3377 S:      Supported
3378 F:      drivers/infiniband/hw/cxgb4/
3379
3380 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3381 M:      Casey Leedom <leedom@chelsio.com>
3382 L:      netdev@vger.kernel.org
3383 W:      http://www.chelsio.com
3384 S:      Supported
3385 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3386
3387 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3388 M:      Ian Munsie <imunsie@au1.ibm.com>
3389 M:      Michael Neuling <mikey@neuling.org>
3390 L:      linuxppc-dev@lists.ozlabs.org
3391 S:      Supported
3392 F:      drivers/misc/cxl/
3393 F:      include/misc/cxl*
3394 F:      include/uapi/misc/cxl.h
3395 F:      Documentation/powerpc/cxl.txt
3396 F:      Documentation/powerpc/cxl.txt
3397 F:      Documentation/ABI/testing/sysfs-class-cxl
3398
3399 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3400 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3401 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3402 L:      linux-scsi@vger.kernel.org
3403 S:      Supported
3404 F:      drivers/scsi/cxlflash/
3405 F:      include/uapi/scsi/cxlflash_ioctls.h
3406 F:      Documentation/powerpc/cxlflash.txt
3407
3408 STMMAC ETHERNET DRIVER
3409 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3410 M:      Alexandre Torgue <alexandre.torgue@st.com>
3411 L:      netdev@vger.kernel.org
3412 W:      http://www.stlinux.com
3413 S:      Supported
3414 F:      drivers/net/ethernet/stmicro/stmmac/
3415
3416 CYBERPRO FB DRIVER
3417 M:      Russell King <linux@armlinux.org.uk>
3418 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3419 W:      http://www.armlinux.org.uk/
3420 S:      Maintained
3421 F:      drivers/video/fbdev/cyber2000fb.*
3422
3423 CYCLADES ASYNC MUX DRIVER
3424 W:      http://www.cyclades.com/
3425 S:      Orphan
3426 F:      drivers/tty/cyclades.c
3427 F:      include/linux/cyclades.h
3428 F:      include/uapi/linux/cyclades.h
3429
3430 CYCLADES PC300 DRIVER
3431 W:      http://www.cyclades.com/
3432 S:      Orphan
3433 F:      drivers/net/wan/pc300*
3434
3435 CYPRESS_FIRMWARE MEDIA DRIVER
3436 M:      Antti Palosaari <crope@iki.fi>
3437 L:      linux-media@vger.kernel.org
3438 W:      https://linuxtv.org
3439 W:      http://palosaari.fi/linux/
3440 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3441 T:      git git://linuxtv.org/anttip/media_tree.git
3442 S:      Maintained
3443 F:      drivers/media/common/cypress_firmware*
3444
3445 CYTTSP TOUCHSCREEN DRIVER
3446 M:      Ferruh Yigit <fery@cypress.com>
3447 L:      linux-input@vger.kernel.org
3448 S:      Supported
3449 F:      drivers/input/touchscreen/cyttsp*
3450 F:      include/linux/input/cyttsp.h
3451
3452 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3453 M:      Joshua Kinard <kumba@gentoo.org>
3454 S:      Maintained
3455 F:      drivers/rtc/rtc-ds1685.c
3456 F:      include/linux/rtc/ds1685.h
3457
3458 DAMA SLAVE for AX.25
3459 M:      Joerg Reuter <jreuter@yaina.de>
3460 W:      http://yaina.de/jreuter/
3461 W:      http://www.qsl.net/dl1bke/
3462 L:      linux-hams@vger.kernel.org
3463 S:      Maintained
3464 F:      net/ax25/af_ax25.c
3465 F:      net/ax25/ax25_dev.c
3466 F:      net/ax25/ax25_ds_*
3467 F:      net/ax25/ax25_in.c
3468 F:      net/ax25/ax25_out.c
3469 F:      net/ax25/ax25_timer.c
3470 F:      net/ax25/sysctl_net_ax25.c
3471
3472 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3473 L:      netdev@vger.kernel.org
3474 S:      Orphan
3475 F:      Documentation/networking/dmfe.txt
3476 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3477
3478 DC390/AM53C974 SCSI driver
3479 M:      Hannes Reinecke <hare@suse.com>
3480 L:      linux-scsi@vger.kernel.org
3481 S:      Maintained
3482 F:      drivers/scsi/am53c974.c
3483
3484 DC395x SCSI driver
3485 M:      Oliver Neukum <oliver@neukum.org>
3486 M:      Ali Akcaagac <aliakc@web.de>
3487 M:      Jamie Lenehan <lenehan@twibble.org>
3488 L:      dc395x@twibble.org
3489 W:      http://twibble.org/dist/dc395x/
3490 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3491 S:      Maintained
3492 F:      Documentation/scsi/dc395x.txt
3493 F:      drivers/scsi/dc395x.*
3494
3495 DCCP PROTOCOL
3496 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3497 L:      dccp@vger.kernel.org
3498 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3499 S:      Maintained
3500 F:      include/linux/dccp.h
3501 F:      include/uapi/linux/dccp.h
3502 F:      include/linux/tfrc.h
3503 F:      net/dccp/
3504
3505 DECnet NETWORK LAYER
3506 W:      http://linux-decnet.sourceforge.net
3507 L:      linux-decnet-user@lists.sourceforge.net
3508 S:      Orphan
3509 F:      Documentation/networking/decnet.txt
3510 F:      net/decnet/
3511
3512 DECSTATION PLATFORM SUPPORT
3513 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3514 L:      linux-mips@linux-mips.org
3515 W:      http://www.linux-mips.org/wiki/DECstation
3516 S:      Maintained
3517 F:      arch/mips/dec/
3518 F:      arch/mips/include/asm/dec/
3519 F:      arch/mips/include/asm/mach-dec/
3520
3521 DEFXX FDDI NETWORK DRIVER
3522 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3523 S:      Maintained
3524 F:      drivers/net/fddi/defxx.*
3525
3526 DELL LAPTOP DRIVER
3527 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3528 M:      Pali Rohár <pali.rohar@gmail.com>
3529 L:      platform-driver-x86@vger.kernel.org
3530 S:      Maintained
3531 F:      drivers/platform/x86/dell-laptop.c
3532
3533 DELL LAPTOP RBTN DRIVER
3534 M:      Pali Rohár <pali.rohar@gmail.com>
3535 S:      Maintained
3536 F:      drivers/platform/x86/dell-rbtn.*
3537
3538 DELL LAPTOP FREEFALL DRIVER
3539 M:      Pali Rohár <pali.rohar@gmail.com>
3540 S:      Maintained
3541 F:      drivers/platform/x86/dell-smo8800.c
3542
3543 DELL LAPTOP SMM DRIVER
3544 M:      Pali Rohár <pali.rohar@gmail.com>
3545 S:      Maintained
3546 F:      drivers/hwmon/dell-smm-hwmon.c
3547 F:      include/uapi/linux/i8k.h
3548
3549 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3550 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3551 S:      Maintained
3552 F:      Documentation/dcdbas.txt
3553 F:      drivers/firmware/dcdbas.*
3554
3555 DELL WMI EXTRAS DRIVER
3556 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3557 M:      Pali Rohár <pali.rohar@gmail.com>
3558 S:      Maintained
3559 F:      drivers/platform/x86/dell-wmi.c
3560
3561 DESIGNWARE USB2 DRD IP DRIVER
3562 M:      John Youn <johnyoun@synopsys.com>
3563 L:      linux-usb@vger.kernel.org
3564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3565 S:      Maintained
3566 F:      drivers/usb/dwc2/
3567
3568 DESIGNWARE USB3 DRD IP DRIVER
3569 M:      Felipe Balbi <balbi@kernel.org>
3570 L:      linux-usb@vger.kernel.org
3571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3572 S:      Maintained
3573 F:      drivers/usb/dwc3/
3574
3575 DEVICE COREDUMP (DEV_COREDUMP)
3576 M:      Johannes Berg <johannes@sipsolutions.net>
3577 L:      linux-kernel@vger.kernel.org
3578 S:      Maintained
3579 F:      drivers/base/devcoredump.c
3580 F:      include/linux/devcoredump.h
3581
3582 DEVICE FREQUENCY (DEVFREQ)
3583 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3584 M:      Kyungmin Park <kyungmin.park@samsung.com>
3585 L:      linux-pm@vger.kernel.org
3586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3587 S:      Maintained
3588 F:      drivers/devfreq/
3589 F:      include/linux/devfreq.h
3590 F:      Documentation/devicetree/bindings/devfreq/
3591
3592 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3593 M:      Chanwoo Choi <cw00.choi@samsung.com>
3594 L:      linux-pm@vger.kernel.org
3595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3596 S:      Supported
3597 F:      drivers/devfreq/event/
3598 F:      drivers/devfreq/devfreq-event.c
3599 F:      include/linux/devfreq-event.h
3600 F:      Documentation/devicetree/bindings/devfreq/event/
3601
3602 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3603 M:      Chanwoo Choi <cw00.choi@samsung.com>
3604 L:      linux-pm@vger.kernel.org
3605 L:      linux-samsung-soc@vger.kernel.org
3606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3607 S:      Maintained
3608 F:      drivers/devfreq/exynos-bus.c
3609 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3610
3611 DEVICE NUMBER REGISTRY
3612 M:      Torben Mathiasen <device@lanana.org>
3613 W:      http://lanana.org/docs/device-list/index.html
3614 S:      Maintained
3615
3616 DEVICE-MAPPER  (LVM)
3617 M:      Alasdair Kergon <agk@redhat.com>
3618 M:      Mike Snitzer <snitzer@redhat.com>
3619 M:      dm-devel@redhat.com
3620 L:      dm-devel@redhat.com
3621 W:      http://sources.redhat.com/dm
3622 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3624 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3625 S:      Maintained
3626 F:      Documentation/device-mapper/
3627 F:      drivers/md/dm*
3628 F:      drivers/md/persistent-data/
3629 F:      include/linux/device-mapper.h
3630 F:      include/linux/dm-*.h
3631 F:      include/uapi/linux/dm-*.h
3632
3633 DEVLINK
3634 M:      Jiri Pirko <jiri@mellanox.com>
3635 L:      netdev@vger.kernel.org
3636 S:      Supported
3637 F:      net/core/devlink.c
3638 F:      include/net/devlink.h
3639 F:      include/uapi/linux/devlink.h
3640
3641 DIALOG SEMICONDUCTOR DRIVERS
3642 M:      Support Opensource <support.opensource@diasemi.com>
3643 W:      http://www.dialog-semiconductor.com/products
3644 S:      Supported
3645 F:      Documentation/hwmon/da90??
3646 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3647 F:      drivers/gpio/gpio-da90??.c
3648 F:      drivers/hwmon/da90??-hwmon.c
3649 F:      drivers/iio/adc/da91??-*.c
3650 F:      drivers/input/misc/da90??_onkey.c
3651 F:      drivers/input/touchscreen/da9052_tsi.c
3652 F:      drivers/leds/leds-da90??.c
3653 F:      drivers/mfd/da903x.c
3654 F:      drivers/mfd/da90??-*.c
3655 F:      drivers/mfd/da91??-*.c
3656 F:      drivers/power/da9052-battery.c
3657 F:      drivers/power/da91??-*.c
3658 F:      drivers/regulator/da903x.c
3659 F:      drivers/regulator/da9???-regulator.[ch]
3660 F:      drivers/rtc/rtc-da90??.c
3661 F:      drivers/video/backlight/da90??_bl.c
3662 F:      drivers/watchdog/da90??_wdt.c
3663 F:      include/linux/mfd/da903x.h
3664 F:      include/linux/mfd/da9052/
3665 F:      include/linux/mfd/da9055/
3666 F:      include/linux/mfd/da9063/
3667 F:      include/linux/mfd/da9150/
3668 F:      include/sound/da[79]*.h
3669 F:      sound/soc/codecs/da[79]*.[ch]
3670
3671 DIGI NEO AND CLASSIC PCI PRODUCTS
3672 M:      Lidza Louina <lidza.louina@gmail.com>
3673 M:      Mark Hounschell <markh@compro.net>
3674 L:      driverdev-devel@linuxdriverproject.org
3675 S:      Maintained
3676 F:      drivers/staging/dgnc/
3677
3678 DIOLAN U2C-12 I2C DRIVER
3679 M:      Guenter Roeck <linux@roeck-us.net>
3680 L:      linux-i2c@vger.kernel.org
3681 S:      Maintained
3682 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3683
3684 DIRECT ACCESS (DAX)
3685 M:      Matthew Wilcox <willy@linux.intel.com>
3686 L:      linux-fsdevel@vger.kernel.org
3687 S:      Supported
3688 F:      fs/dax.c
3689
3690 DIRECTORY NOTIFICATION (DNOTIFY)
3691 M:      Eric Paris <eparis@parisplace.org>
3692 S:      Maintained
3693 F:      Documentation/filesystems/dnotify.txt
3694 F:      fs/notify/dnotify/
3695 F:      include/linux/dnotify.h
3696
3697 DISK GEOMETRY AND PARTITION HANDLING
3698 M:      Andries Brouwer <aeb@cwi.nl>
3699 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3700 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3701 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3702 S:      Maintained
3703
3704 DISKQUOTA
3705 M:      Jan Kara <jack@suse.com>
3706 S:      Maintained
3707 F:      Documentation/filesystems/quota.txt
3708 F:      fs/quota/
3709 F:      include/linux/quota*.h
3710 F:      include/uapi/linux/quota*.h
3711
3712 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3713 M:      Bernie Thompson <bernie@plugable.com>
3714 L:      linux-fbdev@vger.kernel.org
3715 S:      Maintained
3716 W:      http://plugable.com/category/projects/udlfb/
3717 F:      drivers/video/fbdev/udlfb.c
3718 F:      include/video/udlfb.h
3719 F:      Documentation/fb/udlfb.txt
3720
3721 DISTRIBUTED LOCK MANAGER (DLM)
3722 M:      Christine Caulfield <ccaulfie@redhat.com>
3723 M:      David Teigland <teigland@redhat.com>
3724 L:      cluster-devel@redhat.com
3725 W:      http://sources.redhat.com/cluster/
3726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3727 S:      Supported
3728 F:      fs/dlm/
3729
3730 DMA BUFFER SHARING FRAMEWORK
3731 M:      Sumit Semwal <sumit.semwal@linaro.org>
3732 S:      Maintained
3733 L:      linux-media@vger.kernel.org
3734 L:      dri-devel@lists.freedesktop.org
3735 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3736 F:      drivers/dma-buf/
3737 F:      include/linux/dma-buf*
3738 F:      include/linux/reservation.h
3739 F:      include/linux/*fence.h
3740 F:      Documentation/dma-buf-sharing.txt
3741 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3742
3743 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3744 M:      Vinod Koul <vinod.koul@intel.com>
3745 L:      dmaengine@vger.kernel.org
3746 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3747 S:      Maintained
3748 F:      drivers/dma/
3749 F:      include/linux/dmaengine.h
3750 F:      Documentation/dmaengine/
3751 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3752
3753 DME1737 HARDWARE MONITOR DRIVER
3754 M:      Juerg Haefliger <juergh@gmail.com>
3755 L:      linux-hwmon@vger.kernel.org
3756 S:      Maintained
3757 F:      Documentation/hwmon/dme1737
3758 F:      drivers/hwmon/dme1737.c
3759
3760 DMI/SMBIOS SUPPORT
3761 M:      Jean Delvare <jdelvare@suse.com>
3762 S:      Maintained
3763 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3764 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3765 F:      drivers/firmware/dmi-id.c
3766 F:      drivers/firmware/dmi_scan.c
3767 F:      include/linux/dmi.h
3768
3769 DOCUMENTATION
3770 M:      Jonathan Corbet <corbet@lwn.net>
3771 L:      linux-doc@vger.kernel.org
3772 S:      Maintained
3773 F:      Documentation/
3774 F:      scripts/docproc.c
3775 F:      scripts/kernel-doc*
3776 X:      Documentation/ABI/
3777 X:      Documentation/devicetree/
3778 X:      Documentation/acpi
3779 X:      Documentation/power
3780 X:      Documentation/spi
3781 X:      Documentation/DocBook/media
3782 T:      git git://git.lwn.net/linux.git docs-next
3783
3784 DOUBLETALK DRIVER
3785 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3786 L:      blinux-list@redhat.com
3787 S:      Maintained
3788 F:      drivers/char/dtlk.c
3789 F:      include/linux/dtlk.h
3790
3791 DPT_I2O SCSI RAID DRIVER
3792 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3793 L:      linux-scsi@vger.kernel.org
3794 W:      http://www.adaptec.com/
3795 S:      Maintained
3796 F:      drivers/scsi/dpt*
3797 F:      drivers/scsi/dpt/
3798
3799 DRBD DRIVER
3800 M:      Philipp Reisner <philipp.reisner@linbit.com>
3801 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3802 L:      drbd-dev@lists.linbit.com
3803 W:      http://www.drbd.org
3804 T:      git git://git.linbit.com/linux-drbd.git
3805 T:      git git://git.linbit.com/drbd-8.4.git
3806 S:      Supported
3807 F:      drivers/block/drbd/
3808 F:      lib/lru_cache.c
3809 F:      Documentation/blockdev/drbd/
3810
3811 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3812 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3814 S:      Supported
3815 F:      Documentation/kobject.txt
3816 F:      drivers/base/
3817 F:      fs/debugfs/
3818 F:      fs/kernfs/
3819 F:      fs/sysfs/
3820 F:      include/linux/debugfs.h
3821 F:      include/linux/kobj*
3822 F:      lib/kobj*
3823
3824 DRM DRIVERS
3825 M:      David Airlie <airlied@linux.ie>
3826 L:      dri-devel@lists.freedesktop.org
3827 T:      git git://people.freedesktop.org/~airlied/linux
3828 S:      Maintained
3829 F:      drivers/gpu/drm/
3830 F:      drivers/gpu/vga/
3831 F:      include/drm/
3832 F:      include/uapi/drm/
3833
3834 RADEON and AMDGPU DRM DRIVERS
3835 M:      Alex Deucher <alexander.deucher@amd.com>
3836 M:      Christian König <christian.koenig@amd.com>
3837 L:      dri-devel@lists.freedesktop.org
3838 T:      git git://people.freedesktop.org/~agd5f/linux
3839 S:      Supported
3840 F:      drivers/gpu/drm/radeon/
3841 F:      include/uapi/drm/radeon*
3842 F:      drivers/gpu/drm/amd/
3843 F:      include/uapi/drm/amdgpu*
3844
3845 DRM PANEL DRIVERS
3846 M:      Thierry Reding <thierry.reding@gmail.com>
3847 L:      dri-devel@lists.freedesktop.org
3848 T:      git git://anongit.freedesktop.org/tegra/linux.git
3849 S:      Maintained
3850 F:      drivers/gpu/drm/drm_panel.c
3851 F:      drivers/gpu/drm/panel/
3852 F:      include/drm/drm_panel.h
3853 F:      Documentation/devicetree/bindings/display/panel/
3854
3855 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3856 M:      Daniel Vetter <daniel.vetter@intel.com>
3857 M:      Jani Nikula <jani.nikula@linux.intel.com>
3858 L:      intel-gfx@lists.freedesktop.org
3859 L:      dri-devel@lists.freedesktop.org
3860 W:      https://01.org/linuxgraphics/
3861 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3862 T:      git git://anongit.freedesktop.org/drm-intel
3863 S:      Supported
3864 F:      drivers/gpu/drm/i915/
3865 F:      include/drm/i915*
3866 F:      include/uapi/drm/i915*
3867
3868 DRM DRIVERS FOR ATMEL HLCDC
3869 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3870 L:      dri-devel@lists.freedesktop.org
3871 S:      Supported
3872 F:      drivers/gpu/drm/atmel-hlcdc/
3873 F:      Documentation/devicetree/bindings/drm/atmel/
3874
3875 DRM DRIVERS FOR EXYNOS
3876 M:      Inki Dae <inki.dae@samsung.com>
3877 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3878 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3879 M:      Kyungmin Park <kyungmin.park@samsung.com>
3880 L:      dri-devel@lists.freedesktop.org
3881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3882 S:      Supported
3883 F:      drivers/gpu/drm/exynos/
3884 F:      include/drm/exynos*
3885 F:      include/uapi/drm/exynos*
3886
3887 DRM DRIVERS FOR FREESCALE DCU
3888 M:      Stefan Agner <stefan@agner.ch>
3889 M:      Alison Wang <alison.wang@freescale.com>
3890 L:      dri-devel@lists.freedesktop.org
3891 S:      Supported
3892 F:      drivers/gpu/drm/fsl-dcu/
3893 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3894 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3895
3896 DRM DRIVERS FOR FREESCALE IMX
3897 M:      Philipp Zabel <p.zabel@pengutronix.de>
3898 L:      dri-devel@lists.freedesktop.org
3899 S:      Maintained
3900 F:      drivers/gpu/drm/imx/
3901 F:      drivers/gpu/ipu-v3/
3902 F:      Documentation/devicetree/bindings/display/imx/
3903
3904 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3905 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3906 L:      dri-devel@lists.freedesktop.org
3907 T:      git git://github.com/patjak/drm-gma500
3908 S:      Maintained
3909 F:      drivers/gpu/drm/gma500
3910 F:      include/drm/gma500*
3911
3912 DRM DRIVERS FOR NVIDIA TEGRA
3913 M:      Thierry Reding <thierry.reding@gmail.com>
3914 M:      Terje Bergström <tbergstrom@nvidia.com>
3915 L:      dri-devel@lists.freedesktop.org
3916 L:      linux-tegra@vger.kernel.org
3917 T:      git git://anongit.freedesktop.org/tegra/linux.git
3918 S:      Supported
3919 F:      drivers/gpu/drm/tegra/
3920 F:      drivers/gpu/host1x/
3921 F:      include/linux/host1x.h
3922 F:      include/uapi/drm/tegra_drm.h
3923 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3924
3925 DRM DRIVERS FOR RENESAS
3926 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3927 L:      dri-devel@lists.freedesktop.org
3928 L:      linux-renesas-soc@vger.kernel.org
3929 T:      git git://people.freedesktop.org/~airlied/linux
3930 S:      Supported
3931 F:      drivers/gpu/drm/rcar-du/
3932 F:      drivers/gpu/drm/shmobile/
3933 F:      include/linux/platform_data/shmob_drm.h
3934
3935 DRM DRIVERS FOR ROCKCHIP
3936 M:      Mark Yao <mark.yao@rock-chips.com>
3937 L:      dri-devel@lists.freedesktop.org
3938 S:      Maintained
3939 F:      drivers/gpu/drm/rockchip/
3940 F:      Documentation/devicetree/bindings/display/rockchip*
3941
3942 DRM DRIVERS FOR STI
3943 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3944 M:      Vincent Abriou <vincent.abriou@st.com>
3945 L:      dri-devel@lists.freedesktop.org
3946 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3947 S:      Maintained
3948 F:      drivers/gpu/drm/sti
3949 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3950
3951 DRM DRIVERS FOR VIVANTE GPU IP
3952 M:      Lucas Stach <l.stach@pengutronix.de>
3953 R:      Russell King <linux+etnaviv@armlinux.org.uk>
3954 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3955 L:      dri-devel@lists.freedesktop.org
3956 S:      Maintained
3957 F:      drivers/gpu/drm/etnaviv
3958 F:      Documentation/devicetree/bindings/display/etnaviv
3959
3960 DSBR100 USB FM RADIO DRIVER
3961 M:      Alexey Klimov <klimov.linux@gmail.com>
3962 L:      linux-media@vger.kernel.org
3963 T:      git git://linuxtv.org/media_tree.git
3964 S:      Maintained
3965 F:      drivers/media/radio/dsbr100.c
3966
3967 DSCC4 DRIVER
3968 M:      Francois Romieu <romieu@fr.zoreil.com>
3969 L:      netdev@vger.kernel.org
3970 S:      Maintained
3971 F:      drivers/net/wan/dscc4.c
3972
3973 DT3155 MEDIA DRIVER
3974 M:      Hans Verkuil <hverkuil@xs4all.nl>
3975 L:      linux-media@vger.kernel.org
3976 T:      git git://linuxtv.org/media_tree.git
3977 W:      https://linuxtv.org
3978 S:      Odd Fixes
3979 F:      drivers/media/pci/dt3155/
3980
3981 DVB_USB_AF9015 MEDIA DRIVER
3982 M:      Antti Palosaari <crope@iki.fi>
3983 L:      linux-media@vger.kernel.org
3984 W:      https://linuxtv.org
3985 W:      http://palosaari.fi/linux/
3986 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3987 T:      git git://linuxtv.org/anttip/media_tree.git
3988 S:      Maintained
3989 F:      drivers/media/usb/dvb-usb-v2/af9015*
3990
3991 DVB_USB_AF9035 MEDIA DRIVER
3992 M:      Antti Palosaari <crope@iki.fi>
3993 L:      linux-media@vger.kernel.org
3994 W:      https://linuxtv.org
3995 W:      http://palosaari.fi/linux/
3996 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3997 T:      git git://linuxtv.org/anttip/media_tree.git
3998 S:      Maintained
3999 F:      drivers/media/usb/dvb-usb-v2/af9035*
4000
4001 DVB_USB_ANYSEE MEDIA DRIVER
4002 M:      Antti Palosaari <crope@iki.fi>
4003 L:      linux-media@vger.kernel.org
4004 W:      https://linuxtv.org
4005 W:      http://palosaari.fi/linux/
4006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4007 T:      git git://linuxtv.org/anttip/media_tree.git
4008 S:      Maintained
4009 F:      drivers/media/usb/dvb-usb-v2/anysee*
4010
4011 DVB_USB_AU6610 MEDIA DRIVER
4012 M:      Antti Palosaari <crope@iki.fi>
4013 L:      linux-media@vger.kernel.org
4014 W:      https://linuxtv.org
4015 W:      http://palosaari.fi/linux/
4016 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4017 T:      git git://linuxtv.org/anttip/media_tree.git
4018 S:      Maintained
4019 F:      drivers/media/usb/dvb-usb-v2/au6610*
4020
4021 DVB_USB_CE6230 MEDIA DRIVER
4022 M:      Antti Palosaari <crope@iki.fi>
4023 L:      linux-media@vger.kernel.org
4024 W:      https://linuxtv.org
4025 W:      http://palosaari.fi/linux/
4026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4027 T:      git git://linuxtv.org/anttip/media_tree.git
4028 S:      Maintained
4029 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4030
4031 DVB_USB_CXUSB MEDIA DRIVER
4032 M:      Michael Krufky <mkrufky@linuxtv.org>
4033 L:      linux-media@vger.kernel.org
4034 W:      https://linuxtv.org
4035 W:      http://github.com/mkrufky
4036 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4037 T:      git git://linuxtv.org/media_tree.git
4038 S:      Maintained
4039 F:      drivers/media/usb/dvb-usb/cxusb*
4040
4041 DVB_USB_EC168 MEDIA DRIVER
4042 M:      Antti Palosaari <crope@iki.fi>
4043 L:      linux-media@vger.kernel.org
4044 W:      https://linuxtv.org
4045 W:      http://palosaari.fi/linux/
4046 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4047 T:      git git://linuxtv.org/anttip/media_tree.git
4048 S:      Maintained
4049 F:      drivers/media/usb/dvb-usb-v2/ec168*
4050
4051 DVB_USB_GL861 MEDIA DRIVER
4052 M:      Antti Palosaari <crope@iki.fi>
4053 L:      linux-media@vger.kernel.org
4054 W:      https://linuxtv.org
4055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4056 T:      git git://linuxtv.org/anttip/media_tree.git
4057 S:      Maintained
4058 F:      drivers/media/usb/dvb-usb-v2/gl861*
4059
4060 DVB_USB_MXL111SF MEDIA DRIVER
4061 M:      Michael Krufky <mkrufky@linuxtv.org>
4062 L:      linux-media@vger.kernel.org
4063 W:      https://linuxtv.org
4064 W:      http://github.com/mkrufky
4065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4066 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4067 S:      Maintained
4068 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4069
4070 DVB_USB_RTL28XXU MEDIA DRIVER
4071 M:      Antti Palosaari <crope@iki.fi>
4072 L:      linux-media@vger.kernel.org
4073 W:      https://linuxtv.org
4074 W:      http://palosaari.fi/linux/
4075 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4076 T:      git git://linuxtv.org/anttip/media_tree.git
4077 S:      Maintained
4078 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4079
4080 DVB_USB_V2 MEDIA DRIVER
4081 M:      Antti Palosaari <crope@iki.fi>
4082 L:      linux-media@vger.kernel.org
4083 W:      https://linuxtv.org
4084 W:      http://palosaari.fi/linux/
4085 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4086 T:      git git://linuxtv.org/anttip/media_tree.git
4087 S:      Maintained
4088 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4089 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4090
4091 DYNAMIC DEBUG
4092 M:      Jason Baron <jbaron@akamai.com>
4093 S:      Maintained
4094 F:      lib/dynamic_debug.c
4095 F:      include/linux/dynamic_debug.h
4096
4097 DZ DECSTATION DZ11 SERIAL DRIVER
4098 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
4099 S:      Maintained
4100 F:      drivers/tty/serial/dz.*
4101
4102 E3X0 POWER BUTTON DRIVER
4103 M:      Moritz Fischer <moritz.fischer@ettus.com>
4104 L:      usrp-users@lists.ettus.com
4105 W:      http://www.ettus.com
4106 S:      Supported
4107 F:      drivers/input/misc/e3x0-button.c
4108 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4109
4110 E4000 MEDIA DRIVER
4111 M:      Antti Palosaari <crope@iki.fi>
4112 L:      linux-media@vger.kernel.org
4113 W:      https://linuxtv.org
4114 W:      http://palosaari.fi/linux/
4115 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4116 T:      git git://linuxtv.org/anttip/media_tree.git
4117 S:      Maintained
4118 F:      drivers/media/tuners/e4000*
4119
4120 EATA ISA/EISA/PCI SCSI DRIVER
4121 M:      Dario Ballabio <ballabio_dario@emc.com>
4122 L:      linux-scsi@vger.kernel.org
4123 S:      Maintained
4124 F:      drivers/scsi/eata.c
4125
4126 EC100 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/dvb-frontends/ec100*
4135
4136 ECRYPT FILE SYSTEM
4137 M:      Tyler Hicks <tyhicks@canonical.com>
4138 L:      ecryptfs@vger.kernel.org
4139 W:      http://ecryptfs.org
4140 W:      https://launchpad.net/ecryptfs
4141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4142 S:      Supported
4143 F:      Documentation/filesystems/ecryptfs.txt
4144 F:      fs/ecryptfs/
4145
4146 EDAC-CORE
4147 M:      Doug Thompson <dougthompson@xmission.com>
4148 M:      Borislav Petkov <bp@alien8.de>
4149 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4150 L:      linux-edac@vger.kernel.org
4151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4153 S:      Supported
4154 F:      Documentation/edac.txt
4155 F:      drivers/edac/
4156 F:      include/linux/edac.h
4157
4158 EDAC-AMD64
4159 M:      Doug Thompson <dougthompson@xmission.com>
4160 M:      Borislav Petkov <bp@alien8.de>
4161 L:      linux-edac@vger.kernel.org
4162 S:      Maintained
4163 F:      drivers/edac/amd64_edac*
4164
4165 EDAC-CALXEDA
4166 M:      Doug Thompson <dougthompson@xmission.com>
4167 M:      Robert Richter <rric@kernel.org>
4168 L:      linux-edac@vger.kernel.org
4169 S:      Maintained
4170 F:      drivers/edac/highbank*
4171
4172 EDAC-CAVIUM
4173 M:      Ralf Baechle <ralf@linux-mips.org>
4174 M:      David Daney <david.daney@cavium.com>
4175 L:      linux-edac@vger.kernel.org
4176 L:      linux-mips@linux-mips.org
4177 S:      Supported
4178 F:      drivers/edac/octeon_edac*
4179
4180 EDAC-E752X
4181 M:      Mark Gross <mark.gross@intel.com>
4182 M:      Doug Thompson <dougthompson@xmission.com>
4183 L:      linux-edac@vger.kernel.org
4184 S:      Maintained
4185 F:      drivers/edac/e752x_edac.c
4186
4187 EDAC-E7XXX
4188 M:      Doug Thompson <dougthompson@xmission.com>
4189 L:      linux-edac@vger.kernel.org
4190 S:      Maintained
4191 F:      drivers/edac/e7xxx_edac.c
4192
4193 EDAC-GHES
4194 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4195 L:      linux-edac@vger.kernel.org
4196 S:      Maintained
4197 F:      drivers/edac/ghes_edac.c
4198
4199 EDAC-I82443BXGX
4200 M:      Tim Small <tim@buttersideup.com>
4201 L:      linux-edac@vger.kernel.org
4202 S:      Maintained
4203 F:      drivers/edac/i82443bxgx_edac.c
4204
4205 EDAC-I3000
4206 M:      Jason Uhlenkott <juhlenko@akamai.com>
4207 L:      linux-edac@vger.kernel.org
4208 S:      Maintained
4209 F:      drivers/edac/i3000_edac.c
4210
4211 EDAC-I5000
4212 M:      Doug Thompson <dougthompson@xmission.com>
4213 L:      linux-edac@vger.kernel.org
4214 S:      Maintained
4215 F:      drivers/edac/i5000_edac.c
4216
4217 EDAC-I5400
4218 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4219 L:      linux-edac@vger.kernel.org
4220 S:      Maintained
4221 F:      drivers/edac/i5400_edac.c
4222
4223 EDAC-I7300
4224 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4225 L:      linux-edac@vger.kernel.org
4226 S:      Maintained
4227 F:      drivers/edac/i7300_edac.c
4228
4229 EDAC-I7CORE
4230 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4231 L:      linux-edac@vger.kernel.org
4232 S:      Maintained
4233 F:      drivers/edac/i7core_edac.c
4234
4235 EDAC-I82975X
4236 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4237 M:      "Arvind R." <arvino55@gmail.com>
4238 L:      linux-edac@vger.kernel.org
4239 S:      Maintained
4240 F:      drivers/edac/i82975x_edac.c
4241
4242 EDAC-IE31200
4243 M:      Jason Baron <jbaron@akamai.com>
4244 L:      linux-edac@vger.kernel.org
4245 S:      Maintained
4246 F:      drivers/edac/ie31200_edac.c
4247
4248 EDAC-MPC85XX
4249 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4250 L:      linux-edac@vger.kernel.org
4251 S:      Maintained
4252 F:      drivers/edac/mpc85xx_edac.[ch]
4253
4254 EDAC-PASEMI
4255 M:      Egor Martovetsky <egor@pasemi.com>
4256 L:      linux-edac@vger.kernel.org
4257 S:      Maintained
4258 F:      drivers/edac/pasemi_edac.c
4259
4260 EDAC-R82600
4261 M:      Tim Small <tim@buttersideup.com>
4262 L:      linux-edac@vger.kernel.org
4263 S:      Maintained
4264 F:      drivers/edac/r82600_edac.c
4265
4266 EDAC-SBRIDGE
4267 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4268 L:      linux-edac@vger.kernel.org
4269 S:      Maintained
4270 F:      drivers/edac/sb_edac.c
4271
4272 EDAC-XGENE
4273 APPLIED MICRO (APM) X-GENE SOC EDAC
4274 M:     Loc Ho <lho@apm.com>
4275 S:     Supported
4276 F:     drivers/edac/xgene_edac.c
4277 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4278
4279 EDIROL UA-101/UA-1000 DRIVER
4280 M:      Clemens Ladisch <clemens@ladisch.de>
4281 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4282 T:      git git://git.alsa-project.org/alsa-kernel.git
4283 S:      Maintained
4284 F:      sound/usb/misc/ua101.c
4285
4286 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4287 M:      Matt Fleming <matt@codeblueprint.co.uk>
4288 L:      linux-efi@vger.kernel.org
4289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4290 S:      Maintained
4291 F:      Documentation/efi-stub.txt
4292 F:      arch/ia64/kernel/efi.c
4293 F:      arch/x86/boot/compressed/eboot.[ch]
4294 F:      arch/x86/include/asm/efi.h
4295 F:      arch/x86/platform/efi/
4296 F:      drivers/firmware/efi/
4297 F:      include/linux/efi*.h
4298
4299 EFI VARIABLE FILESYSTEM
4300 M:      Matthew Garrett <matthew.garrett@nebula.com>
4301 M:      Jeremy Kerr <jk@ozlabs.org>
4302 M:      Matt Fleming <matt@codeblueprint.co.uk>
4303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4304 L:      linux-efi@vger.kernel.org
4305 S:      Maintained
4306 F:      fs/efivarfs/
4307
4308 EFIFB FRAMEBUFFER DRIVER
4309 L:      linux-fbdev@vger.kernel.org
4310 M:      Peter Jones <pjones@redhat.com>
4311 S:      Maintained
4312 F:      drivers/video/fbdev/efifb.c
4313
4314 EFS FILESYSTEM
4315 W:      http://aeschi.ch.eu.org/efs/
4316 S:      Orphan
4317 F:      fs/efs/
4318
4319 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4320 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4321 L:      netdev@vger.kernel.org
4322 S:      Maintained
4323 F:      drivers/net/ethernet/ibm/ehea/
4324
4325 EM28XX VIDEO4LINUX DRIVER
4326 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4327 L:      linux-media@vger.kernel.org
4328 W:      https://linuxtv.org
4329 T:      git git://linuxtv.org/media_tree.git
4330 S:      Maintained
4331 F:      drivers/media/usb/em28xx/
4332
4333 EMBEDDED LINUX
4334 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4335 M:      Matt Mackall <mpm@selenic.com>
4336 M:      David Woodhouse <dwmw2@infradead.org>
4337 L:      linux-embedded@vger.kernel.org
4338 S:      Maintained
4339
4340 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4341 M:      James Smart <james.smart@avagotech.com>
4342 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4343 L:      linux-scsi@vger.kernel.org
4344 W:      http://www.avagotech.com
4345 S:      Supported
4346 F:      drivers/scsi/lpfc/
4347
4348 ENE CB710 FLASH CARD READER DRIVER
4349 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
4350 S:      Maintained
4351 F:      drivers/misc/cb710/
4352 F:      drivers/mmc/host/cb710-mmc.*
4353 F:      include/linux/cb710.h
4354
4355 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4356 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4357 S:      Maintained
4358 F:      drivers/media/rc/ene_ir.*
4359
4360 EPSON S1D13XXX FRAMEBUFFER DRIVER
4361 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4362 S:      Maintained
4363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4364 F:      drivers/video/fbdev/s1d13xxxfb.c
4365 F:      include/video/s1d13xxxfb.h
4366
4367 ET131X NETWORK DRIVER
4368 M:      Mark Einon <mark.einon@gmail.com>
4369 S:      Odd Fixes
4370 F:      drivers/net/ethernet/agere/
4371
4372 ETHERNET BRIDGE
4373 M:      Stephen Hemminger <stephen@networkplumber.org>
4374 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
4375 L:      netdev@vger.kernel.org
4376 W:      http://www.linuxfoundation.org/en/Net:Bridge
4377 S:      Maintained
4378 F:      include/linux/netfilter_bridge/
4379 F:      net/bridge/
4380
4381 ETHERNET PHY LIBRARY
4382 M:      Florian Fainelli <f.fainelli@gmail.com>
4383 L:      netdev@vger.kernel.org
4384 S:      Maintained
4385 F:      include/linux/phy.h
4386 F:      include/linux/phy_fixed.h
4387 F:      drivers/net/phy/
4388 F:      Documentation/networking/phy.txt
4389 F:      drivers/of/of_mdio.c
4390 F:      drivers/of/of_net.c
4391
4392 EXT2 FILE SYSTEM
4393 M:      Jan Kara <jack@suse.com>
4394 L:      linux-ext4@vger.kernel.org
4395 S:      Maintained
4396 F:      Documentation/filesystems/ext2.txt
4397 F:      fs/ext2/
4398 F:      include/linux/ext2*
4399
4400 EXT4 FILE SYSTEM
4401 M:      "Theodore Ts'o" <tytso@mit.edu>
4402 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4403 L:      linux-ext4@vger.kernel.org
4404 W:      http://ext4.wiki.kernel.org
4405 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4407 S:      Maintained
4408 F:      Documentation/filesystems/ext4.txt
4409 F:      fs/ext4/
4410
4411 Extended Verification Module (EVM)
4412 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4413 L:      linux-ima-devel@lists.sourceforge.net
4414 L:      linux-security-module@vger.kernel.org
4415 S:      Supported
4416 F:      security/integrity/evm/
4417
4418 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4419 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4420 M:      Chanwoo Choi <cw00.choi@samsung.com>
4421 L:      linux-kernel@vger.kernel.org
4422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4423 S:      Maintained
4424 F:      drivers/extcon/
4425 F:      include/linux/extcon/
4426 F:      include/linux/extcon.h
4427 F:      Documentation/extcon/
4428 F:      Documentation/devicetree/bindings/extcon/
4429
4430 EXYNOS DP DRIVER
4431 M:      Jingoo Han <jingoohan1@gmail.com>
4432 L:      dri-devel@lists.freedesktop.org
4433 S:      Maintained
4434 F:      drivers/gpu/drm/exynos/exynos_dp*
4435
4436 EXYNOS SYSMMU (IOMMU) driver
4437 M:      Marek Szyprowski <m.szyprowski@samsung.com>
4438 L:      iommu@lists.linux-foundation.org
4439 S:      Maintained
4440 F:      drivers/iommu/exynos-iommu.c
4441
4442 EXYNOS MIPI DISPLAY DRIVERS
4443 M:      Inki Dae <inki.dae@samsung.com>
4444 M:      Donghwa Lee <dh09.lee@samsung.com>
4445 M:      Kyungmin Park <kyungmin.park@samsung.com>
4446 L:      linux-fbdev@vger.kernel.org
4447 S:      Maintained
4448 F:      drivers/video/fbdev/exynos/exynos_mipi*
4449 F:      include/video/exynos_mipi*
4450
4451 EZchip NPS platform support
4452 M:      Noam Camus <noamc@ezchip.com>
4453 S:      Supported
4454 F:      arch/arc/plat-eznps
4455 F:      arch/arc/boot/dts/eznps.dts
4456
4457 F71805F HARDWARE MONITORING DRIVER
4458 M:      Jean Delvare <jdelvare@suse.com>
4459 L:      linux-hwmon@vger.kernel.org
4460 S:      Maintained
4461 F:      Documentation/hwmon/f71805f
4462 F:      drivers/hwmon/f71805f.c
4463
4464 FC0011 TUNER DRIVER
4465 M:      Michael Buesch <m@bues.ch>
4466 L:      linux-media@vger.kernel.org
4467 S:      Maintained
4468 F:      drivers/media/tuners/fc0011.h
4469 F:      drivers/media/tuners/fc0011.c
4470
4471 FC2580 MEDIA DRIVER
4472 M:      Antti Palosaari <crope@iki.fi>
4473 L:      linux-media@vger.kernel.org
4474 W:      https://linuxtv.org
4475 W:      http://palosaari.fi/linux/
4476 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4477 T:      git git://linuxtv.org/anttip/media_tree.git
4478 S:      Maintained
4479 F:      drivers/media/tuners/fc2580*
4480
4481 FANOTIFY
4482 M:      Eric Paris <eparis@redhat.com>
4483 S:      Maintained
4484 F:      fs/notify/fanotify/
4485 F:      include/linux/fanotify.h
4486 F:      include/uapi/linux/fanotify.h
4487
4488 FARSYNC SYNCHRONOUS DRIVER
4489 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4490 W:      http://www.farsite.co.uk/
4491 S:      Supported
4492 F:      drivers/net/wan/farsync.*
4493
4494 FAULT INJECTION SUPPORT
4495 M:      Akinobu Mita <akinobu.mita@gmail.com>
4496 S:      Supported
4497 F:      Documentation/fault-injection/
4498 F:      lib/fault-inject.c
4499
4500 FBTFT Framebuffer drivers
4501 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4502 M:      Noralf Trønnes <noralf@tronnes.org>
4503 S:      Maintained
4504 F:      drivers/staging/fbtft/
4505
4506 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4507 M:      Vasu Dev <vasu.dev@intel.com>
4508 L:      fcoe-devel@open-fcoe.org
4509 W:      www.Open-FCoE.org
4510 S:      Supported
4511 F:      drivers/scsi/libfc/
4512 F:      drivers/scsi/fcoe/
4513 F:      include/scsi/fc/
4514 F:      include/scsi/libfc.h
4515 F:      include/scsi/libfcoe.h
4516 F:      include/uapi/scsi/fc/
4517
4518 FILE LOCKING (flock() and fcntl()/lockf())
4519 M:      Jeff Layton <jlayton@poochiereds.net>
4520 M:      "J. Bruce Fields" <bfields@fieldses.org>
4521 L:      linux-fsdevel@vger.kernel.org
4522 S:      Maintained
4523 F:      include/linux/fcntl.h
4524 F:      include/linux/fs.h
4525 F:      include/uapi/linux/fcntl.h
4526 F:      include/uapi/linux/fs.h
4527 F:      fs/fcntl.c
4528 F:      fs/locks.c
4529
4530 FILESYSTEMS (VFS and infrastructure)
4531 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4532 L:      linux-fsdevel@vger.kernel.org
4533 S:      Maintained
4534 F:      fs/*
4535
4536 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4537 M:      Riku Voipio <riku.voipio@iki.fi>
4538 L:      linux-hwmon@vger.kernel.org
4539 S:      Maintained
4540 F:      drivers/hwmon/f75375s.c
4541 F:      include/linux/f75375s.h
4542
4543 FIREWIRE AUDIO DRIVERS
4544 M:      Clemens Ladisch <clemens@ladisch.de>
4545 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4546 T:      git git://git.alsa-project.org/alsa-kernel.git
4547 S:      Maintained
4548 F:      sound/firewire/
4549
4550 FIREWIRE MEDIA DRIVERS (firedtv)
4551 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4552 L:      linux-media@vger.kernel.org
4553 L:      linux1394-devel@lists.sourceforge.net
4554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4555 S:      Maintained
4556 F:      drivers/media/firewire/
4557
4558 FIREWIRE SBP-2 TARGET
4559 M:      Chris Boot <bootc@bootc.net>
4560 L:      linux-scsi@vger.kernel.org
4561 L:      target-devel@vger.kernel.org
4562 L:      linux1394-devel@lists.sourceforge.net
4563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4564 S:      Maintained
4565 F:      drivers/target/sbp/
4566
4567 FIREWIRE SUBSYSTEM
4568 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4569 L:      linux1394-devel@lists.sourceforge.net
4570 W:      http://ieee1394.wiki.kernel.org/
4571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4572 S:      Maintained
4573 F:      drivers/firewire/
4574 F:      include/linux/firewire.h
4575 F:      include/uapi/linux/firewire*.h
4576 F:      tools/firewire/
4577
4578 FIRMWARE LOADER (request_firmware)
4579 M:      Ming Lei <ming.lei@canonical.com>
4580 L:      linux-kernel@vger.kernel.org
4581 S:      Maintained
4582 F:      Documentation/firmware_class/
4583 F:      drivers/base/firmware*.c
4584 F:      include/linux/firmware.h
4585
4586 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4587 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4588 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4589 S:      Maintained
4590 F:      drivers/block/rsxx/
4591
4592 FLOPPY DRIVER
4593 M:      Jiri Kosina <jikos@kernel.org>
4594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4595 S:      Odd fixes
4596 F:      drivers/block/floppy.c
4597
4598 FMC SUBSYSTEM
4599 M:      Alessandro Rubini <rubini@gnudd.com>
4600 W:      http://www.ohwr.org/projects/fmc-bus
4601 S:      Supported
4602 F:      drivers/fmc/
4603 F:      include/linux/fmc*.h
4604 F:      include/linux/ipmi-fru.h
4605 K:      fmc_d.*register
4606
4607 FPGA MANAGER FRAMEWORK
4608 M:      Alan Tull <atull@opensource.altera.com>
4609 R:      Moritz Fischer <moritz.fischer@ettus.com>
4610 S:      Maintained
4611 F:      drivers/fpga/
4612 F:      include/linux/fpga/fpga-mgr.h
4613 W:      http://www.rocketboards.org
4614
4615 FPU EMULATOR
4616 M:      Bill Metzenthen <billm@melbpc.org.au>
4617 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4618 S:      Maintained
4619 F:      arch/x86/math-emu/
4620
4621 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4622 L:      netdev@vger.kernel.org
4623 S:      Orphan
4624 F:      drivers/net/wan/dlci.c
4625 F:      drivers/net/wan/sdla.c
4626
4627 FRAMEBUFFER LAYER
4628 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4629 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4630 L:      linux-fbdev@vger.kernel.org
4631 W:      http://linux-fbdev.sourceforge.net/
4632 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4634 S:      Maintained
4635 F:      Documentation/fb/
4636 F:      drivers/video/
4637 F:      include/video/
4638 F:      include/linux/fb.h
4639 F:      include/uapi/video/
4640 F:      include/uapi/linux/fb.h
4641
4642 FREESCALE DIU FRAMEBUFFER DRIVER
4643 M:      Timur Tabi <timur@tabi.org>
4644 L:      linux-fbdev@vger.kernel.org
4645 S:      Maintained
4646 F:      drivers/video/fbdev/fsl-diu-fb.*
4647
4648 FREESCALE DMA DRIVER
4649 M:      Li Yang <leoli@freescale.com>
4650 M:      Zhang Wei <zw@zh-kernel.org>
4651 L:      linuxppc-dev@lists.ozlabs.org
4652 S:      Maintained
4653 F:      drivers/dma/fsldma.*
4654
4655 FREESCALE GPMI NAND DRIVER
4656 M:      Han Xu <han.xu@nxp.com>
4657 L:      linux-mtd@lists.infradead.org
4658 S:      Maintained
4659 F:      drivers/mtd/nand/gpmi-nand/*
4660
4661 FREESCALE I2C CPM DRIVER
4662 M:      Jochen Friedrich <jochen@scram.de>
4663 L:      linuxppc-dev@lists.ozlabs.org
4664 L:      linux-i2c@vger.kernel.org
4665 S:      Maintained
4666 F:      drivers/i2c/busses/i2c-cpm.c
4667
4668 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4669 M:      Sascha Hauer <kernel@pengutronix.de>
4670 L:      linux-fbdev@vger.kernel.org
4671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4672 S:      Maintained
4673 F:      include/linux/platform_data/video-imxfb.h
4674 F:      drivers/video/fbdev/imxfb.c
4675
4676 FREESCALE QUAD SPI DRIVER
4677 M:      Han Xu <han.xu@nxp.com>
4678 L:      linux-mtd@lists.infradead.org
4679 S:      Maintained
4680 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4681
4682 FREESCALE SOC FS_ENET DRIVER
4683 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4684 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4685 L:      linuxppc-dev@lists.ozlabs.org
4686 L:      netdev@vger.kernel.org
4687 S:      Maintained
4688 F:      drivers/net/ethernet/freescale/fs_enet/
4689 F:      include/linux/fs_enet_pd.h
4690
4691 FREESCALE IMX / MXC FEC DRIVER
4692 M:      Fugang Duan <fugang.duan@nxp.com>
4693 L:      netdev@vger.kernel.org
4694 S:      Maintained
4695 F:      drivers/net/ethernet/freescale/fec_main.c
4696 F:      drivers/net/ethernet/freescale/fec_ptp.c
4697 F:      drivers/net/ethernet/freescale/fec.h
4698 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
4699
4700 FREESCALE QUICC ENGINE LIBRARY
4701 L:      linuxppc-dev@lists.ozlabs.org
4702 S:      Orphan
4703 F:      drivers/soc/fsl/qe/
4704 F:      include/soc/fsl/*qe*.h
4705 F:      include/soc/fsl/*ucc*.h
4706
4707 FREESCALE USB PERIPHERAL DRIVERS
4708 M:      Li Yang <leoli@freescale.com>
4709 L:      linux-usb@vger.kernel.org
4710 L:      linuxppc-dev@lists.ozlabs.org
4711 S:      Maintained
4712 F:      drivers/usb/gadget/udc/fsl*
4713
4714 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4715 M:      Li Yang <leoli@freescale.com>
4716 L:      netdev@vger.kernel.org
4717 L:      linuxppc-dev@lists.ozlabs.org
4718 S:      Maintained
4719 F:      drivers/net/ethernet/freescale/ucc_geth*
4720
4721 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4722 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4723 L:      netdev@vger.kernel.org
4724 S:      Maintained
4725 F:      drivers/net/ethernet/freescale/gianfar*
4726 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4727 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4728
4729 FREESCALE QUICC ENGINE UCC UART DRIVER
4730 M:      Timur Tabi <timur@tabi.org>
4731 L:      linuxppc-dev@lists.ozlabs.org
4732 S:      Maintained
4733 F:      drivers/tty/serial/ucc_uart.c
4734
4735 FREESCALE SOC SOUND DRIVERS
4736 M:      Timur Tabi <timur@tabi.org>
4737 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4738 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4739 R:      Fabio Estevam <fabio.estevam@nxp.com>
4740 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4741 L:      linuxppc-dev@lists.ozlabs.org
4742 S:      Maintained
4743 F:      sound/soc/fsl/fsl*
4744 F:      sound/soc/fsl/imx*
4745 F:      sound/soc/fsl/mpc8610_hpcd.c
4746
4747 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4748 M:      "J. German Rivera" <German.Rivera@freescale.com>
4749 L:      linux-kernel@vger.kernel.org
4750 S:      Maintained
4751 F:      drivers/staging/fsl-mc/
4752
4753 FREEVXFS FILESYSTEM
4754 M:      Christoph Hellwig <hch@infradead.org>
4755 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4756 S:      Maintained
4757 F:      fs/freevxfs/
4758
4759 FREEZER
4760 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4761 M:      Pavel Machek <pavel@ucw.cz>
4762 L:      linux-pm@vger.kernel.org
4763 S:      Supported
4764 F:      Documentation/power/freezing-of-tasks.txt
4765 F:      include/linux/freezer.h
4766 F:      kernel/freezer.c
4767
4768 FRONTSWAP API
4769 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4770 L:      linux-kernel@vger.kernel.org
4771 S:      Maintained
4772 F:      mm/frontswap.c
4773 F:      include/linux/frontswap.h
4774
4775 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4776 M:      David Howells <dhowells@redhat.com>
4777 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4778 S:      Supported
4779 F:      Documentation/filesystems/caching/
4780 F:      fs/fscache/
4781 F:      include/linux/fscache*.h
4782
4783 F2FS FILE SYSTEM
4784 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4785 M:      Changman Lee <cm224.lee@samsung.com>
4786 R:      Chao Yu <chao2.yu@samsung.com>
4787 L:      linux-f2fs-devel@lists.sourceforge.net
4788 W:      http://en.wikipedia.org/wiki/F2FS
4789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4790 S:      Maintained
4791 F:      Documentation/filesystems/f2fs.txt
4792 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4793 F:      fs/f2fs/
4794 F:      include/linux/f2fs_fs.h
4795 F:      include/trace/events/f2fs.h
4796
4797 FUJITSU FR-V (FRV) PORT
4798 S:      Orphan
4799 F:      arch/frv/
4800
4801 FUJITSU LAPTOP EXTRAS
4802 M:      Jonathan Woithe <jwoithe@just42.net>
4803 L:      platform-driver-x86@vger.kernel.org
4804 S:      Maintained
4805 F:      drivers/platform/x86/fujitsu-laptop.c
4806
4807 FUJITSU M-5MO LS CAMERA ISP DRIVER
4808 M:      Kyungmin Park <kyungmin.park@samsung.com>
4809 M:      Heungjun Kim <riverful.kim@samsung.com>
4810 L:      linux-media@vger.kernel.org
4811 S:      Maintained
4812 F:      drivers/media/i2c/m5mols/
4813 F:      include/media/i2c/m5mols.h
4814
4815 FUJITSU TABLET EXTRAS
4816 M:      Robert Gerlach <khnz@gmx.de>
4817 L:      platform-driver-x86@vger.kernel.org
4818 S:      Maintained
4819 F:      drivers/platform/x86/fujitsu-tablet.c
4820
4821 FUSE: FILESYSTEM IN USERSPACE
4822 M:      Miklos Szeredi <miklos@szeredi.hu>
4823 L:      linux-fsdevel@vger.kernel.org
4824 W:      http://fuse.sourceforge.net/
4825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4826 S:      Maintained
4827 F:      fs/fuse/
4828 F:      include/uapi/linux/fuse.h
4829 F:      Documentation/filesystems/fuse.txt
4830
4831 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4832 M:      Rik Faith <faith@cs.unc.edu>
4833 L:      linux-scsi@vger.kernel.org
4834 S:      Odd Fixes (e.g., new signatures)
4835 F:      drivers/scsi/fdomain.*
4836
4837 GCOV BASED KERNEL PROFILING
4838 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4839 S:      Maintained
4840 F:      kernel/gcov/
4841 F:      Documentation/gcov.txt
4842
4843 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4844 M:      Achim Leubner <achim_leubner@adaptec.com>
4845 L:      linux-scsi@vger.kernel.org
4846 W:      http://www.icp-vortex.com/
4847 S:      Supported
4848 F:      drivers/scsi/gdt*
4849
4850 GDB KERNEL DEBUGGING HELPER SCRIPTS
4851 M:      Jan Kiszka <jan.kiszka@siemens.com>
4852 S:      Supported
4853 F:      scripts/gdb/
4854
4855 GEMTEK FM RADIO RECEIVER DRIVER
4856 M:      Hans Verkuil <hverkuil@xs4all.nl>
4857 L:      linux-media@vger.kernel.org
4858 T:      git git://linuxtv.org/media_tree.git
4859 W:      https://linuxtv.org
4860 S:      Maintained
4861 F:      drivers/media/radio/radio-gemtek*
4862
4863 GENERIC GPIO I2C DRIVER
4864 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4865 S:      Supported
4866 F:      drivers/i2c/busses/i2c-gpio.c
4867 F:      include/linux/i2c-gpio.h
4868
4869 GENERIC GPIO I2C MULTIPLEXER DRIVER
4870 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4871 L:      linux-i2c@vger.kernel.org
4872 S:      Supported
4873 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4874 F:      include/linux/i2c-mux-gpio.h
4875 F:      Documentation/i2c/muxes/i2c-mux-gpio
4876
4877 GENERIC HDLC (WAN) DRIVERS
4878 M:      Krzysztof Halasa <khc@pm.waw.pl>
4879 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4880 S:      Maintained
4881 F:      drivers/net/wan/c101.c
4882 F:      drivers/net/wan/hd6457*
4883 F:      drivers/net/wan/hdlc*
4884 F:      drivers/net/wan/n2.c
4885 F:      drivers/net/wan/pc300too.c
4886 F:      drivers/net/wan/pci200syn.c
4887 F:      drivers/net/wan/wanxl*
4888
4889 GENERIC INCLUDE/ASM HEADER FILES
4890 M:      Arnd Bergmann <arnd@arndb.de>
4891 L:      linux-arch@vger.kernel.org
4892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4893 S:      Maintained
4894 F:      include/asm-generic/
4895 F:      include/uapi/asm-generic/
4896
4897 GENERIC PHY FRAMEWORK
4898 M:      Kishon Vijay Abraham I <kishon@ti.com>
4899 L:      linux-kernel@vger.kernel.org
4900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4901 S:      Supported
4902 F:      drivers/phy/
4903 F:      include/linux/phy/
4904
4905 GENERIC PM DOMAINS
4906 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4907 M:      Kevin Hilman <khilman@kernel.org>
4908 M:      Ulf Hansson <ulf.hansson@linaro.org>
4909 L:      linux-pm@vger.kernel.org
4910 S:      Supported
4911 F:      drivers/base/power/domain*.c
4912 F:      include/linux/pm_domain.h
4913
4914 GENERIC UIO DRIVER FOR PCI DEVICES
4915 M:      "Michael S. Tsirkin" <mst@redhat.com>
4916 L:      kvm@vger.kernel.org
4917 S:      Supported
4918 F:      drivers/uio/uio_pci_generic.c
4919
4920 GET_MAINTAINER SCRIPT
4921 M:      Joe Perches <joe@perches.com>
4922 S:      Maintained
4923 F:      scripts/get_maintainer.pl
4924
4925 GFS2 FILE SYSTEM
4926 M:      Steven Whitehouse <swhiteho@redhat.com>
4927 M:      Bob Peterson <rpeterso@redhat.com>
4928 L:      cluster-devel@redhat.com
4929 W:      http://sources.redhat.com/cluster/
4930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4931 S:      Supported
4932 F:      Documentation/filesystems/gfs2*.txt
4933 F:      fs/gfs2/
4934 F:      include/uapi/linux/gfs2_ondisk.h
4935
4936 GIGASET ISDN DRIVERS
4937 M:      Paul Bolle <pebolle@tiscali.nl>
4938 L:      gigaset307x-common@lists.sourceforge.net
4939 W:      http://gigaset307x.sourceforge.net/
4940 S:      Odd Fixes
4941 F:      Documentation/isdn/README.gigaset
4942 F:      drivers/isdn/gigaset/
4943 F:      include/uapi/linux/gigaset_dev.h
4944
4945 GO7007 MPEG CODEC
4946 M:      Hans Verkuil <hans.verkuil@cisco.com>
4947 L:      linux-media@vger.kernel.org
4948 S:      Maintained
4949 F:      drivers/media/usb/go7007/
4950
4951 GOODIX TOUCHSCREEN
4952 M:      Bastien Nocera <hadess@hadess.net>
4953 L:      linux-input@vger.kernel.org
4954 S:      Maintained
4955 F:      drivers/input/touchscreen/goodix.c
4956
4957 GPIO SUBSYSTEM
4958 M:      Linus Walleij <linus.walleij@linaro.org>
4959 M:      Alexandre Courbot <gnurou@gmail.com>
4960 L:      linux-gpio@vger.kernel.org
4961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4962 S:      Maintained
4963 F:      Documentation/devicetree/bindings/gpio/
4964 F:      Documentation/gpio/
4965 F:      Documentation/ABI/testing/gpio-cdev
4966 F:      Documentation/ABI/obsolete/sysfs-gpio
4967 F:      drivers/gpio/
4968 F:      include/linux/gpio/
4969 F:      include/linux/gpio.h
4970 F:      include/asm-generic/gpio.h
4971 F:      include/uapi/linux/gpio.h
4972 F:      tools/gpio/
4973
4974 GRE DEMULTIPLEXER DRIVER
4975 M:      Dmitry Kozlov <xeb@mail.ru>
4976 L:      netdev@vger.kernel.org
4977 S:      Maintained
4978 F:      net/ipv4/gre_demux.c
4979 F:      net/ipv4/gre_offload.c
4980 F:      include/net/gre.h
4981
4982 GRETH 10/100/1G Ethernet MAC device driver
4983 M:      Andreas Larsson <andreas@gaisler.com>
4984 L:      netdev@vger.kernel.org
4985 S:      Maintained
4986 F:      drivers/net/ethernet/aeroflex/
4987
4988 GSPCA FINEPIX SUBDRIVER
4989 M:      Frank Zago <frank@zago.net>
4990 L:      linux-media@vger.kernel.org
4991 T:      git git://linuxtv.org/media_tree.git
4992 S:      Maintained
4993 F:      drivers/media/usb/gspca/finepix.c
4994
4995 GSPCA GL860 SUBDRIVER
4996 M:      Olivier Lorin <o.lorin@laposte.net>
4997 L:      linux-media@vger.kernel.org
4998 T:      git git://linuxtv.org/media_tree.git
4999 S:      Maintained
5000 F:      drivers/media/usb/gspca/gl860/
5001
5002 GSPCA M5602 SUBDRIVER
5003 M:      Erik Andren <erik.andren@gmail.com>
5004 L:      linux-media@vger.kernel.org
5005 T:      git git://linuxtv.org/media_tree.git
5006 S:      Maintained
5007 F:      drivers/media/usb/gspca/m5602/
5008
5009 GSPCA PAC207 SONIXB SUBDRIVER
5010 M:      Hans de Goede <hdegoede@redhat.com>
5011 L:      linux-media@vger.kernel.org
5012 T:      git git://linuxtv.org/media_tree.git
5013 S:      Maintained
5014 F:      drivers/media/usb/gspca/pac207.c
5015
5016 GSPCA SN9C20X SUBDRIVER
5017 M:      Brian Johnson <brijohn@gmail.com>
5018 L:      linux-media@vger.kernel.org
5019 T:      git git://linuxtv.org/media_tree.git
5020 S:      Maintained
5021 F:      drivers/media/usb/gspca/sn9c20x.c
5022
5023 GSPCA T613 SUBDRIVER
5024 M:      Leandro Costantino <lcostantino@gmail.com>
5025 L:      linux-media@vger.kernel.org
5026 T:      git git://linuxtv.org/media_tree.git
5027 S:      Maintained
5028 F:      drivers/media/usb/gspca/t613.c
5029
5030 GSPCA USB WEBCAM DRIVER
5031 M:      Hans de Goede <hdegoede@redhat.com>
5032 L:      linux-media@vger.kernel.org
5033 T:      git git://linuxtv.org/media_tree.git
5034 S:      Maintained
5035 F:      drivers/media/usb/gspca/
5036
5037 GUID PARTITION TABLE (GPT)
5038 M:      Davidlohr Bueso <dave@stgolabs.net>
5039 L:      linux-efi@vger.kernel.org
5040 S:      Maintained
5041 F:      block/partitions/efi.*
5042
5043 STK1160 USB VIDEO CAPTURE DRIVER
5044 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
5045 L:      linux-media@vger.kernel.org
5046 T:      git git://linuxtv.org/media_tree.git
5047 S:      Maintained
5048 F:      drivers/media/usb/stk1160/
5049
5050 H8/300 ARCHITECTURE
5051 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
5052 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
5053 W:      http://uclinux-h8.sourceforge.jp
5054 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5055 S:      Maintained
5056 F:      arch/h8300/
5057 F:      drivers/clocksource/h8300_*.c
5058 F:      drivers/clk/h8300/
5059 F:      drivers/irqchip/irq-renesas-h8*.c
5060
5061 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5062 M:      Frank Seidel <frank@f-seidel.de>
5063 L:      platform-driver-x86@vger.kernel.org
5064 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5065 S:      Maintained
5066 F:      drivers/platform/x86/hdaps.c
5067
5068 HDPVR USB VIDEO ENCODER DRIVER
5069 M:      Hans Verkuil <hverkuil@xs4all.nl>
5070 L:      linux-media@vger.kernel.org
5071 T:      git git://linuxtv.org/media_tree.git
5072 W:      https://linuxtv.org
5073 S:      Odd Fixes
5074 F:      drivers/media/usb/hdpvr/
5075
5076 HWPOISON MEMORY FAILURE HANDLING
5077 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
5078 L:      linux-mm@kvack.org
5079 S:      Maintained
5080 F:      mm/memory-failure.c
5081 F:      mm/hwpoison-inject.c
5082
5083 HYPERVISOR VIRTUAL CONSOLE DRIVER
5084 L:      linuxppc-dev@lists.ozlabs.org
5085 S:      Odd Fixes
5086 F:      drivers/tty/hvc/
5087
5088 HACKRF MEDIA DRIVER
5089 M:      Antti Palosaari <crope@iki.fi>
5090 L:      linux-media@vger.kernel.org
5091 W:      https://linuxtv.org
5092 W:      http://palosaari.fi/linux/
5093 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5094 T:      git git://linuxtv.org/anttip/media_tree.git
5095 S:      Maintained
5096 F:      drivers/media/usb/hackrf/
5097
5098 HARDWARE MONITORING
5099 M:      Jean Delvare <jdelvare@suse.com>
5100 M:      Guenter Roeck <linux@roeck-us.net>
5101 L:      linux-hwmon@vger.kernel.org
5102 W:      http://hwmon.wiki.kernel.org/
5103 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5105 S:      Maintained
5106 F:      Documentation/hwmon/
5107 F:      drivers/hwmon/
5108 F:      include/linux/hwmon*.h
5109
5110 HARDWARE RANDOM NUMBER GENERATOR CORE
5111 M:      Matt Mackall <mpm@selenic.com>
5112 M:      Herbert Xu <herbert@gondor.apana.org.au>
5113 L:      linux-crypto@vger.kernel.org
5114 S:      Odd fixes
5115 F:      Documentation/hw_random.txt
5116 F:      drivers/char/hw_random/
5117 F:      include/linux/hw_random.h
5118
5119 HARDWARE SPINLOCK CORE
5120 M:      Ohad Ben-Cohen <ohad@wizery.com>
5121 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
5122 L:      linux-remoteproc@vger.kernel.org
5123 S:      Maintained
5124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5125 F:      Documentation/hwspinlock.txt
5126 F:      drivers/hwspinlock/hwspinlock_*
5127 F:      include/linux/hwspinlock.h
5128
5129 HARMONY SOUND DRIVER
5130 L:      linux-parisc@vger.kernel.org
5131 S:      Maintained
5132 F:      sound/parisc/harmony.*
5133
5134 HD29L2 MEDIA DRIVER
5135 M:      Antti Palosaari <crope@iki.fi>
5136 L:      linux-media@vger.kernel.org
5137 W:      https://linuxtv.org
5138 W:      http://palosaari.fi/linux/
5139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5140 T:      git git://linuxtv.org/anttip/media_tree.git
5141 S:      Maintained
5142 F:      drivers/media/dvb-frontends/hd29l2*
5143
5144 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5145 M:      Don Brace <don.brace@microsemi.com>
5146 L:      iss_storagedev@hp.com
5147 L:      esc.storagedev@microsemi.com
5148 L:      linux-scsi@vger.kernel.org
5149 S:      Supported
5150 F:      Documentation/scsi/hpsa.txt
5151 F:      drivers/scsi/hpsa*.[ch]
5152 F:      include/linux/cciss*.h
5153 F:      include/uapi/linux/cciss*.h
5154
5155 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5156 M:      Don Brace <don.brace@microsemi.com>
5157 L:      iss_storagedev@hp.com
5158 L:      esc.storagedev@microsemi.com
5159 L:      linux-scsi@vger.kernel.org
5160 S:      Supported
5161 F:      Documentation/blockdev/cciss.txt
5162 F:      drivers/block/cciss*
5163 F:      include/linux/cciss_ioctl.h
5164 F:      include/uapi/linux/cciss_ioctl.h
5165
5166 HFS FILESYSTEM
5167 L:      linux-fsdevel@vger.kernel.org
5168 S:      Orphan
5169 F:      Documentation/filesystems/hfs.txt
5170 F:      fs/hfs/
5171
5172 HFSPLUS FILESYSTEM
5173 L:      linux-fsdevel@vger.kernel.org
5174 S:      Orphan
5175 F:      Documentation/filesystems/hfsplus.txt
5176 F:      fs/hfsplus/
5177
5178 HGA FRAMEBUFFER DRIVER
5179 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5180 L:      linux-nvidia@lists.surfsouth.com
5181 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5182 S:      Maintained
5183 F:      drivers/video/fbdev/hgafb.c
5184
5185 HIBERNATION (aka Software Suspend, aka swsusp)
5186 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5187 M:      Pavel Machek <pavel@ucw.cz>
5188 L:      linux-pm@vger.kernel.org
5189 S:      Supported
5190 F:      arch/x86/power/
5191 F:      drivers/base/power/
5192 F:      kernel/power/
5193 F:      include/linux/suspend.h
5194 F:      include/linux/freezer.h
5195 F:      include/linux/pm.h
5196 F:      arch/*/include/asm/suspend*.h
5197
5198 HID CORE LAYER
5199 M:      Jiri Kosina <jikos@kernel.org>
5200 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5201 L:      linux-input@vger.kernel.org
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5203 S:      Maintained
5204 F:      drivers/hid/
5205 F:      include/linux/hid*
5206 F:      include/uapi/linux/hid*
5207
5208 HID SENSOR HUB DRIVERS
5209 M:      Jiri Kosina <jikos@kernel.org>
5210 M:      Jonathan Cameron <jic23@kernel.org>
5211 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5212 L:      linux-input@vger.kernel.org
5213 L:      linux-iio@vger.kernel.org
5214 S:      Maintained
5215 F:      Documentation/hid/hid-sensor*
5216 F:      drivers/hid/hid-sensor-*
5217 F:      drivers/iio/*/hid-*
5218 F:      include/linux/hid-sensor-*
5219
5220 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5221 M:      Thomas Gleixner <tglx@linutronix.de>
5222 L:      linux-kernel@vger.kernel.org
5223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5224 S:      Maintained
5225 F:      Documentation/timers/
5226 F:      kernel/time/hrtimer.c
5227 F:      kernel/time/clockevents.c
5228 F:      kernel/time/tick*.*
5229 F:      kernel/time/timer_*.c
5230 F:      include/linux/clockchips.h
5231 F:      include/linux/hrtimer.h
5232
5233 HIGH-SPEED SCC DRIVER FOR AX.25
5234 L:      linux-hams@vger.kernel.org
5235 S:      Orphan
5236 F:      drivers/net/hamradio/dmascc.c
5237 F:      drivers/net/hamradio/scc.c
5238
5239 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5240 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5241 W:      http://www.highpoint-tech.com
5242 S:      Supported
5243 F:      Documentation/scsi/hptiop.txt
5244 F:      drivers/scsi/hptiop.c
5245
5246 HIPPI
5247 M:      Jes Sorensen <jes@trained-monkey.org>
5248 L:      linux-hippi@sunsite.dk
5249 S:      Maintained
5250 F:      include/linux/hippidevice.h
5251 F:      include/uapi/linux/if_hippi.h
5252 F:      net/802/hippi.c
5253 F:      drivers/net/hippi/
5254
5255 HISILICON SAS Controller
5256 M:      John Garry <john.garry@huawei.com>
5257 W:      http://www.hisilicon.com
5258 S:      Supported
5259 F:      drivers/scsi/hisi_sas/
5260 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5261
5262 HOST AP DRIVER
5263 M:      Jouni Malinen <j@w1.fi>
5264 L:      hostap@shmoo.com (subscribers-only)
5265 L:      linux-wireless@vger.kernel.org
5266 W:      http://hostap.epitest.fi/
5267 S:      Maintained
5268 F:      drivers/net/wireless/intersil/hostap/
5269
5270 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5271 L:      platform-driver-x86@vger.kernel.org
5272 S:      Orphan
5273 F:      drivers/platform/x86/tc1100-wmi.c
5274
5275 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5276 M:      Jaroslav Kysela <perex@perex.cz>
5277 S:      Maintained
5278 F:      drivers/net/ethernet/hp/hp100.*
5279
5280 HPET:   High Precision Event Timers driver
5281 M:      Clemens Ladisch <clemens@ladisch.de>
5282 S:      Maintained
5283 F:      Documentation/timers/hpet.txt
5284 F:      drivers/char/hpet.c
5285 F:      include/linux/hpet.h
5286 F:      include/uapi/linux/hpet.h
5287
5288 HPET:   x86
5289 S:      Orphan
5290 F:      arch/x86/kernel/hpet.c
5291 F:      arch/x86/include/asm/hpet.h
5292
5293 HPFS FILESYSTEM
5294 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5295 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5296 S:      Maintained
5297 F:      fs/hpfs/
5298
5299 HSI SUBSYSTEM
5300 M:      Sebastian Reichel <sre@kernel.org>
5301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5302 S:      Maintained
5303 F:      Documentation/ABI/testing/sysfs-bus-hsi
5304 F:      Documentation/hsi.txt
5305 F:      drivers/hsi/
5306 F:      include/linux/hsi/
5307 F:      include/uapi/linux/hsi/
5308
5309 HSO 3G MODEM DRIVER
5310 M:      Jan Dumon <j.dumon@option.com>
5311 W:      http://www.pharscape.org
5312 S:      Maintained
5313 F:      drivers/net/usb/hso.c
5314
5315 HSR NETWORK PROTOCOL
5316 M:      Arvid Brodin <arvid.brodin@alten.se>
5317 L:      netdev@vger.kernel.org
5318 S:      Maintained
5319 F:      net/hsr/
5320
5321 HTCPEN TOUCHSCREEN DRIVER
5322 M:      Pau Oliva Fora <pof@eslack.org>
5323 L:      linux-input@vger.kernel.org
5324 S:      Maintained
5325 F:      drivers/input/touchscreen/htcpen.c
5326
5327 HUGETLB FILESYSTEM
5328 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5329 S:      Maintained
5330 F:      fs/hugetlbfs/
5331
5332 Hyper-V CORE AND DRIVERS
5333 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5334 M:      Haiyang Zhang <haiyangz@microsoft.com>
5335 L:      devel@linuxdriverproject.org
5336 S:      Maintained
5337 F:      arch/x86/include/asm/mshyperv.h
5338 F:      arch/x86/include/uapi/asm/hyperv.h
5339 F:      arch/x86/kernel/cpu/mshyperv.c
5340 F:      drivers/hid/hid-hyperv.c
5341 F:      drivers/hv/
5342 F:      drivers/input/serio/hyperv-keyboard.c
5343 F:      drivers/pci/host/pci-hyperv.c
5344 F:      drivers/net/hyperv/
5345 F:      drivers/scsi/storvsc_drv.c
5346 F:      drivers/video/fbdev/hyperv_fb.c
5347 F:      include/linux/hyperv.h
5348 F:      tools/hv/
5349 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5350
5351 I2C MUXES
5352 M:      Peter Rosin <peda@axentia.se>
5353 L:      linux-i2c@vger.kernel.org
5354 S:      Maintained
5355 F:      Documentation/i2c/i2c-topology
5356 F:      Documentation/i2c/muxes/
5357 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
5358 F:      drivers/i2c/i2c-mux.c
5359 F:      drivers/i2c/muxes/
5360 F:      include/linux/i2c-mux.h
5361
5362 I2C OVER PARALLEL PORT
5363 M:      Jean Delvare <jdelvare@suse.com>
5364 L:      linux-i2c@vger.kernel.org
5365 S:      Maintained
5366 F:      Documentation/i2c/busses/i2c-parport
5367 F:      Documentation/i2c/busses/i2c-parport-light
5368 F:      drivers/i2c/busses/i2c-parport.c
5369 F:      drivers/i2c/busses/i2c-parport-light.c
5370
5371 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5372 M:      Jean Delvare <jdelvare@suse.com>
5373 L:      linux-i2c@vger.kernel.org
5374 S:      Maintained
5375 F:      Documentation/i2c/busses/i2c-ali1535
5376 F:      Documentation/i2c/busses/i2c-ali1563
5377 F:      Documentation/i2c/busses/i2c-ali15x3
5378 F:      Documentation/i2c/busses/i2c-amd756
5379 F:      Documentation/i2c/busses/i2c-amd8111
5380 F:      Documentation/i2c/busses/i2c-i801
5381 F:      Documentation/i2c/busses/i2c-nforce2
5382 F:      Documentation/i2c/busses/i2c-piix4
5383 F:      Documentation/i2c/busses/i2c-sis5595
5384 F:      Documentation/i2c/busses/i2c-sis630
5385 F:      Documentation/i2c/busses/i2c-sis96x
5386 F:      Documentation/i2c/busses/i2c-via
5387 F:      Documentation/i2c/busses/i2c-viapro
5388 F:      drivers/i2c/busses/i2c-ali1535.c
5389 F:      drivers/i2c/busses/i2c-ali1563.c
5390 F:      drivers/i2c/busses/i2c-ali15x3.c
5391 F:      drivers/i2c/busses/i2c-amd756.c
5392 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5393 F:      drivers/i2c/busses/i2c-amd8111.c
5394 F:      drivers/i2c/busses/i2c-i801.c
5395 F:      drivers/i2c/busses/i2c-isch.c
5396 F:      drivers/i2c/busses/i2c-nforce2.c
5397 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5398 F:      drivers/i2c/busses/i2c-piix4.c
5399 F:      drivers/i2c/busses/i2c-sis5595.c
5400 F:      drivers/i2c/busses/i2c-sis630.c
5401 F:      drivers/i2c/busses/i2c-sis96x.c
5402 F:      drivers/i2c/busses/i2c-via.c
5403 F:      drivers/i2c/busses/i2c-viapro.c
5404
5405 I2C/SMBUS ISMT DRIVER
5406 M:      Seth Heasley <seth.heasley@intel.com>
5407 M:      Neil Horman <nhorman@tuxdriver.com>
5408 L:      linux-i2c@vger.kernel.org
5409 F:      drivers/i2c/busses/i2c-ismt.c
5410 F:      Documentation/i2c/busses/i2c-ismt
5411
5412 I2C/SMBUS STUB DRIVER
5413 M:      Jean Delvare <jdelvare@suse.com>
5414 L:      linux-i2c@vger.kernel.org
5415 S:      Maintained
5416 F:      drivers/i2c/i2c-stub.c
5417
5418 I2C SUBSYSTEM
5419 M:      Wolfram Sang <wsa@the-dreams.de>
5420 L:      linux-i2c@vger.kernel.org
5421 W:      https://i2c.wiki.kernel.org/
5422 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5424 S:      Maintained
5425 F:      Documentation/devicetree/bindings/i2c/
5426 F:      Documentation/i2c/
5427 F:      drivers/i2c/
5428 F:      drivers/i2c/*/
5429 F:      include/linux/i2c.h
5430 F:      include/linux/i2c-*.h
5431 F:      include/uapi/linux/i2c.h
5432 F:      include/uapi/linux/i2c-*.h
5433
5434 I2C ACPI SUPPORT
5435 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5436 L:      linux-i2c@vger.kernel.org
5437 L:      linux-acpi@vger.kernel.org
5438 S:      Maintained
5439
5440 I2C-TAOS-EVM DRIVER
5441 M:      Jean Delvare <jdelvare@suse.com>
5442 L:      linux-i2c@vger.kernel.org
5443 S:      Maintained
5444 F:      Documentation/i2c/busses/i2c-taos-evm
5445 F:      drivers/i2c/busses/i2c-taos-evm.c
5446
5447 I2C-TINY-USB DRIVER
5448 M:      Till Harbaum <till@harbaum.org>
5449 L:      linux-i2c@vger.kernel.org
5450 W:      http://www.harbaum.org/till/i2c_tiny_usb
5451 S:      Maintained
5452 F:      drivers/i2c/busses/i2c-tiny-usb.c
5453
5454 i386 BOOT CODE
5455 M:      "H. Peter Anvin" <hpa@zytor.com>
5456 S:      Maintained
5457 F:      arch/x86/boot/
5458
5459 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5460 M:      "H. Peter Anvin" <hpa@zytor.com>
5461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5462 S:      Maintained
5463
5464 IA64 (Itanium) PLATFORM
5465 M:      Tony Luck <tony.luck@intel.com>
5466 M:      Fenghua Yu <fenghua.yu@intel.com>
5467 L:      linux-ia64@vger.kernel.org
5468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5469 S:      Maintained
5470 F:      arch/ia64/
5471
5472 IBM Power VMX Cryptographic instructions
5473 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5474 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5475 L:      linux-crypto@vger.kernel.org
5476 S:      Supported
5477 F:      drivers/crypto/vmx/Makefile
5478 F:      drivers/crypto/vmx/Kconfig
5479 F:      drivers/crypto/vmx/vmx.c
5480 F:      drivers/crypto/vmx/aes*
5481 F:      drivers/crypto/vmx/ghash*
5482 F:      drivers/crypto/vmx/ppc-xlate.pl
5483
5484 IBM Power in-Nest Crypto Acceleration
5485 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5486 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5487 L:      linux-crypto@vger.kernel.org
5488 S:      Supported
5489 F:      drivers/crypto/nx/Makefile
5490 F:      drivers/crypto/nx/Kconfig
5491 F:      drivers/crypto/nx/nx-aes*
5492 F:      drivers/crypto/nx/nx-sha*
5493 F:      drivers/crypto/nx/nx.*
5494 F:      drivers/crypto/nx/nx_csbcpb.h
5495 F:      drivers/crypto/nx/nx_debugfs.h
5496
5497 IBM Power 842 compression accelerator
5498 M:      Dan Streetman <ddstreet@ieee.org>
5499 S:      Supported
5500 F:      drivers/crypto/nx/Makefile
5501 F:      drivers/crypto/nx/Kconfig
5502 F:      drivers/crypto/nx/nx-842*
5503 F:      include/linux/sw842.h
5504 F:      crypto/842.c
5505 F:      lib/842/
5506
5507 IBM Power Linux RAID adapter
5508 M:      Brian King <brking@us.ibm.com>
5509 S:      Supported
5510 F:      drivers/scsi/ipr.*
5511
5512 IBM Power Virtual Ethernet Device Driver
5513 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5514 L:      netdev@vger.kernel.org
5515 S:      Supported
5516 F:      drivers/net/ethernet/ibm/ibmveth.*
5517
5518 IBM Power SRIOV Virtual NIC Device Driver
5519 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5520 M:      John Allen <jallen@linux.vnet.ibm.com>
5521 L:      netdev@vger.kernel.org
5522 S:      Supported
5523 F:      drivers/net/ethernet/ibm/ibmvnic.*
5524
5525 IBM Power Virtual SCSI Device Drivers
5526 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5527 L:      linux-scsi@vger.kernel.org
5528 S:      Supported
5529 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5530 F:      drivers/scsi/ibmvscsi/viosrp.h
5531
5532 IBM Power Virtual FC Device Drivers
5533 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5534 L:      linux-scsi@vger.kernel.org
5535 S:      Supported
5536 F:      drivers/scsi/ibmvscsi/ibmvfc*
5537
5538 IBM ServeRAID RAID DRIVER
5539 S:      Orphan
5540 F:      drivers/scsi/ips.*
5541
5542 ICH LPC AND GPIO DRIVER
5543 M:      Peter Tyser <ptyser@xes-inc.com>
5544 S:      Maintained
5545 F:      drivers/mfd/lpc_ich.c
5546 F:      drivers/gpio/gpio-ich.c
5547
5548 IDE SUBSYSTEM
5549 M:      "David S. Miller" <davem@davemloft.net>
5550 L:      linux-ide@vger.kernel.org
5551 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5553 S:      Maintained
5554 F:      Documentation/ide/
5555 F:      drivers/ide/
5556 F:      include/linux/ide.h
5557
5558 IDEAPAD LAPTOP EXTRAS DRIVER
5559 M:      Ike Panhc <ike.pan@canonical.com>
5560 L:      platform-driver-x86@vger.kernel.org
5561 W:      http://launchpad.net/ideapad-laptop
5562 S:      Maintained
5563 F:      drivers/platform/x86/ideapad-laptop.c
5564
5565 IDEAPAD LAPTOP SLIDEBAR DRIVER
5566 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5567 L:      linux-input@vger.kernel.org
5568 W:      https://github.com/o2genum/ideapad-slidebar
5569 S:      Maintained
5570 F:      drivers/input/misc/ideapad_slidebar.c
5571
5572 IDE/ATAPI DRIVERS
5573 M:      Borislav Petkov <bp@alien8.de>
5574 L:      linux-ide@vger.kernel.org
5575 S:      Maintained
5576 F:      Documentation/cdrom/ide-cd
5577 F:      drivers/ide/ide-cd*
5578
5579 IDLE-I7300
5580 M:      Andy Henroid <andrew.d.henroid@intel.com>
5581 L:      linux-pm@vger.kernel.org
5582 S:      Supported
5583 F:      drivers/idle/i7300_idle.c
5584
5585 IEEE 802.15.4 SUBSYSTEM
5586 M:      Alexander Aring <aar@pengutronix.de>
5587 L:      linux-wpan@vger.kernel.org
5588 W:      http://wpan.cakelab.org/
5589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
5590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
5591 S:      Maintained
5592 F:      net/ieee802154/
5593 F:      net/mac802154/
5594 F:      drivers/net/ieee802154/
5595 F:      include/linux/nl802154.h
5596 F:      include/linux/ieee802154.h
5597 F:      include/net/nl802154.h
5598 F:      include/net/mac802154.h
5599 F:      include/net/af_ieee802154.h
5600 F:      include/net/cfg802154.h
5601 F:      include/net/ieee802154_netdev.h
5602 F:      Documentation/networking/ieee802154.txt
5603
5604 IGORPLUG-USB IR RECEIVER
5605 M:      Sean Young <sean@mess.org>
5606 L:      linux-media@vger.kernel.org
5607 S:      Maintained
5608 F:      drivers/media/rc/igorplugusb.c
5609
5610 IGUANAWORKS USB IR TRANSCEIVER
5611 M:      Sean Young <sean@mess.org>
5612 L:      linux-media@vger.kernel.org
5613 S:      Maintained
5614 F:      drivers/media/rc/iguanair.c
5615
5616 IIO SUBSYSTEM AND DRIVERS
5617 M:      Jonathan Cameron <jic23@kernel.org>
5618 R:      Hartmut Knaack <knaack.h@gmx.de>
5619 R:      Lars-Peter Clausen <lars@metafoo.de>
5620 R:      Peter Meerwald <pmeerw@pmeerw.net>
5621 L:      linux-iio@vger.kernel.org
5622 S:      Maintained
5623 F:      drivers/iio/
5624 F:      drivers/staging/iio/
5625 F:      include/linux/iio/
5626 F:      tools/iio/
5627
5628 IKANOS/ADI EAGLE ADSL USB DRIVER
5629 M:      Matthieu Castet <castet.matthieu@free.fr>
5630 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5631 S:      Maintained
5632 F:      drivers/usb/atm/ueagle-atm.c
5633
5634 INA209 HARDWARE MONITOR DRIVER
5635 M:      Guenter Roeck <linux@roeck-us.net>
5636 L:      linux-hwmon@vger.kernel.org
5637 S:      Maintained
5638 F:      Documentation/hwmon/ina209
5639 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5640 F:      drivers/hwmon/ina209.c
5641
5642 INA2XX HARDWARE MONITOR DRIVER
5643 M:      Guenter Roeck <linux@roeck-us.net>
5644 L:      linux-hwmon@vger.kernel.org
5645 S:      Maintained
5646 F:      Documentation/hwmon/ina2xx
5647 F:      drivers/hwmon/ina2xx.c
5648 F:      include/linux/platform_data/ina2xx.h
5649
5650 INDUSTRY PACK SUBSYSTEM (IPACK)
5651 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5652 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5653 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5654 L:      industrypack-devel@lists.sourceforge.net
5655 W:      http://industrypack.sourceforge.net
5656 S:      Maintained
5657 F:      drivers/ipack/
5658
5659 INGENIC JZ4780 DMA Driver
5660 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5661 S:      Maintained
5662 F:      drivers/dma/dma-jz4780.c
5663
5664 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5665 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5666 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5667 L:      linux-ima-devel@lists.sourceforge.net
5668 L:      linux-ima-user@lists.sourceforge.net
5669 L:      linux-security-module@vger.kernel.org
5670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5671 S:      Supported
5672 F:      security/integrity/ima/
5673
5674 IMGTEC IR DECODER DRIVER
5675 M:      James Hogan <james.hogan@imgtec.com>
5676 S:      Maintained
5677 F:      drivers/media/rc/img-ir/
5678
5679 IMS TWINTURBO FRAMEBUFFER DRIVER
5680 L:      linux-fbdev@vger.kernel.org
5681 S:      Orphan
5682 F:      drivers/video/fbdev/imsttfb.c
5683
5684 INFINIBAND SUBSYSTEM
5685 M:      Doug Ledford <dledford@redhat.com>
5686 M:      Sean Hefty <sean.hefty@intel.com>
5687 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5688 L:      linux-rdma@vger.kernel.org
5689 W:      http://www.openfabrics.org/
5690 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5692 S:      Supported
5693 F:      Documentation/infiniband/
5694 F:      drivers/infiniband/
5695 F:      drivers/staging/rdma/
5696 F:      include/uapi/linux/if_infiniband.h
5697 F:      include/uapi/rdma/
5698 F:      include/rdma/
5699
5700 INOTIFY
5701 M:      John McCutchan <john@johnmccutchan.com>
5702 M:      Robert Love <rlove@rlove.org>
5703 M:      Eric Paris <eparis@parisplace.org>
5704 S:      Maintained
5705 F:      Documentation/filesystems/inotify.txt
5706 F:      fs/notify/inotify/
5707 F:      include/linux/inotify.h
5708 F:      include/uapi/linux/inotify.h
5709
5710 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5711 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5712 L:      linux-input@vger.kernel.org
5713 Q:      http://patchwork.kernel.org/project/linux-input/list/
5714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5715 S:      Maintained
5716 F:      drivers/input/
5717 F:      include/linux/input.h
5718 F:      include/uapi/linux/input.h
5719 F:      include/linux/input/
5720 F:      Documentation/devicetree/bindings/input/
5721
5722 INPUT MULTITOUCH (MT) PROTOCOL
5723 M:      Henrik Rydberg <rydberg@bitmath.org>
5724 L:      linux-input@vger.kernel.org
5725 S:      Odd fixes
5726 F:      Documentation/input/multi-touch-protocol.txt
5727 F:      drivers/input/input-mt.c
5728 K:      \b(ABS|SYN)_MT_
5729
5730 INTEL ASoC BDW/HSW DRIVERS
5731 M:      Jie Yang <yang.jie@linux.intel.com>
5732 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5733 S:      Supported
5734 F:      sound/soc/intel/common/sst-dsp*
5735 F:      sound/soc/intel/common/sst-firmware.c
5736 F:      sound/soc/intel/boards/broadwell.c
5737 F:      sound/soc/intel/haswell/
5738
5739 INTEL C600 SERIES SAS CONTROLLER DRIVER
5740 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5741 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5742 L:      linux-scsi@vger.kernel.org
5743 T:      git git://git.code.sf.net/p/intel-sas/isci
5744 S:      Supported
5745 F:      drivers/scsi/isci/
5746
5747 INTEL HID EVENT DRIVER
5748 M:      Alex Hung <alex.hung@canonical.com>
5749 L:      platform-driver-x86@vger.kernel.org
5750 S:      Maintained
5751 F:      drivers/platform/x86/intel-hid.c
5752
5753 INTEL IDLE DRIVER
5754 M:      Len Brown <lenb@kernel.org>
5755 L:      linux-pm@vger.kernel.org
5756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5757 S:      Supported
5758 F:      drivers/idle/intel_idle.c
5759
5760 INTEL PSTATE DRIVER
5761 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5762 M:      Len Brown <lenb@kernel.org>
5763 L:      linux-pm@vger.kernel.org
5764 S:      Supported
5765 F:      drivers/cpufreq/intel_pstate.c
5766
5767 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5768 M:      Maik Broemme <mbroemme@plusserver.de>
5769 L:      linux-fbdev@vger.kernel.org
5770 S:      Maintained
5771 F:      Documentation/fb/intelfb.txt
5772 F:      drivers/video/fbdev/intelfb/
5773
5774 INTEL 810/815 FRAMEBUFFER DRIVER
5775 M:      Antonino Daplas <adaplas@gmail.com>
5776 L:      linux-fbdev@vger.kernel.org
5777 S:      Maintained
5778 F:      drivers/video/fbdev/i810/
5779
5780 INTEL MENLOW THERMAL DRIVER
5781 M:      Sujith Thomas <sujith.thomas@intel.com>
5782 L:      platform-driver-x86@vger.kernel.org
5783 W:      https://01.org/linux-acpi
5784 S:      Supported
5785 F:      drivers/platform/x86/intel_menlow.c
5786
5787 INTEL I/OAT DMA DRIVER
5788 M:      Dave Jiang <dave.jiang@intel.com>
5789 R:      Dan Williams <dan.j.williams@intel.com>
5790 L:      dmaengine@vger.kernel.org
5791 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5792 S:      Supported
5793 F:      drivers/dma/ioat*
5794
5795 INTEL IOMMU (VT-d)
5796 M:      David Woodhouse <dwmw2@infradead.org>
5797 L:      iommu@lists.linux-foundation.org
5798 T:      git git://git.infradead.org/iommu-2.6.git
5799 S:      Supported
5800 F:      drivers/iommu/intel-iommu.c
5801 F:      include/linux/intel-iommu.h
5802
5803 INTEL IOP-ADMA DMA DRIVER
5804 R:      Dan Williams <dan.j.williams@intel.com>
5805 S:      Odd fixes
5806 F:      drivers/dma/iop-adma.c
5807
5808 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5809 M:      Krzysztof Halasa <khalasa@piap.pl>
5810 S:      Maintained
5811 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5812 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5813 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5814 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5815 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5816 F:      drivers/net/wan/ixp4xx_hss.c
5817
5818 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5819 M:      Deepak Saxena <dsaxena@plexity.net>
5820 S:      Maintained
5821 F:      drivers/char/hw_random/ixp4xx-rng.c
5822
5823 INTEL ETHERNET DRIVERS
5824 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5825 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
5826 W:      http://www.intel.com/support/feedback.htm
5827 W:      http://e1000.sourceforge.net/
5828 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5831 S:      Supported
5832 F:      Documentation/networking/e100.txt
5833 F:      Documentation/networking/e1000.txt
5834 F:      Documentation/networking/e1000e.txt
5835 F:      Documentation/networking/igb.txt
5836 F:      Documentation/networking/igbvf.txt
5837 F:      Documentation/networking/ixgb.txt
5838 F:      Documentation/networking/ixgbe.txt
5839 F:      Documentation/networking/ixgbevf.txt
5840 F:      Documentation/networking/i40e.txt
5841 F:      Documentation/networking/i40evf.txt
5842 F:      drivers/net/ethernet/intel/
5843 F:      drivers/net/ethernet/intel/*/
5844
5845 INTEL RDMA RNIC DRIVER
5846 M:     Faisal Latif <faisal.latif@intel.com>
5847 R:     Chien Tin Tung <chien.tin.tung@intel.com>
5848 R:     Mustafa Ismail <mustafa.ismail@intel.com>
5849 R:     Shiraz Saleem <shiraz.saleem@intel.com>
5850 R:     Tatyana Nikolova <tatyana.e.nikolova@intel.com>
5851 L:     linux-rdma@vger.kernel.org
5852 S:     Supported
5853 F:     drivers/infiniband/hw/i40iw/
5854
5855 INTEL-MID GPIO DRIVER
5856 M:      David Cohen <david.a.cohen@linux.intel.com>
5857 L:      linux-gpio@vger.kernel.org
5858 S:      Maintained
5859 F:      drivers/gpio/gpio-intel-mid.c
5860
5861 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5862 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5863 L:      linux-wireless@vger.kernel.org
5864 S:      Maintained
5865 F:      Documentation/networking/README.ipw2100
5866 F:      Documentation/networking/README.ipw2200
5867 F:      drivers/net/wireless/intel/ipw2x00/
5868
5869 INTEL(R) TRACE HUB
5870 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5871 S:      Supported
5872 F:      Documentation/trace/intel_th.txt
5873 F:      drivers/hwtracing/intel_th/
5874
5875 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5876 M:      Ning Sun <ning.sun@intel.com>
5877 L:      tboot-devel@lists.sourceforge.net
5878 W:      http://tboot.sourceforge.net
5879 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5880 S:      Supported
5881 F:      Documentation/intel_txt.txt
5882 F:      include/linux/tboot.h
5883 F:      arch/x86/kernel/tboot.c
5884
5885 INTEL WIRELESS WIMAX CONNECTION 2400
5886 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5887 M:      linux-wimax@intel.com
5888 L:      wimax@linuxwimax.org (subscribers-only)
5889 S:      Supported
5890 W:      http://linuxwimax.org
5891 F:      Documentation/wimax/README.i2400m
5892 F:      drivers/net/wimax/i2400m/
5893 F:      include/uapi/linux/wimax/i2400m.h
5894
5895 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5896 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5897 L:      linux-wireless@vger.kernel.org
5898 S:      Supported
5899 F:      drivers/net/wireless/intel/iwlegacy/
5900
5901 INTEL WIRELESS WIFI LINK (iwlwifi)
5902 M:      Johannes Berg <johannes.berg@intel.com>
5903 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5904 M:      Luca Coelho <luciano.coelho@intel.com>
5905 M:      Intel Linux Wireless <linuxwifi@intel.com>
5906 L:      linux-wireless@vger.kernel.org
5907 W:      http://intellinuxwireless.org
5908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5909 S:      Supported
5910 F:      drivers/net/wireless/intel/iwlwifi/
5911
5912 INTEL MANAGEMENT ENGINE (mei)
5913 M:      Tomas Winkler <tomas.winkler@intel.com>
5914 L:      linux-kernel@vger.kernel.org
5915 S:      Supported
5916 F:      include/uapi/linux/mei.h
5917 F:      include/linux/mei_cl_bus.h
5918 F:      drivers/misc/mei/*
5919 F:      drivers/watchdog/mei_wdt.c
5920 F:      Documentation/misc-devices/mei/*
5921
5922 INTEL MIC DRIVERS (mic)
5923 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5924 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5925 S:      Supported
5926 W:      https://github.com/sudeepdutt/mic
5927 W:      http://software.intel.com/en-us/mic-developer
5928 F:      include/linux/mic_bus.h
5929 F:      include/linux/scif.h
5930 F:      include/uapi/linux/mic_common.h
5931 F:      include/uapi/linux/mic_ioctl.h
5932 F:      include/uapi/linux/scif_ioctl.h
5933 F:      drivers/misc/mic/
5934 F:      drivers/dma/mic_x100_dma.c
5935 F:      drivers/dma/mic_x100_dma.h
5936 F:      Documentation/mic/
5937
5938 INTEL PMC/P-Unit IPC DRIVER
5939 M:      Zha Qipeng<qipeng.zha@intel.com>
5940 L:      platform-driver-x86@vger.kernel.org
5941 S:      Maintained
5942 F:      drivers/platform/x86/intel_pmc_ipc.c
5943 F:      drivers/platform/x86/intel_punit_ipc.c
5944 F:      arch/x86/include/asm/intel_pmc_ipc.h
5945 F:      arch/x86/include/asm/intel_punit_ipc.h
5946
5947 INTEL TELEMETRY DRIVER
5948 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5949 L:      platform-driver-x86@vger.kernel.org
5950 S:      Maintained
5951 F:      arch/x86/include/asm/intel_telemetry.h
5952 F:      drivers/platform/x86/intel_telemetry*
5953
5954 IOC3 ETHERNET DRIVER
5955 M:      Ralf Baechle <ralf@linux-mips.org>
5956 L:      linux-mips@linux-mips.org
5957 S:      Maintained
5958 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5959
5960 IOC3 SERIAL DRIVER
5961 M:      Pat Gefre <pfg@sgi.com>
5962 L:      linux-serial@vger.kernel.org
5963 S:      Maintained
5964 F:      drivers/tty/serial/ioc3_serial.c
5965
5966 IOMMU DRIVERS
5967 M:      Joerg Roedel <joro@8bytes.org>
5968 L:      iommu@lists.linux-foundation.org
5969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5970 S:      Maintained
5971 F:      drivers/iommu/
5972
5973 IP MASQUERADING
5974 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5975 S:      Maintained
5976 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5977
5978 IPMI SUBSYSTEM
5979 M:      Corey Minyard <minyard@acm.org>
5980 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5981 W:      http://openipmi.sourceforge.net/
5982 S:      Supported
5983 F:      Documentation/IPMI.txt
5984 F:      drivers/char/ipmi/
5985 F:      include/linux/ipmi*
5986 F:      include/uapi/linux/ipmi*
5987
5988 QCOM AUDIO (ASoC) DRIVERS
5989 M:      Patrick Lai <plai@codeaurora.org>
5990 M:      Banajit Goswami <bgoswami@codeaurora.org>
5991 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5992 S:      Supported
5993 F:      sound/soc/qcom/
5994
5995 IPS SCSI RAID DRIVER
5996 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5997 L:      linux-scsi@vger.kernel.org
5998 W:      http://www.adaptec.com/
5999 S:      Maintained
6000 F:      drivers/scsi/ips*
6001
6002 IPVS
6003 M:      Wensong Zhang <wensong@linux-vs.org>
6004 M:      Simon Horman <horms@verge.net.au>
6005 M:      Julian Anastasov <ja@ssi.bg>
6006 L:      netdev@vger.kernel.org
6007 L:      lvs-devel@vger.kernel.org
6008 S:      Maintained
6009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6011 F:      Documentation/networking/ipvs-sysctl.txt
6012 F:      include/net/ip_vs.h
6013 F:      include/uapi/linux/ip_vs.h
6014 F:      net/netfilter/ipvs/
6015
6016 IPWIRELESS DRIVER
6017 M:      Jiri Kosina <jikos@kernel.org>
6018 M:      David Sterba <dsterba@suse.com>
6019 S:      Odd Fixes
6020 F:      drivers/tty/ipwireless/
6021
6022 IPX NETWORK LAYER
6023 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6024 L:      netdev@vger.kernel.org
6025 S:      Maintained
6026 F:      include/net/ipx.h
6027 F:      include/uapi/linux/ipx.h
6028 F:      net/ipx/
6029
6030 IRDA SUBSYSTEM
6031 M:      Samuel Ortiz <samuel@sortiz.org>
6032 L:      irda-users@lists.sourceforge.net (subscribers-only)
6033 L:      netdev@vger.kernel.org
6034 W:      http://irda.sourceforge.net/
6035 S:      Maintained
6036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6037 F:      Documentation/networking/irda.txt
6038 F:      drivers/net/irda/
6039 F:      include/net/irda/
6040 F:      net/irda/
6041
6042 IRQ SUBSYSTEM
6043 M:      Thomas Gleixner <tglx@linutronix.de>
6044 L:      linux-kernel@vger.kernel.org
6045 S:      Maintained
6046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6047 F:      kernel/irq/
6048
6049 IRQCHIP DRIVERS
6050 M:      Thomas Gleixner <tglx@linutronix.de>
6051 M:      Jason Cooper <jason@lakedaemon.net>
6052 M:      Marc Zyngier <marc.zyngier@arm.com>
6053 L:      linux-kernel@vger.kernel.org
6054 S:      Maintained
6055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6056 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6057 F:      Documentation/devicetree/bindings/interrupt-controller/
6058 F:      drivers/irqchip/
6059
6060 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6061 M:      Jiang Liu <jiang.liu@linux.intel.com>
6062 M:      Marc Zyngier <marc.zyngier@arm.com>
6063 S:      Maintained
6064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6065 F:      Documentation/IRQ-domain.txt
6066 F:      include/linux/irqdomain.h
6067 F:      kernel/irq/irqdomain.c
6068 F:      kernel/irq/msi.c
6069
6070 ISA
6071 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6072 S:      Maintained
6073 F:      Documentation/isa.txt
6074 F:      drivers/base/isa.c
6075 F:      include/linux/isa.h
6076
6077 ISAPNP
6078 M:      Jaroslav Kysela <perex@perex.cz>
6079 S:      Maintained
6080 F:      Documentation/isapnp.txt
6081 F:      drivers/pnp/isapnp/
6082 F:      include/linux/isapnp.h
6083
6084 ISA RADIO MODULE
6085 M:      Hans Verkuil <hverkuil@xs4all.nl>
6086 L:      linux-media@vger.kernel.org
6087 T:      git git://linuxtv.org/media_tree.git
6088 W:      https://linuxtv.org
6089 S:      Maintained
6090 F:      drivers/media/radio/radio-isa*
6091
6092 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6093 M:      Peter Jones <pjones@redhat.com>
6094 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
6095 S:      Maintained
6096 F:      drivers/firmware/iscsi_ibft*
6097
6098 ISCSI
6099 M:      Mike Christie <michaelc@cs.wisc.edu>
6100 L:      open-iscsi@googlegroups.com
6101 W:      www.open-iscsi.org
6102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
6103 S:      Maintained
6104 F:      drivers/scsi/*iscsi*
6105 F:      include/scsi/*iscsi*
6106
6107 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
6108 M:      Or Gerlitz <ogerlitz@mellanox.com>
6109 M:      Sagi Grimberg <sagi@grimberg.me>
6110 M:      Roi Dayan <roid@mellanox.com>
6111 L:      linux-rdma@vger.kernel.org
6112 S:      Supported
6113 W:      http://www.openfabrics.org
6114 W:      www.open-iscsi.org
6115 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6116 F:      drivers/infiniband/ulp/iser/
6117
6118 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
6119 M:      Sagi Grimberg <sagi@grimberg.me>
6120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
6121 L:      linux-rdma@vger.kernel.org
6122 L:      target-devel@vger.kernel.org
6123 S:      Supported
6124 W:      http://www.linux-iscsi.org
6125 F:      drivers/infiniband/ulp/isert
6126
6127 ISDN SUBSYSTEM
6128 M:      Karsten Keil <isdn@linux-pingi.de>
6129 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6130 L:      netdev@vger.kernel.org
6131 W:      http://www.isdn4linux.de
6132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
6133 S:      Maintained
6134 F:      Documentation/isdn/
6135 F:      drivers/isdn/
6136 F:      include/linux/isdn.h
6137 F:      include/linux/isdn/
6138 F:      include/uapi/linux/isdn.h
6139 F:      include/uapi/linux/isdn/
6140
6141 ISDN SUBSYSTEM (Eicon active card driver)
6142 M:      Armin Schindler <mac@melware.de>
6143 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
6144 W:      http://www.melware.de
6145 S:      Maintained
6146 F:      drivers/isdn/hardware/eicon/
6147
6148 IT87 HARDWARE MONITORING DRIVER
6149 M:      Jean Delvare <jdelvare@suse.com>
6150 L:      linux-hwmon@vger.kernel.org
6151 S:      Maintained
6152 F:      Documentation/hwmon/it87
6153 F:      drivers/hwmon/it87.c
6154
6155 IT913X MEDIA DRIVER
6156 M:      Antti Palosaari <crope@iki.fi>
6157 L:      linux-media@vger.kernel.org
6158 W:      https://linuxtv.org
6159 W:      http://palosaari.fi/linux/
6160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6161 T:      git git://linuxtv.org/anttip/media_tree.git
6162 S:      Maintained
6163 F:      drivers/media/tuners/it913x*
6164
6165 IVTV VIDEO4LINUX DRIVER
6166 M:      Andy Walls <awalls@md.metrocast.net>
6167 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
6168 L:      linux-media@vger.kernel.org
6169 T:      git git://linuxtv.org/media_tree.git
6170 W:      http://www.ivtvdriver.org
6171 S:      Maintained
6172 F:      Documentation/video4linux/*.ivtv
6173 F:      drivers/media/pci/ivtv/
6174 F:      include/uapi/linux/ivtv*
6175
6176 IX2505V MEDIA DRIVER
6177 M:      Malcolm Priestley <tvboxspy@gmail.com>
6178 L:      linux-media@vger.kernel.org
6179 W:      https://linuxtv.org
6180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6181 S:      Maintained
6182 F:      drivers/media/dvb-frontends/ix2505v*
6183
6184 JC42.4 TEMPERATURE SENSOR DRIVER
6185 M:      Guenter Roeck <linux@roeck-us.net>
6186 L:      linux-hwmon@vger.kernel.org
6187 S:      Maintained
6188 F:      drivers/hwmon/jc42.c
6189 F:      Documentation/hwmon/jc42
6190
6191 JFS FILESYSTEM
6192 M:      Dave Kleikamp <shaggy@kernel.org>
6193 L:      jfs-discussion@lists.sourceforge.net
6194 W:      http://jfs.sourceforge.net/
6195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6196 S:      Maintained
6197 F:      Documentation/filesystems/jfs.txt
6198 F:      fs/jfs/
6199
6200 JME NETWORK DRIVER
6201 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6202 L:      netdev@vger.kernel.org
6203 S:      Maintained
6204 F:      drivers/net/ethernet/jme.*
6205
6206 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6207 M:      David Woodhouse <dwmw2@infradead.org>
6208 L:      linux-mtd@lists.infradead.org
6209 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6210 S:      Maintained
6211 F:      fs/jffs2/
6212 F:      include/uapi/linux/jffs2.h
6213
6214 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6215 M:      "Theodore Ts'o" <tytso@mit.edu>
6216 M:      Jan Kara <jack@suse.com>
6217 L:      linux-ext4@vger.kernel.org
6218 S:      Maintained
6219 F:      fs/jbd2/
6220 F:      include/linux/jbd2.h
6221
6222 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6223 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6224 L:      linux-media@vger.kernel.org
6225 S:      Maintained
6226 F:      drivers/media/platform/rcar_jpu.c
6227
6228 JSM Neo PCI based serial card
6229 M:      Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
6230 L:      linux-serial@vger.kernel.org
6231 S:      Maintained
6232 F:      drivers/tty/serial/jsm/
6233
6234 K10TEMP HARDWARE MONITORING DRIVER
6235 M:      Clemens Ladisch <clemens@ladisch.de>
6236 L:      linux-hwmon@vger.kernel.org
6237 S:      Maintained
6238 F:      Documentation/hwmon/k10temp
6239 F:      drivers/hwmon/k10temp.c
6240
6241 K8TEMP HARDWARE MONITORING DRIVER
6242 M:      Rudolf Marek <r.marek@assembler.cz>
6243 L:      linux-hwmon@vger.kernel.org
6244 S:      Maintained
6245 F:      Documentation/hwmon/k8temp
6246 F:      drivers/hwmon/k8temp.c
6247
6248 KASAN
6249 M:      Andrey Ryabinin <aryabinin@virtuozzo.com>
6250 R:      Alexander Potapenko <glider@google.com>
6251 R:      Dmitry Vyukov <dvyukov@google.com>
6252 L:      kasan-dev@googlegroups.com
6253 S:      Maintained
6254 F:      arch/*/include/asm/kasan.h
6255 F:      arch/*/mm/kasan_init*
6256 F:      Documentation/kasan.txt
6257 F:      include/linux/kasan.h
6258 F:      lib/test_kasan.c
6259 F:      mm/kasan/
6260 F:      scripts/Makefile.kasan
6261
6262 KCONFIG
6263 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6264 L:      linux-kbuild@vger.kernel.org
6265 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6266 S:      Maintained
6267 F:      Documentation/kbuild/kconfig-language.txt
6268 F:      scripts/kconfig/
6269
6270 KDUMP
6271 M:      Vivek Goyal <vgoyal@redhat.com>
6272 M:      Haren Myneni <hbabu@us.ibm.com>
6273 L:      kexec@lists.infradead.org
6274 W:      http://lse.sourceforge.net/kdump/
6275 S:      Maintained
6276 F:      Documentation/kdump/
6277
6278 KEENE FM RADIO TRANSMITTER DRIVER
6279 M:      Hans Verkuil <hverkuil@xs4all.nl>
6280 L:      linux-media@vger.kernel.org
6281 T:      git git://linuxtv.org/media_tree.git
6282 W:      https://linuxtv.org
6283 S:      Maintained
6284 F:      drivers/media/radio/radio-keene*
6285
6286 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6287 M:      Ian Kent <raven@themaw.net>
6288 L:      autofs@vger.kernel.org
6289 S:      Maintained
6290 F:      fs/autofs4/
6291
6292 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6293 M:      Michal Marek <mmarek@suse.com>
6294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6296 L:      linux-kbuild@vger.kernel.org
6297 S:      Maintained
6298 F:      Documentation/kbuild/
6299 F:      Makefile
6300 F:      scripts/Makefile.*
6301 F:      scripts/basic/
6302 F:      scripts/mk*
6303 F:      scripts/package/
6304
6305 KERNEL JANITORS
6306 L:      kernel-janitors@vger.kernel.org
6307 W:      http://kernelnewbies.org/KernelJanitors
6308 S:      Odd Fixes
6309
6310 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6311 M:      "J. Bruce Fields" <bfields@fieldses.org>
6312 M:      Jeff Layton <jlayton@poochiereds.net>
6313 L:      linux-nfs@vger.kernel.org
6314 W:      http://nfs.sourceforge.net/
6315 T:      git git://linux-nfs.org/~bfields/linux.git
6316 S:      Supported
6317 F:      fs/nfsd/
6318 F:      include/uapi/linux/nfsd/
6319 F:      fs/lockd/
6320 F:      fs/nfs_common/
6321 F:      net/sunrpc/
6322 F:      include/linux/lockd/
6323 F:      include/linux/sunrpc/
6324 F:      include/uapi/linux/sunrpc/
6325
6326 KERNEL SELFTEST FRAMEWORK
6327 M:      Shuah Khan <shuahkh@osg.samsung.com>
6328 L:      linux-kselftest@vger.kernel.org
6329 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6330 S:      Maintained
6331 F:      tools/testing/selftests
6332
6333 KERNEL VIRTUAL MACHINE (KVM)
6334 M:      Paolo Bonzini <pbonzini@redhat.com>
6335 M:      Radim Krčmář <rkrcmar@redhat.com>
6336 L:      kvm@vger.kernel.org
6337 W:      http://www.linux-kvm.org
6338 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6339 S:      Supported
6340 F:      Documentation/*/kvm*.txt
6341 F:      Documentation/virtual/kvm/
6342 F:      arch/*/kvm/
6343 F:      arch/x86/kernel/kvm.c
6344 F:      arch/x86/kernel/kvmclock.c
6345 F:      arch/*/include/asm/kvm*
6346 F:      include/linux/kvm*
6347 F:      include/uapi/linux/kvm*
6348 F:      virt/kvm/
6349
6350 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6351 M:      Joerg Roedel <joro@8bytes.org>
6352 L:      kvm@vger.kernel.org
6353 W:      http://www.linux-kvm.org/
6354 S:      Maintained
6355 F:      arch/x86/include/asm/svm.h
6356 F:      arch/x86/kvm/svm.c
6357
6358 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6359 M:      Alexander Graf <agraf@suse.com>
6360 L:      kvm-ppc@vger.kernel.org
6361 W:      http://www.linux-kvm.org/
6362 T:      git git://github.com/agraf/linux-2.6.git
6363 S:      Supported
6364 F:      arch/powerpc/include/asm/kvm*
6365 F:      arch/powerpc/kvm/
6366
6367 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6368 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6369 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6370 L:      linux-s390@vger.kernel.org
6371 W:      http://www.ibm.com/developerworks/linux/linux390/
6372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6373 S:      Supported
6374 F:      Documentation/s390/kvm.txt
6375 F:      arch/s390/include/asm/kvm*
6376 F:      arch/s390/kvm/
6377
6378 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6379 M:      Christoffer Dall <christoffer.dall@linaro.org>
6380 M:      Marc Zyngier <marc.zyngier@arm.com>
6381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6382 L:      kvmarm@lists.cs.columbia.edu
6383 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6385 S:      Supported
6386 F:      arch/arm/include/uapi/asm/kvm*
6387 F:      arch/arm/include/asm/kvm*
6388 F:      arch/arm/kvm/
6389 F:      virt/kvm/arm/
6390 F:      include/kvm/arm_*
6391
6392 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6393 M:      Christoffer Dall <christoffer.dall@linaro.org>
6394 M:      Marc Zyngier <marc.zyngier@arm.com>
6395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6396 L:      kvmarm@lists.cs.columbia.edu
6397 S:      Maintained
6398 F:      arch/arm64/include/uapi/asm/kvm*
6399 F:      arch/arm64/include/asm/kvm*
6400 F:      arch/arm64/kvm/
6401
6402 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6403 M:      James Hogan <james.hogan@imgtec.com>
6404 L:      linux-mips@linux-mips.org
6405 S:      Supported
6406 F:      arch/mips/include/uapi/asm/kvm*
6407 F:      arch/mips/include/asm/kvm*
6408 F:      arch/mips/kvm/
6409
6410 KEXEC
6411 M:      Eric Biederman <ebiederm@xmission.com>
6412 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6413 L:      kexec@lists.infradead.org
6414 S:      Maintained
6415 F:      include/linux/kexec.h
6416 F:      include/uapi/linux/kexec.h
6417 F:      kernel/kexec.c
6418
6419 KEYS/KEYRINGS:
6420 M:      David Howells <dhowells@redhat.com>
6421 L:      keyrings@vger.kernel.org
6422 S:      Maintained
6423 F:      Documentation/security/keys.txt
6424 F:      include/linux/key.h
6425 F:      include/linux/key-type.h
6426 F:      include/keys/
6427 F:      security/keys/
6428
6429 KEYS-TRUSTED
6430 M:      David Safford <safford@us.ibm.com>
6431 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6432 L:      linux-security-module@vger.kernel.org
6433 L:      keyrings@vger.kernel.org
6434 S:      Supported
6435 F:      Documentation/security/keys-trusted-encrypted.txt
6436 F:      include/keys/trusted-type.h
6437 F:      security/keys/trusted.c
6438 F:      security/keys/trusted.h
6439
6440 KEYS-ENCRYPTED
6441 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6442 M:      David Safford <safford@us.ibm.com>
6443 L:      linux-security-module@vger.kernel.org
6444 L:      keyrings@vger.kernel.org
6445 S:      Supported
6446 F:      Documentation/security/keys-trusted-encrypted.txt
6447 F:      include/keys/encrypted-type.h
6448 F:      security/keys/encrypted-keys/
6449
6450 KGDB / KDB /debug_core
6451 M:      Jason Wessel <jason.wessel@windriver.com>
6452 W:      http://kgdb.wiki.kernel.org/
6453 L:      kgdb-bugreport@lists.sourceforge.net
6454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6455 S:      Maintained
6456 F:      Documentation/DocBook/kgdb.tmpl
6457 F:      drivers/misc/kgdbts.c
6458 F:      drivers/tty/serial/kgdboc.c
6459 F:      include/linux/kdb.h
6460 F:      include/linux/kgdb.h
6461 F:      kernel/debug/
6462
6463 KMEMCHECK
6464 M:      Vegard Nossum <vegardno@ifi.uio.no>
6465 M:      Pekka Enberg <penberg@kernel.org>
6466 S:      Maintained
6467 F:      Documentation/kmemcheck.txt
6468 F:      arch/x86/include/asm/kmemcheck.h
6469 F:      arch/x86/mm/kmemcheck/
6470 F:      include/linux/kmemcheck.h
6471 F:      mm/kmemcheck.c
6472
6473 KMEMLEAK
6474 M:      Catalin Marinas <catalin.marinas@arm.com>
6475 S:      Maintained
6476 F:      Documentation/kmemleak.txt
6477 F:      include/linux/kmemleak.h
6478 F:      mm/kmemleak.c
6479 F:      mm/kmemleak-test.c
6480
6481 KPROBES
6482 M:      Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>
6483 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6484 M:      "David S. Miller" <davem@davemloft.net>
6485 M:      Masami Hiramatsu <mhiramat@kernel.org>
6486 S:      Maintained
6487 F:      Documentation/kprobes.txt
6488 F:      include/linux/kprobes.h
6489 F:      kernel/kprobes.c
6490
6491 KS0108 LCD CONTROLLER DRIVER
6492 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6493 W:      http://miguelojeda.es/auxdisplay.htm
6494 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6495 S:      Maintained
6496 F:      Documentation/auxdisplay/ks0108
6497 F:      drivers/auxdisplay/ks0108.c
6498 F:      include/linux/ks0108.h
6499
6500 L3MDEV
6501 M:      David Ahern <dsa@cumulusnetworks.com>
6502 L:      netdev@vger.kernel.org
6503 S:      Maintained
6504 F:      net/l3mdev
6505 F:      include/net/l3mdev.h
6506
6507 LANTIQ MIPS ARCHITECTURE
6508 M:      John Crispin <john@phrozen.org>
6509 L:      linux-mips@linux-mips.org
6510 S:      Maintained
6511 F:      arch/mips/lantiq
6512
6513 LAPB module
6514 L:      linux-x25@vger.kernel.org
6515 S:      Orphan
6516 F:      Documentation/networking/lapb-module.txt
6517 F:      include/*/lapb.h
6518 F:      net/lapb/
6519
6520 LASI 53c700 driver for PARISC
6521 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6522 L:      linux-scsi@vger.kernel.org
6523 S:      Maintained
6524 F:      Documentation/scsi/53c700.txt
6525 F:      drivers/scsi/53c700*
6526
6527 LED SUBSYSTEM
6528 M:      Richard Purdie <rpurdie@rpsys.net>
6529 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6530 L:      linux-leds@vger.kernel.org
6531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6532 S:      Maintained
6533 F:      drivers/leds/
6534 F:      include/linux/leds.h
6535
6536 LEGACY EEPROM DRIVER
6537 M:      Jean Delvare <jdelvare@suse.com>
6538 S:      Maintained
6539 F:      Documentation/misc-devices/eeprom
6540 F:      drivers/misc/eeprom/eeprom.c
6541
6542 LEGO USB Tower driver
6543 M:      Juergen Stuber <starblue@users.sourceforge.net>
6544 L:      legousb-devel@lists.sourceforge.net
6545 W:      http://legousb.sourceforge.net/
6546 S:      Maintained
6547 F:      drivers/usb/misc/legousbtower.c
6548
6549 LG2160 MEDIA DRIVER
6550 M:      Michael Krufky <mkrufky@linuxtv.org>
6551 L:      linux-media@vger.kernel.org
6552 W:      https://linuxtv.org
6553 W:      http://github.com/mkrufky
6554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6555 T:      git git://linuxtv.org/mkrufky/tuners.git
6556 S:      Maintained
6557 F:      drivers/media/dvb-frontends/lg2160.*
6558
6559 LGDT3305 MEDIA DRIVER
6560 M:      Michael Krufky <mkrufky@linuxtv.org>
6561 L:      linux-media@vger.kernel.org
6562 W:      https://linuxtv.org
6563 W:      http://github.com/mkrufky
6564 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6565 T:      git git://linuxtv.org/mkrufky/tuners.git
6566 S:      Maintained
6567 F:      drivers/media/dvb-frontends/lgdt3305.*
6568
6569 LGUEST
6570 M:      Rusty Russell <rusty@rustcorp.com.au>
6571 L:      lguest@lists.ozlabs.org
6572 W:      http://lguest.ozlabs.org/
6573 S:      Odd Fixes
6574 F:      arch/x86/include/asm/lguest*.h
6575 F:      arch/x86/lguest/
6576 F:      drivers/lguest/
6577 F:      include/linux/lguest*.h
6578 F:      tools/lguest/
6579
6580 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6581 M:      Tejun Heo <tj@kernel.org>
6582 L:      linux-ide@vger.kernel.org
6583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6584 S:      Maintained
6585 F:      drivers/ata/
6586 F:      include/linux/ata.h
6587 F:      include/linux/libata.h
6588
6589 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6590 M:      Viresh Kumar <vireshk@kernel.org>
6591 L:      linux-ide@vger.kernel.org
6592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6593 S:      Maintained
6594 F:      include/linux/pata_arasan_cf_data.h
6595 F:      drivers/ata/pata_arasan_cf.c
6596
6597 LIBATA PATA DRIVERS
6598 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6599 M:      Tejun Heo <tj@kernel.org>
6600 L:      linux-ide@vger.kernel.org
6601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6602 S:      Maintained
6603 F:      drivers/ata/pata_*.c
6604 F:      drivers/ata/ata_generic.c
6605
6606 LIBATA SATA AHCI PLATFORM devices support
6607 M:      Hans de Goede <hdegoede@redhat.com>
6608 M:      Tejun Heo <tj@kernel.org>
6609 L:      linux-ide@vger.kernel.org
6610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6611 S:      Maintained
6612 F:      drivers/ata/ahci_platform.c
6613 F:      drivers/ata/libahci_platform.c
6614 F:      include/linux/ahci_platform.h
6615
6616 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6617 M:      Mikael Pettersson <mikpelinux@gmail.com>
6618 L:      linux-ide@vger.kernel.org
6619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6620 S:      Maintained
6621 F:      drivers/ata/sata_promise.*
6622
6623 LIBLOCKDEP
6624 M:      Sasha Levin <sasha.levin@oracle.com>
6625 S:      Maintained
6626 F:      tools/lib/lockdep/
6627
6628 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6629 M:      Dan Williams <dan.j.williams@intel.com>
6630 L:      linux-nvdimm@lists.01.org
6631 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6633 S:      Supported
6634 F:      drivers/nvdimm/*
6635 F:      include/linux/nd.h
6636 F:      include/linux/libnvdimm.h
6637 F:      include/uapi/linux/ndctl.h
6638
6639 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6640 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6641 L:      linux-nvdimm@lists.01.org
6642 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6643 S:      Supported
6644 F:      drivers/nvdimm/blk.c
6645 F:      drivers/nvdimm/region_devs.c
6646 F:      drivers/acpi/nfit*
6647
6648 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6649 M:      Vishal Verma <vishal.l.verma@intel.com>
6650 L:      linux-nvdimm@lists.01.org
6651 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6652 S:      Supported
6653 F:      drivers/nvdimm/btt*
6654
6655 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6656 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6657 L:      linux-nvdimm@lists.01.org
6658 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6659 S:      Supported
6660 F:      drivers/nvdimm/pmem.c
6661 F:      include/linux/pmem.h
6662 F:      arch/*/include/asm/pmem.h
6663
6664 LIGHTNVM PLATFORM SUPPORT
6665 M:      Matias Bjorling <mb@lightnvm.io>
6666 W:      http://github/OpenChannelSSD
6667 L:      linux-block@vger.kernel.org
6668 S:      Maintained
6669 F:      drivers/lightnvm/
6670 F:      include/linux/lightnvm.h
6671 F:      include/uapi/linux/lightnvm.h
6672
6673 LINUX FOR IBM pSERIES (RS/6000)
6674 M:      Paul Mackerras <paulus@au.ibm.com>
6675 W:      http://www.ibm.com/linux/ltc/projects/ppc
6676 S:      Supported
6677 F:      arch/powerpc/boot/rs6000.h
6678
6679 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6680 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6681 M:      Paul Mackerras <paulus@samba.org>
6682 M:      Michael Ellerman <mpe@ellerman.id.au>
6683 W:      http://www.penguinppc.org/
6684 L:      linuxppc-dev@lists.ozlabs.org
6685 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6687 S:      Supported
6688 F:      Documentation/powerpc/
6689 F:      arch/powerpc/
6690 F:      drivers/char/tpm/tpm_ibmvtpm*
6691 F:      drivers/crypto/nx/
6692 F:      drivers/crypto/vmx/
6693 F:      drivers/net/ethernet/ibm/ibmveth.*
6694 F:      drivers/net/ethernet/ibm/ibmvnic.*
6695 F:      drivers/pci/hotplug/rpa*
6696 F:      drivers/scsi/ibmvscsi/
6697 N:      opal
6698 N:      /pmac
6699 N:      powermac
6700 N:      powernv
6701 N:      [^a-z0-9]ps3
6702 N:      pseries
6703
6704 LINUX FOR POWER MACINTOSH
6705 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6706 W:      http://www.penguinppc.org/
6707 L:      linuxppc-dev@lists.ozlabs.org
6708 S:      Maintained
6709 F:      arch/powerpc/platforms/powermac/
6710 F:      drivers/macintosh/
6711
6712 LINUX FOR POWERPC EMBEDDED MPC5XXX
6713 M:      Anatolij Gustschin <agust@denx.de>
6714 L:      linuxppc-dev@lists.ozlabs.org
6715 T:      git git://git.denx.de/linux-denx-agust.git
6716 S:      Maintained
6717 F:      arch/powerpc/platforms/512x/
6718 F:      arch/powerpc/platforms/52xx/
6719
6720 LINUX FOR POWERPC EMBEDDED PPC4XX
6721 M:      Alistair Popple <alistair@popple.id.au>
6722 M:      Matt Porter <mporter@kernel.crashing.org>
6723 W:      http://www.penguinppc.org/
6724 L:      linuxppc-dev@lists.ozlabs.org
6725 S:      Maintained
6726 F:      arch/powerpc/platforms/40x/
6727 F:      arch/powerpc/platforms/44x/
6728
6729 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6730 L:      linuxppc-dev@lists.ozlabs.org
6731 S:      Orphan
6732 F:      arch/powerpc/*/*virtex*
6733 F:      arch/powerpc/*/*/*virtex*
6734
6735 LINUX FOR POWERPC EMBEDDED PPC8XX
6736 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6737 W:      http://www.penguinppc.org/
6738 L:      linuxppc-dev@lists.ozlabs.org
6739 S:      Maintained
6740 F:      arch/powerpc/platforms/8xx/
6741
6742 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6743 M:      Scott Wood <oss@buserror.net>
6744 M:      Kumar Gala <galak@kernel.crashing.org>
6745 W:      http://www.penguinppc.org/
6746 L:      linuxppc-dev@lists.ozlabs.org
6747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6748 S:      Maintained
6749 F:      arch/powerpc/platforms/83xx/
6750 F:      arch/powerpc/platforms/85xx/
6751
6752 LINUX FOR POWERPC PA SEMI PWRFICIENT
6753 M:      Olof Johansson <olof@lixom.net>
6754 L:      linuxppc-dev@lists.ozlabs.org
6755 S:      Maintained
6756 F:      arch/powerpc/platforms/pasemi/
6757 F:      drivers/*/*pasemi*
6758 F:      drivers/*/*/*pasemi*
6759
6760 LINUX SECURITY MODULE (LSM) FRAMEWORK
6761 M:      Chris Wright <chrisw@sous-sol.org>
6762 L:      linux-security-module@vger.kernel.org
6763 S:      Supported
6764
6765 LIS3LV02D ACCELEROMETER DRIVER
6766 M:      Eric Piel <eric.piel@tremplin-utc.net>
6767 S:      Maintained
6768 F:      Documentation/misc-devices/lis3lv02d
6769 F:      drivers/misc/lis3lv02d/
6770 F:      drivers/platform/x86/hp_accel.c
6771
6772 LIVE PATCHING
6773 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6774 M:      Jessica Yu <jeyu@redhat.com>
6775 M:      Jiri Kosina <jikos@kernel.org>
6776 M:      Miroslav Benes <mbenes@suse.cz>
6777 R:      Petr Mladek <pmladek@suse.com>
6778 S:      Maintained
6779 F:      kernel/livepatch/
6780 F:      include/linux/livepatch.h
6781 F:      arch/x86/include/asm/livepatch.h
6782 F:      arch/x86/kernel/livepatch.c
6783 F:      Documentation/livepatch/
6784 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6785 F:      samples/livepatch/
6786 L:      live-patching@vger.kernel.org
6787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6788
6789 LINUX KERNEL DUMP TEST MODULE (LKDTM)
6790 M:      Kees Cook <keescook@chromium.org>
6791 S:      Maintained
6792 F:      drivers/misc/lkdtm.c
6793
6794 LLC (802.2)
6795 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6796 S:      Maintained
6797 F:      include/linux/llc.h
6798 F:      include/uapi/linux/llc.h
6799 F:      include/net/llc*
6800 F:      net/llc/
6801
6802 LM73 HARDWARE MONITOR DRIVER
6803 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6804 L:      linux-hwmon@vger.kernel.org
6805 S:      Maintained
6806 F:      drivers/hwmon/lm73.c
6807
6808 LM78 HARDWARE MONITOR DRIVER
6809 M:      Jean Delvare <jdelvare@suse.com>
6810 L:      linux-hwmon@vger.kernel.org
6811 S:      Maintained
6812 F:      Documentation/hwmon/lm78
6813 F:      drivers/hwmon/lm78.c
6814
6815 LM83 HARDWARE MONITOR DRIVER
6816 M:      Jean Delvare <jdelvare@suse.com>
6817 L:      linux-hwmon@vger.kernel.org
6818 S:      Maintained
6819 F:      Documentation/hwmon/lm83
6820 F:      drivers/hwmon/lm83.c
6821
6822 LM90 HARDWARE MONITOR DRIVER
6823 M:      Jean Delvare <jdelvare@suse.com>
6824 L:      linux-hwmon@vger.kernel.org
6825 S:      Maintained
6826 F:      Documentation/hwmon/lm90
6827 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6828 F:      drivers/hwmon/lm90.c
6829
6830 LM95234 HARDWARE MONITOR DRIVER
6831 M:      Guenter Roeck <linux@roeck-us.net>
6832 L:      linux-hwmon@vger.kernel.org
6833 S:      Maintained
6834 F:      Documentation/hwmon/lm95234
6835 F:      drivers/hwmon/lm95234.c
6836
6837 LME2510 MEDIA DRIVER
6838 M:      Malcolm Priestley <tvboxspy@gmail.com>
6839 L:      linux-media@vger.kernel.org
6840 W:      https://linuxtv.org
6841 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6842 S:      Maintained
6843 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6844
6845 LOCKDEP AND LOCKSTAT
6846 M:      Peter Zijlstra <peterz@infradead.org>
6847 M:      Ingo Molnar <mingo@redhat.com>
6848 L:      linux-kernel@vger.kernel.org
6849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6850 S:      Maintained
6851 F:      Documentation/locking/lockdep*.txt
6852 F:      Documentation/locking/lockstat.txt
6853 F:      include/linux/lockdep.h
6854 F:      kernel/locking/
6855
6856 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6857 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6858 L:      linux-ntfs-dev@lists.sourceforge.net
6859 W:      http://www.linux-ntfs.org/content/view/19/37/
6860 S:      Maintained
6861 F:      Documentation/ldm.txt
6862 F:      block/partitions/ldm.*
6863
6864 LogFS
6865 M:      Joern Engel <joern@logfs.org>
6866 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6867 L:      logfs@logfs.org
6868 W:      logfs.org
6869 S:      Maintained
6870 F:      fs/logfs/
6871
6872 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6873 M:      Sathya Prakash <sathya.prakash@broadcom.com>
6874 M:      Chaitra P B <chaitra.basappa@broadcom.com>
6875 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
6876 L:      MPT-FusionLinux.pdl@broadcom.com
6877 L:      linux-scsi@vger.kernel.org
6878 W:      http://www.avagotech.com/support/
6879 S:      Supported
6880 F:      drivers/message/fusion/
6881 F:      drivers/scsi/mpt2sas/
6882 F:      drivers/scsi/mpt3sas/
6883
6884 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6885 M:      Matthew Wilcox <matthew@wil.cx>
6886 L:      linux-scsi@vger.kernel.org
6887 S:      Maintained
6888 F:      drivers/scsi/sym53c8xx_2/
6889
6890 LTC4261 HARDWARE MONITOR DRIVER
6891 M:      Guenter Roeck <linux@roeck-us.net>
6892 L:      linux-hwmon@vger.kernel.org
6893 S:      Maintained
6894 F:      Documentation/hwmon/ltc4261
6895 F:      drivers/hwmon/ltc4261.c
6896
6897 LTP (Linux Test Project)
6898 M:      Mike Frysinger <vapier@gentoo.org>
6899 M:      Cyril Hrubis <chrubis@suse.cz>
6900 M:      Wanlong Gao <wanlong.gao@gmail.com>
6901 M:      Jan Stancek <jstancek@redhat.com>
6902 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6903 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6904 L:      ltp@lists.linux.it (subscribers-only)
6905 W:      http://linux-test-project.github.io/
6906 T:      git git://github.com/linux-test-project/ltp.git
6907 S:      Maintained
6908
6909 M32R ARCHITECTURE
6910 W:      http://www.linux-m32r.org/
6911 S:      Orphan
6912 F:      arch/m32r/
6913
6914 M68K ARCHITECTURE
6915 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6916 L:      linux-m68k@lists.linux-m68k.org
6917 W:      http://www.linux-m68k.org/
6918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6919 S:      Maintained
6920 F:      arch/m68k/
6921 F:      drivers/zorro/
6922
6923 M68K ON APPLE MACINTOSH
6924 M:      Joshua Thompson <funaho@jurai.org>
6925 W:      http://www.mac.linux-m68k.org/
6926 L:      linux-m68k@lists.linux-m68k.org
6927 S:      Maintained
6928 F:      arch/m68k/mac/
6929
6930 M68K ON HP9000/300
6931 M:      Philip Blundell <philb@gnu.org>
6932 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6933 S:      Maintained
6934 F:      arch/m68k/hp300/
6935
6936 M88DS3103 MEDIA DRIVER
6937 M:      Antti Palosaari <crope@iki.fi>
6938 L:      linux-media@vger.kernel.org
6939 W:      https://linuxtv.org
6940 W:      http://palosaari.fi/linux/
6941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6942 T:      git git://linuxtv.org/anttip/media_tree.git
6943 S:      Maintained
6944 F:      drivers/media/dvb-frontends/m88ds3103*
6945
6946 M88RS2000 MEDIA DRIVER
6947 M:      Malcolm Priestley <tvboxspy@gmail.com>
6948 L:      linux-media@vger.kernel.org
6949 W:      https://linuxtv.org
6950 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6951 S:      Maintained
6952 F:      drivers/media/dvb-frontends/m88rs2000*
6953
6954 MA901 MASTERKIT USB FM RADIO DRIVER
6955 M:      Alexey Klimov <klimov.linux@gmail.com>
6956 L:      linux-media@vger.kernel.org
6957 T:      git git://linuxtv.org/media_tree.git
6958 S:      Maintained
6959 F:      drivers/media/radio/radio-ma901.c
6960
6961 MAC80211
6962 M:      Johannes Berg <johannes@sipsolutions.net>
6963 L:      linux-wireless@vger.kernel.org
6964 W:      http://wireless.kernel.org/
6965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6967 S:      Maintained
6968 F:      Documentation/networking/mac80211-injection.txt
6969 F:      include/net/mac80211.h
6970 F:      net/mac80211/
6971 F:      drivers/net/wireless/mac80211_hwsim.[ch]
6972
6973 MACVLAN DRIVER
6974 M:      Patrick McHardy <kaber@trash.net>
6975 L:      netdev@vger.kernel.org
6976 S:      Maintained
6977 F:      drivers/net/macvlan.c
6978 F:      include/linux/if_macvlan.h
6979
6980 MAILBOX API
6981 M:      Jassi Brar <jassisinghbrar@gmail.com>
6982 L:      linux-kernel@vger.kernel.org
6983 S:      Maintained
6984 F:      drivers/mailbox/
6985 F:      include/linux/mailbox_client.h
6986 F:      include/linux/mailbox_controller.h
6987
6988 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6989 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6990 W:      http://www.kernel.org/doc/man-pages
6991 L:      linux-man@vger.kernel.org
6992 S:      Maintained
6993
6994 MARVELL ARMADA DRM SUPPORT
6995 M:      Russell King <rmk+kernel@armlinux.org.uk>
6996 S:      Maintained
6997 F:      drivers/gpu/drm/armada/
6998
6999 MARVELL 88E6352 DSA support
7000 M:      Guenter Roeck <linux@roeck-us.net>
7001 S:      Maintained
7002 F:      drivers/net/dsa/mv88e6352.c
7003
7004 MARVELL CRYPTO DRIVER
7005 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7006 M:      Arnaud Ebalard <arno@natisbad.org>
7007 F:      drivers/crypto/marvell/
7008 S:      Maintained
7009 L:      linux-crypto@vger.kernel.org
7010
7011 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7012 M:      Mirko Lindner <mlindner@marvell.com>
7013 M:      Stephen Hemminger <stephen@networkplumber.org>
7014 L:      netdev@vger.kernel.org
7015 S:      Maintained
7016 F:      drivers/net/ethernet/marvell/sk*
7017
7018 MARVELL LIBERTAS WIRELESS DRIVER
7019 L:      libertas-dev@lists.infradead.org
7020 S:      Orphan
7021 F:      drivers/net/wireless/marvell/libertas/
7022
7023 MARVELL MV643XX ETHERNET DRIVER
7024 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
7025 L:      netdev@vger.kernel.org
7026 S:      Maintained
7027 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7028 F:      include/linux/mv643xx.h
7029
7030 MARVELL MVNETA ETHERNET DRIVER
7031 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
7032 L:      netdev@vger.kernel.org
7033 S:      Maintained
7034 F:      drivers/net/ethernet/marvell/mvneta.*
7035
7036 MARVELL MWIFIEX WIRELESS DRIVER
7037 M:      Amitkumar Karwar <akarwar@marvell.com>
7038 M:      Nishant Sarmukadam <nishants@marvell.com>
7039 L:      linux-wireless@vger.kernel.org
7040 S:      Maintained
7041 F:      drivers/net/wireless/marvell/mwifiex/
7042
7043 MARVELL MWL8K WIRELESS DRIVER
7044 M:      Lennert Buytenhek <buytenh@wantstofly.org>
7045 L:      linux-wireless@vger.kernel.org
7046 S:      Odd Fixes
7047 F:      drivers/net/wireless/marvell/mwl8k.c
7048
7049 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7050 M:      Nicolas Pitre <nico@fluxnic.net>
7051 S:      Odd Fixes
7052 F:      drivers/mmc/host/mvsdio.*
7053
7054 MATROX FRAMEBUFFER DRIVER
7055 L:      linux-fbdev@vger.kernel.org
7056 S:      Orphan
7057 F:      drivers/video/fbdev/matrox/matroxfb_*
7058 F:      include/uapi/linux/matroxfb.h
7059
7060 MAX16065 HARDWARE MONITOR DRIVER
7061 M:      Guenter Roeck <linux@roeck-us.net>
7062 L:      linux-hwmon@vger.kernel.org
7063 S:      Maintained
7064 F:      Documentation/hwmon/max16065
7065 F:      drivers/hwmon/max16065.c
7066
7067 MAX20751 HARDWARE MONITOR DRIVER
7068 M:      Guenter Roeck <linux@roeck-us.net>
7069 L:      linux-hwmon@vger.kernel.org
7070 S:      Maintained
7071 F:      Documentation/hwmon/max20751
7072 F:      drivers/hwmon/max20751.c
7073
7074 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7075 M:      "Hans J. Koch" <hjk@hansjkoch.de>
7076 L:      linux-hwmon@vger.kernel.org
7077 S:      Maintained
7078 F:      Documentation/hwmon/max6650
7079 F:      drivers/hwmon/max6650.c
7080
7081 MAX6697 HARDWARE MONITOR DRIVER
7082 M:      Guenter Roeck <linux@roeck-us.net>
7083 L:      linux-hwmon@vger.kernel.org
7084 S:      Maintained
7085 F:      Documentation/hwmon/max6697
7086 F:      Documentation/devicetree/bindings/i2c/max6697.txt
7087 F:      drivers/hwmon/max6697.c
7088 F:      include/linux/platform_data/max6697.h
7089
7090 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
7091 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7092 L:      linux-pm@vger.kernel.org
7093 S:      Supported
7094 F:      drivers/power/max14577_charger.c
7095 F:      drivers/power/max77693_charger.c
7096
7097 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
7098 M:      Javier Martinez Canillas <javier@osg.samsung.com>
7099 L:      linux-kernel@vger.kernel.org
7100 S:      Supported
7101 F:      drivers/*/*max77802*.c
7102 F:      Documentation/devicetree/bindings/*/*max77802.txt
7103 F:      include/dt-bindings/*/*max77802.h
7104
7105 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
7106 M:      Chanwoo Choi <cw00.choi@samsung.com>
7107 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
7108 L:      linux-kernel@vger.kernel.org
7109 S:      Supported
7110 F:      drivers/*/max14577*.c
7111 F:      drivers/*/max77686*.c
7112 F:      drivers/*/max77693*.c
7113 F:      drivers/extcon/extcon-max14577.c
7114 F:      drivers/extcon/extcon-max77693.c
7115 F:      drivers/rtc/rtc-max77686.c
7116 F:      drivers/clk/clk-max77686.c
7117 F:      Documentation/devicetree/bindings/mfd/max14577.txt
7118 F:      Documentation/devicetree/bindings/*/max77686.txt
7119 F:      Documentation/devicetree/bindings/mfd/max77693.txt
7120 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
7121 F:      include/linux/mfd/max14577*.h
7122 F:      include/linux/mfd/max77686*.h
7123 F:      include/linux/mfd/max77693*.h
7124
7125 MAXIRADIO FM RADIO RECEIVER DRIVER
7126 M:      Hans Verkuil <hverkuil@xs4all.nl>
7127 L:      linux-media@vger.kernel.org
7128 T:      git git://linuxtv.org/media_tree.git
7129 W:      https://linuxtv.org
7130 S:      Maintained
7131 F:      drivers/media/radio/radio-maxiradio*
7132
7133 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
7134 M:      Peter Rosin <peda@axentia.se>
7135 L:      linux-iio@vger.kernel.org
7136 S:      Maintained
7137 F:      drivers/iio/potentiometer/mcp4531.c
7138
7139 MEDIA DRIVERS FOR RENESAS - VSP1
7140 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7141 L:      linux-media@vger.kernel.org
7142 L:      linux-renesas-soc@vger.kernel.org
7143 T:      git git://linuxtv.org/media_tree.git
7144 S:      Supported
7145 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
7146 F:      drivers/media/platform/vsp1/
7147
7148 MEDIA DRIVERS FOR ASCOT2E
7149 M:      Sergey Kozlov <serjk@netup.ru>
7150 L:      linux-media@vger.kernel.org
7151 W:      https://linuxtv.org
7152 W:      http://netup.tv/
7153 T:      git git://linuxtv.org/media_tree.git
7154 S:      Supported
7155 F:      drivers/media/dvb-frontends/ascot2e*
7156
7157 MEDIA DRIVERS FOR CXD2841ER
7158 M:      Sergey Kozlov <serjk@netup.ru>
7159 L:      linux-media@vger.kernel.org
7160 W:      https://linuxtv.org
7161 W:      http://netup.tv/
7162 T:      git git://linuxtv.org/media_tree.git
7163 S:      Supported
7164 F:      drivers/media/dvb-frontends/cxd2841er*
7165
7166 MEDIA DRIVERS FOR HORUS3A
7167 M:      Sergey Kozlov <serjk@netup.ru>
7168 L:      linux-media@vger.kernel.org
7169 W:      https://linuxtv.org
7170 W:      http://netup.tv/
7171 T:      git git://linuxtv.org/media_tree.git
7172 S:      Supported
7173 F:      drivers/media/dvb-frontends/horus3a*
7174
7175 MEDIA DRIVERS FOR LNBH25
7176 M:      Sergey Kozlov <serjk@netup.ru>
7177 L:      linux-media@vger.kernel.org
7178 W:      https://linuxtv.org
7179 W:      http://netup.tv/
7180 T:      git git://linuxtv.org/media_tree.git
7181 S:      Supported
7182 F:      drivers/media/dvb-frontends/lnbh25*
7183
7184 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
7185 M:      Sergey Kozlov <serjk@netup.ru>
7186 L:      linux-media@vger.kernel.org
7187 W:      https://linuxtv.org
7188 W:      http://netup.tv/
7189 T:      git git://linuxtv.org/media_tree.git
7190 S:      Supported
7191 F:      drivers/media/pci/netup_unidvb/*
7192
7193 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
7194 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
7195 P:      LinuxTV.org Project
7196 L:      linux-media@vger.kernel.org
7197 W:      https://linuxtv.org
7198 Q:      http://patchwork.kernel.org/project/linux-media/list/
7199 T:      git git://linuxtv.org/media_tree.git
7200 S:      Maintained
7201 F:      Documentation/dvb/
7202 F:      Documentation/video4linux/
7203 F:      Documentation/DocBook/media/
7204 F:      drivers/media/
7205 F:      drivers/staging/media/
7206 F:      include/linux/platform_data/media/
7207 F:      include/media/
7208 F:      include/uapi/linux/dvb/
7209 F:      include/uapi/linux/videodev2.h
7210 F:      include/uapi/linux/media.h
7211 F:      include/uapi/linux/v4l2-*
7212 F:      include/uapi/linux/meye.h
7213 F:      include/uapi/linux/ivtv*
7214 F:      include/uapi/linux/uvcvideo.h
7215
7216 MEDIATEK ETHERNET DRIVER
7217 M:      Felix Fietkau <nbd@openwrt.org>
7218 M:      John Crispin <blogic@openwrt.org>
7219 L:      netdev@vger.kernel.org
7220 S:      Maintained
7221 F:      drivers/net/ethernet/mediatek/
7222
7223 MEDIATEK MT7601U WIRELESS LAN DRIVER
7224 M:      Jakub Kicinski <kubakici@wp.pl>
7225 L:      linux-wireless@vger.kernel.org
7226 S:      Maintained
7227 F:      drivers/net/wireless/mediatek/mt7601u/
7228
7229 MEGARAID SCSI/SAS DRIVERS
7230 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7231 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7232 M:      Uday Lingala <uday.lingala@avagotech.com>
7233 L:      megaraidlinux.pdl@avagotech.com
7234 L:      linux-scsi@vger.kernel.org
7235 W:      http://www.lsi.com
7236 S:      Maintained
7237 F:      Documentation/scsi/megaraid.txt
7238 F:      drivers/scsi/megaraid.*
7239 F:      drivers/scsi/megaraid/
7240
7241 MELLANOX ETHERNET DRIVER (mlx4_en)
7242 M:      Eugenia Emantayev <eugenia@mellanox.com>
7243 L:      netdev@vger.kernel.org
7244 S:      Supported
7245 W:      http://www.mellanox.com
7246 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7247 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7248
7249 MELLANOX ETHERNET DRIVER (mlx5e)
7250 M:      Saeed Mahameed <saeedm@mellanox.com>
7251 L:      netdev@vger.kernel.org
7252 S:      Supported
7253 W:      http://www.mellanox.com
7254 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7255 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7256
7257 MELLANOX ETHERNET SWITCH DRIVERS
7258 M:      Jiri Pirko <jiri@mellanox.com>
7259 M:      Ido Schimmel <idosch@mellanox.com>
7260 L:      netdev@vger.kernel.org
7261 S:      Supported
7262 W:      http://www.mellanox.com
7263 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7264 F:      drivers/net/ethernet/mellanox/mlxsw/
7265
7266 MEMBARRIER SUPPORT
7267 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7268 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7269 L:      linux-kernel@vger.kernel.org
7270 S:      Supported
7271 F:      kernel/membarrier.c
7272 F:      include/uapi/linux/membarrier.h
7273
7274 MEMORY MANAGEMENT
7275 L:      linux-mm@kvack.org
7276 W:      http://www.linux-mm.org
7277 S:      Maintained
7278 F:      include/linux/mm.h
7279 F:      include/linux/gfp.h
7280 F:      include/linux/mmzone.h
7281 F:      include/linux/memory_hotplug.h
7282 F:      include/linux/vmalloc.h
7283 F:      mm/
7284
7285 MEMORY TECHNOLOGY DEVICES (MTD)
7286 M:      David Woodhouse <dwmw2@infradead.org>
7287 M:      Brian Norris <computersforpeace@gmail.com>
7288 L:      linux-mtd@lists.infradead.org
7289 W:      http://www.linux-mtd.infradead.org/
7290 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7291 T:      git git://git.infradead.org/linux-mtd.git
7292 T:      git git://git.infradead.org/l2-mtd.git
7293 S:      Maintained
7294 F:      drivers/mtd/
7295 F:      include/linux/mtd/
7296 F:      include/uapi/mtd/
7297
7298 MEN A21 WATCHDOG DRIVER
7299 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7300 L:      linux-watchdog@vger.kernel.org
7301 S:      Maintained
7302 F:      drivers/watchdog/mena21_wdt.c
7303
7304 MEN CHAMELEON BUS (mcb)
7305 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7306 S:      Maintained
7307 F:      drivers/mcb/
7308 F:      include/linux/mcb.h
7309 F:      Documentation/men-chameleon-bus.txt
7310
7311 MEN F21BMC (Board Management Controller)
7312 M:      Andreas Werner <andreas.werner@men.de>
7313 S:      Supported
7314 F:      drivers/mfd/menf21bmc.c
7315 F:      drivers/watchdog/menf21bmc_wdt.c
7316 F:      drivers/leds/leds-menf21bmc.c
7317 F:      drivers/hwmon/menf21bmc_hwmon.c
7318 F:      Documentation/hwmon/menf21bmc
7319
7320 METAG ARCHITECTURE
7321 M:      James Hogan <james.hogan@imgtec.com>
7322 L:      linux-metag@vger.kernel.org
7323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7324 S:      Odd Fixes
7325 F:      arch/metag/
7326 F:      Documentation/metag/
7327 F:      Documentation/devicetree/bindings/metag/
7328 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7329 F:      drivers/clocksource/metag_generic.c
7330 F:      drivers/irqchip/irq-metag.c
7331 F:      drivers/irqchip/irq-metag-ext.c
7332 F:      drivers/tty/metag_da.c
7333
7334 MICROBLAZE ARCHITECTURE
7335 M:      Michal Simek <monstr@monstr.eu>
7336 W:      http://www.monstr.eu/fdt/
7337 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7338 S:      Supported
7339 F:      arch/microblaze/
7340
7341 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7342 M:      Chen Yu <yu.c.chen@intel.com>
7343 L:      platform-driver-x86@vger.kernel.org
7344 S:      Supported
7345 F:      drivers/platform/x86/surfacepro3_button.c
7346
7347 MICROTEK X6 SCANNER
7348 M:      Oliver Neukum <oliver@neukum.org>
7349 S:      Maintained
7350 F:      drivers/usb/image/microtek.*
7351
7352 MIPS
7353 M:      Ralf Baechle <ralf@linux-mips.org>
7354 L:      linux-mips@linux-mips.org
7355 W:      http://www.linux-mips.org/
7356 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7357 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7358 S:      Supported
7359 F:      Documentation/mips/
7360 F:      arch/mips/
7361
7362 MIPS/LOONGSON1 ARCHITECTURE
7363 M:      Keguang Zhang <keguang.zhang@gmail.com>
7364 L:      linux-mips@linux-mips.org
7365 S:      Maintained
7366 F:      arch/mips/loongson32/
7367 F:      arch/mips/include/asm/mach-loongson32/
7368 F:      drivers/*/*loongson1*
7369 F:      drivers/*/*/*loongson1*
7370
7371 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7372 M:      Hans Verkuil <hverkuil@xs4all.nl>
7373 L:      linux-media@vger.kernel.org
7374 T:      git git://linuxtv.org/media_tree.git
7375 W:      https://linuxtv.org
7376 S:      Odd Fixes
7377 F:      drivers/media/radio/radio-miropcm20*
7378
7379 MELLANOX MLX4 core VPI driver
7380 M:      Yishai Hadas <yishaih@mellanox.com>
7381 L:      netdev@vger.kernel.org
7382 L:      linux-rdma@vger.kernel.org
7383 W:      http://www.mellanox.com
7384 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7385 S:      Supported
7386 F:      drivers/net/ethernet/mellanox/mlx4/
7387 F:      include/linux/mlx4/
7388
7389 MELLANOX MLX4 IB driver
7390 M:      Yishai Hadas <yishaih@mellanox.com>
7391 L:      linux-rdma@vger.kernel.org
7392 W:      http://www.mellanox.com
7393 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7394 S:      Supported
7395 F:      drivers/infiniband/hw/mlx4/
7396 F:      include/linux/mlx4/
7397
7398 MELLANOX MLX5 core VPI driver
7399 M:      Matan Barak <matanb@mellanox.com>
7400 M:      Leon Romanovsky <leonro@mellanox.com>
7401 L:      netdev@vger.kernel.org
7402 L:      linux-rdma@vger.kernel.org
7403 W:      http://www.mellanox.com
7404 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7405 S:      Supported
7406 F:      drivers/net/ethernet/mellanox/mlx5/core/
7407 F:      include/linux/mlx5/
7408
7409 MELLANOX MLX5 IB driver
7410 M:      Matan Barak <matanb@mellanox.com>
7411 M:      Leon Romanovsky <leonro@mellanox.com>
7412 L:      linux-rdma@vger.kernel.org
7413 W:      http://www.mellanox.com
7414 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7415 S:      Supported
7416 F:      drivers/infiniband/hw/mlx5/
7417 F:      include/linux/mlx5/
7418
7419 MELEXIS MLX90614 DRIVER
7420 M:      Crt Mori <cmo@melexis.com>
7421 L:      linux-iio@vger.kernel.org
7422 W:      http://www.melexis.com
7423 S:      Supported
7424 F:      drivers/iio/temperature/mlx90614.c
7425
7426 MN88472 MEDIA DRIVER
7427 M:      Antti Palosaari <crope@iki.fi>
7428 L:      linux-media@vger.kernel.org
7429 W:      https://linuxtv.org
7430 W:      http://palosaari.fi/linux/
7431 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7432 T:      git git://linuxtv.org/anttip/media_tree.git
7433 S:      Maintained
7434 F:      drivers/staging/media/mn88472/
7435 F:      drivers/media/dvb-frontends/mn88472.h
7436
7437 MN88473 MEDIA DRIVER
7438 M:      Antti Palosaari <crope@iki.fi>
7439 L:      linux-media@vger.kernel.org
7440 W:      https://linuxtv.org
7441 W:      http://palosaari.fi/linux/
7442 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7443 S:      Maintained
7444 F:      drivers/media/dvb-frontends/mn88473*
7445
7446 MODULE SUPPORT
7447 M:      Rusty Russell <rusty@rustcorp.com.au>
7448 S:      Maintained
7449 F:      include/linux/module.h
7450 F:      kernel/module.c
7451
7452 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7453 W:      http://popies.net/meye/
7454 S:      Orphan
7455 F:      Documentation/video4linux/meye.txt
7456 F:      drivers/media/pci/meye/
7457 F:      include/uapi/linux/meye.h
7458
7459 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7460 M:      Jiri Slaby <jirislaby@gmail.com>
7461 S:      Maintained
7462 F:      Documentation/serial/moxa-smartio
7463 F:      drivers/tty/mxser.*
7464
7465 MR800 AVERMEDIA USB FM RADIO DRIVER
7466 M:      Alexey Klimov <klimov.linux@gmail.com>
7467 L:      linux-media@vger.kernel.org
7468 T:      git git://linuxtv.org/media_tree.git
7469 S:      Maintained
7470 F:      drivers/media/radio/radio-mr800.c
7471
7472 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7473 M:      Alan Ott <alan@signal11.us>
7474 L:      linux-wpan@vger.kernel.org
7475 S:      Maintained
7476 F:      drivers/net/ieee802154/mrf24j40.c
7477 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7478
7479 MSI LAPTOP SUPPORT
7480 M:      "Lee, Chun-Yi" <jlee@suse.com>
7481 L:      platform-driver-x86@vger.kernel.org
7482 S:      Maintained
7483 F:      drivers/platform/x86/msi-laptop.c
7484
7485 MSI WMI SUPPORT
7486 L:      platform-driver-x86@vger.kernel.org
7487 S:      Orphan
7488 F:      drivers/platform/x86/msi-wmi.c
7489
7490 MSI001 MEDIA DRIVER
7491 M:      Antti Palosaari <crope@iki.fi>
7492 L:      linux-media@vger.kernel.org
7493 W:      https://linuxtv.org
7494 W:      http://palosaari.fi/linux/
7495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7496 T:      git git://linuxtv.org/anttip/media_tree.git
7497 S:      Maintained
7498 F:      drivers/media/tuners/msi001*
7499
7500 MSI2500 MEDIA DRIVER
7501 M:      Antti Palosaari <crope@iki.fi>
7502 L:      linux-media@vger.kernel.org
7503 W:      https://linuxtv.org
7504 W:      http://palosaari.fi/linux/
7505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7506 T:      git git://linuxtv.org/anttip/media_tree.git
7507 S:      Maintained
7508 F:      drivers/media/usb/msi2500/
7509
7510 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7511 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7512 L:      linux-mtd@lists.infradead.org
7513 S:      Maintained
7514 F:      drivers/mtd/devices/docg3*
7515
7516 MT9M032 APTINA SENSOR DRIVER
7517 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7518 L:      linux-media@vger.kernel.org
7519 T:      git git://linuxtv.org/media_tree.git
7520 S:      Maintained
7521 F:      drivers/media/i2c/mt9m032.c
7522 F:      include/media/i2c/mt9m032.h
7523
7524 MT9P031 APTINA CAMERA SENSOR
7525 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7526 L:      linux-media@vger.kernel.org
7527 T:      git git://linuxtv.org/media_tree.git
7528 S:      Maintained
7529 F:      drivers/media/i2c/mt9p031.c
7530 F:      include/media/i2c/mt9p031.h
7531
7532 MT9T001 APTINA CAMERA SENSOR
7533 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7534 L:      linux-media@vger.kernel.org
7535 T:      git git://linuxtv.org/media_tree.git
7536 S:      Maintained
7537 F:      drivers/media/i2c/mt9t001.c
7538 F:      include/media/i2c/mt9t001.h
7539
7540 MT9V032 APTINA CAMERA SENSOR
7541 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7542 L:      linux-media@vger.kernel.org
7543 T:      git git://linuxtv.org/media_tree.git
7544 S:      Maintained
7545 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7546 F:      drivers/media/i2c/mt9v032.c
7547 F:      include/media/i2c/mt9v032.h
7548
7549 MULTIFUNCTION DEVICES (MFD)
7550 M:      Lee Jones <lee.jones@linaro.org>
7551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7552 S:      Supported
7553 F:      drivers/mfd/
7554 F:      include/linux/mfd/
7555
7556 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7557 M:      Ulf Hansson <ulf.hansson@linaro.org>
7558 L:      linux-mmc@vger.kernel.org
7559 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7560 S:      Maintained
7561 F:      drivers/mmc/
7562 F:      include/linux/mmc/
7563 F:      include/uapi/linux/mmc/
7564
7565 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7566 S:      Orphan
7567 F:      drivers/mmc/host/mmc_spi.c
7568 F:      include/linux/spi/mmc_spi.h
7569
7570 MULTISOUND SOUND DRIVER
7571 M:      Andrew Veliath <andrewtv@usa.net>
7572 S:      Maintained
7573 F:      Documentation/sound/oss/MultiSound
7574 F:      sound/oss/msnd*
7575
7576 MULTITECH MULTIPORT CARD (ISICOM)
7577 S:      Orphan
7578 F:      drivers/tty/isicom.c
7579 F:      include/linux/isicom.h
7580
7581 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7582 M:      Bin Liu <b-liu@ti.com>
7583 L:      linux-usb@vger.kernel.org
7584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7585 S:      Maintained
7586 F:      drivers/usb/musb/
7587
7588 MXL5007T MEDIA DRIVER
7589 M:      Michael Krufky <mkrufky@linuxtv.org>
7590 L:      linux-media@vger.kernel.org
7591 W:      https://linuxtv.org
7592 W:      http://github.com/mkrufky
7593 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7594 T:      git git://linuxtv.org/mkrufky/tuners.git
7595 S:      Maintained
7596 F:      drivers/media/tuners/mxl5007t.*
7597
7598 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7599 M:      Hyong-Youb Kim <hykim@myri.com>
7600 L:      netdev@vger.kernel.org
7601 W:      https://www.myricom.com/support/downloads/myri10ge.html
7602 S:      Supported
7603 F:      drivers/net/ethernet/myricom/myri10ge/
7604
7605 NAND FLASH SUBSYSTEM
7606 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
7607 R:      Richard Weinberger <richard@nod.at>
7608 L:      linux-mtd@lists.infradead.org
7609 W:      http://www.linux-mtd.infradead.org/
7610 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7611 T:      git git://github.com/linux-nand/linux.git
7612 S:      Maintained
7613 F:      drivers/mtd/nand/
7614 F:      include/linux/mtd/nand*.h
7615
7616 NATSEMI ETHERNET DRIVER (DP8381x)
7617 S:      Orphan
7618 F:      drivers/net/ethernet/natsemi/natsemi.c
7619
7620 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7621 M:      Daniel Mack <zonque@gmail.com>
7622 S:      Maintained
7623 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7624 W:      http://www.native-instruments.com
7625 F:      sound/usb/caiaq/
7626
7627 NCP FILESYSTEM
7628 M:      Petr Vandrovec <petr@vandrovec.name>
7629 S:      Odd Fixes
7630 F:      fs/ncpfs/
7631
7632 NCR 5380 SCSI DRIVERS
7633 M:      Finn Thain <fthain@telegraphics.com.au>
7634 M:      Michael Schmitz <schmitzmic@gmail.com>
7635 L:      linux-scsi@vger.kernel.org
7636 S:      Maintained
7637 F:      Documentation/scsi/g_NCR5380.txt
7638 F:      Documentation/scsi/dtc3x80.txt
7639 F:      drivers/scsi/NCR5380.*
7640 F:      drivers/scsi/arm/cumana_1.c
7641 F:      drivers/scsi/arm/oak.c
7642 F:      drivers/scsi/atari_scsi.*
7643 F:      drivers/scsi/dmx3191d.c
7644 F:      drivers/scsi/dtc.*
7645 F:      drivers/scsi/g_NCR5380.*
7646 F:      drivers/scsi/g_NCR5380_mmio.c
7647 F:      drivers/scsi/mac_scsi.*
7648 F:      drivers/scsi/pas16.*
7649 F:      drivers/scsi/sun3_scsi.*
7650 F:      drivers/scsi/sun3_scsi_vme.c
7651 F:      drivers/scsi/t128.*
7652
7653 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7654 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7655 L:      linux-scsi@vger.kernel.org
7656 S:      Maintained
7657 F:      drivers/scsi/NCR_D700.*
7658
7659 NCT6775 HARDWARE MONITOR DRIVER
7660 M:      Guenter Roeck <linux@roeck-us.net>
7661 L:      linux-hwmon@vger.kernel.org
7662 S:      Maintained
7663 F:      Documentation/hwmon/nct6775
7664 F:      drivers/hwmon/nct6775.c
7665
7666 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7667 M:      Faisal Latif <faisal.latif@intel.com>
7668 L:      linux-rdma@vger.kernel.org
7669 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7670 S:      Supported
7671 F:      drivers/infiniband/hw/nes/
7672
7673 NETEM NETWORK EMULATOR
7674 M:      Stephen Hemminger <stephen@networkplumber.org>
7675 L:      netem@lists.linux-foundation.org (moderated for non-subscribers)
7676 S:      Maintained
7677 F:      net/sched/sch_netem.c
7678
7679 NETERION 10GbE DRIVERS (s2io/vxge)
7680 M:      Jon Mason <jdmason@kudzu.us>
7681 L:      netdev@vger.kernel.org
7682 S:      Supported
7683 F:      Documentation/networking/s2io.txt
7684 F:      Documentation/networking/vxge.txt
7685 F:      drivers/net/ethernet/neterion/
7686
7687 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7688 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7689 M:      Patrick McHardy <kaber@trash.net>
7690 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7691 L:      netfilter-devel@vger.kernel.org
7692 L:      coreteam@netfilter.org
7693 W:      http://www.netfilter.org/
7694 W:      http://www.iptables.org/
7695 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7698 S:      Supported
7699 F:      include/linux/netfilter*
7700 F:      include/linux/netfilter/
7701 F:      include/net/netfilter/
7702 F:      include/uapi/linux/netfilter*
7703 F:      include/uapi/linux/netfilter/
7704 F:      net/*/netfilter.c
7705 F:      net/*/netfilter/
7706 F:      net/netfilter/
7707 F:      net/bridge/br_netfilter*.c
7708
7709 NETLABEL
7710 M:      Paul Moore <paul@paul-moore.com>
7711 W:      http://netlabel.sf.net
7712 L:      netdev@vger.kernel.org
7713 S:      Maintained
7714 F:      Documentation/netlabel/
7715 F:      include/net/netlabel.h
7716 F:      net/netlabel/
7717
7718 NETROM NETWORK LAYER
7719 M:      Ralf Baechle <ralf@linux-mips.org>
7720 L:      linux-hams@vger.kernel.org
7721 W:      http://www.linux-ax25.org/
7722 S:      Maintained
7723 F:      include/net/netrom.h
7724 F:      include/uapi/linux/netrom.h
7725 F:      net/netrom/
7726
7727 NETRONOME ETHERNET DRIVERS
7728 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7729 L:      oss-drivers@netronome.com
7730 S:      Maintained
7731 F:      drivers/net/ethernet/netronome/
7732
7733 NETWORK BLOCK DEVICE (NBD)
7734 M:      Markus Pargmann <mpa@pengutronix.de>
7735 S:      Maintained
7736 L:      nbd-general@lists.sourceforge.net
7737 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7738 F:      Documentation/blockdev/nbd.txt
7739 F:      drivers/block/nbd.c
7740 F:      include/uapi/linux/nbd.h
7741
7742 NETWORK DROP MONITOR
7743 M:      Neil Horman <nhorman@tuxdriver.com>
7744 L:      netdev@vger.kernel.org
7745 S:      Maintained
7746 W:      https://fedorahosted.org/dropwatch/
7747 F:      net/core/drop_monitor.c
7748
7749 NETWORKING [GENERAL]
7750 M:      "David S. Miller" <davem@davemloft.net>
7751 L:      netdev@vger.kernel.org
7752 W:      http://www.linuxfoundation.org/en/Net
7753 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7756 S:      Maintained
7757 F:      net/
7758 F:      include/net/
7759 F:      include/linux/in.h
7760 F:      include/linux/net.h
7761 F:      include/linux/netdevice.h
7762 F:      include/uapi/linux/in.h
7763 F:      include/uapi/linux/net.h
7764 F:      include/uapi/linux/netdevice.h
7765 F:      include/uapi/linux/net_namespace.h
7766 F:      tools/net/
7767 F:      tools/testing/selftests/net/
7768 F:      lib/random32.c
7769 F:      lib/test_bpf.c
7770
7771 NETWORKING [IPv4/IPv6]
7772 M:      "David S. Miller" <davem@davemloft.net>
7773 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7774 M:      James Morris <jmorris@namei.org>
7775 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7776 M:      Patrick McHardy <kaber@trash.net>
7777 L:      netdev@vger.kernel.org
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7779 S:      Maintained
7780 F:      net/ipv4/
7781 F:      net/ipv6/
7782 F:      include/net/ip*
7783 F:      arch/x86/net/*
7784
7785 NETWORKING [IPSEC]
7786 M:      Steffen Klassert <steffen.klassert@secunet.com>
7787 M:      Herbert Xu <herbert@gondor.apana.org.au>
7788 M:      "David S. Miller" <davem@davemloft.net>
7789 L:      netdev@vger.kernel.org
7790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7792 S:      Maintained
7793 F:      net/core/flow.c
7794 F:      net/xfrm/
7795 F:      net/key/
7796 F:      net/ipv4/xfrm*
7797 F:      net/ipv4/esp4.c
7798 F:      net/ipv4/ah4.c
7799 F:      net/ipv4/ipcomp.c
7800 F:      net/ipv4/ip_vti.c
7801 F:      net/ipv6/xfrm*
7802 F:      net/ipv6/esp6.c
7803 F:      net/ipv6/ah6.c
7804 F:      net/ipv6/ipcomp6.c
7805 F:      net/ipv6/ip6_vti.c
7806 F:      include/uapi/linux/xfrm.h
7807 F:      include/net/xfrm.h
7808
7809 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7810 M:      Paul Moore <paul@paul-moore.com>
7811 L:      netdev@vger.kernel.org
7812 S:      Maintained
7813
7814 NETWORKING [WIRELESS]
7815 L:      linux-wireless@vger.kernel.org
7816 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7817
7818 NETWORKING DRIVERS
7819 L:      netdev@vger.kernel.org
7820 W:      http://www.linuxfoundation.org/en/Net
7821 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7823 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7824 S:      Odd Fixes
7825 F:      drivers/net/
7826 F:      include/linux/if_*
7827 F:      include/linux/netdevice.h
7828 F:      include/linux/etherdevice.h
7829 F:      include/linux/fcdevice.h
7830 F:      include/linux/fddidevice.h
7831 F:      include/linux/hippidevice.h
7832 F:      include/linux/inetdevice.h
7833 F:      include/uapi/linux/if_*
7834 F:      include/uapi/linux/netdevice.h
7835
7836 NETWORKING DRIVERS (WIRELESS)
7837 M:      Kalle Valo <kvalo@codeaurora.org>
7838 L:      linux-wireless@vger.kernel.org
7839 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7842 S:      Maintained
7843 F:      drivers/net/wireless/
7844
7845 NETXEN (1/10) GbE SUPPORT
7846 M:      Manish Chopra <manish.chopra@qlogic.com>
7847 M:      Sony Chacko <sony.chacko@qlogic.com>
7848 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7849 L:      netdev@vger.kernel.org
7850 W:      http://www.qlogic.com
7851 S:      Supported
7852 F:      drivers/net/ethernet/qlogic/netxen/
7853
7854 NFC SUBSYSTEM
7855 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7856 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7857 M:      Samuel Ortiz <sameo@linux.intel.com>
7858 L:      linux-wireless@vger.kernel.org
7859 L:      linux-nfc@lists.01.org (subscribers-only)
7860 S:      Supported
7861 F:      net/nfc/
7862 F:      include/net/nfc/
7863 F:      include/uapi/linux/nfc.h
7864 F:      drivers/nfc/
7865 F:      include/linux/platform_data/nfcmrvl.h
7866 F:      include/linux/platform_data/nxp-nci.h
7867 F:      include/linux/platform_data/pn544.h
7868 F:      include/linux/platform_data/st21nfca.h
7869 F:      include/linux/platform_data/st-nci.h
7870 F:      Documentation/devicetree/bindings/net/nfc/
7871
7872 NFS, SUNRPC, AND LOCKD CLIENTS
7873 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7874 M:      Anna Schumaker <anna.schumaker@netapp.com>
7875 L:      linux-nfs@vger.kernel.org
7876 W:      http://client.linux-nfs.org
7877 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7878 S:      Maintained
7879 F:      fs/lockd/
7880 F:      fs/nfs/
7881 F:      fs/nfs_common/
7882 F:      net/sunrpc/
7883 F:      include/linux/lockd/
7884 F:      include/linux/nfs*
7885 F:      include/linux/sunrpc/
7886 F:      include/uapi/linux/nfs*
7887 F:      include/uapi/linux/sunrpc/
7888
7889 NILFS2 FILESYSTEM
7890 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7891 L:      linux-nilfs@vger.kernel.org
7892 W:      http://nilfs.sourceforge.net/
7893 T:      git git://github.com/konis/nilfs2.git
7894 S:      Supported
7895 F:      Documentation/filesystems/nilfs2.txt
7896 F:      fs/nilfs2/
7897 F:      include/linux/nilfs2_fs.h
7898 F:      include/trace/events/nilfs2.h
7899
7900 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7901 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7902 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7903 S:      Maintained
7904 F:      Documentation/scsi/NinjaSCSI.txt
7905 F:      drivers/scsi/pcmcia/nsp_*
7906
7907 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7908 M:      GOTO Masanori <gotom@debian.or.jp>
7909 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7910 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7911 S:      Maintained
7912 F:      Documentation/scsi/NinjaSCSI.txt
7913 F:      drivers/scsi/nsp32*
7914
7915 NIOS2 ARCHITECTURE
7916 M:      Ley Foon Tan <lftan@altera.com>
7917 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7919 S:      Maintained
7920 F:      arch/nios2/
7921
7922 NOKIA N900 POWER SUPPLY DRIVERS
7923 R:      Pali Rohár <pali.rohar@gmail.com>
7924 F:      include/linux/power/bq2415x_charger.h
7925 F:      include/linux/power/bq27xxx_battery.h
7926 F:      include/linux/power/isp1704_charger.h
7927 F:      drivers/power/bq2415x_charger.c
7928 F:      drivers/power/bq27xxx_battery.c
7929 F:      drivers/power/bq27xxx_battery_i2c.c
7930 F:      drivers/power/isp1704_charger.c
7931 F:      drivers/power/rx51_battery.c
7932
7933 NTB DRIVER CORE
7934 M:      Jon Mason <jdmason@kudzu.us>
7935 M:      Dave Jiang <dave.jiang@intel.com>
7936 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7937 L:      linux-ntb@googlegroups.com
7938 S:      Supported
7939 W:      https://github.com/jonmason/ntb/wiki
7940 T:      git git://github.com/jonmason/ntb.git
7941 F:      drivers/ntb/
7942 F:      drivers/net/ntb_netdev.c
7943 F:      include/linux/ntb.h
7944 F:      include/linux/ntb_transport.h
7945
7946 NTB INTEL DRIVER
7947 M:      Jon Mason <jdmason@kudzu.us>
7948 M:      Dave Jiang <dave.jiang@intel.com>
7949 L:      linux-ntb@googlegroups.com
7950 S:      Supported
7951 W:      https://github.com/jonmason/ntb/wiki
7952 T:      git git://github.com/jonmason/ntb.git
7953 F:      drivers/ntb/hw/intel/
7954
7955 NTB AMD DRIVER
7956 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7957 L:      linux-ntb@googlegroups.com
7958 S:      Supported
7959 F:      drivers/ntb/hw/amd/
7960
7961 NTFS FILESYSTEM
7962 M:      Anton Altaparmakov <anton@tuxera.com>
7963 L:      linux-ntfs-dev@lists.sourceforge.net
7964 W:      http://www.tuxera.com/
7965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7966 S:      Supported
7967 F:      Documentation/filesystems/ntfs.txt
7968 F:      fs/ntfs/
7969
7970 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7971 M:      Antonino Daplas <adaplas@gmail.com>
7972 L:      linux-fbdev@vger.kernel.org
7973 S:      Maintained
7974 F:      drivers/video/fbdev/riva/
7975 F:      drivers/video/fbdev/nvidia/
7976
7977 NVM EXPRESS DRIVER
7978 M:      Keith Busch <keith.busch@intel.com>
7979 M:      Jens Axboe <axboe@fb.com>
7980 L:      linux-nvme@lists.infradead.org
7981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7982 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7983 S:      Supported
7984 F:      drivers/nvme/host/
7985 F:      include/linux/nvme.h
7986
7987 NVMEM FRAMEWORK
7988 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7989 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7990 S:      Maintained
7991 F:      drivers/nvmem/
7992 F:      Documentation/devicetree/bindings/nvmem/
7993 F:      include/linux/nvmem-consumer.h
7994 F:      include/linux/nvmem-provider.h
7995
7996 NXP-NCI NFC DRIVER
7997 M:      Clément Perrochaud <clement.perrochaud@effinnov.com>
7998 R:      Charles Gorand <charles.gorand@effinnov.com>
7999 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
8000 S:      Supported
8001 F:      drivers/nfc/nxp-nci
8002
8003 NXP TDA998X DRM DRIVER
8004 M:      Russell King <rmk+kernel@armlinux.org.uk>
8005 S:      Supported
8006 F:      drivers/gpu/drm/i2c/tda998x_drv.c
8007 F:      include/drm/i2c/tda998x.h
8008
8009 NXP TFA9879 DRIVER
8010 M:      Peter Rosin <peda@axentia.se>
8011 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8012 S:      Maintained
8013 F:      sound/soc/codecs/tfa9879*
8014
8015 OBJTOOL
8016 M:      Josh Poimboeuf <jpoimboe@redhat.com>
8017 S:      Supported
8018 F:      tools/objtool/
8019
8020 OMAP SUPPORT
8021 M:      Tony Lindgren <tony@atomide.com>
8022 L:      linux-omap@vger.kernel.org
8023 W:      http://www.muru.com/linux/omap/
8024 W:      http://linux.omap.com/
8025 Q:      http://patchwork.kernel.org/project/linux-omap/list/
8026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
8027 S:      Maintained
8028 F:      arch/arm/*omap*/
8029 F:      arch/arm/configs/omap1_defconfig
8030 F:      arch/arm/configs/omap2plus_defconfig
8031 F:      drivers/i2c/busses/i2c-omap.c
8032 F:      drivers/irqchip/irq-omap-intc.c
8033 F:      drivers/mfd/*omap*.c
8034 F:      drivers/mfd/menelaus.c
8035 F:      drivers/mfd/palmas.c
8036 F:      drivers/mfd/tps65217.c
8037 F:      drivers/mfd/tps65218.c
8038 F:      drivers/mfd/tps65910.c
8039 F:      drivers/mfd/twl-core.[ch]
8040 F:      drivers/mfd/twl4030*.c
8041 F:      drivers/mfd/twl6030*.c
8042 F:      drivers/mfd/twl6040*.c
8043 F:      drivers/regulator/palmas-regulator*.c
8044 F:      drivers/regulator/pbias-regulator.c
8045 F:      drivers/regulator/tps65217-regulator.c
8046 F:      drivers/regulator/tps65218-regulator.c
8047 F:      drivers/regulator/tps65910-regulator.c
8048 F:      drivers/regulator/twl-regulator.c
8049 F:      include/linux/i2c-omap.h
8050
8051 OMAP DEVICE TREE SUPPORT
8052 M:      Benoît Cousson <bcousson@baylibre.com>
8053 M:      Tony Lindgren <tony@atomide.com>
8054 L:      linux-omap@vger.kernel.org
8055 L:      devicetree@vger.kernel.org
8056 S:      Maintained
8057 F:      arch/arm/boot/dts/*omap*
8058 F:      arch/arm/boot/dts/*am3*
8059 F:      arch/arm/boot/dts/*am4*
8060 F:      arch/arm/boot/dts/*am5*
8061 F:      arch/arm/boot/dts/*dra7*
8062
8063 OMAP CLOCK FRAMEWORK SUPPORT
8064 M:      Paul Walmsley <paul@pwsan.com>
8065 L:      linux-omap@vger.kernel.org
8066 S:      Maintained
8067 F:      arch/arm/*omap*/*clock*
8068
8069 OMAP POWER MANAGEMENT SUPPORT
8070 M:      Kevin Hilman <khilman@kernel.org>
8071 L:      linux-omap@vger.kernel.org
8072 S:      Maintained
8073 F:      arch/arm/*omap*/*pm*
8074 F:      drivers/cpufreq/omap-cpufreq.c
8075
8076 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
8077 M:      Rajendra Nayak <rnayak@codeaurora.org>
8078 M:      Paul Walmsley <paul@pwsan.com>
8079 L:      linux-omap@vger.kernel.org
8080 S:      Maintained
8081 F:      arch/arm/mach-omap2/prm*
8082
8083 OMAP AUDIO SUPPORT
8084 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
8085 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
8086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8087 L:      linux-omap@vger.kernel.org
8088 S:      Maintained
8089 F:      sound/soc/omap/
8090
8091 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
8092 M:      Roger Quadros <rogerq@ti.com>
8093 M:      Tony Lindgren <tony@atomide.com>
8094 L:      linux-omap@vger.kernel.org
8095 S:      Maintained
8096 F:      drivers/memory/omap-gpmc.c
8097 F:      arch/arm/mach-omap2/*gpmc*
8098
8099 OMAP FRAMEBUFFER SUPPORT
8100 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8101 L:      linux-fbdev@vger.kernel.org
8102 L:      linux-omap@vger.kernel.org
8103 S:      Maintained
8104 F:      drivers/video/fbdev/omap/
8105
8106 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
8107 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
8108 L:      linux-omap@vger.kernel.org
8109 L:      linux-fbdev@vger.kernel.org
8110 S:      Maintained
8111 F:      drivers/video/fbdev/omap2/
8112 F:      Documentation/arm/OMAP/DSS
8113
8114 OMAP HARDWARE SPINLOCK SUPPORT
8115 M:      Ohad Ben-Cohen <ohad@wizery.com>
8116 L:      linux-omap@vger.kernel.org
8117 S:      Maintained
8118 F:      drivers/hwspinlock/omap_hwspinlock.c
8119
8120 OMAP MMC SUPPORT
8121 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
8122 L:      linux-omap@vger.kernel.org
8123 S:      Maintained
8124 F:      drivers/mmc/host/omap.c
8125
8126 OMAP HS MMC SUPPORT
8127 L:      linux-mmc@vger.kernel.org
8128 L:      linux-omap@vger.kernel.org
8129 S:      Orphan
8130 F:      drivers/mmc/host/omap_hsmmc.c
8131
8132 OMAP RANDOM NUMBER GENERATOR SUPPORT
8133 M:      Deepak Saxena <dsaxena@plexity.net>
8134 S:      Maintained
8135 F:      drivers/char/hw_random/omap-rng.c
8136
8137 OMAP HWMOD SUPPORT
8138 M:      Benoît Cousson <bcousson@baylibre.com>
8139 M:      Paul Walmsley <paul@pwsan.com>
8140 L:      linux-omap@vger.kernel.org
8141 S:      Maintained
8142 F:      arch/arm/mach-omap2/omap_hwmod.*
8143
8144 OMAP HWMOD DATA
8145 M:      Paul Walmsley <paul@pwsan.com>
8146 L:      linux-omap@vger.kernel.org
8147 S:      Maintained
8148 F:      arch/arm/mach-omap2/omap_hwmod*data*
8149
8150 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
8151 M:      Benoît Cousson <bcousson@baylibre.com>
8152 L:      linux-omap@vger.kernel.org
8153 S:      Maintained
8154 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
8155
8156 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
8157 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8158 L:      linux-media@vger.kernel.org
8159 S:      Maintained
8160 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
8161 F:      drivers/media/platform/omap3isp/
8162 F:      drivers/staging/media/omap4iss/
8163
8164 OMAP USB SUPPORT
8165 L:      linux-usb@vger.kernel.org
8166 L:      linux-omap@vger.kernel.org
8167 S:      Orphan
8168 F:      drivers/usb/*/*omap*
8169 F:      arch/arm/*omap*/usb*
8170
8171 OMAP GPIO DRIVER
8172 M:      Grygorii Strashko <grygorii.strashko@ti.com>
8173 M:      Santosh Shilimkar <ssantosh@kernel.org>
8174 M:      Kevin Hilman <khilman@kernel.org>
8175 L:      linux-omap@vger.kernel.org
8176 S:      Maintained
8177 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
8178 F:      drivers/gpio/gpio-omap.c
8179
8180 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
8181 M:      Mark Jackson <mpfj@newflow.co.uk>
8182 L:      linux-omap@vger.kernel.org
8183 S:      Maintained
8184 F:      arch/arm/boot/dts/am335x-nano.dts
8185
8186 OMFS FILESYSTEM
8187 M:      Bob Copeland <me@bobcopeland.com>
8188 L:      linux-karma-devel@lists.sourceforge.net
8189 S:      Maintained
8190 F:      Documentation/filesystems/omfs.txt
8191 F:      fs/omfs/
8192
8193 OMNIKEY CARDMAN 4000 DRIVER
8194 M:      Harald Welte <laforge@gnumonks.org>
8195 S:      Maintained
8196 F:      drivers/char/pcmcia/cm4000_cs.c
8197 F:      include/linux/cm4000_cs.h
8198 F:      include/uapi/linux/cm4000_cs.h
8199
8200 OMNIKEY CARDMAN 4040 DRIVER
8201 M:      Harald Welte <laforge@gnumonks.org>
8202 S:      Maintained
8203 F:      drivers/char/pcmcia/cm4040_cs.*
8204
8205 OMNIVISION OV7670 SENSOR DRIVER
8206 M:      Jonathan Corbet <corbet@lwn.net>
8207 L:      linux-media@vger.kernel.org
8208 T:      git git://linuxtv.org/media_tree.git
8209 S:      Maintained
8210 F:      drivers/media/i2c/ov7670.c
8211
8212 ONENAND FLASH DRIVER
8213 M:      Kyungmin Park <kyungmin.park@samsung.com>
8214 L:      linux-mtd@lists.infradead.org
8215 S:      Maintained
8216 F:      drivers/mtd/onenand/
8217 F:      include/linux/mtd/onenand*.h
8218
8219 ONSTREAM SCSI TAPE DRIVER
8220 M:      Willem Riede <osst@riede.org>
8221 L:      osst-users@lists.sourceforge.net
8222 L:      linux-scsi@vger.kernel.org
8223 S:      Maintained
8224 F:      Documentation/scsi/osst.txt
8225 F:      drivers/scsi/osst.*
8226 F:      drivers/scsi/osst_*.h
8227 F:      drivers/scsi/st.h
8228
8229 OPENCORES I2C BUS DRIVER
8230 M:      Peter Korsgaard <jacmet@sunsite.dk>
8231 L:      linux-i2c@vger.kernel.org
8232 S:      Maintained
8233 F:      Documentation/i2c/busses/i2c-ocores
8234 F:      drivers/i2c/busses/i2c-ocores.c
8235
8236 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8237 M:      Rob Herring <robh+dt@kernel.org>
8238 M:      Frank Rowand <frowand.list@gmail.com>
8239 M:      Grant Likely <grant.likely@linaro.org>
8240 L:      devicetree@vger.kernel.org
8241 W:      http://www.devicetree.org/
8242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8243 S:      Maintained
8244 F:      drivers/of/
8245 F:      include/linux/of*.h
8246 F:      scripts/dtc/
8247
8248 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8249 M:      Rob Herring <robh+dt@kernel.org>
8250 M:      Pawel Moll <pawel.moll@arm.com>
8251 M:      Mark Rutland <mark.rutland@arm.com>
8252 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8253 M:      Kumar Gala <galak@codeaurora.org>
8254 L:      devicetree@vger.kernel.org
8255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8256 S:      Maintained
8257 F:      Documentation/devicetree/
8258 F:      arch/*/boot/dts/
8259 F:      include/dt-bindings/
8260
8261 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8262 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8263 L:      devicetree@vger.kernel.org
8264 S:      Maintained
8265 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8266 F:      Documentation/devicetree/overlay-notes.txt
8267 F:      drivers/of/overlay.c
8268 F:      drivers/of/resolver.c
8269
8270 OPENRISC ARCHITECTURE
8271 M:      Jonas Bonn <jonas@southpole.se>
8272 W:      http://openrisc.net
8273 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8274 S:      Maintained
8275 T:      git git://openrisc.net/~jonas/linux
8276 F:      arch/openrisc/
8277
8278 OPENVSWITCH
8279 M:      Pravin Shelar <pshelar@nicira.com>
8280 L:      netdev@vger.kernel.org
8281 L:      dev@openvswitch.org
8282 W:      http://openvswitch.org
8283 S:      Maintained
8284 F:      net/openvswitch/
8285 F:      include/uapi/linux/openvswitch.h
8286
8287 OPERATING PERFORMANCE POINTS (OPP)
8288 M:      Viresh Kumar <vireshk@kernel.org>
8289 M:      Nishanth Menon <nm@ti.com>
8290 M:      Stephen Boyd <sboyd@codeaurora.org>
8291 L:      linux-pm@vger.kernel.org
8292 S:      Maintained
8293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8294 F:      drivers/base/power/opp/
8295 F:      include/linux/pm_opp.h
8296 F:      Documentation/power/opp.txt
8297 F:      Documentation/devicetree/bindings/opp/
8298
8299 OPL4 DRIVER
8300 M:      Clemens Ladisch <clemens@ladisch.de>
8301 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8302 T:      git git://git.alsa-project.org/alsa-kernel.git
8303 S:      Maintained
8304 F:      sound/drivers/opl4/
8305
8306 OPROFILE
8307 M:      Robert Richter <rric@kernel.org>
8308 L:      oprofile-list@lists.sf.net
8309 S:      Maintained
8310 F:      arch/*/include/asm/oprofile*.h
8311 F:      arch/*/oprofile/
8312 F:      drivers/oprofile/
8313 F:      include/linux/oprofile.h
8314
8315 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8316 M:      Mark Fasheh <mfasheh@suse.com>
8317 M:      Joel Becker <jlbec@evilplan.org>
8318 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8319 W:      http://ocfs2.wiki.kernel.org
8320 S:      Supported
8321 F:      Documentation/filesystems/ocfs2.txt
8322 F:      Documentation/filesystems/dlmfs.txt
8323 F:      fs/ocfs2/
8324
8325 ORINOCO DRIVER
8326 L:      linux-wireless@vger.kernel.org
8327 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8328 W:      http://www.nongnu.org/orinoco/
8329 S:      Orphan
8330 F:      drivers/net/wireless/intersil/orinoco/
8331
8332 OSD LIBRARY and FILESYSTEM
8333 M:      Boaz Harrosh <ooo@electrozaur.com>
8334 M:      Benny Halevy <bhalevy@primarydata.com>
8335 L:      osd-dev@open-osd.org
8336 W:      http://open-osd.org
8337 T:      git git://git.open-osd.org/open-osd.git
8338 S:      Maintained
8339 F:      drivers/scsi/osd/
8340 F:      include/scsi/osd_*
8341 F:      fs/exofs/
8342
8343 OVERLAY FILESYSTEM
8344 M:      Miklos Szeredi <miklos@szeredi.hu>
8345 L:      linux-unionfs@vger.kernel.org
8346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8347 S:      Supported
8348 F:      fs/overlayfs/
8349 F:      Documentation/filesystems/overlayfs.txt
8350
8351 ORANGEFS FILESYSTEM
8352 M:      Mike Marshall <hubcap@omnibond.com>
8353 L:      pvfs2-developers@beowulf-underground.org (subscribers-only)
8354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
8355 S:      Supported
8356 F:      fs/orangefs/
8357 F:      Documentation/filesystems/orangefs.txt
8358
8359 P54 WIRELESS DRIVER
8360 M:      Christian Lamparter <chunkeey@googlemail.com>
8361 L:      linux-wireless@vger.kernel.org
8362 W:      http://wireless.kernel.org/en/users/Drivers/p54
8363 S:      Maintained
8364 F:      drivers/net/wireless/intersil/p54/
8365
8366 PA SEMI ETHERNET DRIVER
8367 M:      Olof Johansson <olof@lixom.net>
8368 L:      netdev@vger.kernel.org
8369 S:      Maintained
8370 F:      drivers/net/ethernet/pasemi/*
8371
8372 PA SEMI SMBUS DRIVER
8373 M:      Olof Johansson <olof@lixom.net>
8374 L:      linux-i2c@vger.kernel.org
8375 S:      Maintained
8376 F:      drivers/i2c/busses/i2c-pasemi.c
8377
8378 PADATA PARALLEL EXECUTION MECHANISM
8379 M:      Steffen Klassert <steffen.klassert@secunet.com>
8380 L:      linux-crypto@vger.kernel.org
8381 S:      Maintained
8382 F:      kernel/padata.c
8383 F:      include/linux/padata.h
8384 F:      Documentation/padata.txt
8385
8386 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8387 M:      Harald Welte <laforge@gnumonks.org>
8388 L:      platform-driver-x86@vger.kernel.org
8389 S:      Maintained
8390 F:      drivers/platform/x86/panasonic-laptop.c
8391
8392 PANASONIC MN10300/AM33/AM34 PORT
8393 M:      David Howells <dhowells@redhat.com>
8394 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8395 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8396 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8397 S:      Maintained
8398 F:      Documentation/mn10300/
8399 F:      arch/mn10300/
8400
8401 PARALLEL LCD/KEYPAD PANEL DRIVER
8402 M:      Willy Tarreau <willy@haproxy.com>
8403 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
8404 S:      Odd Fixes
8405 F:      Documentation/misc-devices/lcd-panel-cgram.txt
8406 F:      drivers/misc/panel.c
8407
8408 PARALLEL PORT SUBSYSTEM
8409 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8410 M:      Sudip Mukherjee <sudip@vectorindia.org>
8411 L:      linux-parport@lists.infradead.org (subscribers-only)
8412 S:      Maintained
8413 F:      drivers/parport/
8414 F:      include/linux/parport*.h
8415 F:      drivers/char/ppdev.c
8416 F:      include/uapi/linux/ppdev.h
8417 F:      Documentation/parport*.txt
8418
8419 PARAVIRT_OPS INTERFACE
8420 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8421 M:      Chris Wright <chrisw@sous-sol.org>
8422 M:      Alok Kataria <akataria@vmware.com>
8423 M:      Rusty Russell <rusty@rustcorp.com.au>
8424 L:      virtualization@lists.linux-foundation.org
8425 S:      Supported
8426 F:      Documentation/virtual/paravirt_ops.txt
8427 F:      arch/*/kernel/paravirt*
8428 F:      arch/*/include/asm/paravirt.h
8429
8430 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8431 M:      Tim Waugh <tim@cyberelk.net>
8432 L:      linux-parport@lists.infradead.org (subscribers-only)
8433 S:      Maintained
8434 F:      Documentation/blockdev/paride.txt
8435 F:      drivers/block/paride/
8436
8437 PARISC ARCHITECTURE
8438 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8439 M:      Helge Deller <deller@gmx.de>
8440 L:      linux-parisc@vger.kernel.org
8441 W:      http://www.parisc-linux.org/
8442 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8445 S:      Maintained
8446 F:      arch/parisc/
8447 F:      Documentation/parisc/
8448 F:      drivers/parisc/
8449 F:      drivers/char/agp/parisc-agp.c
8450 F:      drivers/input/serio/gscps2.c
8451 F:      drivers/parport/parport_gsc.*
8452 F:      drivers/tty/serial/8250/8250_gsc.c
8453 F:      drivers/video/fbdev/sti*
8454 F:      drivers/video/console/sti*
8455 F:      drivers/video/logo/logo_parisc*
8456
8457 PC87360 HARDWARE MONITORING DRIVER
8458 M:      Jim Cromie <jim.cromie@gmail.com>
8459 L:      linux-hwmon@vger.kernel.org
8460 S:      Maintained
8461 F:      Documentation/hwmon/pc87360
8462 F:      drivers/hwmon/pc87360.c
8463
8464 PC8736x GPIO DRIVER
8465 M:      Jim Cromie <jim.cromie@gmail.com>
8466 S:      Maintained
8467 F:      drivers/char/pc8736x_gpio.c
8468
8469 PC87427 HARDWARE MONITORING DRIVER
8470 M:      Jean Delvare <jdelvare@suse.com>
8471 L:      linux-hwmon@vger.kernel.org
8472 S:      Maintained
8473 F:      Documentation/hwmon/pc87427
8474 F:      drivers/hwmon/pc87427.c
8475
8476 PCA9532 LED DRIVER
8477 M:      Riku Voipio <riku.voipio@iki.fi>
8478 S:      Maintained
8479 F:      drivers/leds/leds-pca9532.c
8480 F:      include/linux/leds-pca9532.h
8481
8482 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8483 M:      Guenter Roeck <linux@roeck-us.net>
8484 L:      linux-i2c@vger.kernel.org
8485 S:      Maintained
8486 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8487
8488 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8489 M:      Khalid Aziz <khalid@gonehiking.org>
8490 S:      Maintained
8491 F:      drivers/firmware/pcdp.*
8492
8493 PCI ERROR RECOVERY
8494 M:      Linas Vepstas <linasvepstas@gmail.com>
8495 L:      linux-pci@vger.kernel.org
8496 S:      Supported
8497 F:      Documentation/PCI/pci-error-recovery.txt
8498
8499 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
8500 M:      Russell Currey <ruscur@russell.cc>
8501 L:      linuxppc-dev@lists.ozlabs.org
8502 S:      Supported
8503 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
8504 F:      arch/powerpc/kernel/eeh*.c
8505 F:      arch/powerpc/platforms/*/eeh*.c
8506 F:      arch/powerpc/include/*/eeh*.h
8507
8508 PCI SUBSYSTEM
8509 M:      Bjorn Helgaas <bhelgaas@google.com>
8510 L:      linux-pci@vger.kernel.org
8511 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8513 S:      Supported
8514 F:      Documentation/PCI/
8515 F:      drivers/pci/
8516 F:      include/linux/pci*
8517 F:      arch/x86/pci/
8518 F:      arch/x86/kernel/quirks.c
8519
8520 PCI DRIVER FOR ALTERA PCIE IP
8521 M:      Ley Foon Tan <lftan@altera.com>
8522 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8523 L:      linux-pci@vger.kernel.org
8524 S:      Supported
8525 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8526 F:      drivers/pci/host/pcie-altera.c
8527
8528 PCI DRIVER FOR ARM VERSATILE PLATFORM
8529 M:      Rob Herring <robh@kernel.org>
8530 L:      linux-pci@vger.kernel.org
8531 L:      linux-arm-kernel@lists.infradead.org
8532 S:      Maintained
8533 F:      Documentation/devicetree/bindings/pci/versatile.txt
8534 F:      drivers/pci/host/pci-versatile.c
8535
8536 PCI DRIVER FOR APPLIEDMICRO XGENE
8537 M:      Tanmay Inamdar <tinamdar@apm.com>
8538 L:      linux-pci@vger.kernel.org
8539 L:      linux-arm-kernel@lists.infradead.org
8540 S:      Maintained
8541 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8542 F:      drivers/pci/host/pci-xgene.c
8543
8544 PCI DRIVER FOR FREESCALE LAYERSCAPE
8545 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8546 M:      Mingkai Hu <mingkai.hu@freescale.com>
8547 M:      Roy Zang <tie-fei.zang@freescale.com>
8548 L:      linuxppc-dev@lists.ozlabs.org
8549 L:      linux-pci@vger.kernel.org
8550 L:      linux-arm-kernel@lists.infradead.org
8551 S:      Maintained
8552 F:      drivers/pci/host/*layerscape*
8553
8554 PCI DRIVER FOR IMX6
8555 M:      Richard Zhu <Richard.Zhu@freescale.com>
8556 M:      Lucas Stach <l.stach@pengutronix.de>
8557 L:      linux-pci@vger.kernel.org
8558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8559 S:      Maintained
8560 F:      drivers/pci/host/*imx6*
8561
8562 PCI DRIVER FOR TI KEYSTONE
8563 M:      Murali Karicheri <m-karicheri2@ti.com>
8564 L:      linux-pci@vger.kernel.org
8565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8566 S:      Maintained
8567 F:      drivers/pci/host/*keystone*
8568
8569 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8570 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8571 M:      Jason Cooper <jason@lakedaemon.net>
8572 L:      linux-pci@vger.kernel.org
8573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8574 S:      Maintained
8575 F:      drivers/pci/host/*mvebu*
8576
8577 PCI DRIVER FOR NVIDIA TEGRA
8578 M:      Thierry Reding <thierry.reding@gmail.com>
8579 L:      linux-tegra@vger.kernel.org
8580 L:      linux-pci@vger.kernel.org
8581 S:      Supported
8582 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8583 F:      drivers/pci/host/pci-tegra.c
8584
8585 PCI DRIVER FOR TI DRA7XX
8586 M:      Kishon Vijay Abraham I <kishon@ti.com>
8587 L:      linux-omap@vger.kernel.org
8588 L:      linux-pci@vger.kernel.org
8589 S:      Supported
8590 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8591 F:      drivers/pci/host/pci-dra7xx.c
8592
8593 PCI DRIVER FOR RENESAS R-CAR
8594 M:      Simon Horman <horms@verge.net.au>
8595 L:      linux-pci@vger.kernel.org
8596 L:      linux-renesas-soc@vger.kernel.org
8597 S:      Maintained
8598 F:      drivers/pci/host/*rcar*
8599
8600 PCI DRIVER FOR SAMSUNG EXYNOS
8601 M:      Jingoo Han <jingoohan1@gmail.com>
8602 L:      linux-pci@vger.kernel.org
8603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8604 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8605 S:      Maintained
8606 F:      drivers/pci/host/pci-exynos.c
8607
8608 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8609 M:      Jingoo Han <jingoohan1@gmail.com>
8610 M:      Pratyush Anand <pratyush.anand@gmail.com>
8611 L:      linux-pci@vger.kernel.org
8612 S:      Maintained
8613 F:      drivers/pci/host/*designware*
8614
8615 PCI DRIVER FOR SYNOPSYS PROTOTYPING DEVICE
8616 M:      Joao Pinto <jpinto@synopsys.com>
8617 L:      linux-pci@vger.kernel.org
8618 S:      Maintained
8619 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
8620 F:      drivers/pci/host/pcie-designware-plat.c
8621
8622 PCI DRIVER FOR GENERIC OF HOSTS
8623 M:      Will Deacon <will.deacon@arm.com>
8624 L:      linux-pci@vger.kernel.org
8625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8626 S:      Maintained
8627 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8628 F:      drivers/pci/host/pci-host-common.c
8629 F:      drivers/pci/host/pci-host-generic.c
8630
8631 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8632 M:      Keith Busch <keith.busch@intel.com>
8633 L:      linux-pci@vger.kernel.org
8634 S:      Supported
8635 F:      arch/x86/pci/vmd.c
8636
8637 PCIE DRIVER FOR ST SPEAR13XX
8638 M:      Pratyush Anand <pratyush.anand@gmail.com>
8639 L:      linux-pci@vger.kernel.org
8640 S:      Maintained
8641 F:      drivers/pci/host/*spear*
8642
8643 PCI MSI DRIVER FOR ALTERA MSI IP
8644 M:      Ley Foon Tan <lftan@altera.com>
8645 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8646 L:      linux-pci@vger.kernel.org
8647 S:      Supported
8648 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8649 F:      drivers/pci/host/pcie-altera-msi.c
8650
8651 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8652 M:      Duc Dang <dhdang@apm.com>
8653 L:      linux-pci@vger.kernel.org
8654 L:      linux-arm-kernel@lists.infradead.org
8655 S:      Maintained
8656 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8657 F:      drivers/pci/host/pci-xgene-msi.c
8658
8659 PCIE DRIVER FOR HISILICON
8660 M:      Zhou Wang <wangzhou1@hisilicon.com>
8661 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8662 L:      linux-pci@vger.kernel.org
8663 S:      Maintained
8664 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8665 F:      drivers/pci/host/pcie-hisi.c
8666
8667 PCIE DRIVER FOR QUALCOMM MSM
8668 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8669 L:     linux-pci@vger.kernel.org
8670 L:     linux-arm-msm@vger.kernel.org
8671 S:     Maintained
8672 F:     drivers/pci/host/*qcom*
8673
8674 PCIE DRIVER FOR CAVIUM THUNDERX
8675 M:      David Daney <david.daney@cavium.com>
8676 L:      linux-pci@vger.kernel.org
8677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8678 S:      Supported
8679 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
8680 F:      drivers/pci/host/pci-thunder-*
8681
8682 PCMCIA SUBSYSTEM
8683 P:      Linux PCMCIA Team
8684 L:      linux-pcmcia@lists.infradead.org
8685 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8687 S:      Maintained
8688 F:      Documentation/pcmcia/
8689 F:      drivers/pcmcia/
8690 F:      include/pcmcia/
8691
8692 PCNET32 NETWORK DRIVER
8693 M:      Don Fry <pcnet32@frontier.com>
8694 L:      netdev@vger.kernel.org
8695 S:      Maintained
8696 F:      drivers/net/ethernet/amd/pcnet32.c
8697
8698 PCRYPT PARALLEL CRYPTO ENGINE
8699 M:      Steffen Klassert <steffen.klassert@secunet.com>
8700 L:      linux-crypto@vger.kernel.org
8701 S:      Maintained
8702 F:      crypto/pcrypt.c
8703 F:      include/crypto/pcrypt.h
8704
8705 PER-CPU MEMORY ALLOCATOR
8706 M:      Tejun Heo <tj@kernel.org>
8707 M:      Christoph Lameter <cl@linux.com>
8708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8709 S:      Maintained
8710 F:      include/linux/percpu*.h
8711 F:      mm/percpu*.c
8712 F:      arch/*/include/asm/percpu.h
8713
8714 PER-TASK DELAY ACCOUNTING
8715 M:      Balbir Singh <bsingharora@gmail.com>
8716 S:      Maintained
8717 F:      include/linux/delayacct.h
8718 F:      kernel/delayacct.c
8719
8720 PERFORMANCE EVENTS SUBSYSTEM
8721 M:      Peter Zijlstra <peterz@infradead.org>
8722 M:      Ingo Molnar <mingo@redhat.com>
8723 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8724 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8725 L:      linux-kernel@vger.kernel.org
8726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8727 S:      Supported
8728 F:      kernel/events/*
8729 F:      include/linux/perf_event.h
8730 F:      include/uapi/linux/perf_event.h
8731 F:      arch/*/kernel/perf_event*.c
8732 F:      arch/*/kernel/*/perf_event*.c
8733 F:      arch/*/kernel/*/*/perf_event*.c
8734 F:      arch/*/include/asm/perf_event.h
8735 F:      arch/*/kernel/perf_callchain.c
8736 F:      tools/perf/
8737
8738 PERSONALITY HANDLING
8739 M:      Christoph Hellwig <hch@infradead.org>
8740 L:      linux-abi-devel@lists.sourceforge.net
8741 S:      Maintained
8742 F:      include/linux/personality.h
8743 F:      include/uapi/linux/personality.h
8744
8745 PHONET PROTOCOL
8746 M:      Remi Denis-Courmont <courmisch@gmail.com>
8747 S:      Supported
8748 F:      Documentation/networking/phonet.txt
8749 F:      include/linux/phonet.h
8750 F:      include/net/phonet/
8751 F:      include/uapi/linux/phonet.h
8752 F:      net/phonet/
8753
8754 PHRAM MTD DRIVER
8755 M:      Joern Engel <joern@lazybastard.org>
8756 L:      linux-mtd@lists.infradead.org
8757 S:      Maintained
8758 F:      drivers/mtd/devices/phram.c
8759
8760 PICOLCD HID DRIVER
8761 M:      Bruno Prémont <bonbons@linux-vserver.org>
8762 L:      linux-input@vger.kernel.org
8763 S:      Maintained
8764 F:      drivers/hid/hid-picolcd*
8765
8766 PICOXCELL SUPPORT
8767 M:      Jamie Iles <jamie@jamieiles.com>
8768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8769 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8770 S:      Supported
8771 F:      arch/arm/boot/dts/picoxcell*
8772 F:      arch/arm/mach-picoxcell/
8773 F:      drivers/crypto/picoxcell*
8774
8775 PIN CONTROL SUBSYSTEM
8776 M:      Linus Walleij <linus.walleij@linaro.org>
8777 L:      linux-gpio@vger.kernel.org
8778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8779 S:      Maintained
8780 F:      drivers/pinctrl/
8781 F:      include/linux/pinctrl/
8782
8783 PIN CONTROLLER - ATMEL AT91
8784 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8785 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8786 S:      Maintained
8787 F:      drivers/pinctrl/pinctrl-at91.*
8788
8789 PIN CONTROLLER - ATMEL AT91 PIO4
8790 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8792 L:      linux-gpio@vger.kernel.org
8793 S:      Supported
8794 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8795
8796 PIN CONTROLLER - INTEL
8797 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8798 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8799 S:      Maintained
8800 F:      drivers/pinctrl/intel/
8801
8802 PIN CONTROLLER - RENESAS
8803 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8804 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8805 L:      linux-renesas-soc@vger.kernel.org
8806 S:      Maintained
8807 F:      drivers/pinctrl/sh-pfc/
8808
8809 PIN CONTROLLER - SAMSUNG
8810 M:      Tomasz Figa <tomasz.figa@gmail.com>
8811 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
8812 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
8813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8814 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8815 S:      Maintained
8816 F:      drivers/pinctrl/samsung/
8817
8818 PIN CONTROLLER - SINGLE
8819 M:      Tony Lindgren <tony@atomide.com>
8820 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8822 L:      linux-omap@vger.kernel.org
8823 S:      Maintained
8824 F:      drivers/pinctrl/pinctrl-single.c
8825
8826 PIN CONTROLLER - ST SPEAR
8827 M:      Viresh Kumar <vireshk@kernel.org>
8828 L:      spear-devel@list.st.com
8829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8830 W:      http://www.st.com/spear
8831 S:      Maintained
8832 F:      drivers/pinctrl/spear/
8833
8834 PKTCDVD DRIVER
8835 M:      Jiri Kosina <jikos@kernel.org>
8836 S:      Maintained
8837 F:      drivers/block/pktcdvd.c
8838 F:      include/linux/pktcdvd.h
8839 F:      include/uapi/linux/pktcdvd.h
8840
8841 PKUNITY SOC DRIVERS
8842 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8843 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8844 S:      Maintained
8845 T:      git git://github.com/gxt/linux.git
8846 F:      drivers/input/serio/i8042-unicore32io.h
8847 F:      drivers/i2c/busses/i2c-puv3.c
8848 F:      drivers/video/fbdev/fb-puv3.c
8849 F:      drivers/rtc/rtc-puv3.c
8850
8851 PMBUS HARDWARE MONITORING DRIVERS
8852 M:      Guenter Roeck <linux@roeck-us.net>
8853 L:      linux-hwmon@vger.kernel.org
8854 W:      http://hwmon.wiki.kernel.org/
8855 W:      http://www.roeck-us.net/linux/drivers/
8856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8857 S:      Maintained
8858 F:      Documentation/hwmon/pmbus
8859 F:      drivers/hwmon/pmbus/
8860 F:      include/linux/i2c/pmbus.h
8861
8862 PMC SIERRA MaxRAID DRIVER
8863 L:      linux-scsi@vger.kernel.org
8864 W:      http://www.pmc-sierra.com/
8865 S:      Orphan
8866 F:      drivers/scsi/pmcraid.*
8867
8868 PMC SIERRA PM8001 DRIVER
8869 M:      Jack Wang <jinpu.wang@profitbricks.com>
8870 M:      lindar_liu@usish.com
8871 L:      pmchba@pmcs.com
8872 L:      linux-scsi@vger.kernel.org
8873 S:      Supported
8874 F:      drivers/scsi/pm8001/
8875
8876 POSIX CLOCKS and TIMERS
8877 M:      Thomas Gleixner <tglx@linutronix.de>
8878 L:      linux-kernel@vger.kernel.org
8879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8880 S:      Maintained
8881 F:      fs/timerfd.c
8882 F:      include/linux/timer*
8883 F:      kernel/time/*timer*
8884
8885 POWER MANAGEMENT CORE
8886 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8887 L:      linux-pm@vger.kernel.org
8888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8889 S:      Supported
8890 F:      drivers/base/power/
8891 F:      include/linux/pm.h
8892 F:      include/linux/pm_*
8893 F:      include/linux/powercap.h
8894 F:      drivers/powercap/
8895
8896 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8897 M:      Sebastian Reichel <sre@kernel.org>
8898 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8899 M:      David Woodhouse <dwmw2@infradead.org>
8900 L:      linux-pm@vger.kernel.org
8901 T:      git git://git.infradead.org/battery-2.6.git
8902 S:      Maintained
8903 F:      include/linux/power_supply.h
8904 F:      drivers/power/
8905 X:      drivers/power/avs/
8906
8907 POWER STATE COORDINATION INTERFACE (PSCI)
8908 M:      Mark Rutland <mark.rutland@arm.com>
8909 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8910 L:      linux-arm-kernel@lists.infradead.org
8911 S:      Maintained
8912 F:      drivers/firmware/psci.c
8913 F:      include/linux/psci.h
8914 F:      include/uapi/linux/psci.h
8915
8916 PNP SUPPORT
8917 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8918 S:      Maintained
8919 F:      drivers/pnp/
8920
8921 PPP PROTOCOL DRIVERS AND COMPRESSORS
8922 M:      Paul Mackerras <paulus@samba.org>
8923 L:      linux-ppp@vger.kernel.org
8924 S:      Maintained
8925 F:      drivers/net/ppp/ppp_*
8926
8927 PPP OVER ATM (RFC 2364)
8928 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8929 S:      Maintained
8930 F:      net/atm/pppoatm.c
8931 F:      include/uapi/linux/atmppp.h
8932
8933 PPP OVER ETHERNET
8934 M:      Michal Ostrowski <mostrows@earthlink.net>
8935 S:      Maintained
8936 F:      drivers/net/ppp/pppoe.c
8937 F:      drivers/net/ppp/pppox.c
8938
8939 PPP OVER L2TP
8940 M:      James Chapman <jchapman@katalix.com>
8941 S:      Maintained
8942 F:      net/l2tp/l2tp_ppp.c
8943 F:      include/linux/if_pppol2tp.h
8944 F:      include/uapi/linux/if_pppol2tp.h
8945
8946 PPS SUPPORT
8947 M:      Rodolfo Giometti <giometti@enneenne.com>
8948 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8949 L:      linuxpps@ml.enneenne.com (subscribers-only)
8950 S:      Maintained
8951 F:      Documentation/pps/
8952 F:      drivers/pps/
8953 F:      include/linux/pps*.h
8954
8955 PPTP DRIVER
8956 M:      Dmitry Kozlov <xeb@mail.ru>
8957 L:      netdev@vger.kernel.org
8958 S:      Maintained
8959 F:      drivers/net/ppp/pptp.c
8960 W:      http://sourceforge.net/projects/accel-pptp
8961
8962 PREEMPTIBLE KERNEL
8963 M:      Robert Love <rml@tech9.net>
8964 L:      kpreempt-tech@lists.sourceforge.net
8965 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8966 S:      Supported
8967 F:      Documentation/preempt-locking.txt
8968 F:      include/linux/preempt.h
8969
8970 PRISM54 WIRELESS DRIVER
8971 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8972 L:      linux-wireless@vger.kernel.org
8973 W:      http://wireless.kernel.org/en/users/Drivers/p54
8974 S:      Obsolete
8975 F:      drivers/net/wireless/intersil/prism54/
8976
8977 PS3 NETWORK SUPPORT
8978 M:      Geoff Levand <geoff@infradead.org>
8979 L:      netdev@vger.kernel.org
8980 L:      linuxppc-dev@lists.ozlabs.org
8981 S:      Maintained
8982 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8983
8984 PS3 PLATFORM SUPPORT
8985 M:      Geoff Levand <geoff@infradead.org>
8986 L:      linuxppc-dev@lists.ozlabs.org
8987 S:      Maintained
8988 F:      arch/powerpc/boot/ps3*
8989 F:      arch/powerpc/include/asm/lv1call.h
8990 F:      arch/powerpc/include/asm/ps3*.h
8991 F:      arch/powerpc/platforms/ps3/
8992 F:      drivers/*/ps3*
8993 F:      drivers/ps3/
8994 F:      drivers/rtc/rtc-ps3.c
8995 F:      drivers/usb/host/*ps3.c
8996 F:      sound/ppc/snd_ps3*
8997
8998 PS3VRAM DRIVER
8999 M:      Jim Paris <jim@jtan.com>
9000 M:      Geoff Levand <geoff@infradead.org>
9001 L:      linuxppc-dev@lists.ozlabs.org
9002 S:      Maintained
9003 F:      drivers/block/ps3vram.c
9004
9005 PSTORE FILESYSTEM
9006 M:      Anton Vorontsov <anton@enomsg.org>
9007 M:      Colin Cross <ccross@android.com>
9008 M:      Kees Cook <keescook@chromium.org>
9009 M:      Tony Luck <tony.luck@intel.com>
9010 S:      Maintained
9011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
9012 F:      fs/pstore/
9013 F:      include/linux/pstore*
9014 F:      drivers/firmware/efi/efi-pstore.c
9015 F:      drivers/acpi/apei/erst.c
9016
9017 PTP HARDWARE CLOCK SUPPORT
9018 M:      Richard Cochran <richardcochran@gmail.com>
9019 L:      netdev@vger.kernel.org
9020 S:      Maintained
9021 W:      http://linuxptp.sourceforge.net/
9022 F:      Documentation/ABI/testing/sysfs-ptp
9023 F:      Documentation/ptp/*
9024 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
9025 F:      drivers/net/phy/dp83640*
9026 F:      drivers/ptp/*
9027 F:      include/linux/ptp_cl*
9028
9029 PTRACE SUPPORT
9030 M:      Roland McGrath <roland@hack.frob.com>
9031 M:      Oleg Nesterov <oleg@redhat.com>
9032 S:      Maintained
9033 F:      include/asm-generic/syscall.h
9034 F:      include/linux/ptrace.h
9035 F:      include/linux/regset.h
9036 F:      include/linux/tracehook.h
9037 F:      include/uapi/linux/ptrace.h
9038 F:      kernel/ptrace.c
9039
9040 PVRUSB2 VIDEO4LINUX DRIVER
9041 M:      Mike Isely <isely@pobox.com>
9042 L:      pvrusb2@isely.net       (subscribers-only)
9043 L:      linux-media@vger.kernel.org
9044 W:      http://www.isely.net/pvrusb2/
9045 T:      git git://linuxtv.org/media_tree.git
9046 S:      Maintained
9047 F:      Documentation/video4linux/README.pvrusb2
9048 F:      drivers/media/usb/pvrusb2/
9049
9050 PWC WEBCAM DRIVER
9051 M:      Hans de Goede <hdegoede@redhat.com>
9052 L:      linux-media@vger.kernel.org
9053 T:      git git://linuxtv.org/media_tree.git
9054 S:      Maintained
9055 F:      drivers/media/usb/pwc/*
9056
9057 PWM FAN DRIVER
9058 M:      Kamil Debski <k.debski@samsung.com>
9059 L:      linux-hwmon@vger.kernel.org
9060 S:      Supported
9061 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
9062 F:      Documentation/hwmon/pwm-fan
9063 F:      drivers/hwmon/pwm-fan.c
9064
9065 PWM SUBSYSTEM
9066 M:      Thierry Reding <thierry.reding@gmail.com>
9067 L:      linux-pwm@vger.kernel.org
9068 S:      Maintained
9069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
9070 F:      Documentation/pwm.txt
9071 F:      Documentation/devicetree/bindings/pwm/
9072 F:      include/linux/pwm.h
9073 F:      drivers/pwm/
9074 F:      drivers/video/backlight/pwm_bl.c
9075 F:      include/linux/pwm_backlight.h
9076
9077 PXA2xx/PXA3xx SUPPORT
9078 M:      Daniel Mack <daniel@zonque.org>
9079 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9080 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9081 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9082 T:      git git://github.com/hzhuang1/linux.git
9083 T:      git git://github.com/rjarzmik/linux.git
9084 S:      Maintained
9085 F:      arch/arm/boot/dts/pxa*
9086 F:      arch/arm/mach-pxa/
9087 F:      drivers/dma/pxa*
9088 F:      drivers/pcmcia/pxa2xx*
9089 F:      drivers/pinctrl/pxa/
9090 F:      drivers/spi/spi-pxa2xx*
9091 F:      drivers/usb/gadget/udc/pxa2*
9092 F:      include/sound/pxa2xx-lib.h
9093 F:      sound/arm/pxa*
9094 F:      sound/soc/pxa/
9095
9096 PXA GPIO DRIVER
9097 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9098 L:      linux-gpio@vger.kernel.org
9099 S:      Maintained
9100 F:      drivers/gpio/gpio-pxa.c
9101
9102 PXA3xx NAND FLASH DRIVER
9103 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
9104 L:      linux-mtd@lists.infradead.org
9105 S:      Maintained
9106 F:      drivers/mtd/nand/pxa3xx_nand.c
9107
9108 MMP SUPPORT
9109 M:      Eric Miao <eric.y.miao@gmail.com>
9110 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
9111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9112 T:      git git://github.com/hzhuang1/linux.git
9113 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
9114 S:      Maintained
9115 F:      arch/arm/boot/dts/mmp*
9116 F:      arch/arm/mach-mmp/
9117
9118 PXA MMCI DRIVER
9119 S:      Orphan
9120
9121 PXA RTC DRIVER
9122 M:      Robert Jarzmik <robert.jarzmik@free.fr>
9123 L:      rtc-linux@googlegroups.com
9124 S:      Maintained
9125
9126 QAT DRIVER
9127 M:      Tadeusz Struk <tadeusz.struk@intel.com>
9128 L:      qat-linux@intel.com
9129 S:      Supported
9130 F:      drivers/crypto/qat/
9131
9132 QIB DRIVER
9133 M:      Mike Marciniszyn <infinipath@intel.com>
9134 L:      linux-rdma@vger.kernel.org
9135 S:      Supported
9136 F:      drivers/infiniband/hw/qib/
9137
9138 QLOGIC QLA1280 SCSI DRIVER
9139 M:      Michael Reed <mdr@sgi.com>
9140 L:      linux-scsi@vger.kernel.org
9141 S:      Maintained
9142 F:      drivers/scsi/qla1280.[ch]
9143
9144 QLOGIC QLA2XXX FC-SCSI DRIVER
9145 M:      qla2xxx-upstream@qlogic.com
9146 L:      linux-scsi@vger.kernel.org
9147 S:      Supported
9148 F:      Documentation/scsi/LICENSE.qla2xxx
9149 F:      drivers/scsi/qla2xxx/
9150
9151 QLOGIC QLA4XXX iSCSI DRIVER
9152 M:      QLogic-Storage-Upstream@qlogic.com
9153 L:      linux-scsi@vger.kernel.org
9154 S:      Supported
9155 F:      Documentation/scsi/LICENSE.qla4xxx
9156 F:      drivers/scsi/qla4xxx/
9157
9158 QLOGIC QLA3XXX NETWORK DRIVER
9159 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
9160 M:      Ron Mercer <ron.mercer@qlogic.com>
9161 M:      linux-driver@qlogic.com
9162 L:      netdev@vger.kernel.org
9163 S:      Supported
9164 F:      Documentation/networking/LICENSE.qla3xxx
9165 F:      drivers/net/ethernet/qlogic/qla3xxx.*
9166
9167 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
9168 M:      Dept-GELinuxNICDev@qlogic.com
9169 L:      netdev@vger.kernel.org
9170 S:      Supported
9171 F:      drivers/net/ethernet/qlogic/qlcnic/
9172
9173 QLOGIC QLGE 10Gb ETHERNET DRIVER
9174 M:      Harish Patil <harish.patil@qlogic.com>
9175 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
9176 M:      Dept-GELinuxNICDev@qlogic.com
9177 M:      linux-driver@qlogic.com
9178 L:      netdev@vger.kernel.org
9179 S:      Supported
9180 F:      drivers/net/ethernet/qlogic/qlge/
9181
9182 QLOGIC QL4xxx ETHERNET DRIVER
9183 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
9184 M:      Ariel Elior <Ariel.Elior@qlogic.com>
9185 M:      everest-linux-l2@qlogic.com
9186 L:      netdev@vger.kernel.org
9187 S:      Supported
9188 F:      drivers/net/ethernet/qlogic/qed/
9189 F:      include/linux/qed/
9190 F:      drivers/net/ethernet/qlogic/qede/
9191
9192 QNX4 FILESYSTEM
9193 M:      Anders Larsen <al@alarsen.net>
9194 W:      http://www.alarsen.net/linux/qnx4fs/
9195 S:      Maintained
9196 F:      fs/qnx4/
9197 F:      include/uapi/linux/qnx4_fs.h
9198 F:      include/uapi/linux/qnxtypes.h
9199
9200 QT1010 MEDIA DRIVER
9201 M:      Antti Palosaari <crope@iki.fi>
9202 L:      linux-media@vger.kernel.org
9203 W:      https://linuxtv.org
9204 W:      http://palosaari.fi/linux/
9205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9206 T:      git git://linuxtv.org/anttip/media_tree.git
9207 S:      Maintained
9208 F:      drivers/media/tuners/qt1010*
9209
9210 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
9211 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
9212 L:      linux-wireless@vger.kernel.org
9213 L:      ath9k-devel@lists.ath9k.org
9214 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
9215 S:      Supported
9216 F:      drivers/net/wireless/ath/ath9k/
9217
9218 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
9219 M:      Kalle Valo <kvalo@qca.qualcomm.com>
9220 L:      ath10k@lists.infradead.org
9221 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
9222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
9223 S:      Supported
9224 F:      drivers/net/wireless/ath/ath10k/
9225
9226 QUALCOMM HEXAGON ARCHITECTURE
9227 M:      Richard Kuo <rkuo@codeaurora.org>
9228 L:      linux-hexagon@vger.kernel.org
9229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
9230 S:      Supported
9231 F:      arch/hexagon/
9232
9233 QUALCOMM WCN36XX WIRELESS DRIVER
9234 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
9235 L:      wcn36xx@lists.infradead.org
9236 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
9237 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
9238 S:      Supported
9239 F:      drivers/net/wireless/ath/wcn36xx/
9240
9241 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
9242 M:      Gabriel Somlo <somlo@cmu.edu>
9243 M:      "Michael S. Tsirkin" <mst@redhat.com>
9244 L:      qemu-devel@nongnu.org
9245 S:      Maintained
9246 F:      drivers/firmware/qemu_fw_cfg.c
9247
9248 RADOS BLOCK DEVICE (RBD)
9249 M:      Ilya Dryomov <idryomov@gmail.com>
9250 M:      Sage Weil <sage@redhat.com>
9251 M:      Alex Elder <elder@kernel.org>
9252 L:      ceph-devel@vger.kernel.org
9253 W:      http://ceph.com/
9254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
9255 T:      git git://github.com/ceph/ceph-client.git
9256 S:      Supported
9257 F:      Documentation/ABI/testing/sysfs-bus-rbd
9258 F:      drivers/block/rbd.c
9259 F:      drivers/block/rbd_types.h
9260
9261 RADEON FRAMEBUFFER DISPLAY DRIVER
9262 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
9263 L:      linux-fbdev@vger.kernel.org
9264 S:      Maintained
9265 F:      drivers/video/fbdev/aty/radeon*
9266 F:      include/uapi/linux/radeonfb.h
9267
9268 RADIOSHARK RADIO DRIVER
9269 M:      Hans de Goede <hdegoede@redhat.com>
9270 L:      linux-media@vger.kernel.org
9271 T:      git git://linuxtv.org/media_tree.git
9272 S:      Maintained
9273 F:      drivers/media/radio/radio-shark.c
9274
9275 RADIOSHARK2 RADIO DRIVER
9276 M:      Hans de Goede <hdegoede@redhat.com>
9277 L:      linux-media@vger.kernel.org
9278 T:      git git://linuxtv.org/media_tree.git
9279 S:      Maintained
9280 F:      drivers/media/radio/radio-shark2.c
9281 F:      drivers/media/radio/radio-tea5777.c
9282
9283 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9284 M:      Paul Mackerras <paulus@samba.org>
9285 L:      linux-fbdev@vger.kernel.org
9286 S:      Maintained
9287 F:      drivers/video/fbdev/aty/aty128fb.c
9288
9289 RALINK MIPS ARCHITECTURE
9290 M:      John Crispin <john@phrozen.org>
9291 L:      linux-mips@linux-mips.org
9292 S:      Maintained
9293 F:      arch/mips/ralink
9294
9295 RALINK RT2X00 WIRELESS LAN DRIVER
9296 P:      rt2x00 project
9297 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9298 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9299 L:      linux-wireless@vger.kernel.org
9300 S:      Maintained
9301 F:      drivers/net/wireless/ralink/rt2x00/
9302
9303 RAMDISK RAM BLOCK DEVICE DRIVER
9304 M:      Jens Axboe <axboe@kernel.dk>
9305 S:      Maintained
9306 F:      Documentation/blockdev/ramdisk.txt
9307 F:      drivers/block/brd.c
9308
9309 RANDOM NUMBER DRIVER
9310 M:      "Theodore Ts'o" <tytso@mit.edu>
9311 S:      Maintained
9312 F:      drivers/char/random.c
9313
9314 RAPIDIO SUBSYSTEM
9315 M:      Matt Porter <mporter@kernel.crashing.org>
9316 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9317 S:      Maintained
9318 F:      drivers/rapidio/
9319
9320 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9321 L:      linux-wireless@vger.kernel.org
9322 S:      Orphan
9323 F:      drivers/net/wireless/ray*
9324
9325 RCUTORTURE MODULE
9326 M:      Josh Triplett <josh@joshtriplett.org>
9327 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9328 L:      linux-kernel@vger.kernel.org
9329 S:      Supported
9330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9331 F:      Documentation/RCU/torture.txt
9332 F:      kernel/rcu/rcutorture.c
9333
9334 RCUTORTURE TEST FRAMEWORK
9335 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9336 M:      Josh Triplett <josh@joshtriplett.org>
9337 R:      Steven Rostedt <rostedt@goodmis.org>
9338 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9339 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9340 L:      linux-kernel@vger.kernel.org
9341 S:      Supported
9342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9343 F:      tools/testing/selftests/rcutorture
9344
9345 RDC R-321X SoC
9346 M:      Florian Fainelli <florian@openwrt.org>
9347 S:      Maintained
9348
9349 RDC R6040 FAST ETHERNET DRIVER
9350 M:      Florian Fainelli <florian@openwrt.org>
9351 L:      netdev@vger.kernel.org
9352 S:      Maintained
9353 F:      drivers/net/ethernet/rdc/r6040.c
9354
9355 RDS - RELIABLE DATAGRAM SOCKETS
9356 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
9357 L:      netdev@vger.kernel.org
9358 L:      linux-rdma@vger.kernel.org
9359 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9360 W:      https://oss.oracle.com/projects/rds/
9361 S:      Supported
9362 F:      net/rds/
9363 F:      Documentation/networking/rds.txt
9364
9365 RDMAVT - RDMA verbs software
9366 M:      Dennis Dalessandro <dennis.dalessandro@intel.com>
9367 L:      linux-rdma@vger.kernel.org
9368 S:      Supported
9369 F:      drivers/infiniband/sw/rdmavt
9370
9371 READ-COPY UPDATE (RCU)
9372 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9373 M:      Josh Triplett <josh@joshtriplett.org>
9374 R:      Steven Rostedt <rostedt@goodmis.org>
9375 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9376 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9377 L:      linux-kernel@vger.kernel.org
9378 W:      http://www.rdrop.com/users/paulmck/RCU/
9379 S:      Supported
9380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9381 F:      Documentation/RCU/
9382 X:      Documentation/RCU/torture.txt
9383 F:      include/linux/rcu*
9384 X:      include/linux/srcu.h
9385 F:      kernel/rcu/
9386 X:      kernel/torture.c
9387
9388 REAL TIME CLOCK (RTC) SUBSYSTEM
9389 M:      Alessandro Zummo <a.zummo@towertech.it>
9390 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9391 L:      rtc-linux@googlegroups.com
9392 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9394 S:      Maintained
9395 F:      Documentation/rtc.txt
9396 F:      drivers/rtc/
9397 F:      include/linux/rtc.h
9398 F:      include/uapi/linux/rtc.h
9399
9400 REALTEK AUDIO CODECS
9401 M:      Bard Liao <bardliao@realtek.com>
9402 M:      Oder Chiou <oder_chiou@realtek.com>
9403 S:      Maintained
9404 F:      sound/soc/codecs/rt*
9405 F:      include/sound/rt*.h
9406
9407 REISERFS FILE SYSTEM
9408 L:      reiserfs-devel@vger.kernel.org
9409 S:      Supported
9410 F:      fs/reiserfs/
9411
9412 REGISTER MAP ABSTRACTION
9413 M:      Mark Brown <broonie@kernel.org>
9414 L:      linux-kernel@vger.kernel.org
9415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9416 S:      Supported
9417 F:      drivers/base/regmap/
9418 F:      include/linux/regmap.h
9419
9420 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9421 M:      Ohad Ben-Cohen <ohad@wizery.com>
9422 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9423 L:      linux-remoteproc@vger.kernel.org
9424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9425 S:      Maintained
9426 F:      drivers/remoteproc/
9427 F:      Documentation/remoteproc.txt
9428 F:      include/linux/remoteproc.h
9429
9430 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9431 M:      Ohad Ben-Cohen <ohad@wizery.com>
9432 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
9433 L:      linux-remoteproc@vger.kernel.org
9434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9435 S:      Maintained
9436 F:      drivers/rpmsg/
9437 F:      Documentation/rpmsg.txt
9438 F:      include/linux/rpmsg.h
9439
9440 RENESAS ETHERNET DRIVERS
9441 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9442 L:      netdev@vger.kernel.org
9443 L:      linux-renesas-soc@vger.kernel.org
9444 F:      drivers/net/ethernet/renesas/
9445 F:      include/linux/sh_eth.h
9446
9447 RENESAS USB2 PHY DRIVER
9448 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9449 L:      linux-renesas-soc@vger.kernel.org
9450 S:      Maintained
9451 F:      drivers/phy/phy-rcar-gen3-usb2.c
9452
9453 RESET CONTROLLER FRAMEWORK
9454 M:      Philipp Zabel <p.zabel@pengutronix.de>
9455 T:      git git://git.pengutronix.de/git/pza/linux
9456 S:      Maintained
9457 F:      drivers/reset/
9458 F:      Documentation/devicetree/bindings/reset/
9459 F:      include/dt-bindings/reset/
9460 F:      include/linux/reset.h
9461 F:      include/linux/reset-controller.h
9462
9463 RFKILL
9464 M:      Johannes Berg <johannes@sipsolutions.net>
9465 L:      linux-wireless@vger.kernel.org
9466 W:      http://wireless.kernel.org/
9467 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9469 S:      Maintained
9470 F:      Documentation/rfkill.txt
9471 F:      net/rfkill/
9472
9473 RHASHTABLE
9474 M:      Thomas Graf <tgraf@suug.ch>
9475 L:      netdev@vger.kernel.org
9476 S:      Maintained
9477 F:      lib/rhashtable.c
9478 F:      include/linux/rhashtable.h
9479
9480 RICOH SMARTMEDIA/XD DRIVER
9481 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9482 S:      Maintained
9483 F:      drivers/mtd/nand/r852.c
9484 F:      drivers/mtd/nand/r852.h
9485
9486 RICOH R5C592 MEMORYSTICK DRIVER
9487 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9488 S:      Maintained
9489 F:      drivers/memstick/host/r592.*
9490
9491 ROCCAT DRIVERS
9492 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9493 W:      http://sourceforge.net/projects/roccat/
9494 S:      Maintained
9495 F:      drivers/hid/hid-roccat*
9496 F:      include/linux/hid-roccat*
9497 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9498
9499 ROCKER DRIVER
9500 M:      Jiri Pirko <jiri@resnulli.us>
9501 M:      Scott Feldman <sfeldma@gmail.com>
9502 L:      netdev@vger.kernel.org
9503 S:      Supported
9504 F:      drivers/net/ethernet/rocker/
9505
9506 ROCKETPORT DRIVER
9507 P:      Comtrol Corp.
9508 W:      http://www.comtrol.com
9509 S:      Maintained
9510 F:      Documentation/serial/rocket.txt
9511 F:      drivers/tty/rocket*
9512
9513 ROCKETPORT EXPRESS/INFINITY DRIVER
9514 M:      Kevin Cernekee <cernekee@gmail.com>
9515 L:      linux-serial@vger.kernel.org
9516 S:      Odd Fixes
9517 F:      drivers/tty/serial/rp2.*
9518
9519 ROSE NETWORK LAYER
9520 M:      Ralf Baechle <ralf@linux-mips.org>
9521 L:      linux-hams@vger.kernel.org
9522 W:      http://www.linux-ax25.org/
9523 S:      Maintained
9524 F:      include/net/rose.h
9525 F:      include/uapi/linux/rose.h
9526 F:      net/rose/
9527
9528 RTL2830 MEDIA DRIVER
9529 M:      Antti Palosaari <crope@iki.fi>
9530 L:      linux-media@vger.kernel.org
9531 W:      https://linuxtv.org
9532 W:      http://palosaari.fi/linux/
9533 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9534 T:      git git://linuxtv.org/anttip/media_tree.git
9535 S:      Maintained
9536 F:      drivers/media/dvb-frontends/rtl2830*
9537
9538 RTL2832 MEDIA DRIVER
9539 M:      Antti Palosaari <crope@iki.fi>
9540 L:      linux-media@vger.kernel.org
9541 W:      https://linuxtv.org
9542 W:      http://palosaari.fi/linux/
9543 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9544 T:      git git://linuxtv.org/anttip/media_tree.git
9545 S:      Maintained
9546 F:      drivers/media/dvb-frontends/rtl2832*
9547
9548 RTL2832_SDR MEDIA DRIVER
9549 M:      Antti Palosaari <crope@iki.fi>
9550 L:      linux-media@vger.kernel.org
9551 W:      https://linuxtv.org
9552 W:      http://palosaari.fi/linux/
9553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9554 T:      git git://linuxtv.org/anttip/media_tree.git
9555 S:      Maintained
9556 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9557
9558 RTL8180 WIRELESS DRIVER
9559 L:      linux-wireless@vger.kernel.org
9560 W:      http://wireless.kernel.org/
9561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9562 S:      Orphan
9563 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9564
9565 RTL8187 WIRELESS DRIVER
9566 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9567 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9568 M:      Larry Finger <Larry.Finger@lwfinger.net>
9569 L:      linux-wireless@vger.kernel.org
9570 W:      http://wireless.kernel.org/
9571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9572 S:      Maintained
9573 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9574
9575 RTL8192CE WIRELESS DRIVER
9576 M:      Larry Finger <Larry.Finger@lwfinger.net>
9577 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9578 L:      linux-wireless@vger.kernel.org
9579 W:      http://wireless.kernel.org/
9580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9581 S:      Maintained
9582 F:      drivers/net/wireless/realtek/rtlwifi/
9583 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9584
9585 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9586 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9587 L:      linux-wireless@vger.kernel.org
9588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
9589 S:      Maintained
9590 F:      drivers/net/wireless/realtek/rtl8xxxu/
9591
9592 S3 SAVAGE FRAMEBUFFER DRIVER
9593 M:      Antonino Daplas <adaplas@gmail.com>
9594 L:      linux-fbdev@vger.kernel.org
9595 S:      Maintained
9596 F:      drivers/video/fbdev/savage/
9597
9598 S390
9599 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9600 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9601 L:      linux-s390@vger.kernel.org
9602 W:      http://www.ibm.com/developerworks/linux/linux390/
9603 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9604 S:      Supported
9605 F:      arch/s390/
9606 F:      drivers/s390/
9607 F:      Documentation/s390/
9608 F:      Documentation/DocBook/s390*
9609
9610 S390 COMMON I/O LAYER
9611 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9612 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9613 L:      linux-s390@vger.kernel.org
9614 W:      http://www.ibm.com/developerworks/linux/linux390/
9615 S:      Supported
9616 F:      drivers/s390/cio/
9617
9618 S390 DASD DRIVER
9619 M:      Stefan Weinhuber <wein@de.ibm.com>
9620 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9621 L:      linux-s390@vger.kernel.org
9622 W:      http://www.ibm.com/developerworks/linux/linux390/
9623 S:      Supported
9624 F:      drivers/s390/block/dasd*
9625 F:      block/partitions/ibm.c
9626
9627 S390 NETWORK DRIVERS
9628 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9629 L:      linux-s390@vger.kernel.org
9630 W:      http://www.ibm.com/developerworks/linux/linux390/
9631 S:      Supported
9632 F:      drivers/s390/net/
9633
9634 S390 PCI SUBSYSTEM
9635 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9636 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9637 L:      linux-s390@vger.kernel.org
9638 W:      http://www.ibm.com/developerworks/linux/linux390/
9639 S:      Supported
9640 F:      arch/s390/pci/
9641 F:      drivers/pci/hotplug/s390_pci_hpc.c
9642
9643 S390 ZCRYPT DRIVER
9644 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9645 L:      linux-s390@vger.kernel.org
9646 W:      http://www.ibm.com/developerworks/linux/linux390/
9647 S:      Supported
9648 F:      drivers/s390/crypto/
9649
9650 S390 ZFCP DRIVER
9651 M:      Steffen Maier <maier@linux.vnet.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/scsi/zfcp_*
9656
9657 S390 IUCV NETWORK LAYER
9658 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9659 L:      linux-s390@vger.kernel.org
9660 W:      http://www.ibm.com/developerworks/linux/linux390/
9661 S:      Supported
9662 F:      drivers/s390/net/*iucv*
9663 F:      include/net/iucv/
9664 F:      net/iucv/
9665
9666 S390 IOMMU (PCI)
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:      drivers/iommu/s390-iommu.c
9672
9673 S3C24XX SD/MMC Driver
9674 M:      Ben Dooks <ben-linux@fluff.org>
9675 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9676 S:      Supported
9677 F:      drivers/mmc/host/s3cmci.*
9678
9679 SAA6588 RDS RECEIVER DRIVER
9680 M:      Hans Verkuil <hverkuil@xs4all.nl>
9681 L:      linux-media@vger.kernel.org
9682 T:      git git://linuxtv.org/media_tree.git
9683 W:      https://linuxtv.org
9684 S:      Odd Fixes
9685 F:      drivers/media/i2c/saa6588*
9686
9687 SAA7134 VIDEO4LINUX DRIVER
9688 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9689 L:      linux-media@vger.kernel.org
9690 W:      https://linuxtv.org
9691 T:      git git://linuxtv.org/media_tree.git
9692 S:      Odd fixes
9693 F:      Documentation/video4linux/*.saa7134
9694 F:      drivers/media/pci/saa7134/
9695
9696 SAA7146 VIDEO4LINUX-2 DRIVER
9697 M:      Hans Verkuil <hverkuil@xs4all.nl>
9698 L:      linux-media@vger.kernel.org
9699 T:      git git://linuxtv.org/media_tree.git
9700 S:      Maintained
9701 F:      drivers/media/common/saa7146/
9702 F:      drivers/media/pci/saa7146/
9703 F:      include/media/saa7146*
9704
9705 SAMSUNG LAPTOP DRIVER
9706 M:      Corentin Chary <corentin.chary@gmail.com>
9707 L:      platform-driver-x86@vger.kernel.org
9708 S:      Maintained
9709 F:      drivers/platform/x86/samsung-laptop.c
9710
9711 SAMSUNG AUDIO (ASoC) DRIVERS
9712 M:      Sangbeom Kim <sbkim73@samsung.com>
9713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9714 S:      Supported
9715 F:      sound/soc/samsung/
9716
9717 SAMSUNG FRAMEBUFFER DRIVER
9718 M:      Jingoo Han <jingoohan1@gmail.com>
9719 L:      linux-fbdev@vger.kernel.org
9720 S:      Maintained
9721 F:      drivers/video/fbdev/s3c-fb.c
9722
9723 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9724 M:      Sangbeom Kim <sbkim73@samsung.com>
9725 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9726 L:      linux-kernel@vger.kernel.org
9727 L:      linux-samsung-soc@vger.kernel.org
9728 S:      Supported
9729 F:      drivers/mfd/sec*.c
9730 F:      drivers/regulator/s2m*.c
9731 F:      drivers/regulator/s5m*.c
9732 F:      drivers/clk/clk-s2mps11.c
9733 F:      drivers/rtc/rtc-s5m.c
9734 F:      include/linux/mfd/samsung/
9735 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9736 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9737 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9738 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9739
9740 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9741 M:      Kyungmin Park <kyungmin.park@samsung.com>
9742 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9743 L:      linux-media@vger.kernel.org
9744 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9745 S:      Supported
9746 F:      drivers/media/platform/exynos4-is/
9747
9748 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9749 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9750 L:      linux-media@vger.kernel.org
9751 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9752 S:      Maintained
9753 F:      drivers/media/platform/s3c-camif/
9754 F:      include/media/drv-intf/s3c_camif.h
9755
9756 SAMSUNG S5C73M3 CAMERA DRIVER
9757 M:      Kyungmin Park <kyungmin.park@samsung.com>
9758 M:      Andrzej Hajda <a.hajda@samsung.com>
9759 L:      linux-media@vger.kernel.org
9760 S:      Supported
9761 F:      drivers/media/i2c/s5c73m3/*
9762
9763 SAMSUNG S5K5BAF CAMERA DRIVER
9764 M:      Kyungmin Park <kyungmin.park@samsung.com>
9765 M:      Andrzej Hajda <a.hajda@samsung.com>
9766 L:      linux-media@vger.kernel.org
9767 S:      Supported
9768 F:      drivers/media/i2c/s5k5baf.c
9769
9770 SAMSUNG S3FWRN5 NFC DRIVER
9771 M:      Robert Baldyga <r.baldyga@samsung.com>
9772 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
9773 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9774 S:      Supported
9775 F:      drivers/nfc/s3fwrn5
9776
9777 SAMSUNG SOC CLOCK DRIVERS
9778 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9779 M:      Tomasz Figa <tomasz.figa@gmail.com>
9780 S:      Supported
9781 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9782 F:      drivers/clk/samsung/
9783
9784 SAMSUNG SXGBE DRIVERS
9785 M:      Byungho An <bh74.an@samsung.com>
9786 M:      Girish K S <ks.giri@samsung.com>
9787 M:      Vipul Pandya <vipul.pandya@samsung.com>
9788 S:      Supported
9789 L:      netdev@vger.kernel.org
9790 F:      drivers/net/ethernet/samsung/sxgbe/
9791
9792 SAMSUNG THERMAL DRIVER
9793 M:      Lukasz Majewski <l.majewski@samsung.com>
9794 L:      linux-pm@vger.kernel.org
9795 L:      linux-samsung-soc@vger.kernel.org
9796 S:      Supported
9797 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9798 F:      drivers/thermal/samsung/
9799
9800 SAMSUNG USB2 PHY DRIVER
9801 M:      Kamil Debski <k.debski@samsung.com>
9802 L:      linux-kernel@vger.kernel.org
9803 S:      Supported
9804 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9805 F:      Documentation/phy/samsung-usb2.txt
9806 F:      drivers/phy/phy-exynos4210-usb2.c
9807 F:      drivers/phy/phy-exynos4x12-usb2.c
9808 F:      drivers/phy/phy-exynos5250-usb2.c
9809 F:      drivers/phy/phy-s5pv210-usb2.c
9810 F:      drivers/phy/phy-samsung-usb2.c
9811 F:      drivers/phy/phy-samsung-usb2.h
9812
9813 SERIAL DRIVERS
9814 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9815 L:      linux-serial@vger.kernel.org
9816 S:      Maintained
9817 F:      drivers/tty/serial/
9818
9819 SYNOPSYS DESIGNWARE DMAC DRIVER
9820 M:      Viresh Kumar <vireshk@kernel.org>
9821 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9822 S:      Maintained
9823 F:      include/linux/dma/dw.h
9824 F:      include/linux/platform_data/dma-dw.h
9825 F:      drivers/dma/dw/
9826
9827 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9828 M: Lars Persson <lars.persson@axis.com>
9829 L: netdev@vger.kernel.org
9830 S: Supported
9831 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9832 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9833
9834 SYNOPSYS DESIGNWARE I2C DRIVER
9835 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9836 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9837 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
9838 L:      linux-i2c@vger.kernel.org
9839 S:      Maintained
9840 F:      drivers/i2c/busses/i2c-designware-*
9841 F:      include/linux/platform_data/i2c-designware.h
9842
9843 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9844 M:      Jaehoon Chung <jh80.chung@samsung.com>
9845 L:      linux-mmc@vger.kernel.org
9846 S:      Maintained
9847 F:      include/linux/mmc/dw_mmc.h
9848 F:      drivers/mmc/host/dw_mmc*
9849
9850 SYSTEM TRACE MODULE CLASS
9851 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9852 S:      Maintained
9853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
9854 F:      Documentation/trace/stm.txt
9855 F:      drivers/hwtracing/stm/
9856 F:      include/linux/stm.h
9857 F:      include/uapi/linux/stm.h
9858
9859 THUNDERBOLT DRIVER
9860 M:      Andreas Noever <andreas.noever@gmail.com>
9861 S:      Maintained
9862 F:      drivers/thunderbolt/
9863
9864 TI BQ27XXX POWER SUPPLY DRIVER
9865 R:      Andrew F. Davis <afd@ti.com>
9866 F:      include/linux/power/bq27xxx_battery.h
9867 F:      drivers/power/bq27xxx_battery.c
9868 F:      drivers/power/bq27xxx_battery_i2c.c
9869
9870 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9871 M:      John Stultz <john.stultz@linaro.org>
9872 M:      Thomas Gleixner <tglx@linutronix.de>
9873 L:      linux-kernel@vger.kernel.org
9874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9875 S:      Supported
9876 F:      include/linux/clocksource.h
9877 F:      include/linux/time.h
9878 F:      include/linux/timex.h
9879 F:      include/uapi/linux/time.h
9880 F:      include/uapi/linux/timex.h
9881 F:      kernel/time/clocksource.c
9882 F:      kernel/time/time*.c
9883 F:      kernel/time/alarmtimer.c
9884 F:      kernel/time/ntp.c
9885 F:      tools/testing/selftests/timers/
9886
9887 SC1200 WDT DRIVER
9888 M:      Zwane Mwaikambo <zwanem@gmail.com>
9889 S:      Maintained
9890 F:      drivers/watchdog/sc1200wdt.c
9891
9892 SCHEDULER
9893 M:      Ingo Molnar <mingo@redhat.com>
9894 M:      Peter Zijlstra <peterz@infradead.org>
9895 L:      linux-kernel@vger.kernel.org
9896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9897 S:      Maintained
9898 F:      kernel/sched/
9899 F:      include/linux/sched.h
9900 F:      include/uapi/linux/sched.h
9901 F:      include/linux/wait.h
9902
9903 SCORE ARCHITECTURE
9904 M:      Chen Liqin <liqin.linux@gmail.com>
9905 M:      Lennox Wu <lennox.wu@gmail.com>
9906 W:      http://www.sunplus.com
9907 S:      Supported
9908 F:      arch/score/
9909
9910 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9911 M:      Sudeep Holla <sudeep.holla@arm.com>
9912 L:      linux-arm-kernel@lists.infradead.org
9913 S:      Maintained
9914 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9915 F:      drivers/clk/clk-scpi.c
9916 F:      drivers/cpufreq/scpi-cpufreq.c
9917 F:      drivers/firmware/arm_scpi.c
9918 F:      include/linux/scpi_protocol.h
9919
9920 SCSI CDROM DRIVER
9921 M:      Jens Axboe <axboe@kernel.dk>
9922 L:      linux-scsi@vger.kernel.org
9923 W:      http://www.kernel.dk
9924 S:      Maintained
9925 F:      drivers/scsi/sr*
9926
9927 SCSI RDMA PROTOCOL (SRP) INITIATOR
9928 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9929 L:      linux-rdma@vger.kernel.org
9930 S:      Supported
9931 W:      http://www.openfabrics.org
9932 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9934 F:      drivers/infiniband/ulp/srp/
9935 F:      include/scsi/srp.h
9936
9937 SCSI SG DRIVER
9938 M:      Doug Gilbert <dgilbert@interlog.com>
9939 L:      linux-scsi@vger.kernel.org
9940 W:      http://sg.danny.cz/sg
9941 S:      Maintained
9942 F:      Documentation/scsi/scsi-generic.txt
9943 F:      drivers/scsi/sg.c
9944 F:      include/scsi/sg.h
9945
9946 SCSI SUBSYSTEM
9947 M:      "James E.J. Bottomley" <jejb@linux.vnet.ibm.com>
9948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9949 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9951 L:      linux-scsi@vger.kernel.org
9952 S:      Maintained
9953 F:      drivers/scsi/
9954 F:      include/scsi/
9955
9956 SCSI TAPE DRIVER
9957 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9958 L:      linux-scsi@vger.kernel.org
9959 S:      Maintained
9960 F:      Documentation/scsi/st.txt
9961 F:      drivers/scsi/st.*
9962 F:      drivers/scsi/st_*.h
9963
9964 SCTP PROTOCOL
9965 M:      Vlad Yasevich <vyasevich@gmail.com>
9966 M:      Neil Horman <nhorman@tuxdriver.com>
9967 L:      linux-sctp@vger.kernel.org
9968 W:      http://lksctp.sourceforge.net
9969 S:      Maintained
9970 F:      Documentation/networking/sctp.txt
9971 F:      include/linux/sctp.h
9972 F:      include/uapi/linux/sctp.h
9973 F:      include/net/sctp/
9974 F:      net/sctp/
9975
9976 SCx200 CPU SUPPORT
9977 M:      Jim Cromie <jim.cromie@gmail.com>
9978 S:      Odd Fixes
9979 F:      Documentation/i2c/busses/scx200_acb
9980 F:      arch/x86/platform/scx200/
9981 F:      drivers/watchdog/scx200_wdt.c
9982 F:      drivers/i2c/busses/scx200*
9983 F:      drivers/mtd/maps/scx200_docflash.c
9984 F:      include/linux/scx200.h
9985
9986 SCx200 GPIO DRIVER
9987 M:      Jim Cromie <jim.cromie@gmail.com>
9988 S:      Maintained
9989 F:      drivers/char/scx200_gpio.c
9990 F:      include/linux/scx200_gpio.h
9991
9992 SCx200 HRT CLOCKSOURCE DRIVER
9993 M:      Jim Cromie <jim.cromie@gmail.com>
9994 S:      Maintained
9995 F:      drivers/clocksource/scx200_hrt.c
9996
9997 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9998 M:      Sascha Sommer <saschasommer@freenet.de>
9999 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
10000 S:      Maintained
10001 F:      drivers/mmc/host/sdricoh_cs.c
10002
10003 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
10004 M:      Adrian Hunter <adrian.hunter@intel.com>
10005 L:      linux-mmc@vger.kernel.org
10006 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
10007 S:      Maintained
10008 F:      drivers/mmc/host/sdhci*
10009 F:      include/linux/mmc/sdhci*
10010
10011 SECURE COMPUTING
10012 M:      Kees Cook <keescook@chromium.org>
10013 R:      Andy Lutomirski <luto@amacapital.net>
10014 R:      Will Drewry <wad@chromium.org>
10015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
10016 S:      Supported
10017 F:      kernel/seccomp.c
10018 F:      include/uapi/linux/seccomp.h
10019 F:      include/linux/seccomp.h
10020 F:      tools/testing/selftests/seccomp/*
10021 K:      \bsecure_computing
10022 K:      \bTIF_SECCOMP\b
10023
10024 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
10025 M:      Ben Dooks <ben-linux@fluff.org>
10026 M:      Jaehoon Chung <jh80.chung@samsung.com>
10027 L:      linux-mmc@vger.kernel.org
10028 S:      Maintained
10029 F:      drivers/mmc/host/sdhci-s3c*
10030
10031 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
10032 M:      Viresh Kumar <vireshk@kernel.org>
10033 L:      spear-devel@list.st.com
10034 L:      linux-mmc@vger.kernel.org
10035 S:      Maintained
10036 F:      drivers/mmc/host/sdhci-spear.c
10037
10038 SECURITY SUBSYSTEM
10039 M:      James Morris <james.l.morris@oracle.com>
10040 M:      "Serge E. Hallyn" <serge@hallyn.com>
10041 L:      linux-security-module@vger.kernel.org (suggested Cc:)
10042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
10043 W:      http://kernsec.org/
10044 S:      Supported
10045 F:      security/
10046
10047 SECURITY CONTACT
10048 M:      Security Officers <security@kernel.org>
10049 S:      Supported
10050
10051 SELINUX SECURITY MODULE
10052 M:      Paul Moore <paul@paul-moore.com>
10053 M:      Stephen Smalley <sds@tycho.nsa.gov>
10054 M:      Eric Paris <eparis@parisplace.org>
10055 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
10056 W:      http://selinuxproject.org
10057 T:      git git://git.infradead.org/users/pcmoore/selinux
10058 S:      Supported
10059 F:      include/linux/selinux*
10060 F:      security/selinux/
10061 F:      scripts/selinux/
10062
10063 APPARMOR SECURITY MODULE
10064 M:      John Johansen <john.johansen@canonical.com>
10065 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
10066 W:      apparmor.wiki.kernel.org
10067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
10068 S:      Supported
10069 F:      security/apparmor/
10070
10071 LOADPIN SECURITY MODULE
10072 M:      Kees Cook <keescook@chromium.org>
10073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10074 S:      Supported
10075 F:      security/loadpin/
10076
10077 YAMA SECURITY MODULE
10078 M:      Kees Cook <keescook@chromium.org>
10079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
10080 S:      Supported
10081 F:      security/yama/
10082
10083 SENSABLE PHANTOM
10084 M:      Jiri Slaby <jirislaby@gmail.com>
10085 S:      Maintained
10086 F:      drivers/misc/phantom.c
10087 F:      include/uapi/linux/phantom.h
10088
10089 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
10090 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
10091 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
10092 M:      John Soni Jose <sony.john@avagotech.com>
10093 L:      linux-scsi@vger.kernel.org
10094 W:      http://www.avagotech.com
10095 S:      Supported
10096 F:      drivers/scsi/be2iscsi/
10097
10098 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
10099 M:      Sathya Perla <sathya.perla@broadcom.com>
10100 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
10101 M:      Padmanabh Ratnakar <padmanabh.ratnakar@broadcom.com>
10102 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
10103 M:      Somnath Kotur <somnath.kotur@broadcom.com>
10104 L:      netdev@vger.kernel.org
10105 W:      http://www.emulex.com
10106 S:      Supported
10107 F:      drivers/net/ethernet/emulex/benet/
10108
10109 EMULEX ONECONNECT ROCE DRIVER
10110 M:      Selvin Xavier <selvin.xavier@avagotech.com>
10111 M:      Devesh Sharma <devesh.sharma@avagotech.com>
10112 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
10113 L:      linux-rdma@vger.kernel.org
10114 W:      http://www.emulex.com
10115 S:      Supported
10116 F:      drivers/infiniband/hw/ocrdma/
10117
10118 SFC NETWORK DRIVER
10119 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
10120 M:      Edward Cree <ecree@solarflare.com>
10121 M:      Bert Kenward <bkenward@solarflare.com>
10122 L:      netdev@vger.kernel.org
10123 S:      Supported
10124 F:      drivers/net/ethernet/sfc/
10125
10126 SGI GRU DRIVER
10127 M:      Dimitri Sivanich <sivanich@sgi.com>
10128 S:      Maintained
10129 F:      drivers/misc/sgi-gru/
10130
10131 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
10132 M:      Pat Gefre <pfg@sgi.com>
10133 L:      linux-ia64@vger.kernel.org
10134 S:      Supported
10135 F:      Documentation/ia64/serial.txt
10136 F:      drivers/tty/serial/ioc?_serial.c
10137 F:      include/linux/ioc?.h
10138
10139 SGI XP/XPC/XPNET DRIVER
10140 M:      Cliff Whickman <cpw@sgi.com>
10141 M:      Robin Holt <robinmholt@gmail.com>
10142 S:      Maintained
10143 F:      drivers/misc/sgi-xp/
10144
10145 SI2157 MEDIA DRIVER
10146 M:      Antti Palosaari <crope@iki.fi>
10147 L:      linux-media@vger.kernel.org
10148 W:      https://linuxtv.org
10149 W:      http://palosaari.fi/linux/
10150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10151 T:      git git://linuxtv.org/anttip/media_tree.git
10152 S:      Maintained
10153 F:      drivers/media/tuners/si2157*
10154
10155 SI2168 MEDIA DRIVER
10156 M:      Antti Palosaari <crope@iki.fi>
10157 L:      linux-media@vger.kernel.org
10158 W:      https://linuxtv.org
10159 W:      http://palosaari.fi/linux/
10160 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10161 T:      git git://linuxtv.org/anttip/media_tree.git
10162 S:      Maintained
10163 F:      drivers/media/dvb-frontends/si2168*
10164
10165 SI470X FM RADIO RECEIVER I2C DRIVER
10166 M:      Hans Verkuil <hverkuil@xs4all.nl>
10167 L:      linux-media@vger.kernel.org
10168 T:      git git://linuxtv.org/media_tree.git
10169 W:      https://linuxtv.org
10170 S:      Odd Fixes
10171 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
10172
10173 SI470X FM RADIO RECEIVER USB DRIVER
10174 M:      Hans Verkuil <hverkuil@xs4all.nl>
10175 L:      linux-media@vger.kernel.org
10176 T:      git git://linuxtv.org/media_tree.git
10177 W:      https://linuxtv.org
10178 S:      Maintained
10179 F:      drivers/media/radio/si470x/radio-si470x-common.c
10180 F:      drivers/media/radio/si470x/radio-si470x.h
10181 F:      drivers/media/radio/si470x/radio-si470x-usb.c
10182
10183 SI4713 FM RADIO TRANSMITTER I2C DRIVER
10184 M:      Eduardo Valentin <edubezval@gmail.com>
10185 L:      linux-media@vger.kernel.org
10186 T:      git git://linuxtv.org/media_tree.git
10187 W:      https://linuxtv.org
10188 S:      Odd Fixes
10189 F:      drivers/media/radio/si4713/si4713.?
10190
10191 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
10192 M:      Eduardo Valentin <edubezval@gmail.com>
10193 L:      linux-media@vger.kernel.org
10194 T:      git git://linuxtv.org/media_tree.git
10195 W:      https://linuxtv.org
10196 S:      Odd Fixes
10197 F:      drivers/media/radio/si4713/radio-platform-si4713.c
10198
10199 SI4713 FM RADIO TRANSMITTER USB DRIVER
10200 M:      Hans Verkuil <hverkuil@xs4all.nl>
10201 L:      linux-media@vger.kernel.org
10202 T:      git git://linuxtv.org/media_tree.git
10203 W:      https://linuxtv.org
10204 S:      Maintained
10205 F:      drivers/media/radio/si4713/radio-usb-si4713.c
10206
10207 SIANO DVB DRIVER
10208 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10209 L:      linux-media@vger.kernel.org
10210 W:      https://linuxtv.org
10211 T:      git git://linuxtv.org/media_tree.git
10212 S:      Odd fixes
10213 F:      drivers/media/common/siano/
10214 F:      drivers/media/usb/siano/
10215 F:      drivers/media/usb/siano/
10216 F:      drivers/media/mmc/siano/
10217
10218 SIMPLEFB FB DRIVER
10219 M:      Hans de Goede <hdegoede@redhat.com>
10220 L:      linux-fbdev@vger.kernel.org
10221 S:      Maintained
10222 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
10223 F:      drivers/video/fbdev/simplefb.c
10224 F:      include/linux/platform_data/simplefb.h
10225
10226 SH_VEU V4L2 MEM2MEM DRIVER
10227 L:      linux-media@vger.kernel.org
10228 S:      Orphan
10229 F:      drivers/media/platform/sh_veu.c
10230
10231 SH_VOU V4L2 OUTPUT DRIVER
10232 L:      linux-media@vger.kernel.org
10233 S:      Orphan
10234 F:      drivers/media/platform/sh_vou.c
10235 F:      include/media/drv-intf/sh_vou.h
10236
10237 SIMPLE FIRMWARE INTERFACE (SFI)
10238 M:      Len Brown <lenb@kernel.org>
10239 L:      sfi-devel@simplefirmware.org
10240 W:      http://simplefirmware.org/
10241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
10242 S:      Supported
10243 F:      arch/x86/platform/sfi/
10244 F:      drivers/sfi/
10245 F:      include/linux/sfi*.h
10246
10247 SIMTEC EB110ATX (Chalice CATS)
10248 P:      Ben Dooks
10249 P:      Vincent Sanders <vince@simtec.co.uk>
10250 M:      Simtec Linux Team <linux@simtec.co.uk>
10251 W:      http://www.simtec.co.uk/products/EB110ATX/
10252 S:      Supported
10253
10254 SIMTEC EB2410ITX (BAST)
10255 P:      Ben Dooks
10256 P:      Vincent Sanders <vince@simtec.co.uk>
10257 M:      Simtec Linux Team <linux@simtec.co.uk>
10258 W:      http://www.simtec.co.uk/products/EB2410ITX/
10259 S:      Supported
10260 F:      arch/arm/mach-s3c24xx/mach-bast.c
10261 F:      arch/arm/mach-s3c24xx/bast-ide.c
10262 F:      arch/arm/mach-s3c24xx/bast-irq.c
10263
10264 TI DAVINCI MACHINE SUPPORT
10265 M:      Sekhar Nori <nsekhar@ti.com>
10266 M:      Kevin Hilman <khilman@kernel.org>
10267 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
10269 S:      Supported
10270 F:      arch/arm/mach-davinci/
10271 F:      drivers/i2c/busses/i2c-davinci.c
10272
10273 TI DAVINCI SERIES MEDIA DRIVER
10274 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10275 L:      linux-media@vger.kernel.org
10276 W:      https://linuxtv.org
10277 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10278 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10279 S:      Maintained
10280 F:      drivers/media/platform/davinci/
10281 F:      include/media/davinci/
10282
10283 TI AM437X VPFE DRIVER
10284 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10285 L:      linux-media@vger.kernel.org
10286 W:      https://linuxtv.org
10287 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10288 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10289 S:      Maintained
10290 F:      drivers/media/platform/am437x/
10291
10292 OV2659 OMNIVISION SENSOR DRIVER
10293 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
10294 L:      linux-media@vger.kernel.org
10295 W:      https://linuxtv.org
10296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10297 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
10298 S:      Maintained
10299 F:      drivers/media/i2c/ov2659.c
10300 F:      include/media/i2c/ov2659.h
10301
10302 SILICON MOTION SM712 FRAME BUFFER DRIVER
10303 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10304 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10305 M:      Sudip Mukherjee <sudip@vectorindia.org>
10306 L:      linux-fbdev@vger.kernel.org
10307 S:      Maintained
10308 F:      drivers/video/fbdev/sm712*
10309 F:      Documentation/fb/sm712fb.txt
10310
10311 SIS 190 ETHERNET DRIVER
10312 M:      Francois Romieu <romieu@fr.zoreil.com>
10313 L:      netdev@vger.kernel.org
10314 S:      Maintained
10315 F:      drivers/net/ethernet/sis/sis190.c
10316
10317 SIS 900/7016 FAST ETHERNET DRIVER
10318 M:      Daniele Venzano <venza@brownhat.org>
10319 W:      http://www.brownhat.org/sis900.html
10320 L:      netdev@vger.kernel.org
10321 S:      Maintained
10322 F:      drivers/net/ethernet/sis/sis900.*
10323
10324 SIS FRAMEBUFFER DRIVER
10325 M:      Thomas Winischhofer <thomas@winischhofer.net>
10326 W:      http://www.winischhofer.net/linuxsisvga.shtml
10327 S:      Maintained
10328 F:      Documentation/fb/sisfb.txt
10329 F:      drivers/video/fbdev/sis/
10330 F:      include/video/sisfb.h
10331
10332 SIS USB2VGA DRIVER
10333 M:      Thomas Winischhofer <thomas@winischhofer.net>
10334 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10335 S:      Maintained
10336 F:      drivers/usb/misc/sisusbvga/
10337
10338 SLAB ALLOCATOR
10339 M:      Christoph Lameter <cl@linux.com>
10340 M:      Pekka Enberg <penberg@kernel.org>
10341 M:      David Rientjes <rientjes@google.com>
10342 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10343 M:      Andrew Morton <akpm@linux-foundation.org>
10344 L:      linux-mm@kvack.org
10345 S:      Maintained
10346 F:      include/linux/sl?b*.h
10347 F:      mm/sl?b*
10348
10349 SLEEPABLE READ-COPY UPDATE (SRCU)
10350 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10351 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10352 M:      Josh Triplett <josh@joshtriplett.org>
10353 R:      Steven Rostedt <rostedt@goodmis.org>
10354 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10355 L:      linux-kernel@vger.kernel.org
10356 W:      http://www.rdrop.com/users/paulmck/RCU/
10357 S:      Supported
10358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10359 F:      include/linux/srcu.h
10360 F:      kernel/rcu/srcu.c
10361
10362 SMACK SECURITY MODULE
10363 M:      Casey Schaufler <casey@schaufler-ca.com>
10364 L:      linux-security-module@vger.kernel.org
10365 W:      http://schaufler-ca.com
10366 T:      git git://git.gitorious.org/smack-next/kernel.git
10367 S:      Maintained
10368 F:      Documentation/security/Smack.txt
10369 F:      security/smack/
10370
10371 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10372 M:      Kevin Hilman <khilman@kernel.org>
10373 M:      Nishanth Menon <nm@ti.com>
10374 S:      Maintained
10375 F:      drivers/power/avs/
10376 F:      include/linux/power/smartreflex.h
10377 L:      linux-pm@vger.kernel.org
10378
10379 SMC91x ETHERNET DRIVER
10380 M:      Nicolas Pitre <nico@fluxnic.net>
10381 S:      Odd Fixes
10382 F:      drivers/net/ethernet/smsc/smc91x.*
10383
10384 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10385 M:      Sakari Ailus <sakari.ailus@iki.fi>
10386 L:      linux-media@vger.kernel.org
10387 S:      Maintained
10388 F:      drivers/media/i2c/smiapp/
10389 F:      include/media/i2c/smiapp.h
10390 F:      drivers/media/i2c/smiapp-pll.c
10391 F:      drivers/media/i2c/smiapp-pll.h
10392 F:      include/uapi/linux/smiapp.h
10393 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10394
10395 SMM665 HARDWARE MONITOR DRIVER
10396 M:      Guenter Roeck <linux@roeck-us.net>
10397 L:      linux-hwmon@vger.kernel.org
10398 S:      Maintained
10399 F:      Documentation/hwmon/smm665
10400 F:      drivers/hwmon/smm665.c
10401
10402 SMSC EMC2103 HARDWARE MONITOR DRIVER
10403 M:      Steve Glendinning <steve.glendinning@shawell.net>
10404 L:      linux-hwmon@vger.kernel.org
10405 S:      Maintained
10406 F:      Documentation/hwmon/emc2103
10407 F:      drivers/hwmon/emc2103.c
10408
10409 SMSC SCH5627 HARDWARE MONITOR DRIVER
10410 M:      Hans de Goede <hdegoede@redhat.com>
10411 L:      linux-hwmon@vger.kernel.org
10412 S:      Supported
10413 F:      Documentation/hwmon/sch5627
10414 F:      drivers/hwmon/sch5627.c
10415
10416 SMSC47B397 HARDWARE MONITOR DRIVER
10417 M:      Jean Delvare <jdelvare@suse.com>
10418 L:      linux-hwmon@vger.kernel.org
10419 S:      Maintained
10420 F:      Documentation/hwmon/smsc47b397
10421 F:      drivers/hwmon/smsc47b397.c
10422
10423 SMSC911x ETHERNET DRIVER
10424 M:      Steve Glendinning <steve.glendinning@shawell.net>
10425 L:      netdev@vger.kernel.org
10426 S:      Maintained
10427 F:      include/linux/smsc911x.h
10428 F:      drivers/net/ethernet/smsc/smsc911x.*
10429
10430 SMSC9420 PCI ETHERNET DRIVER
10431 M:      Steve Glendinning <steve.glendinning@shawell.net>
10432 L:      netdev@vger.kernel.org
10433 S:      Maintained
10434 F:      drivers/net/ethernet/smsc/smsc9420.*
10435
10436 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10437 M:      Steve Glendinning <steve.glendinning@shawell.net>
10438 L:      linux-fbdev@vger.kernel.org
10439 S:      Maintained
10440 F:      drivers/video/fbdev/smscufx.c
10441
10442 SOC-CAMERA V4L2 SUBSYSTEM
10443 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10444 L:      linux-media@vger.kernel.org
10445 T:      git git://linuxtv.org/media_tree.git
10446 S:      Maintained
10447 F:      include/media/soc*
10448 F:      drivers/media/i2c/soc_camera/
10449 F:      drivers/media/platform/soc_camera/
10450
10451 SOEKRIS NET48XX LED SUPPORT
10452 M:      Chris Boot <bootc@bootc.net>
10453 S:      Maintained
10454 F:      drivers/leds/leds-net48xx.c
10455
10456 SOFTLOGIC 6x10 MPEG CODEC
10457 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10458 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10459 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10460 M:      Ismael Luceno <ismael@iodev.co.uk>
10461 L:      linux-media@vger.kernel.org
10462 S:      Supported
10463 F:      drivers/media/pci/solo6x10/
10464
10465 SOFTWARE RAID (Multiple Disks) SUPPORT
10466 M:      Shaohua Li <shli@kernel.org>
10467 L:      linux-raid@vger.kernel.org
10468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
10469 S:      Supported
10470 F:      drivers/md/
10471 F:      include/linux/raid/
10472 F:      include/uapi/linux/raid/
10473
10474 SONIC NETWORK DRIVER
10475 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10476 L:      netdev@vger.kernel.org
10477 S:      Maintained
10478 F:      drivers/net/ethernet/natsemi/sonic.*
10479
10480 SONICS SILICON BACKPLANE DRIVER (SSB)
10481 M:      Michael Buesch <m@bues.ch>
10482 L:      linux-wireless@vger.kernel.org
10483 S:      Maintained
10484 F:      drivers/ssb/
10485 F:      include/linux/ssb/
10486
10487 SONY VAIO CONTROL DEVICE DRIVER
10488 M:      Mattia Dongili <malattia@linux.it>
10489 L:      platform-driver-x86@vger.kernel.org
10490 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10491 S:      Maintained
10492 F:      Documentation/laptops/sony-laptop.txt
10493 F:      drivers/char/sonypi.c
10494 F:      drivers/platform/x86/sony-laptop.c
10495 F:      include/linux/sony-laptop.h
10496
10497 SONY MEMORYSTICK CARD SUPPORT
10498 M:      Alex Dubov <oakad@yahoo.com>
10499 W:      http://tifmxx.berlios.de/
10500 S:      Maintained
10501 F:      drivers/memstick/host/tifm_ms.c
10502
10503 SONY MEMORYSTICK STANDARD SUPPORT
10504 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10505 S:      Maintained
10506 F:      drivers/memstick/core/ms_block.*
10507
10508 SOUND
10509 M:      Jaroslav Kysela <perex@perex.cz>
10510 M:      Takashi Iwai <tiwai@suse.com>
10511 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10512 W:      http://www.alsa-project.org/
10513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10514 T:      git git://git.alsa-project.org/alsa-kernel.git
10515 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10516 S:      Maintained
10517 F:      Documentation/sound/
10518 F:      include/sound/
10519 F:      include/uapi/sound/
10520 F:      sound/
10521
10522 SOUND - COMPRESSED AUDIO
10523 M:      Vinod Koul <vinod.koul@intel.com>
10524 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10526 S:      Supported
10527 F:      Documentation/sound/alsa/compress_offload.txt
10528 F:      include/sound/compress_driver.h
10529 F:      include/uapi/sound/compress_*
10530 F:      sound/core/compress_offload.c
10531 F:      sound/soc/soc-compress.c
10532
10533 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10534 M:      Liam Girdwood <lgirdwood@gmail.com>
10535 M:      Mark Brown <broonie@kernel.org>
10536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10538 W:      http://alsa-project.org/main/index.php/ASoC
10539 S:      Supported
10540 F:      Documentation/sound/alsa/soc/
10541 F:      sound/soc/
10542 F:      include/sound/soc*
10543
10544 SOUND - DMAENGINE HELPERS
10545 M:      Lars-Peter Clausen <lars@metafoo.de>
10546 S:      Supported
10547 F:      include/sound/dmaengine_pcm.h
10548 F:      sound/core/pcm_dmaengine.c
10549 F:      sound/soc/soc-generic-dmaengine-pcm.c
10550
10551 SP2 MEDIA DRIVER
10552 M:      Olli Salonen <olli.salonen@iki.fi>
10553 L:      linux-media@vger.kernel.org
10554 W:      https://linuxtv.org
10555 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10556 S:      Maintained
10557 F:      drivers/media/dvb-frontends/sp2*
10558
10559 SPARC + UltraSPARC (sparc/sparc64)
10560 M:      "David S. Miller" <davem@davemloft.net>
10561 L:      sparclinux@vger.kernel.org
10562 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10565 S:      Maintained
10566 F:      arch/sparc/
10567 F:      drivers/sbus/
10568
10569 SPARC SERIAL DRIVERS
10570 M:      "David S. Miller" <davem@davemloft.net>
10571 L:      sparclinux@vger.kernel.org
10572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10574 S:      Maintained
10575 F:      include/linux/sunserialcore.h
10576 F:      drivers/tty/serial/suncore.c
10577 F:      drivers/tty/serial/sunhv.c
10578 F:      drivers/tty/serial/sunsab.c
10579 F:      drivers/tty/serial/sunsab.h
10580 F:      drivers/tty/serial/sunsu.c
10581 F:      drivers/tty/serial/sunzilog.c
10582 F:      drivers/tty/serial/sunzilog.h
10583
10584 SPARSE CHECKER
10585 M:      "Christopher Li" <sparse@chrisli.org>
10586 L:      linux-sparse@vger.kernel.org
10587 W:      https://sparse.wiki.kernel.org/
10588 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10589 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10590 S:      Maintained
10591 F:      include/linux/compiler.h
10592
10593 SPEAR PLATFORM SUPPORT
10594 M:      Viresh Kumar <vireshk@kernel.org>
10595 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10596 L:      spear-devel@list.st.com
10597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10598 W:      http://www.st.com/spear
10599 S:      Maintained
10600 F:      arch/arm/boot/dts/spear*
10601 F:      arch/arm/mach-spear/
10602
10603 SPEAR CLOCK FRAMEWORK SUPPORT
10604 M:      Viresh Kumar <vireshk@kernel.org>
10605 L:      spear-devel@list.st.com
10606 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10607 W:      http://www.st.com/spear
10608 S:      Maintained
10609 F:      drivers/clk/spear/
10610
10611 SPI SUBSYSTEM
10612 M:      Mark Brown <broonie@kernel.org>
10613 L:      linux-spi@vger.kernel.org
10614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10615 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10616 S:      Maintained
10617 F:      Documentation/spi/
10618 F:      drivers/spi/
10619 F:      include/linux/spi/
10620 F:      include/uapi/linux/spi/
10621
10622 SPIDERNET NETWORK DRIVER for CELL
10623 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10624 L:      netdev@vger.kernel.org
10625 S:      Supported
10626 F:      Documentation/networking/spider_net.txt
10627 F:      drivers/net/ethernet/toshiba/spider_net*
10628
10629 SPU FILE SYSTEM
10630 M:      Jeremy Kerr <jk@ozlabs.org>
10631 L:      linuxppc-dev@lists.ozlabs.org
10632 W:      http://www.ibm.com/developerworks/power/cell/
10633 S:      Supported
10634 F:      Documentation/filesystems/spufs.txt
10635 F:      arch/powerpc/platforms/cell/spufs/
10636
10637 SQUASHFS FILE SYSTEM
10638 M:      Phillip Lougher <phillip@squashfs.org.uk>
10639 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10640 W:      http://squashfs.org.uk
10641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10642 S:      Maintained
10643 F:      Documentation/filesystems/squashfs.txt
10644 F:      fs/squashfs/
10645
10646 SRM (Alpha) environment access
10647 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10648 S:      Maintained
10649 F:      arch/alpha/kernel/srm_env.c
10650
10651 STABLE BRANCH
10652 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10653 L:      stable@vger.kernel.org
10654 S:      Supported
10655 F:      Documentation/stable_kernel_rules.txt
10656
10657 STAGING SUBSYSTEM
10658 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10660 L:      devel@driverdev.osuosl.org
10661 S:      Supported
10662 F:      drivers/staging/
10663
10664 STAGING - COMEDI
10665 M:      Ian Abbott <abbotti@mev.co.uk>
10666 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10667 S:      Odd Fixes
10668 F:      drivers/staging/comedi/
10669
10670 STAGING - FLARION FT1000 DRIVERS
10671 M:      Marek Belisko <marek.belisko@gmail.com>
10672 S:      Odd Fixes
10673 F:      drivers/staging/ft1000/
10674
10675 STAGING - INDUSTRIAL IO
10676 M:      Jonathan Cameron <jic23@kernel.org>
10677 L:      linux-iio@vger.kernel.org
10678 S:      Odd Fixes
10679 F:      drivers/staging/iio/
10680
10681 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10682 M:      Jarod Wilson <jarod@wilsonet.com>
10683 W:      http://www.lirc.org/
10684 S:      Odd Fixes
10685 F:      drivers/staging/media/lirc/
10686
10687 STAGING - LUSTRE PARALLEL FILESYSTEM
10688 M:      Oleg Drokin <oleg.drokin@intel.com>
10689 M:      Andreas Dilger <andreas.dilger@intel.com>
10690 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10691 W:      http://wiki.lustre.org/
10692 S:      Maintained
10693 F:      drivers/staging/lustre
10694
10695 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10696 M:      Marc Dietrich <marvin24@gmx.de>
10697 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10698 L:      linux-tegra@vger.kernel.org
10699 S:      Maintained
10700 F:      drivers/staging/nvec/
10701
10702 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10703 M:      Jens Frederich <jfrederich@gmail.com>
10704 M:      Daniel Drake <dsd@laptop.org>
10705 M:      Jon Nettleton <jon.nettleton@gmail.com>
10706 W:      http://wiki.laptop.org/go/DCON
10707 S:      Maintained
10708 F:      drivers/staging/olpc_dcon/
10709
10710 STAGING - REALTEK RTL8712U DRIVERS
10711 M:      Larry Finger <Larry.Finger@lwfinger.net>
10712 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10713 S:      Odd Fixes
10714 F:      drivers/staging/rtl8712/
10715
10716 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10717 M:      Larry Finger <Larry.Finger@lwfinger.net>
10718 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10719 L:      linux-wireless@vger.kernel.org
10720 S:      Maintained
10721 F:      drivers/staging/rtl8723au/
10722
10723 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10724 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10725 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10726 M:      Sudip Mukherjee <sudip@vectorindia.org>
10727 L:      linux-fbdev@vger.kernel.org
10728 S:      Maintained
10729 F:      drivers/staging/sm750fb/
10730
10731 STAGING - SLICOSS
10732 M:      Lior Dotan <liodot@gmail.com>
10733 M:      Christopher Harrer <charrer@alacritech.com>
10734 S:      Odd Fixes
10735 F:      drivers/staging/slicoss/
10736
10737 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10738 M:      William Hubbs <w.d.hubbs@gmail.com>
10739 M:      Chris Brannon <chris@the-brannons.com>
10740 M:      Kirk Reiser <kirk@reisers.ca>
10741 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10742 L:      speakup@linux-speakup.org
10743 W:      http://www.linux-speakup.org/
10744 S:      Odd Fixes
10745 F:      drivers/staging/speakup/
10746
10747 STAGING - VIA VT665X DRIVERS
10748 M:      Forest Bond <forest@alittletooquiet.net>
10749 S:      Odd Fixes
10750 F:      drivers/staging/vt665?/
10751
10752 STAGING - WILC1000 WIFI DRIVER
10753 M:      Johnny Kim <johnny.kim@atmel.com>
10754 M:      Austin Shin <austin.shin@atmel.com>
10755 M:      Chris Park <chris.park@atmel.com>
10756 M:      Tony Cho <tony.cho@atmel.com>
10757 M:      Glen Lee <glen.lee@atmel.com>
10758 M:      Leo Kim <leo.kim@atmel.com>
10759 L:      linux-wireless@vger.kernel.org
10760 S:      Supported
10761 F:      drivers/staging/wilc1000/
10762
10763 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10764 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10765 S:      Odd Fixes
10766 F:      drivers/staging/xgifb/
10767
10768 HFI1 DRIVER
10769 M:      Mike Marciniszyn <infinipath@intel.com>
10770 L:      linux-rdma@vger.kernel.org
10771 S:      Supported
10772 F:      drivers/staging/rdma/hfi1
10773
10774 STARFIRE/DURALAN NETWORK DRIVER
10775 M:      Ion Badulescu <ionut@badula.org>
10776 S:      Odd Fixes
10777 F:      drivers/net/ethernet/adaptec/starfire*
10778
10779 SUN3/3X
10780 M:      Sam Creasey <sammy@sammy.net>
10781 W:      http://sammy.net/sun3/
10782 S:      Maintained
10783 F:      arch/m68k/kernel/*sun3*
10784 F:      arch/m68k/sun3*/
10785 F:      arch/m68k/include/asm/sun3*
10786 F:      drivers/net/ethernet/i825xx/sun3*
10787
10788 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10789 M:      Hans de Goede <hdegoede@redhat.com>
10790 L:      linux-input@vger.kernel.org
10791 S:      Maintained
10792 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10793 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10794
10795 SUNDANCE NETWORK DRIVER
10796 M:      Denis Kirjanov <kda@linux-powerpc.org>
10797 L:      netdev@vger.kernel.org
10798 S:      Maintained
10799 F:      drivers/net/ethernet/dlink/sundance.c
10800
10801 SUPERH
10802 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10803 M:      Rich Felker <dalias@libc.org>
10804 L:      linux-sh@vger.kernel.org
10805 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10806 S:      Maintained
10807 F:      Documentation/sh/
10808 F:      arch/sh/
10809 F:      drivers/sh/
10810
10811 SUSPEND TO RAM
10812 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10813 M:      Len Brown <len.brown@intel.com>
10814 M:      Pavel Machek <pavel@ucw.cz>
10815 L:      linux-pm@vger.kernel.org
10816 S:      Supported
10817 F:      Documentation/power/
10818 F:      arch/x86/kernel/acpi/
10819 F:      drivers/base/power/
10820 F:      kernel/power/
10821 F:      include/linux/suspend.h
10822 F:      include/linux/freezer.h
10823 F:      include/linux/pm.h
10824
10825 SVGA HANDLING
10826 M:      Martin Mares <mj@ucw.cz>
10827 L:      linux-video@atrey.karlin.mff.cuni.cz
10828 S:      Maintained
10829 F:      Documentation/svga.txt
10830 F:      arch/x86/boot/video*
10831
10832 SWIOTLB SUBSYSTEM
10833 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10834 L:      linux-kernel@vger.kernel.org
10835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10836 S:      Supported
10837 F:      lib/swiotlb.c
10838 F:      arch/*/kernel/pci-swiotlb.c
10839 F:      include/linux/swiotlb.h
10840
10841 SWITCHDEV
10842 M:      Jiri Pirko <jiri@resnulli.us>
10843 L:      netdev@vger.kernel.org
10844 S:      Supported
10845 F:      net/switchdev/
10846 F:      include/net/switchdev.h
10847
10848 SYNOPSYS ARC ARCHITECTURE
10849 M:      Vineet Gupta <vgupta@synopsys.com>
10850 L:      linux-snps-arc@lists.infradead.org
10851 S:      Supported
10852 F:      arch/arc/
10853 F:      Documentation/devicetree/bindings/arc/*
10854 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10855 F:      drivers/tty/serial/arc_uart.c
10856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10857
10858 SYNOPSYS ARC SDP platform support
10859 M:      Alexey Brodkin <abrodkin@synopsys.com>
10860 S:      Supported
10861 F:      arch/arc/plat-axs10x
10862 F:      arch/arc/boot/dts/ax*
10863 F:      Documentation/devicetree/bindings/arc/axs10*
10864
10865 SYSTEM CONFIGURATION (SYSCON)
10866 M:      Lee Jones <lee.jones@linaro.org>
10867 M:      Arnd Bergmann <arnd@arndb.de>
10868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10869 S:      Supported
10870 F:      drivers/mfd/syscon.c
10871
10872 SYSV FILESYSTEM
10873 M:      Christoph Hellwig <hch@infradead.org>
10874 S:      Maintained
10875 F:      Documentation/filesystems/sysv-fs.txt
10876 F:      fs/sysv/
10877 F:      include/linux/sysv_fs.h
10878
10879 TARGET SUBSYSTEM
10880 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10881 L:      linux-scsi@vger.kernel.org
10882 L:      target-devel@vger.kernel.org
10883 W:      http://www.linux-iscsi.org
10884 W:      http://groups.google.com/group/linux-iscsi-target-dev
10885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10886 S:      Supported
10887 F:      drivers/target/
10888 F:      include/target/
10889 F:      Documentation/target/
10890
10891 TASKSTATS STATISTICS INTERFACE
10892 M:      Balbir Singh <bsingharora@gmail.com>
10893 S:      Maintained
10894 F:      Documentation/accounting/taskstats*
10895 F:      include/linux/taskstats*
10896 F:      kernel/taskstats.c
10897
10898 TC CLASSIFIER
10899 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10900 L:      netdev@vger.kernel.org
10901 S:      Maintained
10902 F:      include/net/pkt_cls.h
10903 F:      include/uapi/linux/pkt_cls.h
10904 F:      net/sched/
10905
10906 TCP LOW PRIORITY MODULE
10907 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10908 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10909 W:      http://tcp-lp-mod.sourceforge.net/
10910 S:      Maintained
10911 F:      net/ipv4/tcp_lp.c
10912
10913 TDA10071 MEDIA DRIVER
10914 M:      Antti Palosaari <crope@iki.fi>
10915 L:      linux-media@vger.kernel.org
10916 W:      https://linuxtv.org
10917 W:      http://palosaari.fi/linux/
10918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10919 T:      git git://linuxtv.org/anttip/media_tree.git
10920 S:      Maintained
10921 F:      drivers/media/dvb-frontends/tda10071*
10922
10923 TDA18212 MEDIA DRIVER
10924 M:      Antti Palosaari <crope@iki.fi>
10925 L:      linux-media@vger.kernel.org
10926 W:      https://linuxtv.org
10927 W:      http://palosaari.fi/linux/
10928 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10929 T:      git git://linuxtv.org/anttip/media_tree.git
10930 S:      Maintained
10931 F:      drivers/media/tuners/tda18212*
10932
10933 TDA18218 MEDIA DRIVER
10934 M:      Antti Palosaari <crope@iki.fi>
10935 L:      linux-media@vger.kernel.org
10936 W:      https://linuxtv.org
10937 W:      http://palosaari.fi/linux/
10938 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10939 T:      git git://linuxtv.org/anttip/media_tree.git
10940 S:      Maintained
10941 F:      drivers/media/tuners/tda18218*
10942
10943 TDA18271 MEDIA DRIVER
10944 M:      Michael Krufky <mkrufky@linuxtv.org>
10945 L:      linux-media@vger.kernel.org
10946 W:      https://linuxtv.org
10947 W:      http://github.com/mkrufky
10948 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10949 T:      git git://linuxtv.org/mkrufky/tuners.git
10950 S:      Maintained
10951 F:      drivers/media/tuners/tda18271*
10952
10953 TDA827x MEDIA DRIVER
10954 M:      Michael Krufky <mkrufky@linuxtv.org>
10955 L:      linux-media@vger.kernel.org
10956 W:      https://linuxtv.org
10957 W:      http://github.com/mkrufky
10958 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10959 T:      git git://linuxtv.org/mkrufky/tuners.git
10960 S:      Maintained
10961 F:      drivers/media/tuners/tda8290.*
10962
10963 TDA8290 MEDIA DRIVER
10964 M:      Michael Krufky <mkrufky@linuxtv.org>
10965 L:      linux-media@vger.kernel.org
10966 W:      https://linuxtv.org
10967 W:      http://github.com/mkrufky
10968 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10969 T:      git git://linuxtv.org/mkrufky/tuners.git
10970 S:      Maintained
10971 F:      drivers/media/tuners/tda8290.*
10972
10973 TDA9840 MEDIA DRIVER
10974 M:      Hans Verkuil <hverkuil@xs4all.nl>
10975 L:      linux-media@vger.kernel.org
10976 T:      git git://linuxtv.org/media_tree.git
10977 W:      https://linuxtv.org
10978 S:      Maintained
10979 F:      drivers/media/i2c/tda9840*
10980
10981 TEA5761 TUNER DRIVER
10982 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10983 L:      linux-media@vger.kernel.org
10984 W:      https://linuxtv.org
10985 T:      git git://linuxtv.org/media_tree.git
10986 S:      Odd fixes
10987 F:      drivers/media/tuners/tea5761.*
10988
10989 TEA5767 TUNER DRIVER
10990 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10991 L:      linux-media@vger.kernel.org
10992 W:      https://linuxtv.org
10993 T:      git git://linuxtv.org/media_tree.git
10994 S:      Maintained
10995 F:      drivers/media/tuners/tea5767.*
10996
10997 TEA6415C 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/tea6415c*
11004
11005 TEA6420 MEDIA DRIVER
11006 M:      Hans Verkuil <hverkuil@xs4all.nl>
11007 L:      linux-media@vger.kernel.org
11008 T:      git git://linuxtv.org/media_tree.git
11009 W:      https://linuxtv.org
11010 S:      Maintained
11011 F:      drivers/media/i2c/tea6420*
11012
11013 TEAM DRIVER
11014 M:      Jiri Pirko <jiri@resnulli.us>
11015 L:      netdev@vger.kernel.org
11016 S:      Supported
11017 F:      drivers/net/team/
11018 F:      include/linux/if_team.h
11019 F:      include/uapi/linux/if_team.h
11020
11021 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
11022 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
11023 S:      Maintained
11024 F:      arch/x86/platform/ts5500/
11025
11026 TECHNOTREND USB IR RECEIVER
11027 M:      Sean Young <sean@mess.org>
11028 L:      linux-media@vger.kernel.org
11029 S:      Maintained
11030 F:      drivers/media/rc/ttusbir.c
11031
11032 TEGRA ARCHITECTURE SUPPORT
11033 M:      Stephen Warren <swarren@wwwdotorg.org>
11034 M:      Thierry Reding <thierry.reding@gmail.com>
11035 M:      Alexandre Courbot <gnurou@gmail.com>
11036 L:      linux-tegra@vger.kernel.org
11037 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
11038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
11039 S:      Supported
11040 N:      [^a-z]tegra
11041
11042 TEGRA CLOCK DRIVER
11043 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
11044 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
11045 S:      Supported
11046 F:      drivers/clk/tegra/
11047
11048 TEGRA DMA DRIVERS
11049 M:      Laxman Dewangan <ldewangan@nvidia.com>
11050 M:      Jon Hunter <jonathanh@nvidia.com>
11051 S:      Supported
11052 F:      drivers/dma/tegra*
11053
11054 TEGRA I2C DRIVER
11055 M:      Laxman Dewangan <ldewangan@nvidia.com>
11056 S:      Supported
11057 F:      drivers/i2c/busses/i2c-tegra.c
11058
11059 TEGRA IOMMU DRIVERS
11060 M:      Hiroshi Doyu <hdoyu@nvidia.com>
11061 S:      Supported
11062 F:      drivers/iommu/tegra*
11063
11064 TEGRA KBC DRIVER
11065 M:      Rakesh Iyer <riyer@nvidia.com>
11066 M:      Laxman Dewangan <ldewangan@nvidia.com>
11067 S:      Supported
11068 F:      drivers/input/keyboard/tegra-kbc.c
11069
11070 TEGRA PWM DRIVER
11071 M:      Thierry Reding <thierry.reding@gmail.com>
11072 S:      Supported
11073 F:      drivers/pwm/pwm-tegra.c
11074
11075 TEGRA SERIAL DRIVER
11076 M:      Laxman Dewangan <ldewangan@nvidia.com>
11077 S:      Supported
11078 F:      drivers/tty/serial/serial-tegra.c
11079
11080 TEGRA SPI DRIVER
11081 M:      Laxman Dewangan <ldewangan@nvidia.com>
11082 S:      Supported
11083 F:      drivers/spi/spi-tegra*
11084
11085 TEHUTI ETHERNET DRIVER
11086 M:      Andy Gospodarek <andy@greyhouse.net>
11087 L:      netdev@vger.kernel.org
11088 S:      Supported
11089 F:      drivers/net/ethernet/tehuti/*
11090
11091 Telecom Clock Driver for MCPL0010
11092 M:      Mark Gross <mark.gross@intel.com>
11093 S:      Supported
11094 F:      drivers/char/tlclk.c
11095
11096 TENSILICA XTENSA PORT (xtensa)
11097 M:      Chris Zankel <chris@zankel.net>
11098 M:      Max Filippov <jcmvbkbc@gmail.com>
11099 L:      linux-xtensa@linux-xtensa.org
11100 T:      git git://github.com/czankel/xtensa-linux.git
11101 S:      Maintained
11102 F:      arch/xtensa/
11103 F:      drivers/irqchip/irq-xtensa-*
11104
11105 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
11106 M:      Hans Verkuil <hverkuil@xs4all.nl>
11107 L:      linux-media@vger.kernel.org
11108 T:      git git://linuxtv.org/media_tree.git
11109 W:      https://linuxtv.org
11110 S:      Maintained
11111 F:      drivers/media/radio/radio-raremono.c
11112
11113 THERMAL
11114 M:      Zhang Rui <rui.zhang@intel.com>
11115 M:      Eduardo Valentin <edubezval@gmail.com>
11116 L:      linux-pm@vger.kernel.org
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
11119 Q:      https://patchwork.kernel.org/project/linux-pm/list/
11120 S:      Supported
11121 F:      drivers/thermal/
11122 F:      include/linux/thermal.h
11123 F:      include/uapi/linux/thermal.h
11124 F:      include/linux/cpu_cooling.h
11125 F:      Documentation/devicetree/bindings/thermal/
11126
11127 THERMAL/CPU_COOLING
11128 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
11129 M:      Viresh Kumar <viresh.kumar@linaro.org>
11130 M:      Javi Merino <javi.merino@arm.com>
11131 L:      linux-pm@vger.kernel.org
11132 S:      Supported
11133 F:      Documentation/thermal/cpu-cooling-api.txt
11134 F:      drivers/thermal/cpu_cooling.c
11135 F:      include/linux/cpu_cooling.h
11136
11137 THINGM BLINK(1) USB RGB LED DRIVER
11138 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
11139 S:      Maintained
11140 F:      drivers/hid/hid-thingm.c
11141
11142 THINKPAD ACPI EXTRAS DRIVER
11143 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
11144 L:      ibm-acpi-devel@lists.sourceforge.net
11145 L:      platform-driver-x86@vger.kernel.org
11146 W:      http://ibm-acpi.sourceforge.net
11147 W:      http://thinkwiki.org/wiki/Ibm-acpi
11148 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
11149 S:      Maintained
11150 F:      drivers/platform/x86/thinkpad_acpi.c
11151
11152 TI BANDGAP AND THERMAL DRIVER
11153 M:      Eduardo Valentin <edubezval@gmail.com>
11154 L:      linux-pm@vger.kernel.org
11155 L:      linux-omap@vger.kernel.org
11156 S:      Maintained
11157 F:      drivers/thermal/ti-soc-thermal/
11158
11159 TI VPE/CAL DRIVERS
11160 M:      Benoit Parrot <bparrot@ti.com>
11161 L:      linux-media@vger.kernel.org
11162 W:      http://linuxtv.org/
11163 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11164 S:      Maintained
11165 F:      drivers/media/platform/ti-vpe/
11166
11167 TI CDCE706 CLOCK DRIVER
11168 M:      Max Filippov <jcmvbkbc@gmail.com>
11169 S:      Maintained
11170 F:      drivers/clk/clk-cdce706.c
11171
11172 TI CLOCK DRIVER
11173 M:      Tero Kristo <t-kristo@ti.com>
11174 L:      linux-omap@vger.kernel.org
11175 S:      Maintained
11176 F:      drivers/clk/ti/
11177 F:      include/linux/clk/ti.h
11178
11179 TI ETHERNET SWITCH DRIVER (CPSW)
11180 M:      Mugunthan V N <mugunthanvnm@ti.com>
11181 R:      Grygorii Strashko <grygorii.strashko@ti.com>
11182 L:      linux-omap@vger.kernel.org
11183 L:      netdev@vger.kernel.org
11184 S:      Maintained
11185 F:      drivers/net/ethernet/ti/cpsw*
11186 F:      drivers/net/ethernet/ti/davinci*
11187
11188 TI FLASH MEDIA INTERFACE DRIVER
11189 M:      Alex Dubov <oakad@yahoo.com>
11190 S:      Maintained
11191 F:      drivers/misc/tifm*
11192 F:      drivers/mmc/host/tifm_sd.c
11193 F:      include/linux/tifm.h
11194
11195 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
11196 M:      Santosh Shilimkar <ssantosh@kernel.org>
11197 L:      linux-kernel@vger.kernel.org
11198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11199 S:      Maintained
11200 F:      drivers/soc/ti/*
11201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
11202
11203
11204 TI LM49xxx FAMILY ASoC CODEC DRIVERS
11205 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
11206 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
11207 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11208 S:      Maintained
11209 F:      sound/soc/codecs/lm49453*
11210 F:      sound/soc/codecs/isabelle*
11211
11212 TI LP855x BACKLIGHT DRIVER
11213 M:      Milo Kim <milo.kim@ti.com>
11214 S:      Maintained
11215 F:      Documentation/backlight/lp855x-driver.txt
11216 F:      drivers/video/backlight/lp855x_bl.c
11217 F:      include/linux/platform_data/lp855x.h
11218
11219 TI LP8727 CHARGER DRIVER
11220 M:      Milo Kim <milo.kim@ti.com>
11221 S:      Maintained
11222 F:      drivers/power/lp8727_charger.c
11223 F:      include/linux/platform_data/lp8727.h
11224
11225 TI LP8788 MFD DRIVER
11226 M:      Milo Kim <milo.kim@ti.com>
11227 S:      Maintained
11228 F:      drivers/iio/adc/lp8788_adc.c
11229 F:      drivers/leds/leds-lp8788.c
11230 F:      drivers/mfd/lp8788*.c
11231 F:      drivers/power/lp8788-charger.c
11232 F:      drivers/regulator/lp8788-*.c
11233 F:      include/linux/mfd/lp8788*.h
11234
11235 TI NETCP ETHERNET DRIVER
11236 M:      Wingman Kwok <w-kwok2@ti.com>
11237 M:      Murali Karicheri <m-karicheri2@ti.com>
11238 L:      netdev@vger.kernel.org
11239 S:      Maintained
11240 F:      drivers/net/ethernet/ti/netcp*
11241
11242 TI TAS571X FAMILY ASoC CODEC DRIVER
11243 M:      Kevin Cernekee <cernekee@chromium.org>
11244 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11245 S:      Odd Fixes
11246 F:      sound/soc/codecs/tas571x*
11247
11248 TI TWL4030 SERIES SOC CODEC DRIVER
11249 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
11250 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11251 S:      Maintained
11252 F:      sound/soc/codecs/twl4030*
11253
11254 TI WILINK WIRELESS DRIVERS
11255 L:      linux-wireless@vger.kernel.org
11256 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
11257 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
11258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
11259 S:      Orphan
11260 F:      drivers/net/wireless/ti/
11261 F:      include/linux/wl12xx.h
11262
11263 TIPC NETWORK LAYER
11264 M:      Jon Maloy <jon.maloy@ericsson.com>
11265 M:      Ying Xue <ying.xue@windriver.com>
11266 L:      netdev@vger.kernel.org (core kernel code)
11267 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
11268 W:      http://tipc.sourceforge.net/
11269 S:      Maintained
11270 F:      include/uapi/linux/tipc*.h
11271 F:      net/tipc/
11272
11273 TILE ARCHITECTURE
11274 M:      Chris Metcalf <cmetcalf@mellanox.com>
11275 W:      http://www.mellanox.com/repository/solutions/tile-scm/
11276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
11277 S:      Supported
11278 F:      arch/tile/
11279 F:      drivers/char/tile-srom.c
11280 F:      drivers/edac/tile_edac.c
11281 F:      drivers/net/ethernet/tile/
11282 F:      drivers/rtc/rtc-tile.c
11283 F:      drivers/tty/hvc/hvc_tile.c
11284 F:      drivers/tty/serial/tilegx.c
11285 F:      drivers/usb/host/*-tilegx.c
11286 F:      include/linux/usb/tilegx.h
11287
11288 TLAN NETWORK DRIVER
11289 M:      Samuel Chessman <chessman@tux.org>
11290 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
11291 W:      http://sourceforge.net/projects/tlan/
11292 S:      Maintained
11293 F:      Documentation/networking/tlan.txt
11294 F:      drivers/net/ethernet/ti/tlan.*
11295
11296 TOMOYO SECURITY MODULE
11297 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
11298 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
11299 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
11300 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
11301 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
11302 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
11303 W:      http://tomoyo.sourceforge.jp/
11304 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
11305 S:      Maintained
11306 F:      security/tomoyo/
11307
11308 TOPSTAR LAPTOP EXTRAS DRIVER
11309 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11310 L:      platform-driver-x86@vger.kernel.org
11311 S:      Maintained
11312 F:      drivers/platform/x86/topstar-laptop.c
11313
11314 TOSHIBA ACPI EXTRAS DRIVER
11315 M:      Azael Avalos <coproscefalo@gmail.com>
11316 L:      platform-driver-x86@vger.kernel.org
11317 S:      Maintained
11318 F:      drivers/platform/x86/toshiba_acpi.c
11319
11320 TOSHIBA BLUETOOTH DRIVER
11321 M:      Azael Avalos <coproscefalo@gmail.com>
11322 L:      platform-driver-x86@vger.kernel.org
11323 S:      Maintained
11324 F:      drivers/platform/x86/toshiba_bluetooth.c
11325
11326 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11327 M:      Azael Avalos <coproscefalo@gmail.com>
11328 L:      platform-driver-x86@vger.kernel.org
11329 S:      Maintained
11330 F:      drivers/platform/x86/toshiba_haps.c
11331
11332 TOSHIBA WMI HOTKEYS DRIVER
11333 M:      Azael Avalos <coproscefalo@gmail.com>
11334 L:      platform-driver-x86@vger.kernel.org
11335 S:      Maintained
11336 F:      drivers/platform/x86/toshiba-wmi.c
11337
11338 TOSHIBA SMM DRIVER
11339 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11340 W:      http://www.buzzard.org.uk/toshiba/
11341 S:      Maintained
11342 F:      drivers/char/toshiba.c
11343 F:      include/linux/toshiba.h
11344 F:      include/uapi/linux/toshiba.h
11345
11346 TOSHIBA TC358743 DRIVER
11347 M:      Mats Randgaard <matrandg@cisco.com>
11348 L:      linux-media@vger.kernel.org
11349 S:      Maintained
11350 F:      drivers/media/i2c/tc358743*
11351 F:      include/media/i2c/tc358743.h
11352
11353 TMIO/SDHI MMC DRIVER
11354 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
11355 L:      linux-mmc@vger.kernel.org
11356 S:      Supported
11357 F:      drivers/mmc/host/tmio_mmc*
11358 F:      drivers/mmc/host/sh_mobile_sdhi.c
11359 F:      include/linux/mfd/tmio.h
11360
11361 TMP401 HARDWARE MONITOR DRIVER
11362 M:      Guenter Roeck <linux@roeck-us.net>
11363 L:      linux-hwmon@vger.kernel.org
11364 S:      Maintained
11365 F:      Documentation/hwmon/tmp401
11366 F:      drivers/hwmon/tmp401.c
11367
11368 TMPFS (SHMEM FILESYSTEM)
11369 M:      Hugh Dickins <hughd@google.com>
11370 L:      linux-mm@kvack.org
11371 S:      Maintained
11372 F:      include/linux/shmem_fs.h
11373 F:      mm/shmem.c
11374
11375 TM6000 VIDEO4LINUX DRIVER
11376 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11377 L:      linux-media@vger.kernel.org
11378 W:      https://linuxtv.org
11379 T:      git git://linuxtv.org/media_tree.git
11380 S:      Odd fixes
11381 F:      drivers/media/usb/tm6000/
11382
11383 TW68 VIDEO4LINUX DRIVER
11384 M:      Hans Verkuil <hverkuil@xs4all.nl>
11385 L:      linux-media@vger.kernel.org
11386 T:      git git://linuxtv.org/media_tree.git
11387 W:      https://linuxtv.org
11388 S:      Odd Fixes
11389 F:      drivers/media/pci/tw68/
11390
11391 TW686X VIDEO4LINUX DRIVER
11392 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
11393 L:      linux-media@vger.kernel.org
11394 T:      git git://linuxtv.org/media_tree.git
11395 W:      http://linuxtv.org
11396 S:      Maintained
11397 F:      drivers/media/pci/tw686x/
11398
11399 TPM DEVICE DRIVER
11400 M:      Peter Huewe <peterhuewe@gmx.de>
11401 M:      Marcel Selhorst <tpmdd@selhorst.net>
11402 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11403 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11404 W:      http://tpmdd.sourceforge.net
11405 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11406 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
11407 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
11408 S:      Maintained
11409 F:      drivers/char/tpm/
11410
11411 TPM IBM_VTPM DEVICE DRIVER
11412 M:      Ashley Lai <ashleydlai@gmail.com>
11413 W:      http://tpmdd.sourceforge.net
11414 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11415 S:      Maintained
11416 F:      drivers/char/tpm/tpm_ibmvtpm*
11417
11418 TRACING
11419 M:      Steven Rostedt <rostedt@goodmis.org>
11420 M:      Ingo Molnar <mingo@redhat.com>
11421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11422 S:      Maintained
11423 F:      Documentation/trace/ftrace.txt
11424 F:      arch/*/*/*/ftrace.h
11425 F:      arch/*/kernel/ftrace.c
11426 F:      include/*/ftrace.h
11427 F:      include/linux/trace*.h
11428 F:      include/trace/
11429 F:      kernel/trace/
11430 F:      tools/testing/selftests/ftrace/
11431
11432 TRACING MMIO ACCESSES (MMIOTRACE)
11433 M:      Steven Rostedt <rostedt@goodmis.org>
11434 M:      Ingo Molnar <mingo@kernel.org>
11435 R:      Karol Herbst <karolherbst@gmail.com>
11436 R:      Pekka Paalanen <ppaalanen@gmail.com>
11437 S:      Maintained
11438 L:      linux-kernel@vger.kernel.org
11439 L:      nouveau@lists.freedesktop.org
11440 F:      kernel/trace/trace_mmiotrace.c
11441 F:      include/linux/mmiotrace.h
11442 F:      arch/x86/mm/kmmio.c
11443 F:      arch/x86/mm/mmio-mod.c
11444 F:      arch/x86/mm/testmmiotrace.c
11445
11446 TRIVIAL PATCHES
11447 M:      Jiri Kosina <trivial@kernel.org>
11448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11449 S:      Maintained
11450 K:      ^Subject:.*(?i)trivial
11451
11452 TTY LAYER
11453 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11454 M:      Jiri Slaby <jslaby@suse.com>
11455 S:      Supported
11456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11457 F:      Documentation/serial/
11458 F:      drivers/tty/
11459 F:      drivers/tty/serial/serial_core.c
11460 F:      include/linux/serial_core.h
11461 F:      include/linux/serial.h
11462 F:      include/linux/tty.h
11463 F:      include/uapi/linux/serial_core.h
11464 F:      include/uapi/linux/serial.h
11465 F:      include/uapi/linux/tty.h
11466
11467 TUA9001 MEDIA DRIVER
11468 M:      Antti Palosaari <crope@iki.fi>
11469 L:      linux-media@vger.kernel.org
11470 W:      https://linuxtv.org
11471 W:      http://palosaari.fi/linux/
11472 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11473 T:      git git://linuxtv.org/anttip/media_tree.git
11474 S:      Maintained
11475 F:      drivers/media/tuners/tua9001*
11476
11477 TULIP NETWORK DRIVERS
11478 L:      netdev@vger.kernel.org
11479 L:      linux-parisc@vger.kernel.org
11480 S:      Orphan
11481 F:      drivers/net/ethernet/dec/tulip/
11482
11483 TUN/TAP driver
11484 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11485 W:      http://vtun.sourceforge.net/tun
11486 S:      Maintained
11487 F:      Documentation/networking/tuntap.txt
11488 F:      arch/um/os-Linux/drivers/
11489
11490 TURBOCHANNEL SUBSYSTEM
11491 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11492 M:      Ralf Baechle <ralf@linux-mips.org>
11493 L:      linux-mips@linux-mips.org
11494 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11495 S:      Maintained
11496 F:      drivers/tc/
11497 F:      include/linux/tc.h
11498
11499 U14-34F SCSI DRIVER
11500 M:      Dario Ballabio <ballabio_dario@emc.com>
11501 L:      linux-scsi@vger.kernel.org
11502 S:      Maintained
11503 F:      drivers/scsi/u14-34f.c
11504
11505 UBI FILE SYSTEM (UBIFS)
11506 M:      Richard Weinberger <richard@nod.at>
11507 M:      Artem Bityutskiy <dedekind1@gmail.com>
11508 M:      Adrian Hunter <adrian.hunter@intel.com>
11509 L:      linux-mtd@lists.infradead.org
11510 T:      git git://git.infradead.org/ubifs-2.6.git
11511 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11512 S:      Supported
11513 F:      Documentation/filesystems/ubifs.txt
11514 F:      fs/ubifs/
11515
11516 UCLINUX (M68KNOMMU AND COLDFIRE)
11517 M:      Greg Ungerer <gerg@uclinux.org>
11518 W:      http://www.uclinux.org/
11519 L:      linux-m68k@lists.linux-m68k.org
11520 L:      uclinux-dev@uclinux.org  (subscribers-only)
11521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11522 S:      Maintained
11523 F:      arch/m68k/coldfire/
11524 F:      arch/m68k/68*/
11525 F:      arch/m68k/*/*_no.*
11526 F:      arch/m68k/include/asm/*_no.*
11527
11528 UDF FILESYSTEM
11529 M:      Jan Kara <jack@suse.com>
11530 S:      Maintained
11531 F:      Documentation/filesystems/udf.txt
11532 F:      fs/udf/
11533
11534 UFS FILESYSTEM
11535 M:      Evgeniy Dushistov <dushistov@mail.ru>
11536 S:      Maintained
11537 F:      Documentation/filesystems/ufs.txt
11538 F:      fs/ufs/
11539
11540 UHID USERSPACE HID IO DRIVER:
11541 M:      David Herrmann <dh.herrmann@googlemail.com>
11542 L:      linux-input@vger.kernel.org
11543 S:      Maintained
11544 F:      drivers/hid/uhid.c
11545 F:      include/uapi/linux/uhid.h
11546
11547 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11548 L:      linux-usb@vger.kernel.org
11549 S:      Orphan
11550 F:      drivers/uwb/
11551 F:      include/linux/uwb.h
11552 F:      include/linux/uwb/
11553
11554 UNICORE32 ARCHITECTURE:
11555 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11556 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11557 S:      Maintained
11558 T:      git git://github.com/gxt/linux.git
11559 F:      arch/unicore32/
11560
11561 UNIFDEF
11562 M:      Tony Finch <dot@dotat.at>
11563 W:      http://dotat.at/prog/unifdef
11564 S:      Maintained
11565 F:      scripts/unifdef.c
11566
11567 UNIFORM CDROM DRIVER
11568 M:      Jens Axboe <axboe@kernel.dk>
11569 W:      http://www.kernel.dk
11570 S:      Maintained
11571 F:      Documentation/cdrom/
11572 F:      drivers/cdrom/cdrom.c
11573 F:      include/linux/cdrom.h
11574 F:      include/uapi/linux/cdrom.h
11575
11576 UNISYS S-PAR DRIVERS
11577 M:      David Kershner <david.kershner@unisys.com>
11578 L:      sparmaintainer@unisys.com (Unisys internal)
11579 S:      Supported
11580 F:      drivers/staging/unisys/
11581
11582 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11583 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11584 L:      linux-scsi@vger.kernel.org
11585 S:      Supported
11586 F:      Documentation/scsi/ufs.txt
11587 F:      drivers/scsi/ufs/
11588
11589 UNSORTED BLOCK IMAGES (UBI)
11590 M:      Artem Bityutskiy <dedekind1@gmail.com>
11591 M:      Richard Weinberger <richard@nod.at>
11592 W:      http://www.linux-mtd.infradead.org/
11593 L:      linux-mtd@lists.infradead.org
11594 T:      git git://git.infradead.org/ubifs-2.6.git
11595 S:      Supported
11596 F:      drivers/mtd/ubi/
11597 F:      include/linux/mtd/ubi.h
11598 F:      include/uapi/mtd/ubi-user.h
11599
11600 USB ACM DRIVER
11601 M:      Oliver Neukum <oneukum@suse.com>
11602 L:      linux-usb@vger.kernel.org
11603 S:      Maintained
11604 F:      Documentation/usb/acm.txt
11605 F:      drivers/usb/class/cdc-acm.*
11606
11607 USB AR5523 WIRELESS DRIVER
11608 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11609 L:      linux-wireless@vger.kernel.org
11610 S:      Maintained
11611 F:      drivers/net/wireless/ath/ar5523/
11612
11613 USB ATTACHED SCSI
11614 M:      Hans de Goede <hdegoede@redhat.com>
11615 M:      Gerd Hoffmann <kraxel@redhat.com>
11616 L:      linux-usb@vger.kernel.org
11617 L:      linux-scsi@vger.kernel.org
11618 S:      Maintained
11619 F:      drivers/usb/storage/uas.c
11620
11621 USB CDC ETHERNET DRIVER
11622 M:      Oliver Neukum <oliver@neukum.org>
11623 L:      linux-usb@vger.kernel.org
11624 S:      Maintained
11625 F:      drivers/net/usb/cdc_*.c
11626 F:      include/uapi/linux/usb/cdc.h
11627
11628 USB CHAOSKEY DRIVER
11629 M:      Keith Packard <keithp@keithp.com>
11630 L:      linux-usb@vger.kernel.org
11631 S:      Maintained
11632 F:      drivers/usb/misc/chaoskey.c
11633
11634 USB CYPRESS C67X00 DRIVER
11635 M:      Peter Korsgaard <jacmet@sunsite.dk>
11636 L:      linux-usb@vger.kernel.org
11637 S:      Maintained
11638 F:      drivers/usb/c67x00/
11639
11640 USB DAVICOM DM9601 DRIVER
11641 M:      Peter Korsgaard <jacmet@sunsite.dk>
11642 L:      netdev@vger.kernel.org
11643 W:      http://www.linux-usb.org/usbnet
11644 S:      Maintained
11645 F:      drivers/net/usb/dm9601.c
11646
11647 USB DIAMOND RIO500 DRIVER
11648 M:      Cesar Miquel <miquel@df.uba.ar>
11649 L:      rio500-users@lists.sourceforge.net
11650 W:      http://rio500.sourceforge.net
11651 S:      Maintained
11652 F:      drivers/usb/misc/rio500*
11653
11654 USB EHCI DRIVER
11655 M:      Alan Stern <stern@rowland.harvard.edu>
11656 L:      linux-usb@vger.kernel.org
11657 S:      Maintained
11658 F:      Documentation/usb/ehci.txt
11659 F:      drivers/usb/host/ehci*
11660
11661 USB GADGET/PERIPHERAL SUBSYSTEM
11662 M:      Felipe Balbi <balbi@kernel.org>
11663 L:      linux-usb@vger.kernel.org
11664 W:      http://www.linux-usb.org/gadget
11665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11666 S:      Maintained
11667 F:      drivers/usb/gadget/
11668 F:      include/linux/usb/gadget*
11669
11670 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11671 M:      Jiri Kosina <jikos@kernel.org>
11672 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11673 L:      linux-usb@vger.kernel.org
11674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11675 S:      Maintained
11676 F:      Documentation/hid/hiddev.txt
11677 F:      drivers/hid/usbhid/
11678
11679 USB ISP116X DRIVER
11680 M:      Olav Kongas <ok@artecdesign.ee>
11681 L:      linux-usb@vger.kernel.org
11682 S:      Maintained
11683 F:      drivers/usb/host/isp116x*
11684 F:      include/linux/usb/isp116x.h
11685
11686 USB LAN78XX ETHERNET DRIVER
11687 M:      Woojung Huh <woojung.huh@microchip.com>
11688 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
11689 L:      netdev@vger.kernel.org
11690 S:      Maintained
11691 F:      drivers/net/usb/lan78xx.*
11692
11693 USB MASS STORAGE DRIVER
11694 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11695 L:      linux-usb@vger.kernel.org
11696 L:      usb-storage@lists.one-eyed-alien.net
11697 S:      Maintained
11698 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11699 F:      drivers/usb/storage/
11700
11701 USB MIDI DRIVER
11702 M:      Clemens Ladisch <clemens@ladisch.de>
11703 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11704 T:      git git://git.alsa-project.org/alsa-kernel.git
11705 S:      Maintained
11706 F:      sound/usb/midi.*
11707
11708 USB NETWORKING DRIVERS
11709 L:      linux-usb@vger.kernel.org
11710 S:      Odd Fixes
11711 F:      drivers/net/usb/
11712
11713 USB OHCI DRIVER
11714 M:      Alan Stern <stern@rowland.harvard.edu>
11715 L:      linux-usb@vger.kernel.org
11716 S:      Maintained
11717 F:      Documentation/usb/ohci.txt
11718 F:      drivers/usb/host/ohci*
11719
11720 USB OTG FSM (Finite State Machine)
11721 M:      Peter Chen <Peter.Chen@nxp.com>
11722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11723 L:      linux-usb@vger.kernel.org
11724 S:      Maintained
11725 F:      drivers/usb/common/usb-otg-fsm.c
11726
11727 USB OVER IP DRIVER
11728 M:      Valentina Manea <valentina.manea.m@gmail.com>
11729 M:      Shuah Khan <shuah.kh@samsung.com>
11730 L:      linux-usb@vger.kernel.org
11731 S:      Maintained
11732 F:      Documentation/usb/usbip_protocol.txt
11733 F:      drivers/usb/usbip/
11734 F:      tools/usb/usbip/
11735
11736 USB PEGASUS DRIVER
11737 M:      Petko Manolov <petkan@nucleusys.com>
11738 L:      linux-usb@vger.kernel.org
11739 L:      netdev@vger.kernel.org
11740 T:      git git://github.com/petkan/pegasus.git
11741 W:      https://github.com/petkan/pegasus
11742 S:      Maintained
11743 F:      drivers/net/usb/pegasus.*
11744
11745 USB PHY LAYER
11746 M:      Felipe Balbi <balbi@kernel.org>
11747 L:      linux-usb@vger.kernel.org
11748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11749 S:      Maintained
11750 F:      drivers/usb/phy/
11751
11752 USB PRINTER DRIVER (usblp)
11753 M:      Pete Zaitcev <zaitcev@redhat.com>
11754 L:      linux-usb@vger.kernel.org
11755 S:      Supported
11756 F:      drivers/usb/class/usblp.c
11757
11758 USB QMI WWAN NETWORK DRIVER
11759 M:      Bjørn Mork <bjorn@mork.no>
11760 L:      netdev@vger.kernel.org
11761 S:      Maintained
11762 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11763 F:      drivers/net/usb/qmi_wwan.c
11764
11765 USB RTL8150 DRIVER
11766 M:      Petko Manolov <petkan@nucleusys.com>
11767 L:      linux-usb@vger.kernel.org
11768 L:      netdev@vger.kernel.org
11769 T:      git git://github.com/petkan/rtl8150.git
11770 W:      https://github.com/petkan/rtl8150
11771 S:      Maintained
11772 F:      drivers/net/usb/rtl8150.c
11773
11774 USB SERIAL SUBSYSTEM
11775 M:      Johan Hovold <johan@kernel.org>
11776 L:      linux-usb@vger.kernel.org
11777 S:      Maintained
11778 F:      Documentation/usb/usb-serial.txt
11779 F:      drivers/usb/serial/
11780 F:      include/linux/usb/serial.h
11781
11782 USB SMSC75XX ETHERNET DRIVER
11783 M:      Steve Glendinning <steve.glendinning@shawell.net>
11784 L:      netdev@vger.kernel.org
11785 S:      Maintained
11786 F:      drivers/net/usb/smsc75xx.*
11787
11788 USB SMSC95XX ETHERNET DRIVER
11789 M:      Steve Glendinning <steve.glendinning@shawell.net>
11790 L:      netdev@vger.kernel.org
11791 S:      Maintained
11792 F:      drivers/net/usb/smsc95xx.*
11793
11794 USB SUBSYSTEM
11795 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11796 L:      linux-usb@vger.kernel.org
11797 W:      http://www.linux-usb.org
11798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11799 S:      Supported
11800 F:      Documentation/usb/
11801 F:      drivers/usb/
11802 F:      include/linux/usb.h
11803 F:      include/linux/usb/
11804
11805 USB UHCI DRIVER
11806 M:      Alan Stern <stern@rowland.harvard.edu>
11807 L:      linux-usb@vger.kernel.org
11808 S:      Maintained
11809 F:      drivers/usb/host/uhci*
11810
11811 USB "USBNET" DRIVER FRAMEWORK
11812 M:      Oliver Neukum <oneukum@suse.com>
11813 L:      netdev@vger.kernel.org
11814 W:      http://www.linux-usb.org/usbnet
11815 S:      Maintained
11816 F:      drivers/net/usb/usbnet.c
11817 F:      include/linux/usb/usbnet.h
11818
11819 USB VIDEO CLASS
11820 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11821 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11822 L:      linux-media@vger.kernel.org
11823 T:      git git://linuxtv.org/media_tree.git
11824 W:      http://www.ideasonboard.org/uvc/
11825 S:      Maintained
11826 F:      drivers/media/usb/uvc/
11827 F:      include/uapi/linux/uvcvideo.h
11828
11829 USB VISION DRIVER
11830 M:      Hans Verkuil <hverkuil@xs4all.nl>
11831 L:      linux-media@vger.kernel.org
11832 T:      git git://linuxtv.org/media_tree.git
11833 W:      https://linuxtv.org
11834 S:      Odd Fixes
11835 F:      drivers/media/usb/usbvision/
11836
11837 USB WEBCAM GADGET
11838 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11839 L:      linux-usb@vger.kernel.org
11840 S:      Maintained
11841 F:      drivers/usb/gadget/function/*uvc*
11842 F:      drivers/usb/gadget/legacy/webcam.c
11843
11844 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11845 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11846 L:      linux-wireless@vger.kernel.org
11847 S:      Maintained
11848 F:      drivers/net/wireless/rndis_wlan.c
11849
11850 USB XHCI DRIVER
11851 M:      Mathias Nyman <mathias.nyman@intel.com>
11852 L:      linux-usb@vger.kernel.org
11853 S:      Supported
11854 F:      drivers/usb/host/xhci*
11855 F:      drivers/usb/host/pci-quirks*
11856
11857 USB ZD1201 DRIVER
11858 L:      linux-wireless@vger.kernel.org
11859 W:      http://linux-lc100020.sourceforge.net
11860 S:      Orphan
11861 F:      drivers/net/wireless/zydas/zd1201.*
11862
11863 USB ZR364XX DRIVER
11864 M:      Antoine Jacquet <royale@zerezo.com>
11865 L:      linux-usb@vger.kernel.org
11866 L:      linux-media@vger.kernel.org
11867 T:      git git://linuxtv.org/media_tree.git
11868 W:      http://royale.zerezo.com/zr364xx/
11869 S:      Maintained
11870 F:      Documentation/video4linux/zr364xx.txt
11871 F:      drivers/media/usb/zr364xx/
11872
11873 ULPI BUS
11874 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11875 L:      linux-usb@vger.kernel.org
11876 S:      Maintained
11877 F:      drivers/usb/common/ulpi.c
11878 F:      include/linux/ulpi/
11879
11880 USER-MODE LINUX (UML)
11881 M:      Jeff Dike <jdike@addtoit.com>
11882 M:      Richard Weinberger <richard@nod.at>
11883 L:      user-mode-linux-devel@lists.sourceforge.net
11884 L:      user-mode-linux-user@lists.sourceforge.net
11885 W:      http://user-mode-linux.sourceforge.net
11886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11887 S:      Maintained
11888 F:      Documentation/virtual/uml/
11889 F:      arch/um/
11890 F:      arch/x86/um/
11891 F:      fs/hostfs/
11892 F:      fs/hppfs/
11893
11894 USERSPACE I/O (UIO)
11895 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11896 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11897 S:      Maintained
11898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11899 F:      Documentation/DocBook/uio-howto.tmpl
11900 F:      drivers/uio/
11901 F:      include/linux/uio*.h
11902
11903 UTIL-LINUX PACKAGE
11904 M:      Karel Zak <kzak@redhat.com>
11905 L:      util-linux@vger.kernel.org
11906 W:      http://en.wikipedia.org/wiki/Util-linux
11907 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11908 S:      Maintained
11909
11910 UVESAFB DRIVER
11911 M:      Michal Januszewski <spock@gentoo.org>
11912 L:      linux-fbdev@vger.kernel.org
11913 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11914 S:      Maintained
11915 F:      Documentation/fb/uvesafb.txt
11916 F:      drivers/video/fbdev/uvesafb.*
11917
11918 VF610 NAND DRIVER
11919 M:      Stefan Agner <stefan@agner.ch>
11920 L:      linux-mtd@lists.infradead.org
11921 S:      Supported
11922 F:      drivers/mtd/nand/vf610_nfc.c
11923
11924 VFAT/FAT/MSDOS FILESYSTEM
11925 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11926 S:      Maintained
11927 F:      Documentation/filesystems/vfat.txt
11928 F:      fs/fat/
11929
11930 VFIO DRIVER
11931 M:      Alex Williamson <alex.williamson@redhat.com>
11932 L:      kvm@vger.kernel.org
11933 T:      git git://github.com/awilliam/linux-vfio.git
11934 S:      Maintained
11935 F:      Documentation/vfio.txt
11936 F:      drivers/vfio/
11937 F:      include/linux/vfio.h
11938 F:      include/uapi/linux/vfio.h
11939
11940 VFIO PLATFORM DRIVER
11941 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11942 L:      kvm@vger.kernel.org
11943 S:      Maintained
11944 F:      drivers/vfio/platform/
11945
11946 VIDEOBUF2 FRAMEWORK
11947 M:      Pawel Osciak <pawel@osciak.com>
11948 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11949 M:      Kyungmin Park <kyungmin.park@samsung.com>
11950 L:      linux-media@vger.kernel.org
11951 S:      Maintained
11952 F:      drivers/media/v4l2-core/videobuf2-*
11953 F:      include/media/videobuf2-*
11954
11955 VIRTUAL SERIO DEVICE DRIVER
11956 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11957 S:      Maintained
11958 F:      drivers/input/serio/userio.c
11959 F:      include/uapi/linux/userio.h
11960
11961 VIRTIO CONSOLE DRIVER
11962 M:      Amit Shah <amit.shah@redhat.com>
11963 L:      virtualization@lists.linux-foundation.org
11964 S:      Maintained
11965 F:      drivers/char/virtio_console.c
11966 F:      include/linux/virtio_console.h
11967 F:      include/uapi/linux/virtio_console.h
11968
11969 VIRTIO CORE, NET AND BLOCK DRIVERS
11970 M:      "Michael S. Tsirkin" <mst@redhat.com>
11971 L:      virtualization@lists.linux-foundation.org
11972 S:      Maintained
11973 F:      drivers/virtio/
11974 F:      tools/virtio/
11975 F:      drivers/net/virtio_net.c
11976 F:      drivers/block/virtio_blk.c
11977 F:      include/linux/virtio_*.h
11978 F:      include/uapi/linux/virtio_*.h
11979
11980 VIRTIO DRIVERS FOR S390
11981 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11982 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11983 L:      linux-s390@vger.kernel.org
11984 L:      virtualization@lists.linux-foundation.org
11985 L:      kvm@vger.kernel.org
11986 S:      Supported
11987 F:      drivers/s390/virtio/
11988
11989 VIRTIO GPU DRIVER
11990 M:      David Airlie <airlied@linux.ie>
11991 M:      Gerd Hoffmann <kraxel@redhat.com>
11992 L:      dri-devel@lists.freedesktop.org
11993 L:      virtualization@lists.linux-foundation.org
11994 S:      Maintained
11995 F:      drivers/gpu/drm/virtio/
11996 F:      include/uapi/linux/virtio_gpu.h
11997
11998 VIRTIO HOST (VHOST)
11999 M:      "Michael S. Tsirkin" <mst@redhat.com>
12000 L:      kvm@vger.kernel.org
12001 L:      virtualization@lists.linux-foundation.org
12002 L:      netdev@vger.kernel.org
12003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
12004 S:      Maintained
12005 F:      drivers/vhost/
12006 F:      include/uapi/linux/vhost.h
12007
12008 VIRTIO INPUT DRIVER
12009 M:      Gerd Hoffmann <kraxel@redhat.com>
12010 S:      Maintained
12011 F:      drivers/virtio/virtio_input.c
12012 F:      include/uapi/linux/virtio_input.h
12013
12014 VIA RHINE NETWORK DRIVER
12015 S:      Orphan
12016 F:      drivers/net/ethernet/via/via-rhine.c
12017
12018 VIA SD/MMC CARD CONTROLLER DRIVER
12019 M:      Bruce Chang <brucechang@via.com.tw>
12020 M:      Harald Welte <HaraldWelte@viatech.com>
12021 S:      Maintained
12022 F:      drivers/mmc/host/via-sdmmc.c
12023
12024 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
12025 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
12026 L:      linux-fbdev@vger.kernel.org
12027 S:      Maintained
12028 F:      include/linux/via-core.h
12029 F:      include/linux/via-gpio.h
12030 F:      include/linux/via_i2c.h
12031 F:      drivers/video/fbdev/via/
12032
12033 VIA VELOCITY NETWORK DRIVER
12034 M:      Francois Romieu <romieu@fr.zoreil.com>
12035 L:      netdev@vger.kernel.org
12036 S:      Maintained
12037 F:      drivers/net/ethernet/via/via-velocity.*
12038
12039 VIRT LIB
12040 M:      Alex Williamson <alex.williamson@redhat.com>
12041 M:      Paolo Bonzini <pbonzini@redhat.com>
12042 L:      kvm@vger.kernel.org
12043 S:      Supported
12044 F:      virt/lib/
12045
12046 VIVID VIRTUAL VIDEO DRIVER
12047 M:      Hans Verkuil <hverkuil@xs4all.nl>
12048 L:      linux-media@vger.kernel.org
12049 T:      git git://linuxtv.org/media_tree.git
12050 W:      https://linuxtv.org
12051 S:      Maintained
12052 F:      drivers/media/platform/vivid/*
12053
12054 VLAN (802.1Q)
12055 M:      Patrick McHardy <kaber@trash.net>
12056 L:      netdev@vger.kernel.org
12057 S:      Maintained
12058 F:      drivers/net/macvlan.c
12059 F:      include/linux/if_*vlan.h
12060 F:      net/8021q/
12061
12062 VLYNQ BUS
12063 M:      Florian Fainelli <florian@openwrt.org>
12064 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
12065 S:      Maintained
12066 F:      drivers/vlynq/vlynq.c
12067 F:      include/linux/vlynq.h
12068
12069 VME SUBSYSTEM
12070 M:      Martyn Welch <martyn@welchs.me.uk>
12071 M:      Manohar Vanga <manohar.vanga@gmail.com>
12072 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
12073 L:      devel@driverdev.osuosl.org
12074 S:      Maintained
12075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
12076 F:      Documentation/vme_api.txt
12077 F:      drivers/staging/vme/
12078 F:      drivers/vme/
12079 F:      include/linux/vme*
12080
12081 VMWARE HYPERVISOR INTERFACE
12082 M:      Alok Kataria <akataria@vmware.com>
12083 L:      virtualization@lists.linux-foundation.org
12084 S:      Supported
12085 F:      arch/x86/kernel/cpu/vmware.c
12086
12087 VMWARE BALLOON DRIVER
12088 M:      Xavier Deguillard <xdeguillard@vmware.com>
12089 M:      Philip Moltmann <moltmann@vmware.com>
12090 M:      "VMware, Inc." <pv-drivers@vmware.com>
12091 L:      linux-kernel@vger.kernel.org
12092 S:      Maintained
12093 F:      drivers/misc/vmw_balloon.c
12094
12095 VMWARE VMMOUSE SUBDRIVER
12096 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
12097 M:      "VMware, Inc." <pv-drivers@vmware.com>
12098 L:      linux-input@vger.kernel.org
12099 S:      Maintained
12100 F:      drivers/input/mouse/vmmouse.c
12101 F:      drivers/input/mouse/vmmouse.h
12102
12103 VMWARE VMXNET3 ETHERNET DRIVER
12104 M:      Shrikrishna Khare <skhare@vmware.com>
12105 M:      "VMware, Inc." <pv-drivers@vmware.com>
12106 L:      netdev@vger.kernel.org
12107 S:      Maintained
12108 F:      drivers/net/vmxnet3/
12109
12110 VMware PVSCSI driver
12111 M:      Arvind Kumar <arvindkumar@vmware.com>
12112 M:      VMware PV-Drivers <pv-drivers@vmware.com>
12113 L:      linux-scsi@vger.kernel.org
12114 S:      Maintained
12115 F:      drivers/scsi/vmw_pvscsi.c
12116 F:      drivers/scsi/vmw_pvscsi.h
12117
12118 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
12119 M:      Liam Girdwood <lgirdwood@gmail.com>
12120 M:      Mark Brown <broonie@kernel.org>
12121 L:      linux-kernel@vger.kernel.org
12122 W:      http://www.slimlogic.co.uk/?p=48
12123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
12124 S:      Supported
12125 F:      Documentation/devicetree/bindings/regulator/
12126 F:      drivers/regulator/
12127 F:      include/dt-bindings/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-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
12308 M:      Chen-Yu Tsai <wens@csie.org>
12309 L:      linux-kernel@vger.kernel.org
12310 S:      Maintained
12311 N:      axp[128]
12312
12313 X.25 NETWORK LAYER
12314 M:      Andrew Hendry <andrew.hendry@gmail.com>
12315 L:      linux-x25@vger.kernel.org
12316 S:      Odd Fixes
12317 F:      Documentation/networking/x25*
12318 F:      include/net/x25*
12319 F:      net/x25/
12320
12321 X86 ARCHITECTURE (32-BIT AND 64-BIT)
12322 M:      Thomas Gleixner <tglx@linutronix.de>
12323 M:      Ingo Molnar <mingo@redhat.com>
12324 M:      "H. Peter Anvin" <hpa@zytor.com>
12325 M:      x86@kernel.org
12326 L:      linux-kernel@vger.kernel.org
12327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
12328 S:      Maintained
12329 F:      Documentation/x86/
12330 F:      arch/x86/
12331
12332 X86 PLATFORM DRIVERS
12333 M:      Darren Hart <dvhart@infradead.org>
12334 L:      platform-driver-x86@vger.kernel.org
12335 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
12336 S:      Maintained
12337 F:      drivers/platform/x86/
12338 F:      drivers/platform/olpc/
12339
12340 X86 MCE INFRASTRUCTURE
12341 M:      Tony Luck <tony.luck@intel.com>
12342 M:      Borislav Petkov <bp@alien8.de>
12343 L:      linux-edac@vger.kernel.org
12344 S:      Maintained
12345 F:      arch/x86/kernel/cpu/mcheck/*
12346
12347 X86 MICROCODE UPDATE SUPPORT
12348 M:      Borislav Petkov <bp@alien8.de>
12349 S:      Maintained
12350 F:      arch/x86/kernel/cpu/microcode/*
12351
12352 X86 VDSO
12353 M:      Andy Lutomirski <luto@amacapital.net>
12354 L:      linux-kernel@vger.kernel.org
12355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
12356 S:      Maintained
12357 F:      arch/x86/entry/vdso/
12358
12359 XC2028/3028 TUNER DRIVER
12360 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12361 L:      linux-media@vger.kernel.org
12362 W:      https://linuxtv.org
12363 T:      git git://linuxtv.org/media_tree.git
12364 S:      Maintained
12365 F:      drivers/media/tuners/tuner-xc2028.*
12366
12367 XEN HYPERVISOR INTERFACE
12368 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12369 M:      David Vrabel <david.vrabel@citrix.com>
12370 M:      Juergen Gross <jgross@suse.com>
12371 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12373 S:      Supported
12374 F:      arch/x86/xen/
12375 F:      drivers/*/xen-*front.c
12376 F:      drivers/xen/
12377 F:      arch/x86/include/asm/xen/
12378 F:      include/xen/
12379 F:      include/uapi/xen/
12380
12381 XEN HYPERVISOR ARM
12382 M:      Stefano Stabellini <sstabellini@kernel.org>
12383 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12384 S:      Maintained
12385 F:      arch/arm/xen/
12386 F:      arch/arm/include/asm/xen/
12387
12388 XEN HYPERVISOR ARM64
12389 M:      Stefano Stabellini <sstabellini@kernel.org>
12390 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12391 S:      Maintained
12392 F:      arch/arm64/xen/
12393 F:      arch/arm64/include/asm/xen/
12394
12395 XEN NETWORK BACKEND DRIVER
12396 M:      Wei Liu <wei.liu2@citrix.com>
12397 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12398 L:      netdev@vger.kernel.org
12399 S:      Supported
12400 F:      drivers/net/xen-netback/*
12401
12402 XEN PCI SUBSYSTEM
12403 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12404 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12405 S:      Supported
12406 F:      arch/x86/pci/*xen*
12407 F:      drivers/pci/*xen*
12408
12409 XEN BLOCK SUBSYSTEM
12410 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12411 M:      Roger Pau Monné <roger.pau@citrix.com>
12412 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12413 S:      Supported
12414 F:      drivers/block/xen-blkback/*
12415 F:      drivers/block/xen*
12416
12417 XEN PVSCSI DRIVERS
12418 M:      Juergen Gross <jgross@suse.com>
12419 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12420 L:      linux-scsi@vger.kernel.org
12421 S:      Supported
12422 F:      drivers/scsi/xen-scsifront.c
12423 F:      drivers/xen/xen-scsiback.c
12424 F:      include/xen/interface/io/vscsiif.h
12425
12426 XEN SWIOTLB SUBSYSTEM
12427 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12428 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12429 S:      Supported
12430 F:      arch/x86/xen/*swiotlb*
12431 F:      drivers/xen/*swiotlb*
12432
12433 XFS FILESYSTEM
12434 P:      Silicon Graphics Inc
12435 M:      Dave Chinner <david@fromorbit.com>
12436 M:      xfs@oss.sgi.com
12437 L:      xfs@oss.sgi.com
12438 W:      http://oss.sgi.com/projects/xfs
12439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12440 S:      Supported
12441 F:      Documentation/filesystems/xfs.txt
12442 F:      fs/xfs/
12443
12444 XILINX AXI ETHERNET DRIVER
12445 M:      Anirudha Sarangi <anirudh@xilinx.com>
12446 M:      John Linn <John.Linn@xilinx.com>
12447 S:      Maintained
12448 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12449
12450 XILINX UARTLITE SERIAL DRIVER
12451 M:      Peter Korsgaard <jacmet@sunsite.dk>
12452 L:      linux-serial@vger.kernel.org
12453 S:      Maintained
12454 F:      drivers/tty/serial/uartlite.c
12455
12456 XILINX VIDEO IP CORES
12457 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12458 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12459 L:      linux-media@vger.kernel.org
12460 T:      git git://linuxtv.org/media_tree.git
12461 S:      Supported
12462 F:      Documentation/devicetree/bindings/media/xilinx/
12463 F:      drivers/media/platform/xilinx/
12464 F:      include/uapi/linux/xilinx-v4l2-controls.h
12465
12466 XILLYBUS DRIVER
12467 M:      Eli Billauer <eli.billauer@gmail.com>
12468 L:      linux-kernel@vger.kernel.org
12469 S:      Supported
12470 F:      drivers/char/xillybus/
12471
12472 XTENSA XTFPGA PLATFORM SUPPORT
12473 M:      Max Filippov <jcmvbkbc@gmail.com>
12474 L:      linux-xtensa@linux-xtensa.org
12475 S:      Maintained
12476 F:      drivers/spi/spi-xtensa-xtfpga.c
12477 F:      sound/soc/xtensa/xtfpga-i2s.c
12478
12479 YAM DRIVER FOR AX.25
12480 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12481 L:      linux-hams@vger.kernel.org
12482 S:      Maintained
12483 F:      drivers/net/hamradio/yam*
12484 F:      include/linux/yam.h
12485
12486 YEALINK PHONE DRIVER
12487 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12488 L:      usbb2k-api-dev@nongnu.org
12489 S:      Maintained
12490 F:      Documentation/input/yealink.txt
12491 F:      drivers/input/misc/yealink.*
12492
12493 Z8530 DRIVER FOR AX.25
12494 M:      Joerg Reuter <jreuter@yaina.de>
12495 W:      http://yaina.de/jreuter/
12496 W:      http://www.qsl.net/dl1bke/
12497 L:      linux-hams@vger.kernel.org
12498 S:      Maintained
12499 F:      Documentation/networking/z8530drv.txt
12500 F:      drivers/net/hamradio/*scc.c
12501 F:      drivers/net/hamradio/z8530.h
12502
12503 ZBUD COMPRESSED PAGE ALLOCATOR
12504 M:      Seth Jennings <sjenning@redhat.com>
12505 L:      linux-mm@kvack.org
12506 S:      Maintained
12507 F:      mm/zbud.c
12508 F:      include/linux/zbud.h
12509
12510 ZD1211RW WIRELESS DRIVER
12511 M:      Daniel Drake <dsd@gentoo.org>
12512 M:      Ulrich Kunitz <kune@deine-taler.de>
12513 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12514 L:      linux-wireless@vger.kernel.org
12515 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12516 S:      Maintained
12517 F:      drivers/net/wireless/zydas/zd1211rw/
12518
12519 ZPOOL COMPRESSED PAGE STORAGE API
12520 M:      Dan Streetman <ddstreet@ieee.org>
12521 L:      linux-mm@kvack.org
12522 S:      Maintained
12523 F:      mm/zpool.c
12524 F:      include/linux/zpool.h
12525
12526 ZR36067 VIDEO FOR LINUX DRIVER
12527 L:      mjpeg-users@lists.sourceforge.net
12528 L:      linux-media@vger.kernel.org
12529 W:      http://mjpeg.sourceforge.net/driver-zoran/
12530 T:      hg https://linuxtv.org/hg/v4l-dvb
12531 S:      Odd Fixes
12532 F:      drivers/media/pci/zoran/
12533
12534 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12535 M:      Minchan Kim <minchan@kernel.org>
12536 M:      Nitin Gupta <ngupta@vflare.org>
12537 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12538 L:      linux-kernel@vger.kernel.org
12539 S:      Maintained
12540 F:      drivers/block/zram/
12541 F:      Documentation/blockdev/zram.txt
12542
12543 ZS DECSTATION Z85C30 SERIAL DRIVER
12544 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12545 S:      Maintained
12546 F:      drivers/tty/serial/zs.*
12547
12548 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12549 M:      Minchan Kim <minchan@kernel.org>
12550 M:      Nitin Gupta <ngupta@vflare.org>
12551 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12552 L:      linux-mm@kvack.org
12553 S:      Maintained
12554 F:      mm/zsmalloc.c
12555 F:      include/linux/zsmalloc.h
12556 F:      Documentation/vm/zsmalloc.txt
12557
12558 ZSWAP COMPRESSED SWAP CACHING
12559 M:      Seth Jennings <sjenning@redhat.com>
12560 L:      linux-mm@kvack.org
12561 S:      Maintained
12562 F:      mm/zswap.c
12563
12564 THE REST
12565 M:      Linus Torvalds <torvalds@linux-foundation.org>
12566 L:      linux-kernel@vger.kernel.org
12567 Q:      http://patchwork.kernel.org/project/LKML/list/
12568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12569 S:      Buried alive in reporters
12570 F:      *
12571 F:      */