drm: etnaviv: use previous GPU pipe state when pipe switching
[cascardo/linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/CodingStyle for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/SubmittingPatches for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/SubmittingPatches.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: security@kernel.org, especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         Q: Patchwork web based patch tracking system site
78         T: SCM tree type and location.
79            Type is one of: git, hg, quilt, stgit, topgit
80         S: Status, one of the following:
81            Supported:   Someone is actually paid to look after this.
82            Maintained:  Someone actually looks after it.
83            Odd Fixes:   It has a maintainer but they don't have time to do
84                         much other than throw the odd patch in. See below..
85            Orphan:      No current maintainer [but maybe you could take the
86                         role as you write your new code].
87            Obsolete:    Old code. Something tagged obsolete generally means
88                         it has been replaced by a better system and you
89                         should be using that.
90         F: Files and directories with wildcard patterns.
91            A trailing slash includes all files and subdirectory files.
92            F:   drivers/net/    all files in and below drivers/net
93            F:   drivers/net/*   all files in drivers/net, but not below
94            F:   */net/*         all files in "any top level directory"/net
95            One pattern per line.  Multiple F: lines acceptable.
96         N: Files and directories with regex patterns.
97            N:   [^a-z]tegra     all files whose path contains the word tegra
98            One pattern per line.  Multiple N: lines acceptable.
99            scripts/get_maintainer.pl has different behavior for files that
100            match F: pattern and matches of N: patterns.  By default,
101            get_maintainer will not look at git log history when an F: pattern
102            match occurs.  When an N: match occurs, git log history is used
103            to also notify the people that have git commit signatures.
104         X: Files and directories that are NOT maintained, same rules as F:
105            Files exclusions are tested before file matches.
106            Can be useful for excluding a specific subdirectory, for instance:
107            F:   net/
108            X:   net/ipv6/
109            matches all files in and below net excluding net/ipv6/
110         K: Keyword perl extended regex pattern to match content in a
111            patch or file.  For instance:
112            K: of_get_profile
113               matches patches or files that contain "of_get_profile"
114            K: \b(printk|pr_(info|err))\b
115               matches patches or files that contain one or more of the words
116               printk, pr_info or pr_err
117            One regex pattern per line.  Multiple K: lines acceptable.
118
119 Note: For the hard of thinking, this list is meant to remain in alphabetical
120 order. If you could add yourselves to it in alphabetical order that would be
121 so much easier [Ed]
122
123 Maintainers List (try to look for most precise areas first)
124
125                 -----------------------------------
126
127 3C59X NETWORK DRIVER
128 M:      Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
129 L:      netdev@vger.kernel.org
130 S:      Maintained
131 F:      Documentation/networking/vortex.txt
132 F:      drivers/net/ethernet/3com/3c59x.c
133
134 3CR990 NETWORK DRIVER
135 M:      David Dillow <dave@thedillows.org>
136 L:      netdev@vger.kernel.org
137 S:      Maintained
138 F:      drivers/net/ethernet/3com/typhoon*
139
140 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
141 M:      Adam Radford <linuxraid@lsi.com>
142 L:      linux-scsi@vger.kernel.org
143 W:      http://www.lsi.com
144 S:      Supported
145 F:      drivers/scsi/3w-*
146
147 53C700 AND 53C700-66 SCSI DRIVER
148 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
149 L:      linux-scsi@vger.kernel.org
150 S:      Maintained
151 F:      drivers/scsi/53c700*
152
153 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
154 M:      Alexander Aring <alex.aring@gmail.com>
155 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
156 L:      linux-bluetooth@vger.kernel.org
157 L:      linux-wpan@vger.kernel.org
158 S:      Maintained
159 F:      net/6lowpan/
160 F:      include/net/6lowpan.h
161 F:      Documentation/networking/6lowpan.txt
162
163 6PACK NETWORK DRIVER FOR AX.25
164 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
165 L:      linux-hams@vger.kernel.org
166 S:      Maintained
167 F:      drivers/net/hamradio/6pack.c
168
169 8169 10/100/1000 GIGABIT ETHERNET DRIVER
170 M:      Realtek linux nic maintainers <nic_swsd@realtek.com>
171 L:      netdev@vger.kernel.org
172 S:      Maintained
173 F:      drivers/net/ethernet/realtek/r8169.c
174
175 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
177 L:      linux-serial@vger.kernel.org
178 W:      http://serial.sourceforge.net
179 S:      Maintained
180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
181 F:      drivers/tty/serial/8250*
182 F:      include/linux/serial_8250.h
183
184 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
185 L:      netdev@vger.kernel.org
186 S:      Orphan / Obsolete
187 F:      drivers/net/ethernet/8390/
188
189 9P FILE SYSTEM
190 M:      Eric Van Hensbergen <ericvh@gmail.com>
191 M:      Ron Minnich <rminnich@sandia.gov>
192 M:      Latchesar Ionkov <lucho@ionkov.net>
193 L:      v9fs-developer@lists.sourceforge.net
194 W:      http://swik.net/v9fs
195 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
197 S:      Maintained
198 F:      Documentation/filesystems/9p.txt
199 F:      fs/9p/
200 F:      net/9p/
201 F:      include/net/9p/
202 F:      include/uapi/linux/virtio_9p.h
203 F:      include/trace/events/9p.h
204
205
206 A8293 MEDIA DRIVER
207 M:      Antti Palosaari <crope@iki.fi>
208 L:      linux-media@vger.kernel.org
209 W:      https://linuxtv.org
210 W:      http://palosaari.fi/linux/
211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
212 T:      git git://linuxtv.org/anttip/media_tree.git
213 S:      Maintained
214 F:      drivers/media/dvb-frontends/a8293*
215
216 AACRAID SCSI RAID DRIVER
217 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
218 L:      linux-scsi@vger.kernel.org
219 W:      http://www.adaptec.com/
220 S:      Supported
221 F:      Documentation/scsi/aacraid.txt
222 F:      drivers/scsi/aacraid/
223
224 ABI/API
225 L:      linux-api@vger.kernel.org
226 F:      include/linux/syscalls.h
227 F:      kernel/sys_ni.c
228
229 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
230 M:      Hans de Goede <hdegoede@redhat.com>
231 L:      lm-sensors@lm-sensors.org
232 S:      Maintained
233 F:      drivers/hwmon/abituguru.c
234
235 ABIT UGURU 3 HARDWARE MONITOR DRIVER
236 M:      Alistair John Strachan <alistair@devzero.co.uk>
237 L:      lm-sensors@lm-sensors.org
238 S:      Maintained
239 F:      drivers/hwmon/abituguru3.c
240
241 ACCES 104-IDI-48 GPIO DRIVER
242 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
243 L:      linux-gpio@vger.kernel.org
244 S:      Maintained
245 F:      drivers/gpio/gpio-104-idi-48.c
246
247 ACCES 104-IDIO-16 GPIO DRIVER
248 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
249 L:      linux-gpio@vger.kernel.org
250 S:      Maintained
251 F:      drivers/gpio/gpio-104-idio-16.c
252
253 ACENIC DRIVER
254 M:      Jes Sorensen <jes@trained-monkey.org>
255 L:      linux-acenic@sunsite.dk
256 S:      Maintained
257 F:      drivers/net/ethernet/alteon/acenic*
258
259 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
260 M:      Peter Feuerer <peter@piie.net>
261 L:      platform-driver-x86@vger.kernel.org
262 W:      http://piie.net/?section=acerhdf
263 S:      Maintained
264 F:      drivers/platform/x86/acerhdf.c
265
266 ACER WMI LAPTOP EXTRAS
267 M:      "Lee, Chun-Yi" <jlee@suse.com>
268 L:      platform-driver-x86@vger.kernel.org
269 S:      Maintained
270 F:      drivers/platform/x86/acer-wmi.c
271
272 ACPI
273 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
274 M:      Len Brown <lenb@kernel.org>
275 L:      linux-acpi@vger.kernel.org
276 W:      https://01.org/linux-acpi
277 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
279 S:      Supported
280 F:      drivers/acpi/
281 F:      drivers/pnp/pnpacpi/
282 F:      include/linux/acpi.h
283 F:      include/acpi/
284 F:      Documentation/acpi/
285 F:      Documentation/ABI/testing/sysfs-bus-acpi
286 F:      drivers/pci/*acpi*
287 F:      drivers/pci/*/*acpi*
288 F:      drivers/pci/*/*/*acpi*
289 F:      tools/power/acpi/
290
291 ACPI COMPONENT ARCHITECTURE (ACPICA)
292 M:      Robert Moore <robert.moore@intel.com>
293 M:      Lv Zheng <lv.zheng@intel.com>
294 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
295 L:      linux-acpi@vger.kernel.org
296 L:      devel@acpica.org
297 W:      https://acpica.org/
298 W:      https://github.com/acpica/acpica/
299 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
301 S:      Supported
302 F:      drivers/acpi/acpica/
303 F:      include/acpi/
304 F:      tools/power/acpi/
305
306 ACPI FAN DRIVER
307 M:      Zhang Rui <rui.zhang@intel.com>
308 L:      linux-acpi@vger.kernel.org
309 W:      https://01.org/linux-acpi
310 S:      Supported
311 F:      drivers/acpi/fan.c
312
313 ACPI THERMAL DRIVER
314 M:      Zhang Rui <rui.zhang@intel.com>
315 L:      linux-acpi@vger.kernel.org
316 W:      https://01.org/linux-acpi
317 S:      Supported
318 F:      drivers/acpi/*thermal*
319
320 ACPI VIDEO DRIVER
321 M:      Zhang Rui <rui.zhang@intel.com>
322 L:      linux-acpi@vger.kernel.org
323 W:      https://01.org/linux-acpi
324 S:      Supported
325 F:      drivers/acpi/acpi_video.c
326
327 ACPI WMI DRIVER
328 L:      platform-driver-x86@vger.kernel.org
329 S:      Orphan
330 F:      drivers/platform/x86/wmi.c
331
332 AD1889 ALSA SOUND DRIVER
333 M:      Thibaut Varene <T-Bone@parisc-linux.org>
334 W:      http://wiki.parisc-linux.org/AD1889
335 L:      linux-parisc@vger.kernel.org
336 S:      Maintained
337 F:      sound/pci/ad1889.*
338
339 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
340 M:      Michael Hennerich <michael.hennerich@analog.com>
341 W:      http://wiki.analog.com/AD5254
342 W:      http://ez.analog.com/community/linux-device-drivers
343 S:      Supported
344 F:      drivers/misc/ad525x_dpot.c
345
346 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
347 M:      Michael Hennerich <michael.hennerich@analog.com>
348 W:      http://wiki.analog.com/AD5398
349 W:      http://ez.analog.com/community/linux-device-drivers
350 S:      Supported
351 F:      drivers/regulator/ad5398.c
352
353 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
354 M:      Michael Hennerich <michael.hennerich@analog.com>
355 W:      http://wiki.analog.com/AD7142
356 W:      http://ez.analog.com/community/linux-device-drivers
357 S:      Supported
358 F:      drivers/input/misc/ad714x.c
359
360 AD7877 TOUCHSCREEN DRIVER
361 M:      Michael Hennerich <michael.hennerich@analog.com>
362 W:      http://wiki.analog.com/AD7877
363 W:      http://ez.analog.com/community/linux-device-drivers
364 S:      Supported
365 F:      drivers/input/touchscreen/ad7877.c
366
367 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
368 M:      Michael Hennerich <michael.hennerich@analog.com>
369 W:      http://wiki.analog.com/AD7879
370 W:      http://ez.analog.com/community/linux-device-drivers
371 S:      Supported
372 F:      drivers/input/touchscreen/ad7879.c
373
374 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
375 M:      Jiri Kosina <jikos@kernel.org>
376 S:      Maintained
377
378 ADF7242 IEEE 802.15.4 RADIO DRIVER
379 M:      Michael Hennerich <michael.hennerich@analog.com>
380 W:      https://wiki.analog.com/ADF7242
381 W:      http://ez.analog.com/community/linux-device-drivers
382 L:      linux-wpan@vger.kernel.org
383 S:      Supported
384 F:      drivers/net/ieee802154/adf7242.c
385 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
386
387 ADM1025 HARDWARE MONITOR DRIVER
388 M:      Jean Delvare <jdelvare@suse.com>
389 L:      lm-sensors@lm-sensors.org
390 S:      Maintained
391 F:      Documentation/hwmon/adm1025
392 F:      drivers/hwmon/adm1025.c
393
394 ADM1029 HARDWARE MONITOR DRIVER
395 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
396 L:      lm-sensors@lm-sensors.org
397 S:      Maintained
398 F:      drivers/hwmon/adm1029.c
399
400 ADM8211 WIRELESS DRIVER
401 L:      linux-wireless@vger.kernel.org
402 W:      http://wireless.kernel.org/
403 S:      Orphan
404 F:      drivers/net/wireless/admtek/adm8211.*
405
406 ADP1653 FLASH CONTROLLER DRIVER
407 M:      Sakari Ailus <sakari.ailus@iki.fi>
408 L:      linux-media@vger.kernel.org
409 S:      Maintained
410 F:      drivers/media/i2c/adp1653.c
411 F:      include/media/i2c/adp1653.h
412
413 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
414 M:      Michael Hennerich <michael.hennerich@analog.com>
415 W:      http://wiki.analog.com/ADP5520
416 W:      http://ez.analog.com/community/linux-device-drivers
417 S:      Supported
418 F:      drivers/mfd/adp5520.c
419 F:      drivers/video/backlight/adp5520_bl.c
420 F:      drivers/leds/leds-adp5520.c
421 F:      drivers/gpio/gpio-adp5520.c
422 F:      drivers/input/keyboard/adp5520-keys.c
423
424 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
425 M:      Michael Hennerich <michael.hennerich@analog.com>
426 W:      http://wiki.analog.com/ADP5588
427 W:      http://ez.analog.com/community/linux-device-drivers
428 S:      Supported
429 F:      drivers/input/keyboard/adp5588-keys.c
430 F:      drivers/gpio/gpio-adp5588.c
431
432 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
433 M:      Michael Hennerich <michael.hennerich@analog.com>
434 W:      http://wiki.analog.com/ADP8860
435 W:      http://ez.analog.com/community/linux-device-drivers
436 S:      Supported
437 F:      drivers/video/backlight/adp8860_bl.c
438
439 ADS1015 HARDWARE MONITOR DRIVER
440 M:      Dirk Eibach <eibach@gdsys.de>
441 L:      lm-sensors@lm-sensors.org
442 S:      Maintained
443 F:      Documentation/hwmon/ads1015
444 F:      drivers/hwmon/ads1015.c
445 F:      include/linux/i2c/ads1015.h
446
447 ADT746X FAN DRIVER
448 M:      Colin Leroy <colin@colino.net>
449 S:      Maintained
450 F:      drivers/macintosh/therm_adt746x.c
451
452 ADT7475 HARDWARE MONITOR DRIVER
453 M:      Jean Delvare <jdelvare@suse.com>
454 L:      lm-sensors@lm-sensors.org
455 S:      Maintained
456 F:      Documentation/hwmon/adt7475
457 F:      drivers/hwmon/adt7475.c
458
459 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
460 M:      Michael Hennerich <michael.hennerich@analog.com>
461 W:      http://wiki.analog.com/ADXL345
462 W:      http://ez.analog.com/community/linux-device-drivers
463 S:      Supported
464 F:      drivers/input/misc/adxl34x.c
465
466 ADVANSYS SCSI DRIVER
467 M:      Matthew Wilcox <matthew@wil.cx>
468 M:      Hannes Reinecke <hare@suse.com>
469 L:      linux-scsi@vger.kernel.org
470 S:      Maintained
471 F:      Documentation/scsi/advansys.txt
472 F:      drivers/scsi/advansys.c
473
474 AEDSP16 DRIVER
475 M:      Riccardo Facchetti <fizban@tin.it>
476 S:      Maintained
477 F:      sound/oss/aedsp16.c
478
479 AF9013 MEDIA DRIVER
480 M:      Antti Palosaari <crope@iki.fi>
481 L:      linux-media@vger.kernel.org
482 W:      https://linuxtv.org
483 W:      http://palosaari.fi/linux/
484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
485 T:      git git://linuxtv.org/anttip/media_tree.git
486 S:      Maintained
487 F:      drivers/media/dvb-frontends/af9013*
488
489 AF9033 MEDIA DRIVER
490 M:      Antti Palosaari <crope@iki.fi>
491 L:      linux-media@vger.kernel.org
492 W:      https://linuxtv.org
493 W:      http://palosaari.fi/linux/
494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
495 T:      git git://linuxtv.org/anttip/media_tree.git
496 S:      Maintained
497 F:      drivers/media/dvb-frontends/af9033*
498
499 AFFS FILE SYSTEM
500 L:      linux-fsdevel@vger.kernel.org
501 S:      Orphan
502 F:      Documentation/filesystems/affs.txt
503 F:      fs/affs/
504
505 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
506 M:      David Howells <dhowells@redhat.com>
507 L:      linux-afs@lists.infradead.org
508 S:      Supported
509 F:      fs/afs/
510 F:      include/net/af_rxrpc.h
511 F:      net/rxrpc/af_rxrpc.c
512
513 AGPGART DRIVER
514 M:      David Airlie <airlied@linux.ie>
515 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
516 S:      Maintained
517 F:      drivers/char/agp/
518 F:      include/linux/agp*
519 F:      include/uapi/linux/agp*
520
521 AHA152X SCSI DRIVER
522 M:      "Juergen E. Fischer" <fischer@norbit.de>
523 L:      linux-scsi@vger.kernel.org
524 S:      Maintained
525 F:      drivers/scsi/aha152x*
526 F:      drivers/scsi/pcmcia/aha152x*
527
528 AIC7XXX / AIC79XX SCSI DRIVER
529 M:      Hannes Reinecke <hare@suse.com>
530 L:      linux-scsi@vger.kernel.org
531 S:      Maintained
532 F:      drivers/scsi/aic7xxx/
533
534 AIMSLAB FM RADIO RECEIVER DRIVER
535 M:      Hans Verkuil <hverkuil@xs4all.nl>
536 L:      linux-media@vger.kernel.org
537 T:      git git://linuxtv.org/media_tree.git
538 W:      https://linuxtv.org
539 S:      Maintained
540 F:      drivers/media/radio/radio-aimslab*
541
542 AIO
543 M:      Benjamin LaHaise <bcrl@kvack.org>
544 L:      linux-aio@kvack.org
545 S:      Supported
546 F:      fs/aio.c
547 F:      include/linux/*aio*.h
548
549 AIRSPY MEDIA DRIVER
550 M:      Antti Palosaari <crope@iki.fi>
551 L:      linux-media@vger.kernel.org
552 W:      https://linuxtv.org
553 W:      http://palosaari.fi/linux/
554 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
555 T:      git git://linuxtv.org/anttip/media_tree.git
556 S:      Maintained
557 F:      drivers/media/usb/airspy/
558
559 ALCATEL SPEEDTOUCH USB DRIVER
560 M:      Duncan Sands <duncan.sands@free.fr>
561 L:      linux-usb@vger.kernel.org
562 W:      http://www.linux-usb.org/SpeedTouch/
563 S:      Maintained
564 F:      drivers/usb/atm/speedtch.c
565 F:      drivers/usb/atm/usbatm.c
566
567 ALCHEMY AU1XX0 MMC DRIVER
568 M:      Manuel Lauss <manuel.lauss@gmail.com>
569 S:      Maintained
570 F:      drivers/mmc/host/au1xmmc.c
571
572 ALI1563 I2C DRIVER
573 M:      Rudolf Marek <r.marek@assembler.cz>
574 L:      linux-i2c@vger.kernel.org
575 S:      Maintained
576 F:      Documentation/i2c/busses/i2c-ali1563
577 F:      drivers/i2c/busses/i2c-ali1563.c
578
579 ALLWINNER SECURITY SYSTEM
580 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
581 L:      linux-crypto@vger.kernel.org
582 S:      Maintained
583 F:      drivers/crypto/sunxi-ss/
584
585 ALPHA PORT
586 M:      Richard Henderson <rth@twiddle.net>
587 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
588 M:      Matt Turner <mattst88@gmail.com>
589 S:      Odd Fixes
590 L:      linux-alpha@vger.kernel.org
591 F:      arch/alpha/
592
593 ALTERA MAILBOX DRIVER
594 M:      Ley Foon Tan <lftan@altera.com>
595 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
596 S:      Maintained
597 F:      drivers/mailbox/mailbox-altera.c
598
599 ALTERA PIO DRIVER
600 M:      Tien Hock Loh <thloh@altera.com>
601 L:      linux-gpio@vger.kernel.org
602 S:      Maintained
603 F:      drivers/gpio/gpio-altera.c
604
605 ALTERA TRIPLE SPEED ETHERNET DRIVER
606 M:      Vince Bridgers <vbridger@opensource.altera.com>
607 L:      netdev@vger.kernel.org
608 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
609 S:      Maintained
610 F:      drivers/net/ethernet/altera/
611
612 ALTERA UART/JTAG UART SERIAL DRIVERS
613 M:      Tobias Klauser <tklauser@distanz.ch>
614 L:      linux-serial@vger.kernel.org
615 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
616 S:      Maintained
617 F:      drivers/tty/serial/altera_uart.c
618 F:      drivers/tty/serial/altera_jtaguart.c
619 F:      include/linux/altera_uart.h
620 F:      include/linux/altera_jtaguart.h
621
622 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
623 M:      Tom Lendacky <thomas.lendacky@amd.com>
624 L:      linux-crypto@vger.kernel.org
625 S:      Supported
626 F:      drivers/crypto/ccp/
627 F:      include/linux/ccp.h
628
629 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
630 M:      Huang Rui <ray.huang@amd.com>
631 L:      lm-sensors@lm-sensors.org
632 S:      Supported
633 F:      Documentation/hwmon/fam15h_power
634 F:      drivers/hwmon/fam15h_power.c
635
636 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
637 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
638 S:      Orphan
639 F:      drivers/usb/gadget/udc/amd5536udc.*
640
641 AMD GEODE PROCESSOR/CHIPSET SUPPORT
642 P:      Andres Salomon <dilinger@queued.net>
643 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
644 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
645 S:      Supported
646 F:      drivers/char/hw_random/geode-rng.c
647 F:      drivers/crypto/geode*
648 F:      drivers/video/fbdev/geode/
649 F:      arch/x86/include/asm/geode.h
650
651 AMD IOMMU (AMD-VI)
652 M:      Joerg Roedel <joro@8bytes.org>
653 L:      iommu@lists.linux-foundation.org
654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
655 S:      Maintained
656 F:      drivers/iommu/amd_iommu*.[ch]
657 F:      include/linux/amd-iommu.h
658
659 AMD KFD
660 M:      Oded Gabbay <oded.gabbay@gmail.com>
661 L:      dri-devel@lists.freedesktop.org
662 T:      git git://people.freedesktop.org/~gabbayo/linux.git
663 S:      Supported
664 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
665 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
666 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
667 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
668 F:      drivers/gpu/drm/amd/amdkfd/
669 F:      drivers/gpu/drm/amd/include/cik_structs.h
670 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
671 F:      drivers/gpu/drm/amd/include/vi_structs.h
672 F:      drivers/gpu/drm/radeon/radeon_kfd.c
673 F:      drivers/gpu/drm/radeon/radeon_kfd.h
674 F:      include/uapi/linux/kfd_ioctl.h
675
676 AMD XGBE DRIVER
677 M:      Tom Lendacky <thomas.lendacky@amd.com>
678 L:      netdev@vger.kernel.org
679 S:      Supported
680 F:      drivers/net/ethernet/amd/xgbe/
681
682 AMS (Apple Motion Sensor) DRIVER
683 M:      Michael Hanselmann <linux-kernel@hansmi.ch>
684 S:      Supported
685 F:      drivers/macintosh/ams/
686
687 ANALOG DEVICES INC AD9389B DRIVER
688 M:      Hans Verkuil <hans.verkuil@cisco.com>
689 L:      linux-media@vger.kernel.org
690 S:      Maintained
691 F:      drivers/media/i2c/ad9389b*
692
693 ANALOG DEVICES INC ADV7180 DRIVER
694 M:      Lars-Peter Clausen <lars@metafoo.de>
695 L:      linux-media@vger.kernel.org
696 W:      http://ez.analog.com/community/linux-device-drivers
697 S:      Supported
698 F:      drivers/media/i2c/adv7180.c
699
700 ANALOG DEVICES INC ADV7511 DRIVER
701 M:      Hans Verkuil <hans.verkuil@cisco.com>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 F:      drivers/media/i2c/adv7511*
705
706 ANALOG DEVICES INC ADV7604 DRIVER
707 M:      Hans Verkuil <hans.verkuil@cisco.com>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 F:      drivers/media/i2c/adv7604*
711
712 ANALOG DEVICES INC ADV7842 DRIVER
713 M:      Hans Verkuil <hans.verkuil@cisco.com>
714 L:      linux-media@vger.kernel.org
715 S:      Maintained
716 F:      drivers/media/i2c/adv7842*
717
718 ANALOG DEVICES INC ASOC CODEC DRIVERS
719 M:      Lars-Peter Clausen <lars@metafoo.de>
720 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
721 W:      http://wiki.analog.com/
722 W:      http://ez.analog.com/community/linux-device-drivers
723 S:      Supported
724 F:      sound/soc/codecs/adau*
725 F:      sound/soc/codecs/adav*
726 F:      sound/soc/codecs/ad1*
727 F:      sound/soc/codecs/ad7*
728 F:      sound/soc/codecs/ssm*
729 F:      sound/soc/codecs/sigmadsp.*
730
731 ANALOG DEVICES INC ASOC DRIVERS
732 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
734 W:      http://blackfin.uclinux.org/
735 S:      Supported
736 F:      sound/soc/blackfin/*
737
738 ANALOG DEVICES INC IIO DRIVERS
739 M:      Lars-Peter Clausen <lars@metafoo.de>
740 M:      Michael Hennerich <Michael.Hennerich@analog.com>
741 W:      http://wiki.analog.com/
742 W:      http://ez.analog.com/community/linux-device-drivers
743 S:      Supported
744 F:      drivers/iio/*/ad*
745 X:      drivers/iio/*/adjd*
746 F:      drivers/staging/iio/*/ad*
747 F:      staging/iio/trigger/iio-trig-bfin-timer.c
748
749 ANALOG DEVICES INC DMA DRIVERS
750 M:      Lars-Peter Clausen <lars@metafoo.de>
751 W:      http://ez.analog.com/community/linux-device-drivers
752 S:      Supported
753 F:      drivers/dma/dma-axi-dmac.c
754
755 ANDROID DRIVERS
756 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
757 M:      Arve HjønnevĂ¥g <arve@android.com>
758 M:      Riley Andrews <riandrews@android.com>
759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
760 L:      devel@driverdev.osuosl.org
761 S:      Supported
762 F:      drivers/android/
763 F:      drivers/staging/android/
764
765 AOA (Apple Onboard Audio) ALSA DRIVER
766 M:      Johannes Berg <johannes@sipsolutions.net>
767 L:      linuxppc-dev@lists.ozlabs.org
768 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
769 S:      Maintained
770 F:      sound/aoa/
771
772 APM DRIVER
773 M:      Jiri Kosina <jikos@kernel.org>
774 S:      Odd fixes
775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
776 F:      arch/x86/kernel/apm_32.c
777 F:      include/linux/apm_bios.h
778 F:      include/uapi/linux/apm_bios.h
779 F:      drivers/char/apm-emulation.c
780
781 APPLE BCM5974 MULTITOUCH DRIVER
782 M:      Henrik Rydberg <rydberg@bitmath.org>
783 L:      linux-input@vger.kernel.org
784 S:      Odd fixes
785 F:      drivers/input/mouse/bcm5974.c
786
787 APPLE SMC DRIVER
788 M:      Henrik Rydberg <rydberg@bitmath.org>
789 L:      lm-sensors@lm-sensors.org
790 S:      Odd fixes
791 F:      drivers/hwmon/applesmc.c
792
793 APPLETALK NETWORK LAYER
794 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
795 S:      Maintained
796 F:      drivers/net/appletalk/
797 F:      net/appletalk/
798
799 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
800 M:      Duc Dang <dhdang@apm.com>
801 S:      Supported
802 F:      arch/arm64/boot/dts/apm/
803
804 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
805 M:      Iyappan Subramanian <isubramanian@apm.com>
806 M:      Keyur Chudgar <kchudgar@apm.com>
807 S:      Supported
808 F:      drivers/net/ethernet/apm/xgene/
809 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
810
811 APTINA CAMERA SENSOR PLL
812 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
813 L:      linux-media@vger.kernel.org
814 S:      Maintained
815 F:      drivers/media/i2c/aptina-pll.*
816
817 ARC FRAMEBUFFER DRIVER
818 M:      Jaya Kumar <jayalk@intworks.biz>
819 S:      Maintained
820 F:      drivers/video/fbdev/arcfb.c
821 F:      drivers/video/fbdev/core/fb_defio.c
822
823 ARCNET NETWORK LAYER
824 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
825 L:      netdev@vger.kernel.org
826 S:      Maintained
827 F:      drivers/net/arcnet/
828 F:      include/uapi/linux/if_arcnet.h
829
830 ARM HDLCD DRM DRIVER
831 M:      Liviu Dudau <liviu.dudau@arm.com>
832 S:      Supported
833 F:      drivers/gpu/drm/arm/
834 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
835
836 ARM MFM AND FLOPPY DRIVERS
837 M:      Ian Molton <spyro@f2s.com>
838 S:      Maintained
839 F:      arch/arm/lib/floppydma.S
840 F:      arch/arm/include/asm/floppy.h
841
842 ARM PMU PROFILING AND DEBUGGING
843 M:      Will Deacon <will.deacon@arm.com>
844 R:      Mark Rutland <mark.rutland@arm.com>
845 S:      Maintained
846 F:      arch/arm*/kernel/perf_*
847 F:      arch/arm/oprofile/common.c
848 F:      arch/arm*/kernel/hw_breakpoint.c
849 F:      arch/arm*/include/asm/hw_breakpoint.h
850 F:      arch/arm*/include/asm/perf_event.h
851 F:      drivers/perf/arm_pmu.c
852 F:      include/linux/perf/arm_pmu.h
853
854 ARM PORT
855 M:      Russell King <linux@arm.linux.org.uk>
856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
857 W:      http://www.arm.linux.org.uk/
858 S:      Maintained
859 F:      arch/arm/
860
861 ARM SUB-ARCHITECTURES
862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
863 S:      Maintained
864 F:      arch/arm/mach-*/
865 F:      arch/arm/plat-*/
866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
867
868 ARM PRIMECELL AACI PL041 DRIVER
869 M:      Russell King <linux@arm.linux.org.uk>
870 S:      Maintained
871 F:      sound/arm/aaci.*
872
873 ARM PRIMECELL CLCD PL110 DRIVER
874 M:      Russell King <linux@arm.linux.org.uk>
875 S:      Maintained
876 F:      drivers/video/fbdev/amba-clcd.*
877
878 ARM PRIMECELL KMI PL050 DRIVER
879 M:      Russell King <linux@arm.linux.org.uk>
880 S:      Maintained
881 F:      drivers/input/serio/ambakmi.*
882 F:      include/linux/amba/kmi.h
883
884 ARM PRIMECELL MMCI PL180/1 DRIVER
885 M:      Russell King <linux@arm.linux.org.uk>
886 S:      Maintained
887 F:      drivers/mmc/host/mmci.*
888 F:      include/linux/amba/mmci.h
889
890 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
891 M:      Russell King <linux@arm.linux.org.uk>
892 S:      Maintained
893 F:      drivers/tty/serial/amba-pl01*.c
894 F:      include/linux/amba/serial.h
895
896 ARM PRIMECELL BUS SUPPORT
897 M:      Russell King <linux@arm.linux.org.uk>
898 S:      Maintained
899 F:      drivers/amba/
900 F:      include/linux/amba/bus.h
901
902 ARM/ADS SPHERE MACHINE SUPPORT
903 M:      Lennert Buytenhek <kernel@wantstofly.org>
904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
905 S:      Maintained
906
907 ARM/AFEB9260 MACHINE SUPPORT
908 M:      Sergey Lapin <slapin@ossfans.org>
909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
910 S:      Maintained
911
912 ARM/AJECO 1ARM MACHINE SUPPORT
913 M:      Lennert Buytenhek <kernel@wantstofly.org>
914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
915 S:      Maintained
916
917 ARM/Allwinner sunXi SoC support
918 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
919 M:      Chen-Yu Tsai <wens@csie.org>
920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
921 S:      Maintained
922 N:      sun[x456789]i
923
924 ARM/Allwinner SoC Clock Support
925 M:      Emilio LĂ³pez <emilio@elopez.com.ar>
926 S:      Maintained
927 F:      drivers/clk/sunxi/
928
929 ARM/Amlogic MesonX SoC support
930 M:      Carlo Caione <carlo@caione.org>
931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
932 S:      Maintained
933 F:      drivers/media/rc/meson-ir.c
934 N:      meson[x68]
935
936 ARM/Annapurna Labs ALPINE ARCHITECTURE
937 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
938 S:      Maintained
939 F:      arch/arm/mach-alpine/
940
941 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
942 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
943 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
944 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
946 W:      http://www.linux4sam.org
947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
948 S:      Supported
949 F:      arch/arm/mach-at91/
950 F:      include/soc/at91/
951 F:      arch/arm/boot/dts/at91*.dts
952 F:      arch/arm/boot/dts/at91*.dtsi
953 F:      arch/arm/boot/dts/sama*.dts
954 F:      arch/arm/boot/dts/sama*.dtsi
955 F:      arch/arm/include/debug/at91.S
956
957 ARM/ATMEL AT91 Clock Support
958 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
959 S:      Maintained
960 F:      drivers/clk/at91
961
962 ARM/CALXEDA HIGHBANK ARCHITECTURE
963 M:      Rob Herring <robh@kernel.org>
964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
965 S:      Maintained
966 F:      arch/arm/mach-highbank/
967 F:      arch/arm/boot/dts/highbank.dts
968 F:      arch/arm/boot/dts/ecx-*.dts*
969
970 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
971 M:      Krzysztof Halasa <khalasa@piap.pl>
972 S:      Maintained
973 F:      arch/arm/mach-cns3xxx/
974
975 ARM/CAVIUM THUNDER NETWORK DRIVER
976 M:      Sunil Goutham <sgoutham@cavium.com>
977 M:      Robert Richter <rric@kernel.org>
978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
979 S:      Supported
980 F:      drivers/net/ethernet/cavium/thunder/
981
982 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
983 M:      Alexander Shiyan <shc_work@mail.ru>
984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
985 S:      Odd Fixes
986 N:      clps711x
987
988 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
989 M:      Hartley Sweeten <hsweeten@visionengravers.com>
990 M:      Ryan Mallon <rmallon@gmail.com>
991 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
992 S:      Maintained
993 F:      arch/arm/mach-ep93xx/
994 F:      arch/arm/mach-ep93xx/include/mach/
995
996 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
997 M:      Lennert Buytenhek <kernel@wantstofly.org>
998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
999 S:      Maintained
1000
1001 ARM/CLKDEV SUPPORT
1002 M:      Russell King <linux@arm.linux.org.uk>
1003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1004 S:      Maintained
1005 F:      arch/arm/include/asm/clkdev.h
1006 F:      drivers/clk/clkdev.c
1007
1008 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1009 M:      Mike Rapoport <mike@compulab.co.il>
1010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1011 S:      Maintained
1012
1013 ARM/CONTEC MICRO9 MACHINE SUPPORT
1014 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1015 S:      Maintained
1016 F:      arch/arm/mach-ep93xx/micro9.c
1017
1018 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1019 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1021 S:      Maintained
1022 F:      drivers/hwtracing/coresight/*
1023 F:      Documentation/trace/coresight.txt
1024 F:      Documentation/devicetree/bindings/arm/coresight.txt
1025 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1026
1027 ARM/CORGI MACHINE SUPPORT
1028 M:      Richard Purdie <rpurdie@rpsys.net>
1029 S:      Maintained
1030
1031 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1032 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1034 T:      git git://github.com/ulli-kroll/linux.git
1035 S:      Maintained
1036 F:      arch/arm/mach-gemini/
1037 F:      drivers/rtc/rtc-gemini.c
1038
1039 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1040 M:      Barry Song <baohua@kernel.org>
1041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1043 S:      Maintained
1044 F:      arch/arm/boot/dts/prima2*
1045 F:      arch/arm/mach-prima2/
1046 F:      drivers/clk/sirf/
1047 F:      drivers/clocksource/timer-prima2.c
1048 F:      drivers/clocksource/timer-atlas7.c
1049 N:      [^a-z]sirf
1050
1051 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1052 M:      Baruch Siach <baruch@tkos.co.il>
1053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1054 S:      Maintained
1055 F:      arch/arm/boot/dts/cx92755*
1056 N:      digicolor
1057
1058 ARM/EBSA110 MACHINE SUPPORT
1059 M:      Russell King <linux@arm.linux.org.uk>
1060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1061 W:      http://www.arm.linux.org.uk/
1062 S:      Maintained
1063 F:      arch/arm/mach-ebsa110/
1064 F:      drivers/net/ethernet/amd/am79c961a.*
1065
1066 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1067 M:      Uwe Kleine-König <kernel@pengutronix.de>
1068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1069 S:      Maintained
1070 N:      efm32
1071
1072 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1073 M:      Daniel Ribeiro <drwyrm@gmail.com>
1074 M:      Stefan Schmidt <stefan@openezx.org>
1075 M:      Harald Welte <laforge@openezx.org>
1076 L:      openezx-devel@lists.openezx.org (moderated for non-subscribers)
1077 W:      http://www.openezx.org/
1078 S:      Maintained
1079 T:      topgit git://git.openezx.org/openezx.git
1080 F:      arch/arm/mach-pxa/ezx.c
1081
1082 ARM/FARADAY FA526 PORT
1083 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1085 S:      Maintained
1086 T:      git git://git.berlios.de/gemini-board
1087 F:      arch/arm/mm/*-fa*
1088
1089 ARM/FOOTBRIDGE ARCHITECTURE
1090 M:      Russell King <linux@arm.linux.org.uk>
1091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1092 W:      http://www.arm.linux.org.uk/
1093 S:      Maintained
1094 F:      arch/arm/include/asm/hardware/dec21285.h
1095 F:      arch/arm/mach-footbridge/
1096
1097 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1098 M:      Shawn Guo <shawnguo@kernel.org>
1099 M:      Sascha Hauer <kernel@pengutronix.de>
1100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1101 S:      Maintained
1102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1103 F:      arch/arm/mach-imx/
1104 F:      arch/arm/mach-mxs/
1105 F:      arch/arm/boot/dts/imx*
1106 F:      arch/arm/configs/imx*_defconfig
1107 F:      drivers/clk/imx/
1108 F:      include/soc/imx/
1109
1110 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1111 M:      Shawn Guo <shawnguo@kernel.org>
1112 M:      Sascha Hauer <kernel@pengutronix.de>
1113 R:      Stefan Agner <stefan@agner.ch>
1114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1115 S:      Maintained
1116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1117 F:      arch/arm/mach-imx/*vf610*
1118 F:      arch/arm/boot/dts/vf*
1119
1120 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1121 M:      Lennert Buytenhek <kernel@wantstofly.org>
1122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1123 S:      Maintained
1124
1125 ARM/GUMSTIX MACHINE SUPPORT
1126 M:      Steve Sakoman <sakoman@gmail.com>
1127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1128 S:      Maintained
1129
1130 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1131 M:      Philipp Zabel <philipp.zabel@gmail.com>
1132 M:      Paul Parsons <lost.distance@yahoo.com>
1133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1134 S:      Maintained
1135 F:      arch/arm/mach-pxa/hx4700.c
1136 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1137 F:      sound/soc/pxa/hx4700.c
1138
1139 ARM/HISILICON SOC SUPPORT
1140 M:      Wei Xu <xuwei5@hisilicon.com>
1141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1142 W:      http://www.hisilicon.com
1143 S:      Supported
1144 T:      git git://github.com/hisilicon/linux-hisi.git
1145 F:      arch/arm/mach-hisi/
1146 F:      arch/arm/boot/dts/hi3*
1147 F:      arch/arm/boot/dts/hip*
1148 F:      arch/arm/boot/dts/hisi*
1149 F:      arch/arm64/boot/dts/hisilicon/
1150
1151 ARM/HP JORNADA 7XX MACHINE SUPPORT
1152 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
1153 W:      www.jlime.com
1154 S:      Maintained
1155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1156 F:      arch/arm/mach-sa1100/jornada720.c
1157 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1158
1159 ARM/IGEP MACHINE SUPPORT
1160 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
1161 M:      Javier Martinez Canillas <javier@dowhile0.org>
1162 L:      linux-omap@vger.kernel.org
1163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1164 S:      Maintained
1165 F:      arch/arm/boot/dts/omap3-igep*
1166
1167 ARM/INCOME PXA270 SUPPORT
1168 M:      Marek Vasut <marek.vasut@gmail.com>
1169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1170 S:      Maintained
1171 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1172
1173 ARM/INTEL IOP32X ARM ARCHITECTURE
1174 M:      Lennert Buytenhek <kernel@wantstofly.org>
1175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1176 S:      Maintained
1177
1178 ARM/INTEL IOP33X ARM ARCHITECTURE
1179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1180 S:      Orphan
1181
1182 ARM/INTEL IOP13XX ARM ARCHITECTURE
1183 M:      Lennert Buytenhek <kernel@wantstofly.org>
1184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1185 S:      Maintained
1186
1187 ARM/INTEL IQ81342EX MACHINE SUPPORT
1188 M:      Lennert Buytenhek <kernel@wantstofly.org>
1189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1190 S:      Maintained
1191
1192 ARM/INTEL IXDP2850 MACHINE SUPPORT
1193 M:      Lennert Buytenhek <kernel@wantstofly.org>
1194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1195 S:      Maintained
1196
1197 ARM/INTEL IXP4XX ARM ARCHITECTURE
1198 M:      Imre Kaloz <kaloz@openwrt.org>
1199 M:      Krzysztof Halasa <khalasa@piap.pl>
1200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1201 S:      Maintained
1202 F:      arch/arm/mach-ixp4xx/
1203
1204 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1205 M:      Jonathan Cameron <jic23@cam.ac.uk>
1206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1207 S:      Maintained
1208 F:      arch/arm/mach-pxa/stargate2.c
1209 F:      drivers/pcmcia/pxa2xx_stargate2.c
1210
1211 ARM/INTEL XSC3 (MANZANO) ARM CORE
1212 M:      Lennert Buytenhek <kernel@wantstofly.org>
1213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1214 S:      Maintained
1215
1216 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1217 M:      Lennert Buytenhek <kernel@wantstofly.org>
1218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1219 S:      Maintained
1220
1221 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1222 M:      Santosh Shilimkar <ssantosh@kernel.org>
1223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1224 S:      Maintained
1225 F:      arch/arm/mach-keystone/
1226 F:      arch/arm/boot/dts/k2*
1227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1228
1229 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1230 M:      Santosh Shilimkar <ssantosh@kernel.org>
1231 L:      linux-kernel@vger.kernel.org
1232 S:      Maintained
1233 F:      drivers/clk/keystone/
1234
1235 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1236 M:      Santosh Shilimkar <ssantosh@kernel.org>
1237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1238 L:      linux-kernel@vger.kernel.org
1239 S:      Maintained
1240 F:      drivers/clocksource/timer-keystone.c
1241
1242 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1243 M:      Santosh Shilimkar <ssantosh@kernel.org>
1244 L:      linux-kernel@vger.kernel.org
1245 S:      Maintained
1246 F:      drivers/power/reset/keystone-reset.c
1247
1248 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1249 M:      Santosh Shilimkar <ssantosh@kernel.org>
1250 L:      linux-kernel@vger.kernel.org
1251 S:      Maintained
1252 F:      drivers/memory/*emif*
1253
1254 ARM/LOGICPD PXA270 MACHINE SUPPORT
1255 M:      Lennert Buytenhek <kernel@wantstofly.org>
1256 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1257 S:      Maintained
1258
1259 ARM/LPC18XX ARCHITECTURE
1260 M:      Joachim Eastwood <manabian@gmail.com>
1261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1262 S:      Maintained
1263 F:      arch/arm/boot/dts/lpc43*
1264 F:      drivers/clk/nxp/clk-lpc18xx*
1265 F:      drivers/clocksource/time-lpc32xx.c
1266 F:      drivers/i2c/busses/i2c-lpc2k.c
1267 F:      drivers/memory/pl172.c
1268 F:      drivers/mtd/spi-nor/nxp-spifi.c
1269 F:      drivers/rtc/rtc-lpc24xx.c
1270 N:      lpc18xx
1271
1272 ARM/MAGICIAN MACHINE SUPPORT
1273 M:      Philipp Zabel <philipp.zabel@gmail.com>
1274 S:      Maintained
1275
1276 ARM/Marvell Kirkwood and Armada 370, 375, 38x, XP SOC support
1277 M:      Jason Cooper <jason@lakedaemon.net>
1278 M:      Andrew Lunn <andrew@lunn.ch>
1279 M:      Gregory Clement <gregory.clement@free-electrons.com>
1280 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1282 S:      Maintained
1283 F:      arch/arm/mach-mvebu/
1284 F:      drivers/rtc/rtc-armada38x.c
1285 F:      arch/arm/boot/dts/armada*
1286 F:      arch/arm/boot/dts/kirkwood*
1287
1288
1289 ARM/Marvell Berlin SoC support
1290 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1292 S:      Maintained
1293 F:      arch/arm/mach-berlin/
1294 F:      arch/arm/boot/dts/berlin*
1295 F:      arch/arm64/boot/dts/marvell/berlin*
1296
1297
1298 ARM/Marvell Dove/MV78xx0/Orion SOC support
1299 M:      Jason Cooper <jason@lakedaemon.net>
1300 M:      Andrew Lunn <andrew@lunn.ch>
1301 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
1302 M:      Gregory Clement <gregory.clement@free-electrons.com>
1303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1304 S:      Maintained
1305 F:      arch/arm/mach-dove/
1306 F:      arch/arm/mach-mv78xx0/
1307 F:      arch/arm/mach-orion5x/
1308 F:      arch/arm/plat-orion/
1309 F:      arch/arm/boot/dts/dove*
1310 F:      arch/arm/boot/dts/orion5x*
1311
1312
1313 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1314 M:      Alexander Clouter <alex@digriz.org.uk>
1315 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1316 W:      http://www.digriz.org.uk/ts78xx/kernel
1317 S:      Maintained
1318 F:      arch/arm/mach-orion5x/ts78xx-*
1319
1320 ARM/Mediatek RTC DRIVER
1321 M:      Eddie Huang <eddie.huang@mediatek.com>
1322 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1323 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1324 S:      Maintained
1325 F:      drivers/rtc/rtc-mt6397.c
1326
1327 ARM/Mediatek SoC support
1328 M:      Matthias Brugger <matthias.bgg@gmail.com>
1329 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1330 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1331 S:      Maintained
1332 F:      arch/arm/boot/dts/mt6*
1333 F:      arch/arm/boot/dts/mt8*
1334 F:      arch/arm/mach-mediatek/
1335 N:      mtk
1336 K:      mediatek
1337
1338 ARM/Mediatek USB3 PHY DRIVER
1339 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
1340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1341 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      drivers/phy/phy-mt65xx-usb3.c
1344
1345 ARM/MICREL KS8695 ARCHITECTURE
1346 M:      Greg Ungerer <gerg@uclinux.org>
1347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1348 F:      arch/arm/mach-ks8695/
1349 S:      Odd Fixes
1350
1351 ARM/MIOA701 MACHINE SUPPORT
1352 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1354 F:      arch/arm/mach-pxa/mioa701.c
1355 S:      Maintained
1356
1357 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1358 M:      Michael Petchkovsky <mkpetch@internode.on.net>
1359 S:      Maintained
1360
1361 ARM/NOMADIK ARCHITECTURE
1362 M:      Alessandro Rubini <rubini@unipv.it>
1363 M:      Linus Walleij <linus.walleij@linaro.org>
1364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1365 S:      Maintained
1366 F:      arch/arm/mach-nomadik/
1367 F:      drivers/pinctrl/nomadik/
1368 F:      drivers/i2c/busses/i2c-nomadik.c
1369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1370
1371 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1372 M:      Nelson Castillo <arhuaco@freaks-unidos.net>
1373 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
1374 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1375 S:      Supported
1376
1377 ARM/TOSA MACHINE SUPPORT
1378 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
1379 M:      Dirk Opfer <dirk@opfer-online.de>
1380 S:      Maintained
1381
1382 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1383 M:      Marek Vasut <marek.vasut@gmail.com>
1384 L:      linux-arm-kernel@lists.infradead.org
1385 W:      http://hackndev.com
1386 S:      Maintained
1387 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1388 F:      arch/arm/mach-pxa/palmtx.c
1389 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1390 F:      arch/arm/mach-pxa/palmt5.c
1391 F:      arch/arm/mach-pxa/include/mach/palmld.h
1392 F:      arch/arm/mach-pxa/palmld.c
1393 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1394 F:      arch/arm/mach-pxa/palmte2.c
1395 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1396 F:      arch/arm/mach-pxa/palmtc.c
1397
1398 ARM/PALM TREO SUPPORT
1399 M:      Tomas Cech <sleep_walker@suse.com>
1400 L:      linux-arm-kernel@lists.infradead.org
1401 W:      http://hackndev.com
1402 S:      Maintained
1403 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1404 F:      arch/arm/mach-pxa/palmtreo.c
1405
1406 ARM/PALMZ72 SUPPORT
1407 M:      Sergey Lapin <slapin@ossfans.org>
1408 L:      linux-arm-kernel@lists.infradead.org
1409 W:      http://hackndev.com
1410 S:      Maintained
1411 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1412 F:      arch/arm/mach-pxa/palmz72.c
1413
1414 ARM/PLEB SUPPORT
1415 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
1416 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1417 S:      Maintained
1418
1419 ARM/PT DIGITAL BOARD PORT
1420 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
1421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1422 W:      http://www.arm.linux.org.uk/
1423 S:      Maintained
1424
1425 ARM/QUALCOMM SUPPORT
1426 M:      Andy Gross <andy.gross@linaro.org>
1427 M:      David Brown <david.brown@linaro.org>
1428 L:      linux-arm-msm@vger.kernel.org
1429 L:      linux-soc@vger.kernel.org
1430 S:      Maintained
1431 F:      arch/arm/boot/dts/qcom-*.dts
1432 F:      arch/arm/boot/dts/qcom-*.dtsi
1433 F:      arch/arm/mach-qcom/
1434 F:      arch/arm64/boot/dts/qcom/*
1435 F:      drivers/soc/qcom/
1436 F:      drivers/tty/serial/msm_serial.h
1437 F:      drivers/tty/serial/msm_serial.c
1438 F:      drivers/*/pm8???-*
1439 F:      drivers/mfd/ssbi.c
1440 F:      drivers/firmware/qcom_scm.c
1441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1442
1443 ARM/RADISYS ENP2611 MACHINE SUPPORT
1444 M:      Lennert Buytenhek <kernel@wantstofly.org>
1445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1446 S:      Maintained
1447
1448 ARM/RENESAS ARM64 ARCHITECTURE
1449 M:      Simon Horman <horms@verge.net.au>
1450 M:      Magnus Damm <magnus.damm@gmail.com>
1451 L:      linux-sh@vger.kernel.org
1452 Q:      http://patchwork.kernel.org/project/linux-sh/list/
1453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1454 S:      Supported
1455 F:      arch/arm64/boot/dts/renesas/
1456
1457 ARM/RISCPC ARCHITECTURE
1458 M:      Russell King <linux@arm.linux.org.uk>
1459 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1460 W:      http://www.arm.linux.org.uk/
1461 S:      Maintained
1462 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1463 F:      arch/arm/include/asm/hardware/ioc.h
1464 F:      arch/arm/include/asm/hardware/iomd.h
1465 F:      arch/arm/include/asm/hardware/memc.h
1466 F:      arch/arm/mach-rpc/
1467 F:      drivers/net/ethernet/8390/etherh.c
1468 F:      drivers/net/ethernet/i825xx/ether1*
1469 F:      drivers/net/ethernet/seeq/ether3*
1470 F:      drivers/scsi/arm/
1471
1472 ARM/Rockchip SoC support
1473 M:      Heiko Stuebner <heiko@sntech.de>
1474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1475 L:      linux-rockchip@lists.infradead.org
1476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1477 S:      Maintained
1478 F:      arch/arm/boot/dts/rk3*
1479 F:      arch/arm/mach-rockchip/
1480 F:      drivers/clk/rockchip/
1481 F:      drivers/i2c/busses/i2c-rk3x.c
1482 F:      drivers/*/*rockchip*
1483 F:      drivers/*/*/*rockchip*
1484 F:      sound/soc/rockchip/
1485 N:      rockchip
1486
1487 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1488 M:      Kukjin Kim <kgene@kernel.org>
1489 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
1490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1491 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
1492 S:      Maintained
1493 F:      arch/arm/boot/dts/s3c*
1494 F:      arch/arm/boot/dts/s5p*
1495 F:      arch/arm/boot/dts/samsung*
1496 F:      arch/arm/boot/dts/exynos*
1497 F:      arch/arm64/boot/dts/exynos/
1498 F:      arch/arm/plat-samsung/
1499 F:      arch/arm/mach-s3c24*/
1500 F:      arch/arm/mach-s3c64xx/
1501 F:      arch/arm/mach-s5p*/
1502 F:      arch/arm/mach-exynos*/
1503 F:      drivers/*/*s3c2410*
1504 F:      drivers/*/*/*s3c2410*
1505 F:      drivers/spi/spi-s3c*
1506 F:      sound/soc/samsung/*
1507 F:      Documentation/arm/Samsung/
1508 F:      Documentation/devicetree/bindings/arm/samsung/
1509 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1510 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1511 N:      exynos
1512
1513 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1514 M:      Kyungmin Park <kyungmin.park@samsung.com>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      arch/arm/mach-s5pv210/
1518
1519 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1520 M:      Kyungmin Park <kyungmin.park@samsung.com>
1521 M:      Kamil Debski <k.debski@samsung.com>
1522 L:      linux-arm-kernel@lists.infradead.org
1523 L:      linux-media@vger.kernel.org
1524 S:      Maintained
1525 F:      drivers/media/platform/s5p-g2d/
1526
1527 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1528 M:      Kyungmin Park <kyungmin.park@samsung.com>
1529 M:      Kamil Debski <k.debski@samsung.com>
1530 M:      Jeongtae Park <jtp.park@samsung.com>
1531 L:      linux-arm-kernel@lists.infradead.org
1532 L:      linux-media@vger.kernel.org
1533 S:      Maintained
1534 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1535 F:      drivers/media/platform/s5p-mfc/
1536
1537 ARM/SAMSUNG S5P SERIES TV SUBSYSTEM SUPPORT
1538 M:      Kyungmin Park <kyungmin.park@samsung.com>
1539 M:      Tomasz Stanislawski <t.stanislaws@samsung.com>
1540 L:      linux-arm-kernel@lists.infradead.org
1541 L:      linux-media@vger.kernel.org
1542 S:      Maintained
1543 F:      drivers/media/platform/s5p-tv/
1544
1545 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1546 M:      Andrzej Pietrasiewicz <andrzej.p@samsung.com>
1547 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
1548 L:      linux-arm-kernel@lists.infradead.org
1549 L:      linux-media@vger.kernel.org
1550 S:      Maintained
1551 F:      drivers/media/platform/s5p-jpeg/
1552
1553 ARM/SHMOBILE ARM ARCHITECTURE
1554 M:      Simon Horman <horms@verge.net.au>
1555 M:      Magnus Damm <magnus.damm@gmail.com>
1556 L:      linux-renesas-soc@vger.kernel.org
1557 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1559 S:      Supported
1560 F:      arch/arm/boot/dts/emev2*
1561 F:      arch/arm/boot/dts/r7s*
1562 F:      arch/arm/boot/dts/r8a*
1563 F:      arch/arm/boot/dts/sh*
1564 F:      arch/arm/configs/shmobile_defconfig
1565 F:      arch/arm/include/debug/renesas-scif.S
1566 F:      arch/arm/mach-shmobile/
1567 F:      drivers/sh/
1568
1569 ARM/SOCFPGA ARCHITECTURE
1570 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1571 S:      Maintained
1572 F:      arch/arm/mach-socfpga/
1573 F:      arch/arm/boot/dts/socfpga*
1574 F:      arch/arm/configs/socfpga_defconfig
1575 F:      arch/arm64/boot/dts/altera/
1576 W:      http://www.rocketboards.org
1577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1578
1579 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1580 M:      Dinh Nguyen <dinguyen@opensource.altera.com>
1581 S:      Maintained
1582 F:      drivers/clk/socfpga/
1583
1584 ARM/SOCFPGA EDAC SUPPORT
1585 M:      Thor Thayer <tthayer@opensource.altera.com>
1586 S:      Maintained
1587 F:      drivers/edac/altera_edac.
1588
1589 ARM/STI ARCHITECTURE
1590 M:      Srinivas Kandagatla <srinivas.kandagatla@gmail.com>
1591 M:      Maxime Coquelin <maxime.coquelin@st.com>
1592 M:      Patrice Chotard <patrice.chotard@st.com>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 L:      kernel@stlinux.com
1595 W:      http://www.stlinux.com
1596 S:      Maintained
1597 F:      arch/arm/mach-sti/
1598 F:      arch/arm/boot/dts/sti*
1599 F:      drivers/char/hw_random/st-rng.c
1600 F:      drivers/clocksource/arm_global_timer.c
1601 F:      drivers/clocksource/clksrc_st_lpc.c
1602 F:      drivers/i2c/busses/i2c-st.c
1603 F:      drivers/media/rc/st_rc.c
1604 F:      drivers/media/platform/sti/c8sectpfe/
1605 F:      drivers/mmc/host/sdhci-st.c
1606 F:      drivers/phy/phy-miphy28lp.c
1607 F:      drivers/phy/phy-miphy365x.c
1608 F:      drivers/phy/phy-stih407-usb.c
1609 F:      drivers/phy/phy-stih41x-usb.c
1610 F:      drivers/pinctrl/pinctrl-st.c
1611 F:      drivers/reset/sti/
1612 F:      drivers/rtc/rtc-st-lpc.c
1613 F:      drivers/tty/serial/st-asc.c
1614 F:      drivers/usb/dwc3/dwc3-st.c
1615 F:      drivers/usb/host/ehci-st.c
1616 F:      drivers/usb/host/ohci-st.c
1617 F:      drivers/watchdog/st_lpc_wdt.c
1618 F:      drivers/ata/ahci_st.c
1619
1620 ARM/STM32 ARCHITECTURE
1621 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
1622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 S:      Maintained
1624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1625 N:      stm32
1626 F:      drivers/clocksource/armv7m_systick.c
1627
1628 ARM/TANGO ARCHITECTURE
1629 M:      Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
1630 L:      linux-arm-kernel@lists.infradead.org
1631 S:      Maintained
1632 F:      arch/arm/mach-tango/
1633 F:      arch/arm/boot/dts/tango*
1634
1635 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1636 M:      Lennert Buytenhek <kernel@wantstofly.org>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 S:      Maintained
1639
1640 ARM/TETON BGA MACHINE SUPPORT
1641 M:      "Mark F. Brown" <mark.brown314@gmail.com>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 S:      Maintained
1644
1645 ARM/THECUS N2100 MACHINE SUPPORT
1646 M:      Lennert Buytenhek <kernel@wantstofly.org>
1647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1648 S:      Maintained
1649
1650 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1651 M:      Wan ZongShun <mcuos.com@gmail.com>
1652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653 W:      http://www.mcuos.com
1654 S:      Maintained
1655 F:      arch/arm/mach-w90x900/
1656 F:      drivers/input/keyboard/w90p910_keypad.c
1657 F:      drivers/input/touchscreen/w90p910_ts.c
1658 F:      drivers/watchdog/nuc900_wdt.c
1659 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1660 F:      drivers/mtd/nand/nuc900_nand.c
1661 F:      drivers/rtc/rtc-nuc900.c
1662 F:      drivers/spi/spi-nuc900.c
1663 F:      drivers/usb/host/ehci-w90x900.c
1664 F:      drivers/video/fbdev/nuc900fb.c
1665
1666 ARM/U300 MACHINE SUPPORT
1667 M:      Linus Walleij <linus.walleij@linaro.org>
1668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1669 S:      Supported
1670 F:      arch/arm/mach-u300/
1671 F:      drivers/clocksource/timer-u300.c
1672 F:      drivers/i2c/busses/i2c-stu300.c
1673 F:      drivers/rtc/rtc-coh901331.c
1674 F:      drivers/watchdog/coh901327_wdt.c
1675 F:      drivers/dma/coh901318*
1676 F:      drivers/mfd/ab3100*
1677 F:      drivers/rtc/rtc-ab3100.c
1678 F:      drivers/rtc/rtc-coh901331.c
1679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1680
1681 ARM/UNIPHIER ARCHITECTURE
1682 M:      Masahiro Yamada <yamada.masahiro@socionext.com>
1683 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1684 S:      Maintained
1685 F:      arch/arm/boot/dts/uniphier*
1686 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1687 F:      arch/arm/mach-uniphier/
1688 F:      arch/arm/mm/cache-uniphier.c
1689 F:      arch/arm64/boot/dts/socionext/
1690 F:      drivers/bus/uniphier-system-bus.c
1691 F:      drivers/i2c/busses/i2c-uniphier*
1692 F:      drivers/pinctrl/uniphier/
1693 F:      drivers/tty/serial/8250/8250_uniphier.c
1694 N:      uniphier
1695
1696 ARM/Ux500 ARM ARCHITECTURE
1697 M:      Linus Walleij <linus.walleij@linaro.org>
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 F:      arch/arm/mach-ux500/
1701 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1702 F:      drivers/dma/ste_dma40*
1703 F:      drivers/hwspinlock/u8500_hsem.c
1704 F:      drivers/mfd/abx500*
1705 F:      drivers/mfd/ab8500*
1706 F:      drivers/mfd/dbx500*
1707 F:      drivers/mfd/db8500*
1708 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1709 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1710 F:      drivers/rtc/rtc-ab8500.c
1711 F:      drivers/rtc/rtc-pl031.c
1712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1713
1714 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1715 M:      Ulf Hansson <ulf.hansson@linaro.org>
1716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1717 T:      git git://git.linaro.org/people/ulfh/clk.git
1718 S:      Maintained
1719 F:      drivers/clk/ux500/
1720 F:      include/linux/platform_data/clk-ux500.h
1721
1722 ARM/VERSATILE EXPRESS PLATFORM
1723 M:      Liviu Dudau <liviu.dudau@arm.com>
1724 M:      Sudeep Holla <sudeep.holla@arm.com>
1725 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
1726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1727 S:      Maintained
1728 F:      arch/arm/boot/dts/vexpress*
1729 F:      arch/arm64/boot/dts/arm/
1730 F:      arch/arm/mach-vexpress/
1731 F:      */*/vexpress*
1732 F:      */*/*/vexpress*
1733 F:      drivers/clk/versatile/clk-vexpress-osc.c
1734 F:      drivers/clocksource/versatile.c
1735
1736 ARM/VFP SUPPORT
1737 M:      Russell King <linux@arm.linux.org.uk>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 W:      http://www.arm.linux.org.uk/
1740 S:      Maintained
1741 F:      arch/arm/vfp/
1742
1743 ARM/VOIPAC PXA270 SUPPORT
1744 M:      Marek Vasut <marek.vasut@gmail.com>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747 F:      arch/arm/mach-pxa/vpac270.c
1748 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1749
1750 ARM/VT8500 ARM ARCHITECTURE
1751 M:      Tony Prisk <linux@prisktech.co.nz>
1752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753 S:      Maintained
1754 F:      arch/arm/mach-vt8500/
1755 F:      drivers/clocksource/vt8500_timer.c
1756 F:      drivers/i2c/busses/i2c-wmt.c
1757 F:      drivers/mmc/host/wmt-sdmmc.c
1758 F:      drivers/pwm/pwm-vt8500.c
1759 F:      drivers/rtc/rtc-vt8500.c
1760 F:      drivers/tty/serial/vt8500_serial.c
1761 F:      drivers/usb/host/ehci-platform.c
1762 F:      drivers/usb/host/uhci-platform.c
1763 F:      drivers/video/fbdev/vt8500lcdfb.*
1764 F:      drivers/video/fbdev/wm8505fb*
1765 F:      drivers/video/fbdev/wmt_ge_rops.*
1766
1767 ARM/ZIPIT Z2 SUPPORT
1768 M:      Marek Vasut <marek.vasut@gmail.com>
1769 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1770 S:      Maintained
1771 F:      arch/arm/mach-pxa/z2.c
1772 F:      arch/arm/mach-pxa/include/mach/z2.h
1773
1774 ARM/ZTE ARCHITECTURE
1775 M:      Jun Nie <jun.nie@linaro.org>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 F:      arch/arm/mach-zx/
1779 F:      drivers/clk/zte/
1780 F:      Documentation/devicetree/bindings/arm/zte.txt
1781 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
1782
1783 ARM/ZYNQ ARCHITECTURE
1784 M:      Michal Simek <michal.simek@xilinx.com>
1785 R:      Sören Brinkmann <soren.brinkmann@xilinx.com>
1786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1787 W:      http://wiki.xilinx.com
1788 T:      git https://github.com/Xilinx/linux-xlnx.git
1789 S:      Supported
1790 F:      arch/arm/mach-zynq/
1791 F:      drivers/cpuidle/cpuidle-zynq.c
1792 F:      drivers/block/xsysace.c
1793 N:      zynq
1794 N:      xilinx
1795 F:      drivers/clocksource/cadence_ttc_timer.c
1796 F:      drivers/i2c/busses/i2c-cadence.c
1797 F:      drivers/mmc/host/sdhci-of-arasan.c
1798 F:      drivers/edac/synopsys_edac.c
1799
1800 ARM SMMU DRIVERS
1801 M:      Will Deacon <will.deacon@arm.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 S:      Maintained
1804 F:      drivers/iommu/arm-smmu.c
1805 F:      drivers/iommu/arm-smmu-v3.c
1806 F:      drivers/iommu/io-pgtable-arm.c
1807
1808 ARM64 PORT (AARCH64 ARCHITECTURE)
1809 M:      Catalin Marinas <catalin.marinas@arm.com>
1810 M:      Will Deacon <will.deacon@arm.com>
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
1813 S:      Maintained
1814 F:      arch/arm64/
1815 F:      Documentation/arm64/
1816
1817 AS3645A LED FLASH CONTROLLER DRIVER
1818 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
1819 L:      linux-media@vger.kernel.org
1820 T:      git git://linuxtv.org/media_tree.git
1821 S:      Maintained
1822 F:      drivers/media/i2c/as3645a.c
1823 F:      include/media/i2c/as3645a.h
1824
1825 ASC7621 HARDWARE MONITOR DRIVER
1826 M:      George Joseph <george.joseph@fairview5.com>
1827 L:      lm-sensors@lm-sensors.org
1828 S:      Maintained
1829 F:      Documentation/hwmon/asc7621
1830 F:      drivers/hwmon/asc7621.c
1831
1832 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
1833 M:      Corentin Chary <corentin.chary@gmail.com>
1834 L:      acpi4asus-user@lists.sourceforge.net
1835 L:      platform-driver-x86@vger.kernel.org
1836 W:      http://acpi4asus.sf.net
1837 S:      Maintained
1838 F:      drivers/platform/x86/asus*.c
1839 F:      drivers/platform/x86/eeepc*.c
1840
1841 ASUS WIRELESS RADIO CONTROL DRIVER
1842 M:      JoĂ£o Paulo Rechi Vita <jprvita@gmail.com>
1843 L:      platform-driver-x86@vger.kernel.org
1844 S:      Maintained
1845 F:      drivers/platform/x86/asus-wireless.c
1846
1847 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
1848 R:      Dan Williams <dan.j.williams@intel.com>
1849 W:      http://sourceforge.net/projects/xscaleiop
1850 S:      Odd fixes
1851 F:      Documentation/crypto/async-tx-api.txt
1852 F:      crypto/async_tx/
1853 F:      drivers/dma/
1854 F:      include/linux/dmaengine.h
1855 F:      include/linux/async_tx.h
1856
1857 AT24 EEPROM DRIVER
1858 M:      Wolfram Sang <wsa@the-dreams.de>
1859 L:      linux-i2c@vger.kernel.org
1860 S:      Maintained
1861 F:      drivers/misc/eeprom/at24.c
1862 F:      include/linux/platform_data/at24.h
1863
1864 ATA OVER ETHERNET (AOE) DRIVER
1865 M:      "Ed L. Cashin" <ed.cashin@acm.org>
1866 W:      http://www.openaoe.org/
1867 S:      Supported
1868 F:      Documentation/aoe/
1869 F:      drivers/block/aoe/
1870
1871 ATHEROS 71XX/9XXX GPIO DRIVER
1872 M:      Alban Bedel <albeu@free.fr>
1873 W:      https://github.com/AlbanBedel/linux
1874 T:      git git://github.com/AlbanBedel/linux
1875 S:      Maintained
1876 F:      drivers/gpio/gpio-ath79.c
1877 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
1878
1879 ATHEROS ATH GENERIC UTILITIES
1880 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1881 L:      linux-wireless@vger.kernel.org
1882 S:      Supported
1883 F:      drivers/net/wireless/ath/*
1884
1885 ATHEROS ATH5K WIRELESS DRIVER
1886 M:      Jiri Slaby <jirislaby@gmail.com>
1887 M:      Nick Kossifidis <mickflemm@gmail.com>
1888 M:      "Luis R. Rodriguez" <mcgrof@do-not-panic.com>
1889 L:      linux-wireless@vger.kernel.org
1890 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
1891 S:      Maintained
1892 F:      drivers/net/wireless/ath/ath5k/
1893
1894 ATHEROS ATH6KL WIRELESS DRIVER
1895 M:      Kalle Valo <kvalo@qca.qualcomm.com>
1896 L:      linux-wireless@vger.kernel.org
1897 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
1898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
1899 S:      Supported
1900 F:      drivers/net/wireless/ath/ath6kl/
1901
1902 WILOCITY WIL6210 WIRELESS DRIVER
1903 M:      Maya Erez <qca_merez@qca.qualcomm.com>
1904 L:      linux-wireless@vger.kernel.org
1905 L:      wil6210@qca.qualcomm.com
1906 S:      Supported
1907 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
1908 F:      drivers/net/wireless/ath/wil6210/
1909 F:      include/uapi/linux/wil6210_uapi.h
1910
1911 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
1912 M:      Christian Lamparter <chunkeey@googlemail.com>
1913 L:      linux-wireless@vger.kernel.org
1914 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
1915 S:      Maintained
1916 F:      drivers/net/wireless/ath/carl9170/
1917
1918 ATK0110 HWMON DRIVER
1919 M:      Luca Tettamanti <kronos.it@gmail.com>
1920 L:      lm-sensors@lm-sensors.org
1921 S:      Maintained
1922 F:      drivers/hwmon/asus_atk0110.c
1923
1924 ATI_REMOTE2 DRIVER
1925 M:      Ville Syrjala <syrjala@sci.fi>
1926 S:      Maintained
1927 F:      drivers/input/misc/ati_remote2.c
1928
1929 ATLX ETHERNET DRIVERS
1930 M:      Jay Cliburn <jcliburn@gmail.com>
1931 M:      Chris Snook <chris.snook@gmail.com>
1932 L:      netdev@vger.kernel.org
1933 W:      http://sourceforge.net/projects/atl1
1934 W:      http://atl1.sourceforge.net
1935 S:      Maintained
1936 F:      drivers/net/ethernet/atheros/
1937
1938 ATM
1939 M:      Chas Williams <3chas3@gmail.com>
1940 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
1941 L:      netdev@vger.kernel.org
1942 W:      http://linux-atm.sourceforge.net
1943 S:      Maintained
1944 F:      drivers/atm/
1945 F:      include/linux/atm*
1946 F:      include/uapi/linux/atm*
1947
1948 ATMEL AT91 / AT32 MCI DRIVER
1949 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1950 S:      Maintained
1951 F:      drivers/mmc/host/atmel-mci.c
1952
1953 ATMEL AT91 / AT32 SERIAL DRIVER
1954 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1955 S:      Supported
1956 F:      drivers/tty/serial/atmel_serial.c
1957
1958 ATMEL Audio ALSA driver
1959 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1960 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1961 S:      Supported
1962 F:      sound/soc/atmel
1963
1964 ATMEL DMA DRIVER
1965 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Supported
1968 F:      drivers/dma/at_hdmac.c
1969 F:      drivers/dma/at_hdmac_regs.h
1970 F:      include/linux/platform_data/dma-atmel.h
1971
1972 ATMEL XDMA DRIVER
1973 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1974 L:      linux-arm-kernel@lists.infradead.org
1975 L:      dmaengine@vger.kernel.org
1976 S:      Supported
1977 F:      drivers/dma/at_xdmac.c
1978
1979 ATMEL I2C DRIVER
1980 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1981 L:      linux-i2c@vger.kernel.org
1982 S:      Supported
1983 F:      drivers/i2c/busses/i2c-at91.c
1984
1985 ATMEL ISI DRIVER
1986 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
1987 L:      linux-media@vger.kernel.org
1988 S:      Supported
1989 F:      drivers/media/platform/soc_camera/atmel-isi.c
1990 F:      include/media/atmel-isi.h
1991
1992 ATMEL LCDFB DRIVER
1993 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
1994 L:      linux-fbdev@vger.kernel.org
1995 S:      Maintained
1996 F:      drivers/video/fbdev/atmel_lcdfb.c
1997 F:      include/video/atmel_lcdc.h
1998
1999 ATMEL MACB ETHERNET DRIVER
2000 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2001 S:      Supported
2002 F:      drivers/net/ethernet/cadence/
2003
2004 ATMEL NAND DRIVER
2005 M:      Wenyou Yang <wenyou.yang@atmel.com>
2006 M:      Josh Wu <rainyfeeling@outlook.com>
2007 L:      linux-mtd@lists.infradead.org
2008 S:      Supported
2009 F:      drivers/mtd/nand/atmel_nand*
2010
2011 ATMEL SDMMC DRIVER
2012 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
2013 L:      linux-mmc@vger.kernel.org
2014 S:      Supported
2015 F:      drivers/mmc/host/sdhci-of-at91.c
2016
2017 ATMEL SPI DRIVER
2018 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2019 S:      Supported
2020 F:      drivers/spi/spi-atmel.*
2021
2022 ATMEL SSC DRIVER
2023 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2024 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2025 S:      Supported
2026 F:      drivers/misc/atmel-ssc.c
2027 F:      include/linux/atmel-ssc.h
2028
2029 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2030 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Supported
2033 F:      drivers/misc/atmel_tclib.c
2034 F:      drivers/clocksource/tcb_clksrc.c
2035
2036 ATMEL USBA UDC DRIVER
2037 M:      Nicolas Ferre <nicolas.ferre@atmel.com>
2038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2039 S:      Supported
2040 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2041
2042 ATMEL WIRELESS DRIVER
2043 M:      Simon Kelley <simon@thekelleys.org.uk>
2044 L:      linux-wireless@vger.kernel.org
2045 W:      http://www.thekelleys.org.uk/atmel
2046 W:      http://atmelwlandriver.sourceforge.net/
2047 S:      Maintained
2048 F:      drivers/net/wireless/atmel/atmel*
2049
2050 ATMEL MAXTOUCH DRIVER
2051 M:      Nick Dyer <nick.dyer@itdev.co.uk>
2052 T:      git git://github.com/atmel-maxtouch/linux.git
2053 S:      Supported
2054 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2055 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2056 F:      include/linux/platform_data/atmel_mxt_ts.h
2057
2058 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2059 M:      Bradley Grove <linuxdrivers@attotech.com>
2060 L:      linux-scsi@vger.kernel.org
2061 W:      http://www.attotech.com
2062 S:      Supported
2063 F:      drivers/scsi/esas2r
2064
2065 ATUSB IEEE 802.15.4 RADIO DRIVER
2066 M:      Stefan Schmidt <stefan@osg.samsung.com>
2067 L:      linux-wpan@vger.kernel.org
2068 S:      Maintained
2069 F:      drivers/net/ieee802154/atusb.c
2070 F:      drivers/net/ieee802154/atusb.h
2071 F:      drivers/net/ieee802154/at86rf230.h
2072
2073 AUDIT SUBSYSTEM
2074 M:      Paul Moore <paul@paul-moore.com>
2075 M:      Eric Paris <eparis@redhat.com>
2076 L:      linux-audit@redhat.com (moderated for non-subscribers)
2077 W:      http://people.redhat.com/sgrubb/audit/
2078 T:      git git://git.infradead.org/users/pcmoore/audit
2079 S:      Maintained
2080 F:      include/linux/audit.h
2081 F:      include/uapi/linux/audit.h
2082 F:      kernel/audit*
2083
2084 AUXILIARY DISPLAY DRIVERS
2085 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2086 W:      http://miguelojeda.es/auxdisplay.htm
2087 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2088 S:      Maintained
2089 F:      drivers/auxdisplay/
2090 F:      include/linux/cfag12864b.h
2091
2092 AVR32 ARCHITECTURE
2093 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2094 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2095 W:      http://www.atmel.com/products/AVR32/
2096 W:      http://mirror.egtvedt.no/avr32linux.org/
2097 W:      http://avrfreaks.net/
2098 S:      Maintained
2099 F:      arch/avr32/
2100
2101 AVR32/AT32AP MACHINE SUPPORT
2102 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
2103 M:      Hans-Christian Egtvedt <egtvedt@samfundet.no>
2104 S:      Maintained
2105 F:      arch/avr32/mach-at32ap/
2106
2107 AX.25 NETWORK LAYER
2108 M:      Ralf Baechle <ralf@linux-mips.org>
2109 L:      linux-hams@vger.kernel.org
2110 W:      http://www.linux-ax25.org/
2111 S:      Maintained
2112 F:      include/uapi/linux/ax25.h
2113 F:      include/net/ax25.h
2114 F:      net/ax25/
2115
2116 AZ6007 DVB DRIVER
2117 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2118 L:      linux-media@vger.kernel.org
2119 W:      https://linuxtv.org
2120 T:      git git://linuxtv.org/media_tree.git
2121 S:      Maintained
2122 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2123
2124 AZTECH FM RADIO RECEIVER DRIVER
2125 M:      Hans Verkuil <hverkuil@xs4all.nl>
2126 L:      linux-media@vger.kernel.org
2127 T:      git git://linuxtv.org/media_tree.git
2128 W:      https://linuxtv.org
2129 S:      Maintained
2130 F:      drivers/media/radio/radio-aztech*
2131
2132 B43 WIRELESS DRIVER
2133 L:      linux-wireless@vger.kernel.org
2134 L:      b43-dev@lists.infradead.org
2135 W:      http://wireless.kernel.org/en/users/Drivers/b43
2136 S:      Odd Fixes
2137 F:      drivers/net/wireless/broadcom/b43/
2138
2139 B43LEGACY WIRELESS DRIVER
2140 M:      Larry Finger <Larry.Finger@lwfinger.net>
2141 L:      linux-wireless@vger.kernel.org
2142 L:      b43-dev@lists.infradead.org
2143 W:      http://wireless.kernel.org/en/users/Drivers/b43
2144 S:      Maintained
2145 F:      drivers/net/wireless/broadcom/b43legacy/
2146
2147 BACKLIGHT CLASS/SUBSYSTEM
2148 M:      Jingoo Han <jingoohan1@gmail.com>
2149 M:      Lee Jones <lee.jones@linaro.org>
2150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2151 S:      Maintained
2152 F:      drivers/video/backlight/
2153 F:      include/linux/backlight.h
2154
2155 BATMAN ADVANCED
2156 M:      Marek Lindner <mareklindner@neomailbox.ch>
2157 M:      Simon Wunderlich <sw@simonwunderlich.de>
2158 M:      Antonio Quartulli <a@unstable.cc>
2159 L:      b.a.t.m.a.n@lists.open-mesh.org
2160 W:      http://www.open-mesh.org/
2161 S:      Maintained
2162 F:      net/batman-adv/
2163
2164 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2165 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
2166 L:      linux-hams@vger.kernel.org
2167 W:      http://www.baycom.org/~tom/ham/ham.html
2168 S:      Maintained
2169 F:      drivers/net/hamradio/baycom*
2170
2171 BCACHE (BLOCK LAYER CACHE)
2172 M:      Kent Overstreet <kent.overstreet@gmail.com>
2173 L:      linux-bcache@vger.kernel.org
2174 W:      http://bcache.evilpiepirate.org
2175 S:      Maintained
2176 F:      drivers/md/bcache/
2177
2178 BDISP ST MEDIA DRIVER
2179 M:      Fabien Dessenne <fabien.dessenne@st.com>
2180 L:      linux-media@vger.kernel.org
2181 T:      git git://linuxtv.org/media_tree.git
2182 W:      https://linuxtv.org
2183 S:      Supported
2184 F:      drivers/media/platform/sti/bdisp
2185
2186 BEFS FILE SYSTEM
2187 S:      Orphan
2188 F:      Documentation/filesystems/befs.txt
2189 F:      fs/befs/
2190
2191 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2192 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
2193 L:      netdev@vger.kernel.org
2194 S:      Maintained
2195 F:      drivers/net/ethernet/ec_bhf.c
2196
2197 BFS FILE SYSTEM
2198 M:      "Tigran A. Aivazian" <tigran@aivazian.fsnet.co.uk>
2199 S:      Maintained
2200 F:      Documentation/filesystems/bfs.txt
2201 F:      fs/bfs/
2202 F:      include/uapi/linux/bfs_fs.h
2203
2204 BLACKFIN ARCHITECTURE
2205 M:      Steven Miao <realmz6@gmail.com>
2206 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2207 T:      git git://git.code.sf.net/p/adi-linux/code
2208 W:      http://blackfin.uclinux.org
2209 S:      Supported
2210 F:      arch/blackfin/
2211
2212 BLACKFIN EMAC DRIVER
2213 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2214 W:      http://blackfin.uclinux.org
2215 S:      Supported
2216 F:      drivers/net/ethernet/adi/
2217
2218 BLACKFIN RTC DRIVER
2219 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2220 W:      http://blackfin.uclinux.org
2221 S:      Supported
2222 F:      drivers/rtc/rtc-bfin.c
2223
2224 BLACKFIN SDH DRIVER
2225 M:      Sonic Zhang <sonic.zhang@analog.com>
2226 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2227 W:      http://blackfin.uclinux.org
2228 S:      Supported
2229 F:      drivers/mmc/host/bfin_sdh.c
2230
2231 BLACKFIN SERIAL DRIVER
2232 M:      Sonic Zhang <sonic.zhang@analog.com>
2233 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2234 W:      http://blackfin.uclinux.org
2235 S:      Supported
2236 F:      drivers/tty/serial/bfin_uart.c
2237
2238 BLACKFIN WATCHDOG DRIVER
2239 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2240 W:      http://blackfin.uclinux.org
2241 S:      Supported
2242 F:      drivers/watchdog/bfin_wdt.c
2243
2244 BLACKFIN I2C TWI DRIVER
2245 M:      Sonic Zhang <sonic.zhang@analog.com>
2246 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2247 W:      http://blackfin.uclinux.org/
2248 S:      Supported
2249 F:      drivers/i2c/busses/i2c-bfin-twi.c
2250
2251 BLACKFIN MEDIA DRIVER
2252 M:      Scott Jiang <scott.jiang.linux@gmail.com>
2253 L:      adi-buildroot-devel@lists.sourceforge.net (moderated for non-subscribers)
2254 W:      http://blackfin.uclinux.org/
2255 S:      Supported
2256 F:      drivers/media/platform/blackfin/
2257 F:      drivers/media/i2c/adv7183*
2258 F:      drivers/media/i2c/vs6624*
2259
2260 BLINKM RGB LED DRIVER
2261 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
2262 S:      Maintained
2263 F:      drivers/leds/leds-blinkm.c
2264
2265 BLOCK LAYER
2266 M:      Jens Axboe <axboe@kernel.dk>
2267 L:      linux-block@vger.kernel.org
2268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2269 S:      Maintained
2270 F:      block/
2271 F:      kernel/trace/blktrace.c
2272
2273 BLOCK2MTD DRIVER
2274 M:      Joern Engel <joern@lazybastard.org>
2275 L:      linux-mtd@lists.infradead.org
2276 S:      Maintained
2277 F:      drivers/mtd/devices/block2mtd.c
2278
2279 BLUETOOTH DRIVERS
2280 M:      Marcel Holtmann <marcel@holtmann.org>
2281 M:      Gustavo Padovan <gustavo@padovan.org>
2282 M:      Johan Hedberg <johan.hedberg@gmail.com>
2283 L:      linux-bluetooth@vger.kernel.org
2284 W:      http://www.bluez.org/
2285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2287 S:      Maintained
2288 F:      drivers/bluetooth/
2289
2290 BLUETOOTH SUBSYSTEM
2291 M:      Marcel Holtmann <marcel@holtmann.org>
2292 M:      Gustavo Padovan <gustavo@padovan.org>
2293 M:      Johan Hedberg <johan.hedberg@gmail.com>
2294 L:      linux-bluetooth@vger.kernel.org
2295 W:      http://www.bluez.org/
2296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2298 S:      Maintained
2299 F:      net/bluetooth/
2300 F:      include/net/bluetooth/
2301
2302 BONDING DRIVER
2303 M:      Jay Vosburgh <j.vosburgh@gmail.com>
2304 M:      Veaceslav Falico <vfalico@gmail.com>
2305 M:      Andy Gospodarek <gospo@cumulusnetworks.com>
2306 L:      netdev@vger.kernel.org
2307 W:      http://sourceforge.net/projects/bonding/
2308 S:      Supported
2309 F:      drivers/net/bonding/
2310 F:      include/uapi/linux/if_bonding.h
2311
2312 BPF (Safe dynamic programs and tools)
2313 M:      Alexei Starovoitov <ast@kernel.org>
2314 L:      netdev@vger.kernel.org
2315 L:      linux-kernel@vger.kernel.org
2316 S:      Supported
2317 F:      kernel/bpf/
2318
2319 BROADCOM B44 10/100 ETHERNET DRIVER
2320 M:      Gary Zambrano <zambrano@broadcom.com>
2321 L:      netdev@vger.kernel.org
2322 S:      Supported
2323 F:      drivers/net/ethernet/broadcom/b44.*
2324
2325 BROADCOM GENET ETHERNET DRIVER
2326 M:      Florian Fainelli <f.fainelli@gmail.com>
2327 L:      netdev@vger.kernel.org
2328 S:      Supported
2329 F:      drivers/net/ethernet/broadcom/genet/
2330
2331 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2332 M:      Sony Chacko <sony.chacko@qlogic.com>
2333 M:      Dept-HSGLinuxNICDev@qlogic.com
2334 L:      netdev@vger.kernel.org
2335 S:      Supported
2336 F:      drivers/net/ethernet/broadcom/bnx2.*
2337 F:      drivers/net/ethernet/broadcom/bnx2_*
2338
2339 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2340 M:      Ariel Elior <ariel.elior@qlogic.com>
2341 L:      netdev@vger.kernel.org
2342 S:      Supported
2343 F:      drivers/net/ethernet/broadcom/bnx2x/
2344
2345 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2346 M:      Florian Fainelli <f.fainelli@gmail.com>
2347 M:      Ray Jui <rjui@broadcom.com>
2348 M:      Scott Branden <sbranden@broadcom.com>
2349 L:      bcm-kernel-feedback-list@broadcom.com
2350 T:      git git://github.com/broadcom/mach-bcm
2351 S:      Maintained
2352 F:      arch/arm/mach-bcm/
2353 F:      arch/arm/boot/dts/bcm113*
2354 F:      arch/arm/boot/dts/bcm216*
2355 F:      arch/arm/boot/dts/bcm281*
2356 F:      arch/arm64/boot/dts/broadcom/
2357 F:      arch/arm/configs/bcm_defconfig
2358 F:      drivers/mmc/host/sdhci-bcm-kona.c
2359 F:      drivers/clocksource/bcm_kona_timer.c
2360
2361 BROADCOM BCM2835 ARM ARCHITECTURE
2362 M:      Stephen Warren <swarren@wwwdotorg.org>
2363 M:      Lee Jones <lee@kernel.org>
2364 M:      Eric Anholt <eric@anholt.net>
2365 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rpi/linux-rpi.git
2368 S:      Maintained
2369 N:      bcm2835
2370
2371 BROADCOM BCM33XX MIPS ARCHITECTURE
2372 M:      Kevin Cernekee <cernekee@gmail.com>
2373 L:      linux-mips@linux-mips.org
2374 S:      Maintained
2375 F:      arch/mips/bcm3384/*
2376 F:      arch/mips/include/asm/mach-bcm3384/*
2377 F:      arch/mips/kernel/*bmips*
2378
2379 BROADCOM BCM47XX MIPS ARCHITECTURE
2380 M:      Hauke Mehrtens <hauke@hauke-m.de>
2381 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2382 L:      linux-mips@linux-mips.org
2383 S:      Maintained
2384 F:      arch/mips/bcm47xx/*
2385 F:      arch/mips/include/asm/mach-bcm47xx/*
2386
2387 BROADCOM BCM5301X ARM ARCHITECTURE
2388 M:      Hauke Mehrtens <hauke@hauke-m.de>
2389 L:      linux-arm-kernel@lists.infradead.org
2390 S:      Maintained
2391 F:      arch/arm/mach-bcm/bcm_5301x.c
2392 F:      arch/arm/boot/dts/bcm5301x.dtsi
2393 F:      arch/arm/boot/dts/bcm470*
2394
2395 BROADCOM BCM63XX ARM ARCHITECTURE
2396 M:      Florian Fainelli <f.fainelli@gmail.com>
2397 L:      linux-arm-kernel@lists.infradead.org
2398 T:      git git://github.com/broadcom/arm-bcm63xx.git
2399 S:      Maintained
2400 F:      arch/arm/mach-bcm/bcm63xx.c
2401 F:      arch/arm/include/debug/bcm63xx.S
2402
2403 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2404 M:      Kevin Cernekee <cernekee@gmail.com>
2405 L:      linux-usb@vger.kernel.org
2406 S:      Maintained
2407 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2408
2409 BROADCOM BCM7XXX ARM ARCHITECTURE
2410 M:      Brian Norris <computersforpeace@gmail.com>
2411 M:      Gregory Fong <gregory.0xf0@gmail.com>
2412 M:      Florian Fainelli <f.fainelli@gmail.com>
2413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2414 L:      bcm-kernel-feedback-list@broadcom.com
2415 T:      git git://github.com/broadcom/stblinux.git
2416 S:      Maintained
2417 F:      arch/arm/mach-bcm/*brcmstb*
2418 F:      arch/arm/boot/dts/bcm7*.dts*
2419 F:      drivers/bus/brcmstb_gisb.c
2420 N:      brcmstb
2421
2422 BROADCOM BMIPS MIPS ARCHITECTURE
2423 M:      Kevin Cernekee <cernekee@gmail.com>
2424 M:      Florian Fainelli <f.fainelli@gmail.com>
2425 L:      linux-mips@linux-mips.org
2426 T:      git git://github.com/broadcom/stblinux.git
2427 S:      Maintained
2428 F:      arch/mips/bmips/*
2429 F:      arch/mips/include/asm/mach-bmips/*
2430 F:      arch/mips/kernel/*bmips*
2431 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2432 F:      drivers/irqchip/irq-bcm7*
2433 F:      drivers/irqchip/irq-brcmstb*
2434 F:      include/linux/bcm963xx_nvram.h
2435 F:      include/linux/bcm963xx_tag.h
2436
2437 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2438 M:      Prashant Sreedharan <prashant@broadcom.com>
2439 M:      Michael Chan <mchan@broadcom.com>
2440 L:      netdev@vger.kernel.org
2441 S:      Supported
2442 F:      drivers/net/ethernet/broadcom/tg3.*
2443
2444 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2445 M:      Brett Rudley <brudley@broadcom.com>
2446 M:      Arend van Spriel <arend@broadcom.com>
2447 M:      Franky (Zhenhui) Lin <frankyl@broadcom.com>
2448 M:      Hante Meuleman <meuleman@broadcom.com>
2449 L:      linux-wireless@vger.kernel.org
2450 L:      brcm80211-dev-list@broadcom.com
2451 S:      Supported
2452 F:      drivers/net/wireless/broadcom/brcm80211/
2453
2454 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2455 M:      QLogic-Storage-Upstream@qlogic.com
2456 L:      linux-scsi@vger.kernel.org
2457 S:      Supported
2458 F:      drivers/scsi/bnx2fc/
2459
2460 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2461 M:      QLogic-Storage-Upstream@qlogic.com
2462 L:      linux-scsi@vger.kernel.org
2463 S:      Supported
2464 F:      drivers/scsi/bnx2i/
2465
2466 BROADCOM IPROC ARM ARCHITECTURE
2467 M:      Ray Jui <rjui@broadcom.com>
2468 M:      Scott Branden <sbranden@broadcom.com>
2469 M:      Jon Mason <jonmason@broadcom.com>
2470 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2471 L:      bcm-kernel-feedback-list@broadcom.com
2472 T:      git git://github.com/broadcom/cygnus-linux.git
2473 S:      Maintained
2474 N:      iproc
2475 N:      cygnus
2476 N:      nsp
2477 N:      bcm9113*
2478 N:      bcm9583*
2479 N:      bcm9585*
2480 N:      bcm9586*
2481 N:      bcm988312
2482 N:      bcm113*
2483 N:      bcm583*
2484 N:      bcm585*
2485 N:      bcm586*
2486 N:      bcm88312
2487
2488 BROADCOM BRCMSTB GPIO DRIVER
2489 M:      Gregory Fong <gregory.0xf0@gmail.com>
2490 L:      bcm-kernel-feedback-list@broadcom.com
2491 S:      Supported
2492 F:      drivers/gpio/gpio-brcmstb.c
2493 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2494
2495 BROADCOM KONA GPIO DRIVER
2496 M:      Ray Jui <rjui@broadcom.com>
2497 L:      bcm-kernel-feedback-list@broadcom.com
2498 S:      Supported
2499 F:      drivers/gpio/gpio-bcm-kona.c
2500 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2501
2502 BROADCOM NVRAM DRIVER
2503 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2504 L:      linux-mips@linux-mips.org
2505 S:      Maintained
2506 F:      drivers/firmware/broadcom/*
2507
2508 BROADCOM STB NAND FLASH DRIVER
2509 M:      Brian Norris <computersforpeace@gmail.com>
2510 M:      Kamal Dasu <kdasu.kdev@gmail.com>
2511 L:      linux-mtd@lists.infradead.org
2512 L:      bcm-kernel-feedback-list@broadcom.com
2513 S:      Maintained
2514 F:      drivers/mtd/nand/brcmnand/
2515
2516 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2517 M:      RafaÅ‚ MiÅ‚ecki <zajec5@gmail.com>
2518 L:      linux-wireless@vger.kernel.org
2519 S:      Maintained
2520 F:      drivers/bcma/
2521 F:      include/linux/bcma/
2522
2523 BROADCOM SYSTEMPORT ETHERNET DRIVER
2524 M:      Florian Fainelli <f.fainelli@gmail.com>
2525 L:      netdev@vger.kernel.org
2526 S:      Supported
2527 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2528
2529 BROCADE BFA FC SCSI DRIVER
2530 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
2531 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
2532 L:      linux-scsi@vger.kernel.org
2533 S:      Supported
2534 F:      drivers/scsi/bfa/
2535
2536 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2537 M:      Rasesh Mody <rasesh.mody@qlogic.com>
2538 L:      netdev@vger.kernel.org
2539 S:      Supported
2540 F:      drivers/net/ethernet/brocade/bna/
2541
2542 BSG (block layer generic sg v4 driver)
2543 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2544 L:      linux-scsi@vger.kernel.org
2545 S:      Supported
2546 F:      block/bsg.c
2547 F:      include/linux/bsg.h
2548 F:      include/uapi/linux/bsg.h
2549
2550 BT87X AUDIO DRIVER
2551 M:      Clemens Ladisch <clemens@ladisch.de>
2552 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2553 T:      git git://git.alsa-project.org/alsa-kernel.git
2554 S:      Maintained
2555 F:      Documentation/sound/alsa/Bt87x.txt
2556 F:      sound/pci/bt87x.c
2557
2558 BT8XXGPIO DRIVER
2559 M:      Michael Buesch <m@bues.ch>
2560 W:      http://bu3sch.de/btgpio.php
2561 S:      Maintained
2562 F:      drivers/gpio/gpio-bt8xx.c
2563
2564 BTRFS FILE SYSTEM
2565 M:      Chris Mason <clm@fb.com>
2566 M:      Josef Bacik <jbacik@fb.com>
2567 M:      David Sterba <dsterba@suse.com>
2568 L:      linux-btrfs@vger.kernel.org
2569 W:      http://btrfs.wiki.kernel.org/
2570 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2572 S:      Maintained
2573 F:      Documentation/filesystems/btrfs.txt
2574 F:      fs/btrfs/
2575
2576 BTTV VIDEO4LINUX DRIVER
2577 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
2578 L:      linux-media@vger.kernel.org
2579 W:      https://linuxtv.org
2580 T:      git git://linuxtv.org/media_tree.git
2581 S:      Odd fixes
2582 F:      Documentation/video4linux/bttv/
2583 F:      drivers/media/pci/bt8xx/bttv*
2584
2585 BUSLOGIC SCSI DRIVER
2586 M:      Khalid Aziz <khalid@gonehiking.org>
2587 L:      linux-scsi@vger.kernel.org
2588 S:      Maintained
2589 F:      drivers/scsi/BusLogic.*
2590 F:      drivers/scsi/FlashPoint.*
2591
2592 C-MEDIA CMI8788 DRIVER
2593 M:      Clemens Ladisch <clemens@ladisch.de>
2594 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2595 T:      git git://git.alsa-project.org/alsa-kernel.git
2596 S:      Maintained
2597 F:      sound/pci/oxygen/
2598
2599 C6X ARCHITECTURE
2600 M:      Mark Salter <msalter@redhat.com>
2601 M:      Aurelien Jacquiot <a-jacquiot@ti.com>
2602 L:      linux-c6x-dev@linux-c6x.org
2603 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2604 S:      Maintained
2605 F:      arch/c6x/
2606
2607 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2608 M:      David Howells <dhowells@redhat.com>
2609 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
2610 S:      Supported
2611 F:      Documentation/filesystems/caching/cachefiles.txt
2612 F:      fs/cachefiles/
2613
2614 CADET FM/AM RADIO RECEIVER DRIVER
2615 M:      Hans Verkuil <hverkuil@xs4all.nl>
2616 L:      linux-media@vger.kernel.org
2617 T:      git git://linuxtv.org/media_tree.git
2618 W:      https://linuxtv.org
2619 S:      Maintained
2620 F:      drivers/media/radio/radio-cadet*
2621
2622 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2623 M:      Jonathan Corbet <corbet@lwn.net>
2624 L:      linux-media@vger.kernel.org
2625 T:      git git://linuxtv.org/media_tree.git
2626 S:      Maintained
2627 F:      Documentation/video4linux/cafe_ccic
2628 F:      drivers/media/platform/marvell-ccic/
2629
2630 CAIF NETWORK LAYER
2631 M:      Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
2632 L:      netdev@vger.kernel.org
2633 S:      Supported
2634 F:      Documentation/networking/caif/
2635 F:      drivers/net/caif/
2636 F:      include/uapi/linux/caif/
2637 F:      include/net/caif/
2638 F:      net/caif/
2639
2640 CALGARY x86-64 IOMMU
2641 M:      Muli Ben-Yehuda <muli@il.ibm.com>
2642 M:      "Jon D. Mason" <jdmason@kudzu.us>
2643 L:      discuss@x86-64.org
2644 S:      Maintained
2645 F:      arch/x86/kernel/pci-calgary_64.c
2646 F:      arch/x86/kernel/tce_64.c
2647 F:      arch/x86/include/asm/calgary.h
2648 F:      arch/x86/include/asm/tce.h
2649
2650 CAN NETWORK LAYER
2651 M:      Oliver Hartkopp <socketcan@hartkopp.net>
2652 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2653 L:      linux-can@vger.kernel.org
2654 W:      https://github.com/linux-can
2655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2657 S:      Maintained
2658 F:      Documentation/networking/can.txt
2659 F:      net/can/
2660 F:      include/linux/can/core.h
2661 F:      include/uapi/linux/can.h
2662 F:      include/uapi/linux/can/bcm.h
2663 F:      include/uapi/linux/can/raw.h
2664 F:      include/uapi/linux/can/gw.h
2665
2666 CAN NETWORK DRIVERS
2667 M:      Wolfgang Grandegger <wg@grandegger.com>
2668 M:      Marc Kleine-Budde <mkl@pengutronix.de>
2669 L:      linux-can@vger.kernel.org
2670 W:      https://github.com/linux-can
2671 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
2672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
2673 S:      Maintained
2674 F:      drivers/net/can/
2675 F:      include/linux/can/dev.h
2676 F:      include/linux/can/platform/
2677 F:      include/uapi/linux/can/error.h
2678 F:      include/uapi/linux/can/netlink.h
2679
2680 CAPABILITIES
2681 M:      Serge Hallyn <serge.hallyn@canonical.com>
2682 L:      linux-security-module@vger.kernel.org
2683 S:      Supported
2684 F:      include/linux/capability.h
2685 F:      include/uapi/linux/capability.h
2686 F:      security/commoncap.c
2687 F:      kernel/capability.c
2688
2689 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
2690 M:      Kevin Tsai <ktsai@capellamicro.com>
2691 S:      Maintained
2692 F:      drivers/iio/light/cm*
2693 F:      Documentation/devicetree/bindings/i2c/trivial-devices.txt
2694
2695 CAVIUM LIQUIDIO NETWORK DRIVER
2696 M:     Derek Chickles <derek.chickles@caviumnetworks.com>
2697 M:     Satanand Burla <satananda.burla@caviumnetworks.com>
2698 M:     Felix Manlunas <felix.manlunas@caviumnetworks.com>
2699 M:     Raghu Vatsavayi <raghu.vatsavayi@caviumnetworks.com>
2700 L:     netdev@vger.kernel.org
2701 W:     http://www.cavium.com
2702 S:     Supported
2703 F:     drivers/net/ethernet/cavium/liquidio/
2704
2705 CC2520 IEEE-802.15.4 RADIO DRIVER
2706 M:      Varka Bhadram <varkabhadram@gmail.com>
2707 L:      linux-wpan@vger.kernel.org
2708 S:      Maintained
2709 F:      drivers/net/ieee802154/cc2520.c
2710 F:      include/linux/spi/cc2520.h
2711 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
2712
2713 CELL BROADBAND ENGINE ARCHITECTURE
2714 M:      Arnd Bergmann <arnd@arndb.de>
2715 L:      linuxppc-dev@lists.ozlabs.org
2716 W:      http://www.ibm.com/developerworks/power/cell/
2717 S:      Supported
2718 F:      arch/powerpc/include/asm/cell*.h
2719 F:      arch/powerpc/include/asm/spu*.h
2720 F:      arch/powerpc/include/uapi/asm/spu*.h
2721 F:      arch/powerpc/oprofile/*cell*
2722 F:      arch/powerpc/platforms/cell/
2723
2724 CEPH COMMON CODE (LIBCEPH)
2725 M:      Ilya Dryomov <idryomov@gmail.com>
2726 M:      "Yan, Zheng" <zyan@redhat.com>
2727 M:      Sage Weil <sage@redhat.com>
2728 L:      ceph-devel@vger.kernel.org
2729 W:      http://ceph.com/
2730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2731 T:      git git://github.com/ceph/ceph-client.git
2732 S:      Supported
2733 F:      net/ceph/
2734 F:      include/linux/ceph/
2735 F:      include/linux/crush/
2736
2737 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
2738 M:      "Yan, Zheng" <zyan@redhat.com>
2739 M:      Sage Weil <sage@redhat.com>
2740 M:      Ilya Dryomov <idryomov@gmail.com>
2741 L:      ceph-devel@vger.kernel.org
2742 W:      http://ceph.com/
2743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
2744 T:      git git://github.com/ceph/ceph-client.git
2745 S:      Supported
2746 F:      Documentation/filesystems/ceph.txt
2747 F:      fs/ceph/
2748
2749 CERTIFICATE HANDLING:
2750 M:      David Howells <dhowells@redhat.com>
2751 M:      David Woodhouse <dwmw2@infradead.org>
2752 L:      keyrings@vger.kernel.org
2753 S:      Maintained
2754 F:      Documentation/module-signing.txt
2755 F:      certs/
2756 F:      scripts/sign-file.c
2757 F:      scripts/extract-cert.c
2758
2759 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
2760 L:      linux-usb@vger.kernel.org
2761 S:      Orphan
2762 F:      Documentation/usb/WUSB-Design-overview.txt
2763 F:      Documentation/usb/wusb-cbaf
2764 F:      drivers/usb/host/hwa-hc.c
2765 F:      drivers/usb/host/whci/
2766 F:      drivers/usb/wusbcore/
2767 F:      include/linux/usb/wusb*
2768
2769 CFAG12864B LCD DRIVER
2770 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2771 W:      http://miguelojeda.es/auxdisplay.htm
2772 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2773 S:      Maintained
2774 F:      drivers/auxdisplay/cfag12864b.c
2775 F:      include/linux/cfag12864b.h
2776
2777 CFAG12864BFB LCD FRAMEBUFFER DRIVER
2778 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
2779 W:      http://miguelojeda.es/auxdisplay.htm
2780 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2781 S:      Maintained
2782 F:      drivers/auxdisplay/cfag12864bfb.c
2783 F:      include/linux/cfag12864b.h
2784
2785 CFG80211 and NL80211
2786 M:      Johannes Berg <johannes@sipsolutions.net>
2787 L:      linux-wireless@vger.kernel.org
2788 W:      http://wireless.kernel.org/
2789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
2790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
2791 S:      Maintained
2792 F:      include/uapi/linux/nl80211.h
2793 F:      include/net/cfg80211.h
2794 F:      net/wireless/*
2795 X:      net/wireless/wext*
2796
2797 CHAR and MISC DRIVERS
2798 M:      Arnd Bergmann <arnd@arndb.de>
2799 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
2801 S:      Supported
2802 F:      drivers/char/*
2803 F:      drivers/misc/*
2804 F:      include/linux/miscdevice.h
2805
2806 CHECKPATCH
2807 M:      Andy Whitcroft <apw@canonical.com>
2808 M:      Joe Perches <joe@perches.com>
2809 S:      Maintained
2810 F:      scripts/checkpatch.pl
2811
2812 CHINESE DOCUMENTATION
2813 M:      Harry Wei <harryxiyou@gmail.com>
2814 L:      xiyoulinuxkernelgroup@googlegroups.com (subscribers-only)
2815 L:      linux-kernel@zh-kernel.org (moderated for non-subscribers)
2816 S:      Maintained
2817 F:      Documentation/zh_CN/
2818
2819 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
2820 M:      Peter Chen <Peter.Chen@nxp.com>
2821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
2822 L:      linux-usb@vger.kernel.org
2823 S:      Maintained
2824 F:      drivers/usb/chipidea/
2825
2826 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
2827 M:      Hans de Goede <hdegoede@redhat.com>
2828 L:      linux-input@vger.kernel.org
2829 S:      Maintained
2830 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
2831 F:      drivers/input/touchscreen/chipone_icn8318.c
2832
2833 CHROME HARDWARE PLATFORM SUPPORT
2834 M:      Olof Johansson <olof@lixom.net>
2835 S:      Maintained
2836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
2837 F:      drivers/platform/chrome/
2838
2839 CISCO VIC ETHERNET NIC DRIVER
2840 M:      Christian Benvenuti <benve@cisco.com>
2841 M:      Sujith Sankar <ssujith@cisco.com>
2842 M:      Govindarajulu Varadarajan <_govind@gmx.com>
2843 M:      Neel Patel <neepatel@cisco.com>
2844 S:      Supported
2845 F:      drivers/net/ethernet/cisco/enic/
2846
2847 CISCO VIC LOW LATENCY NIC DRIVER
2848 M:      Christian Benvenuti <benve@cisco.com>
2849 M:      Dave Goodell <dgoodell@cisco.com>
2850 S:      Supported
2851 F:      drivers/infiniband/hw/usnic/
2852
2853 CIRRUS LOGIC EP93XX ETHERNET DRIVER
2854 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2855 L:      netdev@vger.kernel.org
2856 S:      Maintained
2857 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
2858
2859 CIRRUS LOGIC AUDIO CODEC DRIVERS
2860 M:      Brian Austin <brian.austin@cirrus.com>
2861 M:      Paul Handrigan <Paul.Handrigan@cirrus.com>
2862 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
2863 S:      Maintained
2864 F:      sound/soc/codecs/cs*
2865
2866 CLEANCACHE API
2867 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
2868 L:      linux-kernel@vger.kernel.org
2869 S:      Maintained
2870 F:      mm/cleancache.c
2871 F:      include/linux/cleancache.h
2872
2873 CLK API
2874 M:      Russell King <linux@arm.linux.org.uk>
2875 L:      linux-clk@vger.kernel.org
2876 S:      Maintained
2877 F:      include/linux/clk.h
2878
2879 CLOCKSOURCE, CLOCKEVENT DRIVERS
2880 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
2881 M:      Thomas Gleixner <tglx@linutronix.de>
2882 L:      linux-kernel@vger.kernel.org
2883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
2884 S:      Supported
2885 F:      drivers/clocksource
2886
2887 CISCO FCOE HBA DRIVER
2888 M:      Hiral Patel <hiralpat@cisco.com>
2889 M:      Suma Ramars <sramars@cisco.com>
2890 M:      Brian Uchino <buchino@cisco.com>
2891 L:      linux-scsi@vger.kernel.org
2892 S:      Supported
2893 F:      drivers/scsi/fnic/
2894
2895 CISCO SCSI HBA DRIVER
2896 M:      Narsimhulu Musini <nmusini@cisco.com>
2897 M:      Sesidhar Baddela <sebaddel@cisco.com>
2898 L:      linux-scsi@vger.kernel.org
2899 S:      Supported
2900 F:      drivers/scsi/snic/
2901
2902 CMPC ACPI DRIVER
2903 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
2904 M:      Daniel Oliveira Nascimento <don@syst.com.br>
2905 L:      platform-driver-x86@vger.kernel.org
2906 S:      Supported
2907 F:      drivers/platform/x86/classmate-laptop.c
2908
2909 COBALT MEDIA DRIVER
2910 M:      Hans Verkuil <hans.verkuil@cisco.com>
2911 L:      linux-media@vger.kernel.org
2912 T:      git git://linuxtv.org/media_tree.git
2913 W:      https://linuxtv.org
2914 S:      Supported
2915 F:      drivers/media/pci/cobalt/
2916
2917 COCCINELLE/Semantic Patches (SmPL)
2918 M:      Julia Lawall <Julia.Lawall@lip6.fr>
2919 M:      Gilles Muller <Gilles.Muller@lip6.fr>
2920 M:      Nicolas Palix <nicolas.palix@imag.fr>
2921 M:      Michal Marek <mmarek@suse.com>
2922 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
2924 W:      http://coccinelle.lip6.fr/
2925 S:      Supported
2926 F:      Documentation/coccinelle.txt
2927 F:      scripts/coccinelle/
2928 F:      scripts/coccicheck
2929
2930 CODA FILE SYSTEM
2931 M:      Jan Harkes <jaharkes@cs.cmu.edu>
2932 M:      coda@cs.cmu.edu
2933 L:      codalist@coda.cs.cmu.edu
2934 W:      http://www.coda.cs.cmu.edu/
2935 S:      Maintained
2936 F:      Documentation/filesystems/coda.txt
2937 F:      fs/coda/
2938 F:      include/linux/coda*.h
2939 F:      include/uapi/linux/coda*.h
2940
2941 CODA V4L2 MEM2MEM DRIVER
2942 M:      Philipp Zabel <p.zabel@pengutronix.de>
2943 L:      linux-media@vger.kernel.org
2944 S:      Maintained
2945 F:      Documentation/devicetree/bindings/media/coda.txt
2946 F:      drivers/media/platform/coda/
2947
2948 COMMON CLK FRAMEWORK
2949 M:      Michael Turquette <mturquette@baylibre.com>
2950 M:      Stephen Boyd <sboyd@codeaurora.org>
2951 L:      linux-clk@vger.kernel.org
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
2953 S:      Maintained
2954 F:      drivers/clk/
2955 X:      drivers/clk/clkdev.c
2956 F:      include/linux/clk-pr*
2957 F:      include/linux/clk/
2958
2959 COMMON INTERNET FILE SYSTEM (CIFS)
2960 M:      Steve French <sfrench@samba.org>
2961 L:      linux-cifs@vger.kernel.org
2962 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
2963 W:      http://linux-cifs.samba.org/
2964 T:      git git://git.samba.org/sfrench/cifs-2.6.git
2965 S:      Supported
2966 F:      Documentation/filesystems/cifs/
2967 F:      fs/cifs/
2968
2969 COMPACTPCI HOTPLUG CORE
2970 M:      Scott Murray <scott@spiteful.org>
2971 L:      linux-pci@vger.kernel.org
2972 S:      Maintained
2973 F:      drivers/pci/hotplug/cpci_hotplug*
2974
2975 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
2976 M:      Scott Murray <scott@spiteful.org>
2977 L:      linux-pci@vger.kernel.org
2978 S:      Maintained
2979 F:      drivers/pci/hotplug/cpcihp_zt5550.*
2980
2981 COMPACTPCI HOTPLUG GENERIC DRIVER
2982 M:      Scott Murray <scott@spiteful.org>
2983 L:      linux-pci@vger.kernel.org
2984 S:      Maintained
2985 F:      drivers/pci/hotplug/cpcihp_generic.c
2986
2987 COMPAL LAPTOP SUPPORT
2988 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
2989 L:      platform-driver-x86@vger.kernel.org
2990 S:      Maintained
2991 F:      drivers/platform/x86/compal-laptop.c
2992
2993 CONEXANT ACCESSRUNNER USB DRIVER
2994 L:      accessrunner-general@lists.sourceforge.net
2995 W:      http://accessrunner.sourceforge.net/
2996 S:      Orphan
2997 F:      drivers/usb/atm/cxacru.c
2998
2999 CONFIGFS
3000 M:      Joel Becker <jlbec@evilplan.org>
3001 M:      Christoph Hellwig <hch@lst.de>
3002 T:      git git://git.infradead.org/users/hch/configfs.git
3003 S:      Supported
3004 F:      fs/configfs/
3005 F:      include/linux/configfs.h
3006
3007 CONNECTOR
3008 M:      Evgeniy Polyakov <zbr@ioremap.net>
3009 L:      netdev@vger.kernel.org
3010 S:      Maintained
3011 F:      drivers/connector/
3012
3013 CONTROL GROUP (CGROUP)
3014 M:      Tejun Heo <tj@kernel.org>
3015 M:      Li Zefan <lizefan@huawei.com>
3016 M:      Johannes Weiner <hannes@cmpxchg.org>
3017 L:      cgroups@vger.kernel.org
3018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3019 S:      Maintained
3020 F:      Documentation/cgroups/
3021 F:      include/linux/cgroup*
3022 F:      kernel/cgroup*
3023
3024 CONTROL GROUP - CPUSET
3025 M:      Li Zefan <lizefan@huawei.com>
3026 L:      cgroups@vger.kernel.org
3027 W:      http://www.bullopensource.org/cpuset/
3028 W:      http://oss.sgi.com/projects/cpusets/
3029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3030 S:      Maintained
3031 F:      Documentation/cgroups/cpusets.txt
3032 F:      include/linux/cpuset.h
3033 F:      kernel/cpuset.c
3034
3035 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3036 M:      Johannes Weiner <hannes@cmpxchg.org>
3037 M:      Michal Hocko <mhocko@kernel.org>
3038 M:      Vladimir Davydov <vdavydov@virtuozzo.com>
3039 L:      cgroups@vger.kernel.org
3040 L:      linux-mm@kvack.org
3041 S:      Maintained
3042 F:      mm/memcontrol.c
3043 F:      mm/swap_cgroup.c
3044
3045 CORETEMP HARDWARE MONITORING DRIVER
3046 M:      Fenghua Yu <fenghua.yu@intel.com>
3047 L:      lm-sensors@lm-sensors.org
3048 S:      Maintained
3049 F:      Documentation/hwmon/coretemp
3050 F:      drivers/hwmon/coretemp.c
3051
3052 COSA/SRP SYNC SERIAL DRIVER
3053 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
3054 W:      http://www.fi.muni.cz/~kas/cosa/
3055 S:      Maintained
3056 F:      drivers/net/wan/cosa*
3057
3058 CPMAC ETHERNET DRIVER
3059 M:      Florian Fainelli <florian@openwrt.org>
3060 L:      netdev@vger.kernel.org
3061 S:      Maintained
3062 F:      drivers/net/ethernet/ti/cpmac.c
3063
3064 CPU FREQUENCY DRIVERS
3065 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3066 M:      Viresh Kumar <viresh.kumar@linaro.org>
3067 L:      linux-pm@vger.kernel.org
3068 S:      Maintained
3069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3070 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3071 F:      drivers/cpufreq/
3072 F:      include/linux/cpufreq.h
3073
3074 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3075 M:      Viresh Kumar <viresh.kumar@linaro.org>
3076 M:      Sudeep Holla <sudeep.holla@arm.com>
3077 L:      linux-pm@vger.kernel.org
3078 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3079 S:      Maintained
3080 F:      drivers/cpufreq/arm_big_little.h
3081 F:      drivers/cpufreq/arm_big_little.c
3082 F:      drivers/cpufreq/arm_big_little_dt.c
3083
3084 CPUIDLE DRIVER - ARM BIG LITTLE
3085 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
3086 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3087 L:      linux-pm@vger.kernel.org
3088 L:      linux-arm-kernel@lists.infradead.org
3089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3090 S:      Maintained
3091 F:      drivers/cpuidle/cpuidle-big_little.c
3092
3093 CPUIDLE DRIVER - ARM EXYNOS
3094 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
3095 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3096 M:      Kukjin Kim <kgene@kernel.org>
3097 L:      linux-pm@vger.kernel.org
3098 L:      linux-samsung-soc@vger.kernel.org
3099 S:      Supported
3100 F:      drivers/cpuidle/cpuidle-exynos.c
3101 F:      arch/arm/mach-exynos/pm.c
3102
3103 CPUIDLE DRIVERS
3104 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
3105 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
3106 L:      linux-pm@vger.kernel.org
3107 S:      Maintained
3108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3109 F:      drivers/cpuidle/*
3110 F:      include/linux/cpuidle.h
3111
3112 CPUID/MSR DRIVER
3113 M:      "H. Peter Anvin" <hpa@zytor.com>
3114 S:      Maintained
3115 F:      arch/x86/kernel/cpuid.c
3116 F:      arch/x86/kernel/msr.c
3117
3118 CPU POWER MONITORING SUBSYSTEM
3119 M:      Thomas Renninger <trenn@suse.com>
3120 L:      linux-pm@vger.kernel.org
3121 S:      Maintained
3122 F:      tools/power/cpupower/
3123
3124 CRAMFS FILESYSTEM
3125 W:      http://sourceforge.net/projects/cramfs/
3126 S:      Orphan / Obsolete
3127 F:      Documentation/filesystems/cramfs.txt
3128 F:      fs/cramfs/
3129
3130 CRIS PORT
3131 M:      Mikael Starvik <starvik@axis.com>
3132 M:      Jesper Nilsson <jesper.nilsson@axis.com>
3133 L:      linux-cris-kernel@axis.com
3134 W:      http://developer.axis.com
3135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3136 S:      Maintained
3137 F:      arch/cris/
3138 F:      drivers/tty/serial/crisv10.*
3139
3140 CRYPTO API
3141 M:      Herbert Xu <herbert@gondor.apana.org.au>
3142 M:      "David S. Miller" <davem@davemloft.net>
3143 L:      linux-crypto@vger.kernel.org
3144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3146 S:      Maintained
3147 F:      Documentation/crypto/
3148 F:      Documentation/DocBook/crypto-API.tmpl
3149 F:      arch/*/crypto/
3150 F:      crypto/
3151 F:      drivers/crypto/
3152 F:      include/crypto/
3153
3154 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3155 M:      Neil Horman <nhorman@tuxdriver.com>
3156 L:      linux-crypto@vger.kernel.org
3157 S:      Maintained
3158 F:      crypto/ansi_cprng.c
3159 F:      crypto/rng.c
3160
3161 CS3308 MEDIA DRIVER
3162 M:      Hans Verkuil <hverkuil@xs4all.nl>
3163 L:      linux-media@vger.kernel.org
3164 T:      git git://linuxtv.org/media_tree.git
3165 W:      http://linuxtv.org
3166 S:      Odd Fixes
3167 F:      drivers/media/i2c/cs3308.c
3168 F:      drivers/media/i2c/cs3308.h
3169
3170 CS5535 Audio ALSA driver
3171 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
3172 S:      Maintained
3173 F:      sound/pci/cs5535audio/
3174
3175 CW1200 WLAN driver
3176 M:      Solomon Peachy <pizza@shaftnet.org>
3177 S:      Maintained
3178 F:      drivers/net/wireless/st/cw1200/
3179
3180 CX18 VIDEO4LINUX DRIVER
3181 M:      Andy Walls <awalls@md.metrocast.net>
3182 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
3183 L:      linux-media@vger.kernel.org
3184 T:      git git://linuxtv.org/media_tree.git
3185 W:      https://linuxtv.org
3186 W:      http://www.ivtvdriver.org/index.php/Cx18
3187 S:      Maintained
3188 F:      Documentation/video4linux/cx18.txt
3189 F:      drivers/media/pci/cx18/
3190 F:      include/uapi/linux/ivtv*
3191
3192 CX2341X MPEG ENCODER HELPER MODULE
3193 M:      Hans Verkuil <hverkuil@xs4all.nl>
3194 L:      linux-media@vger.kernel.org
3195 T:      git git://linuxtv.org/media_tree.git
3196 W:      https://linuxtv.org
3197 S:      Maintained
3198 F:      drivers/media/common/cx2341x*
3199 F:      include/media/cx2341x*
3200
3201 CX24120 MEDIA DRIVER
3202 M:      Jemma Denson <jdenson@gmail.com>
3203 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
3204 L:      linux-media@vger.kernel.org
3205 W:      https://linuxtv.org
3206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3207 S:      Maintained
3208 F:      drivers/media/dvb-frontends/cx24120*
3209
3210 CX88 VIDEO4LINUX DRIVER
3211 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
3212 L:      linux-media@vger.kernel.org
3213 W:      https://linuxtv.org
3214 T:      git git://linuxtv.org/media_tree.git
3215 S:      Odd fixes
3216 F:      Documentation/video4linux/cx88/
3217 F:      drivers/media/pci/cx88/
3218
3219 CXD2820R MEDIA DRIVER
3220 M:      Antti Palosaari <crope@iki.fi>
3221 L:      linux-media@vger.kernel.org
3222 W:      https://linuxtv.org
3223 W:      http://palosaari.fi/linux/
3224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3225 T:      git git://linuxtv.org/anttip/media_tree.git
3226 S:      Maintained
3227 F:      drivers/media/dvb-frontends/cxd2820r*
3228
3229 CXGB3 ETHERNET DRIVER (CXGB3)
3230 M:      Santosh Raspatur <santosh@chelsio.com>
3231 L:      netdev@vger.kernel.org
3232 W:      http://www.chelsio.com
3233 S:      Supported
3234 F:      drivers/net/ethernet/chelsio/cxgb3/
3235
3236 CXGB3 ISCSI DRIVER (CXGB3I)
3237 M:      Karen Xie <kxie@chelsio.com>
3238 L:      linux-scsi@vger.kernel.org
3239 W:      http://www.chelsio.com
3240 S:      Supported
3241 F:      drivers/scsi/cxgbi/cxgb3i
3242
3243 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3244 M:      Steve Wise <swise@chelsio.com>
3245 L:      linux-rdma@vger.kernel.org
3246 W:      http://www.openfabrics.org
3247 S:      Supported
3248 F:      drivers/infiniband/hw/cxgb3/
3249
3250 CXGB4 ETHERNET DRIVER (CXGB4)
3251 M:      Hariprasad S <hariprasad@chelsio.com>
3252 L:      netdev@vger.kernel.org
3253 W:      http://www.chelsio.com
3254 S:      Supported
3255 F:      drivers/net/ethernet/chelsio/cxgb4/
3256
3257 CXGB4 ISCSI DRIVER (CXGB4I)
3258 M:      Karen Xie <kxie@chelsio.com>
3259 L:      linux-scsi@vger.kernel.org
3260 W:      http://www.chelsio.com
3261 S:      Supported
3262 F:      drivers/scsi/cxgbi/cxgb4i
3263
3264 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3265 M:      Steve Wise <swise@chelsio.com>
3266 L:      linux-rdma@vger.kernel.org
3267 W:      http://www.openfabrics.org
3268 S:      Supported
3269 F:      drivers/infiniband/hw/cxgb4/
3270
3271 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3272 M:      Casey Leedom <leedom@chelsio.com>
3273 L:      netdev@vger.kernel.org
3274 W:      http://www.chelsio.com
3275 S:      Supported
3276 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3277
3278 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3279 M:      Ian Munsie <imunsie@au1.ibm.com>
3280 M:      Michael Neuling <mikey@neuling.org>
3281 L:      linuxppc-dev@lists.ozlabs.org
3282 S:      Supported
3283 F:      drivers/misc/cxl/
3284 F:      include/misc/cxl*
3285 F:      include/uapi/misc/cxl.h
3286 F:      Documentation/powerpc/cxl.txt
3287 F:      Documentation/powerpc/cxl.txt
3288 F:      Documentation/ABI/testing/sysfs-class-cxl
3289
3290 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3291 M:      Manoj N. Kumar <manoj@linux.vnet.ibm.com>
3292 M:      Matthew R. Ochs <mrochs@linux.vnet.ibm.com>
3293 L:      linux-scsi@vger.kernel.org
3294 S:      Supported
3295 F:      drivers/scsi/cxlflash/
3296 F:      include/uapi/scsi/cxlflash_ioctls.h
3297 F:      Documentation/powerpc/cxlflash.txt
3298
3299 STMMAC ETHERNET DRIVER
3300 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
3301 L:      netdev@vger.kernel.org
3302 W:      http://www.stlinux.com
3303 S:      Supported
3304 F:      drivers/net/ethernet/stmicro/stmmac/
3305
3306 CYBERPRO FB DRIVER
3307 M:      Russell King <linux@arm.linux.org.uk>
3308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3309 W:      http://www.arm.linux.org.uk/
3310 S:      Maintained
3311 F:      drivers/video/fbdev/cyber2000fb.*
3312
3313 CYCLADES ASYNC MUX DRIVER
3314 W:      http://www.cyclades.com/
3315 S:      Orphan
3316 F:      drivers/tty/cyclades.c
3317 F:      include/linux/cyclades.h
3318 F:      include/uapi/linux/cyclades.h
3319
3320 CYCLADES PC300 DRIVER
3321 W:      http://www.cyclades.com/
3322 S:      Orphan
3323 F:      drivers/net/wan/pc300*
3324
3325 CYPRESS_FIRMWARE MEDIA DRIVER
3326 M:      Antti Palosaari <crope@iki.fi>
3327 L:      linux-media@vger.kernel.org
3328 W:      https://linuxtv.org
3329 W:      http://palosaari.fi/linux/
3330 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3331 T:      git git://linuxtv.org/anttip/media_tree.git
3332 S:      Maintained
3333 F:      drivers/media/common/cypress_firmware*
3334
3335 CYTTSP TOUCHSCREEN DRIVER
3336 M:      Ferruh Yigit <fery@cypress.com>
3337 L:      linux-input@vger.kernel.org
3338 S:      Supported
3339 F:      drivers/input/touchscreen/cyttsp*
3340 F:      include/linux/input/cyttsp.h
3341
3342 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3343 M:      Joshua Kinard <kumba@gentoo.org>
3344 S:      Maintained
3345 F:      drivers/rtc/rtc-ds1685.c
3346 F:      include/linux/rtc/ds1685.h
3347
3348 DAMA SLAVE for AX.25
3349 M:      Joerg Reuter <jreuter@yaina.de>
3350 W:      http://yaina.de/jreuter/
3351 W:      http://www.qsl.net/dl1bke/
3352 L:      linux-hams@vger.kernel.org
3353 S:      Maintained
3354 F:      net/ax25/af_ax25.c
3355 F:      net/ax25/ax25_dev.c
3356 F:      net/ax25/ax25_ds_*
3357 F:      net/ax25/ax25_in.c
3358 F:      net/ax25/ax25_out.c
3359 F:      net/ax25/ax25_timer.c
3360 F:      net/ax25/sysctl_net_ax25.c
3361
3362 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3363 L:      netdev@vger.kernel.org
3364 S:      Orphan
3365 F:      Documentation/networking/dmfe.txt
3366 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3367
3368 DC390/AM53C974 SCSI driver
3369 M:      Hannes Reinecke <hare@suse.com>
3370 L:      linux-scsi@vger.kernel.org
3371 S:      Maintained
3372 F:      drivers/scsi/am53c974.c
3373
3374 DC395x SCSI driver
3375 M:      Oliver Neukum <oliver@neukum.org>
3376 M:      Ali Akcaagac <aliakc@web.de>
3377 M:      Jamie Lenehan <lenehan@twibble.org>
3378 L:      dc395x@twibble.org
3379 W:      http://twibble.org/dist/dc395x/
3380 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3381 S:      Maintained
3382 F:      Documentation/scsi/dc395x.txt
3383 F:      drivers/scsi/dc395x.*
3384
3385 DCCP PROTOCOL
3386 M:      Gerrit Renker <gerrit@erg.abdn.ac.uk>
3387 L:      dccp@vger.kernel.org
3388 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3389 S:      Maintained
3390 F:      include/linux/dccp.h
3391 F:      include/uapi/linux/dccp.h
3392 F:      include/linux/tfrc.h
3393 F:      net/dccp/
3394
3395 DECnet NETWORK LAYER
3396 W:      http://linux-decnet.sourceforge.net
3397 L:      linux-decnet-user@lists.sourceforge.net
3398 S:      Orphan
3399 F:      Documentation/networking/decnet.txt
3400 F:      net/decnet/
3401
3402 DECSTATION PLATFORM SUPPORT
3403 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3404 L:      linux-mips@linux-mips.org
3405 W:      http://www.linux-mips.org/wiki/DECstation
3406 S:      Maintained
3407 F:      arch/mips/dec/
3408 F:      arch/mips/include/asm/dec/
3409 F:      arch/mips/include/asm/mach-dec/
3410
3411 DEFXX FDDI NETWORK DRIVER
3412 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3413 S:      Maintained
3414 F:      drivers/net/fddi/defxx.*
3415
3416 DELL LAPTOP DRIVER
3417 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3418 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3419 L:      platform-driver-x86@vger.kernel.org
3420 S:      Maintained
3421 F:      drivers/platform/x86/dell-laptop.c
3422
3423 DELL LAPTOP RBTN DRIVER
3424 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3425 S:      Maintained
3426 F:      drivers/platform/x86/dell-rbtn.*
3427
3428 DELL LAPTOP FREEFALL DRIVER
3429 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3430 S:      Maintained
3431 F:      drivers/platform/x86/dell-smo8800.c
3432
3433 DELL LAPTOP SMM DRIVER
3434 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3435 S:      Maintained
3436 F:      drivers/hwmon/dell-smm-hwmon.c
3437 F:      include/uapi/linux/i8k.h
3438
3439 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3440 M:      Doug Warzecha <Douglas_Warzecha@dell.com>
3441 S:      Maintained
3442 F:      Documentation/dcdbas.txt
3443 F:      drivers/firmware/dcdbas.*
3444
3445 DELL WMI EXTRAS DRIVER
3446 M:      Matthew Garrett <mjg59@srcf.ucam.org>
3447 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
3448 S:      Maintained
3449 F:      drivers/platform/x86/dell-wmi.c
3450
3451 DESIGNWARE USB2 DRD IP DRIVER
3452 M:      John Youn <johnyoun@synopsys.com>
3453 L:      linux-usb@vger.kernel.org
3454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3455 S:      Maintained
3456 F:      drivers/usb/dwc2/
3457
3458 DESIGNWARE USB3 DRD IP DRIVER
3459 M:      Felipe Balbi <balbi@kernel.org>
3460 L:      linux-usb@vger.kernel.org
3461 L:      linux-omap@vger.kernel.org
3462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3463 S:      Maintained
3464 F:      drivers/usb/dwc3/
3465
3466 DEVICE COREDUMP (DEV_COREDUMP)
3467 M:      Johannes Berg <johannes@sipsolutions.net>
3468 L:      linux-kernel@vger.kernel.org
3469 S:      Maintained
3470 F:      drivers/base/devcoredump.c
3471 F:      include/linux/devcoredump.h
3472
3473 DEVICE FREQUENCY (DEVFREQ)
3474 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
3475 M:      Kyungmin Park <kyungmin.park@samsung.com>
3476 L:      linux-pm@vger.kernel.org
3477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3478 S:      Maintained
3479 F:      drivers/devfreq/
3480 F:      include/linux/devfreq.h
3481 F:      Documentation/devicetree/bindings/devfreq/
3482
3483 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3484 M:      Chanwoo Choi <cw00.choi@samsung.com>
3485 L:      linux-pm@vger.kernel.org
3486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3487 S:      Supported
3488 F:      drivers/devfreq/event/
3489 F:      drivers/devfreq/devfreq-event.c
3490 F:      include/linux/devfreq-event.h
3491 F:      Documentation/devicetree/bindings/devfreq/event/
3492
3493 DEVICE NUMBER REGISTRY
3494 M:      Torben Mathiasen <device@lanana.org>
3495 W:      http://lanana.org/docs/device-list/index.html
3496 S:      Maintained
3497
3498 DEVICE-MAPPER  (LVM)
3499 M:      Alasdair Kergon <agk@redhat.com>
3500 M:      Mike Snitzer <snitzer@redhat.com>
3501 M:      dm-devel@redhat.com
3502 L:      dm-devel@redhat.com
3503 W:      http://sources.redhat.com/dm
3504 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3506 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3507 S:      Maintained
3508 F:      Documentation/device-mapper/
3509 F:      drivers/md/dm*
3510 F:      drivers/md/persistent-data/
3511 F:      include/linux/device-mapper.h
3512 F:      include/linux/dm-*.h
3513 F:      include/uapi/linux/dm-*.h
3514
3515 DIALOG SEMICONDUCTOR DRIVERS
3516 M:      Support Opensource <support.opensource@diasemi.com>
3517 W:      http://www.dialog-semiconductor.com/products
3518 S:      Supported
3519 F:      Documentation/hwmon/da90??
3520 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3521 F:      drivers/gpio/gpio-da90??.c
3522 F:      drivers/hwmon/da90??-hwmon.c
3523 F:      drivers/iio/adc/da91??-*.c
3524 F:      drivers/input/misc/da90??_onkey.c
3525 F:      drivers/input/touchscreen/da9052_tsi.c
3526 F:      drivers/leds/leds-da90??.c
3527 F:      drivers/mfd/da903x.c
3528 F:      drivers/mfd/da90??-*.c
3529 F:      drivers/mfd/da91??-*.c
3530 F:      drivers/power/da9052-battery.c
3531 F:      drivers/power/da91??-*.c
3532 F:      drivers/regulator/da903x.c
3533 F:      drivers/regulator/da9???-regulator.[ch]
3534 F:      drivers/rtc/rtc-da90??.c
3535 F:      drivers/video/backlight/da90??_bl.c
3536 F:      drivers/watchdog/da90??_wdt.c
3537 F:      include/linux/mfd/da903x.h
3538 F:      include/linux/mfd/da9052/
3539 F:      include/linux/mfd/da9055/
3540 F:      include/linux/mfd/da9063/
3541 F:      include/linux/mfd/da9150/
3542 F:      include/sound/da[79]*.h
3543 F:      sound/soc/codecs/da[79]*.[ch]
3544
3545 DIGI NEO AND CLASSIC PCI PRODUCTS
3546 M:      Lidza Louina <lidza.louina@gmail.com>
3547 M:      Mark Hounschell <markh@compro.net>
3548 L:      driverdev-devel@linuxdriverproject.org
3549 S:      Maintained
3550 F:      drivers/staging/dgnc/
3551
3552 DIGI EPCA PCI PRODUCTS
3553 M:      Lidza Louina <lidza.louina@gmail.com>
3554 M:      Daeseok Youn <daeseok.youn@gmail.com>
3555 L:      driverdev-devel@linuxdriverproject.org
3556 S:      Maintained
3557 F:      drivers/staging/dgap/
3558
3559 DIOLAN U2C-12 I2C DRIVER
3560 M:      Guenter Roeck <linux@roeck-us.net>
3561 L:      linux-i2c@vger.kernel.org
3562 S:      Maintained
3563 F:      drivers/i2c/busses/i2c-diolan-u2c.c
3564
3565 DIRECT ACCESS (DAX)
3566 M:      Matthew Wilcox <willy@linux.intel.com>
3567 L:      linux-fsdevel@vger.kernel.org
3568 S:      Supported
3569 F:      fs/dax.c
3570
3571 DIRECTORY NOTIFICATION (DNOTIFY)
3572 M:      Eric Paris <eparis@parisplace.org>
3573 S:      Maintained
3574 F:      Documentation/filesystems/dnotify.txt
3575 F:      fs/notify/dnotify/
3576 F:      include/linux/dnotify.h
3577
3578 DISK GEOMETRY AND PARTITION HANDLING
3579 M:      Andries Brouwer <aeb@cwi.nl>
3580 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
3581 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
3582 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
3583 S:      Maintained
3584
3585 DISKQUOTA
3586 M:      Jan Kara <jack@suse.com>
3587 S:      Maintained
3588 F:      Documentation/filesystems/quota.txt
3589 F:      fs/quota/
3590 F:      include/linux/quota*.h
3591 F:      include/uapi/linux/quota*.h
3592
3593 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
3594 M:      Bernie Thompson <bernie@plugable.com>
3595 L:      linux-fbdev@vger.kernel.org
3596 S:      Maintained
3597 W:      http://plugable.com/category/projects/udlfb/
3598 F:      drivers/video/fbdev/udlfb.c
3599 F:      include/video/udlfb.h
3600 F:      Documentation/fb/udlfb.txt
3601
3602 DISTRIBUTED LOCK MANAGER (DLM)
3603 M:      Christine Caulfield <ccaulfie@redhat.com>
3604 M:      David Teigland <teigland@redhat.com>
3605 L:      cluster-devel@redhat.com
3606 W:      http://sources.redhat.com/cluster/
3607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
3608 S:      Supported
3609 F:      fs/dlm/
3610
3611 DMA BUFFER SHARING FRAMEWORK
3612 M:      Sumit Semwal <sumit.semwal@linaro.org>
3613 S:      Maintained
3614 L:      linux-media@vger.kernel.org
3615 L:      dri-devel@lists.freedesktop.org
3616 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
3617 F:      drivers/dma-buf/
3618 F:      include/linux/dma-buf*
3619 F:      include/linux/reservation.h
3620 F:      include/linux/*fence.h
3621 F:      Documentation/dma-buf-sharing.txt
3622 T:      git git://git.linaro.org/people/sumitsemwal/linux-dma-buf.git
3623
3624 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
3625 M:      Vinod Koul <vinod.koul@intel.com>
3626 L:      dmaengine@vger.kernel.org
3627 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
3628 S:      Maintained
3629 F:      drivers/dma/
3630 F:      include/linux/dmaengine.h
3631 F:      Documentation/dmaengine/
3632 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
3633
3634 DME1737 HARDWARE MONITOR DRIVER
3635 M:      Juerg Haefliger <juergh@gmail.com>
3636 L:      lm-sensors@lm-sensors.org
3637 S:      Maintained
3638 F:      Documentation/hwmon/dme1737
3639 F:      drivers/hwmon/dme1737.c
3640
3641 DMI/SMBIOS SUPPORT
3642 M:      Jean Delvare <jdelvare@suse.com>
3643 S:      Maintained
3644 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
3645 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
3646 F:      drivers/firmware/dmi-id.c
3647 F:      drivers/firmware/dmi_scan.c
3648 F:      include/linux/dmi.h
3649
3650 DOCUMENTATION
3651 M:      Jonathan Corbet <corbet@lwn.net>
3652 L:      linux-doc@vger.kernel.org
3653 S:      Maintained
3654 F:      Documentation/
3655 F:      scripts/docproc.c
3656 F:      scripts/kernel-doc*
3657 X:      Documentation/ABI/
3658 X:      Documentation/devicetree/
3659 X:      Documentation/acpi
3660 X:      Documentation/power
3661 X:      Documentation/spi
3662 X:      Documentation/DocBook/media
3663 T:      git git://git.lwn.net/linux.git docs-next
3664
3665 DOUBLETALK DRIVER
3666 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
3667 L:      blinux-list@redhat.com
3668 S:      Maintained
3669 F:      drivers/char/dtlk.c
3670 F:      include/linux/dtlk.h
3671
3672 DPT_I2O SCSI RAID DRIVER
3673 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
3674 L:      linux-scsi@vger.kernel.org
3675 W:      http://www.adaptec.com/
3676 S:      Maintained
3677 F:      drivers/scsi/dpt*
3678 F:      drivers/scsi/dpt/
3679
3680 DRBD DRIVER
3681 M:      Philipp Reisner <philipp.reisner@linbit.com>
3682 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
3683 L:      drbd-dev@lists.linbit.com
3684 W:      http://www.drbd.org
3685 T:      git git://git.linbit.com/linux-drbd.git
3686 T:      git git://git.linbit.com/drbd-8.4.git
3687 S:      Supported
3688 F:      drivers/block/drbd/
3689 F:      lib/lru_cache.c
3690 F:      Documentation/blockdev/drbd/
3691
3692 DRIVER CORE, KOBJECTS, DEBUGFS, KERNFS AND SYSFS
3693 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
3694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
3695 S:      Supported
3696 F:      Documentation/kobject.txt
3697 F:      drivers/base/
3698 F:      fs/debugfs/
3699 F:      fs/kernfs/
3700 F:      fs/sysfs/
3701 F:      include/linux/debugfs.h
3702 F:      include/linux/kobj*
3703 F:      lib/kobj*
3704
3705 DRM DRIVERS
3706 M:      David Airlie <airlied@linux.ie>
3707 L:      dri-devel@lists.freedesktop.org
3708 T:      git git://people.freedesktop.org/~airlied/linux
3709 S:      Maintained
3710 F:      drivers/gpu/drm/
3711 F:      drivers/gpu/vga/
3712 F:      include/drm/
3713 F:      include/uapi/drm/
3714
3715 RADEON DRM DRIVERS
3716 M:      Alex Deucher <alexander.deucher@amd.com>
3717 M:      Christian König <christian.koenig@amd.com>
3718 L:      dri-devel@lists.freedesktop.org
3719 T:      git git://people.freedesktop.org/~agd5f/linux
3720 S:      Supported
3721 F:      drivers/gpu/drm/radeon/
3722 F:      include/uapi/drm/radeon*
3723
3724 DRM PANEL DRIVERS
3725 M:      Thierry Reding <thierry.reding@gmail.com>
3726 L:      dri-devel@lists.freedesktop.org
3727 T:      git git://anongit.freedesktop.org/tegra/linux.git
3728 S:      Maintained
3729 F:      drivers/gpu/drm/drm_panel.c
3730 F:      drivers/gpu/drm/panel/
3731 F:      include/drm/drm_panel.h
3732 F:      Documentation/devicetree/bindings/display/panel/
3733
3734 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
3735 M:      Daniel Vetter <daniel.vetter@intel.com>
3736 M:      Jani Nikula <jani.nikula@linux.intel.com>
3737 L:      intel-gfx@lists.freedesktop.org
3738 L:      dri-devel@lists.freedesktop.org
3739 W:      https://01.org/linuxgraphics/
3740 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
3741 T:      git git://anongit.freedesktop.org/drm-intel
3742 S:      Supported
3743 F:      drivers/gpu/drm/i915/
3744 F:      include/drm/i915*
3745 F:      include/uapi/drm/i915*
3746
3747 DRM DRIVERS FOR ATMEL HLCDC
3748 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
3749 L:      dri-devel@lists.freedesktop.org
3750 S:      Supported
3751 F:      drivers/gpu/drm/atmel-hlcdc/
3752 F:      Documentation/devicetree/bindings/drm/atmel/
3753
3754 DRM DRIVERS FOR EXYNOS
3755 M:      Inki Dae <inki.dae@samsung.com>
3756 M:      Joonyoung Shim <jy0922.shim@samsung.com>
3757 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
3758 M:      Kyungmin Park <kyungmin.park@samsung.com>
3759 L:      dri-devel@lists.freedesktop.org
3760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
3761 S:      Supported
3762 F:      drivers/gpu/drm/exynos/
3763 F:      include/drm/exynos*
3764 F:      include/uapi/drm/exynos*
3765
3766 DRM DRIVERS FOR FREESCALE DCU
3767 M:      Stefan Agner <stefan@agner.ch>
3768 M:      Alison Wang <alison.wang@freescale.com>
3769 L:      dri-devel@lists.freedesktop.org
3770 S:      Supported
3771 F:      drivers/gpu/drm/fsl-dcu/
3772 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
3773 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
3774
3775 DRM DRIVERS FOR FREESCALE IMX
3776 M:      Philipp Zabel <p.zabel@pengutronix.de>
3777 L:      dri-devel@lists.freedesktop.org
3778 S:      Maintained
3779 F:      drivers/gpu/drm/imx/
3780 F:      drivers/gpu/ipu-v3/
3781 F:      Documentation/devicetree/bindings/display/imx/
3782
3783 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
3784 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
3785 L:      dri-devel@lists.freedesktop.org
3786 T:      git git://github.com/patjak/drm-gma500
3787 S:      Maintained
3788 F:      drivers/gpu/drm/gma500
3789 F:      include/drm/gma500*
3790
3791 DRM DRIVERS FOR NVIDIA TEGRA
3792 M:      Thierry Reding <thierry.reding@gmail.com>
3793 M:      Terje Bergström <tbergstrom@nvidia.com>
3794 L:      dri-devel@lists.freedesktop.org
3795 L:      linux-tegra@vger.kernel.org
3796 T:      git git://anongit.freedesktop.org/tegra/linux.git
3797 S:      Supported
3798 F:      drivers/gpu/drm/tegra/
3799 F:      drivers/gpu/host1x/
3800 F:      include/linux/host1x.h
3801 F:      include/uapi/drm/tegra_drm.h
3802 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
3803
3804 DRM DRIVERS FOR RENESAS
3805 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
3806 L:      dri-devel@lists.freedesktop.org
3807 L:      linux-renesas-soc@vger.kernel.org
3808 T:      git git://people.freedesktop.org/~airlied/linux
3809 S:      Supported
3810 F:      drivers/gpu/drm/rcar-du/
3811 F:      drivers/gpu/drm/shmobile/
3812 F:      include/linux/platform_data/shmob_drm.h
3813
3814 DRM DRIVERS FOR ROCKCHIP
3815 M:      Mark Yao <mark.yao@rock-chips.com>
3816 L:      dri-devel@lists.freedesktop.org
3817 S:      Maintained
3818 F:      drivers/gpu/drm/rockchip/
3819 F:      Documentation/devicetree/bindings/display/rockchip*
3820
3821 DRM DRIVERS FOR STI
3822 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
3823 M:      Vincent Abriou <vincent.abriou@st.com>
3824 L:      dri-devel@lists.freedesktop.org
3825 T:      git http://git.linaro.org/people/benjamin.gaignard/kernel.git
3826 S:      Maintained
3827 F:      drivers/gpu/drm/sti
3828 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
3829
3830 DRM DRIVERS FOR VIVANTE GPU IP
3831 M:      Lucas Stach <l.stach@pengutronix.de>
3832 R:      Russell King <linux+etnaviv@arm.linux.org.uk>
3833 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
3834 L:      dri-devel@lists.freedesktop.org
3835 S:      Maintained
3836 F:      drivers/gpu/drm/etnaviv
3837 F:      Documentation/devicetree/bindings/display/etnaviv
3838
3839 DSBR100 USB FM RADIO DRIVER
3840 M:      Alexey Klimov <klimov.linux@gmail.com>
3841 L:      linux-media@vger.kernel.org
3842 T:      git git://linuxtv.org/media_tree.git
3843 S:      Maintained
3844 F:      drivers/media/radio/dsbr100.c
3845
3846 DSCC4 DRIVER
3847 M:      Francois Romieu <romieu@fr.zoreil.com>
3848 L:      netdev@vger.kernel.org
3849 S:      Maintained
3850 F:      drivers/net/wan/dscc4.c
3851
3852 DT3155 MEDIA DRIVER
3853 M:      Hans Verkuil <hverkuil@xs4all.nl>
3854 L:      linux-media@vger.kernel.org
3855 T:      git git://linuxtv.org/media_tree.git
3856 W:      https://linuxtv.org
3857 S:      Odd Fixes
3858 F:      drivers/media/pci/dt3155/
3859
3860 DVB_USB_AF9015 MEDIA DRIVER
3861 M:      Antti Palosaari <crope@iki.fi>
3862 L:      linux-media@vger.kernel.org
3863 W:      https://linuxtv.org
3864 W:      http://palosaari.fi/linux/
3865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3866 T:      git git://linuxtv.org/anttip/media_tree.git
3867 S:      Maintained
3868 F:      drivers/media/usb/dvb-usb-v2/af9015*
3869
3870 DVB_USB_AF9035 MEDIA DRIVER
3871 M:      Antti Palosaari <crope@iki.fi>
3872 L:      linux-media@vger.kernel.org
3873 W:      https://linuxtv.org
3874 W:      http://palosaari.fi/linux/
3875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3876 T:      git git://linuxtv.org/anttip/media_tree.git
3877 S:      Maintained
3878 F:      drivers/media/usb/dvb-usb-v2/af9035*
3879
3880 DVB_USB_ANYSEE MEDIA DRIVER
3881 M:      Antti Palosaari <crope@iki.fi>
3882 L:      linux-media@vger.kernel.org
3883 W:      https://linuxtv.org
3884 W:      http://palosaari.fi/linux/
3885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3886 T:      git git://linuxtv.org/anttip/media_tree.git
3887 S:      Maintained
3888 F:      drivers/media/usb/dvb-usb-v2/anysee*
3889
3890 DVB_USB_AU6610 MEDIA DRIVER
3891 M:      Antti Palosaari <crope@iki.fi>
3892 L:      linux-media@vger.kernel.org
3893 W:      https://linuxtv.org
3894 W:      http://palosaari.fi/linux/
3895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3896 T:      git git://linuxtv.org/anttip/media_tree.git
3897 S:      Maintained
3898 F:      drivers/media/usb/dvb-usb-v2/au6610*
3899
3900 DVB_USB_CE6230 MEDIA DRIVER
3901 M:      Antti Palosaari <crope@iki.fi>
3902 L:      linux-media@vger.kernel.org
3903 W:      https://linuxtv.org
3904 W:      http://palosaari.fi/linux/
3905 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3906 T:      git git://linuxtv.org/anttip/media_tree.git
3907 S:      Maintained
3908 F:      drivers/media/usb/dvb-usb-v2/ce6230*
3909
3910 DVB_USB_CXUSB MEDIA DRIVER
3911 M:      Michael Krufky <mkrufky@linuxtv.org>
3912 L:      linux-media@vger.kernel.org
3913 W:      https://linuxtv.org
3914 W:      http://github.com/mkrufky
3915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3916 T:      git git://linuxtv.org/media_tree.git
3917 S:      Maintained
3918 F:      drivers/media/usb/dvb-usb/cxusb*
3919
3920 DVB_USB_EC168 MEDIA DRIVER
3921 M:      Antti Palosaari <crope@iki.fi>
3922 L:      linux-media@vger.kernel.org
3923 W:      https://linuxtv.org
3924 W:      http://palosaari.fi/linux/
3925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3926 T:      git git://linuxtv.org/anttip/media_tree.git
3927 S:      Maintained
3928 F:      drivers/media/usb/dvb-usb-v2/ec168*
3929
3930 DVB_USB_GL861 MEDIA DRIVER
3931 M:      Antti Palosaari <crope@iki.fi>
3932 L:      linux-media@vger.kernel.org
3933 W:      https://linuxtv.org
3934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3935 T:      git git://linuxtv.org/anttip/media_tree.git
3936 S:      Maintained
3937 F:      drivers/media/usb/dvb-usb-v2/gl861*
3938
3939 DVB_USB_MXL111SF MEDIA DRIVER
3940 M:      Michael Krufky <mkrufky@linuxtv.org>
3941 L:      linux-media@vger.kernel.org
3942 W:      https://linuxtv.org
3943 W:      http://github.com/mkrufky
3944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3945 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
3946 S:      Maintained
3947 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
3948
3949 DVB_USB_RTL28XXU MEDIA DRIVER
3950 M:      Antti Palosaari <crope@iki.fi>
3951 L:      linux-media@vger.kernel.org
3952 W:      https://linuxtv.org
3953 W:      http://palosaari.fi/linux/
3954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3955 T:      git git://linuxtv.org/anttip/media_tree.git
3956 S:      Maintained
3957 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
3958
3959 DVB_USB_V2 MEDIA DRIVER
3960 M:      Antti Palosaari <crope@iki.fi>
3961 L:      linux-media@vger.kernel.org
3962 W:      https://linuxtv.org
3963 W:      http://palosaari.fi/linux/
3964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3965 T:      git git://linuxtv.org/anttip/media_tree.git
3966 S:      Maintained
3967 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
3968 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
3969
3970 DYNAMIC DEBUG
3971 M:      Jason Baron <jbaron@akamai.com>
3972 S:      Maintained
3973 F:      lib/dynamic_debug.c
3974 F:      include/linux/dynamic_debug.h
3975
3976 DZ DECSTATION DZ11 SERIAL DRIVER
3977 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
3978 S:      Maintained
3979 F:      drivers/tty/serial/dz.*
3980
3981 E3X0 POWER BUTTON DRIVER
3982 M:      Moritz Fischer <moritz.fischer@ettus.com>
3983 L:      usrp-users@lists.ettus.com
3984 W:      http://www.ettus.com
3985 S:      Supported
3986 F:      drivers/input/misc/e3x0-button.c
3987 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
3988
3989 E4000 MEDIA DRIVER
3990 M:      Antti Palosaari <crope@iki.fi>
3991 L:      linux-media@vger.kernel.org
3992 W:      https://linuxtv.org
3993 W:      http://palosaari.fi/linux/
3994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3995 T:      git git://linuxtv.org/anttip/media_tree.git
3996 S:      Maintained
3997 F:      drivers/media/tuners/e4000*
3998
3999 EATA ISA/EISA/PCI SCSI DRIVER
4000 M:      Dario Ballabio <ballabio_dario@emc.com>
4001 L:      linux-scsi@vger.kernel.org
4002 S:      Maintained
4003 F:      drivers/scsi/eata.c
4004
4005 EC100 MEDIA DRIVER
4006 M:      Antti Palosaari <crope@iki.fi>
4007 L:      linux-media@vger.kernel.org
4008 W:      https://linuxtv.org
4009 W:      http://palosaari.fi/linux/
4010 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4011 T:      git git://linuxtv.org/anttip/media_tree.git
4012 S:      Maintained
4013 F:      drivers/media/dvb-frontends/ec100*
4014
4015 ECRYPT FILE SYSTEM
4016 M:      Tyler Hicks <tyhicks@canonical.com>
4017 L:      ecryptfs@vger.kernel.org
4018 W:      http://ecryptfs.org
4019 W:      https://launchpad.net/ecryptfs
4020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4021 S:      Supported
4022 F:      Documentation/filesystems/ecryptfs.txt
4023 F:      fs/ecryptfs/
4024
4025 EDAC-CORE
4026 M:      Doug Thompson <dougthompson@xmission.com>
4027 M:      Borislav Petkov <bp@alien8.de>
4028 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4029 L:      linux-edac@vger.kernel.org
4030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4032 S:      Supported
4033 F:      Documentation/edac.txt
4034 F:      drivers/edac/
4035 F:      include/linux/edac.h
4036
4037 EDAC-AMD64
4038 M:      Doug Thompson <dougthompson@xmission.com>
4039 M:      Borislav Petkov <bp@alien8.de>
4040 L:      linux-edac@vger.kernel.org
4041 S:      Maintained
4042 F:      drivers/edac/amd64_edac*
4043
4044 EDAC-CALXEDA
4045 M:      Doug Thompson <dougthompson@xmission.com>
4046 M:      Robert Richter <rric@kernel.org>
4047 L:      linux-edac@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/edac/highbank*
4050
4051 EDAC-CAVIUM
4052 M:      Ralf Baechle <ralf@linux-mips.org>
4053 M:      David Daney <david.daney@cavium.com>
4054 L:      linux-edac@vger.kernel.org
4055 L:      linux-mips@linux-mips.org
4056 S:      Supported
4057 F:      drivers/edac/octeon_edac*
4058
4059 EDAC-E752X
4060 M:      Mark Gross <mark.gross@intel.com>
4061 M:      Doug Thompson <dougthompson@xmission.com>
4062 L:      linux-edac@vger.kernel.org
4063 S:      Maintained
4064 F:      drivers/edac/e752x_edac.c
4065
4066 EDAC-E7XXX
4067 M:      Doug Thompson <dougthompson@xmission.com>
4068 L:      linux-edac@vger.kernel.org
4069 S:      Maintained
4070 F:      drivers/edac/e7xxx_edac.c
4071
4072 EDAC-GHES
4073 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4074 L:      linux-edac@vger.kernel.org
4075 S:      Maintained
4076 F:      drivers/edac/ghes_edac.c
4077
4078 EDAC-I82443BXGX
4079 M:      Tim Small <tim@buttersideup.com>
4080 L:      linux-edac@vger.kernel.org
4081 S:      Maintained
4082 F:      drivers/edac/i82443bxgx_edac.c
4083
4084 EDAC-I3000
4085 M:      Jason Uhlenkott <juhlenko@akamai.com>
4086 L:      linux-edac@vger.kernel.org
4087 S:      Maintained
4088 F:      drivers/edac/i3000_edac.c
4089
4090 EDAC-I5000
4091 M:      Doug Thompson <dougthompson@xmission.com>
4092 L:      linux-edac@vger.kernel.org
4093 S:      Maintained
4094 F:      drivers/edac/i5000_edac.c
4095
4096 EDAC-I5400
4097 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4098 L:      linux-edac@vger.kernel.org
4099 S:      Maintained
4100 F:      drivers/edac/i5400_edac.c
4101
4102 EDAC-I7300
4103 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4104 L:      linux-edac@vger.kernel.org
4105 S:      Maintained
4106 F:      drivers/edac/i7300_edac.c
4107
4108 EDAC-I7CORE
4109 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4110 L:      linux-edac@vger.kernel.org
4111 S:      Maintained
4112 F:      drivers/edac/i7core_edac.c
4113
4114 EDAC-I82975X
4115 M:      Ranganathan Desikan <ravi@jetztechnologies.com>
4116 M:      "Arvind R." <arvino55@gmail.com>
4117 L:      linux-edac@vger.kernel.org
4118 S:      Maintained
4119 F:      drivers/edac/i82975x_edac.c
4120
4121 EDAC-IE31200
4122 M:      Jason Baron <jbaron@akamai.com>
4123 L:      linux-edac@vger.kernel.org
4124 S:      Maintained
4125 F:      drivers/edac/ie31200_edac.c
4126
4127 EDAC-MPC85XX
4128 M:      Johannes Thumshirn <morbidrsa@gmail.com>
4129 L:      linux-edac@vger.kernel.org
4130 S:      Maintained
4131 F:      drivers/edac/mpc85xx_edac.[ch]
4132
4133 EDAC-PASEMI
4134 M:      Egor Martovetsky <egor@pasemi.com>
4135 L:      linux-edac@vger.kernel.org
4136 S:      Maintained
4137 F:      drivers/edac/pasemi_edac.c
4138
4139 EDAC-R82600
4140 M:      Tim Small <tim@buttersideup.com>
4141 L:      linux-edac@vger.kernel.org
4142 S:      Maintained
4143 F:      drivers/edac/r82600_edac.c
4144
4145 EDAC-SBRIDGE
4146 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4147 L:      linux-edac@vger.kernel.org
4148 S:      Maintained
4149 F:      drivers/edac/sb_edac.c
4150
4151 EDAC-XGENE
4152 APPLIED MICRO (APM) X-GENE SOC EDAC
4153 M:     Loc Ho <lho@apm.com>
4154 S:     Supported
4155 F:     drivers/edac/xgene_edac.c
4156 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4157
4158 EDIROL UA-101/UA-1000 DRIVER
4159 M:      Clemens Ladisch <clemens@ladisch.de>
4160 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4161 T:      git git://git.alsa-project.org/alsa-kernel.git
4162 S:      Maintained
4163 F:      sound/usb/misc/ua101.c
4164
4165 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4166 M:      Matt Fleming <matt@codeblueprint.co.uk>
4167 L:      linux-efi@vger.kernel.org
4168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4169 S:      Maintained
4170 F:      Documentation/efi-stub.txt
4171 F:      arch/ia64/kernel/efi.c
4172 F:      arch/x86/boot/compressed/eboot.[ch]
4173 F:      arch/x86/include/asm/efi.h
4174 F:      arch/x86/platform/efi/*
4175 F:      drivers/firmware/efi/*
4176 F:      include/linux/efi*.h
4177
4178 EFI VARIABLE FILESYSTEM
4179 M:      Matthew Garrett <matthew.garrett@nebula.com>
4180 M:      Jeremy Kerr <jk@ozlabs.org>
4181 M:      Matt Fleming <matt@codeblueprint.co.uk>
4182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4183 L:      linux-efi@vger.kernel.org
4184 S:      Maintained
4185 F:      fs/efivarfs/
4186
4187 EFIFB FRAMEBUFFER DRIVER
4188 L:      linux-fbdev@vger.kernel.org
4189 M:      Peter Jones <pjones@redhat.com>
4190 S:      Maintained
4191 F:      drivers/video/fbdev/efifb.c
4192
4193 EFS FILESYSTEM
4194 W:      http://aeschi.ch.eu.org/efs/
4195 S:      Orphan
4196 F:      fs/efs/
4197
4198 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4199 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
4200 L:      netdev@vger.kernel.org
4201 S:      Maintained
4202 F:      drivers/net/ethernet/ibm/ehea/
4203
4204 EM28XX VIDEO4LINUX DRIVER
4205 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
4206 L:      linux-media@vger.kernel.org
4207 W:      https://linuxtv.org
4208 T:      git git://linuxtv.org/media_tree.git
4209 S:      Maintained
4210 F:      drivers/media/usb/em28xx/
4211
4212 EMBEDDED LINUX
4213 M:      Paul Gortmaker <paul.gortmaker@windriver.com>
4214 M:      Matt Mackall <mpm@selenic.com>
4215 M:      David Woodhouse <dwmw2@infradead.org>
4216 L:      linux-embedded@vger.kernel.org
4217 S:      Maintained
4218
4219 EMULEX/AVAGO LPFC FC/FCOE SCSI DRIVER
4220 M:      James Smart <james.smart@avagotech.com>
4221 M:      Dick Kennedy <dick.kennedy@avagotech.com>
4222 L:      linux-scsi@vger.kernel.org
4223 W:      http://www.avagotech.com
4224 S:      Supported
4225 F:      drivers/scsi/lpfc/
4226
4227 ENE CB710 FLASH CARD READER DRIVER
4228 M:      MichaÅ‚ MirosÅ‚aw <mirq-linux@rere.qmqm.pl>
4229 S:      Maintained
4230 F:      drivers/misc/cb710/
4231 F:      drivers/mmc/host/cb710-mmc.*
4232 F:      include/linux/cb710.h
4233
4234 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4235 M:      Maxim Levitsky <maximlevitsky@gmail.com>
4236 S:      Maintained
4237 F:      drivers/media/rc/ene_ir.*
4238
4239 ENHANCED ERROR HANDLING (EEH)
4240 M:      Gavin Shan <shangw@linux.vnet.ibm.com>
4241 L:      linuxppc-dev@lists.ozlabs.org
4242 S:      Supported
4243 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
4244 F:      arch/powerpc/kernel/eeh*.c
4245
4246 EPSON S1D13XXX FRAMEBUFFER DRIVER
4247 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
4248 S:      Maintained
4249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4250 F:      drivers/video/fbdev/s1d13xxxfb.c
4251 F:      include/video/s1d13xxxfb.h
4252
4253 ET131X NETWORK DRIVER
4254 M:      Mark Einon <mark.einon@gmail.com>
4255 S:      Odd Fixes
4256 F:      drivers/net/ethernet/agere/
4257
4258 ETHERNET BRIDGE
4259 M:      Stephen Hemminger <stephen@networkplumber.org>
4260 L:      bridge@lists.linux-foundation.org
4261 L:      netdev@vger.kernel.org
4262 W:      http://www.linuxfoundation.org/en/Net:Bridge
4263 S:      Maintained
4264 F:      include/linux/netfilter_bridge/
4265 F:      net/bridge/
4266
4267 ETHERNET PHY LIBRARY
4268 M:      Florian Fainelli <f.fainelli@gmail.com>
4269 L:      netdev@vger.kernel.org
4270 S:      Maintained
4271 F:      include/linux/phy.h
4272 F:      include/linux/phy_fixed.h
4273 F:      drivers/net/phy/
4274 F:      Documentation/networking/phy.txt
4275 F:      drivers/of/of_mdio.c
4276 F:      drivers/of/of_net.c
4277
4278 EXT2 FILE SYSTEM
4279 M:      Jan Kara <jack@suse.com>
4280 L:      linux-ext4@vger.kernel.org
4281 S:      Maintained
4282 F:      Documentation/filesystems/ext2.txt
4283 F:      fs/ext2/
4284 F:      include/linux/ext2*
4285
4286 EXT4 FILE SYSTEM
4287 M:      "Theodore Ts'o" <tytso@mit.edu>
4288 M:      Andreas Dilger <adilger.kernel@dilger.ca>
4289 L:      linux-ext4@vger.kernel.org
4290 W:      http://ext4.wiki.kernel.org
4291 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
4292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
4293 S:      Maintained
4294 F:      Documentation/filesystems/ext4.txt
4295 F:      fs/ext4/
4296
4297 Extended Verification Module (EVM)
4298 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
4299 L:      linux-ima-devel@lists.sourceforge.net
4300 L:      linux-security-module@vger.kernel.org
4301 S:      Supported
4302 F:      security/integrity/evm/
4303
4304 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
4305 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
4306 M:      Chanwoo Choi <cw00.choi@samsung.com>
4307 L:      linux-kernel@vger.kernel.org
4308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
4309 S:      Maintained
4310 F:      drivers/extcon/
4311 F:      include/linux/extcon/
4312 F:      include/linux/extcon.h
4313 F:      Documentation/extcon/
4314 F:      Documentation/devicetree/bindings/extcon/
4315
4316 EXYNOS DP DRIVER
4317 M:      Jingoo Han <jingoohan1@gmail.com>
4318 L:      dri-devel@lists.freedesktop.org
4319 S:      Maintained
4320 F:      drivers/gpu/drm/exynos/exynos_dp*
4321
4322 EXYNOS MIPI DISPLAY DRIVERS
4323 M:      Inki Dae <inki.dae@samsung.com>
4324 M:      Donghwa Lee <dh09.lee@samsung.com>
4325 M:      Kyungmin Park <kyungmin.park@samsung.com>
4326 L:      linux-fbdev@vger.kernel.org
4327 S:      Maintained
4328 F:      drivers/video/fbdev/exynos/exynos_mipi*
4329 F:      include/video/exynos_mipi*
4330
4331 F71805F HARDWARE MONITORING DRIVER
4332 M:      Jean Delvare <jdelvare@suse.com>
4333 L:      lm-sensors@lm-sensors.org
4334 S:      Maintained
4335 F:      Documentation/hwmon/f71805f
4336 F:      drivers/hwmon/f71805f.c
4337
4338 FC0011 TUNER DRIVER
4339 M:      Michael Buesch <m@bues.ch>
4340 L:      linux-media@vger.kernel.org
4341 S:      Maintained
4342 F:      drivers/media/tuners/fc0011.h
4343 F:      drivers/media/tuners/fc0011.c
4344
4345 FC2580 MEDIA DRIVER
4346 M:      Antti Palosaari <crope@iki.fi>
4347 L:      linux-media@vger.kernel.org
4348 W:      https://linuxtv.org
4349 W:      http://palosaari.fi/linux/
4350 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4351 T:      git git://linuxtv.org/anttip/media_tree.git
4352 S:      Maintained
4353 F:      drivers/media/tuners/fc2580*
4354
4355 FANOTIFY
4356 M:      Eric Paris <eparis@redhat.com>
4357 S:      Maintained
4358 F:      fs/notify/fanotify/
4359 F:      include/linux/fanotify.h
4360 F:      include/uapi/linux/fanotify.h
4361
4362 FARSYNC SYNCHRONOUS DRIVER
4363 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
4364 W:      http://www.farsite.co.uk/
4365 S:      Supported
4366 F:      drivers/net/wan/farsync.*
4367
4368 FAULT INJECTION SUPPORT
4369 M:      Akinobu Mita <akinobu.mita@gmail.com>
4370 S:      Supported
4371 F:      Documentation/fault-injection/
4372 F:      lib/fault-inject.c
4373
4374 FBTFT Framebuffer drivers
4375 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
4376 M:      Noralf Trønnes <noralf@tronnes.org>
4377 S:      Maintained
4378 F:      drivers/staging/fbtft/
4379
4380 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
4381 M:      Vasu Dev <vasu.dev@intel.com>
4382 L:      fcoe-devel@open-fcoe.org
4383 W:      www.Open-FCoE.org
4384 S:      Supported
4385 F:      drivers/scsi/libfc/
4386 F:      drivers/scsi/fcoe/
4387 F:      include/scsi/fc/
4388 F:      include/scsi/libfc.h
4389 F:      include/scsi/libfcoe.h
4390 F:      include/uapi/scsi/fc/
4391
4392 FILE LOCKING (flock() and fcntl()/lockf())
4393 M:      Jeff Layton <jlayton@poochiereds.net>
4394 M:      "J. Bruce Fields" <bfields@fieldses.org>
4395 L:      linux-fsdevel@vger.kernel.org
4396 S:      Maintained
4397 F:      include/linux/fcntl.h
4398 F:      include/linux/fs.h
4399 F:      include/uapi/linux/fcntl.h
4400 F:      include/uapi/linux/fs.h
4401 F:      fs/fcntl.c
4402 F:      fs/locks.c
4403
4404 FILESYSTEMS (VFS and infrastructure)
4405 M:      Alexander Viro <viro@zeniv.linux.org.uk>
4406 L:      linux-fsdevel@vger.kernel.org
4407 S:      Maintained
4408 F:      fs/*
4409
4410 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
4411 M:      Riku Voipio <riku.voipio@iki.fi>
4412 L:      lm-sensors@lm-sensors.org
4413 S:      Maintained
4414 F:      drivers/hwmon/f75375s.c
4415 F:      include/linux/f75375s.h
4416
4417 FIREWIRE AUDIO DRIVERS
4418 M:      Clemens Ladisch <clemens@ladisch.de>
4419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4420 T:      git git://git.alsa-project.org/alsa-kernel.git
4421 S:      Maintained
4422 F:      sound/firewire/
4423
4424 FIREWIRE MEDIA DRIVERS (firedtv)
4425 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4426 L:      linux-media@vger.kernel.org
4427 L:      linux1394-devel@lists.sourceforge.net
4428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
4429 S:      Maintained
4430 F:      drivers/media/firewire/
4431
4432 FIREWIRE SBP-2 TARGET
4433 M:      Chris Boot <bootc@bootc.net>
4434 L:      linux-scsi@vger.kernel.org
4435 L:      target-devel@vger.kernel.org
4436 L:      linux1394-devel@lists.sourceforge.net
4437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
4438 S:      Maintained
4439 F:      drivers/target/sbp/
4440
4441 FIREWIRE SUBSYSTEM
4442 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
4443 L:      linux1394-devel@lists.sourceforge.net
4444 W:      http://ieee1394.wiki.kernel.org/
4445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
4446 S:      Maintained
4447 F:      drivers/firewire/
4448 F:      include/linux/firewire.h
4449 F:      include/uapi/linux/firewire*.h
4450 F:      tools/firewire/
4451
4452 FIRMWARE LOADER (request_firmware)
4453 M:      Ming Lei <ming.lei@canonical.com>
4454 L:      linux-kernel@vger.kernel.org
4455 S:      Maintained
4456 F:      Documentation/firmware_class/
4457 F:      drivers/base/firmware*.c
4458 F:      include/linux/firmware.h
4459
4460 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
4461 M:      Joshua Morris <josh.h.morris@us.ibm.com>
4462 M:      Philip Kelleher <pjk1939@linux.vnet.ibm.com>
4463 S:      Maintained
4464 F:      drivers/block/rsxx/
4465
4466 FLOPPY DRIVER
4467 M:      Jiri Kosina <jikos@kernel.org>
4468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
4469 S:      Odd fixes
4470 F:      drivers/block/floppy.c
4471
4472 FMC SUBSYSTEM
4473 M:      Alessandro Rubini <rubini@gnudd.com>
4474 W:      http://www.ohwr.org/projects/fmc-bus
4475 S:      Supported
4476 F:      drivers/fmc/
4477 F:      include/linux/fmc*.h
4478 F:      include/linux/ipmi-fru.h
4479 K:      fmc_d.*register
4480
4481 FPGA MANAGER FRAMEWORK
4482 M:      Alan Tull <atull@opensource.altera.com>
4483 R:      Moritz Fischer <moritz.fischer@ettus.com>
4484 S:      Maintained
4485 F:      drivers/fpga/
4486 F:      include/linux/fpga/fpga-mgr.h
4487 W:      http://www.rocketboards.org
4488
4489 FPU EMULATOR
4490 M:      Bill Metzenthen <billm@melbpc.org.au>
4491 W:      http://floatingpoint.sourceforge.net/emulator/index.html
4492 S:      Maintained
4493 F:      arch/x86/math-emu/
4494
4495 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
4496 L:      netdev@vger.kernel.org
4497 S:      Orphan
4498 F:      drivers/net/wan/dlci.c
4499 F:      drivers/net/wan/sdla.c
4500
4501 FRAMEBUFFER LAYER
4502 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
4503 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
4504 L:      linux-fbdev@vger.kernel.org
4505 W:      http://linux-fbdev.sourceforge.net/
4506 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
4507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/plagnioj/linux-fbdev.git
4508 S:      Maintained
4509 F:      Documentation/fb/
4510 F:      drivers/video/
4511 F:      include/video/
4512 F:      include/linux/fb.h
4513 F:      include/uapi/video/
4514 F:      include/uapi/linux/fb.h
4515
4516 FREESCALE DIU FRAMEBUFFER DRIVER
4517 M:      Timur Tabi <timur@tabi.org>
4518 L:      linux-fbdev@vger.kernel.org
4519 S:      Maintained
4520 F:      drivers/video/fbdev/fsl-diu-fb.*
4521
4522 FREESCALE DMA DRIVER
4523 M:      Li Yang <leoli@freescale.com>
4524 M:      Zhang Wei <zw@zh-kernel.org>
4525 L:      linuxppc-dev@lists.ozlabs.org
4526 S:      Maintained
4527 F:      drivers/dma/fsldma.*
4528
4529 FREESCALE I2C CPM DRIVER
4530 M:      Jochen Friedrich <jochen@scram.de>
4531 L:      linuxppc-dev@lists.ozlabs.org
4532 L:      linux-i2c@vger.kernel.org
4533 S:      Maintained
4534 F:      drivers/i2c/busses/i2c-cpm.c
4535
4536 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
4537 M:      Sascha Hauer <kernel@pengutronix.de>
4538 L:      linux-fbdev@vger.kernel.org
4539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4540 S:      Maintained
4541 F:      include/linux/platform_data/video-imxfb.h
4542 F:      drivers/video/fbdev/imxfb.c
4543
4544 FREESCALE QUAD SPI DRIVER
4545 M:      Han Xu <han.xu@freescale.com>
4546 L:      linux-mtd@lists.infradead.org
4547 S:      Maintained
4548 F:      drivers/mtd/spi-nor/fsl-quadspi.c
4549
4550 FREESCALE SOC FS_ENET DRIVER
4551 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
4552 M:      Vitaly Bordug <vbordug@ru.mvista.com>
4553 L:      linuxppc-dev@lists.ozlabs.org
4554 L:      netdev@vger.kernel.org
4555 S:      Maintained
4556 F:      drivers/net/ethernet/freescale/fs_enet/
4557 F:      include/linux/fs_enet_pd.h
4558
4559 FREESCALE QUICC ENGINE LIBRARY
4560 L:      linuxppc-dev@lists.ozlabs.org
4561 S:      Orphan
4562 F:      drivers/soc/fsl/qe/
4563 F:      include/soc/fsl/*qe*.h
4564 F:      include/soc/fsl/*ucc*.h
4565
4566 FREESCALE USB PERIPHERAL DRIVERS
4567 M:      Li Yang <leoli@freescale.com>
4568 L:      linux-usb@vger.kernel.org
4569 L:      linuxppc-dev@lists.ozlabs.org
4570 S:      Maintained
4571 F:      drivers/usb/gadget/udc/fsl*
4572
4573 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
4574 M:      Li Yang <leoli@freescale.com>
4575 L:      netdev@vger.kernel.org
4576 L:      linuxppc-dev@lists.ozlabs.org
4577 S:      Maintained
4578 F:      drivers/net/ethernet/freescale/ucc_geth*
4579
4580 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
4581 M:      Claudiu Manoil <claudiu.manoil@freescale.com>
4582 L:      netdev@vger.kernel.org
4583 S:      Maintained
4584 F:      drivers/net/ethernet/freescale/gianfar*
4585 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
4586 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
4587
4588 FREESCALE QUICC ENGINE UCC UART DRIVER
4589 M:      Timur Tabi <timur@tabi.org>
4590 L:      linuxppc-dev@lists.ozlabs.org
4591 S:      Maintained
4592 F:      drivers/tty/serial/ucc_uart.c
4593
4594 FREESCALE SOC SOUND DRIVERS
4595 M:      Timur Tabi <timur@tabi.org>
4596 M:      Nicolin Chen <nicoleotsuka@gmail.com>
4597 M:      Xiubo Li <Xiubo.Lee@gmail.com>
4598 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4599 L:      linuxppc-dev@lists.ozlabs.org
4600 S:      Maintained
4601 F:      sound/soc/fsl/fsl*
4602 F:      sound/soc/fsl/imx*
4603 F:      sound/soc/fsl/mpc8610_hpcd.c
4604
4605 FREESCALE QORIQ MANAGEMENT COMPLEX DRIVER
4606 M:      "J. German Rivera" <German.Rivera@freescale.com>
4607 L:      linux-kernel@vger.kernel.org
4608 S:      Maintained
4609 F:      drivers/staging/fsl-mc/
4610
4611 FREEVXFS FILESYSTEM
4612 M:      Christoph Hellwig <hch@infradead.org>
4613 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
4614 S:      Maintained
4615 F:      fs/freevxfs/
4616
4617 FREEZER
4618 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4619 M:      Pavel Machek <pavel@ucw.cz>
4620 L:      linux-pm@vger.kernel.org
4621 S:      Supported
4622 F:      Documentation/power/freezing-of-tasks.txt
4623 F:      include/linux/freezer.h
4624 F:      kernel/freezer.c
4625
4626 FRONTSWAP API
4627 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4628 L:      linux-kernel@vger.kernel.org
4629 S:      Maintained
4630 F:      mm/frontswap.c
4631 F:      include/linux/frontswap.h
4632
4633 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
4634 M:      David Howells <dhowells@redhat.com>
4635 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4636 S:      Supported
4637 F:      Documentation/filesystems/caching/
4638 F:      fs/fscache/
4639 F:      include/linux/fscache*.h
4640
4641 F2FS FILE SYSTEM
4642 M:      Jaegeuk Kim <jaegeuk@kernel.org>
4643 M:      Changman Lee <cm224.lee@samsung.com>
4644 R:      Chao Yu <chao2.yu@samsung.com>
4645 L:      linux-f2fs-devel@lists.sourceforge.net
4646 W:      http://en.wikipedia.org/wiki/F2FS
4647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
4648 S:      Maintained
4649 F:      Documentation/filesystems/f2fs.txt
4650 F:      Documentation/ABI/testing/sysfs-fs-f2fs
4651 F:      fs/f2fs/
4652 F:      include/linux/f2fs_fs.h
4653 F:      include/trace/events/f2fs.h
4654
4655 FUJITSU FR-V (FRV) PORT
4656 S:      Orphan
4657 F:      arch/frv/
4658
4659 FUJITSU LAPTOP EXTRAS
4660 M:      Jonathan Woithe <jwoithe@just42.net>
4661 L:      platform-driver-x86@vger.kernel.org
4662 S:      Maintained
4663 F:      drivers/platform/x86/fujitsu-laptop.c
4664
4665 FUJITSU M-5MO LS CAMERA ISP DRIVER
4666 M:      Kyungmin Park <kyungmin.park@samsung.com>
4667 M:      Heungjun Kim <riverful.kim@samsung.com>
4668 L:      linux-media@vger.kernel.org
4669 S:      Maintained
4670 F:      drivers/media/i2c/m5mols/
4671 F:      include/media/i2c/m5mols.h
4672
4673 FUJITSU TABLET EXTRAS
4674 M:      Robert Gerlach <khnz@gmx.de>
4675 L:      platform-driver-x86@vger.kernel.org
4676 S:      Maintained
4677 F:      drivers/platform/x86/fujitsu-tablet.c
4678
4679 FUSE: FILESYSTEM IN USERSPACE
4680 M:      Miklos Szeredi <miklos@szeredi.hu>
4681 L:      fuse-devel@lists.sourceforge.net
4682 W:      http://fuse.sourceforge.net/
4683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
4684 S:      Maintained
4685 F:      fs/fuse/
4686 F:      include/uapi/linux/fuse.h
4687 F:      Documentation/filesystems/fuse.txt
4688
4689 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
4690 M:      Rik Faith <faith@cs.unc.edu>
4691 L:      linux-scsi@vger.kernel.org
4692 S:      Odd Fixes (e.g., new signatures)
4693 F:      drivers/scsi/fdomain.*
4694
4695 GCOV BASED KERNEL PROFILING
4696 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
4697 S:      Maintained
4698 F:      kernel/gcov/
4699 F:      Documentation/gcov.txt
4700
4701 GDT SCSI DISK ARRAY CONTROLLER DRIVER
4702 M:      Achim Leubner <achim_leubner@adaptec.com>
4703 L:      linux-scsi@vger.kernel.org
4704 W:      http://www.icp-vortex.com/
4705 S:      Supported
4706 F:      drivers/scsi/gdt*
4707
4708 GDB KERNEL DEBUGGING HELPER SCRIPTS
4709 M:      Jan Kiszka <jan.kiszka@siemens.com>
4710 S:      Supported
4711 F:      scripts/gdb/
4712
4713 GEMTEK FM RADIO RECEIVER DRIVER
4714 M:      Hans Verkuil <hverkuil@xs4all.nl>
4715 L:      linux-media@vger.kernel.org
4716 T:      git git://linuxtv.org/media_tree.git
4717 W:      https://linuxtv.org
4718 S:      Maintained
4719 F:      drivers/media/radio/radio-gemtek*
4720
4721 GENERIC GPIO I2C DRIVER
4722 M:      Haavard Skinnemoen <hskinnemoen@gmail.com>
4723 S:      Supported
4724 F:      drivers/i2c/busses/i2c-gpio.c
4725 F:      include/linux/i2c-gpio.h
4726
4727 GENERIC GPIO I2C MULTIPLEXER DRIVER
4728 M:      Peter Korsgaard <peter.korsgaard@barco.com>
4729 L:      linux-i2c@vger.kernel.org
4730 S:      Supported
4731 F:      drivers/i2c/muxes/i2c-mux-gpio.c
4732 F:      include/linux/i2c-mux-gpio.h
4733 F:      Documentation/i2c/muxes/i2c-mux-gpio
4734
4735 GENERIC HDLC (WAN) DRIVERS
4736 M:      Krzysztof Halasa <khc@pm.waw.pl>
4737 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
4738 S:      Maintained
4739 F:      drivers/net/wan/c101.c
4740 F:      drivers/net/wan/hd6457*
4741 F:      drivers/net/wan/hdlc*
4742 F:      drivers/net/wan/n2.c
4743 F:      drivers/net/wan/pc300too.c
4744 F:      drivers/net/wan/pci200syn.c
4745 F:      drivers/net/wan/wanxl*
4746
4747 GENERIC INCLUDE/ASM HEADER FILES
4748 M:      Arnd Bergmann <arnd@arndb.de>
4749 L:      linux-arch@vger.kernel.org
4750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
4751 S:      Maintained
4752 F:      include/asm-generic/
4753 F:      include/uapi/asm-generic/
4754
4755 GENERIC PHY FRAMEWORK
4756 M:      Kishon Vijay Abraham I <kishon@ti.com>
4757 L:      linux-kernel@vger.kernel.org
4758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
4759 S:      Supported
4760 F:      drivers/phy/
4761 F:      include/linux/phy/
4762
4763 GENERIC PM DOMAINS
4764 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
4765 M:      Kevin Hilman <khilman@kernel.org>
4766 M:      Ulf Hansson <ulf.hansson@linaro.org>
4767 L:      linux-pm@vger.kernel.org
4768 S:      Supported
4769 F:      drivers/base/power/domain*.c
4770 F:      include/linux/pm_domain.h
4771
4772 GENERIC UIO DRIVER FOR PCI DEVICES
4773 M:      "Michael S. Tsirkin" <mst@redhat.com>
4774 L:      kvm@vger.kernel.org
4775 S:      Supported
4776 F:      drivers/uio/uio_pci_generic.c
4777
4778 GET_MAINTAINER SCRIPT
4779 M:      Joe Perches <joe@perches.com>
4780 S:      Maintained
4781 F:      scripts/get_maintainer.pl
4782
4783 GFS2 FILE SYSTEM
4784 M:      Steven Whitehouse <swhiteho@redhat.com>
4785 M:      Bob Peterson <rpeterso@redhat.com>
4786 L:      cluster-devel@redhat.com
4787 W:      http://sources.redhat.com/cluster/
4788 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
4789 S:      Supported
4790 F:      Documentation/filesystems/gfs2*.txt
4791 F:      fs/gfs2/
4792 F:      include/uapi/linux/gfs2_ondisk.h
4793
4794 GIGASET ISDN DRIVERS
4795 M:      Paul Bolle <pebolle@tiscali.nl>
4796 L:      gigaset307x-common@lists.sourceforge.net
4797 W:      http://gigaset307x.sourceforge.net/
4798 S:      Odd Fixes
4799 F:      Documentation/isdn/README.gigaset
4800 F:      drivers/isdn/gigaset/
4801 F:      include/uapi/linux/gigaset_dev.h
4802
4803 GO7007 MPEG CODEC
4804 M:      Hans Verkuil <hans.verkuil@cisco.com>
4805 L:      linux-media@vger.kernel.org
4806 S:      Maintained
4807 F:      drivers/media/usb/go7007/
4808
4809 GOODIX TOUCHSCREEN
4810 M:      Bastien Nocera <hadess@hadess.net>
4811 L:      linux-input@vger.kernel.org
4812 S:      Maintained
4813 F:      drivers/input/touchscreen/goodix.c
4814
4815 GPIO SUBSYSTEM
4816 M:      Linus Walleij <linus.walleij@linaro.org>
4817 M:      Alexandre Courbot <gnurou@gmail.com>
4818 L:      linux-gpio@vger.kernel.org
4819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
4820 S:      Maintained
4821 F:      Documentation/gpio/
4822 F:      drivers/gpio/
4823 F:      include/linux/gpio/
4824 F:      include/linux/gpio.h
4825 F:      include/asm-generic/gpio.h
4826
4827 GRE DEMULTIPLEXER DRIVER
4828 M:      Dmitry Kozlov <xeb@mail.ru>
4829 L:      netdev@vger.kernel.org
4830 S:      Maintained
4831 F:      net/ipv4/gre_demux.c
4832 F:      net/ipv4/gre_offload.c
4833 F:      include/net/gre.h
4834
4835 GRETH 10/100/1G Ethernet MAC device driver
4836 M:      Kristoffer Glembo <kristoffer@gaisler.com>
4837 L:      netdev@vger.kernel.org
4838 S:      Maintained
4839 F:      drivers/net/ethernet/aeroflex/
4840
4841 GSPCA FINEPIX SUBDRIVER
4842 M:      Frank Zago <frank@zago.net>
4843 L:      linux-media@vger.kernel.org
4844 T:      git git://linuxtv.org/media_tree.git
4845 S:      Maintained
4846 F:      drivers/media/usb/gspca/finepix.c
4847
4848 GSPCA GL860 SUBDRIVER
4849 M:      Olivier Lorin <o.lorin@laposte.net>
4850 L:      linux-media@vger.kernel.org
4851 T:      git git://linuxtv.org/media_tree.git
4852 S:      Maintained
4853 F:      drivers/media/usb/gspca/gl860/
4854
4855 GSPCA M5602 SUBDRIVER
4856 M:      Erik Andren <erik.andren@gmail.com>
4857 L:      linux-media@vger.kernel.org
4858 T:      git git://linuxtv.org/media_tree.git
4859 S:      Maintained
4860 F:      drivers/media/usb/gspca/m5602/
4861
4862 GSPCA PAC207 SONIXB SUBDRIVER
4863 M:      Hans de Goede <hdegoede@redhat.com>
4864 L:      linux-media@vger.kernel.org
4865 T:      git git://linuxtv.org/media_tree.git
4866 S:      Maintained
4867 F:      drivers/media/usb/gspca/pac207.c
4868
4869 GSPCA SN9C20X SUBDRIVER
4870 M:      Brian Johnson <brijohn@gmail.com>
4871 L:      linux-media@vger.kernel.org
4872 T:      git git://linuxtv.org/media_tree.git
4873 S:      Maintained
4874 F:      drivers/media/usb/gspca/sn9c20x.c
4875
4876 GSPCA T613 SUBDRIVER
4877 M:      Leandro Costantino <lcostantino@gmail.com>
4878 L:      linux-media@vger.kernel.org
4879 T:      git git://linuxtv.org/media_tree.git
4880 S:      Maintained
4881 F:      drivers/media/usb/gspca/t613.c
4882
4883 GSPCA USB WEBCAM DRIVER
4884 M:      Hans de Goede <hdegoede@redhat.com>
4885 L:      linux-media@vger.kernel.org
4886 T:      git git://linuxtv.org/media_tree.git
4887 S:      Maintained
4888 F:      drivers/media/usb/gspca/
4889
4890 GUID PARTITION TABLE (GPT)
4891 M:      Davidlohr Bueso <dave@stgolabs.net>
4892 L:      linux-efi@vger.kernel.org
4893 S:      Maintained
4894 F:      block/partitions/efi.*
4895
4896 STK1160 USB VIDEO CAPTURE DRIVER
4897 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
4898 L:      linux-media@vger.kernel.org
4899 T:      git git://linuxtv.org/media_tree.git
4900 S:      Maintained
4901 F:      drivers/media/usb/stk1160/
4902
4903 H8/300 ARCHITECTURE
4904 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
4905 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
4906 W:      http://uclinux-h8.sourceforge.jp
4907 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
4908 S:      Maintained
4909 F:      arch/h8300/
4910 F:      drivers/clocksource/h8300_*.c
4911 F:      drivers/clk/h8300/
4912 F:      drivers/irqchip/irq-renesas-h8*.c
4913
4914 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
4915 M:      Frank Seidel <frank@f-seidel.de>
4916 L:      platform-driver-x86@vger.kernel.org
4917 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
4918 S:      Maintained
4919 F:      drivers/platform/x86/hdaps.c
4920
4921 HDPVR USB VIDEO ENCODER DRIVER
4922 M:      Hans Verkuil <hverkuil@xs4all.nl>
4923 L:      linux-media@vger.kernel.org
4924 T:      git git://linuxtv.org/media_tree.git
4925 W:      https://linuxtv.org
4926 S:      Odd Fixes
4927 F:      drivers/media/usb/hdpvr/
4928
4929 HWPOISON MEMORY FAILURE HANDLING
4930 M:      Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
4931 L:      linux-mm@kvack.org
4932 S:      Maintained
4933 F:      mm/memory-failure.c
4934 F:      mm/hwpoison-inject.c
4935
4936 HYPERVISOR VIRTUAL CONSOLE DRIVER
4937 L:      linuxppc-dev@lists.ozlabs.org
4938 S:      Odd Fixes
4939 F:      drivers/tty/hvc/
4940
4941 HACKRF MEDIA DRIVER
4942 M:      Antti Palosaari <crope@iki.fi>
4943 L:      linux-media@vger.kernel.org
4944 W:      https://linuxtv.org
4945 W:      http://palosaari.fi/linux/
4946 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4947 T:      git git://linuxtv.org/anttip/media_tree.git
4948 S:      Maintained
4949 F:      drivers/media/usb/hackrf/
4950
4951 HARDWARE MONITORING
4952 M:      Jean Delvare <jdelvare@suse.com>
4953 M:      Guenter Roeck <linux@roeck-us.net>
4954 L:      lm-sensors@lm-sensors.org
4955 W:      http://www.lm-sensors.org/
4956 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
4957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
4958 S:      Maintained
4959 F:      Documentation/hwmon/
4960 F:      drivers/hwmon/
4961 F:      include/linux/hwmon*.h
4962
4963 HARDWARE RANDOM NUMBER GENERATOR CORE
4964 M:      Matt Mackall <mpm@selenic.com>
4965 M:      Herbert Xu <herbert@gondor.apana.org.au>
4966 L:      linux-crypto@vger.kernel.org
4967 S:      Odd fixes
4968 F:      Documentation/hw_random.txt
4969 F:      drivers/char/hw_random/
4970 F:      include/linux/hw_random.h
4971
4972 HARDWARE SPINLOCK CORE
4973 M:      Ohad Ben-Cohen <ohad@wizery.com>
4974 S:      Maintained
4975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
4976 F:      Documentation/hwspinlock.txt
4977 F:      drivers/hwspinlock/hwspinlock_*
4978 F:      include/linux/hwspinlock.h
4979
4980 HARMONY SOUND DRIVER
4981 L:      linux-parisc@vger.kernel.org
4982 S:      Maintained
4983 F:      sound/parisc/harmony.*
4984
4985 HD29L2 MEDIA DRIVER
4986 M:      Antti Palosaari <crope@iki.fi>
4987 L:      linux-media@vger.kernel.org
4988 W:      https://linuxtv.org
4989 W:      http://palosaari.fi/linux/
4990 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4991 T:      git git://linuxtv.org/anttip/media_tree.git
4992 S:      Maintained
4993 F:      drivers/media/dvb-frontends/hd29l2*
4994
4995 HEWLETT-PACKARD SMART2 RAID DRIVER
4996 L:      iss_storagedev@hp.com
4997 S:      Orphan
4998 F:      Documentation/blockdev/cpqarray.txt
4999 F:      drivers/block/cpqarray.*
5000
5001 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5002 M:      Don Brace <don.brace@pmcs.com>
5003 L:      iss_storagedev@hp.com
5004 L:      storagedev@pmcs.com
5005 L:      linux-scsi@vger.kernel.org
5006 S:      Supported
5007 F:      Documentation/scsi/hpsa.txt
5008 F:      drivers/scsi/hpsa*.[ch]
5009 F:      include/linux/cciss*.h
5010 F:      include/uapi/linux/cciss*.h
5011
5012 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5013 M:      Don Brace <don.brace@pmcs.com>
5014 L:      iss_storagedev@hp.com
5015 L:      storagedev@pmcs.com
5016 L:      linux-scsi@vger.kernel.org
5017 S:      Supported
5018 F:      Documentation/blockdev/cciss.txt
5019 F:      drivers/block/cciss*
5020 F:      include/linux/cciss_ioctl.h
5021 F:      include/uapi/linux/cciss_ioctl.h
5022
5023 HFS FILESYSTEM
5024 L:      linux-fsdevel@vger.kernel.org
5025 S:      Orphan
5026 F:      Documentation/filesystems/hfs.txt
5027 F:      fs/hfs/
5028
5029 HFSPLUS FILESYSTEM
5030 L:      linux-fsdevel@vger.kernel.org
5031 S:      Orphan
5032 F:      Documentation/filesystems/hfsplus.txt
5033 F:      fs/hfsplus/
5034
5035 HGA FRAMEBUFFER DRIVER
5036 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
5037 L:      linux-nvidia@lists.surfsouth.com
5038 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5039 S:      Maintained
5040 F:      drivers/video/fbdev/hgafb.c
5041
5042 HIBERNATION (aka Software Suspend, aka swsusp)
5043 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
5044 M:      Pavel Machek <pavel@ucw.cz>
5045 L:      linux-pm@vger.kernel.org
5046 S:      Supported
5047 F:      arch/x86/power/
5048 F:      drivers/base/power/
5049 F:      kernel/power/
5050 F:      include/linux/suspend.h
5051 F:      include/linux/freezer.h
5052 F:      include/linux/pm.h
5053 F:      arch/*/include/asm/suspend*.h
5054
5055 HID CORE LAYER
5056 M:      Jiri Kosina <jikos@kernel.org>
5057 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
5058 L:      linux-input@vger.kernel.org
5059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5060 S:      Maintained
5061 F:      drivers/hid/
5062 F:      include/linux/hid*
5063 F:      include/uapi/linux/hid*
5064
5065 HID SENSOR HUB DRIVERS
5066 M:      Jiri Kosina <jikos@kernel.org>
5067 M:      Jonathan Cameron <jic23@kernel.org>
5068 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5069 L:      linux-input@vger.kernel.org
5070 L:      linux-iio@vger.kernel.org
5071 S:      Maintained
5072 F:      Documentation/hid/hid-sensor*
5073 F:      drivers/hid/hid-sensor-*
5074 F:      drivers/iio/*/hid-*
5075 F:      include/linux/hid-sensor-*
5076
5077 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
5078 M:      Thomas Gleixner <tglx@linutronix.de>
5079 L:      linux-kernel@vger.kernel.org
5080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5081 S:      Maintained
5082 F:      Documentation/timers/
5083 F:      kernel/time/hrtimer.c
5084 F:      kernel/time/clockevents.c
5085 F:      kernel/time/tick*.*
5086 F:      kernel/time/timer_*.c
5087 F:      include/linux/clockchips.h
5088 F:      include/linux/hrtimer.h
5089
5090 HIGH-SPEED SCC DRIVER FOR AX.25
5091 L:      linux-hams@vger.kernel.org
5092 S:      Orphan
5093 F:      drivers/net/hamradio/dmascc.c
5094 F:      drivers/net/hamradio/scc.c
5095
5096 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
5097 M:      HighPoint Linux Team <linux@highpoint-tech.com>
5098 W:      http://www.highpoint-tech.com
5099 S:      Supported
5100 F:      Documentation/scsi/hptiop.txt
5101 F:      drivers/scsi/hptiop.c
5102
5103 HIPPI
5104 M:      Jes Sorensen <jes@trained-monkey.org>
5105 L:      linux-hippi@sunsite.dk
5106 S:      Maintained
5107 F:      include/linux/hippidevice.h
5108 F:      include/uapi/linux/if_hippi.h
5109 F:      net/802/hippi.c
5110 F:      drivers/net/hippi/
5111
5112 HISILICON SAS Controller
5113 M:      John Garry <john.garry@huawei.com>
5114 W:      http://www.hisilicon.com
5115 S:      Supported
5116 F:      drivers/scsi/hisi_sas/
5117 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
5118
5119 HOST AP DRIVER
5120 M:      Jouni Malinen <j@w1.fi>
5121 L:      hostap@shmoo.com (subscribers-only)
5122 L:      linux-wireless@vger.kernel.org
5123 W:      http://hostap.epitest.fi/
5124 S:      Maintained
5125 F:      drivers/net/wireless/intersil/hostap/
5126
5127 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
5128 L:      platform-driver-x86@vger.kernel.org
5129 S:      Orphan
5130 F:      drivers/platform/x86/tc1100-wmi.c
5131
5132 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
5133 M:      Jaroslav Kysela <perex@perex.cz>
5134 S:      Maintained
5135 F:      drivers/net/ethernet/hp/hp100.*
5136
5137 HPET:   High Precision Event Timers driver
5138 M:      Clemens Ladisch <clemens@ladisch.de>
5139 S:      Maintained
5140 F:      Documentation/timers/hpet.txt
5141 F:      drivers/char/hpet.c
5142 F:      include/linux/hpet.h
5143 F:      include/uapi/linux/hpet.h
5144
5145 HPET:   x86
5146 S:      Orphan
5147 F:      arch/x86/kernel/hpet.c
5148 F:      arch/x86/include/asm/hpet.h
5149
5150 HPFS FILESYSTEM
5151 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
5152 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
5153 S:      Maintained
5154 F:      fs/hpfs/
5155
5156 HSI SUBSYSTEM
5157 M:      Sebastian Reichel <sre@kernel.org>
5158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
5159 S:      Maintained
5160 F:      Documentation/ABI/testing/sysfs-bus-hsi
5161 F:      Documentation/hsi.txt
5162 F:      drivers/hsi/
5163 F:      include/linux/hsi/
5164 F:      include/uapi/linux/hsi/
5165
5166 HSO 3G MODEM DRIVER
5167 M:      Jan Dumon <j.dumon@option.com>
5168 W:      http://www.pharscape.org
5169 S:      Maintained
5170 F:      drivers/net/usb/hso.c
5171
5172 HSR NETWORK PROTOCOL
5173 M:      Arvid Brodin <arvid.brodin@alten.se>
5174 L:      netdev@vger.kernel.org
5175 S:      Maintained
5176 F:      net/hsr/
5177
5178 HTCPEN TOUCHSCREEN DRIVER
5179 M:      Pau Oliva Fora <pof@eslack.org>
5180 L:      linux-input@vger.kernel.org
5181 S:      Maintained
5182 F:      drivers/input/touchscreen/htcpen.c
5183
5184 HUGETLB FILESYSTEM
5185 M:      Nadia Yvette Chambers <nyc@holomorphy.com>
5186 S:      Maintained
5187 F:      fs/hugetlbfs/
5188
5189 Hyper-V CORE AND DRIVERS
5190 M:      "K. Y. Srinivasan" <kys@microsoft.com>
5191 M:      Haiyang Zhang <haiyangz@microsoft.com>
5192 L:      devel@linuxdriverproject.org
5193 S:      Maintained
5194 F:      arch/x86/include/asm/mshyperv.h
5195 F:      arch/x86/include/uapi/asm/hyperv.h
5196 F:      arch/x86/kernel/cpu/mshyperv.c
5197 F:      drivers/hid/hid-hyperv.c
5198 F:      drivers/hv/
5199 F:      drivers/input/serio/hyperv-keyboard.c
5200 F:      drivers/net/hyperv/
5201 F:      drivers/scsi/storvsc_drv.c
5202 F:      drivers/video/fbdev/hyperv_fb.c
5203 F:      include/linux/hyperv.h
5204 F:      tools/hv/
5205 F:      Documentation/ABI/stable/sysfs-bus-vmbus
5206
5207 I2C OVER PARALLEL PORT
5208 M:      Jean Delvare <jdelvare@suse.com>
5209 L:      linux-i2c@vger.kernel.org
5210 S:      Maintained
5211 F:      Documentation/i2c/busses/i2c-parport
5212 F:      Documentation/i2c/busses/i2c-parport-light
5213 F:      drivers/i2c/busses/i2c-parport.c
5214 F:      drivers/i2c/busses/i2c-parport-light.c
5215
5216 I2C/SMBUS CONTROLLER DRIVERS FOR PC
5217 M:      Jean Delvare <jdelvare@suse.com>
5218 L:      linux-i2c@vger.kernel.org
5219 S:      Maintained
5220 F:      Documentation/i2c/busses/i2c-ali1535
5221 F:      Documentation/i2c/busses/i2c-ali1563
5222 F:      Documentation/i2c/busses/i2c-ali15x3
5223 F:      Documentation/i2c/busses/i2c-amd756
5224 F:      Documentation/i2c/busses/i2c-amd8111
5225 F:      Documentation/i2c/busses/i2c-i801
5226 F:      Documentation/i2c/busses/i2c-nforce2
5227 F:      Documentation/i2c/busses/i2c-piix4
5228 F:      Documentation/i2c/busses/i2c-sis5595
5229 F:      Documentation/i2c/busses/i2c-sis630
5230 F:      Documentation/i2c/busses/i2c-sis96x
5231 F:      Documentation/i2c/busses/i2c-via
5232 F:      Documentation/i2c/busses/i2c-viapro
5233 F:      drivers/i2c/busses/i2c-ali1535.c
5234 F:      drivers/i2c/busses/i2c-ali1563.c
5235 F:      drivers/i2c/busses/i2c-ali15x3.c
5236 F:      drivers/i2c/busses/i2c-amd756.c
5237 F:      drivers/i2c/busses/i2c-amd756-s4882.c
5238 F:      drivers/i2c/busses/i2c-amd8111.c
5239 F:      drivers/i2c/busses/i2c-i801.c
5240 F:      drivers/i2c/busses/i2c-isch.c
5241 F:      drivers/i2c/busses/i2c-nforce2.c
5242 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
5243 F:      drivers/i2c/busses/i2c-piix4.c
5244 F:      drivers/i2c/busses/i2c-sis5595.c
5245 F:      drivers/i2c/busses/i2c-sis630.c
5246 F:      drivers/i2c/busses/i2c-sis96x.c
5247 F:      drivers/i2c/busses/i2c-via.c
5248 F:      drivers/i2c/busses/i2c-viapro.c
5249
5250 I2C/SMBUS ISMT DRIVER
5251 M:      Seth Heasley <seth.heasley@intel.com>
5252 M:      Neil Horman <nhorman@tuxdriver.com>
5253 L:      linux-i2c@vger.kernel.org
5254 F:      drivers/i2c/busses/i2c-ismt.c
5255 F:      Documentation/i2c/busses/i2c-ismt
5256
5257 I2C/SMBUS STUB DRIVER
5258 M:      Jean Delvare <jdelvare@suse.com>
5259 L:      linux-i2c@vger.kernel.org
5260 S:      Maintained
5261 F:      drivers/i2c/i2c-stub.c
5262
5263 I2C SUBSYSTEM
5264 M:      Wolfram Sang <wsa@the-dreams.de>
5265 L:      linux-i2c@vger.kernel.org
5266 W:      https://i2c.wiki.kernel.org/
5267 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
5268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
5269 S:      Maintained
5270 F:      Documentation/devicetree/bindings/i2c/
5271 F:      Documentation/i2c/
5272 F:      drivers/i2c/
5273 F:      drivers/i2c/*/
5274 F:      include/linux/i2c.h
5275 F:      include/linux/i2c-*.h
5276 F:      include/uapi/linux/i2c.h
5277 F:      include/uapi/linux/i2c-*.h
5278
5279 I2C ACPI SUPPORT
5280 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
5281 L:      linux-i2c@vger.kernel.org
5282 L:      linux-acpi@vger.kernel.org
5283 S:      Maintained
5284
5285 I2C-TAOS-EVM DRIVER
5286 M:      Jean Delvare <jdelvare@suse.com>
5287 L:      linux-i2c@vger.kernel.org
5288 S:      Maintained
5289 F:      Documentation/i2c/busses/i2c-taos-evm
5290 F:      drivers/i2c/busses/i2c-taos-evm.c
5291
5292 I2C-TINY-USB DRIVER
5293 M:      Till Harbaum <till@harbaum.org>
5294 L:      linux-i2c@vger.kernel.org
5295 W:      http://www.harbaum.org/till/i2c_tiny_usb
5296 S:      Maintained
5297 F:      drivers/i2c/busses/i2c-tiny-usb.c
5298
5299 i386 BOOT CODE
5300 M:      "H. Peter Anvin" <hpa@zytor.com>
5301 S:      Maintained
5302 F:      arch/x86/boot/
5303
5304 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
5305 M:      "H. Peter Anvin" <hpa@zytor.com>
5306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
5307 S:      Maintained
5308
5309 IA64 (Itanium) PLATFORM
5310 M:      Tony Luck <tony.luck@intel.com>
5311 M:      Fenghua Yu <fenghua.yu@intel.com>
5312 L:      linux-ia64@vger.kernel.org
5313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
5314 S:      Maintained
5315 F:      arch/ia64/
5316
5317 IBM Power VMX Cryptographic instructions
5318 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5319 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5320 L:      linux-crypto@vger.kernel.org
5321 S:      Supported
5322 F:      drivers/crypto/vmx/Makefile
5323 F:      drivers/crypto/vmx/Kconfig
5324 F:      drivers/crypto/vmx/vmx.c
5325 F:      drivers/crypto/vmx/aes*
5326 F:      drivers/crypto/vmx/ghash*
5327 F:      drivers/crypto/vmx/ppc-xlate.pl
5328
5329 IBM Power in-Nest Crypto Acceleration
5330 M:      Leonidas S. Barbosa <leosilva@linux.vnet.ibm.com>
5331 M:      Paulo Flabiano Smorigo <pfsmorigo@linux.vnet.ibm.com>
5332 L:      linux-crypto@vger.kernel.org
5333 S:      Supported
5334 F:      drivers/crypto/nx/Makefile
5335 F:      drivers/crypto/nx/Kconfig
5336 F:      drivers/crypto/nx/nx-aes*
5337 F:      drivers/crypto/nx/nx-sha*
5338 F:      drivers/crypto/nx/nx.*
5339 F:      drivers/crypto/nx/nx_csbcpb.h
5340 F:      drivers/crypto/nx/nx_debugfs.h
5341
5342 IBM Power 842 compression accelerator
5343 M:      Dan Streetman <ddstreet@ieee.org>
5344 S:      Supported
5345 F:      drivers/crypto/nx/Makefile
5346 F:      drivers/crypto/nx/Kconfig
5347 F:      drivers/crypto/nx/nx-842*
5348 F:      include/linux/sw842.h
5349 F:      crypto/842.c
5350 F:      lib/842/
5351
5352 IBM Power Linux RAID adapter
5353 M:      Brian King <brking@us.ibm.com>
5354 S:      Supported
5355 F:      drivers/scsi/ipr.*
5356
5357 IBM Power Virtual Ethernet Device Driver
5358 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5359 L:      netdev@vger.kernel.org
5360 S:      Supported
5361 F:      drivers/net/ethernet/ibm/ibmveth.*
5362
5363 IBM Power SRIOV Virtual NIC Device Driver
5364 M:      Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
5365 M:      John Allen <jallen@linux.vnet.ibm.com>
5366 L:      netdev@vger.kernel.org
5367 S:      Supported
5368 F:      drivers/net/ethernet/ibm/ibmvnic.*
5369
5370 IBM Power Virtual SCSI Device Drivers
5371 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5372 L:      linux-scsi@vger.kernel.org
5373 S:      Supported
5374 F:      drivers/scsi/ibmvscsi/ibmvscsi*
5375 F:      drivers/scsi/ibmvscsi/viosrp.h
5376
5377 IBM Power Virtual FC Device Drivers
5378 M:      Tyrel Datwyler <tyreld@linux.vnet.ibm.com>
5379 L:      linux-scsi@vger.kernel.org
5380 S:      Supported
5381 F:      drivers/scsi/ibmvscsi/ibmvfc*
5382
5383 IBM ServeRAID RAID DRIVER
5384 S:      Orphan
5385 F:      drivers/scsi/ips.*
5386
5387 ICH LPC AND GPIO DRIVER
5388 M:      Peter Tyser <ptyser@xes-inc.com>
5389 S:      Maintained
5390 F:      drivers/mfd/lpc_ich.c
5391 F:      drivers/gpio/gpio-ich.c
5392
5393 IDE SUBSYSTEM
5394 M:      "David S. Miller" <davem@davemloft.net>
5395 L:      linux-ide@vger.kernel.org
5396 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
5397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
5398 S:      Maintained
5399 F:      Documentation/ide/
5400 F:      drivers/ide/
5401 F:      include/linux/ide.h
5402
5403 IDEAPAD LAPTOP EXTRAS DRIVER
5404 M:      Ike Panhc <ike.pan@canonical.com>
5405 L:      platform-driver-x86@vger.kernel.org
5406 W:      http://launchpad.net/ideapad-laptop
5407 S:      Maintained
5408 F:      drivers/platform/x86/ideapad-laptop.c
5409
5410 IDEAPAD LAPTOP SLIDEBAR DRIVER
5411 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
5412 L:      linux-input@vger.kernel.org
5413 W:      https://github.com/o2genum/ideapad-slidebar
5414 S:      Maintained
5415 F:      drivers/input/misc/ideapad_slidebar.c
5416
5417 IDE/ATAPI DRIVERS
5418 M:      Borislav Petkov <bp@alien8.de>
5419 L:      linux-ide@vger.kernel.org
5420 S:      Maintained
5421 F:      Documentation/cdrom/ide-cd
5422 F:      drivers/ide/ide-cd*
5423
5424 IDLE-I7300
5425 M:      Andy Henroid <andrew.d.henroid@intel.com>
5426 L:      linux-pm@vger.kernel.org
5427 S:      Supported
5428 F:      drivers/idle/i7300_idle.c
5429
5430 IEEE 802.15.4 SUBSYSTEM
5431 M:      Alexander Aring <alex.aring@gmail.com>
5432 L:      linux-wpan@vger.kernel.org
5433 W:      https://github.com/linux-wpan
5434 T:      git git://github.com/linux-wpan/linux-wpan-next.git
5435 S:      Maintained
5436 F:      net/ieee802154/
5437 F:      net/mac802154/
5438 F:      drivers/net/ieee802154/
5439 F:      include/linux/nl802154.h
5440 F:      include/linux/ieee802154.h
5441 F:      include/net/nl802154.h
5442 F:      include/net/mac802154.h
5443 F:      include/net/af_ieee802154.h
5444 F:      include/net/cfg802154.h
5445 F:      include/net/ieee802154_netdev.h
5446 F:      Documentation/networking/ieee802154.txt
5447
5448 IGORPLUG-USB IR RECEIVER
5449 M:      Sean Young <sean@mess.org>
5450 L:      linux-media@vger.kernel.org
5451 S:      Maintained
5452 F:      drivers/media/rc/igorplugusb.c
5453
5454 IGUANAWORKS USB IR TRANSCEIVER
5455 M:      Sean Young <sean@mess.org>
5456 L:      linux-media@vger.kernel.org
5457 S:      Maintained
5458 F:      drivers/media/rc/iguanair.c
5459
5460 IIO SUBSYSTEM AND DRIVERS
5461 M:      Jonathan Cameron <jic23@kernel.org>
5462 R:      Hartmut Knaack <knaack.h@gmx.de>
5463 R:      Lars-Peter Clausen <lars@metafoo.de>
5464 R:      Peter Meerwald <pmeerw@pmeerw.net>
5465 L:      linux-iio@vger.kernel.org
5466 S:      Maintained
5467 F:      drivers/iio/
5468 F:      drivers/staging/iio/
5469 F:      include/linux/iio/
5470 F:      tools/iio/
5471
5472 IKANOS/ADI EAGLE ADSL USB DRIVER
5473 M:      Matthieu Castet <castet.matthieu@free.fr>
5474 M:      Stanislaw Gruszka <stf_xl@wp.pl>
5475 S:      Maintained
5476 F:      drivers/usb/atm/ueagle-atm.c
5477
5478 INA209 HARDWARE MONITOR DRIVER
5479 M:      Guenter Roeck <linux@roeck-us.net>
5480 L:      lm-sensors@lm-sensors.org
5481 S:      Maintained
5482 F:      Documentation/hwmon/ina209
5483 F:      Documentation/devicetree/bindings/i2c/ina209.txt
5484 F:      drivers/hwmon/ina209.c
5485
5486 INA2XX HARDWARE MONITOR DRIVER
5487 M:      Guenter Roeck <linux@roeck-us.net>
5488 L:      lm-sensors@lm-sensors.org
5489 S:      Maintained
5490 F:      Documentation/hwmon/ina2xx
5491 F:      drivers/hwmon/ina2xx.c
5492 F:      include/linux/platform_data/ina2xx.h
5493
5494 INDUSTRY PACK SUBSYSTEM (IPACK)
5495 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
5496 M:      Jens Taprogge <jens.taprogge@taprogge.org>
5497 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5498 L:      industrypack-devel@lists.sourceforge.net
5499 W:      http://industrypack.sourceforge.net
5500 S:      Maintained
5501 F:      drivers/ipack/
5502
5503 INGENIC JZ4780 DMA Driver
5504 M:      Zubair Lutfullah Kakakhel <Zubair.Kakakhel@imgtec.com>
5505 S:      Maintained
5506 F:      drivers/dma/dma-jz4780.c
5507
5508 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
5509 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
5510 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
5511 L:      linux-ima-devel@lists.sourceforge.net
5512 L:      linux-ima-user@lists.sourceforge.net
5513 L:      linux-security-module@vger.kernel.org
5514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
5515 S:      Supported
5516 F:      security/integrity/ima/
5517
5518 IMGTEC IR DECODER DRIVER
5519 M:      James Hogan <james.hogan@imgtec.com>
5520 S:      Maintained
5521 F:      drivers/media/rc/img-ir/
5522
5523 IMS TWINTURBO FRAMEBUFFER DRIVER
5524 L:      linux-fbdev@vger.kernel.org
5525 S:      Orphan
5526 F:      drivers/video/fbdev/imsttfb.c
5527
5528 INFINIBAND SUBSYSTEM
5529 M:      Doug Ledford <dledford@redhat.com>
5530 M:      Sean Hefty <sean.hefty@intel.com>
5531 M:      Hal Rosenstock <hal.rosenstock@gmail.com>
5532 L:      linux-rdma@vger.kernel.org
5533 W:      http://www.openfabrics.org/
5534 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
5536 S:      Supported
5537 F:      Documentation/infiniband/
5538 F:      drivers/infiniband/
5539 F:      drivers/staging/rdma/
5540 F:      include/uapi/linux/if_infiniband.h
5541 F:      include/uapi/rdma/
5542 F:      include/rdma/
5543
5544 INOTIFY
5545 M:      John McCutchan <john@johnmccutchan.com>
5546 M:      Robert Love <rlove@rlove.org>
5547 M:      Eric Paris <eparis@parisplace.org>
5548 S:      Maintained
5549 F:      Documentation/filesystems/inotify.txt
5550 F:      fs/notify/inotify/
5551 F:      include/linux/inotify.h
5552 F:      include/uapi/linux/inotify.h
5553
5554 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
5555 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
5556 L:      linux-input@vger.kernel.org
5557 Q:      http://patchwork.kernel.org/project/linux-input/list/
5558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
5559 S:      Maintained
5560 F:      drivers/input/
5561 F:      include/linux/input.h
5562 F:      include/uapi/linux/input.h
5563 F:      include/linux/input/
5564
5565 INPUT MULTITOUCH (MT) PROTOCOL
5566 M:      Henrik Rydberg <rydberg@bitmath.org>
5567 L:      linux-input@vger.kernel.org
5568 S:      Odd fixes
5569 F:      Documentation/input/multi-touch-protocol.txt
5570 F:      drivers/input/input-mt.c
5571 K:      \b(ABS|SYN)_MT_
5572
5573 INTEL ASoC BDW/HSW DRIVERS
5574 M:      Jie Yang <yang.jie@linux.intel.com>
5575 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5576 S:      Supported
5577 F:      sound/soc/intel/common/sst-dsp*
5578 F:      sound/soc/intel/common/sst-firmware.c
5579 F:      sound/soc/intel/boards/broadwell.c
5580 F:      sound/soc/intel/haswell/
5581
5582 INTEL C600 SERIES SAS CONTROLLER DRIVER
5583 M:      Intel SCU Linux support <intel-linux-scu@intel.com>
5584 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
5585 L:      linux-scsi@vger.kernel.org
5586 T:      git git://git.code.sf.net/p/intel-sas/isci
5587 S:      Supported
5588 F:      drivers/scsi/isci/
5589
5590 INTEL HID EVENT DRIVER
5591 M:      Alex Hung <alex.hung@canonical.com>
5592 L:      platform-driver-x86@vger.kernel.org
5593 S:      Maintained
5594 F:      drivers/platform/x86/intel-hid.c
5595
5596 INTEL IDLE DRIVER
5597 M:      Len Brown <lenb@kernel.org>
5598 L:      linux-pm@vger.kernel.org
5599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
5600 S:      Supported
5601 F:      drivers/idle/intel_idle.c
5602
5603 INTEL PSTATE DRIVER
5604 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
5605 M:      Len Brown <lenb@kernel.org>
5606 L:      linux-pm@vger.kernel.org
5607 S:      Supported
5608 F:      drivers/cpufreq/intel_pstate.c
5609
5610 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
5611 M:      Maik Broemme <mbroemme@plusserver.de>
5612 L:      linux-fbdev@vger.kernel.org
5613 S:      Maintained
5614 F:      Documentation/fb/intelfb.txt
5615 F:      drivers/video/fbdev/intelfb/
5616
5617 INTEL 810/815 FRAMEBUFFER DRIVER
5618 M:      Antonino Daplas <adaplas@gmail.com>
5619 L:      linux-fbdev@vger.kernel.org
5620 S:      Maintained
5621 F:      drivers/video/fbdev/i810/
5622
5623 INTEL MENLOW THERMAL DRIVER
5624 M:      Sujith Thomas <sujith.thomas@intel.com>
5625 L:      platform-driver-x86@vger.kernel.org
5626 W:      https://01.org/linux-acpi
5627 S:      Supported
5628 F:      drivers/platform/x86/intel_menlow.c
5629
5630 INTEL I/OAT DMA DRIVER
5631 M:      Dave Jiang <dave.jiang@intel.com>
5632 R:      Dan Williams <dan.j.williams@intel.com>
5633 L:      dmaengine@vger.kernel.org
5634 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5635 S:      Supported
5636 F:      drivers/dma/ioat*
5637
5638 INTEL IOMMU (VT-d)
5639 M:      David Woodhouse <dwmw2@infradead.org>
5640 L:      iommu@lists.linux-foundation.org
5641 T:      git git://git.infradead.org/iommu-2.6.git
5642 S:      Supported
5643 F:      drivers/iommu/intel-iommu.c
5644 F:      include/linux/intel-iommu.h
5645
5646 INTEL IOP-ADMA DMA DRIVER
5647 R:      Dan Williams <dan.j.williams@intel.com>
5648 S:      Odd fixes
5649 F:      drivers/dma/iop-adma.c
5650
5651 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
5652 M:      Krzysztof Halasa <khalasa@piap.pl>
5653 S:      Maintained
5654 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
5655 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
5656 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
5657 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
5658 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
5659 F:      drivers/net/wan/ixp4xx_hss.c
5660
5661 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
5662 M:      Deepak Saxena <dsaxena@plexity.net>
5663 S:      Maintained
5664 F:      drivers/char/hw_random/ixp4xx-rng.c
5665
5666 INTEL ETHERNET DRIVERS
5667 M:      Jeff Kirsher <jeffrey.t.kirsher@intel.com>
5668 R:      Jesse Brandeburg <jesse.brandeburg@intel.com>
5669 R:      Shannon Nelson <shannon.nelson@intel.com>
5670 R:      Carolyn Wyborny <carolyn.wyborny@intel.com>
5671 R:      Don Skidmore <donald.c.skidmore@intel.com>
5672 R:      Bruce Allan <bruce.w.allan@intel.com>
5673 R:      John Ronciak <john.ronciak@intel.com>
5674 R:      Mitch Williams <mitch.a.williams@intel.com>
5675 L:      intel-wired-lan@lists.osuosl.org
5676 W:      http://www.intel.com/support/feedback.htm
5677 W:      http://e1000.sourceforge.net/
5678 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
5679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
5680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
5681 S:      Supported
5682 F:      Documentation/networking/e100.txt
5683 F:      Documentation/networking/e1000.txt
5684 F:      Documentation/networking/e1000e.txt
5685 F:      Documentation/networking/igb.txt
5686 F:      Documentation/networking/igbvf.txt
5687 F:      Documentation/networking/ixgb.txt
5688 F:      Documentation/networking/ixgbe.txt
5689 F:      Documentation/networking/ixgbevf.txt
5690 F:      Documentation/networking/i40e.txt
5691 F:      Documentation/networking/i40evf.txt
5692 F:      drivers/net/ethernet/intel/
5693 F:      drivers/net/ethernet/intel/*/
5694
5695 INTEL-MID GPIO DRIVER
5696 M:      David Cohen <david.a.cohen@linux.intel.com>
5697 L:      linux-gpio@vger.kernel.org
5698 S:      Maintained
5699 F:      drivers/gpio/gpio-intel-mid.c
5700
5701 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
5702 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
5703 L:      linux-wireless@vger.kernel.org
5704 S:      Maintained
5705 F:      Documentation/networking/README.ipw2100
5706 F:      Documentation/networking/README.ipw2200
5707 F:      drivers/net/wireless/intel/ipw2x00/
5708
5709 INTEL(R) TRACE HUB
5710 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
5711 S:      Supported
5712 F:      Documentation/trace/intel_th.txt
5713 F:      drivers/hwtracing/intel_th/
5714
5715 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
5716 M:      Ning Sun <ning.sun@intel.com>
5717 L:      tboot-devel@lists.sourceforge.net
5718 W:      http://tboot.sourceforge.net
5719 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
5720 S:      Supported
5721 F:      Documentation/intel_txt.txt
5722 F:      include/linux/tboot.h
5723 F:      arch/x86/kernel/tboot.c
5724
5725 INTEL WIRELESS WIMAX CONNECTION 2400
5726 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
5727 M:      linux-wimax@intel.com
5728 L:      wimax@linuxwimax.org (subscribers-only)
5729 S:      Supported
5730 W:      http://linuxwimax.org
5731 F:      Documentation/wimax/README.i2400m
5732 F:      drivers/net/wimax/i2400m/
5733 F:      include/uapi/linux/wimax/i2400m.h
5734
5735 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
5736 M:      Stanislaw Gruszka <sgruszka@redhat.com>
5737 L:      linux-wireless@vger.kernel.org
5738 S:      Supported
5739 F:      drivers/net/wireless/intel/iwlegacy/
5740
5741 INTEL WIRELESS WIFI LINK (iwlwifi)
5742 M:      Johannes Berg <johannes.berg@intel.com>
5743 M:      Emmanuel Grumbach <emmanuel.grumbach@intel.com>
5744 M:      Intel Linux Wireless <linuxwifi@intel.com>
5745 L:      linux-wireless@vger.kernel.org
5746 W:      http://intellinuxwireless.org
5747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
5748 S:      Supported
5749 F:      drivers/net/wireless/intel/iwlwifi/
5750
5751 INTEL MANAGEMENT ENGINE (mei)
5752 M:      Tomas Winkler <tomas.winkler@intel.com>
5753 L:      linux-kernel@vger.kernel.org
5754 S:      Supported
5755 F:      include/uapi/linux/mei.h
5756 F:      include/linux/mei_cl_bus.h
5757 F:      drivers/misc/mei/*
5758 F:      Documentation/misc-devices/mei/*
5759
5760 INTEL MIC DRIVERS (mic)
5761 M:      Sudeep Dutt <sudeep.dutt@intel.com>
5762 M:      Ashutosh Dixit <ashutosh.dixit@intel.com>
5763 S:      Supported
5764 W:      https://github.com/sudeepdutt/mic
5765 W:      http://software.intel.com/en-us/mic-developer
5766 F:      include/linux/mic_bus.h
5767 F:      include/linux/scif.h
5768 F:      include/uapi/linux/mic_common.h
5769 F:      include/uapi/linux/mic_ioctl.h
5770 F:      include/uapi/linux/scif_ioctl.h
5771 F:      drivers/misc/mic/
5772 F:      drivers/dma/mic_x100_dma.c
5773 F:      drivers/dma/mic_x100_dma.h
5774 F:      Documentation/mic/
5775
5776 INTEL PMC/P-Unit IPC DRIVER
5777 M:      Zha Qipeng<qipeng.zha@intel.com>
5778 L:      platform-driver-x86@vger.kernel.org
5779 S:      Maintained
5780 F:      drivers/platform/x86/intel_pmc_ipc.c
5781 F:      drivers/platform/x86/intel_punit_ipc.c
5782 F:      arch/x86/include/asm/intel_pmc_ipc.h
5783 F:      arch/x86/include/asm/intel_punit_ipc.h
5784
5785 INTEL TELEMETRY DRIVER
5786 M:      Souvik Kumar Chakravarty <souvik.k.chakravarty@intel.com>
5787 L:      platform-driver-x86@vger.kernel.org
5788 S:      Maintained
5789 F:      arch/x86/include/asm/intel_telemetry.h
5790 F:      drivers/platform/x86/intel_telemetry*
5791
5792 IOC3 ETHERNET DRIVER
5793 M:      Ralf Baechle <ralf@linux-mips.org>
5794 L:      linux-mips@linux-mips.org
5795 S:      Maintained
5796 F:      drivers/net/ethernet/sgi/ioc3-eth.c
5797
5798 IOC3 SERIAL DRIVER
5799 M:      Pat Gefre <pfg@sgi.com>
5800 L:      linux-serial@vger.kernel.org
5801 S:      Maintained
5802 F:      drivers/tty/serial/ioc3_serial.c
5803
5804 IOMMU DRIVERS
5805 M:      Joerg Roedel <joro@8bytes.org>
5806 L:      iommu@lists.linux-foundation.org
5807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
5808 S:      Maintained
5809 F:      drivers/iommu/
5810
5811 IP MASQUERADING
5812 M:      Juanjo Ciarlante <jjciarla@raiz.uncu.edu.ar>
5813 S:      Maintained
5814 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
5815
5816 IPMI SUBSYSTEM
5817 M:      Corey Minyard <minyard@acm.org>
5818 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
5819 W:      http://openipmi.sourceforge.net/
5820 S:      Supported
5821 F:      Documentation/IPMI.txt
5822 F:      drivers/char/ipmi/
5823 F:      include/linux/ipmi*
5824 F:      include/uapi/linux/ipmi*
5825
5826 QCOM AUDIO (ASoC) DRIVERS
5827 M:      Patrick Lai <plai@codeaurora.org>
5828 M:      Banajit Goswami <bgoswami@codeaurora.org>
5829 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
5830 S:      Supported
5831 F:      sound/soc/qcom/
5832
5833 IPS SCSI RAID DRIVER
5834 M:      Adaptec OEM Raid Solutions <aacraid@adaptec.com>
5835 L:      linux-scsi@vger.kernel.org
5836 W:      http://www.adaptec.com/
5837 S:      Maintained
5838 F:      drivers/scsi/ips*
5839
5840 IPVS
5841 M:      Wensong Zhang <wensong@linux-vs.org>
5842 M:      Simon Horman <horms@verge.net.au>
5843 M:      Julian Anastasov <ja@ssi.bg>
5844 L:      netdev@vger.kernel.org
5845 L:      lvs-devel@vger.kernel.org
5846 S:      Maintained
5847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
5848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
5849 F:      Documentation/networking/ipvs-sysctl.txt
5850 F:      include/net/ip_vs.h
5851 F:      include/uapi/linux/ip_vs.h
5852 F:      net/netfilter/ipvs/
5853
5854 IPWIRELESS DRIVER
5855 M:      Jiri Kosina <jikos@kernel.org>
5856 M:      David Sterba <dsterba@suse.com>
5857 S:      Odd Fixes
5858 F:      drivers/tty/ipwireless/
5859
5860 IPX NETWORK LAYER
5861 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
5862 L:      netdev@vger.kernel.org
5863 S:      Maintained
5864 F:      include/net/ipx.h
5865 F:      include/uapi/linux/ipx.h
5866 F:      net/ipx/
5867
5868 IRDA SUBSYSTEM
5869 M:      Samuel Ortiz <samuel@sortiz.org>
5870 L:      irda-users@lists.sourceforge.net (subscribers-only)
5871 L:      netdev@vger.kernel.org
5872 W:      http://irda.sourceforge.net/
5873 S:      Maintained
5874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
5875 F:      Documentation/networking/irda.txt
5876 F:      drivers/net/irda/
5877 F:      include/net/irda/
5878 F:      net/irda/
5879
5880 IRQ SUBSYSTEM
5881 M:      Thomas Gleixner <tglx@linutronix.de>
5882 L:      linux-kernel@vger.kernel.org
5883 S:      Maintained
5884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5885 F:      kernel/irq/
5886
5887 IRQCHIP DRIVERS
5888 M:      Thomas Gleixner <tglx@linutronix.de>
5889 M:      Jason Cooper <jason@lakedaemon.net>
5890 M:      Marc Zyngier <marc.zyngier@arm.com>
5891 L:      linux-kernel@vger.kernel.org
5892 S:      Maintained
5893 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5894 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
5895 F:      Documentation/devicetree/bindings/interrupt-controller/
5896 F:      drivers/irqchip/
5897
5898 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
5899 M:      Jiang Liu <jiang.liu@linux.intel.com>
5900 M:      Marc Zyngier <marc.zyngier@arm.com>
5901 S:      Maintained
5902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
5903 F:      Documentation/IRQ-domain.txt
5904 F:      include/linux/irqdomain.h
5905 F:      kernel/irq/irqdomain.c
5906 F:      kernel/irq/msi.c
5907
5908 ISAPNP
5909 M:      Jaroslav Kysela <perex@perex.cz>
5910 S:      Maintained
5911 F:      Documentation/isapnp.txt
5912 F:      drivers/pnp/isapnp/
5913 F:      include/linux/isapnp.h
5914
5915 ISA RADIO MODULE
5916 M:      Hans Verkuil <hverkuil@xs4all.nl>
5917 L:      linux-media@vger.kernel.org
5918 T:      git git://linuxtv.org/media_tree.git
5919 W:      https://linuxtv.org
5920 S:      Maintained
5921 F:      drivers/media/radio/radio-isa*
5922
5923 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
5924 M:      Peter Jones <pjones@redhat.com>
5925 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
5926 S:      Maintained
5927 F:      drivers/firmware/iscsi_ibft*
5928
5929 ISCSI
5930 M:      Mike Christie <michaelc@cs.wisc.edu>
5931 L:      open-iscsi@googlegroups.com
5932 W:      www.open-iscsi.org
5933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mnc/linux-2.6-iscsi.git
5934 S:      Maintained
5935 F:      drivers/scsi/*iscsi*
5936 F:      include/scsi/*iscsi*
5937
5938 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
5939 M:      Or Gerlitz <ogerlitz@mellanox.com>
5940 M:      Sagi Grimberg <sagig@mellanox.com>
5941 M:      Roi Dayan <roid@mellanox.com>
5942 L:      linux-rdma@vger.kernel.org
5943 S:      Supported
5944 W:      http://www.openfabrics.org
5945 W:      www.open-iscsi.org
5946 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
5947 F:      drivers/infiniband/ulp/iser/
5948
5949 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
5950 M:      Sagi Grimberg <sagig@mellanox.com>
5951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
5952 L:      linux-rdma@vger.kernel.org
5953 L:      target-devel@vger.kernel.org
5954 S:      Supported
5955 W:      http://www.linux-iscsi.org
5956 F:      drivers/infiniband/ulp/isert
5957
5958 ISDN SUBSYSTEM
5959 M:      Karsten Keil <isdn@linux-pingi.de>
5960 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5961 L:      netdev@vger.kernel.org
5962 W:      http://www.isdn4linux.de
5963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
5964 S:      Maintained
5965 F:      Documentation/isdn/
5966 F:      drivers/isdn/
5967 F:      include/linux/isdn.h
5968 F:      include/linux/isdn/
5969 F:      include/uapi/linux/isdn.h
5970 F:      include/uapi/linux/isdn/
5971
5972 ISDN SUBSYSTEM (Eicon active card driver)
5973 M:      Armin Schindler <mac@melware.de>
5974 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
5975 W:      http://www.melware.de
5976 S:      Maintained
5977 F:      drivers/isdn/hardware/eicon/
5978
5979 IT87 HARDWARE MONITORING DRIVER
5980 M:      Jean Delvare <jdelvare@suse.com>
5981 L:      lm-sensors@lm-sensors.org
5982 S:      Maintained
5983 F:      Documentation/hwmon/it87
5984 F:      drivers/hwmon/it87.c
5985
5986 IT913X MEDIA DRIVER
5987 M:      Antti Palosaari <crope@iki.fi>
5988 L:      linux-media@vger.kernel.org
5989 W:      https://linuxtv.org
5990 W:      http://palosaari.fi/linux/
5991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5992 T:      git git://linuxtv.org/anttip/media_tree.git
5993 S:      Maintained
5994 F:      drivers/media/tuners/it913x*
5995
5996 IVTV VIDEO4LINUX DRIVER
5997 M:      Andy Walls <awalls@md.metrocast.net>
5998 L:      ivtv-devel@ivtvdriver.org (subscribers-only)
5999 L:      linux-media@vger.kernel.org
6000 T:      git git://linuxtv.org/media_tree.git
6001 W:      http://www.ivtvdriver.org
6002 S:      Maintained
6003 F:      Documentation/video4linux/*.ivtv
6004 F:      drivers/media/pci/ivtv/
6005 F:      include/uapi/linux/ivtv*
6006
6007 IX2505V MEDIA DRIVER
6008 M:      Malcolm Priestley <tvboxspy@gmail.com>
6009 L:      linux-media@vger.kernel.org
6010 W:      https://linuxtv.org
6011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6012 S:      Maintained
6013 F:      drivers/media/dvb-frontends/ix2505v*
6014
6015 JC42.4 TEMPERATURE SENSOR DRIVER
6016 M:      Guenter Roeck <linux@roeck-us.net>
6017 L:      lm-sensors@lm-sensors.org
6018 S:      Maintained
6019 F:      drivers/hwmon/jc42.c
6020 F:      Documentation/hwmon/jc42
6021
6022 JFS FILESYSTEM
6023 M:      Dave Kleikamp <shaggy@kernel.org>
6024 L:      jfs-discussion@lists.sourceforge.net
6025 W:      http://jfs.sourceforge.net/
6026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
6027 S:      Maintained
6028 F:      Documentation/filesystems/jfs.txt
6029 F:      fs/jfs/
6030
6031 JME NETWORK DRIVER
6032 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
6033 L:      netdev@vger.kernel.org
6034 S:      Maintained
6035 F:      drivers/net/ethernet/jme.*
6036
6037 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
6038 M:      David Woodhouse <dwmw2@infradead.org>
6039 L:      linux-mtd@lists.infradead.org
6040 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
6041 S:      Maintained
6042 F:      fs/jffs2/
6043 F:      include/uapi/linux/jffs2.h
6044
6045 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
6046 M:      "Theodore Ts'o" <tytso@mit.edu>
6047 M:      Jan Kara <jack@suse.com>
6048 L:      linux-ext4@vger.kernel.org
6049 S:      Maintained
6050 F:      fs/jbd2/
6051 F:      include/linux/jbd2.h
6052
6053 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
6054 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
6055 L:      linux-media@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/media/platform/rcar_jpu.c
6058
6059 JSM Neo PCI based serial card
6060 M:      Thadeu Lima de Souza Cascardo <cascardo@linux.vnet.ibm.com>
6061 L:      linux-serial@vger.kernel.org
6062 S:      Maintained
6063 F:      drivers/tty/serial/jsm/
6064
6065 K10TEMP HARDWARE MONITORING DRIVER
6066 M:      Clemens Ladisch <clemens@ladisch.de>
6067 L:      lm-sensors@lm-sensors.org
6068 S:      Maintained
6069 F:      Documentation/hwmon/k10temp
6070 F:      drivers/hwmon/k10temp.c
6071
6072 K8TEMP HARDWARE MONITORING DRIVER
6073 M:      Rudolf Marek <r.marek@assembler.cz>
6074 L:      lm-sensors@lm-sensors.org
6075 S:      Maintained
6076 F:      Documentation/hwmon/k8temp
6077 F:      drivers/hwmon/k8temp.c
6078
6079 KCONFIG
6080 M:      "Yann E. MORIN" <yann.morin.1998@free.fr>
6081 L:      linux-kbuild@vger.kernel.org
6082 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
6083 S:      Maintained
6084 F:      Documentation/kbuild/kconfig-language.txt
6085 F:      scripts/kconfig/
6086
6087 KDUMP
6088 M:      Vivek Goyal <vgoyal@redhat.com>
6089 M:      Haren Myneni <hbabu@us.ibm.com>
6090 L:      kexec@lists.infradead.org
6091 W:      http://lse.sourceforge.net/kdump/
6092 S:      Maintained
6093 F:      Documentation/kdump/
6094
6095 KEENE FM RADIO TRANSMITTER DRIVER
6096 M:      Hans Verkuil <hverkuil@xs4all.nl>
6097 L:      linux-media@vger.kernel.org
6098 T:      git git://linuxtv.org/media_tree.git
6099 W:      https://linuxtv.org
6100 S:      Maintained
6101 F:      drivers/media/radio/radio-keene*
6102
6103 KERNEL AUTOMOUNTER v4 (AUTOFS4)
6104 M:      Ian Kent <raven@themaw.net>
6105 L:      autofs@vger.kernel.org
6106 S:      Maintained
6107 F:      fs/autofs4/
6108
6109 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
6110 M:      Michal Marek <mmarek@suse.com>
6111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git for-next
6112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git rc-fixes
6113 L:      linux-kbuild@vger.kernel.org
6114 S:      Maintained
6115 F:      Documentation/kbuild/
6116 F:      Makefile
6117 F:      scripts/Makefile.*
6118 F:      scripts/basic/
6119 F:      scripts/mk*
6120 F:      scripts/package/
6121
6122 KERNEL JANITORS
6123 L:      kernel-janitors@vger.kernel.org
6124 W:      http://kernelnewbies.org/KernelJanitors
6125 S:      Odd Fixes
6126
6127 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
6128 M:      "J. Bruce Fields" <bfields@fieldses.org>
6129 M:      Jeff Layton <jlayton@poochiereds.net>
6130 L:      linux-nfs@vger.kernel.org
6131 W:      http://nfs.sourceforge.net/
6132 T:      git git://linux-nfs.org/~bfields/linux.git
6133 S:      Supported
6134 F:      fs/nfsd/
6135 F:      include/uapi/linux/nfsd/
6136 F:      fs/lockd/
6137 F:      fs/nfs_common/
6138 F:      net/sunrpc/
6139 F:      include/linux/lockd/
6140 F:      include/linux/sunrpc/
6141 F:      include/uapi/linux/sunrpc/
6142
6143 KERNEL SELFTEST FRAMEWORK
6144 M:      Shuah Khan <shuahkh@osg.samsung.com>
6145 L:      linux-api@vger.kernel.org
6146 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
6147 S:      Maintained
6148 F:      tools/testing/selftests
6149
6150 KERNEL VIRTUAL MACHINE (KVM)
6151 M:      Gleb Natapov <gleb@kernel.org>
6152 M:      Paolo Bonzini <pbonzini@redhat.com>
6153 L:      kvm@vger.kernel.org
6154 W:      http://www.linux-kvm.org
6155 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
6156 S:      Supported
6157 F:      Documentation/*/kvm*.txt
6158 F:      Documentation/virtual/kvm/
6159 F:      arch/*/kvm/
6160 F:      arch/x86/kernel/kvm.c
6161 F:      arch/x86/kernel/kvmclock.c
6162 F:      arch/*/include/asm/kvm*
6163 F:      include/linux/kvm*
6164 F:      include/uapi/linux/kvm*
6165 F:      virt/kvm/
6166
6167 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
6168 M:      Joerg Roedel <joro@8bytes.org>
6169 L:      kvm@vger.kernel.org
6170 W:      http://www.linux-kvm.org/
6171 S:      Maintained
6172 F:      arch/x86/include/asm/svm.h
6173 F:      arch/x86/kvm/svm.c
6174
6175 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
6176 M:      Alexander Graf <agraf@suse.com>
6177 L:      kvm-ppc@vger.kernel.org
6178 W:      http://www.linux-kvm.org/
6179 T:      git git://github.com/agraf/linux-2.6.git
6180 S:      Supported
6181 F:      arch/powerpc/include/asm/kvm*
6182 F:      arch/powerpc/kvm/
6183
6184 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
6185 M:      Christian Borntraeger <borntraeger@de.ibm.com>
6186 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
6187 L:      linux-s390@vger.kernel.org
6188 W:      http://www.ibm.com/developerworks/linux/linux390/
6189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
6190 S:      Supported
6191 F:      Documentation/s390/kvm.txt
6192 F:      arch/s390/include/asm/kvm*
6193 F:      arch/s390/kvm/
6194
6195 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
6196 M:      Christoffer Dall <christoffer.dall@linaro.org>
6197 M:      Marc Zyngier <marc.zyngier@arm.com>
6198 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6199 L:      kvmarm@lists.cs.columbia.edu
6200 W:      http://systems.cs.columbia.edu/projects/kvm-arm
6201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
6202 S:      Supported
6203 F:      arch/arm/include/uapi/asm/kvm*
6204 F:      arch/arm/include/asm/kvm*
6205 F:      arch/arm/kvm/
6206 F:      virt/kvm/arm/
6207 F:      include/kvm/arm_*
6208
6209 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
6210 M:      Christoffer Dall <christoffer.dall@linaro.org>
6211 M:      Marc Zyngier <marc.zyngier@arm.com>
6212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6213 L:      kvmarm@lists.cs.columbia.edu
6214 S:      Maintained
6215 F:      arch/arm64/include/uapi/asm/kvm*
6216 F:      arch/arm64/include/asm/kvm*
6217 F:      arch/arm64/kvm/
6218
6219 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
6220 M:      James Hogan <james.hogan@imgtec.com>
6221 L:      linux-mips@linux-mips.org
6222 S:      Supported
6223 F:      arch/mips/include/uapi/asm/kvm*
6224 F:      arch/mips/include/asm/kvm*
6225 F:      arch/mips/kvm/
6226
6227 KEXEC
6228 M:      Eric Biederman <ebiederm@xmission.com>
6229 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
6230 L:      kexec@lists.infradead.org
6231 S:      Maintained
6232 F:      include/linux/kexec.h
6233 F:      include/uapi/linux/kexec.h
6234 F:      kernel/kexec.c
6235
6236 KEYS/KEYRINGS:
6237 M:      David Howells <dhowells@redhat.com>
6238 L:      keyrings@vger.kernel.org
6239 S:      Maintained
6240 F:      Documentation/security/keys.txt
6241 F:      include/linux/key.h
6242 F:      include/linux/key-type.h
6243 F:      include/keys/
6244 F:      security/keys/
6245
6246 KEYS-TRUSTED
6247 M:      David Safford <safford@us.ibm.com>
6248 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6249 L:      linux-security-module@vger.kernel.org
6250 L:      keyrings@vger.kernel.org
6251 S:      Supported
6252 F:      Documentation/security/keys-trusted-encrypted.txt
6253 F:      include/keys/trusted-type.h
6254 F:      security/keys/trusted.c
6255 F:      security/keys/trusted.h
6256
6257 KEYS-ENCRYPTED
6258 M:      Mimi Zohar <zohar@linux.vnet.ibm.com>
6259 M:      David Safford <safford@us.ibm.com>
6260 L:      linux-security-module@vger.kernel.org
6261 L:      keyrings@vger.kernel.org
6262 S:      Supported
6263 F:      Documentation/security/keys-trusted-encrypted.txt
6264 F:      include/keys/encrypted-type.h
6265 F:      security/keys/encrypted-keys/
6266
6267 KGDB / KDB /debug_core
6268 M:      Jason Wessel <jason.wessel@windriver.com>
6269 W:      http://kgdb.wiki.kernel.org/
6270 L:      kgdb-bugreport@lists.sourceforge.net
6271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
6272 S:      Maintained
6273 F:      Documentation/DocBook/kgdb.tmpl
6274 F:      drivers/misc/kgdbts.c
6275 F:      drivers/tty/serial/kgdboc.c
6276 F:      include/linux/kdb.h
6277 F:      include/linux/kgdb.h
6278 F:      kernel/debug/
6279
6280 KMEMCHECK
6281 M:      Vegard Nossum <vegardno@ifi.uio.no>
6282 M:      Pekka Enberg <penberg@kernel.org>
6283 S:      Maintained
6284 F:      Documentation/kmemcheck.txt
6285 F:      arch/x86/include/asm/kmemcheck.h
6286 F:      arch/x86/mm/kmemcheck/
6287 F:      include/linux/kmemcheck.h
6288 F:      mm/kmemcheck.c
6289
6290 KMEMLEAK
6291 M:      Catalin Marinas <catalin.marinas@arm.com>
6292 S:      Maintained
6293 F:      Documentation/kmemleak.txt
6294 F:      include/linux/kmemleak.h
6295 F:      mm/kmemleak.c
6296 F:      mm/kmemleak-test.c
6297
6298 KPROBES
6299 M:      Ananth N Mavinakayanahalli <ananth@in.ibm.com>
6300 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
6301 M:      "David S. Miller" <davem@davemloft.net>
6302 M:      Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
6303 S:      Maintained
6304 F:      Documentation/kprobes.txt
6305 F:      include/linux/kprobes.h
6306 F:      kernel/kprobes.c
6307
6308 KS0108 LCD CONTROLLER DRIVER
6309 M:      Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
6310 W:      http://miguelojeda.es/auxdisplay.htm
6311 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
6312 S:      Maintained
6313 F:      Documentation/auxdisplay/ks0108
6314 F:      drivers/auxdisplay/ks0108.c
6315 F:      include/linux/ks0108.h
6316
6317 L3MDEV
6318 M:      David Ahern <dsa@cumulusnetworks.com>
6319 L:      netdev@vger.kernel.org
6320 S:      Maintained
6321 F:      net/l3mdev
6322 F:      include/net/l3mdev.h
6323
6324 LANTIQ MIPS ARCHITECTURE
6325 M:      John Crispin <blogic@openwrt.org>
6326 L:      linux-mips@linux-mips.org
6327 S:      Maintained
6328 F:      arch/mips/lantiq
6329
6330 LAPB module
6331 L:      linux-x25@vger.kernel.org
6332 S:      Orphan
6333 F:      Documentation/networking/lapb-module.txt
6334 F:      include/*/lapb.h
6335 F:      net/lapb/
6336
6337 LASI 53c700 driver for PARISC
6338 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
6339 L:      linux-scsi@vger.kernel.org
6340 S:      Maintained
6341 F:      Documentation/scsi/53c700.txt
6342 F:      drivers/scsi/53c700*
6343
6344 LED SUBSYSTEM
6345 M:      Richard Purdie <rpurdie@rpsys.net>
6346 M:      Jacek Anaszewski <j.anaszewski@samsung.com>
6347 L:      linux-leds@vger.kernel.org
6348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
6349 S:      Maintained
6350 F:      drivers/leds/
6351 F:      include/linux/leds.h
6352
6353 LEGACY EEPROM DRIVER
6354 M:      Jean Delvare <jdelvare@suse.com>
6355 S:      Maintained
6356 F:      Documentation/misc-devices/eeprom
6357 F:      drivers/misc/eeprom/eeprom.c
6358
6359 LEGO USB Tower driver
6360 M:      Juergen Stuber <starblue@users.sourceforge.net>
6361 L:      legousb-devel@lists.sourceforge.net
6362 W:      http://legousb.sourceforge.net/
6363 S:      Maintained
6364 F:      drivers/usb/misc/legousbtower.c
6365
6366 LG2160 MEDIA DRIVER
6367 M:      Michael Krufky <mkrufky@linuxtv.org>
6368 L:      linux-media@vger.kernel.org
6369 W:      https://linuxtv.org
6370 W:      http://github.com/mkrufky
6371 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6372 T:      git git://linuxtv.org/mkrufky/tuners.git
6373 S:      Maintained
6374 F:      drivers/media/dvb-frontends/lg2160.*
6375
6376 LGDT3305 MEDIA DRIVER
6377 M:      Michael Krufky <mkrufky@linuxtv.org>
6378 L:      linux-media@vger.kernel.org
6379 W:      https://linuxtv.org
6380 W:      http://github.com/mkrufky
6381 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6382 T:      git git://linuxtv.org/mkrufky/tuners.git
6383 S:      Maintained
6384 F:      drivers/media/dvb-frontends/lgdt3305.*
6385
6386 LGUEST
6387 M:      Rusty Russell <rusty@rustcorp.com.au>
6388 L:      lguest@lists.ozlabs.org
6389 W:      http://lguest.ozlabs.org/
6390 S:      Odd Fixes
6391 F:      arch/x86/include/asm/lguest*.h
6392 F:      arch/x86/lguest/
6393 F:      drivers/lguest/
6394 F:      include/linux/lguest*.h
6395 F:      tools/lguest/
6396
6397 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
6398 M:      Tejun Heo <tj@kernel.org>
6399 L:      linux-ide@vger.kernel.org
6400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6401 S:      Maintained
6402 F:      drivers/ata/
6403 F:      include/linux/ata.h
6404 F:      include/linux/libata.h
6405
6406 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
6407 M:      Viresh Kumar <vireshk@kernel.org>
6408 L:      linux-ide@vger.kernel.org
6409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6410 S:      Maintained
6411 F:      include/linux/pata_arasan_cf_data.h
6412 F:      drivers/ata/pata_arasan_cf.c
6413
6414 LIBATA PATA DRIVERS
6415 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
6416 M:      Tejun Heo <tj@kernel.org>
6417 L:      linux-ide@vger.kernel.org
6418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6419 S:      Maintained
6420 F:      drivers/ata/pata_*.c
6421 F:      drivers/ata/ata_generic.c
6422
6423 LIBATA SATA AHCI PLATFORM devices support
6424 M:      Hans de Goede <hdegoede@redhat.com>
6425 M:      Tejun Heo <tj@kernel.org>
6426 L:      linux-ide@vger.kernel.org
6427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6428 S:      Maintained
6429 F:      drivers/ata/ahci_platform.c
6430 F:      drivers/ata/libahci_platform.c
6431 F:      include/linux/ahci_platform.h
6432
6433 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
6434 M:      Mikael Pettersson <mikpelinux@gmail.com>
6435 L:      linux-ide@vger.kernel.org
6436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
6437 S:      Maintained
6438 F:      drivers/ata/sata_promise.*
6439
6440 LIBLOCKDEP
6441 M:      Sasha Levin <sasha.levin@oracle.com>
6442 S:      Maintained
6443 F:      tools/lib/lockdep/
6444
6445 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
6446 M:      Dan Williams <dan.j.williams@intel.com>
6447 L:      linux-nvdimm@lists.01.org
6448 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
6450 S:      Supported
6451 F:      drivers/nvdimm/*
6452 F:      include/linux/nd.h
6453 F:      include/linux/libnvdimm.h
6454 F:      include/uapi/linux/ndctl.h
6455
6456 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
6457 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6458 L:      linux-nvdimm@lists.01.org
6459 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6460 S:      Supported
6461 F:      drivers/nvdimm/blk.c
6462 F:      drivers/nvdimm/region_devs.c
6463 F:      drivers/acpi/nfit*
6464
6465 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
6466 M:      Vishal Verma <vishal.l.verma@intel.com>
6467 L:      linux-nvdimm@lists.01.org
6468 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6469 S:      Supported
6470 F:      drivers/nvdimm/btt*
6471
6472 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
6473 M:      Ross Zwisler <ross.zwisler@linux.intel.com>
6474 L:      linux-nvdimm@lists.01.org
6475 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
6476 S:      Supported
6477 F:      drivers/nvdimm/pmem.c
6478 F:      include/linux/pmem.h
6479 F:      arch/*/include/asm/pmem.h
6480
6481 LIGHTNVM PLATFORM SUPPORT
6482 M:      Matias Bjorling <mb@lightnvm.io>
6483 W:      http://github/OpenChannelSSD
6484 L:      linux-block@vger.kernel.org
6485 S:      Maintained
6486 F:      drivers/lightnvm/
6487 F:      include/linux/lightnvm.h
6488 F:      include/uapi/linux/lightnvm.h
6489
6490 LINUX FOR IBM pSERIES (RS/6000)
6491 M:      Paul Mackerras <paulus@au.ibm.com>
6492 W:      http://www.ibm.com/linux/ltc/projects/ppc
6493 S:      Supported
6494 F:      arch/powerpc/boot/rs6000.h
6495
6496 LINUX FOR POWERPC (32-BIT AND 64-BIT)
6497 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6498 M:      Paul Mackerras <paulus@samba.org>
6499 M:      Michael Ellerman <mpe@ellerman.id.au>
6500 W:      http://www.penguinppc.org/
6501 L:      linuxppc-dev@lists.ozlabs.org
6502 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
6503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
6504 S:      Supported
6505 F:      Documentation/powerpc/
6506 F:      arch/powerpc/
6507
6508 LINUX FOR POWER MACINTOSH
6509 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
6510 W:      http://www.penguinppc.org/
6511 L:      linuxppc-dev@lists.ozlabs.org
6512 S:      Maintained
6513 F:      arch/powerpc/platforms/powermac/
6514 F:      drivers/macintosh/
6515
6516 LINUX FOR POWERPC EMBEDDED MPC5XXX
6517 M:      Anatolij Gustschin <agust@denx.de>
6518 L:      linuxppc-dev@lists.ozlabs.org
6519 T:      git git://git.denx.de/linux-denx-agust.git
6520 S:      Maintained
6521 F:      arch/powerpc/platforms/512x/
6522 F:      arch/powerpc/platforms/52xx/
6523
6524 LINUX FOR POWERPC EMBEDDED PPC4XX
6525 M:      Alistair Popple <alistair@popple.id.au>
6526 M:      Matt Porter <mporter@kernel.crashing.org>
6527 W:      http://www.penguinppc.org/
6528 L:      linuxppc-dev@lists.ozlabs.org
6529 S:      Maintained
6530 F:      arch/powerpc/platforms/40x/
6531 F:      arch/powerpc/platforms/44x/
6532
6533 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
6534 L:      linuxppc-dev@lists.ozlabs.org
6535 S:      Orphan
6536 F:      arch/powerpc/*/*virtex*
6537 F:      arch/powerpc/*/*/*virtex*
6538
6539 LINUX FOR POWERPC EMBEDDED PPC8XX
6540 M:      Vitaly Bordug <vitb@kernel.crashing.org>
6541 W:      http://www.penguinppc.org/
6542 L:      linuxppc-dev@lists.ozlabs.org
6543 S:      Maintained
6544 F:      arch/powerpc/platforms/8xx/
6545
6546 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
6547 M:      Scott Wood <oss@buserror.net>
6548 M:      Kumar Gala <galak@kernel.crashing.org>
6549 W:      http://www.penguinppc.org/
6550 L:      linuxppc-dev@lists.ozlabs.org
6551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
6552 S:      Maintained
6553 F:      arch/powerpc/platforms/83xx/
6554 F:      arch/powerpc/platforms/85xx/
6555
6556 LINUX FOR POWERPC PA SEMI PWRFICIENT
6557 M:      Olof Johansson <olof@lixom.net>
6558 L:      linuxppc-dev@lists.ozlabs.org
6559 S:      Maintained
6560 F:      arch/powerpc/platforms/pasemi/
6561 F:      drivers/*/*pasemi*
6562 F:      drivers/*/*/*pasemi*
6563
6564 LINUX SECURITY MODULE (LSM) FRAMEWORK
6565 M:      Chris Wright <chrisw@sous-sol.org>
6566 L:      linux-security-module@vger.kernel.org
6567 S:      Supported
6568
6569 LIS3LV02D ACCELEROMETER DRIVER
6570 M:      Eric Piel <eric.piel@tremplin-utc.net>
6571 S:      Maintained
6572 F:      Documentation/misc-devices/lis3lv02d
6573 F:      drivers/misc/lis3lv02d/
6574 F:      drivers/platform/x86/hp_accel.c
6575
6576 LIVE PATCHING
6577 M:      Josh Poimboeuf <jpoimboe@redhat.com>
6578 M:      Seth Jennings <sjenning@redhat.com>
6579 M:      Jiri Kosina <jikos@kernel.org>
6580 M:      Vojtech Pavlik <vojtech@suse.com>
6581 S:      Maintained
6582 F:      kernel/livepatch/
6583 F:      include/linux/livepatch.h
6584 F:      arch/x86/include/asm/livepatch.h
6585 F:      arch/x86/kernel/livepatch.c
6586 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
6587 F:      samples/livepatch/
6588 L:      live-patching@vger.kernel.org
6589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
6590
6591 LLC (802.2)
6592 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
6593 S:      Maintained
6594 F:      include/linux/llc.h
6595 F:      include/uapi/linux/llc.h
6596 F:      include/net/llc*
6597 F:      net/llc/
6598
6599 LM73 HARDWARE MONITOR DRIVER
6600 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
6601 L:      lm-sensors@lm-sensors.org
6602 S:      Maintained
6603 F:      drivers/hwmon/lm73.c
6604
6605 LM78 HARDWARE MONITOR DRIVER
6606 M:      Jean Delvare <jdelvare@suse.com>
6607 L:      lm-sensors@lm-sensors.org
6608 S:      Maintained
6609 F:      Documentation/hwmon/lm78
6610 F:      drivers/hwmon/lm78.c
6611
6612 LM83 HARDWARE MONITOR DRIVER
6613 M:      Jean Delvare <jdelvare@suse.com>
6614 L:      lm-sensors@lm-sensors.org
6615 S:      Maintained
6616 F:      Documentation/hwmon/lm83
6617 F:      drivers/hwmon/lm83.c
6618
6619 LM90 HARDWARE MONITOR DRIVER
6620 M:      Jean Delvare <jdelvare@suse.com>
6621 L:      lm-sensors@lm-sensors.org
6622 S:      Maintained
6623 F:      Documentation/hwmon/lm90
6624 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
6625 F:      drivers/hwmon/lm90.c
6626
6627 LM95234 HARDWARE MONITOR DRIVER
6628 M:      Guenter Roeck <linux@roeck-us.net>
6629 L:      lm-sensors@lm-sensors.org
6630 S:      Maintained
6631 F:      Documentation/hwmon/lm95234
6632 F:      drivers/hwmon/lm95234.c
6633
6634 LME2510 MEDIA DRIVER
6635 M:      Malcolm Priestley <tvboxspy@gmail.com>
6636 L:      linux-media@vger.kernel.org
6637 W:      https://linuxtv.org
6638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6639 S:      Maintained
6640 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
6641
6642 LOCKDEP AND LOCKSTAT
6643 M:      Peter Zijlstra <peterz@infradead.org>
6644 M:      Ingo Molnar <mingo@redhat.com>
6645 L:      linux-kernel@vger.kernel.org
6646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/locking
6647 S:      Maintained
6648 F:      Documentation/locking/lockdep*.txt
6649 F:      Documentation/locking/lockstat.txt
6650 F:      include/linux/lockdep.h
6651 F:      kernel/locking/
6652
6653 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
6654 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
6655 L:      linux-ntfs-dev@lists.sourceforge.net
6656 W:      http://www.linux-ntfs.org/content/view/19/37/
6657 S:      Maintained
6658 F:      Documentation/ldm.txt
6659 F:      block/partitions/ldm.*
6660
6661 LogFS
6662 M:      Joern Engel <joern@logfs.org>
6663 M:      Prasad Joshi <prasadjoshi.linux@gmail.com>
6664 L:      logfs@logfs.org
6665 W:      logfs.org
6666 S:      Maintained
6667 F:      fs/logfs/
6668
6669 LPC32XX MACHINE SUPPORT
6670 M:      Roland Stigge <stigge@antcom.de>
6671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
6672 S:      Maintained
6673 F:      arch/arm/mach-lpc32xx/
6674
6675 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
6676 M:      Nagalakshmi Nandigama <nagalakshmi.nandigama@avagotech.com>
6677 M:      Praveen Krishnamoorthy <praveen.krishnamoorthy@avagotech.com>
6678 M:      Sreekanth Reddy <sreekanth.reddy@avagotech.com>
6679 M:      Abhijit Mahajan <abhijit.mahajan@avagotech.com>
6680 L:      MPT-FusionLinux.pdl@avagotech.com
6681 L:      linux-scsi@vger.kernel.org
6682 W:      http://www.lsilogic.com/support
6683 S:      Supported
6684 F:      drivers/message/fusion/
6685 F:      drivers/scsi/mpt2sas/
6686 F:      drivers/scsi/mpt3sas/
6687
6688 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
6689 M:      Matthew Wilcox <matthew@wil.cx>
6690 L:      linux-scsi@vger.kernel.org
6691 S:      Maintained
6692 F:      drivers/scsi/sym53c8xx_2/
6693
6694 LTC4261 HARDWARE MONITOR DRIVER
6695 M:      Guenter Roeck <linux@roeck-us.net>
6696 L:      lm-sensors@lm-sensors.org
6697 S:      Maintained
6698 F:      Documentation/hwmon/ltc4261
6699 F:      drivers/hwmon/ltc4261.c
6700
6701 LTP (Linux Test Project)
6702 M:      Mike Frysinger <vapier@gentoo.org>
6703 M:      Cyril Hrubis <chrubis@suse.cz>
6704 M:      Wanlong Gao <wanlong.gao@gmail.com>
6705 M:      Jan Stancek <jstancek@redhat.com>
6706 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
6707 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
6708 L:      ltp@lists.linux.it (subscribers-only)
6709 W:      http://linux-test-project.github.io/
6710 T:      git git://github.com/linux-test-project/ltp.git
6711 S:      Maintained
6712
6713 M32R ARCHITECTURE
6714 W:      http://www.linux-m32r.org/
6715 S:      Orphan
6716 F:      arch/m32r/
6717
6718 M68K ARCHITECTURE
6719 M:      Geert Uytterhoeven <geert@linux-m68k.org>
6720 L:      linux-m68k@lists.linux-m68k.org
6721 W:      http://www.linux-m68k.org/
6722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
6723 S:      Maintained
6724 F:      arch/m68k/
6725 F:      drivers/zorro/
6726
6727 M68K ON APPLE MACINTOSH
6728 M:      Joshua Thompson <funaho@jurai.org>
6729 W:      http://www.mac.linux-m68k.org/
6730 L:      linux-m68k@lists.linux-m68k.org
6731 S:      Maintained
6732 F:      arch/m68k/mac/
6733
6734 M68K ON HP9000/300
6735 M:      Philip Blundell <philb@gnu.org>
6736 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
6737 S:      Maintained
6738 F:      arch/m68k/hp300/
6739
6740 M88DS3103 MEDIA DRIVER
6741 M:      Antti Palosaari <crope@iki.fi>
6742 L:      linux-media@vger.kernel.org
6743 W:      https://linuxtv.org
6744 W:      http://palosaari.fi/linux/
6745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6746 T:      git git://linuxtv.org/anttip/media_tree.git
6747 S:      Maintained
6748 F:      drivers/media/dvb-frontends/m88ds3103*
6749
6750 M88RS2000 MEDIA DRIVER
6751 M:      Malcolm Priestley <tvboxspy@gmail.com>
6752 L:      linux-media@vger.kernel.org
6753 W:      https://linuxtv.org
6754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6755 S:      Maintained
6756 F:      drivers/media/dvb-frontends/m88rs2000*
6757
6758 MA901 MASTERKIT USB FM RADIO DRIVER
6759 M:      Alexey Klimov <klimov.linux@gmail.com>
6760 L:      linux-media@vger.kernel.org
6761 T:      git git://linuxtv.org/media_tree.git
6762 S:      Maintained
6763 F:      drivers/media/radio/radio-ma901.c
6764
6765 MAC80211
6766 M:      Johannes Berg <johannes@sipsolutions.net>
6767 L:      linux-wireless@vger.kernel.org
6768 W:      http://wireless.kernel.org/
6769 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
6770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
6771 S:      Maintained
6772 F:      Documentation/networking/mac80211-injection.txt
6773 F:      include/net/mac80211.h
6774 F:      net/mac80211/
6775
6776 MACVLAN DRIVER
6777 M:      Patrick McHardy <kaber@trash.net>
6778 L:      netdev@vger.kernel.org
6779 S:      Maintained
6780 F:      drivers/net/macvlan.c
6781 F:      include/linux/if_macvlan.h
6782
6783 MAILBOX API
6784 M:      Jassi Brar <jassisinghbrar@gmail.com>
6785 L:      linux-kernel@vger.kernel.org
6786 S:      Maintained
6787 F:      drivers/mailbox/
6788 F:      include/linux/mailbox_client.h
6789 F:      include/linux/mailbox_controller.h
6790
6791 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
6792 M:      Michael Kerrisk <mtk.manpages@gmail.com>
6793 W:      http://www.kernel.org/doc/man-pages
6794 L:      linux-man@vger.kernel.org
6795 S:      Maintained
6796
6797 MARVELL ARMADA DRM SUPPORT
6798 M:      Russell King <rmk+kernel@arm.linux.org.uk>
6799 S:      Maintained
6800 F:      drivers/gpu/drm/armada/
6801
6802 MARVELL 88E6352 DSA support
6803 M:      Guenter Roeck <linux@roeck-us.net>
6804 S:      Maintained
6805 F:      drivers/net/dsa/mv88e6352.c
6806
6807 MARVELL CRYPTO DRIVER
6808 M:      Boris Brezillon <boris.brezillon@free-electrons.com>
6809 M:      Arnaud Ebalard <arno@natisbad.org>
6810 F:      drivers/crypto/marvell/
6811 S:      Maintained
6812 L:      linux-crypto@vger.kernel.org
6813
6814 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
6815 M:      Mirko Lindner <mlindner@marvell.com>
6816 M:      Stephen Hemminger <stephen@networkplumber.org>
6817 L:      netdev@vger.kernel.org
6818 S:      Maintained
6819 F:      drivers/net/ethernet/marvell/sk*
6820
6821 MARVELL LIBERTAS WIRELESS DRIVER
6822 L:      libertas-dev@lists.infradead.org
6823 S:      Orphan
6824 F:      drivers/net/wireless/marvell/libertas/
6825
6826 MARVELL MV643XX ETHERNET DRIVER
6827 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6828 L:      netdev@vger.kernel.org
6829 S:      Maintained
6830 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
6831 F:      include/linux/mv643xx.h
6832
6833 MARVELL MVNETA ETHERNET DRIVER
6834 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
6835 L:      netdev@vger.kernel.org
6836 S:      Maintained
6837 F:      drivers/net/ethernet/marvell/mvneta.*
6838
6839 MARVELL MWIFIEX WIRELESS DRIVER
6840 M:      Amitkumar Karwar <akarwar@marvell.com>
6841 M:      Nishant Sarmukadam <nishants@marvell.com>
6842 L:      linux-wireless@vger.kernel.org
6843 S:      Maintained
6844 F:      drivers/net/wireless/marvell/mwifiex/
6845
6846 MARVELL MWL8K WIRELESS DRIVER
6847 M:      Lennert Buytenhek <buytenh@wantstofly.org>
6848 L:      linux-wireless@vger.kernel.org
6849 S:      Odd Fixes
6850 F:      drivers/net/wireless/marvell/mwl8k.c
6851
6852 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
6853 M:      Nicolas Pitre <nico@fluxnic.net>
6854 S:      Odd Fixes
6855 F:      drivers/mmc/host/mvsdio.*
6856
6857 MATROX FRAMEBUFFER DRIVER
6858 L:      linux-fbdev@vger.kernel.org
6859 S:      Orphan
6860 F:      drivers/video/fbdev/matrox/matroxfb_*
6861 F:      include/uapi/linux/matroxfb.h
6862
6863 MAX16065 HARDWARE MONITOR DRIVER
6864 M:      Guenter Roeck <linux@roeck-us.net>
6865 L:      lm-sensors@lm-sensors.org
6866 S:      Maintained
6867 F:      Documentation/hwmon/max16065
6868 F:      drivers/hwmon/max16065.c
6869
6870 MAX20751 HARDWARE MONITOR DRIVER
6871 M:      Guenter Roeck <linux@roeck-us.net>
6872 L:      lm-sensors@lm-sensors.org
6873 S:      Maintained
6874 F:      Documentation/hwmon/max20751
6875 F:      drivers/hwmon/max20751.c
6876
6877 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
6878 M:      "Hans J. Koch" <hjk@hansjkoch.de>
6879 L:      lm-sensors@lm-sensors.org
6880 S:      Maintained
6881 F:      Documentation/hwmon/max6650
6882 F:      drivers/hwmon/max6650.c
6883
6884 MAX6697 HARDWARE MONITOR DRIVER
6885 M:      Guenter Roeck <linux@roeck-us.net>
6886 L:      lm-sensors@lm-sensors.org
6887 S:      Maintained
6888 F:      Documentation/hwmon/max6697
6889 F:      Documentation/devicetree/bindings/i2c/max6697.txt
6890 F:      drivers/hwmon/max6697.c
6891 F:      include/linux/platform_data/max6697.h
6892
6893 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
6894 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6895 L:      linux-pm@vger.kernel.org
6896 S:      Supported
6897 F:      drivers/power/max14577_charger.c
6898 F:      drivers/power/max77693_charger.c
6899
6900 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
6901 M:      Javier Martinez Canillas <javier@osg.samsung.com>
6902 L:      linux-kernel@vger.kernel.org
6903 S:      Supported
6904 F:      drivers/*/*max77802.c
6905 F:      Documentation/devicetree/bindings/*/*max77802.txt
6906 F:      include/dt-bindings/*/*max77802.h
6907
6908 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
6909 M:      Chanwoo Choi <cw00.choi@samsung.com>
6910 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
6911 L:      linux-kernel@vger.kernel.org
6912 S:      Supported
6913 F:      drivers/*/max14577.c
6914 F:      drivers/*/max77686.c
6915 F:      drivers/*/max77693.c
6916 F:      drivers/extcon/extcon-max14577.c
6917 F:      drivers/extcon/extcon-max77693.c
6918 F:      drivers/rtc/rtc-max77686.c
6919 F:      drivers/clk/clk-max77686.c
6920 F:      Documentation/devicetree/bindings/mfd/max14577.txt
6921 F:      Documentation/devicetree/bindings/*/max77686.txt
6922 F:      Documentation/devicetree/bindings/mfd/max77693.txt
6923 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
6924 F:      include/linux/mfd/max14577*.h
6925 F:      include/linux/mfd/max77686*.h
6926 F:      include/linux/mfd/max77693*.h
6927
6928 MAXIRADIO FM RADIO RECEIVER DRIVER
6929 M:      Hans Verkuil <hverkuil@xs4all.nl>
6930 L:      linux-media@vger.kernel.org
6931 T:      git git://linuxtv.org/media_tree.git
6932 W:      https://linuxtv.org
6933 S:      Maintained
6934 F:      drivers/media/radio/radio-maxiradio*
6935
6936 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
6937 M:      Peter Rosin <peda@axentia.se>
6938 L:      linux-iio@vger.kernel.org
6939 S:      Maintained
6940 F:      drivers/iio/potentiometer/mcp4531.c
6941
6942 MEDIA DRIVERS FOR RENESAS - VSP1
6943 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6944 L:      linux-media@vger.kernel.org
6945 L:      linux-renesas-soc@vger.kernel.org
6946 T:      git git://linuxtv.org/media_tree.git
6947 S:      Supported
6948 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
6949 F:      drivers/media/platform/vsp1/
6950
6951 MEDIA DRIVERS FOR ASCOT2E
6952 M:      Sergey Kozlov <serjk@netup.ru>
6953 L:      linux-media@vger.kernel.org
6954 W:      https://linuxtv.org
6955 W:      http://netup.tv/
6956 T:      git git://linuxtv.org/media_tree.git
6957 S:      Supported
6958 F:      drivers/media/dvb-frontends/ascot2e*
6959
6960 MEDIA DRIVERS FOR CXD2841ER
6961 M:      Sergey Kozlov <serjk@netup.ru>
6962 L:      linux-media@vger.kernel.org
6963 W:      https://linuxtv.org
6964 W:      http://netup.tv/
6965 T:      git git://linuxtv.org/media_tree.git
6966 S:      Supported
6967 F:      drivers/media/dvb-frontends/cxd2841er*
6968
6969 MEDIA DRIVERS FOR HORUS3A
6970 M:      Sergey Kozlov <serjk@netup.ru>
6971 L:      linux-media@vger.kernel.org
6972 W:      https://linuxtv.org
6973 W:      http://netup.tv/
6974 T:      git git://linuxtv.org/media_tree.git
6975 S:      Supported
6976 F:      drivers/media/dvb-frontends/horus3a*
6977
6978 MEDIA DRIVERS FOR LNBH25
6979 M:      Sergey Kozlov <serjk@netup.ru>
6980 L:      linux-media@vger.kernel.org
6981 W:      https://linuxtv.org
6982 W:      http://netup.tv/
6983 T:      git git://linuxtv.org/media_tree.git
6984 S:      Supported
6985 F:      drivers/media/dvb-frontends/lnbh25*
6986
6987 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
6988 M:      Sergey Kozlov <serjk@netup.ru>
6989 L:      linux-media@vger.kernel.org
6990 W:      https://linuxtv.org
6991 W:      http://netup.tv/
6992 T:      git git://linuxtv.org/media_tree.git
6993 S:      Supported
6994 F:      drivers/media/pci/netup_unidvb/*
6995
6996 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
6997 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
6998 P:      LinuxTV.org Project
6999 L:      linux-media@vger.kernel.org
7000 W:      https://linuxtv.org
7001 Q:      http://patchwork.kernel.org/project/linux-media/list/
7002 T:      git git://linuxtv.org/media_tree.git
7003 S:      Maintained
7004 F:      Documentation/dvb/
7005 F:      Documentation/video4linux/
7006 F:      Documentation/DocBook/media/
7007 F:      drivers/media/
7008 F:      drivers/staging/media/
7009 F:      include/linux/platform_data/media/
7010 F:      include/media/
7011 F:      include/uapi/linux/dvb/
7012 F:      include/uapi/linux/videodev2.h
7013 F:      include/uapi/linux/media.h
7014 F:      include/uapi/linux/v4l2-*
7015 F:      include/uapi/linux/meye.h
7016 F:      include/uapi/linux/ivtv*
7017 F:      include/uapi/linux/uvcvideo.h
7018
7019 MEDIATEK MT7601U WIRELESS LAN DRIVER
7020 M:      Jakub Kicinski <kubakici@wp.pl>
7021 L:      linux-wireless@vger.kernel.org
7022 S:      Maintained
7023 F:      drivers/net/wireless/mediatek/mt7601u/
7024
7025 MEGARAID SCSI/SAS DRIVERS
7026 M:      Kashyap Desai <kashyap.desai@avagotech.com>
7027 M:      Sumit Saxena <sumit.saxena@avagotech.com>
7028 M:      Uday Lingala <uday.lingala@avagotech.com>
7029 L:      megaraidlinux.pdl@avagotech.com
7030 L:      linux-scsi@vger.kernel.org
7031 W:      http://www.lsi.com
7032 S:      Maintained
7033 F:      Documentation/scsi/megaraid.txt
7034 F:      drivers/scsi/megaraid.*
7035 F:      drivers/scsi/megaraid/
7036
7037 MELLANOX ETHERNET DRIVER (mlx4_en)
7038 M:      Eugenia Emantayev <eugenia@mellanox.com>
7039 L:      netdev@vger.kernel.org
7040 S:      Supported
7041 W:      http://www.mellanox.com
7042 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7043 F:      drivers/net/ethernet/mellanox/mlx4/en_*
7044
7045 MELLANOX ETHERNET DRIVER (mlx5e)
7046 M:      Saeed Mahameed <saeedm@mellanox.com>
7047 L:      netdev@vger.kernel.org
7048 S:      Supported
7049 W:      http://www.mellanox.com
7050 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7051 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
7052
7053 MELLANOX ETHERNET SWITCH DRIVERS
7054 M:      Jiri Pirko <jiri@mellanox.com>
7055 M:      Ido Schimmel <idosch@mellanox.com>
7056 L:      netdev@vger.kernel.org
7057 S:      Supported
7058 W:      http://www.mellanox.com
7059 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7060 F:      drivers/net/ethernet/mellanox/mlxsw/
7061
7062 MEMBARRIER SUPPORT
7063 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
7064 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
7065 L:      linux-kernel@vger.kernel.org
7066 S:      Supported
7067 F:      kernel/membarrier.c
7068 F:      include/uapi/linux/membarrier.h
7069
7070 MEMORY MANAGEMENT
7071 L:      linux-mm@kvack.org
7072 W:      http://www.linux-mm.org
7073 S:      Maintained
7074 F:      include/linux/mm.h
7075 F:      include/linux/gfp.h
7076 F:      include/linux/mmzone.h
7077 F:      include/linux/memory_hotplug.h
7078 F:      include/linux/vmalloc.h
7079 F:      mm/
7080
7081 MEMORY TECHNOLOGY DEVICES (MTD)
7082 M:      David Woodhouse <dwmw2@infradead.org>
7083 M:      Brian Norris <computersforpeace@gmail.com>
7084 L:      linux-mtd@lists.infradead.org
7085 W:      http://www.linux-mtd.infradead.org/
7086 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
7087 T:      git git://git.infradead.org/linux-mtd.git
7088 T:      git git://git.infradead.org/l2-mtd.git
7089 S:      Maintained
7090 F:      drivers/mtd/
7091 F:      include/linux/mtd/
7092 F:      include/uapi/mtd/
7093
7094 MEN A21 WATCHDOG DRIVER
7095 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7096 L:      linux-watchdog@vger.kernel.org
7097 S:      Maintained
7098 F:      drivers/watchdog/mena21_wdt.c
7099
7100 MEN CHAMELEON BUS (mcb)
7101 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7102 S:      Maintained
7103 F:      drivers/mcb/
7104 F:      include/linux/mcb.h
7105 F:      Documentation/men-chameleon-bus.txt
7106
7107 MEN F21BMC (Board Management Controller)
7108 M:      Andreas Werner <andreas.werner@men.de>
7109 S:      Supported
7110 F:      drivers/mfd/menf21bmc.c
7111 F:      drivers/watchdog/menf21bmc_wdt.c
7112 F:      drivers/leds/leds-menf21bmc.c
7113 F:      drivers/hwmon/menf21bmc_hwmon.c
7114 F:      Documentation/hwmon/menf21bmc
7115
7116 METAG ARCHITECTURE
7117 M:      James Hogan <james.hogan@imgtec.com>
7118 L:      linux-metag@vger.kernel.org
7119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
7120 S:      Odd Fixes
7121 F:      arch/metag/
7122 F:      Documentation/metag/
7123 F:      Documentation/devicetree/bindings/metag/
7124 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
7125 F:      drivers/clocksource/metag_generic.c
7126 F:      drivers/irqchip/irq-metag.c
7127 F:      drivers/irqchip/irq-metag-ext.c
7128 F:      drivers/tty/metag_da.c
7129
7130 MICROBLAZE ARCHITECTURE
7131 M:      Michal Simek <monstr@monstr.eu>
7132 W:      http://www.monstr.eu/fdt/
7133 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
7134 S:      Supported
7135 F:      arch/microblaze/
7136
7137 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
7138 M:      Chen Yu <yu.c.chen@intel.com>
7139 L:      platform-driver-x86@vger.kernel.org
7140 S:      Supported
7141 F:      drivers/platform/x86/surfacepro3_button.c
7142
7143 MICROTEK X6 SCANNER
7144 M:      Oliver Neukum <oliver@neukum.org>
7145 S:      Maintained
7146 F:      drivers/usb/image/microtek.*
7147
7148 MIPS
7149 M:      Ralf Baechle <ralf@linux-mips.org>
7150 L:      linux-mips@linux-mips.org
7151 W:      http://www.linux-mips.org/
7152 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
7153 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
7154 S:      Supported
7155 F:      Documentation/mips/
7156 F:      arch/mips/
7157
7158 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
7159 M:      Hans Verkuil <hverkuil@xs4all.nl>
7160 L:      linux-media@vger.kernel.org
7161 T:      git git://linuxtv.org/media_tree.git
7162 W:      https://linuxtv.org
7163 S:      Odd Fixes
7164 F:      drivers/media/radio/radio-miropcm20*
7165
7166 MELLANOX MLX4 core VPI driver
7167 M:      Yishai Hadas <yishaih@mellanox.com>
7168 L:      netdev@vger.kernel.org
7169 L:      linux-rdma@vger.kernel.org
7170 W:      http://www.mellanox.com
7171 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7172 S:      Supported
7173 F:      drivers/net/ethernet/mellanox/mlx4/
7174 F:      include/linux/mlx4/
7175
7176 MELLANOX MLX4 IB driver
7177 M:      Yishai Hadas <yishaih@mellanox.com>
7178 L:      linux-rdma@vger.kernel.org
7179 W:      http://www.mellanox.com
7180 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7181 S:      Supported
7182 F:      drivers/infiniband/hw/mlx4/
7183 F:      include/linux/mlx4/
7184
7185 MELLANOX MLX5 core VPI driver
7186 M:      Matan Barak <matanb@mellanox.com>
7187 M:      Leon Romanovsky <leonro@mellanox.com>
7188 L:      netdev@vger.kernel.org
7189 L:      linux-rdma@vger.kernel.org
7190 W:      http://www.mellanox.com
7191 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7192 S:      Supported
7193 F:      drivers/net/ethernet/mellanox/mlx5/core/
7194 F:      include/linux/mlx5/
7195
7196 MELLANOX MLX5 IB driver
7197 M:      Matan Barak <matanb@mellanox.com>
7198 M:      Leon Romanovsky <leonro@mellanox.com>
7199 L:      linux-rdma@vger.kernel.org
7200 W:      http://www.mellanox.com
7201 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7202 S:      Supported
7203 F:      drivers/infiniband/hw/mlx5/
7204 F:      include/linux/mlx5/
7205
7206 MELEXIS MLX90614 DRIVER
7207 M:      Crt Mori <cmo@melexis.com>
7208 L:      linux-iio@vger.kernel.org
7209 W:      http://www.melexis.com
7210 S:      Supported
7211 F:      drivers/iio/temperature/mlx90614.c
7212
7213 MN88472 MEDIA DRIVER
7214 M:      Antti Palosaari <crope@iki.fi>
7215 L:      linux-media@vger.kernel.org
7216 W:      https://linuxtv.org
7217 W:      http://palosaari.fi/linux/
7218 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7219 T:      git git://linuxtv.org/anttip/media_tree.git
7220 S:      Maintained
7221 F:      drivers/staging/media/mn88472/
7222 F:      drivers/media/dvb-frontends/mn88472.h
7223
7224 MN88473 MEDIA DRIVER
7225 M:      Antti Palosaari <crope@iki.fi>
7226 L:      linux-media@vger.kernel.org
7227 W:      https://linuxtv.org
7228 W:      http://palosaari.fi/linux/
7229 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7230 T:      git git://linuxtv.org/anttip/media_tree.git
7231 S:      Maintained
7232 F:      drivers/staging/media/mn88473/
7233 F:      drivers/media/dvb-frontends/mn88473.h
7234
7235 MODULE SUPPORT
7236 M:      Rusty Russell <rusty@rustcorp.com.au>
7237 S:      Maintained
7238 F:      include/linux/module.h
7239 F:      kernel/module.c
7240
7241 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
7242 W:      http://popies.net/meye/
7243 S:      Orphan
7244 F:      Documentation/video4linux/meye.txt
7245 F:      drivers/media/pci/meye/
7246 F:      include/uapi/linux/meye.h
7247
7248 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
7249 M:      Jiri Slaby <jirislaby@gmail.com>
7250 S:      Maintained
7251 F:      Documentation/serial/moxa-smartio
7252 F:      drivers/tty/mxser.*
7253
7254 MR800 AVERMEDIA USB FM RADIO DRIVER
7255 M:      Alexey Klimov <klimov.linux@gmail.com>
7256 L:      linux-media@vger.kernel.org
7257 T:      git git://linuxtv.org/media_tree.git
7258 S:      Maintained
7259 F:      drivers/media/radio/radio-mr800.c
7260
7261 MRF24J40 IEEE 802.15.4 RADIO DRIVER
7262 M:      Alan Ott <alan@signal11.us>
7263 L:      linux-wpan@vger.kernel.org
7264 S:      Maintained
7265 F:      drivers/net/ieee802154/mrf24j40.c
7266 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
7267
7268 MSI LAPTOP SUPPORT
7269 M:      "Lee, Chun-Yi" <jlee@suse.com>
7270 L:      platform-driver-x86@vger.kernel.org
7271 S:      Maintained
7272 F:      drivers/platform/x86/msi-laptop.c
7273
7274 MSI WMI SUPPORT
7275 L:      platform-driver-x86@vger.kernel.org
7276 S:      Orphan
7277 F:      drivers/platform/x86/msi-wmi.c
7278
7279 MSI001 MEDIA DRIVER
7280 M:      Antti Palosaari <crope@iki.fi>
7281 L:      linux-media@vger.kernel.org
7282 W:      https://linuxtv.org
7283 W:      http://palosaari.fi/linux/
7284 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7285 T:      git git://linuxtv.org/anttip/media_tree.git
7286 S:      Maintained
7287 F:      drivers/media/tuners/msi001*
7288
7289 MSI2500 MEDIA DRIVER
7290 M:      Antti Palosaari <crope@iki.fi>
7291 L:      linux-media@vger.kernel.org
7292 W:      https://linuxtv.org
7293 W:      http://palosaari.fi/linux/
7294 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7295 T:      git git://linuxtv.org/anttip/media_tree.git
7296 S:      Maintained
7297 F:      drivers/media/usb/msi2500/
7298
7299 MSYSTEMS DISKONCHIP G3 MTD DRIVER
7300 M:      Robert Jarzmik <robert.jarzmik@free.fr>
7301 L:      linux-mtd@lists.infradead.org
7302 S:      Maintained
7303 F:      drivers/mtd/devices/docg3*
7304
7305 MT9M032 APTINA SENSOR DRIVER
7306 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7307 L:      linux-media@vger.kernel.org
7308 T:      git git://linuxtv.org/media_tree.git
7309 S:      Maintained
7310 F:      drivers/media/i2c/mt9m032.c
7311 F:      include/media/i2c/mt9m032.h
7312
7313 MT9P031 APTINA CAMERA SENSOR
7314 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7315 L:      linux-media@vger.kernel.org
7316 T:      git git://linuxtv.org/media_tree.git
7317 S:      Maintained
7318 F:      drivers/media/i2c/mt9p031.c
7319 F:      include/media/i2c/mt9p031.h
7320
7321 MT9T001 APTINA CAMERA SENSOR
7322 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7323 L:      linux-media@vger.kernel.org
7324 T:      git git://linuxtv.org/media_tree.git
7325 S:      Maintained
7326 F:      drivers/media/i2c/mt9t001.c
7327 F:      include/media/i2c/mt9t001.h
7328
7329 MT9V032 APTINA CAMERA SENSOR
7330 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7331 L:      linux-media@vger.kernel.org
7332 T:      git git://linuxtv.org/media_tree.git
7333 S:      Maintained
7334 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
7335 F:      drivers/media/i2c/mt9v032.c
7336 F:      include/media/i2c/mt9v032.h
7337
7338 MULTIFUNCTION DEVICES (MFD)
7339 M:      Lee Jones <lee.jones@linaro.org>
7340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
7341 S:      Supported
7342 F:      drivers/mfd/
7343 F:      include/linux/mfd/
7344
7345 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
7346 M:      Ulf Hansson <ulf.hansson@linaro.org>
7347 L:      linux-mmc@vger.kernel.org
7348 T:      git git://git.linaro.org/people/ulf.hansson/mmc.git
7349 S:      Maintained
7350 F:      drivers/mmc/
7351 F:      include/linux/mmc/
7352 F:      include/uapi/linux/mmc/
7353
7354 MULTIMEDIA CARD (MMC) ETC. OVER SPI
7355 S:      Orphan
7356 F:      drivers/mmc/host/mmc_spi.c
7357 F:      include/linux/spi/mmc_spi.h
7358
7359 MULTISOUND SOUND DRIVER
7360 M:      Andrew Veliath <andrewtv@usa.net>
7361 S:      Maintained
7362 F:      Documentation/sound/oss/MultiSound
7363 F:      sound/oss/msnd*
7364
7365 MULTITECH MULTIPORT CARD (ISICOM)
7366 S:      Orphan
7367 F:      drivers/tty/isicom.c
7368 F:      include/linux/isicom.h
7369
7370 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
7371 M:      Felipe Balbi <balbi@kernel.org>
7372 L:      linux-usb@vger.kernel.org
7373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7374 S:      Maintained
7375 F:      drivers/usb/musb/
7376
7377 MXL5007T MEDIA DRIVER
7378 M:      Michael Krufky <mkrufky@linuxtv.org>
7379 L:      linux-media@vger.kernel.org
7380 W:      https://linuxtv.org
7381 W:      http://github.com/mkrufky
7382 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7383 T:      git git://linuxtv.org/mkrufky/tuners.git
7384 S:      Maintained
7385 F:      drivers/media/tuners/mxl5007t.*
7386
7387 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
7388 M:      Hyong-Youb Kim <hykim@myri.com>
7389 L:      netdev@vger.kernel.org
7390 W:      https://www.myricom.com/support/downloads/myri10ge.html
7391 S:      Supported
7392 F:      drivers/net/ethernet/myricom/myri10ge/
7393
7394 NATSEMI ETHERNET DRIVER (DP8381x)
7395 S:      Orphan
7396 F:      drivers/net/ethernet/natsemi/natsemi.c
7397
7398 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
7399 M:      Daniel Mack <zonque@gmail.com>
7400 S:      Maintained
7401 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7402 W:      http://www.native-instruments.com
7403 F:      sound/usb/caiaq/
7404
7405 NCP FILESYSTEM
7406 M:      Petr Vandrovec <petr@vandrovec.name>
7407 S:      Odd Fixes
7408 F:      fs/ncpfs/
7409
7410 NCR 5380 SCSI DRIVERS
7411 M:      Finn Thain <fthain@telegraphics.com.au>
7412 M:      Michael Schmitz <schmitzmic@gmail.com>
7413 L:      linux-scsi@vger.kernel.org
7414 S:      Maintained
7415 F:      Documentation/scsi/g_NCR5380.txt
7416 F:      drivers/scsi/NCR5380.*
7417 F:      drivers/scsi/arm/cumana_1.c
7418 F:      drivers/scsi/arm/oak.c
7419 F:      drivers/scsi/atari_NCR5380.c
7420 F:      drivers/scsi/atari_scsi.*
7421 F:      drivers/scsi/dmx3191d.c
7422 F:      drivers/scsi/dtc.*
7423 F:      drivers/scsi/g_NCR5380.*
7424 F:      drivers/scsi/g_NCR5380_mmio.c
7425 F:      drivers/scsi/mac_scsi.*
7426 F:      drivers/scsi/pas16.*
7427 F:      drivers/scsi/sun3_scsi.*
7428 F:      drivers/scsi/sun3_scsi_vme.c
7429 F:      drivers/scsi/t128.*
7430
7431 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
7432 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
7433 L:      linux-scsi@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/scsi/NCR_D700.*
7436
7437 NCT6775 HARDWARE MONITOR DRIVER
7438 M:      Guenter Roeck <linux@roeck-us.net>
7439 L:      lm-sensors@lm-sensors.org
7440 S:      Maintained
7441 F:      Documentation/hwmon/nct6775
7442 F:      drivers/hwmon/nct6775.c
7443
7444 NETEFFECT IWARP RNIC DRIVER (IW_NES)
7445 M:      Faisal Latif <faisal.latif@intel.com>
7446 L:      linux-rdma@vger.kernel.org
7447 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
7448 S:      Supported
7449 F:      drivers/infiniband/hw/nes/
7450
7451 NETEM NETWORK EMULATOR
7452 M:      Stephen Hemminger <stephen@networkplumber.org>
7453 L:      netem@lists.linux-foundation.org
7454 S:      Maintained
7455 F:      net/sched/sch_netem.c
7456
7457 NETERION 10GbE DRIVERS (s2io/vxge)
7458 M:      Jon Mason <jdmason@kudzu.us>
7459 L:      netdev@vger.kernel.org
7460 S:      Supported
7461 F:      Documentation/networking/s2io.txt
7462 F:      Documentation/networking/vxge.txt
7463 F:      drivers/net/ethernet/neterion/
7464
7465 NETFILTER ({IP,IP6,ARP,EB,NF}TABLES)
7466 M:      Pablo Neira Ayuso <pablo@netfilter.org>
7467 M:      Patrick McHardy <kaber@trash.net>
7468 M:      Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
7469 L:      netfilter-devel@vger.kernel.org
7470 L:      coreteam@netfilter.org
7471 W:      http://www.netfilter.org/
7472 W:      http://www.iptables.org/
7473 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
7474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
7475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
7476 S:      Supported
7477 F:      include/linux/netfilter*
7478 F:      include/linux/netfilter/
7479 F:      include/net/netfilter/
7480 F:      include/uapi/linux/netfilter*
7481 F:      include/uapi/linux/netfilter/
7482 F:      net/*/netfilter.c
7483 F:      net/*/netfilter/
7484 F:      net/netfilter/
7485 F:      net/bridge/br_netfilter*.c
7486
7487 NETLABEL
7488 M:      Paul Moore <paul@paul-moore.com>
7489 W:      http://netlabel.sf.net
7490 L:      netdev@vger.kernel.org
7491 S:      Maintained
7492 F:      Documentation/netlabel/
7493 F:      include/net/netlabel.h
7494 F:      net/netlabel/
7495
7496 NETROM NETWORK LAYER
7497 M:      Ralf Baechle <ralf@linux-mips.org>
7498 L:      linux-hams@vger.kernel.org
7499 W:      http://www.linux-ax25.org/
7500 S:      Maintained
7501 F:      include/net/netrom.h
7502 F:      include/uapi/linux/netrom.h
7503 F:      net/netrom/
7504
7505 NETRONOME ETHERNET DRIVERS
7506 M:      Jakub Kicinski <jakub.kicinski@netronome.com>
7507 M:      Rolf Neugebauer <rolf.neugebauer@netronome.com>
7508 L:      oss-drivers@netronome.com
7509 S:      Maintained
7510 F:      drivers/net/ethernet/netronome/
7511
7512 NETWORK BLOCK DEVICE (NBD)
7513 M:      Markus Pargmann <mpa@pengutronix.de>
7514 S:      Maintained
7515 L:      nbd-general@lists.sourceforge.net
7516 T:      git git://git.pengutronix.de/git/mpa/linux-nbd.git
7517 F:      Documentation/blockdev/nbd.txt
7518 F:      drivers/block/nbd.c
7519 F:      include/uapi/linux/nbd.h
7520
7521 NETWORK DROP MONITOR
7522 M:      Neil Horman <nhorman@tuxdriver.com>
7523 L:      netdev@vger.kernel.org
7524 S:      Maintained
7525 W:      https://fedorahosted.org/dropwatch/
7526 F:      net/core/drop_monitor.c
7527
7528 NETWORKING [GENERAL]
7529 M:      "David S. Miller" <davem@davemloft.net>
7530 L:      netdev@vger.kernel.org
7531 W:      http://www.linuxfoundation.org/en/Net
7532 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7535 S:      Maintained
7536 F:      net/
7537 F:      include/net/
7538 F:      include/linux/in.h
7539 F:      include/linux/net.h
7540 F:      include/linux/netdevice.h
7541 F:      include/uapi/linux/in.h
7542 F:      include/uapi/linux/net.h
7543 F:      include/uapi/linux/netdevice.h
7544 F:      include/uapi/linux/net_namespace.h
7545 F:      tools/net/
7546 F:      tools/testing/selftests/net/
7547 F:      lib/random32.c
7548 F:      lib/test_bpf.c
7549
7550 NETWORKING [IPv4/IPv6]
7551 M:      "David S. Miller" <davem@davemloft.net>
7552 M:      Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
7553 M:      James Morris <jmorris@namei.org>
7554 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
7555 M:      Patrick McHardy <kaber@trash.net>
7556 L:      netdev@vger.kernel.org
7557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7558 S:      Maintained
7559 F:      net/ipv4/
7560 F:      net/ipv6/
7561 F:      include/net/ip*
7562 F:      arch/x86/net/*
7563
7564 NETWORKING [IPSEC]
7565 M:      Steffen Klassert <steffen.klassert@secunet.com>
7566 M:      Herbert Xu <herbert@gondor.apana.org.au>
7567 M:      "David S. Miller" <davem@davemloft.net>
7568 L:      netdev@vger.kernel.org
7569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
7570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
7571 S:      Maintained
7572 F:      net/core/flow.c
7573 F:      net/xfrm/
7574 F:      net/key/
7575 F:      net/ipv4/xfrm*
7576 F:      net/ipv4/esp4.c
7577 F:      net/ipv4/ah4.c
7578 F:      net/ipv4/ipcomp.c
7579 F:      net/ipv4/ip_vti.c
7580 F:      net/ipv6/xfrm*
7581 F:      net/ipv6/esp6.c
7582 F:      net/ipv6/ah6.c
7583 F:      net/ipv6/ipcomp6.c
7584 F:      net/ipv6/ip6_vti.c
7585 F:      include/uapi/linux/xfrm.h
7586 F:      include/net/xfrm.h
7587
7588 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
7589 M:      Paul Moore <paul@paul-moore.com>
7590 L:      netdev@vger.kernel.org
7591 S:      Maintained
7592
7593 NETWORKING [WIRELESS]
7594 L:      linux-wireless@vger.kernel.org
7595 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7596
7597 NETWORKING DRIVERS
7598 L:      netdev@vger.kernel.org
7599 W:      http://www.linuxfoundation.org/en/Net
7600 Q:      http://patchwork.ozlabs.org/project/netdev/list/
7601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
7602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
7603 S:      Odd Fixes
7604 F:      drivers/net/
7605 F:      include/linux/if_*
7606 F:      include/linux/netdevice.h
7607 F:      include/linux/etherdevice.h
7608 F:      include/linux/fcdevice.h
7609 F:      include/linux/fddidevice.h
7610 F:      include/linux/hippidevice.h
7611 F:      include/linux/inetdevice.h
7612 F:      include/uapi/linux/if_*
7613 F:      include/uapi/linux/netdevice.h
7614
7615 NETWORKING DRIVERS (WIRELESS)
7616 M:      Kalle Valo <kvalo@codeaurora.org>
7617 L:      linux-wireless@vger.kernel.org
7618 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
7619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
7620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
7621 S:      Maintained
7622 F:      drivers/net/wireless/
7623
7624 NETXEN (1/10) GbE SUPPORT
7625 M:      Manish Chopra <manish.chopra@qlogic.com>
7626 M:      Sony Chacko <sony.chacko@qlogic.com>
7627 M:      Rajesh Borundia <rajesh.borundia@qlogic.com>
7628 L:      netdev@vger.kernel.org
7629 W:      http://www.qlogic.com
7630 S:      Supported
7631 F:      drivers/net/ethernet/qlogic/netxen/
7632
7633 NFC SUBSYSTEM
7634 M:      Lauro Ramos Venancio <lauro.venancio@openbossa.org>
7635 M:      Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
7636 M:      Samuel Ortiz <sameo@linux.intel.com>
7637 L:      linux-wireless@vger.kernel.org
7638 L:      linux-nfc@lists.01.org (subscribers-only)
7639 S:      Supported
7640 F:      net/nfc/
7641 F:      include/net/nfc/
7642 F:      include/uapi/linux/nfc.h
7643 F:      drivers/nfc/
7644 F:      include/linux/platform_data/microread.h
7645 F:      include/linux/platform_data/nfcmrvl.h
7646 F:      include/linux/platform_data/nxp-nci.h
7647 F:      include/linux/platform_data/pn544.h
7648 F:      include/linux/platform_data/st21nfca.h
7649 F:      include/linux/platform_data/st-nci.h
7650 F:      Documentation/devicetree/bindings/net/nfc/
7651
7652 NFS, SUNRPC, AND LOCKD CLIENTS
7653 M:      Trond Myklebust <trond.myklebust@primarydata.com>
7654 M:      Anna Schumaker <anna.schumaker@netapp.com>
7655 L:      linux-nfs@vger.kernel.org
7656 W:      http://client.linux-nfs.org
7657 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
7658 S:      Maintained
7659 F:      fs/lockd/
7660 F:      fs/nfs/
7661 F:      fs/nfs_common/
7662 F:      net/sunrpc/
7663 F:      include/linux/lockd/
7664 F:      include/linux/nfs*
7665 F:      include/linux/sunrpc/
7666 F:      include/uapi/linux/nfs*
7667 F:      include/uapi/linux/sunrpc/
7668
7669 NILFS2 FILESYSTEM
7670 M:      Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
7671 L:      linux-nilfs@vger.kernel.org
7672 W:      http://nilfs.sourceforge.net/
7673 T:      git git://github.com/konis/nilfs2.git
7674 S:      Supported
7675 F:      Documentation/filesystems/nilfs2.txt
7676 F:      fs/nilfs2/
7677 F:      include/linux/nilfs2_fs.h
7678 F:      include/trace/events/nilfs2.h
7679
7680 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
7681 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7682 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7683 S:      Maintained
7684 F:      Documentation/scsi/NinjaSCSI.txt
7685 F:      drivers/scsi/pcmcia/nsp_*
7686
7687 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
7688 M:      GOTO Masanori <gotom@debian.or.jp>
7689 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
7690 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
7691 S:      Maintained
7692 F:      Documentation/scsi/NinjaSCSI.txt
7693 F:      drivers/scsi/nsp32*
7694
7695 NIOS2 ARCHITECTURE
7696 M:      Ley Foon Tan <lftan@altera.com>
7697 L:      nios2-dev@lists.rocketboards.org (moderated for non-subscribers)
7698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
7699 S:      Maintained
7700 F:      arch/nios2/
7701
7702 NOKIA N900 POWER SUPPLY DRIVERS
7703 M:      Pali RohĂ¡r <pali.rohar@gmail.com>
7704 S:      Maintained
7705 F:      include/linux/power/bq2415x_charger.h
7706 F:      include/linux/power/bq27xxx_battery.h
7707 F:      include/linux/power/isp1704_charger.h
7708 F:      drivers/power/bq2415x_charger.c
7709 F:      drivers/power/bq27xxx_battery.c
7710 F:      drivers/power/isp1704_charger.c
7711 F:      drivers/power/rx51_battery.c
7712
7713 NTB DRIVER CORE
7714 M:      Jon Mason <jdmason@kudzu.us>
7715 M:      Dave Jiang <dave.jiang@intel.com>
7716 M:      Allen Hubbe <Allen.Hubbe@emc.com>
7717 L:      linux-ntb@googlegroups.com
7718 S:      Supported
7719 W:      https://github.com/jonmason/ntb/wiki
7720 T:      git git://github.com/jonmason/ntb.git
7721 F:      drivers/ntb/
7722 F:      drivers/net/ntb_netdev.c
7723 F:      include/linux/ntb.h
7724 F:      include/linux/ntb_transport.h
7725
7726 NTB INTEL DRIVER
7727 M:      Jon Mason <jdmason@kudzu.us>
7728 M:      Dave Jiang <dave.jiang@intel.com>
7729 L:      linux-ntb@googlegroups.com
7730 S:      Supported
7731 W:      https://github.com/jonmason/ntb/wiki
7732 T:      git git://github.com/jonmason/ntb.git
7733 F:      drivers/ntb/hw/intel/
7734
7735 NTB AMD DRIVER
7736 M:      Xiangliang Yu <Xiangliang.Yu@amd.com>
7737 L:      linux-ntb@googlegroups.com
7738 S:      Supported
7739 F:      drivers/ntb/hw/amd/
7740
7741 NTFS FILESYSTEM
7742 M:      Anton Altaparmakov <anton@tuxera.com>
7743 L:      linux-ntfs-dev@lists.sourceforge.net
7744 W:      http://www.tuxera.com/
7745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
7746 S:      Supported
7747 F:      Documentation/filesystems/ntfs.txt
7748 F:      fs/ntfs/
7749
7750 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
7751 M:      Antonino Daplas <adaplas@gmail.com>
7752 L:      linux-fbdev@vger.kernel.org
7753 S:      Maintained
7754 F:      drivers/video/fbdev/riva/
7755 F:      drivers/video/fbdev/nvidia/
7756
7757 NVM EXPRESS DRIVER
7758 M:      Keith Busch <keith.busch@intel.com>
7759 M:      Jens Axboe <axboe@fb.com>
7760 L:      linux-nvme@lists.infradead.org
7761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
7762 W:      https://kernel.googlesource.com/pub/scm/linux/kernel/git/axboe/linux-block/
7763 S:      Supported
7764 F:      drivers/nvme/host/
7765 F:      include/linux/nvme.h
7766
7767 NVMEM FRAMEWORK
7768 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
7769 M:      Maxime Ripard <maxime.ripard@free-electrons.com>
7770 S:      Maintained
7771 F:      drivers/nvmem/
7772 F:      Documentation/devicetree/bindings/nvmem/
7773 F:      include/linux/nvmem-consumer.h
7774 F:      include/linux/nvmem-provider.h
7775
7776 NXP-NCI NFC DRIVER
7777 M:      ClĂ©ment Perrochaud <clement.perrochaud@effinnov.com>
7778 R:      Charles Gorand <charles.gorand@effinnov.com>
7779 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
7780 S:      Supported
7781 F:      drivers/nfc/nxp-nci
7782
7783 NXP TDA998X DRM DRIVER
7784 M:      Russell King <rmk+kernel@arm.linux.org.uk>
7785 S:      Supported
7786 F:      drivers/gpu/drm/i2c/tda998x_drv.c
7787 F:      include/drm/i2c/tda998x.h
7788
7789 NXP TFA9879 DRIVER
7790 M:      Peter Rosin <peda@axentia.se>
7791 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7792 S:      Maintained
7793 F:      sound/soc/codecs/tfa9879*
7794
7795 OMAP SUPPORT
7796 M:      Tony Lindgren <tony@atomide.com>
7797 L:      linux-omap@vger.kernel.org
7798 W:      http://www.muru.com/linux/omap/
7799 W:      http://linux.omap.com/
7800 Q:      http://patchwork.kernel.org/project/linux-omap/list/
7801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
7802 S:      Maintained
7803 F:      arch/arm/*omap*/
7804 F:      arch/arm/configs/omap1_defconfig
7805 F:      arch/arm/configs/omap2plus_defconfig
7806 F:      drivers/i2c/busses/i2c-omap.c
7807 F:      drivers/irqchip/irq-omap-intc.c
7808 F:      drivers/mfd/*omap*.c
7809 F:      drivers/mfd/menelaus.c
7810 F:      drivers/mfd/palmas.c
7811 F:      drivers/mfd/tps65217.c
7812 F:      drivers/mfd/tps65218.c
7813 F:      drivers/mfd/tps65910.c
7814 F:      drivers/mfd/twl-core.[ch]
7815 F:      drivers/mfd/twl4030*.c
7816 F:      drivers/mfd/twl6030*.c
7817 F:      drivers/mfd/twl6040*.c
7818 F:      drivers/regulator/palmas-regulator*.c
7819 F:      drivers/regulator/pbias-regulator.c
7820 F:      drivers/regulator/tps65217-regulator.c
7821 F:      drivers/regulator/tps65218-regulator.c
7822 F:      drivers/regulator/tps65910-regulator.c
7823 F:      drivers/regulator/twl-regulator.c
7824 F:      include/linux/i2c-omap.h
7825
7826 OMAP DEVICE TREE SUPPORT
7827 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7828 M:      Tony Lindgren <tony@atomide.com>
7829 L:      linux-omap@vger.kernel.org
7830 L:      devicetree@vger.kernel.org
7831 S:      Maintained
7832 F:      arch/arm/boot/dts/*omap*
7833 F:      arch/arm/boot/dts/*am3*
7834 F:      arch/arm/boot/dts/*am4*
7835 F:      arch/arm/boot/dts/*am5*
7836 F:      arch/arm/boot/dts/*dra7*
7837
7838 OMAP CLOCK FRAMEWORK SUPPORT
7839 M:      Paul Walmsley <paul@pwsan.com>
7840 L:      linux-omap@vger.kernel.org
7841 S:      Maintained
7842 F:      arch/arm/*omap*/*clock*
7843
7844 OMAP POWER MANAGEMENT SUPPORT
7845 M:      Kevin Hilman <khilman@deeprootsystems.com>
7846 L:      linux-omap@vger.kernel.org
7847 S:      Maintained
7848 F:      arch/arm/*omap*/*pm*
7849 F:      drivers/cpufreq/omap-cpufreq.c
7850
7851 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
7852 M:      Rajendra Nayak <rnayak@ti.com>
7853 M:      Paul Walmsley <paul@pwsan.com>
7854 L:      linux-omap@vger.kernel.org
7855 S:      Maintained
7856 F:      arch/arm/mach-omap2/prm*
7857
7858 OMAP AUDIO SUPPORT
7859 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
7860 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
7861 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7862 L:      linux-omap@vger.kernel.org
7863 S:      Maintained
7864 F:      sound/soc/omap/
7865
7866 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
7867 M:      Roger Quadros <rogerq@ti.com>
7868 M:      Tony Lindgren <tony@atomide.com>
7869 L:      linux-omap@vger.kernel.org
7870 S:      Maintained
7871 F:      drivers/memory/omap-gpmc.c
7872 F:      arch/arm/mach-omap2/*gpmc*
7873
7874 OMAP FRAMEBUFFER SUPPORT
7875 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7876 L:      linux-fbdev@vger.kernel.org
7877 L:      linux-omap@vger.kernel.org
7878 S:      Maintained
7879 F:      drivers/video/fbdev/omap/
7880
7881 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
7882 M:      Tomi Valkeinen <tomi.valkeinen@ti.com>
7883 L:      linux-omap@vger.kernel.org
7884 L:      linux-fbdev@vger.kernel.org
7885 S:      Maintained
7886 F:      drivers/video/fbdev/omap2/
7887 F:      Documentation/arm/OMAP/DSS
7888
7889 OMAP HARDWARE SPINLOCK SUPPORT
7890 M:      Ohad Ben-Cohen <ohad@wizery.com>
7891 L:      linux-omap@vger.kernel.org
7892 S:      Maintained
7893 F:      drivers/hwspinlock/omap_hwspinlock.c
7894
7895 OMAP MMC SUPPORT
7896 M:      Jarkko Lavinen <jarkko.lavinen@nokia.com>
7897 L:      linux-omap@vger.kernel.org
7898 S:      Maintained
7899 F:      drivers/mmc/host/omap.c
7900
7901 OMAP HS MMC SUPPORT
7902 L:      linux-mmc@vger.kernel.org
7903 L:      linux-omap@vger.kernel.org
7904 S:      Orphan
7905 F:      drivers/mmc/host/omap_hsmmc.c
7906
7907 OMAP RANDOM NUMBER GENERATOR SUPPORT
7908 M:      Deepak Saxena <dsaxena@plexity.net>
7909 S:      Maintained
7910 F:      drivers/char/hw_random/omap-rng.c
7911
7912 OMAP HWMOD SUPPORT
7913 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7914 M:      Paul Walmsley <paul@pwsan.com>
7915 L:      linux-omap@vger.kernel.org
7916 S:      Maintained
7917 F:      arch/arm/mach-omap2/omap_hwmod.*
7918
7919 OMAP HWMOD DATA
7920 M:      Paul Walmsley <paul@pwsan.com>
7921 L:      linux-omap@vger.kernel.org
7922 S:      Maintained
7923 F:      arch/arm/mach-omap2/omap_hwmod*data*
7924
7925 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
7926 M:      BenoĂ®t Cousson <bcousson@baylibre.com>
7927 L:      linux-omap@vger.kernel.org
7928 S:      Maintained
7929 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
7930
7931 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
7932 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7933 L:      linux-media@vger.kernel.org
7934 S:      Maintained
7935 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
7936 F:      drivers/media/platform/omap3isp/
7937 F:      drivers/staging/media/omap4iss/
7938
7939 OMAP USB SUPPORT
7940 M:      Felipe Balbi <balbi@kernel.org>
7941 L:      linux-usb@vger.kernel.org
7942 L:      linux-omap@vger.kernel.org
7943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
7944 S:      Maintained
7945 F:      drivers/usb/*/*omap*
7946 F:      arch/arm/*omap*/usb*
7947
7948 OMAP GPIO DRIVER
7949 M:      Grygorii Strashko <grygorii.strashko@ti.com>
7950 M:      Santosh Shilimkar <ssantosh@kernel.org>
7951 M:      Kevin Hilman <khilman@deeprootsystems.com>
7952 L:      linux-omap@vger.kernel.org
7953 S:      Maintained
7954 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
7955 F:      drivers/gpio/gpio-omap.c
7956
7957 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
7958 M:      Mark Jackson <mpfj@newflow.co.uk>
7959 L:      linux-omap@vger.kernel.org
7960 S:      Maintained
7961 F:      arch/arm/boot/dts/am335x-nano.dts
7962
7963 OMFS FILESYSTEM
7964 M:      Bob Copeland <me@bobcopeland.com>
7965 L:      linux-karma-devel@lists.sourceforge.net
7966 S:      Maintained
7967 F:      Documentation/filesystems/omfs.txt
7968 F:      fs/omfs/
7969
7970 OMNIKEY CARDMAN 4000 DRIVER
7971 M:      Harald Welte <laforge@gnumonks.org>
7972 S:      Maintained
7973 F:      drivers/char/pcmcia/cm4000_cs.c
7974 F:      include/linux/cm4000_cs.h
7975 F:      include/uapi/linux/cm4000_cs.h
7976
7977 OMNIKEY CARDMAN 4040 DRIVER
7978 M:      Harald Welte <laforge@gnumonks.org>
7979 S:      Maintained
7980 F:      drivers/char/pcmcia/cm4040_cs.*
7981
7982 OMNIVISION OV7670 SENSOR DRIVER
7983 M:      Jonathan Corbet <corbet@lwn.net>
7984 L:      linux-media@vger.kernel.org
7985 T:      git git://linuxtv.org/media_tree.git
7986 S:      Maintained
7987 F:      drivers/media/i2c/ov7670.c
7988
7989 ONENAND FLASH DRIVER
7990 M:      Kyungmin Park <kyungmin.park@samsung.com>
7991 L:      linux-mtd@lists.infradead.org
7992 S:      Maintained
7993 F:      drivers/mtd/onenand/
7994 F:      include/linux/mtd/onenand*.h
7995
7996 ONSTREAM SCSI TAPE DRIVER
7997 M:      Willem Riede <osst@riede.org>
7998 L:      osst-users@lists.sourceforge.net
7999 L:      linux-scsi@vger.kernel.org
8000 S:      Maintained
8001 F:      Documentation/scsi/osst.txt
8002 F:      drivers/scsi/osst.*
8003 F:      drivers/scsi/osst_*.h
8004 F:      drivers/scsi/st.h
8005
8006 OPENCORES I2C BUS DRIVER
8007 M:      Peter Korsgaard <jacmet@sunsite.dk>
8008 L:      linux-i2c@vger.kernel.org
8009 S:      Maintained
8010 F:      Documentation/i2c/busses/i2c-ocores
8011 F:      drivers/i2c/busses/i2c-ocores.c
8012
8013 OPEN FIRMWARE AND FLATTENED DEVICE TREE
8014 M:      Rob Herring <robh+dt@kernel.org>
8015 M:      Frank Rowand <frowand.list@gmail.com>
8016 M:      Grant Likely <grant.likely@linaro.org>
8017 L:      devicetree@vger.kernel.org
8018 W:      http://www.devicetree.org/
8019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/glikely/linux.git
8020 S:      Maintained
8021 F:      drivers/of/
8022 F:      include/linux/of*.h
8023 F:      scripts/dtc/
8024
8025 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
8026 M:      Rob Herring <robh+dt@kernel.org>
8027 M:      Pawel Moll <pawel.moll@arm.com>
8028 M:      Mark Rutland <mark.rutland@arm.com>
8029 M:      Ian Campbell <ijc+devicetree@hellion.org.uk>
8030 M:      Kumar Gala <galak@codeaurora.org>
8031 L:      devicetree@vger.kernel.org
8032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
8033 S:      Maintained
8034 F:      Documentation/devicetree/
8035 F:      arch/*/boot/dts/
8036 F:      include/dt-bindings/
8037
8038 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
8039 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
8040 L:      devicetree@vger.kernel.org
8041 S:      Maintained
8042 F:      Documentation/devicetree/dynamic-resolution-notes.txt
8043 F:      Documentation/devicetree/overlay-notes.txt
8044 F:      drivers/of/overlay.c
8045 F:      drivers/of/resolver.c
8046
8047 OPENRISC ARCHITECTURE
8048 M:      Jonas Bonn <jonas@southpole.se>
8049 W:      http://openrisc.net
8050 L:      linux@lists.openrisc.net (moderated for non-subscribers)
8051 S:      Maintained
8052 T:      git git://openrisc.net/~jonas/linux
8053 F:      arch/openrisc/
8054
8055 OPENVSWITCH
8056 M:      Pravin Shelar <pshelar@nicira.com>
8057 L:      netdev@vger.kernel.org
8058 L:      dev@openvswitch.org
8059 W:      http://openvswitch.org
8060 S:      Maintained
8061 F:      net/openvswitch/
8062 F:      include/uapi/linux/openvswitch.h
8063
8064 OPERATING PERFORMANCE POINTS (OPP)
8065 M:      Viresh Kumar <vireshk@kernel.org>
8066 M:      Nishanth Menon <nm@ti.com>
8067 M:      Stephen Boyd <sboyd@codeaurora.org>
8068 L:      linux-pm@vger.kernel.org
8069 S:      Maintained
8070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
8071 F:      drivers/base/power/opp/
8072 F:      include/linux/pm_opp.h
8073 F:      Documentation/power/opp.txt
8074 F:      Documentation/devicetree/bindings/opp/
8075
8076 OPL4 DRIVER
8077 M:      Clemens Ladisch <clemens@ladisch.de>
8078 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8079 T:      git git://git.alsa-project.org/alsa-kernel.git
8080 S:      Maintained
8081 F:      sound/drivers/opl4/
8082
8083 OPROFILE
8084 M:      Robert Richter <rric@kernel.org>
8085 L:      oprofile-list@lists.sf.net
8086 S:      Maintained
8087 F:      arch/*/include/asm/oprofile*.h
8088 F:      arch/*/oprofile/
8089 F:      drivers/oprofile/
8090 F:      include/linux/oprofile.h
8091
8092 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
8093 M:      Mark Fasheh <mfasheh@suse.com>
8094 M:      Joel Becker <jlbec@evilplan.org>
8095 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
8096 W:      http://ocfs2.wiki.kernel.org
8097 S:      Supported
8098 F:      Documentation/filesystems/ocfs2.txt
8099 F:      Documentation/filesystems/dlmfs.txt
8100 F:      fs/ocfs2/
8101
8102 ORINOCO DRIVER
8103 L:      linux-wireless@vger.kernel.org
8104 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
8105 W:      http://www.nongnu.org/orinoco/
8106 S:      Orphan
8107 F:      drivers/net/wireless/intersil/orinoco/
8108
8109 OSD LIBRARY and FILESYSTEM
8110 M:      Boaz Harrosh <ooo@electrozaur.com>
8111 M:      Benny Halevy <bhalevy@primarydata.com>
8112 L:      osd-dev@open-osd.org
8113 W:      http://open-osd.org
8114 T:      git git://git.open-osd.org/open-osd.git
8115 S:      Maintained
8116 F:      drivers/scsi/osd/
8117 F:      include/scsi/osd_*
8118 F:      fs/exofs/
8119
8120 OVERLAY FILESYSTEM
8121 M:      Miklos Szeredi <miklos@szeredi.hu>
8122 L:      linux-unionfs@vger.kernel.org
8123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
8124 S:      Supported
8125 F:      fs/overlayfs/
8126 F:      Documentation/filesystems/overlayfs.txt
8127
8128 P54 WIRELESS DRIVER
8129 M:      Christian Lamparter <chunkeey@googlemail.com>
8130 L:      linux-wireless@vger.kernel.org
8131 W:      http://wireless.kernel.org/en/users/Drivers/p54
8132 S:      Maintained
8133 F:      drivers/net/wireless/intersil/p54/
8134
8135 PA SEMI ETHERNET DRIVER
8136 M:      Olof Johansson <olof@lixom.net>
8137 L:      netdev@vger.kernel.org
8138 S:      Maintained
8139 F:      drivers/net/ethernet/pasemi/*
8140
8141 PA SEMI SMBUS DRIVER
8142 M:      Olof Johansson <olof@lixom.net>
8143 L:      linux-i2c@vger.kernel.org
8144 S:      Maintained
8145 F:      drivers/i2c/busses/i2c-pasemi.c
8146
8147 PADATA PARALLEL EXECUTION MECHANISM
8148 M:      Steffen Klassert <steffen.klassert@secunet.com>
8149 L:      linux-crypto@vger.kernel.org
8150 S:      Maintained
8151 F:      kernel/padata.c
8152 F:      include/linux/padata.h
8153 F:      Documentation/padata.txt
8154
8155 PANASONIC LAPTOP ACPI EXTRAS DRIVER
8156 M:      Harald Welte <laforge@gnumonks.org>
8157 L:      platform-driver-x86@vger.kernel.org
8158 S:      Maintained
8159 F:      drivers/platform/x86/panasonic-laptop.c
8160
8161 PANASONIC MN10300/AM33/AM34 PORT
8162 M:      David Howells <dhowells@redhat.com>
8163 M:      Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
8164 L:      linux-am33-list@redhat.com (moderated for non-subscribers)
8165 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
8166 S:      Maintained
8167 F:      Documentation/mn10300/
8168 F:      arch/mn10300/
8169
8170 PARALLEL PORT SUBSYSTEM
8171 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
8172 M:      Sudip Mukherjee <sudip@vectorindia.org>
8173 L:      linux-parport@lists.infradead.org (subscribers-only)
8174 S:      Maintained
8175 F:      drivers/parport/
8176 F:      include/linux/parport*.h
8177 F:      drivers/char/ppdev.c
8178 F:      include/uapi/linux/ppdev.h
8179 F:      Documentation/parport*.txt
8180
8181 PARAVIRT_OPS INTERFACE
8182 M:      Jeremy Fitzhardinge <jeremy@goop.org>
8183 M:      Chris Wright <chrisw@sous-sol.org>
8184 M:      Alok Kataria <akataria@vmware.com>
8185 M:      Rusty Russell <rusty@rustcorp.com.au>
8186 L:      virtualization@lists.linux-foundation.org
8187 S:      Supported
8188 F:      Documentation/virtual/paravirt_ops.txt
8189 F:      arch/*/kernel/paravirt*
8190 F:      arch/*/include/asm/paravirt.h
8191
8192 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
8193 M:      Tim Waugh <tim@cyberelk.net>
8194 L:      linux-parport@lists.infradead.org (subscribers-only)
8195 S:      Maintained
8196 F:      Documentation/blockdev/paride.txt
8197 F:      drivers/block/paride/
8198
8199 PARISC ARCHITECTURE
8200 M:      "James E.J. Bottomley" <jejb@parisc-linux.org>
8201 M:      Helge Deller <deller@gmx.de>
8202 L:      linux-parisc@vger.kernel.org
8203 W:      http://www.parisc-linux.org/
8204 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
8205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
8206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
8207 S:      Maintained
8208 F:      arch/parisc/
8209 F:      Documentation/parisc/
8210 F:      drivers/parisc/
8211 F:      drivers/char/agp/parisc-agp.c
8212 F:      drivers/input/serio/gscps2.c
8213 F:      drivers/parport/parport_gsc.*
8214 F:      drivers/tty/serial/8250/8250_gsc.c
8215 F:      drivers/video/fbdev/sti*
8216 F:      drivers/video/console/sti*
8217 F:      drivers/video/logo/logo_parisc*
8218
8219 PC87360 HARDWARE MONITORING DRIVER
8220 M:      Jim Cromie <jim.cromie@gmail.com>
8221 L:      lm-sensors@lm-sensors.org
8222 S:      Maintained
8223 F:      Documentation/hwmon/pc87360
8224 F:      drivers/hwmon/pc87360.c
8225
8226 PC8736x GPIO DRIVER
8227 M:      Jim Cromie <jim.cromie@gmail.com>
8228 S:      Maintained
8229 F:      drivers/char/pc8736x_gpio.c
8230
8231 PC87427 HARDWARE MONITORING DRIVER
8232 M:      Jean Delvare <jdelvare@suse.com>
8233 L:      lm-sensors@lm-sensors.org
8234 S:      Maintained
8235 F:      Documentation/hwmon/pc87427
8236 F:      drivers/hwmon/pc87427.c
8237
8238 PCA9532 LED DRIVER
8239 M:      Riku Voipio <riku.voipio@iki.fi>
8240 S:      Maintained
8241 F:      drivers/leds/leds-pca9532.c
8242 F:      include/linux/leds-pca9532.h
8243
8244 PCA9541 I2C BUS MASTER SELECTOR DRIVER
8245 M:      Guenter Roeck <linux@roeck-us.net>
8246 L:      linux-i2c@vger.kernel.org
8247 S:      Maintained
8248 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
8249
8250 PCDP - PRIMARY CONSOLE AND DEBUG PORT
8251 M:      Khalid Aziz <khalid@gonehiking.org>
8252 S:      Maintained
8253 F:      drivers/firmware/pcdp.*
8254
8255 PCI ERROR RECOVERY
8256 M:      Linas Vepstas <linasvepstas@gmail.com>
8257 L:      linux-pci@vger.kernel.org
8258 S:      Supported
8259 F:      Documentation/PCI/pci-error-recovery.txt
8260
8261 PCI SUBSYSTEM
8262 M:      Bjorn Helgaas <bhelgaas@google.com>
8263 L:      linux-pci@vger.kernel.org
8264 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
8266 S:      Supported
8267 F:      Documentation/PCI/
8268 F:      drivers/pci/
8269 F:      include/linux/pci*
8270 F:      arch/x86/pci/
8271 F:      arch/x86/kernel/quirks.c
8272
8273 PCI DRIVER FOR ALTERA PCIE IP
8274 M:      Ley Foon Tan <lftan@altera.com>
8275 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8276 L:      linux-pci@vger.kernel.org
8277 S:      Supported
8278 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
8279 F:      drivers/pci/host/pcie-altera.c
8280
8281 PCI DRIVER FOR ARM VERSATILE PLATFORM
8282 M:      Rob Herring <robh@kernel.org>
8283 L:      linux-pci@vger.kernel.org
8284 L:      linux-arm-kernel@lists.infradead.org
8285 S:      Maintained
8286 F:      Documentation/devicetree/bindings/pci/versatile.txt
8287 F:      drivers/pci/host/pci-versatile.c
8288
8289 PCI DRIVER FOR APPLIEDMICRO XGENE
8290 M:      Tanmay Inamdar <tinamdar@apm.com>
8291 L:      linux-pci@vger.kernel.org
8292 L:      linux-arm-kernel@lists.infradead.org
8293 S:      Maintained
8294 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
8295 F:      drivers/pci/host/pci-xgene.c
8296
8297 PCI DRIVER FOR FREESCALE LAYERSCAPE
8298 M:      Minghuan Lian <minghuan.Lian@freescale.com>
8299 M:      Mingkai Hu <mingkai.hu@freescale.com>
8300 M:      Roy Zang <tie-fei.zang@freescale.com>
8301 L:      linuxppc-dev@lists.ozlabs.org
8302 L:      linux-pci@vger.kernel.org
8303 L:      linux-arm-kernel@lists.infradead.org
8304 S:      Maintained
8305 F:      drivers/pci/host/*layerscape*
8306
8307 PCI DRIVER FOR IMX6
8308 M:      Richard Zhu <Richard.Zhu@freescale.com>
8309 M:      Lucas Stach <l.stach@pengutronix.de>
8310 L:      linux-pci@vger.kernel.org
8311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8312 S:      Maintained
8313 F:      drivers/pci/host/*imx6*
8314
8315 PCI DRIVER FOR TI KEYSTONE
8316 M:      Murali Karicheri <m-karicheri2@ti.com>
8317 L:      linux-pci@vger.kernel.org
8318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8319 S:      Maintained
8320 F:      drivers/pci/host/*keystone*
8321
8322 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
8323 M:      Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
8324 M:      Jason Cooper <jason@lakedaemon.net>
8325 L:      linux-pci@vger.kernel.org
8326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8327 S:      Maintained
8328 F:      drivers/pci/host/*mvebu*
8329
8330 PCI DRIVER FOR NVIDIA TEGRA
8331 M:      Thierry Reding <thierry.reding@gmail.com>
8332 L:      linux-tegra@vger.kernel.org
8333 L:      linux-pci@vger.kernel.org
8334 S:      Supported
8335 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
8336 F:      drivers/pci/host/pci-tegra.c
8337
8338 PCI DRIVER FOR TI DRA7XX
8339 M:      Kishon Vijay Abraham I <kishon@ti.com>
8340 L:      linux-omap@vger.kernel.org
8341 L:      linux-pci@vger.kernel.org
8342 S:      Supported
8343 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
8344 F:      drivers/pci/host/pci-dra7xx.c
8345
8346 PCI DRIVER FOR RENESAS R-CAR
8347 M:      Simon Horman <horms@verge.net.au>
8348 L:      linux-pci@vger.kernel.org
8349 L:      linux-renesas-soc@vger.kernel.org
8350 S:      Maintained
8351 F:      drivers/pci/host/*rcar*
8352
8353 PCI DRIVER FOR SAMSUNG EXYNOS
8354 M:      Jingoo Han <jingoohan1@gmail.com>
8355 L:      linux-pci@vger.kernel.org
8356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8357 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8358 S:      Maintained
8359 F:      drivers/pci/host/pci-exynos.c
8360
8361 PCI DRIVER FOR SYNOPSIS DESIGNWARE
8362 M:      Jingoo Han <jingoohan1@gmail.com>
8363 M:      Pratyush Anand <pratyush.anand@gmail.com>
8364 L:      linux-pci@vger.kernel.org
8365 S:      Maintained
8366 F:      drivers/pci/host/*designware*
8367
8368 PCI DRIVER FOR GENERIC OF HOSTS
8369 M:      Will Deacon <will.deacon@arm.com>
8370 L:      linux-pci@vger.kernel.org
8371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8372 S:      Maintained
8373 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
8374 F:      drivers/pci/host/pci-host-generic.c
8375
8376 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
8377 M:      Keith Busch <keith.busch@intel.com>
8378 L:      linux-pci@vger.kernel.org
8379 S:      Supported
8380 F:      arch/x86/pci/vmd.c
8381
8382 PCIE DRIVER FOR ST SPEAR13XX
8383 M:      Pratyush Anand <pratyush.anand@gmail.com>
8384 L:      linux-pci@vger.kernel.org
8385 S:      Maintained
8386 F:      drivers/pci/host/*spear*
8387
8388 PCI MSI DRIVER FOR ALTERA MSI IP
8389 M:      Ley Foon Tan <lftan@altera.com>
8390 L:      rfi@lists.rocketboards.org (moderated for non-subscribers)
8391 L:      linux-pci@vger.kernel.org
8392 S:      Supported
8393 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
8394 F:      drivers/pci/host/pcie-altera-msi.c
8395
8396 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
8397 M:      Duc Dang <dhdang@apm.com>
8398 L:      linux-pci@vger.kernel.org
8399 L:      linux-arm-kernel@lists.infradead.org
8400 S:      Maintained
8401 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
8402 F:      drivers/pci/host/pci-xgene-msi.c
8403
8404 PCIE DRIVER FOR HISILICON
8405 M:      Zhou Wang <wangzhou1@hisilicon.com>
8406 M:      Gabriele Paoloni <gabriele.paoloni@huawei.com>
8407 L:      linux-pci@vger.kernel.org
8408 S:      Maintained
8409 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
8410 F:      drivers/pci/host/pcie-hisi.c
8411
8412 PCIE DRIVER FOR QUALCOMM MSM
8413 M:     Stanimir Varbanov <svarbanov@mm-sol.com>
8414 L:     linux-pci@vger.kernel.org
8415 L:     linux-arm-msm@vger.kernel.org
8416 S:     Maintained
8417 F:     drivers/pci/host/*qcom*
8418
8419 PCMCIA SUBSYSTEM
8420 P:      Linux PCMCIA Team
8421 L:      linux-pcmcia@lists.infradead.org
8422 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
8423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
8424 S:      Maintained
8425 F:      Documentation/pcmcia/
8426 F:      drivers/pcmcia/
8427 F:      include/pcmcia/
8428
8429 PCNET32 NETWORK DRIVER
8430 M:      Don Fry <pcnet32@frontier.com>
8431 L:      netdev@vger.kernel.org
8432 S:      Maintained
8433 F:      drivers/net/ethernet/amd/pcnet32.c
8434
8435 PCRYPT PARALLEL CRYPTO ENGINE
8436 M:      Steffen Klassert <steffen.klassert@secunet.com>
8437 L:      linux-crypto@vger.kernel.org
8438 S:      Maintained
8439 F:      crypto/pcrypt.c
8440 F:      include/crypto/pcrypt.h
8441
8442 PER-CPU MEMORY ALLOCATOR
8443 M:      Tejun Heo <tj@kernel.org>
8444 M:      Christoph Lameter <cl@linux-foundation.org>
8445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
8446 S:      Maintained
8447 F:      include/linux/percpu*.h
8448 F:      mm/percpu*.c
8449 F:      arch/*/include/asm/percpu.h
8450
8451 PER-TASK DELAY ACCOUNTING
8452 M:      Balbir Singh <bsingharora@gmail.com>
8453 S:      Maintained
8454 F:      include/linux/delayacct.h
8455 F:      kernel/delayacct.c
8456
8457 PERFORMANCE EVENTS SUBSYSTEM
8458 M:      Peter Zijlstra <peterz@infradead.org>
8459 M:      Ingo Molnar <mingo@redhat.com>
8460 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
8461 L:      linux-kernel@vger.kernel.org
8462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
8463 S:      Supported
8464 F:      kernel/events/*
8465 F:      include/linux/perf_event.h
8466 F:      include/uapi/linux/perf_event.h
8467 F:      arch/*/kernel/perf_event*.c
8468 F:      arch/*/kernel/*/perf_event*.c
8469 F:      arch/*/kernel/*/*/perf_event*.c
8470 F:      arch/*/include/asm/perf_event.h
8471 F:      arch/*/kernel/perf_callchain.c
8472 F:      tools/perf/
8473
8474 PERSONALITY HANDLING
8475 M:      Christoph Hellwig <hch@infradead.org>
8476 L:      linux-abi-devel@lists.sourceforge.net
8477 S:      Maintained
8478 F:      include/linux/personality.h
8479 F:      include/uapi/linux/personality.h
8480
8481 PHONET PROTOCOL
8482 M:      Remi Denis-Courmont <courmisch@gmail.com>
8483 S:      Supported
8484 F:      Documentation/networking/phonet.txt
8485 F:      include/linux/phonet.h
8486 F:      include/net/phonet/
8487 F:      include/uapi/linux/phonet.h
8488 F:      net/phonet/
8489
8490 PHRAM MTD DRIVER
8491 M:      Joern Engel <joern@lazybastard.org>
8492 L:      linux-mtd@lists.infradead.org
8493 S:      Maintained
8494 F:      drivers/mtd/devices/phram.c
8495
8496 PICOLCD HID DRIVER
8497 M:      Bruno PrĂ©mont <bonbons@linux-vserver.org>
8498 L:      linux-input@vger.kernel.org
8499 S:      Maintained
8500 F:      drivers/hid/hid-picolcd*
8501
8502 PICOXCELL SUPPORT
8503 M:      Jamie Iles <jamie@jamieiles.com>
8504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8505 T:      git git://github.com/jamieiles/linux-2.6-ji.git
8506 S:      Supported
8507 F:      arch/arm/boot/dts/picoxcell*
8508 F:      arch/arm/mach-picoxcell/
8509 F:      drivers/crypto/picoxcell*
8510
8511 PIN CONTROL SUBSYSTEM
8512 M:      Linus Walleij <linus.walleij@linaro.org>
8513 L:      linux-gpio@vger.kernel.org
8514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
8515 S:      Maintained
8516 F:      drivers/pinctrl/
8517 F:      include/linux/pinctrl/
8518
8519 PIN CONTROLLER - ATMEL AT91
8520 M:      Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
8521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8522 S:      Maintained
8523 F:      drivers/pinctrl/pinctrl-at91.*
8524
8525 PIN CONTROLLER - ATMEL AT91 PIO4
8526 M:      Ludovic Desroches <ludovic.desroches@atmel.com>
8527 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8528 L:      linux-gpio@vger.kernel.org
8529 S:      Supported
8530 F:      drivers/pinctrl/pinctrl-at91-pio4.*
8531
8532 PIN CONTROLLER - INTEL
8533 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8534 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
8535 S:      Maintained
8536 F:      drivers/pinctrl/intel/
8537
8538 PIN CONTROLLER - RENESAS
8539 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8540 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8541 L:      linux-renesas-soc@vger.kernel.org
8542 S:      Maintained
8543 F:      drivers/pinctrl/sh-pfc/
8544
8545 PIN CONTROLLER - SAMSUNG
8546 M:      Tomasz Figa <tomasz.figa@gmail.com>
8547 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8548 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
8549 S:      Maintained
8550 F:      drivers/pinctrl/samsung/
8551
8552 PIN CONTROLLER - SINGLE
8553 M:      Tony Lindgren <tony@atomide.com>
8554 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
8555 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8556 L:      linux-omap@vger.kernel.org
8557 S:      Maintained
8558 F:      drivers/pinctrl/pinctrl-single.c
8559
8560 PIN CONTROLLER - ST SPEAR
8561 M:      Viresh Kumar <vireshk@kernel.org>
8562 L:      spear-devel@list.st.com
8563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8564 W:      http://www.st.com/spear
8565 S:      Maintained
8566 F:      drivers/pinctrl/spear/
8567
8568 PKTCDVD DRIVER
8569 M:      Jiri Kosina <jikos@kernel.org>
8570 S:      Maintained
8571 F:      drivers/block/pktcdvd.c
8572 F:      include/linux/pktcdvd.h
8573 F:      include/uapi/linux/pktcdvd.h
8574
8575 PKUNITY SOC DRIVERS
8576 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
8577 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
8578 S:      Maintained
8579 T:      git git://github.com/gxt/linux.git
8580 F:      drivers/input/serio/i8042-unicore32io.h
8581 F:      drivers/i2c/busses/i2c-puv3.c
8582 F:      drivers/video/fbdev/fb-puv3.c
8583 F:      drivers/rtc/rtc-puv3.c
8584
8585 PMBUS HARDWARE MONITORING DRIVERS
8586 M:      Guenter Roeck <linux@roeck-us.net>
8587 L:      lm-sensors@lm-sensors.org
8588 W:      http://www.lm-sensors.org/
8589 W:      http://www.roeck-us.net/linux/drivers/
8590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8591 S:      Maintained
8592 F:      Documentation/hwmon/pmbus
8593 F:      drivers/hwmon/pmbus/
8594 F:      include/linux/i2c/pmbus.h
8595
8596 PMC SIERRA MaxRAID DRIVER
8597 L:      linux-scsi@vger.kernel.org
8598 W:      http://www.pmc-sierra.com/
8599 S:      Orphan
8600 F:      drivers/scsi/pmcraid.*
8601
8602 PMC SIERRA PM8001 DRIVER
8603 M:      Jack Wang <jinpu.wang@profitbricks.com>
8604 M:      lindar_liu@usish.com
8605 L:      pmchba@pmcs.com
8606 L:      linux-scsi@vger.kernel.org
8607 S:      Supported
8608 F:      drivers/scsi/pm8001/
8609
8610 POSIX CLOCKS and TIMERS
8611 M:      Thomas Gleixner <tglx@linutronix.de>
8612 L:      linux-kernel@vger.kernel.org
8613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8614 S:      Maintained
8615 F:      fs/timerfd.c
8616 F:      include/linux/timer*
8617 F:      kernel/time/*timer*
8618
8619 POWER MANAGEMENT CORE
8620 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
8621 L:      linux-pm@vger.kernel.org
8622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
8623 S:      Supported
8624 F:      drivers/base/power/
8625 F:      include/linux/pm.h
8626 F:      include/linux/pm_*
8627 F:      include/linux/powercap.h
8628 F:      drivers/powercap/
8629
8630 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
8631 M:      Sebastian Reichel <sre@kernel.org>
8632 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
8633 M:      David Woodhouse <dwmw2@infradead.org>
8634 L:      linux-pm@vger.kernel.org
8635 T:      git git://git.infradead.org/battery-2.6.git
8636 S:      Maintained
8637 F:      include/linux/power_supply.h
8638 F:      drivers/power/
8639 X:      drivers/power/avs/
8640
8641 POWER STATE COORDINATION INTERFACE (PSCI)
8642 M:      Mark Rutland <mark.rutland@arm.com>
8643 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
8644 L:      linux-arm-kernel@lists.infradead.org
8645 S:      Maintained
8646 F:      drivers/firmware/psci.c
8647 F:      include/linux/psci.h
8648 F:      include/uapi/linux/psci.h
8649
8650 PNP SUPPORT
8651 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
8652 S:      Maintained
8653 F:      drivers/pnp/
8654
8655 PPP PROTOCOL DRIVERS AND COMPRESSORS
8656 M:      Paul Mackerras <paulus@samba.org>
8657 L:      linux-ppp@vger.kernel.org
8658 S:      Maintained
8659 F:      drivers/net/ppp/ppp_*
8660
8661 PPP OVER ATM (RFC 2364)
8662 M:      Mitchell Blank Jr <mitch@sfgoth.com>
8663 S:      Maintained
8664 F:      net/atm/pppoatm.c
8665 F:      include/uapi/linux/atmppp.h
8666
8667 PPP OVER ETHERNET
8668 M:      Michal Ostrowski <mostrows@earthlink.net>
8669 S:      Maintained
8670 F:      drivers/net/ppp/pppoe.c
8671 F:      drivers/net/ppp/pppox.c
8672
8673 PPP OVER L2TP
8674 M:      James Chapman <jchapman@katalix.com>
8675 S:      Maintained
8676 F:      net/l2tp/l2tp_ppp.c
8677 F:      include/linux/if_pppol2tp.h
8678 F:      include/uapi/linux/if_pppol2tp.h
8679
8680 PPS SUPPORT
8681 M:      Rodolfo Giometti <giometti@enneenne.com>
8682 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
8683 L:      linuxpps@ml.enneenne.com (subscribers-only)
8684 S:      Maintained
8685 F:      Documentation/pps/
8686 F:      drivers/pps/
8687 F:      include/linux/pps*.h
8688
8689 PPTP DRIVER
8690 M:      Dmitry Kozlov <xeb@mail.ru>
8691 L:      netdev@vger.kernel.org
8692 S:      Maintained
8693 F:      drivers/net/ppp/pptp.c
8694 W:      http://sourceforge.net/projects/accel-pptp
8695
8696 PREEMPTIBLE KERNEL
8697 M:      Robert Love <rml@tech9.net>
8698 L:      kpreempt-tech@lists.sourceforge.net
8699 W:      ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
8700 S:      Supported
8701 F:      Documentation/preempt-locking.txt
8702 F:      include/linux/preempt.h
8703
8704 PRISM54 WIRELESS DRIVER
8705 M:      "Luis R. Rodriguez" <mcgrof@gmail.com>
8706 L:      linux-wireless@vger.kernel.org
8707 W:      http://wireless.kernel.org/en/users/Drivers/p54
8708 S:      Obsolete
8709 F:      drivers/net/wireless/intersil/prism54/
8710
8711 PS3 NETWORK SUPPORT
8712 M:      Geoff Levand <geoff@infradead.org>
8713 L:      netdev@vger.kernel.org
8714 L:      linuxppc-dev@lists.ozlabs.org
8715 S:      Maintained
8716 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
8717
8718 PS3 PLATFORM SUPPORT
8719 M:      Geoff Levand <geoff@infradead.org>
8720 L:      linuxppc-dev@lists.ozlabs.org
8721 S:      Maintained
8722 F:      arch/powerpc/boot/ps3*
8723 F:      arch/powerpc/include/asm/lv1call.h
8724 F:      arch/powerpc/include/asm/ps3*.h
8725 F:      arch/powerpc/platforms/ps3/
8726 F:      drivers/*/ps3*
8727 F:      drivers/ps3/
8728 F:      drivers/rtc/rtc-ps3.c
8729 F:      drivers/usb/host/*ps3.c
8730 F:      sound/ppc/snd_ps3*
8731
8732 PS3VRAM DRIVER
8733 M:      Jim Paris <jim@jtan.com>
8734 M:      Geoff Levand <geoff@infradead.org>
8735 L:      linuxppc-dev@lists.ozlabs.org
8736 S:      Maintained
8737 F:      drivers/block/ps3vram.c
8738
8739 PSTORE FILESYSTEM
8740 M:      Anton Vorontsov <anton@enomsg.org>
8741 M:      Colin Cross <ccross@android.com>
8742 M:      Kees Cook <keescook@chromium.org>
8743 M:      Tony Luck <tony.luck@intel.com>
8744 S:      Maintained
8745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
8746 F:      fs/pstore/
8747 F:      include/linux/pstore*
8748 F:      drivers/firmware/efi/efi-pstore.c
8749 F:      drivers/acpi/apei/erst.c
8750
8751 PTP HARDWARE CLOCK SUPPORT
8752 M:      Richard Cochran <richardcochran@gmail.com>
8753 L:      netdev@vger.kernel.org
8754 S:      Maintained
8755 W:      http://linuxptp.sourceforge.net/
8756 F:      Documentation/ABI/testing/sysfs-ptp
8757 F:      Documentation/ptp/*
8758 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
8759 F:      drivers/net/phy/dp83640*
8760 F:      drivers/ptp/*
8761 F:      include/linux/ptp_cl*
8762
8763 PTRACE SUPPORT
8764 M:      Roland McGrath <roland@hack.frob.com>
8765 M:      Oleg Nesterov <oleg@redhat.com>
8766 S:      Maintained
8767 F:      include/asm-generic/syscall.h
8768 F:      include/linux/ptrace.h
8769 F:      include/linux/regset.h
8770 F:      include/linux/tracehook.h
8771 F:      include/uapi/linux/ptrace.h
8772 F:      kernel/ptrace.c
8773
8774 PVRUSB2 VIDEO4LINUX DRIVER
8775 M:      Mike Isely <isely@pobox.com>
8776 L:      pvrusb2@isely.net       (subscribers-only)
8777 L:      linux-media@vger.kernel.org
8778 W:      http://www.isely.net/pvrusb2/
8779 T:      git git://linuxtv.org/media_tree.git
8780 S:      Maintained
8781 F:      Documentation/video4linux/README.pvrusb2
8782 F:      drivers/media/usb/pvrusb2/
8783
8784 PWC WEBCAM DRIVER
8785 M:      Hans de Goede <hdegoede@redhat.com>
8786 L:      linux-media@vger.kernel.org
8787 T:      git git://linuxtv.org/media_tree.git
8788 S:      Maintained
8789 F:      drivers/media/usb/pwc/*
8790
8791 PWM FAN DRIVER
8792 M:      Kamil Debski <k.debski@samsung.com>
8793 L:      lm-sensors@lm-sensors.org
8794 S:      Supported
8795 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
8796 F:      Documentation/hwmon/pwm-fan
8797 F:      drivers/hwmon/pwm-fan.c
8798
8799 PWM SUBSYSTEM
8800 M:      Thierry Reding <thierry.reding@gmail.com>
8801 L:      linux-pwm@vger.kernel.org
8802 S:      Maintained
8803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
8804 F:      Documentation/pwm.txt
8805 F:      Documentation/devicetree/bindings/pwm/
8806 F:      include/linux/pwm.h
8807 F:      drivers/pwm/
8808 F:      drivers/video/backlight/pwm_bl.c
8809 F:      include/linux/pwm_backlight.h
8810
8811 PXA2xx/PXA3xx SUPPORT
8812 M:      Daniel Mack <daniel@zonque.org>
8813 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8814 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8816 T:      git git://github.com/hzhuang1/linux.git
8817 T:      git git://github.com/rjarzmik/linux.git
8818 S:      Maintained
8819 F:      arch/arm/boot/dts/pxa*
8820 F:      arch/arm/mach-pxa/
8821 F:      drivers/dma/pxa*
8822 F:      drivers/pcmcia/pxa2xx*
8823 F:      drivers/pinctrl/pxa/
8824 F:      drivers/spi/spi-pxa2xx*
8825 F:      drivers/usb/gadget/udc/pxa2*
8826 F:      include/sound/pxa2xx-lib.h
8827 F:      sound/arm/pxa*
8828 F:      sound/soc/pxa/
8829
8830 PXA GPIO DRIVER
8831 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8832 L:      linux-gpio@vger.kernel.org
8833 S:      Maintained
8834 F:      drivers/gpio/gpio-pxa.c
8835
8836 PXA3xx NAND FLASH DRIVER
8837 M:      Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
8838 L:      linux-mtd@lists.infradead.org
8839 S:      Maintained
8840 F:      drivers/mtd/nand/pxa3xx_nand.c
8841
8842 MMP SUPPORT
8843 M:      Eric Miao <eric.y.miao@gmail.com>
8844 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
8845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8846 T:      git git://github.com/hzhuang1/linux.git
8847 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
8848 S:      Maintained
8849 F:      arch/arm/boot/dts/mmp*
8850 F:      arch/arm/mach-mmp/
8851
8852 PXA MMCI DRIVER
8853 S:      Orphan
8854
8855 PXA RTC DRIVER
8856 M:      Robert Jarzmik <robert.jarzmik@free.fr>
8857 L:      rtc-linux@googlegroups.com
8858 S:      Maintained
8859
8860 QAT DRIVER
8861 M:      Tadeusz Struk <tadeusz.struk@intel.com>
8862 L:      qat-linux@intel.com
8863 S:      Supported
8864 F:      drivers/crypto/qat/
8865
8866 QIB DRIVER
8867 M:      Mike Marciniszyn <infinipath@intel.com>
8868 L:      linux-rdma@vger.kernel.org
8869 S:      Supported
8870 F:      drivers/infiniband/hw/qib/
8871
8872 QLOGIC QLA1280 SCSI DRIVER
8873 M:      Michael Reed <mdr@sgi.com>
8874 L:      linux-scsi@vger.kernel.org
8875 S:      Maintained
8876 F:      drivers/scsi/qla1280.[ch]
8877
8878 QLOGIC QLA2XXX FC-SCSI DRIVER
8879 M:      qla2xxx-upstream@qlogic.com
8880 L:      linux-scsi@vger.kernel.org
8881 S:      Supported
8882 F:      Documentation/scsi/LICENSE.qla2xxx
8883 F:      drivers/scsi/qla2xxx/
8884
8885 QLOGIC QLA4XXX iSCSI DRIVER
8886 M:      QLogic-Storage-Upstream@qlogic.com
8887 L:      linux-scsi@vger.kernel.org
8888 S:      Supported
8889 F:      Documentation/scsi/LICENSE.qla4xxx
8890 F:      drivers/scsi/qla4xxx/
8891
8892 QLOGIC QLA3XXX NETWORK DRIVER
8893 M:      Jitendra Kalsaria <jitendra.kalsaria@qlogic.com>
8894 M:      Ron Mercer <ron.mercer@qlogic.com>
8895 M:      linux-driver@qlogic.com
8896 L:      netdev@vger.kernel.org
8897 S:      Supported
8898 F:      Documentation/networking/LICENSE.qla3xxx
8899 F:      drivers/net/ethernet/qlogic/qla3xxx.*
8900
8901 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
8902 M:      Dept-GELinuxNICDev@qlogic.com
8903 L:      netdev@vger.kernel.org
8904 S:      Supported
8905 F:      drivers/net/ethernet/qlogic/qlcnic/
8906
8907 QLOGIC QLGE 10Gb ETHERNET DRIVER
8908 M:      Harish Patil <harish.patil@qlogic.com>
8909 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
8910 M:      Dept-GELinuxNICDev@qlogic.com
8911 M:      linux-driver@qlogic.com
8912 L:      netdev@vger.kernel.org
8913 S:      Supported
8914 F:      drivers/net/ethernet/qlogic/qlge/
8915
8916 QLOGIC QL4xxx ETHERNET DRIVER
8917 M:      Yuval Mintz <Yuval.Mintz@qlogic.com>
8918 M:      Ariel Elior <Ariel.Elior@qlogic.com>
8919 M:      everest-linux-l2@qlogic.com
8920 L:      netdev@vger.kernel.org
8921 S:      Supported
8922 F:      drivers/net/ethernet/qlogic/qed/
8923 F:      include/linux/qed/
8924 F:      drivers/net/ethernet/qlogic/qede/
8925
8926 QNX4 FILESYSTEM
8927 M:      Anders Larsen <al@alarsen.net>
8928 W:      http://www.alarsen.net/linux/qnx4fs/
8929 S:      Maintained
8930 F:      fs/qnx4/
8931 F:      include/uapi/linux/qnx4_fs.h
8932 F:      include/uapi/linux/qnxtypes.h
8933
8934 QT1010 MEDIA DRIVER
8935 M:      Antti Palosaari <crope@iki.fi>
8936 L:      linux-media@vger.kernel.org
8937 W:      https://linuxtv.org
8938 W:      http://palosaari.fi/linux/
8939 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8940 T:      git git://linuxtv.org/anttip/media_tree.git
8941 S:      Maintained
8942 F:      drivers/media/tuners/qt1010*
8943
8944 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
8945 M:      QCA ath9k Development <ath9k-devel@qca.qualcomm.com>
8946 L:      linux-wireless@vger.kernel.org
8947 L:      ath9k-devel@lists.ath9k.org
8948 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
8949 S:      Supported
8950 F:      drivers/net/wireless/ath/ath9k/
8951
8952 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
8953 M:      Kalle Valo <kvalo@qca.qualcomm.com>
8954 L:      ath10k@lists.infradead.org
8955 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
8956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
8957 S:      Supported
8958 F:      drivers/net/wireless/ath/ath10k/
8959
8960 QUALCOMM HEXAGON ARCHITECTURE
8961 M:      Richard Kuo <rkuo@codeaurora.org>
8962 L:      linux-hexagon@vger.kernel.org
8963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
8964 S:      Supported
8965 F:      arch/hexagon/
8966
8967 QUALCOMM WCN36XX WIRELESS DRIVER
8968 M:      Eugene Krasnikov <k.eugene.e@gmail.com>
8969 L:      wcn36xx@lists.infradead.org
8970 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
8971 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
8972 S:      Supported
8973 F:      drivers/net/wireless/ath/wcn36xx/
8974
8975 RADOS BLOCK DEVICE (RBD)
8976 M:      Ilya Dryomov <idryomov@gmail.com>
8977 M:      Sage Weil <sage@redhat.com>
8978 M:      Alex Elder <elder@kernel.org>
8979 L:      ceph-devel@vger.kernel.org
8980 W:      http://ceph.com/
8981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
8982 T:      git git://github.com/ceph/ceph-client.git
8983 S:      Supported
8984 F:      Documentation/ABI/testing/sysfs-bus-rbd
8985 F:      drivers/block/rbd.c
8986 F:      drivers/block/rbd_types.h
8987
8988 RADEON FRAMEBUFFER DISPLAY DRIVER
8989 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
8990 L:      linux-fbdev@vger.kernel.org
8991 S:      Maintained
8992 F:      drivers/video/fbdev/aty/radeon*
8993 F:      include/uapi/linux/radeonfb.h
8994
8995 RADIOSHARK RADIO DRIVER
8996 M:      Hans de Goede <hdegoede@redhat.com>
8997 L:      linux-media@vger.kernel.org
8998 T:      git git://linuxtv.org/media_tree.git
8999 S:      Maintained
9000 F:      drivers/media/radio/radio-shark.c
9001
9002 RADIOSHARK2 RADIO DRIVER
9003 M:      Hans de Goede <hdegoede@redhat.com>
9004 L:      linux-media@vger.kernel.org
9005 T:      git git://linuxtv.org/media_tree.git
9006 S:      Maintained
9007 F:      drivers/media/radio/radio-shark2.c
9008 F:      drivers/media/radio/radio-tea5777.c
9009
9010 RAGE128 FRAMEBUFFER DISPLAY DRIVER
9011 M:      Paul Mackerras <paulus@samba.org>
9012 L:      linux-fbdev@vger.kernel.org
9013 S:      Maintained
9014 F:      drivers/video/fbdev/aty/aty128fb.c
9015
9016 RALINK MIPS ARCHITECTURE
9017 M:      John Crispin <blogic@openwrt.org>
9018 L:      linux-mips@linux-mips.org
9019 S:      Maintained
9020 F:      arch/mips/ralink
9021
9022 RALINK RT2X00 WIRELESS LAN DRIVER
9023 P:      rt2x00 project
9024 M:      Stanislaw Gruszka <sgruszka@redhat.com>
9025 M:      Helmut Schaa <helmut.schaa@googlemail.com>
9026 L:      linux-wireless@vger.kernel.org
9027 S:      Maintained
9028 F:      drivers/net/wireless/ralink/rt2x00/
9029
9030 RAMDISK RAM BLOCK DEVICE DRIVER
9031 M:      Jens Axboe <axboe@kernel.dk>
9032 S:      Maintained
9033 F:      Documentation/blockdev/ramdisk.txt
9034 F:      drivers/block/brd.c
9035
9036 RANDOM NUMBER DRIVER
9037 M:      "Theodore Ts'o" <tytso@mit.edu>
9038 S:      Maintained
9039 F:      drivers/char/random.c
9040
9041 RAPIDIO SUBSYSTEM
9042 M:      Matt Porter <mporter@kernel.crashing.org>
9043 M:      Alexandre Bounine <alexandre.bounine@idt.com>
9044 S:      Maintained
9045 F:      drivers/rapidio/
9046
9047 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
9048 L:      linux-wireless@vger.kernel.org
9049 S:      Orphan
9050 F:      drivers/net/wireless/ray*
9051
9052 RCUTORTURE MODULE
9053 M:      Josh Triplett <josh@joshtriplett.org>
9054 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9055 L:      linux-kernel@vger.kernel.org
9056 S:      Supported
9057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9058 F:      Documentation/RCU/torture.txt
9059 F:      kernel/rcu/rcutorture.c
9060
9061 RCUTORTURE TEST FRAMEWORK
9062 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9063 M:      Josh Triplett <josh@joshtriplett.org>
9064 R:      Steven Rostedt <rostedt@goodmis.org>
9065 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9066 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9067 L:      linux-kernel@vger.kernel.org
9068 S:      Supported
9069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9070 F:      tools/testing/selftests/rcutorture
9071
9072 RDC R-321X SoC
9073 M:      Florian Fainelli <florian@openwrt.org>
9074 S:      Maintained
9075
9076 RDC R6040 FAST ETHERNET DRIVER
9077 M:      Florian Fainelli <florian@openwrt.org>
9078 L:      netdev@vger.kernel.org
9079 S:      Maintained
9080 F:      drivers/net/ethernet/rdc/r6040.c
9081
9082 RDS - RELIABLE DATAGRAM SOCKETS
9083 M:      Chien Yen <chien.yen@oracle.com>
9084 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
9085 S:      Supported
9086 F:      net/rds/
9087
9088 READ-COPY UPDATE (RCU)
9089 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
9090 M:      Josh Triplett <josh@joshtriplett.org>
9091 R:      Steven Rostedt <rostedt@goodmis.org>
9092 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
9093 R:      Lai Jiangshan <jiangshanlai@gmail.com>
9094 L:      linux-kernel@vger.kernel.org
9095 W:      http://www.rdrop.com/users/paulmck/RCU/
9096 S:      Supported
9097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
9098 F:      Documentation/RCU/
9099 X:      Documentation/RCU/torture.txt
9100 F:      include/linux/rcu*
9101 X:      include/linux/srcu.h
9102 F:      kernel/rcu/
9103 X:      kernel/torture.c
9104
9105 REAL TIME CLOCK (RTC) SUBSYSTEM
9106 M:      Alessandro Zummo <a.zummo@towertech.it>
9107 M:      Alexandre Belloni <alexandre.belloni@free-electrons.com>
9108 L:      rtc-linux@googlegroups.com
9109 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
9110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
9111 S:      Maintained
9112 F:      Documentation/rtc.txt
9113 F:      drivers/rtc/
9114 F:      include/linux/rtc.h
9115 F:      include/uapi/linux/rtc.h
9116
9117 REALTEK AUDIO CODECS
9118 M:      Bard Liao <bardliao@realtek.com>
9119 M:      Oder Chiou <oder_chiou@realtek.com>
9120 S:      Maintained
9121 F:      sound/soc/codecs/rt*
9122 F:      include/sound/rt*.h
9123
9124 REISERFS FILE SYSTEM
9125 L:      reiserfs-devel@vger.kernel.org
9126 S:      Supported
9127 F:      fs/reiserfs/
9128
9129 REGISTER MAP ABSTRACTION
9130 M:      Mark Brown <broonie@kernel.org>
9131 L:      linux-kernel@vger.kernel.org
9132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
9133 S:      Supported
9134 F:      drivers/base/regmap/
9135 F:      include/linux/regmap.h
9136
9137 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
9138 M:      Ohad Ben-Cohen <ohad@wizery.com>
9139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
9140 S:      Maintained
9141 F:      drivers/remoteproc/
9142 F:      Documentation/remoteproc.txt
9143 F:      include/linux/remoteproc.h
9144
9145 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
9146 M:      Ohad Ben-Cohen <ohad@wizery.com>
9147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
9148 S:      Maintained
9149 F:      drivers/rpmsg/
9150 F:      Documentation/rpmsg.txt
9151 F:      include/linux/rpmsg.h
9152
9153 RENESAS ETHERNET DRIVERS
9154 R:      Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
9155 L:      netdev@vger.kernel.org
9156 L:      linux-renesas-soc@vger.kernel.org
9157 F:      drivers/net/ethernet/renesas/
9158 F:      include/linux/sh_eth.h
9159
9160 RENESAS USB2 PHY DRIVER
9161 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
9162 L:      linux-renesas-soc@vger.kernel.org
9163 S:      Maintained
9164 F:      drivers/phy/phy-rcar-gen3-usb2.c
9165
9166 RESET CONTROLLER FRAMEWORK
9167 M:      Philipp Zabel <p.zabel@pengutronix.de>
9168 T:      git git://git.pengutronix.de/git/pza/linux
9169 S:      Maintained
9170 F:      drivers/reset/
9171 F:      Documentation/devicetree/bindings/reset/
9172 F:      include/dt-bindings/reset/
9173 F:      include/linux/reset.h
9174 F:      include/linux/reset-controller.h
9175
9176 RFKILL
9177 M:      Johannes Berg <johannes@sipsolutions.net>
9178 L:      linux-wireless@vger.kernel.org
9179 W:      http://wireless.kernel.org/
9180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
9181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
9182 S:      Maintained
9183 F:      Documentation/rfkill.txt
9184 F:      net/rfkill/
9185
9186 RHASHTABLE
9187 M:      Thomas Graf <tgraf@suug.ch>
9188 L:      netdev@vger.kernel.org
9189 S:      Maintained
9190 F:      lib/rhashtable.c
9191 F:      include/linux/rhashtable.h
9192
9193 RICOH SMARTMEDIA/XD DRIVER
9194 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9195 S:      Maintained
9196 F:      drivers/mtd/nand/r852.c
9197 F:      drivers/mtd/nand/r852.h
9198
9199 RICOH R5C592 MEMORYSTICK DRIVER
9200 M:      Maxim Levitsky <maximlevitsky@gmail.com>
9201 S:      Maintained
9202 F:      drivers/memstick/host/r592.*
9203
9204 ROCCAT DRIVERS
9205 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
9206 W:      http://sourceforge.net/projects/roccat/
9207 S:      Maintained
9208 F:      drivers/hid/hid-roccat*
9209 F:      include/linux/hid-roccat*
9210 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
9211
9212 ROCKER DRIVER
9213 M:      Jiri Pirko <jiri@resnulli.us>
9214 M:      Scott Feldman <sfeldma@gmail.com>
9215 L:      netdev@vger.kernel.org
9216 S:      Supported
9217 F:      drivers/net/ethernet/rocker/
9218
9219 ROCKETPORT DRIVER
9220 P:      Comtrol Corp.
9221 W:      http://www.comtrol.com
9222 S:      Maintained
9223 F:      Documentation/serial/rocket.txt
9224 F:      drivers/tty/rocket*
9225
9226 ROCKETPORT EXPRESS/INFINITY DRIVER
9227 M:      Kevin Cernekee <cernekee@gmail.com>
9228 L:      linux-serial@vger.kernel.org
9229 S:      Odd Fixes
9230 F:      drivers/tty/serial/rp2.*
9231
9232 ROSE NETWORK LAYER
9233 M:      Ralf Baechle <ralf@linux-mips.org>
9234 L:      linux-hams@vger.kernel.org
9235 W:      http://www.linux-ax25.org/
9236 S:      Maintained
9237 F:      include/net/rose.h
9238 F:      include/uapi/linux/rose.h
9239 F:      net/rose/
9240
9241 RTL2830 MEDIA DRIVER
9242 M:      Antti Palosaari <crope@iki.fi>
9243 L:      linux-media@vger.kernel.org
9244 W:      https://linuxtv.org
9245 W:      http://palosaari.fi/linux/
9246 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9247 T:      git git://linuxtv.org/anttip/media_tree.git
9248 S:      Maintained
9249 F:      drivers/media/dvb-frontends/rtl2830*
9250
9251 RTL2832 MEDIA DRIVER
9252 M:      Antti Palosaari <crope@iki.fi>
9253 L:      linux-media@vger.kernel.org
9254 W:      https://linuxtv.org
9255 W:      http://palosaari.fi/linux/
9256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9257 T:      git git://linuxtv.org/anttip/media_tree.git
9258 S:      Maintained
9259 F:      drivers/media/dvb-frontends/rtl2832*
9260
9261 RTL2832_SDR MEDIA DRIVER
9262 M:      Antti Palosaari <crope@iki.fi>
9263 L:      linux-media@vger.kernel.org
9264 W:      https://linuxtv.org
9265 W:      http://palosaari.fi/linux/
9266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9267 T:      git git://linuxtv.org/anttip/media_tree.git
9268 S:      Maintained
9269 F:      drivers/media/dvb-frontends/rtl2832_sdr*
9270
9271 RTL8180 WIRELESS DRIVER
9272 L:      linux-wireless@vger.kernel.org
9273 W:      http://wireless.kernel.org/
9274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9275 S:      Orphan
9276 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
9277
9278 RTL8187 WIRELESS DRIVER
9279 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
9280 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
9281 M:      Larry Finger <Larry.Finger@lwfinger.net>
9282 L:      linux-wireless@vger.kernel.org
9283 W:      http://wireless.kernel.org/
9284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9285 S:      Maintained
9286 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
9287
9288 RTL8192CE WIRELESS DRIVER
9289 M:      Larry Finger <Larry.Finger@lwfinger.net>
9290 M:      Chaoming Li <chaoming_li@realsil.com.cn>
9291 L:      linux-wireless@vger.kernel.org
9292 W:      http://wireless.kernel.org/
9293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
9294 S:      Maintained
9295 F:      drivers/net/wireless/realtek/rtlwifi/
9296 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
9297
9298 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
9299 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
9300 L:      linux-wireless@vger.kernel.org
9301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8723au-mac80211
9302 S:      Maintained
9303 F:      drivers/net/wireless/realtek/rtl8xxxu/
9304
9305 S3 SAVAGE FRAMEBUFFER DRIVER
9306 M:      Antonino Daplas <adaplas@gmail.com>
9307 L:      linux-fbdev@vger.kernel.org
9308 S:      Maintained
9309 F:      drivers/video/fbdev/savage/
9310
9311 S390
9312 M:      Martin Schwidefsky <schwidefsky@de.ibm.com>
9313 M:      Heiko Carstens <heiko.carstens@de.ibm.com>
9314 L:      linux-s390@vger.kernel.org
9315 W:      http://www.ibm.com/developerworks/linux/linux390/
9316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
9317 S:      Supported
9318 F:      arch/s390/
9319 F:      drivers/s390/
9320 F:      Documentation/s390/
9321 F:      Documentation/DocBook/s390*
9322
9323 S390 COMMON I/O LAYER
9324 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9325 M:      Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
9326 L:      linux-s390@vger.kernel.org
9327 W:      http://www.ibm.com/developerworks/linux/linux390/
9328 S:      Supported
9329 F:      drivers/s390/cio/
9330
9331 S390 DASD DRIVER
9332 M:      Stefan Weinhuber <wein@de.ibm.com>
9333 M:      Stefan Haberland <stefan.haberland@de.ibm.com>
9334 L:      linux-s390@vger.kernel.org
9335 W:      http://www.ibm.com/developerworks/linux/linux390/
9336 S:      Supported
9337 F:      drivers/s390/block/dasd*
9338 F:      block/partitions/ibm.c
9339
9340 S390 NETWORK DRIVERS
9341 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9342 L:      linux-s390@vger.kernel.org
9343 W:      http://www.ibm.com/developerworks/linux/linux390/
9344 S:      Supported
9345 F:      drivers/s390/net/
9346
9347 S390 PCI SUBSYSTEM
9348 M:      Sebastian Ott <sebott@linux.vnet.ibm.com>
9349 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9350 L:      linux-s390@vger.kernel.org
9351 W:      http://www.ibm.com/developerworks/linux/linux390/
9352 S:      Supported
9353 F:      arch/s390/pci/
9354 F:      drivers/pci/hotplug/s390_pci_hpc.c
9355
9356 S390 ZCRYPT DRIVER
9357 M:      Ingo Tuchscherer <ingo.tuchscherer@de.ibm.com>
9358 L:      linux-s390@vger.kernel.org
9359 W:      http://www.ibm.com/developerworks/linux/linux390/
9360 S:      Supported
9361 F:      drivers/s390/crypto/
9362
9363 S390 ZFCP DRIVER
9364 M:      Steffen Maier <maier@linux.vnet.ibm.com>
9365 L:      linux-s390@vger.kernel.org
9366 W:      http://www.ibm.com/developerworks/linux/linux390/
9367 S:      Supported
9368 F:      drivers/s390/scsi/zfcp_*
9369
9370 S390 IUCV NETWORK LAYER
9371 M:      Ursula Braun <ubraun@linux.vnet.ibm.com>
9372 L:      linux-s390@vger.kernel.org
9373 W:      http://www.ibm.com/developerworks/linux/linux390/
9374 S:      Supported
9375 F:      drivers/s390/net/*iucv*
9376 F:      include/net/iucv/
9377 F:      net/iucv/
9378
9379 S390 IOMMU (PCI)
9380 M:      Gerald Schaefer <gerald.schaefer@de.ibm.com>
9381 L:      linux-s390@vger.kernel.org
9382 W:      http://www.ibm.com/developerworks/linux/linux390/
9383 S:      Supported
9384 F:      drivers/iommu/s390-iommu.c
9385
9386 S3C24XX SD/MMC Driver
9387 M:      Ben Dooks <ben-linux@fluff.org>
9388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
9389 S:      Supported
9390 F:      drivers/mmc/host/s3cmci.*
9391
9392 SAA6588 RDS RECEIVER DRIVER
9393 M:      Hans Verkuil <hverkuil@xs4all.nl>
9394 L:      linux-media@vger.kernel.org
9395 T:      git git://linuxtv.org/media_tree.git
9396 W:      https://linuxtv.org
9397 S:      Odd Fixes
9398 F:      drivers/media/i2c/saa6588*
9399
9400 SAA7134 VIDEO4LINUX DRIVER
9401 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9402 L:      linux-media@vger.kernel.org
9403 W:      https://linuxtv.org
9404 T:      git git://linuxtv.org/media_tree.git
9405 S:      Odd fixes
9406 F:      Documentation/video4linux/*.saa7134
9407 F:      drivers/media/pci/saa7134/
9408
9409 SAA7146 VIDEO4LINUX-2 DRIVER
9410 M:      Hans Verkuil <hverkuil@xs4all.nl>
9411 L:      linux-media@vger.kernel.org
9412 T:      git git://linuxtv.org/media_tree.git
9413 S:      Maintained
9414 F:      drivers/media/common/saa7146/
9415 F:      drivers/media/pci/saa7146/
9416 F:      include/media/saa7146*
9417
9418 SAMSUNG LAPTOP DRIVER
9419 M:      Corentin Chary <corentin.chary@gmail.com>
9420 L:      platform-driver-x86@vger.kernel.org
9421 S:      Maintained
9422 F:      drivers/platform/x86/samsung-laptop.c
9423
9424 SAMSUNG AUDIO (ASoC) DRIVERS
9425 M:      Sangbeom Kim <sbkim73@samsung.com>
9426 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9427 S:      Supported
9428 F:      sound/soc/samsung/
9429
9430 SAMSUNG FRAMEBUFFER DRIVER
9431 M:      Jingoo Han <jingoohan1@gmail.com>
9432 L:      linux-fbdev@vger.kernel.org
9433 S:      Maintained
9434 F:      drivers/video/fbdev/s3c-fb.c
9435
9436 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
9437 M:      Sangbeom Kim <sbkim73@samsung.com>
9438 M:      Krzysztof Kozlowski <k.kozlowski@samsung.com>
9439 L:      linux-kernel@vger.kernel.org
9440 L:      linux-samsung-soc@vger.kernel.org
9441 S:      Supported
9442 F:      drivers/mfd/sec*.c
9443 F:      drivers/regulator/s2m*.c
9444 F:      drivers/regulator/s5m*.c
9445 F:      drivers/clk/clk-s2mps11.c
9446 F:      drivers/rtc/rtc-s5m.c
9447 F:      include/linux/mfd/samsung/
9448 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
9449 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
9450 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
9451 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
9452
9453 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
9454 M:      Kyungmin Park <kyungmin.park@samsung.com>
9455 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9456 L:      linux-media@vger.kernel.org
9457 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
9458 S:      Supported
9459 F:      drivers/media/platform/exynos4-is/
9460
9461 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
9462 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
9463 L:      linux-media@vger.kernel.org
9464 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9465 S:      Maintained
9466 F:      drivers/media/platform/s3c-camif/
9467 F:      include/media/drv-intf/s3c_camif.h
9468
9469 SAMSUNG S5C73M3 CAMERA DRIVER
9470 M:      Kyungmin Park <kyungmin.park@samsung.com>
9471 M:      Andrzej Hajda <a.hajda@samsung.com>
9472 L:      linux-media@vger.kernel.org
9473 S:      Supported
9474 F:      drivers/media/i2c/s5c73m3/*
9475
9476 SAMSUNG S5K5BAF CAMERA DRIVER
9477 M:      Kyungmin Park <kyungmin.park@samsung.com>
9478 M:      Andrzej Hajda <a.hajda@samsung.com>
9479 L:      linux-media@vger.kernel.org
9480 S:      Supported
9481 F:      drivers/media/i2c/s5k5baf.c
9482
9483 SAMSUNG S3FWRN5 NFC DRIVER
9484 M:      Robert Baldyga <r.baldyga@samsung.com>
9485 L:      linux-nfc@lists.01.org (moderated for non-subscribers)
9486 S:      Supported
9487 F:      drivers/nfc/s3fwrn5
9488
9489 SAMSUNG SOC CLOCK DRIVERS
9490 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
9491 M:      Tomasz Figa <tomasz.figa@gmail.com>
9492 S:      Supported
9493 L:      linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
9494 F:      drivers/clk/samsung/
9495
9496 SAMSUNG SXGBE DRIVERS
9497 M:      Byungho An <bh74.an@samsung.com>
9498 M:      Girish K S <ks.giri@samsung.com>
9499 M:      Vipul Pandya <vipul.pandya@samsung.com>
9500 S:      Supported
9501 L:      netdev@vger.kernel.org
9502 F:      drivers/net/ethernet/samsung/sxgbe/
9503
9504 SAMSUNG THERMAL DRIVER
9505 M:      Lukasz Majewski <l.majewski@samsung.com>
9506 L:      linux-pm@vger.kernel.org
9507 L:      linux-samsung-soc@vger.kernel.org
9508 S:      Supported
9509 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
9510 F:      drivers/thermal/samsung/
9511
9512 SAMSUNG USB2 PHY DRIVER
9513 M:      Kamil Debski <k.debski@samsung.com>
9514 L:      linux-kernel@vger.kernel.org
9515 S:      Supported
9516 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
9517 F:      Documentation/phy/samsung-usb2.txt
9518 F:      drivers/phy/phy-exynos4210-usb2.c
9519 F:      drivers/phy/phy-exynos4x12-usb2.c
9520 F:      drivers/phy/phy-exynos5250-usb2.c
9521 F:      drivers/phy/phy-s5pv210-usb2.c
9522 F:      drivers/phy/phy-samsung-usb2.c
9523 F:      drivers/phy/phy-samsung-usb2.h
9524
9525 SERIAL DRIVERS
9526 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9527 L:      linux-serial@vger.kernel.org
9528 S:      Maintained
9529 F:      drivers/tty/serial/
9530
9531 SYNOPSYS DESIGNWARE DMAC DRIVER
9532 M:      Viresh Kumar <vireshk@kernel.org>
9533 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9534 S:      Maintained
9535 F:      include/linux/dma/dw.h
9536 F:      include/linux/platform_data/dma-dw.h
9537 F:      drivers/dma/dw/
9538
9539 SYNOPSYS DESIGNWARE ETHERNET QOS 4.10a driver
9540 M: Lars Persson <lars.persson@axis.com>
9541 L: netdev@vger.kernel.org
9542 S: Supported
9543 F: Documentation/devicetree/bindings/net/snps,dwc-qos-ethernet.txt
9544 F: drivers/net/ethernet/synopsys/dwc_eth_qos.c
9545
9546 SYNOPSYS DESIGNWARE I2C DRIVER
9547 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
9548 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9549 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9550 L:      linux-i2c@vger.kernel.org
9551 S:      Maintained
9552 F:      drivers/i2c/busses/i2c-designware-*
9553 F:      include/linux/platform_data/i2c-designware.h
9554
9555 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
9556 M:      Jaehoon Chung <jh80.chung@samsung.com>
9557 L:      linux-mmc@vger.kernel.org
9558 S:      Maintained
9559 F:      include/linux/mmc/dw_mmc.h
9560 F:      drivers/mmc/host/dw_mmc*
9561
9562 SYSTEM TRACE MODULE CLASS
9563 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9564 S:      Maintained
9565 F:      Documentation/trace/stm.txt
9566 F:      drivers/hwtracing/stm/
9567 F:      include/linux/stm.h
9568 F:      include/uapi/linux/stm.h
9569
9570 THUNDERBOLT DRIVER
9571 M:      Andreas Noever <andreas.noever@gmail.com>
9572 S:      Maintained
9573 F:      drivers/thunderbolt/
9574
9575 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
9576 M:      John Stultz <john.stultz@linaro.org>
9577 M:      Thomas Gleixner <tglx@linutronix.de>
9578 L:      linux-kernel@vger.kernel.org
9579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9580 S:      Supported
9581 F:      include/linux/clocksource.h
9582 F:      include/linux/time.h
9583 F:      include/linux/timex.h
9584 F:      include/uapi/linux/time.h
9585 F:      include/uapi/linux/timex.h
9586 F:      kernel/time/clocksource.c
9587 F:      kernel/time/time*.c
9588 F:      kernel/time/alarmtimer.c
9589 F:      kernel/time/ntp.c
9590 F:      tools/testing/selftests/timers/
9591
9592 SC1200 WDT DRIVER
9593 M:      Zwane Mwaikambo <zwanem@gmail.com>
9594 S:      Maintained
9595 F:      drivers/watchdog/sc1200wdt.c
9596
9597 SCHEDULER
9598 M:      Ingo Molnar <mingo@redhat.com>
9599 M:      Peter Zijlstra <peterz@infradead.org>
9600 L:      linux-kernel@vger.kernel.org
9601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
9602 S:      Maintained
9603 F:      kernel/sched/
9604 F:      include/linux/sched.h
9605 F:      include/uapi/linux/sched.h
9606 F:      include/linux/wait.h
9607
9608 SCORE ARCHITECTURE
9609 M:      Chen Liqin <liqin.linux@gmail.com>
9610 M:      Lennox Wu <lennox.wu@gmail.com>
9611 W:      http://www.sunplus.com
9612 S:      Supported
9613 F:      arch/score/
9614
9615 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
9616 M:      Sudeep Holla <sudeep.holla@arm.com>
9617 L:      linux-arm-kernel@lists.infradead.org
9618 S:      Maintained
9619 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
9620 F:      drivers/clk/clk-scpi.c
9621 F:      drivers/cpufreq/scpi-cpufreq.c
9622 F:      drivers/firmware/arm_scpi.c
9623 F:      include/linux/scpi_protocol.h
9624
9625 SCSI CDROM DRIVER
9626 M:      Jens Axboe <axboe@kernel.dk>
9627 L:      linux-scsi@vger.kernel.org
9628 W:      http://www.kernel.dk
9629 S:      Maintained
9630 F:      drivers/scsi/sr*
9631
9632 SCSI RDMA PROTOCOL (SRP) INITIATOR
9633 M:      Bart Van Assche <bart.vanassche@sandisk.com>
9634 L:      linux-rdma@vger.kernel.org
9635 S:      Supported
9636 W:      http://www.openfabrics.org
9637 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
9639 F:      drivers/infiniband/ulp/srp/
9640 F:      include/scsi/srp.h
9641
9642 SCSI SG DRIVER
9643 M:      Doug Gilbert <dgilbert@interlog.com>
9644 L:      linux-scsi@vger.kernel.org
9645 W:      http://sg.danny.cz/sg
9646 S:      Maintained
9647 F:      Documentation/scsi/scsi-generic.txt
9648 F:      drivers/scsi/sg.c
9649 F:      include/scsi/sg.h
9650
9651 SCSI SUBSYSTEM
9652 M:      "James E.J. Bottomley" <JBottomley@odin.com>
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
9654 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
9655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
9656 L:      linux-scsi@vger.kernel.org
9657 S:      Maintained
9658 F:      drivers/scsi/
9659 F:      include/scsi/
9660
9661 SCSI TAPE DRIVER
9662 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
9663 L:      linux-scsi@vger.kernel.org
9664 S:      Maintained
9665 F:      Documentation/scsi/st.txt
9666 F:      drivers/scsi/st.*
9667 F:      drivers/scsi/st_*.h
9668
9669 SCTP PROTOCOL
9670 M:      Vlad Yasevich <vyasevich@gmail.com>
9671 M:      Neil Horman <nhorman@tuxdriver.com>
9672 L:      linux-sctp@vger.kernel.org
9673 W:      http://lksctp.sourceforge.net
9674 S:      Maintained
9675 F:      Documentation/networking/sctp.txt
9676 F:      include/linux/sctp.h
9677 F:      include/uapi/linux/sctp.h
9678 F:      include/net/sctp/
9679 F:      net/sctp/
9680
9681 SCx200 CPU SUPPORT
9682 M:      Jim Cromie <jim.cromie@gmail.com>
9683 S:      Odd Fixes
9684 F:      Documentation/i2c/busses/scx200_acb
9685 F:      arch/x86/platform/scx200/
9686 F:      drivers/watchdog/scx200_wdt.c
9687 F:      drivers/i2c/busses/scx200*
9688 F:      drivers/mtd/maps/scx200_docflash.c
9689 F:      include/linux/scx200.h
9690
9691 SCx200 GPIO DRIVER
9692 M:      Jim Cromie <jim.cromie@gmail.com>
9693 S:      Maintained
9694 F:      drivers/char/scx200_gpio.c
9695 F:      include/linux/scx200_gpio.h
9696
9697 SCx200 HRT CLOCKSOURCE DRIVER
9698 M:      Jim Cromie <jim.cromie@gmail.com>
9699 S:      Maintained
9700 F:      drivers/clocksource/scx200_hrt.c
9701
9702 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
9703 M:      Sascha Sommer <saschasommer@freenet.de>
9704 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
9705 S:      Maintained
9706 F:      drivers/mmc/host/sdricoh_cs.c
9707
9708 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
9709 L:      linux-mmc@vger.kernel.org
9710 S:      Orphan
9711 F:      drivers/mmc/host/sdhci.*
9712 F:      drivers/mmc/host/sdhci-pltfm.[ch]
9713
9714 SECURE COMPUTING
9715 M:      Kees Cook <keescook@chromium.org>
9716 R:      Andy Lutomirski <luto@amacapital.net>
9717 R:      Will Drewry <wad@chromium.org>
9718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
9719 S:      Supported
9720 F:      kernel/seccomp.c
9721 F:      include/uapi/linux/seccomp.h
9722 F:      include/linux/seccomp.h
9723 F:      tools/testing/selftests/seccomp/*
9724 K:      \bsecure_computing
9725 K:      \bTIF_SECCOMP\b
9726
9727 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
9728 M:      Ben Dooks <ben-linux@fluff.org>
9729 M:      Jaehoon Chung <jh80.chung@samsung.com>
9730 L:      linux-mmc@vger.kernel.org
9731 S:      Maintained
9732 F:      drivers/mmc/host/sdhci-s3c*
9733
9734 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
9735 M:      Viresh Kumar <vireshk@kernel.org>
9736 L:      spear-devel@list.st.com
9737 L:      linux-mmc@vger.kernel.org
9738 S:      Maintained
9739 F:      drivers/mmc/host/sdhci-spear.c
9740
9741 SECURITY SUBSYSTEM
9742 M:      James Morris <james.l.morris@oracle.com>
9743 M:      "Serge E. Hallyn" <serge@hallyn.com>
9744 L:      linux-security-module@vger.kernel.org (suggested Cc:)
9745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
9746 W:      http://kernsec.org/
9747 S:      Supported
9748 F:      security/
9749
9750 SECURITY CONTACT
9751 M:      Security Officers <security@kernel.org>
9752 S:      Supported
9753
9754 SELINUX SECURITY MODULE
9755 M:      Paul Moore <paul@paul-moore.com>
9756 M:      Stephen Smalley <sds@tycho.nsa.gov>
9757 M:      Eric Paris <eparis@parisplace.org>
9758 L:      selinux@tycho.nsa.gov (moderated for non-subscribers)
9759 W:      http://selinuxproject.org
9760 T:      git git://git.infradead.org/users/pcmoore/selinux
9761 S:      Supported
9762 F:      include/linux/selinux*
9763 F:      security/selinux/
9764 F:      scripts/selinux/
9765
9766 APPARMOR SECURITY MODULE
9767 M:      John Johansen <john.johansen@canonical.com>
9768 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
9769 W:      apparmor.wiki.kernel.org
9770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
9771 S:      Supported
9772 F:      security/apparmor/
9773
9774 YAMA SECURITY MODULE
9775 M:      Kees Cook <keescook@chromium.org>
9776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
9777 S:      Supported
9778 F:      security/yama/
9779
9780 SENSABLE PHANTOM
9781 M:      Jiri Slaby <jirislaby@gmail.com>
9782 S:      Maintained
9783 F:      drivers/misc/phantom.c
9784 F:      include/uapi/linux/phantom.h
9785
9786 SERVER ENGINES 10Gbps iSCSI - BladeEngine 2 DRIVER
9787 M:      Jayamohan Kallickal <jayamohan.kallickal@avagotech.com>
9788 M:      Ketan Mukadam <ketan.mukadam@avagotech.com>
9789 M:      John Soni Jose <sony.john@avagotech.com>
9790 L:      linux-scsi@vger.kernel.org
9791 W:      http://www.avagotech.com
9792 S:      Supported
9793 F:      drivers/scsi/be2iscsi/
9794
9795 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER
9796 M:      Sathya Perla <sathya.perla@avagotech.com>
9797 M:      Ajit Khaparde <ajit.khaparde@avagotech.com>
9798 M:      Padmanabh Ratnakar <padmanabh.ratnakar@avagotech.com>
9799 M:      Sriharsha Basavapatna <sriharsha.basavapatna@avagotech.com>
9800 L:      netdev@vger.kernel.org
9801 W:      http://www.emulex.com
9802 S:      Supported
9803 F:      drivers/net/ethernet/emulex/benet/
9804
9805 EMULEX ONECONNECT ROCE DRIVER
9806 M:      Selvin Xavier <selvin.xavier@avagotech.com>
9807 M:      Devesh Sharma <devesh.sharma@avagotech.com>
9808 M:      Mitesh Ahuja <mitesh.ahuja@avagotech.com>
9809 L:      linux-rdma@vger.kernel.org
9810 W:      http://www.emulex.com
9811 S:      Supported
9812 F:      drivers/infiniband/hw/ocrdma/
9813
9814 SFC NETWORK DRIVER
9815 M:      Solarflare linux maintainers <linux-net-drivers@solarflare.com>
9816 M:      Shradha Shah <sshah@solarflare.com>
9817 L:      netdev@vger.kernel.org
9818 S:      Supported
9819 F:      drivers/net/ethernet/sfc/
9820
9821 SGI GRU DRIVER
9822 M:      Dimitri Sivanich <sivanich@sgi.com>
9823 S:      Maintained
9824 F:      drivers/misc/sgi-gru/
9825
9826 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
9827 M:      Pat Gefre <pfg@sgi.com>
9828 L:      linux-ia64@vger.kernel.org
9829 S:      Supported
9830 F:      Documentation/ia64/serial.txt
9831 F:      drivers/tty/serial/ioc?_serial.c
9832 F:      include/linux/ioc?.h
9833
9834 SGI XP/XPC/XPNET DRIVER
9835 M:      Cliff Whickman <cpw@sgi.com>
9836 M:      Robin Holt <robinmholt@gmail.com>
9837 S:      Maintained
9838 F:      drivers/misc/sgi-xp/
9839
9840 SI2157 MEDIA DRIVER
9841 M:      Antti Palosaari <crope@iki.fi>
9842 L:      linux-media@vger.kernel.org
9843 W:      https://linuxtv.org
9844 W:      http://palosaari.fi/linux/
9845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9846 T:      git git://linuxtv.org/anttip/media_tree.git
9847 S:      Maintained
9848 F:      drivers/media/tuners/si2157*
9849
9850 SI2168 MEDIA DRIVER
9851 M:      Antti Palosaari <crope@iki.fi>
9852 L:      linux-media@vger.kernel.org
9853 W:      https://linuxtv.org
9854 W:      http://palosaari.fi/linux/
9855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9856 T:      git git://linuxtv.org/anttip/media_tree.git
9857 S:      Maintained
9858 F:      drivers/media/dvb-frontends/si2168*
9859
9860 SI470X FM RADIO RECEIVER I2C DRIVER
9861 M:      Hans Verkuil <hverkuil@xs4all.nl>
9862 L:      linux-media@vger.kernel.org
9863 T:      git git://linuxtv.org/media_tree.git
9864 W:      https://linuxtv.org
9865 S:      Odd Fixes
9866 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
9867
9868 SI470X FM RADIO RECEIVER USB DRIVER
9869 M:      Hans Verkuil <hverkuil@xs4all.nl>
9870 L:      linux-media@vger.kernel.org
9871 T:      git git://linuxtv.org/media_tree.git
9872 W:      https://linuxtv.org
9873 S:      Maintained
9874 F:      drivers/media/radio/si470x/radio-si470x-common.c
9875 F:      drivers/media/radio/si470x/radio-si470x.h
9876 F:      drivers/media/radio/si470x/radio-si470x-usb.c
9877
9878 SI4713 FM RADIO TRANSMITTER I2C DRIVER
9879 M:      Eduardo Valentin <edubezval@gmail.com>
9880 L:      linux-media@vger.kernel.org
9881 T:      git git://linuxtv.org/media_tree.git
9882 W:      https://linuxtv.org
9883 S:      Odd Fixes
9884 F:      drivers/media/radio/si4713/si4713.?
9885
9886 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
9887 M:      Eduardo Valentin <edubezval@gmail.com>
9888 L:      linux-media@vger.kernel.org
9889 T:      git git://linuxtv.org/media_tree.git
9890 W:      https://linuxtv.org
9891 S:      Odd Fixes
9892 F:      drivers/media/radio/si4713/radio-platform-si4713.c
9893
9894 SI4713 FM RADIO TRANSMITTER USB DRIVER
9895 M:      Hans Verkuil <hverkuil@xs4all.nl>
9896 L:      linux-media@vger.kernel.org
9897 T:      git git://linuxtv.org/media_tree.git
9898 W:      https://linuxtv.org
9899 S:      Maintained
9900 F:      drivers/media/radio/si4713/radio-usb-si4713.c
9901
9902 SIANO DVB DRIVER
9903 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
9904 L:      linux-media@vger.kernel.org
9905 W:      https://linuxtv.org
9906 T:      git git://linuxtv.org/media_tree.git
9907 S:      Odd fixes
9908 F:      drivers/media/common/siano/
9909 F:      drivers/media/usb/siano/
9910 F:      drivers/media/usb/siano/
9911 F:      drivers/media/mmc/siano/
9912
9913 SIMPLEFB FB DRIVER
9914 M:      Hans de Goede <hdegoede@redhat.com>
9915 L:      linux-fbdev@vger.kernel.org
9916 S:      Maintained
9917 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
9918 F:      drivers/video/fbdev/simplefb.c
9919 F:      include/linux/platform_data/simplefb.h
9920
9921 SH_VEU V4L2 MEM2MEM DRIVER
9922 L:      linux-media@vger.kernel.org
9923 S:      Orphan
9924 F:      drivers/media/platform/sh_veu.c
9925
9926 SH_VOU V4L2 OUTPUT DRIVER
9927 L:      linux-media@vger.kernel.org
9928 S:      Orphan
9929 F:      drivers/media/platform/sh_vou.c
9930 F:      include/media/drv-intf/sh_vou.h
9931
9932 SIMPLE FIRMWARE INTERFACE (SFI)
9933 M:      Len Brown <lenb@kernel.org>
9934 L:      sfi-devel@simplefirmware.org
9935 W:      http://simplefirmware.org/
9936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
9937 S:      Supported
9938 F:      arch/x86/platform/sfi/
9939 F:      drivers/sfi/
9940 F:      include/linux/sfi*.h
9941
9942 SIMTEC EB110ATX (Chalice CATS)
9943 P:      Ben Dooks
9944 P:      Vincent Sanders <vince@simtec.co.uk>
9945 M:      Simtec Linux Team <linux@simtec.co.uk>
9946 W:      http://www.simtec.co.uk/products/EB110ATX/
9947 S:      Supported
9948
9949 SIMTEC EB2410ITX (BAST)
9950 P:      Ben Dooks
9951 P:      Vincent Sanders <vince@simtec.co.uk>
9952 M:      Simtec Linux Team <linux@simtec.co.uk>
9953 W:      http://www.simtec.co.uk/products/EB2410ITX/
9954 S:      Supported
9955 F:      arch/arm/mach-s3c24xx/mach-bast.c
9956 F:      arch/arm/mach-s3c24xx/bast-ide.c
9957 F:      arch/arm/mach-s3c24xx/bast-irq.c
9958
9959 TI DAVINCI MACHINE SUPPORT
9960 M:      Sekhar Nori <nsekhar@ti.com>
9961 M:      Kevin Hilman <khilman@deeprootsystems.com>
9962 T:      git git://gitorious.org/linux-davinci/linux-davinci.git
9963 Q:      http://patchwork.kernel.org/project/linux-davinci/list/
9964 S:      Supported
9965 F:      arch/arm/mach-davinci/
9966 F:      drivers/i2c/busses/i2c-davinci.c
9967
9968 TI DAVINCI SERIES MEDIA DRIVER
9969 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9970 L:      linux-media@vger.kernel.org
9971 W:      https://linuxtv.org
9972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9973 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9974 S:      Maintained
9975 F:      drivers/media/platform/davinci/
9976 F:      include/media/davinci/
9977
9978 TI AM437X VPFE DRIVER
9979 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9980 L:      linux-media@vger.kernel.org
9981 W:      https://linuxtv.org
9982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9983 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9984 S:      Maintained
9985 F:      drivers/media/platform/am437x/
9986
9987 OV2659 OMNIVISION SENSOR DRIVER
9988 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
9989 L:      linux-media@vger.kernel.org
9990 W:      https://linuxtv.org
9991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
9992 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
9993 S:      Maintained
9994 F:      drivers/media/i2c/ov2659.c
9995 F:      include/media/i2c/ov2659.h
9996
9997 SILICON MOTION SM712 FRAME BUFFER DRIVER
9998 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
9999 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10000 M:      Sudip Mukherjee <sudip@vectorindia.org>
10001 L:      linux-fbdev@vger.kernel.org
10002 S:      Maintained
10003 F:      drivers/video/fbdev/sm712*
10004 F:      Documentation/fb/sm712fb.txt
10005
10006 SIS 190 ETHERNET DRIVER
10007 M:      Francois Romieu <romieu@fr.zoreil.com>
10008 L:      netdev@vger.kernel.org
10009 S:      Maintained
10010 F:      drivers/net/ethernet/sis/sis190.c
10011
10012 SIS 900/7016 FAST ETHERNET DRIVER
10013 M:      Daniele Venzano <venza@brownhat.org>
10014 W:      http://www.brownhat.org/sis900.html
10015 L:      netdev@vger.kernel.org
10016 S:      Maintained
10017 F:      drivers/net/ethernet/sis/sis900.*
10018
10019 SIS FRAMEBUFFER DRIVER
10020 M:      Thomas Winischhofer <thomas@winischhofer.net>
10021 W:      http://www.winischhofer.net/linuxsisvga.shtml
10022 S:      Maintained
10023 F:      Documentation/fb/sisfb.txt
10024 F:      drivers/video/fbdev/sis/
10025 F:      include/video/sisfb.h
10026
10027 SIS USB2VGA DRIVER
10028 M:      Thomas Winischhofer <thomas@winischhofer.net>
10029 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
10030 S:      Maintained
10031 F:      drivers/usb/misc/sisusbvga/
10032
10033 SLAB ALLOCATOR
10034 M:      Christoph Lameter <cl@linux.com>
10035 M:      Pekka Enberg <penberg@kernel.org>
10036 M:      David Rientjes <rientjes@google.com>
10037 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
10038 M:      Andrew Morton <akpm@linux-foundation.org>
10039 L:      linux-mm@kvack.org
10040 S:      Maintained
10041 F:      include/linux/sl?b*.h
10042 F:      mm/sl?b*
10043
10044 SLEEPABLE READ-COPY UPDATE (SRCU)
10045 M:      Lai Jiangshan <jiangshanlai@gmail.com>
10046 M:      "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
10047 M:      Josh Triplett <josh@joshtriplett.org>
10048 R:      Steven Rostedt <rostedt@goodmis.org>
10049 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10050 L:      linux-kernel@vger.kernel.org
10051 W:      http://www.rdrop.com/users/paulmck/RCU/
10052 S:      Supported
10053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10054 F:      include/linux/srcu.h
10055 F:      kernel/rcu/srcu.c
10056
10057 SMACK SECURITY MODULE
10058 M:      Casey Schaufler <casey@schaufler-ca.com>
10059 L:      linux-security-module@vger.kernel.org
10060 W:      http://schaufler-ca.com
10061 T:      git git://git.gitorious.org/smack-next/kernel.git
10062 S:      Maintained
10063 F:      Documentation/security/Smack.txt
10064 F:      security/smack/
10065
10066 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
10067 M:      Kevin Hilman <khilman@kernel.org>
10068 M:      Nishanth Menon <nm@ti.com>
10069 S:      Maintained
10070 F:      drivers/power/avs/
10071 F:      include/linux/power/smartreflex.h
10072 L:      linux-pm@vger.kernel.org
10073
10074 SMC91x ETHERNET DRIVER
10075 M:      Nicolas Pitre <nico@fluxnic.net>
10076 S:      Odd Fixes
10077 F:      drivers/net/ethernet/smsc/smc91x.*
10078
10079 SMIA AND SMIA++ IMAGE SENSOR DRIVER
10080 M:      Sakari Ailus <sakari.ailus@iki.fi>
10081 L:      linux-media@vger.kernel.org
10082 S:      Maintained
10083 F:      drivers/media/i2c/smiapp/
10084 F:      include/media/i2c/smiapp.h
10085 F:      drivers/media/i2c/smiapp-pll.c
10086 F:      drivers/media/i2c/smiapp-pll.h
10087 F:      include/uapi/linux/smiapp.h
10088 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
10089
10090 SMM665 HARDWARE MONITOR DRIVER
10091 M:      Guenter Roeck <linux@roeck-us.net>
10092 L:      lm-sensors@lm-sensors.org
10093 S:      Maintained
10094 F:      Documentation/hwmon/smm665
10095 F:      drivers/hwmon/smm665.c
10096
10097 SMSC EMC2103 HARDWARE MONITOR DRIVER
10098 M:      Steve Glendinning <steve.glendinning@shawell.net>
10099 L:      lm-sensors@lm-sensors.org
10100 S:      Maintained
10101 F:      Documentation/hwmon/emc2103
10102 F:      drivers/hwmon/emc2103.c
10103
10104 SMSC SCH5627 HARDWARE MONITOR DRIVER
10105 M:      Hans de Goede <hdegoede@redhat.com>
10106 L:      lm-sensors@lm-sensors.org
10107 S:      Supported
10108 F:      Documentation/hwmon/sch5627
10109 F:      drivers/hwmon/sch5627.c
10110
10111 SMSC47B397 HARDWARE MONITOR DRIVER
10112 M:      Jean Delvare <jdelvare@suse.com>
10113 L:      lm-sensors@lm-sensors.org
10114 S:      Maintained
10115 F:      Documentation/hwmon/smsc47b397
10116 F:      drivers/hwmon/smsc47b397.c
10117
10118 SMSC911x ETHERNET DRIVER
10119 M:      Steve Glendinning <steve.glendinning@shawell.net>
10120 L:      netdev@vger.kernel.org
10121 S:      Maintained
10122 F:      include/linux/smsc911x.h
10123 F:      drivers/net/ethernet/smsc/smsc911x.*
10124
10125 SMSC9420 PCI ETHERNET DRIVER
10126 M:      Steve Glendinning <steve.glendinning@shawell.net>
10127 L:      netdev@vger.kernel.org
10128 S:      Maintained
10129 F:      drivers/net/ethernet/smsc/smsc9420.*
10130
10131 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
10132 M:      Steve Glendinning <steve.glendinning@shawell.net>
10133 L:      linux-fbdev@vger.kernel.org
10134 S:      Maintained
10135 F:      drivers/video/fbdev/smscufx.c
10136
10137 SOC-CAMERA V4L2 SUBSYSTEM
10138 M:      Guennadi Liakhovetski <g.liakhovetski@gmx.de>
10139 L:      linux-media@vger.kernel.org
10140 T:      git git://linuxtv.org/media_tree.git
10141 S:      Maintained
10142 F:      include/media/soc*
10143 F:      drivers/media/i2c/soc_camera/
10144 F:      drivers/media/platform/soc_camera/
10145
10146 SOEKRIS NET48XX LED SUPPORT
10147 M:      Chris Boot <bootc@bootc.net>
10148 S:      Maintained
10149 F:      drivers/leds/leds-net48xx.c
10150
10151 SOFTLOGIC 6x10 MPEG CODEC
10152 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
10153 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
10154 M:      Andrey Utkin <andrey.krieger.utkin@gmail.com>
10155 M:      Ismael Luceno <ismael@iodev.co.uk>
10156 L:      linux-media@vger.kernel.org
10157 S:      Supported
10158 F:      drivers/media/pci/solo6x10/
10159
10160 SOFTWARE RAID (Multiple Disks) SUPPORT
10161 M:      Shaohua Li <shli@kernel.org>
10162 L:      linux-raid@vger.kernel.org
10163 T:      git git://neil.brown.name/md
10164 S:      Supported
10165 F:      drivers/md/
10166 F:      include/linux/raid/
10167 F:      include/uapi/linux/raid/
10168
10169 SONIC NETWORK DRIVER
10170 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
10171 L:      netdev@vger.kernel.org
10172 S:      Maintained
10173 F:      drivers/net/ethernet/natsemi/sonic.*
10174
10175 SONICS SILICON BACKPLANE DRIVER (SSB)
10176 M:      Michael Buesch <m@bues.ch>
10177 L:      linux-wireless@vger.kernel.org
10178 S:      Maintained
10179 F:      drivers/ssb/
10180 F:      include/linux/ssb/
10181
10182 SONY VAIO CONTROL DEVICE DRIVER
10183 M:      Mattia Dongili <malattia@linux.it>
10184 L:      platform-driver-x86@vger.kernel.org
10185 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
10186 S:      Maintained
10187 F:      Documentation/laptops/sony-laptop.txt
10188 F:      drivers/char/sonypi.c
10189 F:      drivers/platform/x86/sony-laptop.c
10190 F:      include/linux/sony-laptop.h
10191
10192 SONY MEMORYSTICK CARD SUPPORT
10193 M:      Alex Dubov <oakad@yahoo.com>
10194 W:      http://tifmxx.berlios.de/
10195 S:      Maintained
10196 F:      drivers/memstick/host/tifm_ms.c
10197
10198 SONY MEMORYSTICK STANDARD SUPPORT
10199 M:      Maxim Levitsky <maximlevitsky@gmail.com>
10200 S:      Maintained
10201 F:      drivers/memstick/core/ms_block.*
10202
10203 SOUND
10204 M:      Jaroslav Kysela <perex@perex.cz>
10205 M:      Takashi Iwai <tiwai@suse.com>
10206 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10207 W:      http://www.alsa-project.org/
10208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10209 T:      git git://git.alsa-project.org/alsa-kernel.git
10210 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
10211 S:      Maintained
10212 F:      Documentation/sound/
10213 F:      include/sound/
10214 F:      include/uapi/sound/
10215 F:      sound/
10216
10217 SOUND - COMPRESSED AUDIO
10218 M:      Vinod Koul <vinod.koul@intel.com>
10219 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
10221 S:      Supported
10222 F:      Documentation/sound/alsa/compress_offload.txt
10223 F:      include/sound/compress_driver.h
10224 F:      include/uapi/sound/compress_*
10225 F:      sound/core/compress_offload.c
10226 F:      sound/soc/soc-compress.c
10227
10228 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
10229 M:      Liam Girdwood <lgirdwood@gmail.com>
10230 M:      Mark Brown <broonie@kernel.org>
10231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
10232 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10233 W:      http://alsa-project.org/main/index.php/ASoC
10234 S:      Supported
10235 F:      Documentation/sound/alsa/soc/
10236 F:      sound/soc/
10237 F:      include/sound/soc*
10238
10239 SOUND - DMAENGINE HELPERS
10240 M:      Lars-Peter Clausen <lars@metafoo.de>
10241 S:      Supported
10242 F:      include/sound/dmaengine_pcm.h
10243 F:      sound/core/pcm_dmaengine.c
10244 F:      sound/soc/soc-generic-dmaengine-pcm.c
10245
10246 SP2 MEDIA DRIVER
10247 M:      Olli Salonen <olli.salonen@iki.fi>
10248 L:      linux-media@vger.kernel.org
10249 W:      https://linuxtv.org
10250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10251 S:      Maintained
10252 F:      drivers/media/dvb-frontends/sp2*
10253
10254 SPARC + UltraSPARC (sparc/sparc64)
10255 M:      "David S. Miller" <davem@davemloft.net>
10256 L:      sparclinux@vger.kernel.org
10257 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
10258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10260 S:      Maintained
10261 F:      arch/sparc/
10262 F:      drivers/sbus/
10263
10264 SPARC SERIAL DRIVERS
10265 M:      "David S. Miller" <davem@davemloft.net>
10266 L:      sparclinux@vger.kernel.org
10267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
10268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
10269 S:      Maintained
10270 F:      include/linux/sunserialcore.h
10271 F:      drivers/tty/serial/suncore.c
10272 F:      drivers/tty/serial/sunhv.c
10273 F:      drivers/tty/serial/sunsab.c
10274 F:      drivers/tty/serial/sunsab.h
10275 F:      drivers/tty/serial/sunsu.c
10276 F:      drivers/tty/serial/sunzilog.c
10277 F:      drivers/tty/serial/sunzilog.h
10278
10279 SPARSE CHECKER
10280 M:      "Christopher Li" <sparse@chrisli.org>
10281 L:      linux-sparse@vger.kernel.org
10282 W:      https://sparse.wiki.kernel.org/
10283 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
10284 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
10285 S:      Maintained
10286 F:      include/linux/compiler.h
10287
10288 SPEAR PLATFORM SUPPORT
10289 M:      Viresh Kumar <vireshk@kernel.org>
10290 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
10291 L:      spear-devel@list.st.com
10292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10293 W:      http://www.st.com/spear
10294 S:      Maintained
10295 F:      arch/arm/boot/dts/spear*
10296 F:      arch/arm/mach-spear/
10297
10298 SPEAR CLOCK FRAMEWORK SUPPORT
10299 M:      Viresh Kumar <vireshk@kernel.org>
10300 L:      spear-devel@list.st.com
10301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10302 W:      http://www.st.com/spear
10303 S:      Maintained
10304 F:      drivers/clk/spear/
10305
10306 SPI SUBSYSTEM
10307 M:      Mark Brown <broonie@kernel.org>
10308 L:      linux-spi@vger.kernel.org
10309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
10310 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
10311 S:      Maintained
10312 F:      Documentation/spi/
10313 F:      drivers/spi/
10314 F:      include/linux/spi/
10315 F:      include/uapi/linux/spi/
10316
10317 SPIDERNET NETWORK DRIVER for CELL
10318 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
10319 L:      netdev@vger.kernel.org
10320 S:      Supported
10321 F:      Documentation/networking/spider_net.txt
10322 F:      drivers/net/ethernet/toshiba/spider_net*
10323
10324 SPU FILE SYSTEM
10325 M:      Jeremy Kerr <jk@ozlabs.org>
10326 L:      linuxppc-dev@lists.ozlabs.org
10327 W:      http://www.ibm.com/developerworks/power/cell/
10328 S:      Supported
10329 F:      Documentation/filesystems/spufs.txt
10330 F:      arch/powerpc/platforms/cell/spufs/
10331
10332 SQUASHFS FILE SYSTEM
10333 M:      Phillip Lougher <phillip@squashfs.org.uk>
10334 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
10335 W:      http://squashfs.org.uk
10336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
10337 S:      Maintained
10338 F:      Documentation/filesystems/squashfs.txt
10339 F:      fs/squashfs/
10340
10341 SRM (Alpha) environment access
10342 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
10343 S:      Maintained
10344 F:      arch/alpha/kernel/srm_env.c
10345
10346 STABLE BRANCH
10347 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10348 L:      stable@vger.kernel.org
10349 S:      Supported
10350 F:      Documentation/stable_kernel_rules.txt
10351
10352 STAGING SUBSYSTEM
10353 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
10355 L:      devel@driverdev.osuosl.org
10356 S:      Supported
10357 F:      drivers/staging/
10358
10359 STAGING - COMEDI
10360 M:      Ian Abbott <abbotti@mev.co.uk>
10361 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
10362 S:      Odd Fixes
10363 F:      drivers/staging/comedi/
10364
10365 STAGING - FLARION FT1000 DRIVERS
10366 M:      Marek Belisko <marek.belisko@gmail.com>
10367 S:      Odd Fixes
10368 F:      drivers/staging/ft1000/
10369
10370 STAGING - INDUSTRIAL IO
10371 M:      Jonathan Cameron <jic23@kernel.org>
10372 L:      linux-iio@vger.kernel.org
10373 S:      Odd Fixes
10374 F:      drivers/staging/iio/
10375
10376 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
10377 M:      Jarod Wilson <jarod@wilsonet.com>
10378 W:      http://www.lirc.org/
10379 S:      Odd Fixes
10380 F:      drivers/staging/media/lirc/
10381
10382 STAGING - LUSTRE PARALLEL FILESYSTEM
10383 M:      Oleg Drokin <oleg.drokin@intel.com>
10384 M:      Andreas Dilger <andreas.dilger@intel.com>
10385 L:      lustre-devel@lists.lustre.org (moderated for non-subscribers)
10386 W:      http://wiki.lustre.org/
10387 S:      Maintained
10388 F:      drivers/staging/lustre
10389
10390 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
10391 M:      Marc Dietrich <marvin24@gmx.de>
10392 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
10393 L:      linux-tegra@vger.kernel.org
10394 S:      Maintained
10395 F:      drivers/staging/nvec/
10396
10397 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
10398 M:      Jens Frederich <jfrederich@gmail.com>
10399 M:      Daniel Drake <dsd@laptop.org>
10400 M:      Jon Nettleton <jon.nettleton@gmail.com>
10401 W:      http://wiki.laptop.org/go/DCON
10402 S:      Maintained
10403 F:      drivers/staging/olpc_dcon/
10404
10405 STAGING - PARALLEL LCD/KEYPAD PANEL DRIVER
10406 M:      Willy Tarreau <willy@meta-x.org>
10407 S:      Odd Fixes
10408 F:      drivers/staging/panel/
10409
10410 STAGING - REALTEK RTL8712U DRIVERS
10411 M:      Larry Finger <Larry.Finger@lwfinger.net>
10412 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
10413 S:      Odd Fixes
10414 F:      drivers/staging/rtl8712/
10415
10416 STAGING - REALTEK RTL8723U WIRELESS DRIVER
10417 M:      Larry Finger <Larry.Finger@lwfinger.net>
10418 M:      Jes Sorensen <Jes.Sorensen@redhat.com>
10419 L:      linux-wireless@vger.kernel.org
10420 S:      Maintained
10421 F:      drivers/staging/rtl8723au/
10422
10423 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
10424 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
10425 M:      Teddy Wang <teddy.wang@siliconmotion.com>
10426 M:      Sudip Mukherjee <sudip@vectorindia.org>
10427 L:      linux-fbdev@vger.kernel.org
10428 S:      Maintained
10429 F:      drivers/staging/sm750fb/
10430
10431 STAGING - SLICOSS
10432 M:      Lior Dotan <liodot@gmail.com>
10433 M:      Christopher Harrer <charrer@alacritech.com>
10434 S:      Odd Fixes
10435 F:      drivers/staging/slicoss/
10436
10437 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
10438 M:      William Hubbs <w.d.hubbs@gmail.com>
10439 M:      Chris Brannon <chris@the-brannons.com>
10440 M:      Kirk Reiser <kirk@reisers.ca>
10441 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
10442 L:      speakup@linux-speakup.org
10443 W:      http://www.linux-speakup.org/
10444 S:      Odd Fixes
10445 F:      drivers/staging/speakup/
10446
10447 STAGING - VIA VT665X DRIVERS
10448 M:      Forest Bond <forest@alittletooquiet.net>
10449 S:      Odd Fixes
10450 F:      drivers/staging/vt665?/
10451
10452 STAGING - WILC1000 WIFI DRIVER
10453 M:      Johnny Kim <johnny.kim@atmel.com>
10454 M:      Austin Shin <austin.shin@atmel.com>
10455 M:      Chris Park <chris.park@atmel.com>
10456 M:      Tony Cho <tony.cho@atmel.com>
10457 M:      Glen Lee <glen.lee@atmel.com>
10458 M:      Leo Kim <leo.kim@atmel.com>
10459 L:      linux-wireless@vger.kernel.org
10460 S:      Supported
10461 F:      drivers/staging/wilc1000/
10462
10463 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
10464 M:      Arnaud Patard <arnaud.patard@rtp-net.org>
10465 S:      Odd Fixes
10466 F:      drivers/staging/xgifb/
10467
10468 HFI1 DRIVER
10469 M:      Mike Marciniszyn <infinipath@intel.com>
10470 L:      linux-rdma@vger.kernel.org
10471 S:      Supported
10472 F:      drivers/staging/rdma/hfi1
10473
10474 STARFIRE/DURALAN NETWORK DRIVER
10475 M:      Ion Badulescu <ionut@badula.org>
10476 S:      Odd Fixes
10477 F:      drivers/net/ethernet/adaptec/starfire*
10478
10479 SUN3/3X
10480 M:      Sam Creasey <sammy@sammy.net>
10481 W:      http://sammy.net/sun3/
10482 S:      Maintained
10483 F:      arch/m68k/kernel/*sun3*
10484 F:      arch/m68k/sun3*/
10485 F:      arch/m68k/include/asm/sun3*
10486 F:      drivers/net/ethernet/i825xx/sun3*
10487
10488 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
10489 M:      Hans de Goede <hdegoede@redhat.com>
10490 L:      linux-input@vger.kernel.org
10491 S:      Maintained
10492 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
10493 F:      drivers/input/keyboard/sun4i-lradc-keys.c
10494
10495 SUNDANCE NETWORK DRIVER
10496 M:      Denis Kirjanov <kda@linux-powerpc.org>
10497 L:      netdev@vger.kernel.org
10498 S:      Maintained
10499 F:      drivers/net/ethernet/dlink/sundance.c
10500
10501 SUPERH
10502 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
10503 M:      Rich Felker <dalias@libc.org>
10504 L:      linux-sh@vger.kernel.org
10505 Q:      http://patchwork.kernel.org/project/linux-sh/list/
10506 S:      Maintained
10507 F:      Documentation/sh/
10508 F:      arch/sh/
10509 F:      drivers/sh/
10510
10511 SUSPEND TO RAM
10512 M:      "Rafael J. Wysocki" <rjw@rjwysocki.net>
10513 M:      Len Brown <len.brown@intel.com>
10514 M:      Pavel Machek <pavel@ucw.cz>
10515 L:      linux-pm@vger.kernel.org
10516 S:      Supported
10517 F:      Documentation/power/
10518 F:      arch/x86/kernel/acpi/
10519 F:      drivers/base/power/
10520 F:      kernel/power/
10521 F:      include/linux/suspend.h
10522 F:      include/linux/freezer.h
10523 F:      include/linux/pm.h
10524
10525 SVGA HANDLING
10526 M:      Martin Mares <mj@ucw.cz>
10527 L:      linux-video@atrey.karlin.mff.cuni.cz
10528 S:      Maintained
10529 F:      Documentation/svga.txt
10530 F:      arch/x86/boot/video*
10531
10532 SWIOTLB SUBSYSTEM
10533 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
10534 L:      linux-kernel@vger.kernel.org
10535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
10536 S:      Supported
10537 F:      lib/swiotlb.c
10538 F:      arch/*/kernel/pci-swiotlb.c
10539 F:      include/linux/swiotlb.h
10540
10541 SWITCHDEV
10542 M:      Jiri Pirko <jiri@resnulli.us>
10543 L:      netdev@vger.kernel.org
10544 S:      Supported
10545 F:      net/switchdev/
10546 F:      include/net/switchdev.h
10547
10548 SYNOPSYS ARC ARCHITECTURE
10549 M:      Vineet Gupta <vgupta@synopsys.com>
10550 L:      linux-snps-arc@lists.infradead.org
10551 S:      Supported
10552 F:      arch/arc/
10553 F:      Documentation/devicetree/bindings/arc/*
10554 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
10555 F:      drivers/tty/serial/arc_uart.c
10556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
10557
10558 SYNOPSYS ARC SDP platform support
10559 M:      Alexey Brodkin <abrodkin@synopsys.com>
10560 S:      Supported
10561 F:      arch/arc/plat-axs10x
10562 F:      arch/arc/boot/dts/ax*
10563 F:      Documentation/devicetree/bindings/arc/axs10*
10564
10565 SYSTEM CONFIGURATION (SYSCON)
10566 M:      Lee Jones <lee.jones@linaro.org>
10567 M:      Arnd Bergmann <arnd@arndb.de>
10568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
10569 S:      Supported
10570 F:      drivers/mfd/syscon.c
10571
10572 SYSV FILESYSTEM
10573 M:      Christoph Hellwig <hch@infradead.org>
10574 S:      Maintained
10575 F:      Documentation/filesystems/sysv-fs.txt
10576 F:      fs/sysv/
10577 F:      include/linux/sysv_fs.h
10578
10579 TARGET SUBSYSTEM
10580 M:      "Nicholas A. Bellinger" <nab@linux-iscsi.org>
10581 L:      linux-scsi@vger.kernel.org
10582 L:      target-devel@vger.kernel.org
10583 W:      http://www.linux-iscsi.org
10584 W:      http://groups.google.com/group/linux-iscsi-target-dev
10585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10586 S:      Supported
10587 F:      drivers/target/
10588 F:      include/target/
10589 F:      Documentation/target/
10590
10591 TASKSTATS STATISTICS INTERFACE
10592 M:      Balbir Singh <bsingharora@gmail.com>
10593 S:      Maintained
10594 F:      Documentation/accounting/taskstats*
10595 F:      include/linux/taskstats*
10596 F:      kernel/taskstats.c
10597
10598 TC CLASSIFIER
10599 M:      Jamal Hadi Salim <jhs@mojatatu.com>
10600 L:      netdev@vger.kernel.org
10601 S:      Maintained
10602 F:      include/net/pkt_cls.h
10603 F:      include/uapi/linux/pkt_cls.h
10604 F:      net/sched/
10605
10606 TCP LOW PRIORITY MODULE
10607 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
10608 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
10609 W:      http://tcp-lp-mod.sourceforge.net/
10610 S:      Maintained
10611 F:      net/ipv4/tcp_lp.c
10612
10613 TDA10071 MEDIA DRIVER
10614 M:      Antti Palosaari <crope@iki.fi>
10615 L:      linux-media@vger.kernel.org
10616 W:      https://linuxtv.org
10617 W:      http://palosaari.fi/linux/
10618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10619 T:      git git://linuxtv.org/anttip/media_tree.git
10620 S:      Maintained
10621 F:      drivers/media/dvb-frontends/tda10071*
10622
10623 TDA18212 MEDIA DRIVER
10624 M:      Antti Palosaari <crope@iki.fi>
10625 L:      linux-media@vger.kernel.org
10626 W:      https://linuxtv.org
10627 W:      http://palosaari.fi/linux/
10628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10629 T:      git git://linuxtv.org/anttip/media_tree.git
10630 S:      Maintained
10631 F:      drivers/media/tuners/tda18212*
10632
10633 TDA18218 MEDIA DRIVER
10634 M:      Antti Palosaari <crope@iki.fi>
10635 L:      linux-media@vger.kernel.org
10636 W:      https://linuxtv.org
10637 W:      http://palosaari.fi/linux/
10638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10639 T:      git git://linuxtv.org/anttip/media_tree.git
10640 S:      Maintained
10641 F:      drivers/media/tuners/tda18218*
10642
10643 TDA18271 MEDIA DRIVER
10644 M:      Michael Krufky <mkrufky@linuxtv.org>
10645 L:      linux-media@vger.kernel.org
10646 W:      https://linuxtv.org
10647 W:      http://github.com/mkrufky
10648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10649 T:      git git://linuxtv.org/mkrufky/tuners.git
10650 S:      Maintained
10651 F:      drivers/media/tuners/tda18271*
10652
10653 TDA827x MEDIA DRIVER
10654 M:      Michael Krufky <mkrufky@linuxtv.org>
10655 L:      linux-media@vger.kernel.org
10656 W:      https://linuxtv.org
10657 W:      http://github.com/mkrufky
10658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10659 T:      git git://linuxtv.org/mkrufky/tuners.git
10660 S:      Maintained
10661 F:      drivers/media/tuners/tda8290.*
10662
10663 TDA8290 MEDIA DRIVER
10664 M:      Michael Krufky <mkrufky@linuxtv.org>
10665 L:      linux-media@vger.kernel.org
10666 W:      https://linuxtv.org
10667 W:      http://github.com/mkrufky
10668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10669 T:      git git://linuxtv.org/mkrufky/tuners.git
10670 S:      Maintained
10671 F:      drivers/media/tuners/tda8290.*
10672
10673 TDA9840 MEDIA DRIVER
10674 M:      Hans Verkuil <hverkuil@xs4all.nl>
10675 L:      linux-media@vger.kernel.org
10676 T:      git git://linuxtv.org/media_tree.git
10677 W:      https://linuxtv.org
10678 S:      Maintained
10679 F:      drivers/media/i2c/tda9840*
10680
10681 TEA5761 TUNER DRIVER
10682 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10683 L:      linux-media@vger.kernel.org
10684 W:      https://linuxtv.org
10685 T:      git git://linuxtv.org/media_tree.git
10686 S:      Odd fixes
10687 F:      drivers/media/tuners/tea5761.*
10688
10689 TEA5767 TUNER DRIVER
10690 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
10691 L:      linux-media@vger.kernel.org
10692 W:      https://linuxtv.org
10693 T:      git git://linuxtv.org/media_tree.git
10694 S:      Maintained
10695 F:      drivers/media/tuners/tea5767.*
10696
10697 TEA6415C MEDIA DRIVER
10698 M:      Hans Verkuil <hverkuil@xs4all.nl>
10699 L:      linux-media@vger.kernel.org
10700 T:      git git://linuxtv.org/media_tree.git
10701 W:      https://linuxtv.org
10702 S:      Maintained
10703 F:      drivers/media/i2c/tea6415c*
10704
10705 TEA6420 MEDIA DRIVER
10706 M:      Hans Verkuil <hverkuil@xs4all.nl>
10707 L:      linux-media@vger.kernel.org
10708 T:      git git://linuxtv.org/media_tree.git
10709 W:      https://linuxtv.org
10710 S:      Maintained
10711 F:      drivers/media/i2c/tea6420*
10712
10713 TEAM DRIVER
10714 M:      Jiri Pirko <jiri@resnulli.us>
10715 L:      netdev@vger.kernel.org
10716 S:      Supported
10717 F:      drivers/net/team/
10718 F:      include/linux/if_team.h
10719 F:      include/uapi/linux/if_team.h
10720
10721 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
10722 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
10723 S:      Maintained
10724 F:      arch/x86/platform/ts5500/
10725
10726 TECHNOTREND USB IR RECEIVER
10727 M:      Sean Young <sean@mess.org>
10728 L:      linux-media@vger.kernel.org
10729 S:      Maintained
10730 F:      drivers/media/rc/ttusbir.c
10731
10732 TEGRA ARCHITECTURE SUPPORT
10733 M:      Stephen Warren <swarren@wwwdotorg.org>
10734 M:      Thierry Reding <thierry.reding@gmail.com>
10735 M:      Alexandre Courbot <gnurou@gmail.com>
10736 L:      linux-tegra@vger.kernel.org
10737 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
10738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
10739 S:      Supported
10740 N:      [^a-z]tegra
10741
10742 TEGRA CLOCK DRIVER
10743 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
10744 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
10745 S:      Supported
10746 F:      drivers/clk/tegra/
10747
10748 TEGRA DMA DRIVER
10749 M:      Laxman Dewangan <ldewangan@nvidia.com>
10750 S:      Supported
10751 F:      drivers/dma/tegra20-apb-dma.c
10752
10753 TEGRA I2C DRIVER
10754 M:      Laxman Dewangan <ldewangan@nvidia.com>
10755 S:      Supported
10756 F:      drivers/i2c/busses/i2c-tegra.c
10757
10758 TEGRA IOMMU DRIVERS
10759 M:      Hiroshi Doyu <hdoyu@nvidia.com>
10760 S:      Supported
10761 F:      drivers/iommu/tegra*
10762
10763 TEGRA KBC DRIVER
10764 M:      Rakesh Iyer <riyer@nvidia.com>
10765 M:      Laxman Dewangan <ldewangan@nvidia.com>
10766 S:      Supported
10767 F:      drivers/input/keyboard/tegra-kbc.c
10768
10769 TEGRA PWM DRIVER
10770 M:      Thierry Reding <thierry.reding@gmail.com>
10771 S:      Supported
10772 F:      drivers/pwm/pwm-tegra.c
10773
10774 TEGRA SERIAL DRIVER
10775 M:      Laxman Dewangan <ldewangan@nvidia.com>
10776 S:      Supported
10777 F:      drivers/tty/serial/serial-tegra.c
10778
10779 TEGRA SPI DRIVER
10780 M:      Laxman Dewangan <ldewangan@nvidia.com>
10781 S:      Supported
10782 F:      drivers/spi/spi-tegra*
10783
10784 TEHUTI ETHERNET DRIVER
10785 M:      Andy Gospodarek <andy@greyhouse.net>
10786 L:      netdev@vger.kernel.org
10787 S:      Supported
10788 F:      drivers/net/ethernet/tehuti/*
10789
10790 Telecom Clock Driver for MCPL0010
10791 M:      Mark Gross <mark.gross@intel.com>
10792 S:      Supported
10793 F:      drivers/char/tlclk.c
10794
10795 TENSILICA XTENSA PORT (xtensa)
10796 M:      Chris Zankel <chris@zankel.net>
10797 M:      Max Filippov <jcmvbkbc@gmail.com>
10798 L:      linux-xtensa@linux-xtensa.org
10799 T:      git git://github.com/czankel/xtensa-linux.git
10800 S:      Maintained
10801 F:      arch/xtensa/
10802 F:      drivers/irqchip/irq-xtensa-*
10803
10804 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
10805 M:      Hans Verkuil <hverkuil@xs4all.nl>
10806 L:      linux-media@vger.kernel.org
10807 T:      git git://linuxtv.org/media_tree.git
10808 W:      https://linuxtv.org
10809 S:      Maintained
10810 F:      drivers/media/radio/radio-raremono.c
10811
10812 THERMAL
10813 M:      Zhang Rui <rui.zhang@intel.com>
10814 M:      Eduardo Valentin <edubezval@gmail.com>
10815 L:      linux-pm@vger.kernel.org
10816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
10817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
10818 Q:      https://patchwork.kernel.org/project/linux-pm/list/
10819 S:      Supported
10820 F:      drivers/thermal/
10821 F:      include/linux/thermal.h
10822 F:      include/uapi/linux/thermal.h
10823 F:      include/linux/cpu_cooling.h
10824 F:      Documentation/devicetree/bindings/thermal/
10825
10826 THERMAL/CPU_COOLING
10827 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
10828 M:      Viresh Kumar <viresh.kumar@linaro.org>
10829 M:      Javi Merino <javi.merino@arm.com>
10830 L:      linux-pm@vger.kernel.org
10831 S:      Supported
10832 F:      Documentation/thermal/cpu-cooling-api.txt
10833 F:      drivers/thermal/cpu_cooling.c
10834 F:      include/linux/cpu_cooling.h
10835
10836 THINGM BLINK(1) USB RGB LED DRIVER
10837 M:      Vivien Didelot <vivien.didelot@savoirfairelinux.com>
10838 S:      Maintained
10839 F:      drivers/hid/hid-thingm.c
10840
10841 THINKPAD ACPI EXTRAS DRIVER
10842 M:      Henrique de Moraes Holschuh <ibm-acpi@hmh.eng.br>
10843 L:      ibm-acpi-devel@lists.sourceforge.net
10844 L:      platform-driver-x86@vger.kernel.org
10845 W:      http://ibm-acpi.sourceforge.net
10846 W:      http://thinkwiki.org/wiki/Ibm-acpi
10847 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
10848 S:      Maintained
10849 F:      drivers/platform/x86/thinkpad_acpi.c
10850
10851 TI BANDGAP AND THERMAL DRIVER
10852 M:      Eduardo Valentin <edubezval@gmail.com>
10853 L:      linux-pm@vger.kernel.org
10854 L:      linux-omap@vger.kernel.org
10855 S:      Maintained
10856 F:      drivers/thermal/ti-soc-thermal/
10857
10858 TI VPE/CAL DRIVERS
10859 M:      Benoit Parrot <bparrot@ti.com>
10860 L:      linux-media@vger.kernel.org
10861 W:      http://linuxtv.org/
10862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10863 S:      Maintained
10864 F:      drivers/media/platform/ti-vpe/
10865
10866 TI CDCE706 CLOCK DRIVER
10867 M:      Max Filippov <jcmvbkbc@gmail.com>
10868 S:      Maintained
10869 F:      drivers/clk/clk-cdce706.c
10870
10871 TI CLOCK DRIVER
10872 M:      Tero Kristo <t-kristo@ti.com>
10873 L:      linux-omap@vger.kernel.org
10874 S:      Maintained
10875 F:      drivers/clk/ti/
10876 F:      include/linux/clk/ti.h
10877
10878 TI FLASH MEDIA INTERFACE DRIVER
10879 M:      Alex Dubov <oakad@yahoo.com>
10880 S:      Maintained
10881 F:      drivers/misc/tifm*
10882 F:      drivers/mmc/host/tifm_sd.c
10883 F:      include/linux/tifm.h
10884
10885 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
10886 M:      Santosh Shilimkar <ssantosh@kernel.org>
10887 L:      linux-kernel@vger.kernel.org
10888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10889 S:      Maintained
10890 F:      drivers/soc/ti/*
10891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
10892
10893
10894 TI LM49xxx FAMILY ASoC CODEC DRIVERS
10895 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
10896 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
10897 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10898 S:      Maintained
10899 F:      sound/soc/codecs/lm49453*
10900 F:      sound/soc/codecs/isabelle*
10901
10902 TI LP855x BACKLIGHT DRIVER
10903 M:      Milo Kim <milo.kim@ti.com>
10904 S:      Maintained
10905 F:      Documentation/backlight/lp855x-driver.txt
10906 F:      drivers/video/backlight/lp855x_bl.c
10907 F:      include/linux/platform_data/lp855x.h
10908
10909 TI LP8727 CHARGER DRIVER
10910 M:      Milo Kim <milo.kim@ti.com>
10911 S:      Maintained
10912 F:      drivers/power/lp8727_charger.c
10913 F:      include/linux/platform_data/lp8727.h
10914
10915 TI LP8788 MFD DRIVER
10916 M:      Milo Kim <milo.kim@ti.com>
10917 S:      Maintained
10918 F:      drivers/iio/adc/lp8788_adc.c
10919 F:      drivers/leds/leds-lp8788.c
10920 F:      drivers/mfd/lp8788*.c
10921 F:      drivers/power/lp8788-charger.c
10922 F:      drivers/regulator/lp8788-*.c
10923 F:      include/linux/mfd/lp8788*.h
10924
10925 TI NETCP ETHERNET DRIVER
10926 M:      Wingman Kwok <w-kwok2@ti.com>
10927 M:      Murali Karicheri <m-karicheri2@ti.com>
10928 L:      netdev@vger.kernel.org
10929 S:      Maintained
10930 F:      drivers/net/ethernet/ti/netcp*
10931
10932 TI TAS571X FAMILY ASoC CODEC DRIVER
10933 M:      Kevin Cernekee <cernekee@chromium.org>
10934 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10935 S:      Odd Fixes
10936 F:      sound/soc/codecs/tas571x*
10937
10938 TI TWL4030 SERIES SOC CODEC DRIVER
10939 M:      Peter Ujfalusi <peter.ujfalusi@ti.com>
10940 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10941 S:      Maintained
10942 F:      sound/soc/codecs/twl4030*
10943
10944 TI WILINK WIRELESS DRIVERS
10945 L:      linux-wireless@vger.kernel.org
10946 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
10947 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
10948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
10949 S:      Orphan
10950 F:      drivers/net/wireless/ti/
10951 F:      include/linux/wl12xx.h
10952
10953 TIPC NETWORK LAYER
10954 M:      Jon Maloy <jon.maloy@ericsson.com>
10955 M:      Ying Xue <ying.xue@windriver.com>
10956 L:      netdev@vger.kernel.org (core kernel code)
10957 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
10958 W:      http://tipc.sourceforge.net/
10959 S:      Maintained
10960 F:      include/uapi/linux/tipc*.h
10961 F:      net/tipc/
10962
10963 TILE ARCHITECTURE
10964 M:      Chris Metcalf <cmetcalf@ezchip.com>
10965 W:      http://www.ezchip.com/scm/
10966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
10967 S:      Supported
10968 F:      arch/tile/
10969 F:      drivers/char/tile-srom.c
10970 F:      drivers/edac/tile_edac.c
10971 F:      drivers/net/ethernet/tile/
10972 F:      drivers/rtc/rtc-tile.c
10973 F:      drivers/tty/hvc/hvc_tile.c
10974 F:      drivers/tty/serial/tilegx.c
10975 F:      drivers/usb/host/*-tilegx.c
10976 F:      include/linux/usb/tilegx.h
10977
10978 TLAN NETWORK DRIVER
10979 M:      Samuel Chessman <chessman@tux.org>
10980 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
10981 W:      http://sourceforge.net/projects/tlan/
10982 S:      Maintained
10983 F:      Documentation/networking/tlan.txt
10984 F:      drivers/net/ethernet/ti/tlan.*
10985
10986 TOMOYO SECURITY MODULE
10987 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
10988 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
10989 L:      tomoyo-dev-en@lists.sourceforge.jp (subscribers-only, for developers in English)
10990 L:      tomoyo-users-en@lists.sourceforge.jp (subscribers-only, for users in English)
10991 L:      tomoyo-dev@lists.sourceforge.jp (subscribers-only, for developers in Japanese)
10992 L:      tomoyo-users@lists.sourceforge.jp (subscribers-only, for users in Japanese)
10993 W:      http://tomoyo.sourceforge.jp/
10994 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
10995 S:      Maintained
10996 F:      security/tomoyo/
10997
10998 TOPSTAR LAPTOP EXTRAS DRIVER
10999 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
11000 L:      platform-driver-x86@vger.kernel.org
11001 S:      Maintained
11002 F:      drivers/platform/x86/topstar-laptop.c
11003
11004 TOSHIBA ACPI EXTRAS DRIVER
11005 M:      Azael Avalos <coproscefalo@gmail.com>
11006 L:      platform-driver-x86@vger.kernel.org
11007 S:      Maintained
11008 F:      drivers/platform/x86/toshiba_acpi.c
11009
11010 TOSHIBA BLUETOOTH DRIVER
11011 M:      Azael Avalos <coproscefalo@gmail.com>
11012 L:      platform-driver-x86@vger.kernel.org
11013 S:      Maintained
11014 F:      drivers/platform/x86/toshiba_bluetooth.c
11015
11016 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
11017 M:      Azael Avalos <coproscefalo@gmail.com>
11018 L:      platform-driver-x86@vger.kernel.org
11019 S:      Maintained
11020 F:      drivers/platform/x86/toshiba_haps.c
11021
11022 TOSHIBA WMI HOTKEYS DRIVER
11023 M:      Azael Avalos <coproscefalo@gmail.com>
11024 L:      platform-driver-x86@vger.kernel.org
11025 S:      Maintained
11026 F:      drivers/platform/x86/toshiba-wmi.c
11027
11028 TOSHIBA SMM DRIVER
11029 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
11030 W:      http://www.buzzard.org.uk/toshiba/
11031 S:      Maintained
11032 F:      drivers/char/toshiba.c
11033 F:      include/linux/toshiba.h
11034 F:      include/uapi/linux/toshiba.h
11035
11036 TOSHIBA TC358743 DRIVER
11037 M:      Mats Randgaard <matrandg@cisco.com>
11038 L:      linux-media@vger.kernel.org
11039 S:      Maintained
11040 F:      drivers/media/i2c/tc358743*
11041 F:      include/media/i2c/tc358743.h
11042
11043 TMIO MMC DRIVER
11044 M:      Ian Molton <ian@mnementh.co.uk>
11045 L:      linux-mmc@vger.kernel.org
11046 S:      Maintained
11047 F:      drivers/mmc/host/tmio_mmc*
11048 F:      drivers/mmc/host/sh_mobile_sdhi.c
11049 F:      include/linux/mmc/tmio.h
11050 F:      include/linux/mmc/sh_mobile_sdhi.h
11051
11052 TMP401 HARDWARE MONITOR DRIVER
11053 M:      Guenter Roeck <linux@roeck-us.net>
11054 L:      lm-sensors@lm-sensors.org
11055 S:      Maintained
11056 F:      Documentation/hwmon/tmp401
11057 F:      drivers/hwmon/tmp401.c
11058
11059 TMPFS (SHMEM FILESYSTEM)
11060 M:      Hugh Dickins <hughd@google.com>
11061 L:      linux-mm@kvack.org
11062 S:      Maintained
11063 F:      include/linux/shmem_fs.h
11064 F:      mm/shmem.c
11065
11066 TM6000 VIDEO4LINUX DRIVER
11067 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
11068 L:      linux-media@vger.kernel.org
11069 W:      https://linuxtv.org
11070 T:      git git://linuxtv.org/media_tree.git
11071 S:      Odd fixes
11072 F:      drivers/media/usb/tm6000/
11073
11074 TW68 VIDEO4LINUX DRIVER
11075 M:      Hans Verkuil <hverkuil@xs4all.nl>
11076 L:      linux-media@vger.kernel.org
11077 T:      git git://linuxtv.org/media_tree.git
11078 W:      https://linuxtv.org
11079 S:      Odd Fixes
11080 F:      drivers/media/pci/tw68/
11081
11082 TPM DEVICE DRIVER
11083 M:      Peter Huewe <peterhuewe@gmx.de>
11084 M:      Marcel Selhorst <tpmdd@selhorst.net>
11085 M:      Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
11086 R:      Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
11087 W:      http://tpmdd.sourceforge.net
11088 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11089 Q:      git git://github.com/PeterHuewe/linux-tpmdd.git
11090 T:      git https://github.com/PeterHuewe/linux-tpmdd
11091 S:      Maintained
11092 F:      drivers/char/tpm/
11093
11094 TPM IBM_VTPM DEVICE DRIVER
11095 M:      Ashley Lai <ashleydlai@gmail.com>
11096 W:      http://tpmdd.sourceforge.net
11097 L:      tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
11098 S:      Maintained
11099 F:      drivers/char/tpm/tpm_ibmvtpm*
11100
11101 TRACING
11102 M:      Steven Rostedt <rostedt@goodmis.org>
11103 M:      Ingo Molnar <mingo@redhat.com>
11104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
11105 S:      Maintained
11106 F:      Documentation/trace/ftrace.txt
11107 F:      arch/*/*/*/ftrace.h
11108 F:      arch/*/kernel/ftrace.c
11109 F:      include/*/ftrace.h
11110 F:      include/linux/trace*.h
11111 F:      include/trace/
11112 F:      kernel/trace/
11113 F:      tools/testing/selftests/ftrace/
11114
11115 TRIVIAL PATCHES
11116 M:      Jiri Kosina <trivial@kernel.org>
11117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
11118 S:      Maintained
11119 K:      ^Subject:.*(?i)trivial
11120
11121 TTY LAYER
11122 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11123 M:      Jiri Slaby <jslaby@suse.com>
11124 S:      Supported
11125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
11126 F:      Documentation/serial/
11127 F:      drivers/tty/
11128 F:      drivers/tty/serial/serial_core.c
11129 F:      include/linux/serial_core.h
11130 F:      include/linux/serial.h
11131 F:      include/linux/tty.h
11132 F:      include/uapi/linux/serial_core.h
11133 F:      include/uapi/linux/serial.h
11134 F:      include/uapi/linux/tty.h
11135
11136 TUA9001 MEDIA DRIVER
11137 M:      Antti Palosaari <crope@iki.fi>
11138 L:      linux-media@vger.kernel.org
11139 W:      https://linuxtv.org
11140 W:      http://palosaari.fi/linux/
11141 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11142 T:      git git://linuxtv.org/anttip/media_tree.git
11143 S:      Maintained
11144 F:      drivers/media/tuners/tua9001*
11145
11146 TULIP NETWORK DRIVERS
11147 L:      netdev@vger.kernel.org
11148 L:      linux-parisc@vger.kernel.org
11149 S:      Orphan
11150 F:      drivers/net/ethernet/dec/tulip/
11151
11152 TUN/TAP driver
11153 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
11154 W:      http://vtun.sourceforge.net/tun
11155 S:      Maintained
11156 F:      Documentation/networking/tuntap.txt
11157 F:      arch/um/os-Linux/drivers/
11158
11159 TURBOCHANNEL SUBSYSTEM
11160 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
11161 M:      Ralf Baechle <ralf@linux-mips.org>
11162 L:      linux-mips@linux-mips.org
11163 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
11164 S:      Maintained
11165 F:      drivers/tc/
11166 F:      include/linux/tc.h
11167
11168 U14-34F SCSI DRIVER
11169 M:      Dario Ballabio <ballabio_dario@emc.com>
11170 L:      linux-scsi@vger.kernel.org
11171 S:      Maintained
11172 F:      drivers/scsi/u14-34f.c
11173
11174 UBI FILE SYSTEM (UBIFS)
11175 M:      Artem Bityutskiy <dedekind1@gmail.com>
11176 M:      Adrian Hunter <adrian.hunter@intel.com>
11177 L:      linux-mtd@lists.infradead.org
11178 T:      git git://git.infradead.org/ubifs-2.6.git
11179 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
11180 S:      Maintained
11181 F:      Documentation/filesystems/ubifs.txt
11182 F:      fs/ubifs/
11183
11184 UCLINUX (M68KNOMMU AND COLDFIRE)
11185 M:      Greg Ungerer <gerg@uclinux.org>
11186 W:      http://www.uclinux.org/
11187 L:      linux-m68k@lists.linux-m68k.org
11188 L:      uclinux-dev@uclinux.org  (subscribers-only)
11189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
11190 S:      Maintained
11191 F:      arch/m68k/coldfire/
11192 F:      arch/m68k/68*/
11193 F:      arch/m68k/*/*_no.*
11194 F:      arch/m68k/include/asm/*_no.*
11195
11196 UDF FILESYSTEM
11197 M:      Jan Kara <jack@suse.com>
11198 S:      Maintained
11199 F:      Documentation/filesystems/udf.txt
11200 F:      fs/udf/
11201
11202 UFS FILESYSTEM
11203 M:      Evgeniy Dushistov <dushistov@mail.ru>
11204 S:      Maintained
11205 F:      Documentation/filesystems/ufs.txt
11206 F:      fs/ufs/
11207
11208 UHID USERSPACE HID IO DRIVER:
11209 M:      David Herrmann <dh.herrmann@googlemail.com>
11210 L:      linux-input@vger.kernel.org
11211 S:      Maintained
11212 F:      drivers/hid/uhid.c
11213 F:      include/uapi/linux/uhid.h
11214
11215 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
11216 L:      linux-usb@vger.kernel.org
11217 S:      Orphan
11218 F:      drivers/uwb/
11219 F:      include/linux/uwb.h
11220 F:      include/linux/uwb/
11221
11222 UNICORE32 ARCHITECTURE:
11223 M:      Guan Xuetao <gxt@mprc.pku.edu.cn>
11224 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
11225 S:      Maintained
11226 T:      git git://github.com/gxt/linux.git
11227 F:      arch/unicore32/
11228
11229 UNIFDEF
11230 M:      Tony Finch <dot@dotat.at>
11231 W:      http://dotat.at/prog/unifdef
11232 S:      Maintained
11233 F:      scripts/unifdef.c
11234
11235 UNIFORM CDROM DRIVER
11236 M:      Jens Axboe <axboe@kernel.dk>
11237 W:      http://www.kernel.dk
11238 S:      Maintained
11239 F:      Documentation/cdrom/
11240 F:      drivers/cdrom/cdrom.c
11241 F:      include/linux/cdrom.h
11242 F:      include/uapi/linux/cdrom.h
11243
11244 UNISYS S-PAR DRIVERS
11245 M:      Benjamin Romer <benjamin.romer@unisys.com>
11246 M:      David Kershner <david.kershner@unisys.com>
11247 L:      sparmaintainer@unisys.com (Unisys internal)
11248 S:      Supported
11249 F:      drivers/staging/unisys/
11250
11251 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
11252 M:      Vinayak Holikatti <vinholikatti@gmail.com>
11253 L:      linux-scsi@vger.kernel.org
11254 S:      Supported
11255 F:      Documentation/scsi/ufs.txt
11256 F:      drivers/scsi/ufs/
11257
11258 UNSORTED BLOCK IMAGES (UBI)
11259 M:      Artem Bityutskiy <dedekind1@gmail.com>
11260 M:      Richard Weinberger <richard@nod.at>
11261 W:      http://www.linux-mtd.infradead.org/
11262 L:      linux-mtd@lists.infradead.org
11263 T:      git git://git.infradead.org/ubifs-2.6.git
11264 S:      Supported
11265 F:      drivers/mtd/ubi/
11266 F:      include/linux/mtd/ubi.h
11267 F:      include/uapi/mtd/ubi-user.h
11268
11269 USB ACM DRIVER
11270 M:      Oliver Neukum <oliver@neukum.org>
11271 L:      linux-usb@vger.kernel.org
11272 S:      Maintained
11273 F:      Documentation/usb/acm.txt
11274 F:      drivers/usb/class/cdc-acm.*
11275
11276 USB AR5523 WIRELESS DRIVER
11277 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
11278 L:      linux-wireless@vger.kernel.org
11279 S:      Maintained
11280 F:      drivers/net/wireless/ath/ar5523/
11281
11282 USB ATTACHED SCSI
11283 M:      Hans de Goede <hdegoede@redhat.com>
11284 M:      Gerd Hoffmann <kraxel@redhat.com>
11285 L:      linux-usb@vger.kernel.org
11286 L:      linux-scsi@vger.kernel.org
11287 S:      Maintained
11288 F:      drivers/usb/storage/uas.c
11289
11290 USB CDC ETHERNET DRIVER
11291 M:      Oliver Neukum <oliver@neukum.org>
11292 L:      linux-usb@vger.kernel.org
11293 S:      Maintained
11294 F:      drivers/net/usb/cdc_*.c
11295 F:      include/uapi/linux/usb/cdc.h
11296
11297 USB CHAOSKEY DRIVER
11298 M:      Keith Packard <keithp@keithp.com>
11299 L:      linux-usb@vger.kernel.org
11300 S:      Maintained
11301 F:      drivers/usb/misc/chaoskey.c
11302
11303 USB CYPRESS C67X00 DRIVER
11304 M:      Peter Korsgaard <jacmet@sunsite.dk>
11305 L:      linux-usb@vger.kernel.org
11306 S:      Maintained
11307 F:      drivers/usb/c67x00/
11308
11309 USB DAVICOM DM9601 DRIVER
11310 M:      Peter Korsgaard <jacmet@sunsite.dk>
11311 L:      netdev@vger.kernel.org
11312 W:      http://www.linux-usb.org/usbnet
11313 S:      Maintained
11314 F:      drivers/net/usb/dm9601.c
11315
11316 USB DIAMOND RIO500 DRIVER
11317 M:      Cesar Miquel <miquel@df.uba.ar>
11318 L:      rio500-users@lists.sourceforge.net
11319 W:      http://rio500.sourceforge.net
11320 S:      Maintained
11321 F:      drivers/usb/misc/rio500*
11322
11323 USB EHCI DRIVER
11324 M:      Alan Stern <stern@rowland.harvard.edu>
11325 L:      linux-usb@vger.kernel.org
11326 S:      Maintained
11327 F:      Documentation/usb/ehci.txt
11328 F:      drivers/usb/host/ehci*
11329
11330 USB GADGET/PERIPHERAL SUBSYSTEM
11331 M:      Felipe Balbi <balbi@kernel.org>
11332 L:      linux-usb@vger.kernel.org
11333 W:      http://www.linux-usb.org/gadget
11334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11335 S:      Maintained
11336 F:      drivers/usb/gadget/
11337 F:      include/linux/usb/gadget*
11338
11339 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
11340 M:      Jiri Kosina <jikos@kernel.org>
11341 R:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
11342 L:      linux-usb@vger.kernel.org
11343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
11344 S:      Maintained
11345 F:      Documentation/hid/hiddev.txt
11346 F:      drivers/hid/usbhid/
11347
11348 USB ISP116X DRIVER
11349 M:      Olav Kongas <ok@artecdesign.ee>
11350 L:      linux-usb@vger.kernel.org
11351 S:      Maintained
11352 F:      drivers/usb/host/isp116x*
11353 F:      include/linux/usb/isp116x.h
11354
11355 USB MASS STORAGE DRIVER
11356 M:      Matthew Dharm <mdharm-usb@one-eyed-alien.net>
11357 L:      linux-usb@vger.kernel.org
11358 L:      usb-storage@lists.one-eyed-alien.net
11359 S:      Maintained
11360 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
11361 F:      drivers/usb/storage/
11362
11363 USB MIDI DRIVER
11364 M:      Clemens Ladisch <clemens@ladisch.de>
11365 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11366 T:      git git://git.alsa-project.org/alsa-kernel.git
11367 S:      Maintained
11368 F:      sound/usb/midi.*
11369
11370 USB NETWORKING DRIVERS
11371 L:      linux-usb@vger.kernel.org
11372 S:      Odd Fixes
11373 F:      drivers/net/usb/
11374
11375 USB OHCI DRIVER
11376 M:      Alan Stern <stern@rowland.harvard.edu>
11377 L:      linux-usb@vger.kernel.org
11378 S:      Maintained
11379 F:      Documentation/usb/ohci.txt
11380 F:      drivers/usb/host/ohci*
11381
11382 USB OTG FSM (Finite State Machine)
11383 M:      Peter Chen <Peter.Chen@nxp.com>
11384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
11385 L:      linux-usb@vger.kernel.org
11386 S:      Maintained
11387 F:      drivers/usb/common/usb-otg-fsm.c
11388
11389 USB OVER IP DRIVER
11390 M:      Valentina Manea <valentina.manea.m@gmail.com>
11391 M:      Shuah Khan <shuah.kh@samsung.com>
11392 L:      linux-usb@vger.kernel.org
11393 S:      Maintained
11394 F:      drivers/usb/usbip/
11395 F:      tools/usb/usbip/
11396
11397 USB PEGASUS DRIVER
11398 M:      Petko Manolov <petkan@nucleusys.com>
11399 L:      linux-usb@vger.kernel.org
11400 L:      netdev@vger.kernel.org
11401 T:      git git://github.com/petkan/pegasus.git
11402 W:      https://github.com/petkan/pegasus
11403 S:      Maintained
11404 F:      drivers/net/usb/pegasus.*
11405
11406 USB PHY LAYER
11407 M:      Felipe Balbi <balbi@kernel.org>
11408 L:      linux-usb@vger.kernel.org
11409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
11410 S:      Maintained
11411 F:      drivers/usb/phy/
11412
11413 USB PRINTER DRIVER (usblp)
11414 M:      Pete Zaitcev <zaitcev@redhat.com>
11415 L:      linux-usb@vger.kernel.org
11416 S:      Supported
11417 F:      drivers/usb/class/usblp.c
11418
11419 USB QMI WWAN NETWORK DRIVER
11420 M:      Bjørn Mork <bjorn@mork.no>
11421 L:      netdev@vger.kernel.org
11422 S:      Maintained
11423 F:      Documentation/ABI/testing/sysfs-class-net-qmi
11424 F:      drivers/net/usb/qmi_wwan.c
11425
11426 USB RTL8150 DRIVER
11427 M:      Petko Manolov <petkan@nucleusys.com>
11428 L:      linux-usb@vger.kernel.org
11429 L:      netdev@vger.kernel.org
11430 T:      git git://github.com/petkan/rtl8150.git
11431 W:      https://github.com/petkan/rtl8150
11432 S:      Maintained
11433 F:      drivers/net/usb/rtl8150.c
11434
11435 USB SERIAL SUBSYSTEM
11436 M:      Johan Hovold <johan@kernel.org>
11437 L:      linux-usb@vger.kernel.org
11438 S:      Maintained
11439 F:      Documentation/usb/usb-serial.txt
11440 F:      drivers/usb/serial/
11441 F:      include/linux/usb/serial.h
11442
11443 USB SMSC75XX ETHERNET DRIVER
11444 M:      Steve Glendinning <steve.glendinning@shawell.net>
11445 L:      netdev@vger.kernel.org
11446 S:      Maintained
11447 F:      drivers/net/usb/smsc75xx.*
11448
11449 USB SMSC95XX ETHERNET DRIVER
11450 M:      Steve Glendinning <steve.glendinning@shawell.net>
11451 L:      netdev@vger.kernel.org
11452 S:      Maintained
11453 F:      drivers/net/usb/smsc95xx.*
11454
11455 USB SUBSYSTEM
11456 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11457 L:      linux-usb@vger.kernel.org
11458 W:      http://www.linux-usb.org
11459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
11460 S:      Supported
11461 F:      Documentation/usb/
11462 F:      drivers/usb/
11463 F:      include/linux/usb.h
11464 F:      include/linux/usb/
11465
11466 USB UHCI DRIVER
11467 M:      Alan Stern <stern@rowland.harvard.edu>
11468 L:      linux-usb@vger.kernel.org
11469 S:      Maintained
11470 F:      drivers/usb/host/uhci*
11471
11472 USB "USBNET" DRIVER FRAMEWORK
11473 M:      Oliver Neukum <oneukum@suse.com>
11474 L:      netdev@vger.kernel.org
11475 W:      http://www.linux-usb.org/usbnet
11476 S:      Maintained
11477 F:      drivers/net/usb/usbnet.c
11478 F:      include/linux/usb/usbnet.h
11479
11480 USB VIDEO CLASS
11481 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11482 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
11483 L:      linux-media@vger.kernel.org
11484 T:      git git://linuxtv.org/media_tree.git
11485 W:      http://www.ideasonboard.org/uvc/
11486 S:      Maintained
11487 F:      drivers/media/usb/uvc/
11488 F:      include/uapi/linux/uvcvideo.h
11489
11490 USB VISION DRIVER
11491 M:      Hans Verkuil <hverkuil@xs4all.nl>
11492 L:      linux-media@vger.kernel.org
11493 T:      git git://linuxtv.org/media_tree.git
11494 W:      https://linuxtv.org
11495 S:      Odd Fixes
11496 F:      drivers/media/usb/usbvision/
11497
11498 USB WEBCAM GADGET
11499 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11500 L:      linux-usb@vger.kernel.org
11501 S:      Maintained
11502 F:      drivers/usb/gadget/function/*uvc*
11503 F:      drivers/usb/gadget/legacy/webcam.c
11504
11505 USB WIRELESS RNDIS DRIVER (rndis_wlan)
11506 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
11507 L:      linux-wireless@vger.kernel.org
11508 S:      Maintained
11509 F:      drivers/net/wireless/rndis_wlan.c
11510
11511 USB XHCI DRIVER
11512 M:      Mathias Nyman <mathias.nyman@intel.com>
11513 L:      linux-usb@vger.kernel.org
11514 S:      Supported
11515 F:      drivers/usb/host/xhci*
11516 F:      drivers/usb/host/pci-quirks*
11517
11518 USB ZD1201 DRIVER
11519 L:      linux-wireless@vger.kernel.org
11520 W:      http://linux-lc100020.sourceforge.net
11521 S:      Orphan
11522 F:      drivers/net/wireless/zydas/zd1201.*
11523
11524 USB ZR364XX DRIVER
11525 M:      Antoine Jacquet <royale@zerezo.com>
11526 L:      linux-usb@vger.kernel.org
11527 L:      linux-media@vger.kernel.org
11528 T:      git git://linuxtv.org/media_tree.git
11529 W:      http://royale.zerezo.com/zr364xx/
11530 S:      Maintained
11531 F:      Documentation/video4linux/zr364xx.txt
11532 F:      drivers/media/usb/zr364xx/
11533
11534 ULPI BUS
11535 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
11536 L:      linux-usb@vger.kernel.org
11537 S:      Maintained
11538 F:      drivers/usb/common/ulpi.c
11539 F:      include/linux/ulpi/
11540
11541 USER-MODE LINUX (UML)
11542 M:      Jeff Dike <jdike@addtoit.com>
11543 M:      Richard Weinberger <richard@nod.at>
11544 L:      user-mode-linux-devel@lists.sourceforge.net
11545 L:      user-mode-linux-user@lists.sourceforge.net
11546 W:      http://user-mode-linux.sourceforge.net
11547 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
11548 S:      Maintained
11549 F:      Documentation/virtual/uml/
11550 F:      arch/um/
11551 F:      arch/x86/um/
11552 F:      fs/hostfs/
11553 F:      fs/hppfs/
11554
11555 USERSPACE I/O (UIO)
11556 M:      "Hans J. Koch" <hjk@hansjkoch.de>
11557 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11558 S:      Maintained
11559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
11560 F:      Documentation/DocBook/uio-howto.tmpl
11561 F:      drivers/uio/
11562 F:      include/linux/uio*.h
11563
11564 UTIL-LINUX PACKAGE
11565 M:      Karel Zak <kzak@redhat.com>
11566 L:      util-linux@vger.kernel.org
11567 W:      http://en.wikipedia.org/wiki/Util-linux
11568 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
11569 S:      Maintained
11570
11571 UVESAFB DRIVER
11572 M:      Michal Januszewski <spock@gentoo.org>
11573 L:      linux-fbdev@vger.kernel.org
11574 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
11575 S:      Maintained
11576 F:      Documentation/fb/uvesafb.txt
11577 F:      drivers/video/fbdev/uvesafb.*
11578
11579 VF610 NAND DRIVER
11580 M:      Stefan Agner <stefan@agner.ch>
11581 L:      linux-mtd@lists.infradead.org
11582 S:      Supported
11583 F:      drivers/mtd/nand/vf610_nfc.c
11584
11585 VFAT/FAT/MSDOS FILESYSTEM
11586 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
11587 S:      Maintained
11588 F:      Documentation/filesystems/vfat.txt
11589 F:      fs/fat/
11590
11591 VFIO DRIVER
11592 M:      Alex Williamson <alex.williamson@redhat.com>
11593 L:      kvm@vger.kernel.org
11594 T:      git git://github.com/awilliam/linux-vfio.git
11595 S:      Maintained
11596 F:      Documentation/vfio.txt
11597 F:      drivers/vfio/
11598 F:      include/linux/vfio.h
11599 F:      include/uapi/linux/vfio.h
11600
11601 VFIO PLATFORM DRIVER
11602 M:      Baptiste Reynal <b.reynal@virtualopensystems.com>
11603 L:      kvm@vger.kernel.org
11604 S:      Maintained
11605 F:      drivers/vfio/platform/
11606
11607 VIDEOBUF2 FRAMEWORK
11608 M:      Pawel Osciak <pawel@osciak.com>
11609 M:      Marek Szyprowski <m.szyprowski@samsung.com>
11610 M:      Kyungmin Park <kyungmin.park@samsung.com>
11611 L:      linux-media@vger.kernel.org
11612 S:      Maintained
11613 F:      drivers/media/v4l2-core/videobuf2-*
11614 F:      include/media/videobuf2-*
11615
11616 VIRTUAL SERIO DEVICE DRIVER
11617 M:      Stephen Chandler Paul <thatslyude@gmail.com>
11618 S:      Maintained
11619 F:      drivers/input/serio/userio.c
11620 F:      include/uapi/linux/userio.h
11621
11622 VIRTIO CONSOLE DRIVER
11623 M:      Amit Shah <amit.shah@redhat.com>
11624 L:      virtualization@lists.linux-foundation.org
11625 S:      Maintained
11626 F:      drivers/char/virtio_console.c
11627 F:      include/linux/virtio_console.h
11628 F:      include/uapi/linux/virtio_console.h
11629
11630 VIRTIO CORE, NET AND BLOCK DRIVERS
11631 M:      "Michael S. Tsirkin" <mst@redhat.com>
11632 L:      virtualization@lists.linux-foundation.org
11633 S:      Maintained
11634 F:      drivers/virtio/
11635 F:      tools/virtio/
11636 F:      drivers/net/virtio_net.c
11637 F:      drivers/block/virtio_blk.c
11638 F:      include/linux/virtio_*.h
11639 F:      include/uapi/linux/virtio_*.h
11640
11641 VIRTIO DRIVERS FOR S390
11642 M:      Christian Borntraeger <borntraeger@de.ibm.com>
11643 M:      Cornelia Huck <cornelia.huck@de.ibm.com>
11644 L:      linux-s390@vger.kernel.org
11645 L:      virtualization@lists.linux-foundation.org
11646 L:      kvm@vger.kernel.org
11647 S:      Supported
11648 F:      drivers/s390/virtio/
11649
11650 VIRTIO GPU DRIVER
11651 M:      David Airlie <airlied@linux.ie>
11652 M:      Gerd Hoffmann <kraxel@redhat.com>
11653 L:      dri-devel@lists.freedesktop.org
11654 L:      virtualization@lists.linux-foundation.org
11655 S:      Maintained
11656 F:      drivers/gpu/drm/virtio/
11657 F:      include/uapi/linux/virtio_gpu.h
11658
11659 VIRTIO HOST (VHOST)
11660 M:      "Michael S. Tsirkin" <mst@redhat.com>
11661 L:      kvm@vger.kernel.org
11662 L:      virtualization@lists.linux-foundation.org
11663 L:      netdev@vger.kernel.org
11664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
11665 S:      Maintained
11666 F:      drivers/vhost/
11667 F:      include/uapi/linux/vhost.h
11668
11669 VIRTIO INPUT DRIVER
11670 M:      Gerd Hoffmann <kraxel@redhat.com>
11671 S:      Maintained
11672 F:      drivers/virtio/virtio_input.c
11673 F:      include/uapi/linux/virtio_input.h
11674
11675 VIA RHINE NETWORK DRIVER
11676 S:      Orphan
11677 F:      drivers/net/ethernet/via/via-rhine.c
11678
11679 VIA SD/MMC CARD CONTROLLER DRIVER
11680 M:      Bruce Chang <brucechang@via.com.tw>
11681 M:      Harald Welte <HaraldWelte@viatech.com>
11682 S:      Maintained
11683 F:      drivers/mmc/host/via-sdmmc.c
11684
11685 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
11686 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
11687 L:      linux-fbdev@vger.kernel.org
11688 S:      Maintained
11689 F:      include/linux/via-core.h
11690 F:      include/linux/via-gpio.h
11691 F:      include/linux/via_i2c.h
11692 F:      drivers/video/fbdev/via/
11693
11694 VIA VELOCITY NETWORK DRIVER
11695 M:      Francois Romieu <romieu@fr.zoreil.com>
11696 L:      netdev@vger.kernel.org
11697 S:      Maintained
11698 F:      drivers/net/ethernet/via/via-velocity.*
11699
11700 VIRT LIB
11701 M:      Alex Williamson <alex.williamson@redhat.com>
11702 M:      Paolo Bonzini <pbonzini@redhat.com>
11703 L:      kvm@vger.kernel.org
11704 S:      Supported
11705 F:      virt/lib/
11706
11707 VIVID VIRTUAL VIDEO DRIVER
11708 M:      Hans Verkuil <hverkuil@xs4all.nl>
11709 L:      linux-media@vger.kernel.org
11710 T:      git git://linuxtv.org/media_tree.git
11711 W:      https://linuxtv.org
11712 S:      Maintained
11713 F:      drivers/media/platform/vivid/*
11714
11715 VLAN (802.1Q)
11716 M:      Patrick McHardy <kaber@trash.net>
11717 L:      netdev@vger.kernel.org
11718 S:      Maintained
11719 F:      drivers/net/macvlan.c
11720 F:      include/linux/if_*vlan.h
11721 F:      net/8021q/
11722
11723 VLYNQ BUS
11724 M:      Florian Fainelli <florian@openwrt.org>
11725 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
11726 S:      Maintained
11727 F:      drivers/vlynq/vlynq.c
11728 F:      include/linux/vlynq.h
11729
11730 VME SUBSYSTEM
11731 M:      Martyn Welch <martyn@welchs.me.uk>
11732 M:      Manohar Vanga <manohar.vanga@gmail.com>
11733 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11734 L:      devel@driverdev.osuosl.org
11735 S:      Maintained
11736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11737 F:      Documentation/vme_api.txt
11738 F:      drivers/staging/vme/
11739 F:      drivers/vme/
11740 F:      include/linux/vme*
11741
11742 VMWARE HYPERVISOR INTERFACE
11743 M:      Alok Kataria <akataria@vmware.com>
11744 L:      virtualization@lists.linux-foundation.org
11745 S:      Supported
11746 F:      arch/x86/kernel/cpu/vmware.c
11747
11748 VMWARE BALLOON DRIVER
11749 M:      Xavier Deguillard <xdeguillard@vmware.com>
11750 M:      Philip Moltmann <moltmann@vmware.com>
11751 M:      "VMware, Inc." <pv-drivers@vmware.com>
11752 L:      linux-kernel@vger.kernel.org
11753 S:      Maintained
11754 F:      drivers/misc/vmw_balloon.c
11755
11756 VMWARE VMMOUSE SUBDRIVER
11757 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
11758 M:      "VMware, Inc." <pv-drivers@vmware.com>
11759 L:      linux-input@vger.kernel.org
11760 S:      Maintained
11761 F:      drivers/input/mouse/vmmouse.c
11762 F:      drivers/input/mouse/vmmouse.h
11763
11764 VMWARE VMXNET3 ETHERNET DRIVER
11765 M:      Shrikrishna Khare <skhare@vmware.com>
11766 M:      "VMware, Inc." <pv-drivers@vmware.com>
11767 L:      netdev@vger.kernel.org
11768 S:      Maintained
11769 F:      drivers/net/vmxnet3/
11770
11771 VMware PVSCSI driver
11772 M:      Arvind Kumar <arvindkumar@vmware.com>
11773 M:      VMware PV-Drivers <pv-drivers@vmware.com>
11774 L:      linux-scsi@vger.kernel.org
11775 S:      Maintained
11776 F:      drivers/scsi/vmw_pvscsi.c
11777 F:      drivers/scsi/vmw_pvscsi.h
11778
11779 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
11780 M:      Liam Girdwood <lgirdwood@gmail.com>
11781 M:      Mark Brown <broonie@kernel.org>
11782 L:      linux-kernel@vger.kernel.org
11783 W:      http://www.slimlogic.co.uk/?p=48
11784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
11785 S:      Supported
11786 F:      drivers/regulator/
11787 F:      include/linux/regulator/
11788
11789 VRF
11790 M:      David Ahern <dsa@cumulusnetworks.com>
11791 M:      Shrijeet Mukherjee <shm@cumulusnetworks.com>
11792 L:      netdev@vger.kernel.org
11793 S:      Maintained
11794 F:      drivers/net/vrf.c
11795 F:      Documentation/networking/vrf.txt
11796
11797 VT1211 HARDWARE MONITOR DRIVER
11798 M:      Juerg Haefliger <juergh@gmail.com>
11799 L:      lm-sensors@lm-sensors.org
11800 S:      Maintained
11801 F:      Documentation/hwmon/vt1211
11802 F:      drivers/hwmon/vt1211.c
11803
11804 VT8231 HARDWARE MONITOR DRIVER
11805 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
11806 L:      lm-sensors@lm-sensors.org
11807 S:      Maintained
11808 F:      drivers/hwmon/vt8231.c
11809
11810 VUB300 USB to SDIO/SD/MMC bridge chip
11811 M:      Tony Olech <tony.olech@elandigitalsystems.com>
11812 L:      linux-mmc@vger.kernel.org
11813 L:      linux-usb@vger.kernel.org
11814 S:      Supported
11815 F:      drivers/mmc/host/vub300.c
11816
11817 W1 DALLAS'S 1-WIRE BUS
11818 M:      Evgeniy Polyakov <zbr@ioremap.net>
11819 S:      Maintained
11820 F:      Documentation/w1/
11821 F:      drivers/w1/
11822
11823 W83791D HARDWARE MONITORING DRIVER
11824 M:      Marc Hulsman <m.hulsman@tudelft.nl>
11825 L:      lm-sensors@lm-sensors.org
11826 S:      Maintained
11827 F:      Documentation/hwmon/w83791d
11828 F:      drivers/hwmon/w83791d.c
11829
11830 W83793 HARDWARE MONITORING DRIVER
11831 M:      Rudolf Marek <r.marek@assembler.cz>
11832 L:      lm-sensors@lm-sensors.org
11833 S:      Maintained
11834 F:      Documentation/hwmon/w83793
11835 F:      drivers/hwmon/w83793.c
11836
11837 W83795 HARDWARE MONITORING DRIVER
11838 M:      Jean Delvare <jdelvare@suse.com>
11839 L:      lm-sensors@lm-sensors.org
11840 S:      Maintained
11841 F:      drivers/hwmon/w83795.c
11842
11843 W83L51xD SD/MMC CARD INTERFACE DRIVER
11844 M:      Pierre Ossman <pierre@ossman.eu>
11845 S:      Maintained
11846 F:      drivers/mmc/host/wbsd.*
11847
11848 WACOM PROTOCOL 4 SERIAL TABLETS
11849 M:      Julian Squires <julian@cipht.net>
11850 M:      Hans de Goede <hdegoede@redhat.com>
11851 L:      linux-input@vger.kernel.org
11852 S:      Maintained
11853 F:      drivers/input/tablet/wacom_serial4.c
11854
11855 WATCHDOG DEVICE DRIVERS
11856 M:      Wim Van Sebroeck <wim@iguana.be>
11857 R:      Guenter Roeck <linux@roeck-us.net>
11858 L:      linux-watchdog@vger.kernel.org
11859 W:      http://www.linux-watchdog.org/
11860 T:      git git://www.linux-watchdog.org/linux-watchdog.git
11861 S:      Maintained
11862 F:      Documentation/watchdog/
11863 F:      drivers/watchdog/
11864 F:      include/linux/watchdog.h
11865 F:      include/uapi/linux/watchdog.h
11866
11867 WD7000 SCSI DRIVER
11868 M:      Miroslav Zagorac <zaga@fly.cc.fer.hr>
11869 L:      linux-scsi@vger.kernel.org
11870 S:      Maintained
11871 F:      drivers/scsi/wd7000.c
11872
11873 WIIMOTE HID DRIVER
11874 M:      David Herrmann <dh.herrmann@googlemail.com>
11875 L:      linux-input@vger.kernel.org
11876 S:      Maintained
11877 F:      drivers/hid/hid-wiimote*
11878
11879 WINBOND CIR DRIVER
11880 M:      David Härdeman <david@hardeman.nu>
11881 S:      Maintained
11882 F:      drivers/media/rc/winbond-cir.c
11883
11884 WIMAX STACK
11885 M:      Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
11886 M:      linux-wimax@intel.com
11887 L:      wimax@linuxwimax.org (subscribers-only)
11888 S:      Supported
11889 W:      http://linuxwimax.org
11890 F:      Documentation/wimax/README.wimax
11891 F:      include/linux/wimax/debug.h
11892 F:      include/net/wimax.h
11893 F:      include/uapi/linux/wimax.h
11894 F:      net/wimax/
11895
11896 WISTRON LAPTOP BUTTON DRIVER
11897 M:      Miloslav Trmac <mitr@volny.cz>
11898 S:      Maintained
11899 F:      drivers/input/misc/wistron_btns.c
11900
11901 WL3501 WIRELESS PCMCIA CARD DRIVER
11902 M:      Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
11903 L:      linux-wireless@vger.kernel.org
11904 W:      http://oops.ghostprotocols.net:81/blog
11905 S:      Maintained
11906 F:      drivers/net/wireless/wl3501*
11907
11908 WOLFSON MICROELECTRONICS DRIVERS
11909 L:      patches@opensource.wolfsonmicro.com
11910 T:      git https://github.com/CirrusLogic/linux-drivers.git
11911 W:      https://github.com/CirrusLogic/linux-drivers/wiki
11912 S:      Supported
11913 F:      Documentation/hwmon/wm83??
11914 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
11915 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
11916 F:      Documentation/devicetree/bindings/mfd/arizona.txt
11917 F:      arch/arm/mach-s3c64xx/mach-crag6410*
11918 F:      drivers/clk/clk-wm83*.c
11919 F:      drivers/extcon/extcon-arizona.c
11920 F:      drivers/leds/leds-wm83*.c
11921 F:      drivers/gpio/gpio-*wm*.c
11922 F:      drivers/gpio/gpio-arizona.c
11923 F:      drivers/hwmon/wm83??-hwmon.c
11924 F:      drivers/input/misc/wm831x-on.c
11925 F:      drivers/input/touchscreen/wm831x-ts.c
11926 F:      drivers/input/touchscreen/wm97*.c
11927 F:      drivers/mfd/arizona*
11928 F:      drivers/mfd/wm*.c
11929 F:      drivers/mfd/cs47l24*
11930 F:      drivers/power/wm83*.c
11931 F:      drivers/rtc/rtc-wm83*.c
11932 F:      drivers/regulator/wm8*.c
11933 F:      drivers/video/backlight/wm83*_bl.c
11934 F:      drivers/watchdog/wm83*_wdt.c
11935 F:      include/linux/mfd/arizona/
11936 F:      include/linux/mfd/wm831x/
11937 F:      include/linux/mfd/wm8350/
11938 F:      include/linux/mfd/wm8400*
11939 F:      include/linux/wm97xx.h
11940 F:      include/sound/wm????.h
11941 F:      sound/soc/codecs/arizona.?
11942 F:      sound/soc/codecs/wm*
11943 F:      sound/soc/codecs/cs47l24*
11944
11945 WORKQUEUE
11946 M:      Tejun Heo <tj@kernel.org>
11947 R:      Lai Jiangshan <jiangshanlai@gmail.com>
11948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
11949 S:      Maintained
11950 F:      include/linux/workqueue.h
11951 F:      kernel/workqueue.c
11952 F:      Documentation/workqueue.txt
11953
11954 X.25 NETWORK LAYER
11955 M:      Andrew Hendry <andrew.hendry@gmail.com>
11956 L:      linux-x25@vger.kernel.org
11957 S:      Odd Fixes
11958 F:      Documentation/networking/x25*
11959 F:      include/net/x25*
11960 F:      net/x25/
11961
11962 X86 ARCHITECTURE (32-BIT AND 64-BIT)
11963 M:      Thomas Gleixner <tglx@linutronix.de>
11964 M:      Ingo Molnar <mingo@redhat.com>
11965 M:      "H. Peter Anvin" <hpa@zytor.com>
11966 M:      x86@kernel.org
11967 L:      linux-kernel@vger.kernel.org
11968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
11969 S:      Maintained
11970 F:      Documentation/x86/
11971 F:      arch/x86/
11972
11973 X86 PLATFORM DRIVERS
11974 M:      Darren Hart <dvhart@infradead.org>
11975 L:      platform-driver-x86@vger.kernel.org
11976 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
11977 S:      Maintained
11978 F:      drivers/platform/x86/
11979 F:      drivers/platform/olpc/
11980
11981 X86 MCE INFRASTRUCTURE
11982 M:      Tony Luck <tony.luck@intel.com>
11983 M:      Borislav Petkov <bp@alien8.de>
11984 L:      linux-edac@vger.kernel.org
11985 S:      Maintained
11986 F:      arch/x86/kernel/cpu/mcheck/*
11987
11988 X86 MICROCODE UPDATE SUPPORT
11989 M:      Borislav Petkov <bp@alien8.de>
11990 S:      Maintained
11991 F:      arch/x86/kernel/cpu/microcode/*
11992
11993 X86 VDSO
11994 M:      Andy Lutomirski <luto@amacapital.net>
11995 L:      linux-kernel@vger.kernel.org
11996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
11997 S:      Maintained
11998 F:      arch/x86/entry/vdso/
11999
12000 XC2028/3028 TUNER DRIVER
12001 M:      Mauro Carvalho Chehab <mchehab@osg.samsung.com>
12002 L:      linux-media@vger.kernel.org
12003 W:      https://linuxtv.org
12004 T:      git git://linuxtv.org/media_tree.git
12005 S:      Maintained
12006 F:      drivers/media/tuners/tuner-xc2028.*
12007
12008 XEN HYPERVISOR INTERFACE
12009 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12010 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
12011 M:      David Vrabel <david.vrabel@citrix.com>
12012 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
12014 S:      Supported
12015 F:      arch/x86/xen/
12016 F:      drivers/*/xen-*front.c
12017 F:      drivers/xen/
12018 F:      arch/x86/include/asm/xen/
12019 F:      include/xen/
12020 F:      include/uapi/xen/
12021
12022 XEN HYPERVISOR ARM
12023 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12024 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12025 S:      Supported
12026 F:      arch/arm/xen/
12027 F:      arch/arm/include/asm/xen/
12028
12029 XEN HYPERVISOR ARM64
12030 M:      Stefano Stabellini <stefano.stabellini@eu.citrix.com>
12031 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12032 S:      Supported
12033 F:      arch/arm64/xen/
12034 F:      arch/arm64/include/asm/xen/
12035
12036 XEN NETWORK BACKEND DRIVER
12037 M:      Ian Campbell <ian.campbell@citrix.com>
12038 M:      Wei Liu <wei.liu2@citrix.com>
12039 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12040 L:      netdev@vger.kernel.org
12041 S:      Supported
12042 F:      drivers/net/xen-netback/*
12043
12044 XEN PCI SUBSYSTEM
12045 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12046 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12047 S:      Supported
12048 F:      arch/x86/pci/*xen*
12049 F:      drivers/pci/*xen*
12050
12051 XEN BLOCK SUBSYSTEM
12052 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12053 M:      Roger Pau MonnĂ© <roger.pau@citrix.com>
12054 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12055 S:      Supported
12056 F:      drivers/block/xen-blkback/*
12057 F:      drivers/block/xen*
12058
12059 XEN PVSCSI DRIVERS
12060 M:      Juergen Gross <jgross@suse.com>
12061 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12062 L:      linux-scsi@vger.kernel.org
12063 S:      Supported
12064 F:      drivers/scsi/xen-scsifront.c
12065 F:      drivers/xen/xen-scsiback.c
12066 F:      include/xen/interface/io/vscsiif.h
12067
12068 XEN SWIOTLB SUBSYSTEM
12069 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
12070 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
12071 S:      Supported
12072 F:      arch/x86/xen/*swiotlb*
12073 F:      drivers/xen/*swiotlb*
12074
12075 XFS FILESYSTEM
12076 P:      Silicon Graphics Inc
12077 M:      Dave Chinner <david@fromorbit.com>
12078 M:      xfs@oss.sgi.com
12079 L:      xfs@oss.sgi.com
12080 W:      http://oss.sgi.com/projects/xfs
12081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dgc/linux-xfs.git
12082 S:      Supported
12083 F:      Documentation/filesystems/xfs.txt
12084 F:      fs/xfs/
12085
12086 XILINX AXI ETHERNET DRIVER
12087 M:      Anirudha Sarangi <anirudh@xilinx.com>
12088 M:      John Linn <John.Linn@xilinx.com>
12089 S:      Maintained
12090 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
12091
12092 XILINX UARTLITE SERIAL DRIVER
12093 M:      Peter Korsgaard <jacmet@sunsite.dk>
12094 L:      linux-serial@vger.kernel.org
12095 S:      Maintained
12096 F:      drivers/tty/serial/uartlite.c
12097
12098 XILINX VIDEO IP CORES
12099 M:      Hyun Kwon <hyun.kwon@xilinx.com>
12100 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12101 L:      linux-media@vger.kernel.org
12102 T:      git git://linuxtv.org/media_tree.git
12103 S:      Supported
12104 F:      Documentation/devicetree/bindings/media/xilinx/
12105 F:      drivers/media/platform/xilinx/
12106 F:      include/uapi/linux/xilinx-v4l2-controls.h
12107
12108 XILLYBUS DRIVER
12109 M:      Eli Billauer <eli.billauer@gmail.com>
12110 L:      linux-kernel@vger.kernel.org
12111 S:      Supported
12112 F:      drivers/char/xillybus/
12113
12114 XTENSA XTFPGA PLATFORM SUPPORT
12115 M:      Max Filippov <jcmvbkbc@gmail.com>
12116 L:      linux-xtensa@linux-xtensa.org
12117 S:      Maintained
12118 F:      drivers/spi/spi-xtensa-xtfpga.c
12119 F:      sound/soc/xtensa/xtfpga-i2s.c
12120
12121 YAM DRIVER FOR AX.25
12122 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
12123 L:      linux-hams@vger.kernel.org
12124 S:      Maintained
12125 F:      drivers/net/hamradio/yam*
12126 F:      include/linux/yam.h
12127
12128 YEALINK PHONE DRIVER
12129 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
12130 L:      usbb2k-api-dev@nongnu.org
12131 S:      Maintained
12132 F:      Documentation/input/yealink.txt
12133 F:      drivers/input/misc/yealink.*
12134
12135 Z8530 DRIVER FOR AX.25
12136 M:      Joerg Reuter <jreuter@yaina.de>
12137 W:      http://yaina.de/jreuter/
12138 W:      http://www.qsl.net/dl1bke/
12139 L:      linux-hams@vger.kernel.org
12140 S:      Maintained
12141 F:      Documentation/networking/z8530drv.txt
12142 F:      drivers/net/hamradio/*scc.c
12143 F:      drivers/net/hamradio/z8530.h
12144
12145 ZBUD COMPRESSED PAGE ALLOCATOR
12146 M:      Seth Jennings <sjenning@redhat.com>
12147 L:      linux-mm@kvack.org
12148 S:      Maintained
12149 F:      mm/zbud.c
12150 F:      include/linux/zbud.h
12151
12152 ZD1211RW WIRELESS DRIVER
12153 M:      Daniel Drake <dsd@gentoo.org>
12154 M:      Ulrich Kunitz <kune@deine-taler.de>
12155 W:      http://zd1211.ath.cx/wiki/DriverRewrite
12156 L:      linux-wireless@vger.kernel.org
12157 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
12158 S:      Maintained
12159 F:      drivers/net/wireless/zydas/zd1211rw/
12160
12161 ZPOOL COMPRESSED PAGE STORAGE API
12162 M:      Dan Streetman <ddstreet@ieee.org>
12163 L:      linux-mm@kvack.org
12164 S:      Maintained
12165 F:      mm/zpool.c
12166 F:      include/linux/zpool.h
12167
12168 ZR36067 VIDEO FOR LINUX DRIVER
12169 L:      mjpeg-users@lists.sourceforge.net
12170 L:      linux-media@vger.kernel.org
12171 W:      http://mjpeg.sourceforge.net/driver-zoran/
12172 T:      hg https://linuxtv.org/hg/v4l-dvb
12173 S:      Odd Fixes
12174 F:      drivers/media/pci/zoran/
12175
12176 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
12177 M:      Minchan Kim <minchan@kernel.org>
12178 M:      Nitin Gupta <ngupta@vflare.org>
12179 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12180 L:      linux-kernel@vger.kernel.org
12181 S:      Maintained
12182 F:      drivers/block/zram/
12183 F:      Documentation/blockdev/zram.txt
12184
12185 ZS DECSTATION Z85C30 SERIAL DRIVER
12186 M:      "Maciej W. Rozycki" <macro@linux-mips.org>
12187 S:      Maintained
12188 F:      drivers/tty/serial/zs.*
12189
12190 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
12191 M:      Minchan Kim <minchan@kernel.org>
12192 M:      Nitin Gupta <ngupta@vflare.org>
12193 R:      Sergey Senozhatsky <sergey.senozhatsky.work@gmail.com>
12194 L:      linux-mm@kvack.org
12195 S:      Maintained
12196 F:      mm/zsmalloc.c
12197 F:      include/linux/zsmalloc.h
12198 F:      Documentation/vm/zsmalloc.txt
12199
12200 ZSWAP COMPRESSED SWAP CACHING
12201 M:      Seth Jennings <sjenning@redhat.com>
12202 L:      linux-mm@kvack.org
12203 S:      Maintained
12204 F:      mm/zswap.c
12205
12206 THE REST
12207 M:      Linus Torvalds <torvalds@linux-foundation.org>
12208 L:      linux-kernel@vger.kernel.org
12209 Q:      http://patchwork.kernel.org/project/LKML/list/
12210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
12211 S:      Buried alive in reporters
12212 F:      *
12213 F:      */